@charset "UTF-8";
@import url("grid.css");
:root { /* 色変更される場合は、#以降のカラーコードを変更してください IE非対応 */
  --base-color: #000;
  --link-color: #666;
  --linkhover-color: #999;
  --back-color: #f7f7f7;
  --border-color: #ccc;
  --white-color: #fff;
}
img {
  max-width: 100%;
  height: auto; /*高さ自動*/
}
a {
  display: block;
  color: var(--link-color);
  text-decoration-line: none;
}
a:hover {
  color: var(--linkhover-color);
}
.hidden {
  display: none;
}
/*ヘッダー
-------------------------------------*/
header {
  position: fixed; /*** ← fixedで固定 ***/
  width: 100%;
  height: 70px;
  background: #FFF;
  box-sizing: border-box;
  top: 0;
  left: 0;
  align-items: center;
  z-index: 9999;
}
.header {
  display: flex;
  flex-direction: row;
  padding: 2rem 0 0 0;
  justify-content: space-between;
  align-items: center;
}
.header h1 {
  width: 160px;
  height: auto;
}
.header-boxout {
  display: flex;
}
.header-boxinn {
  msrgin-left: 0
}
.sns_box {
  margin-right: 20px;
  margin-left: auto;
}
.sns_box ul {
  padding-right: 20px;
  display: flex;
  list-style: none;
}
.sns_box li {
  padding-right: 15px;
}
/* ここから下がハンバーガーメニューに関するCSS */
/*.menu-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  height: 50px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  position: absolute;
  background: #9966cc;
}
.menu-btn span:before {
  bottom: 8px;
}
.menu-btn span:after {
  top: 8px;
}
#menu-btn-check {
  display: none;
}
.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ
  z-index: 80;
  background-color: hsla(270, 50%, 60%, 0.80);
  transition: all 0.5s; /*アニメーション設定
}
.menu-content ul {
  padding: 70px 10px 0;
}
.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: bold;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}
.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}
#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ
}*/
/*ヘッダー(スクロール)
-------------------------------------*/
.head-scroll {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 9999;
}
.head_scroll_out {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  justify-content: center;
}
.head_scroll_inn {
  width: calc(50% - 0px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  padding: 20px 0;
  text-align: center;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
}
.head_scroll_inn a {
  font-size: 22px;
  color: #FFF !important;
  font-weight: bold;
}
.head_scroll_inn:first-child {
  background: hsla(286, 71%, 62%, 1.00);
}
.head_scroll_inn:last-child {
  background: hsla(327, 87%, 34%, 1.00);
}
.fixed-header {
  position: fixed;
  top: -80px;
  left: 0;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}
.fixed-header.is-show {
  top: 0;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .head_scroll_inn a {
    font-size: 18px;
  }
  .head_scroll_inn:first-child {
    padding-top: 8%;
  }
}
/*========= モーダル表示のためのCSS ===============*/
/*動画表示のモーダルの余白を変更したい場合*/
/*.modaal-video .modaal-inner-wrapper {
  padding: 0px;
}*/
/*モーダルのボタンの色を変更したい場合*/
/*.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}*/
/*ポップアップ動画
-------------------------------------*/
.popup-bg-cover {
  position: fixed; /* ブラウザの定位置に固定 */
  /*background: rgba(0, 0, 0, .5);*/ /* 背景色を半透明の黒色に */
  width: 100%; /* 要素の横幅を画面全体に */
  height: 100%; /* 要素の高さを画面全体に */
  top: 0; /* 要素の固定位置をブラウザ最上部に合わせる */
  left: 0; /* 要素の固定位置をブラウザ左側に合わせる */
  z-index: 1000; /* 要素をコンテンツより前面に（要調整） */
}
#sample-popup-switch {
  /* チェックボックスを非表示 */
  display: none;
}
.sample-popup-background {
  /* 画面全体を暗くする透過背景 */
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
  top: 0;
  left: 0;
  z-index: 1000;
}
.sample-popup-content {
  /* ポップアップ本体 */
  display: inline-block;
  position: fixed;
  width: 75%;
  z-index: 1100;
  /*background: #fff;*/
  padding: 0 0 3% 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow-y: hidden;
}
.iframe_wrp {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.iframe_wrp iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .sample-popup-content {
    /* ポップアップ本体 */
    display: inline-block;
    position: fixed;
    width: 95%;
    z-index: 1100;
    /*background: #fff;*/
    padding: 0 0 10% 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow-y: hidden;
  }
}
.sample-popup-close {
  /* ポップアップ内の閉じるボタン */
  /*	position: relative;
	display: inline-block;
	background: linear-gradient(150deg, rgba(240, 92, 230, 1), rgba(194, 145, 255, 1));
	color: #fff;
	padding: 0 1em;
	border-radius: 3px;
	cursor: pointer;
	left: 50%;
	transform: translateX(-50%);
	margin-top:10px;*/
}
.sample-popup-close {
  /* ポップアップ内の閉じるボタン */
  position: absolute;
  display: inline-block;
  background: linear-gradient(150deg, rgba(240, 92, 230, 1), rgba(194, 145, 255, 1));
  padding: 0 1em;
  border-radius: 3px;
  cursor: pointer;
  bottom: 0;
  right: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sample-popup-close {
    /* ポップアップ内の閉じるボタン */
    position: absolute;
    display: inline-block;
    background: linear-gradient(150deg, rgba(240, 92, 230, 1), rgba(194, 145, 255, 1));
    padding: 0 1em;
    border-radius: 3px;
    cursor: pointer;
    bottom: 0;
    right: 0;
    margin-bottom: 10px;
  }
}
.sample-popup-close:after {
  content: "×";
  color: #fff;
}
#sample-popup-switch:checked ~ .popup-bg-cover, #sample-popup-switch:checked ~ .sample-popup-background, #sample-popup-switch:checked ~ .sample-popup-box {
  /* ポップアップ･透過背景を閉じる */
  display: none;
}
/*メイン画像
-------------------------------------*/
#particles-js {
  position: fixed; /*描画固定*/
  z-index: -9999; /*描画を一番下に*/
  width: 100%;
  height: 100%;
}
.mainimg {
  width: 100vw;
  padding-top: 130px;
  padding-bottom: 600px;
  background: linear-gradient(150deg, rgba(240, 92, 230, 1), rgba(194, 145, 255, 1));
  position: relative;
  z-index: -1;
}
.mainimg .mainlogo {
  margin-bottom: 0;
  /*  padding-top: 60px;
  text-align: center;*/
}
/*.mainimg .mainlogo img {
  animation: 1s linear fade;
  animation: 4s linear infinite rotation2;
}*/
/*.mainimg .text {
  font-size: 28px;
  color: #FFF;
  font-weight: bold;
  text-align: center;
}
.mainimg .text span {
  font-size: 16px;
}*/
/*----アニメーションテキスト01----*/
.anime_text {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
}
.anime_text.is-active {
  --x: 0;
}
.char {
  overflow: hidden;
}
.char-text {
  display: inline-block;
  transform: translateX(var(--x, -101%));
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.05s * var(--char-index));
}
.visuallyHidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
/*----アニメーションテキスト02----*/
.anime_text02 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}
.anime_text02.is-active {
  --opacity: 1;
}
.char02 {
  display: inline-block;
  opacity: var(--opacity, 0);
  transition: opacity 1s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.03s * var(--char02-index));
}
/*----アニメーションテキスト03----*/
.anime_text03 {
  width: 900px;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  color: #FFF;
  font-family: "bebas-neue-pro", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 140px;
  clear: both;
  position: relative;
  top: -100px;
}
.anime_text03_pc {
  margin-top: -70px;
}
.anime_text03 span {
  display: block;
  transform: translate(0, 105%);
  transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 1s;
}
.anime_text03.-visible span {
  transform: translate(0, 0);
}
.anime_text03 span:nth-child(2) {
  transition-delay: 0.06s;
}
.anime_text03 span:nth-child(3) {
  transition-delay: 0.12s;
}
.anime_text03 span:nth-child(4) {
  transition-delay: 0.18s;
}
.anime_text03 span:nth-child(5) {
  transition-delay: 0.24s;
}
.anime_text03 span:nth-child(6) {
  transition-delay: 0.30s;
}
.anime_text03 span:nth-child(7) {
  transition-delay: 0.36s;
}
.anime_text03 span:nth-child(8) {
  transition-delay: 0.42s;
}
.anime_text03 span:nth-child(9) {
  transition-delay: 0.48s;
}
.anime_text03 span:nth-child(10) {
  transition-delay: 0.54s;
}
.anime_text03 span:nth-child(11) {
  transition-delay: 0.6s;
}
.anime_text03 span:nth-child(12) {
  transition-delay: 0.66s;
}
.anime_text03 span:nth-child(13) {
  transition-delay: 0.72s;
}
.anime_text03 span:nth-child(14) {
  transition-delay: 0.78s;
}
.anime_text03 span:nth-child(15) {
  transition-delay: 0.84s;
}
.anime_text03 span:nth-child(16) {
  transition-delay: 0.90s;
}
.anime_text03 span:nth-child(17) {
  transition-delay: 0.96s;
}
.anime_text03 span:nth-child(18) {
  transition-delay: 1.04s;
}
.anime_text03 span:nth-child(19) {
  transition-delay: 1.10s;
}
.anime_text03 span:nth-child(20) {
  transition-delay: 1.16s;
}
.anime_text03 span:nth-child(21) {
  transition-delay: 1.22s;
}
.anime_text03 span:nth-child(22) {
  transition-delay: 1.28s;
}
.anime_text03 span:nth-child(23) {
  transition-delay: 1.34s;
}
.anime_text03 span:nth-child(24) {
  transition-delay: 1.40s;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0) rotate(-7deg);
  }
  50% {
    transform: translate(0, -7px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(7deg);
  }
}
@keyframes fuwafuwa2 {
  0% {
    transform: translate(0, 0) rotate(-10deg);
  }
  50% {
    transform: translate(0, -10px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(10deg);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotation2 {
  /*  0% {
    transform: rotateY(0);
    opacity: 0;
  }
  100% {
    transform: rotateY(360deg);
    opacity: 1;
  }*/
  70% {
    transform: rotateY(0);
  }
  100% {
    transform: rotateY(360deg);
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  /*  .mainimg_cont {
    padding-bottom: 120px;
  }*/
  .mainimg .mainlogo {
    text-align: right;
    padding-right: 220px;
  }
  .mainimg .mainlogo img {
    width: 30%;
    height: auto;
  }
  .top_fujimaru {
    margin-top: -190px;
    padding-right: 100px;
    text-align: right;
    animation: fadeIn 1s ease 1s 1 normal backwards;
  }
  .top_fujimaru img {
    width: 18%;
    height: auto;
  }
  .anime_text {
    width: 400px;
    margin-right: 140px;
    display: flex;
    float: right;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
  }
  .anime_text02 {
    width: 900px;
    margin: -120px auto 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    font-size: 45px;
    font-weight: bold;
  }
  .anime_text03_sp {
    display: none;
  }
  .top_img1box:before {
    content: "";
    display: inline-block;
    width: 500px;
    height: 100px;
    background-image: url('../img/top_img01.png');
    background-position: center;
    background-size: contain;
    z-index: 10;
  }
  .top_img2box:before {
    content: "";
    display: inline-block;
    width: 430px;
    height: 430px;
    background-image: url('../img/top_img02.png');
    background-position: top;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(-30%); /* 要素の位置をX軸方向に-50%変える */
    z-index: -100;
  }
  .top_img2box:after {
    content: "";
    display: inline-block;
    width: 430px;
    height: 430px;
    background-image: url('../img/top_img03.png');
    background-position: top;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(30%); /* 要素の位置をX軸方向に-50%変える */
  }
  /*  .top_img3box:after {
    content: "";
    display: inline-block;
    width: 150px;
    height: 320px;
    background-image: url('../img/top_img04.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: 20%;
    right: 0%; 
    transform: translateY(50%); 
  }*/
  .fuwafuwa_topleft {
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    background: url(../img/top_img05.png) no-repeat 10% 80% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 130px;
    height: 230px;
    margin-top: 15px;
    position: absolute;
    top: 30%;
    left: 0%; /* 親要素の外側（左辺）から50%内側 */
  }
  .fuwafuwa_topright {
    animation: fuwafuwa2 5s ease-in-out infinite alternate;
    background: url(../img/top_img04.png) no-repeat 95% bottom / 80% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 146px;
    height: 420px;
    margin-top: 15px;
    position: absolute;
    bottom: 0;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
  }
}
@media screen and (max-width: 768px) {
  .mainimg {
    padding-top: 150px;
    padding-bottom: 910px;
  }
  .mainimg_cont {
    padding-bottom: 300px;
    overflow: hidden !important;
  }
  .mainimg .mainlogo {
    text-align: center;
    padding-top: 30px;
  }
  .mainimg .mainlogo img {
    width: 60%;
    height: auto;
  }
  .anime_text {
    font-size: 22px;
  }
  .anime_text02 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #fff;
    font-size: 20px;
  }
  .anime_text03 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    overflow: hidden;
    color: #FFF;
    font-family: "bebas-neue-pro", sans-serif;
    /* font-family: 'Josefin Sans', sans-serif;*/
    font-weight: bold;
    font-size: 85px;
    clear: both;
    position: relative;
    top: 0;
    line-height: 1.1em;
  }
  .anime_text03_pc {
    display: none;
  }
  .anime_text03_sp:last-child {
    padding-bottom: 10px;
  }
  .top_fujimaru {
    margin-top: -300px;
    /* padding-right: 20px;*/
    text-align: right;
    animation: fadeIn 1s ease 1s 1 normal backwards;
  }
  .top_fujimaru img {
    width: 35%;
    height: auto;
  }
  /* .top_img1box {
    margin-bottom: 60px;
  }*/
  .top_img1box:before {
    content: "";
    display: inline-block;
    width: 300px;
    height: 50px;
    background-image: url('../img/top_img01.png');
    background-position: top;
    background-size: contain;
    z-index: 9999;
  }
  .top_img2box:before {
    content: "";
    display: inline-block;
    width: 230px;
    height: 230px;
    background-image: url('../img/top_img02.png');
    background-position: top;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(-40%); /* 要素の位置をX軸方向に-50%変える */
    z-index: -9998;
  }
  .top_img2box:after {
    content: "";
    display: inline-block;
    width: 230px;
    height: 230px;
    background-image: url('../img/top_img03.png');
    background-position: top;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(30%); /* 要素の位置をX軸方向に-50%変える */
  }
  /*  .top_img3box:after {
    content: "";
    display: inline-block;
    width: 150px;
    height: 170px;
    background-image: url('../img/top_img04.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: 10%;
    right: 0%; 
    transform: translateY(50%); /
  }*/
  .fuwafuwa_topleft {
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    background: url(../img/top_img05.png) no-repeat 10% 40% / 50% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 130px;
    height: 230px;
    margin-top: 15px;
    position: absolute;
    top: 0;
    left: 0%; /* 親要素の外側（左辺）から50%内側 */
  }
  .fuwafuwa_topright {
    animation: fuwafuwa2 3s ease-in-out infinite alternate;
    background: url(../img/top_img04.png) no-repeat 80% 110% / 40% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 146px;
    height: 420px;
    margin-top: 15px;
    position: absolute;
    bottom: 0;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
  }
}
.top_bnr_out {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  position: absolute;
  top: 55em;
  right: 0;
  left: 0;
}
.top_bnr_inn {
  width: calc(50% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  margin: 5px;
  padding: 10px;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
}
@media screen and (max-width: 768px) {
  .top_bnr_out {
    width: 100%;
    margin: 0 auto 10px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
    position: absolute;
    top: 55em;
    /*  left: 0;*/
  }
  .top_bnr_inn {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 5px;
    padding: 10px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  }
}
/*main01
-------------------------------------*/
@media screen and (min-width: 769px) {
  .main01 {
    padding-bottom: 100px;
    background: hsla(39, 63%, 84%, 1.00);
  }
  .main01_cont {
    background: url("../img/main01_bg.png");
    background-repeat: no-repeat;
    background-position: left 50%;
  }
  .main01_cont .maintext_title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 25px;
    font-weight: 900;
  }
  .main01_cont .maintext_text {
    width: 700px;
    margin: 0 auto 50px;
    font-size: 14px;
  }
  .main01_cont .maintext_stitle {
    margin-bottom: 60px;
    text-align: center;
    font-size: 25px;
    line-height: 35px;
  }
  .main01_cont .maintext_stitle .stitle01 {
    font-size: 40px;
  }
  .main01_cont .maintext_stitle .stitle02 {
    font-size: 30px;
  }
  .main01_cont .stitle_sp {
    display: none;
  }
  .main01_img1box:before {
    content: "";
    display: inline-block;
    width: 150px;
    height: 70px;
    background-image: url('../img/main01_img01.png');
    background-position: top;
    background-size: contain;
    z-index: 9999;
  }
  .main01_img1box:after {
    content: "";
    display: inline-block;
    width: 465px;
    height: 97px;
    background-image: url('../img/main01_img02.png');
    background-position: top;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
  }
  .fadebox {
    width: 100%; /* 横幅いっぱい */
    height: 500px; /* 高さを300pxに指定 */
    margin: 0 0 50px; /* 下方向に適度な余白 */
    opacity: 0; /* 初期値は透明にしておく */
    transition: .5s; /* 動くスピードを0.5秒に指定 */
    position: relative; /* 相対位置の設定 */
    top: 50px; /* 事前に下に50pxずらしておく */
  }
  .active {
    opacity: 1; /* 透明度を元に戻す */
    top: 0; /* ずらしていた位置を戻すことで上に上がっているようにみえる */
  }
  .mov_box_dummy {
    width: 630px;
    height: 360px;
    margin: 0 auto;
    background: #000045;
    display: block;
  }
  .mov_box {
    width: 100%;
    max-width: 630px;
    margin: 0 auto;
  }
  .main01_img2box:before {
    content: "";
    display: inline-block;
    width: 130px;
    height: 120px;
    background-image: url('../img/main01_img03.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: 10%;
  }
  .main01_img2box:after {
    content: "";
    display: inline-block;
    width: 380px;
    height: 360px;
    background-image: url('../img/main01_img04.png');
    background-position: top;
    background-size: contain;
    position: absolute;
    bottom: 0;
    right: -10%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateY(50%); /* 要素の位置をX軸方向に-50%変える */
  }
}
@media screen and (max-width: 768px) {
  .main01 {
    width: 100%;
    padding-bottom: 350px;
    background: hsla(39, 63%, 84%, 1.00);
  }
  .main01_cont {
    background: url("../img/main01_bg.png");
    background-repeat: no-repeat;
    background-position: left 50%;
    background-size: contain;
  }
  .main01_cont .maintext_title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 21px;
    font-weight: 900;
  }
  .main01_cont .maintext_text {
    width: 90%;
    margin: 0 auto 50px;
    font-size: 14px;
  }
  .main01_cont .maintext_stitle {
    margin-bottom: 30px;
    text-align: center;
    font-size: 22px;
    line-height: 35px;
  }
  .main01_cont .maintext_stitle .stitle01 {
    font-size: 40px;
  }
  .main01_cont .maintext_stitle .stitle02 {
    font-size: 25px;
  }
  .main01_cont .stitle_pc {
    display: none;
  }
  .main01_img1box:before {
    content: "";
    display: inline-block;
    width: 150px;
    height: 70px;
    background-image: url('../img/main01_img01.png');
    background-position: top;
    background-size: contain;
    z-index: 9999;
    top: 0;
    left: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(-30%); /* 要素の位置をX軸方向に-50%変える */
  }
  .main01_img1box:after {
    content: "";
    display: inline-block;
    width: 400px;
    height: 97px;
    background-image: url('../img/main01_img02.png');
    background-position: top;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
  }
  .fadebox {
    width: 100%; /* 横幅いっぱい */
    height: 430px; /* 高さを300pxに指定 */
    opacity: 0; /* 初期値は透明にしておく */
    transition: .5s; /* 動くスピードを0.5秒に指定 */
    position: relative; /* 相対位置の設定 */
    top: 50px; /* 事前に下に50pxずらしておく */
  }
  .active {
    opacity: 1; /* 透明度を元に戻す */
    top: 0; /* ずらしていた位置を戻すことで上に上がっているようにみえる */
  }
  .mov_box_dummy {
    width: 95%;
    height: 260px;
    margin: 0 auto 20px;
    background: #000045;
    display: block;
    color: #9966cc;
    text-align: center;
    padding-top: 30%;
  }
  .mov_box {
    width: 95%;
    height: 260px;
    margin: 0 auto;
    display: block;
  }
  .main01_img2box:before {
    content: "";
    display: inline-block;
    width: 90px;
    height: 85px;
    background-image: url('../img/main01_img03.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: -20%;
  }
  .main01_img2box:after {
    content: "";
    display: inline-block;
    width: 280px;
    height: 260px;
    background-image: url('../img/main01_img04.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: -30%;
    right: -10%; /* 親要素の外側（左辺）から50%内側 */
  }
}
/*main02
-------------------------------------*/
@keyframes fuwafuwahanashi {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(0px, 20px) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.slidein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.0s;
}
.slidein-left {
  transform: translate(-100%, 0);
}
.slidein-right {
  transform: translate(100%, 0);
}
.slidein-up {
  transform: translate(0, -100%);
}
.slidein-bottom {
  transform: translate(0, 100%);
}
.scrollin {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}
.fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
.fadein-left {
  transform: translate(-30px, 0);
}
.fadein-right {
  transform: translate(30px, 0);
}
.fadein-up {
  transform: translate(0, -30px);
}
.fadein-bottom {
  transform: translate(0, 30px);
}
.scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}
@media screen and (min-width: 769px) {
  /*  .main02 :before {
    content: "";
    display: inline-block;
    width: 105px;
    height: 105px;
    background-image: url('../img/main02_img01.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: -3%;
    left: 50%; 
    transform: translateX(-50%);
  }*/
  .fuwafuwahanashi {
    animation: fuwafuwahanashi 2s ease-in-out infinite alternate;
    background: url("../img/main02_img01.png") no-repeat 0% 50% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 105px;
    height: 105px;
    margin-top: 15px;
    position: absolute;
    top: -5%;
    left: 45%; /* 親要素の外側（左辺）から50%内側 */
  }
  .main02_cont {
    padding-top: 150px;
    padding-bottom: 120px;
    background: url("../img/main02_bg.png");
    background-repeat: no-repeat;
    background-position: right 95%;
  }
  /*  .main02_cont :before {
    content: "";
    display: inline-block;
    width: 134px;
    height: 230px;
    background-image: url('../img/main02_img02.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 20%;
    left: 0%; 
  }*/
  .fuwafuwa_main02left {
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    background: url("../img/main02_img02.png") no-repeat 0% 10% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 134px;
    height: 230px;
    position: absolute;
    top: 15%;
    left: 0%;
  }
  /*  .main02_cont:after {
    content: "";
    display: inline-block;
    width: 110px;
    height: 310px;
    background-image: url('../img/main02_img03.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: 0%;
    right: 0%; /* 親要素の外側（左辺）から50%内側 
  }*/
  .fuwafuwa_main02right {
    animation: fuwafuwa2 5s ease-in-out infinite alternate;
    background: url("../img/main02_img03.png") no-repeat 0% 10% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 110px;
    height: 310px;
    position: absolute;
    bottom: 0%;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
  }
  .main02_cont .maintext_title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 25px;
  }
  .main02_cont .maintext_text {
    width: 660px;
    margin: 0 auto 50px;
    font-size: 12px;
    letter-spacing: -0.2px;
  }
  .main02_cont .project_title {
    margin-bottom: 60px;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
  }
  .main02_cont .project_title span {
    color: #9966cc;
  }
  .project_title span:after {
    content: "▶︎";
    display: inline-block;
    color: #ff0000;
    z-index: 9999;
  }
  .main02_cont .pro_out {
    width: 1000px;
    margin: 0 auto 30px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .main02_cont .pro_inn {
    width: calc(50% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 5px;
    padding: 10px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  }
  .main02_cont .pro_inn:nth-child(odd) {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .main02_cont .pro_inn .stitle {
    font-size: 20px;
    color: #9966cc;
    font-weight: bold;
  }
  .main02_cont .pro_out2 {
    width: 800px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .main02_cont .pro_inn2 {
    width: calc(33% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 5px;
    padding: 10px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
    text-align: center;
  }
  .main02top_link {
    position: absolute;
    bottom: 0;
    left: 50%; /* 親要素の外側（左辺）から50%内側 */
  }
  .main02top_link img {
    width: 50%;
    height: auto;
  }
  .main02top_link:hover {
    bottom: 10px;
    transition: 0.5s;
  }
}
@media screen and (max-width: 768px) {
  /* .main02 :before {
    content: "";
    display: inline-block;
    width: 105px;
    height: 105px;
    background-image: url('../img/main02_img01.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: -3%;
    left: 50%; 
    transform: translateX(-50%); 
  }*/
  .fuwafuwahanashi {
    animation: fuwafuwahanashi 2s ease-in-out infinite alternate;
    background: url("../img/main02_img01.png") no-repeat 0% 50% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 105px;
    height: 105px;
    margin-top: 15px;
    position: absolute;
    top: -5%;
    left: 35%; /* 親要素の外側（左辺）から50%内側 */
  }
  .main02_cont {
    padding-top: 120px;
    padding-bottom: 120px;
    background: url("../img/main02_bg.png");
    background-repeat: no-repeat;
    background-position: right 95%;
    background-size: 60% auto;
    overflow: visible !important;
  }
  /*  .main02_cont:after {
    content: "";
    display: inline-block;
    width: 110px;
    height: 310px;
    background-image: url('../img/main02_img03.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    bottom: 0%;
    right: 0%; /* 親要素の外側（左辺）から50%内側 
    z-index: -9999;
  }*/
  .fuwafuwa_main02right {
    animation: fuwafuwa2 5s ease-in-out infinite alternate;
    background: url("../img/main02_img03.png") no-repeat 0% 10% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 110px;
    height: 310px;
    position: absolute;
    bottom: 0%;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
    z-index: -9997;
  }
  .main02_cont .maintext_title {
    margin-bottom: 20px;
    text-align: center;
    font-size: 21px;
  }
  .main02_cont .maintext_text {
    width: 90%;
    margin: 0 auto 50px;
    font-size: 12px;
  }
  .main02_cont .project_title {
    margin-bottom: 60px;
    text-align: center;
    font-size: 21px;
    font-weight: bold;
  }
  .main02_cont .project_title span {
    display: block;
    color: #9966cc;
  }
  .project_title span:after {
    content: "▶︎";
    display: inline-block;
    color: #ff0000;
    z-index: 9999;
  }
  .main02_cont .pro_out {
    width: 100%;
    margin: 0 auto 30px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .main02_cont .pro_inn {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 5px;
    padding: 10px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  }
  .main02_cont .pro_inn:nth-child(odd) {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
  }
  .main02_cont .pro_inn:nth-child(even) {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .main02_cont .pro_inn .stitle {
    font-size: 20px;
    color: #9966cc;
    font-weight: bold;
    text-align: center;
  }
  .main02_cont .pro_out2 {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .main02_cont .pro_inn2 {
    width: calc(33% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 5px;
    padding: 10px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
    text-align: center;
  }
  .main02top_link {
    position: absolute;
    bottom: 0;
    left: 50%; /* 親要素の外側（左辺）から50%内側 */
  }
  .main02top_link img {
    width: 50%;
    height: auto;
  }
  .main02top_link:hover {
    bottom: 10px;
    transition: 0.5s;
  }
}
/*main03
-------------------------------------*/
.main03 {
  background: linear-gradient(150deg, rgba(240, 92, 230, 1), rgba(194, 145, 255, 1));
  position: relative;
}
.cha_bnr {
  cursor: pointer;
  transition-duration: .4s;
}
.cha_bnr:hover {
  transform: scale(1.1);
}
@media screen and (min-width: 769px) {
  .main03_bg1 {
    max-width: 2000px;
    margin: 0 auto;
    background: url("../img/main03_bg1.png");
    background-repeat: no-repeat;
    background-position: 140% -3%;
  }
  .main03_bg2 {
    padding-bottom: 350px;
    background: url("../img/main03_bg2.png");
    background-repeat: no-repeat;
    background-position: -50% bottom;
  }
  .main03_bg1:before {
    right: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(80%); /* 要素の位置をX軸方向に-50%変える */
    overflow: hidden !important;
  }
  .main03_bg1:after {
    left: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(50%); /* 要素の位置をX軸方向に-50%変える */
  }
  .main03_imgbox {
    padding-bottom: 400px;
  }
  .main03_imgbox:before {
    content: "";
    display: inline-block;
    width: 500px;
    height: 100px;
    background-image: url('../img/top_img01.png');
    background-position: center;
    background-size: contain;
    z-index: 9999;
  }
  .main03_cont .project_title {
    margin-bottom: 60px;
    text-align: center;
    font-size: 25px;
    font-weight: bold;
    color: #fff;
  }
  .main03_cont .project_title span {
    color: #f0debd;
  }
  .main03_cont .project_title span:after {
    content: "▶︎";
    display: inline-block;
    color: #ff0000;
  }
  .fadebox1 {
    width: 100%; /* 横幅いっぱい */
    height: 500px; /* 高さを300pxに指定 */
    margin: 0 0 100px; /* 下方向に適度な余白 */
    opacity: 0; /* 初期値は透明にしておく */
    transition: .5s; /* 動くスピードを0.5秒に指定 */
    position: relative; /* 相対位置の設定 */
    top: 50px; /* 事前に下に50pxずらしておく */
  }
  .fadebox2 {
    width: 100%; /* 横幅いっぱい */
    height: 180px;
    margin: 0 0 50px; /* 下方向に適度な余白 */
    opacity: 0; /* 初期値は透明にしておく */
    transition: .5s; /* 動くスピードを0.5秒に指定 */
    position: relative; /* 相対位置の設定 */
    top: 50px; /* 事前に下に50pxずらしておく */
  }
  .active {
    opacity: 1; /* 透明度を元に戻す */
    top: 0; /* ずらしていた位置を戻すことで上に上がっているようにみえる */
  }
  /*  .mov_box_dummy {
    width: 630px;
    height: 360px;
    margin: 0 auto 30px;
    background: #000045;
    display: block;
    color: #9966cc;
    text-align: center;
    padding-top: 15%;
  }*/
  .mov_box {
    width: 100%;
    margin: 0 auto;
    display: block;
  }
  .mov_box iframe {
    width: 630px;
    height: 360px;
    margin: 0 auto 20px;
  }
  .main03_cont .maintext_text {
    width: 600px;
    margin: 0 auto;
    font-size: 12px;
    letter-spacing: -0.1em;
  }
  .main03_cont .cha img {
    width: 45%;
    height: auto;
  }
  .main03_cont .cha {
    margin-bottom: 5px;
    text-align: center;
  }
  .main03_cont .stext {
    margin-bottom: 50px;
    text-align: center;
    font-size: 22px;
    color: #FFF;
    font-weight: bold;
  }
  .main03_cont .link_pre {
    max-width: 530px;
    margin: 0 auto;
    text-align: center;
    border-radius: 12px;
    background: #D23373;
  }
  .main03_cont .link_pre a {
    padding: 10px 20px;
    color: #FFF !important;
    font-size: 20px;
  }
  .link_pre.kiran, .btn_stamp.kiran a {
    opacity: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .link_pre.kiran::before, .btn_stamp.kiran a::before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
  }
  .link_pre.kiran:hover::before, .btn_stamp.kiran a:hover::before {
    animation: kiran 0.5s linear;
  }
  .kinen_goods {
    width: 1100px;
    margin: 0 auto;
    padding: 20px 0 120px 0;
    background: #FFF;
    border-radius: 8px;
  }
  .kinen_goods > .project_title {
    margin-bottom: 10px;
    padding-top: 15px;
    color: #000045 !important;
  }
  .kinen_goods > .project_title span {
    color: #9966CC !important;
  }
  .box_stamp_out {
    width: 100%;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .box_stamp_inn {
    width: calc(50% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 5px;
    padding: 10px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
    text-align: center;
  }
  .box_stamp_inn .first_text {
    color: #00BA00;
    font-size: 27px;
    line-height: 1em;
  }
  .kinen_goods .first_text_goods {
    padding-top: 20px;
    color: #9966cc;
    font-size: 27px;
    line-height: 1em;
    text-align: center;
  }
  .kinen_goods .sec_text {
    color: #000045;
    font-size: 18px;
    text-align: center;
  }
  .box_stamp_inn .stamp_img2 {
    padding: 82px 0;
  }
  .btn_stamp a {
    width: 80%;
    margin: 0 auto;
    padding: 10px 0;
    font-size: 22px;
    border-radius: 8px;
    color: #FFF;
    background: #00BA00;
  }
  .box_stamp {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 50px;
    padding: 10px 0;
    text-align: center;
    font-size: 28px;
    border-radius: 8px;
    color: #FFF;
    background: #B584C8;
  }
  /*  .box_stamp_kintaro img {
    width: 88%;
    height: auto;
  }*/
  .box_stamp_kintaro_text {
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    color: #000045;
  }
  .kintarouame .box_stamp_out {
    width: 950px;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
}
@media screen and (max-width: 768px) {
  .main03_bg1 {
    background: url("../img/main03_bg1.png");
    background-repeat: no-repeat;
    background-position: 185% top;
    background-size: 90% auto;
  }
  .main03_bg2 {
    padding-bottom: 350px;
    background: url("../img/main03_bg2.png");
    background-repeat: no-repeat;
    background-position: -200% bottom;
    background-size: 90% auto;
  }
  .main03_bg1:before {
    right: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(80%); /* 要素の位置をX軸方向に-50%変える */
    overflow: hidden !important;
  }
  .main03_bg1:after {
    left: 0; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(50%); /* 要素の位置をX軸方向に-50%変える */
  }
  .main03_imgbox {
    padding-bottom: 200px;
  }
  .main03_imgbox:before {
    content: "";
    display: inline-block;
    width: 300px;
    height: 100px;
    background-image: url('../img/top_img01.png');
    background-position: left top;
    background-size: contain;
    z-index: 9999;
  }
  .main03_cont .project_title {
    margin-bottom: 60px;
    text-align: center;
    font-size: 21px;
    font-weight: bold;
    color: #fff;
  }
  .main03_cont .project_title span {
    display: block;
    color: #f0debd;
  }
  .main03_cont .project_title span:after {
    content: "▶︎";
    display: inline-block;
    color: #ff0000;
  }
  .fadebox1 {
    width: 100%; /* 横幅いっぱい */
    height: 400px; /* 高さを300pxに指定 */
    margin: 0 0 50px; /* 下方向に適度な余白 */
    opacity: 0; /* 初期値は透明にしておく */
    transition: .5s; /* 動くスピードを0.5秒に指定 */
    position: relative; /* 相対位置の設定 */
    top: 50px; /* 事前に下に50pxずらしておく */
  }
  .fadebox2 {
    width: 100%; /* 横幅いっぱい */
    height: 180px;
    margin: 0 0 50px; /* 下方向に適度な余白 */
    opacity: 0; /* 初期値は透明にしておく */
    transition: .5s; /* 動くスピードを0.5秒に指定 */
    position: relative; /* 相対位置の設定 */
    top: 50px; /* 事前に下に50pxずらしておく */
  }
  .active {
    opacity: 1; /* 透明度を元に戻す */
    top: 0; /* ずらしていた位置を戻すことで上に上がっているようにみえる */
  }
  /*  .mov_box_dummy {
    width: 95%;
    height: 260px;
    margin: 0 auto 20px;
    background: #000045;
    display: block;
    color: #9966cc;
    text-align: center;
    padding-top: 30%;
  }*/
  .mov_box {
    width: 100%;
    margin: 0 auto 20px;
    display: block;
  }
  .mov_box iframe {
    max-width: 100%;
    height: 260px;
    margin: 0 auto 20px;
    display: block;
  }
  .main03_cont .maintext_text {
    width: 100%;
    margin: 0 auto;
    font-size: 12px;
    letter-spacing: -0.1em;
  }
  .main03_cont .cha {
    margin-bottom: 5px;
    text-align: center;
  }
  .main03_cont .stext {
    margin-bottom: 30px;
    text-align: center;
    font-size: 18px;
    color: #FFF;
    font-weight: bold;
  }
  .main03_cont .link_pre {
    margin: 0 auto;
    text-align: center;
    border-radius: 12px;
    background: #D23373;
  }
  .main03_cont .link_pre a {
    padding: 10px 20px;
    color: #FFF !important;
    font-size: 16px;
  }
  .kinen_goods {
    width: 100%;
    margin: 0 auto;
    padding: 20px 0 30px 0;
    background: #FFF;
    border-radius: 8px;
  }
  .kinen_goods > .project_title {
    margin-bottom: 10px;
    padding-top: 15px;
    color: #000045 !important;
  }
  .kinen_goods > .project_title span {
    color: #9966CC !important;
  }
  .box_stamp_out {
    width: 100%;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .box_stamp_inn {
    margin: 5px;
    padding: 10px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
    text-align: center;
  }
  .box_stamp_inn .first_text {
    color: #00BA00;
    font-size: 22px;
    line-height: 1em;
  }
  .kinen_goods .first_text_goods {
    padding-top: 20px;
    color: #9966cc;
    font-size: 22px;
    line-height: 1em;
    text-align: center;
  }
  .kinen_goods .first_text_goods .br:before {
    content: "\A" !important;
    white-space: pre !important;
  }
  .kinen_goods .sec_text {
    color: #000045;
    font-size: 18px;
    text-align: center;
  }
  .box_stamp_inn:first-child {
    margin-bottom: 30px;
  }
  .btn_stamp a {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    font-size: 22px;
    border-radius: 8px;
    color: #FFF;
    background: #00BA00;
  }
  .box_stamp {
    width: 90%;
    margin: 0 auto 70px;
    padding: 10px 0;
    text-align: center;
    font-size: 22px;
    border-radius: 8px;
    color: #FFF;
    background: #B584C8;
  }
  .box_stamp_kintaro_text {
    width: 90%;
    margin: 0 auto;
    color: #000045;
  }
  .kintarouame .box_stamp_out {
    width: 85%;
    margin: 0 auto;
  }
}
/*main04
-------------------------------------*/
.main04 {
  padding: 50px 0 0 0;
  background: linear-gradient(182deg, rgba(235, 82, 212, 1) 0%, rgba(174, 122, 255, 0.8) 100%);
}
/*.main04_bg1{
	position: relative;
	z-index:5;
background: rgba(235, 82, 212, 0);
background: linear-gradient(0deg,rgba(235, 82, 212, 0) 0%, rgba(220, 95, 255, 0.6) 50%, rgba(220, 95, 255, 0) 100%);
}*/
.main04_cont {
  padding-bottom: 50px;
}
.slide_wrap {
  width: 100vw;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  /*  overflow: hidden;*/
}
.slideshow {
  display: flex;
  animation: loop-slide 40s infinite linear 1s both;
  list-style-type: none;
}
.ayumi_slide {
  width: 300px;
  height: auto;
  margin: 0;
  padding: 0 20px;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.ayumi_title_out {
  width: 100%;
  max-width: 620px;
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
}
.ayumi_title_inn {
  width: calc(50% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  margin: 5px;
  padding: 10px;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  text-align: center;
}
.ayumi_title_inn:last-child {
  padding-top: 50px;
}
.ayumi_logo_out {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
}
.ayumi_logo_inn {
  width: calc(33% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  margin: 5px;
  padding: 10px;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  text-align: center;
}
.main04 .mov_box {
  position: relative;
  margin-top: -500px;
  margin-bottom: 100px;
}
.ayumi_text {
  /*  text-align: center;
  font-size: 60px;
  font-weight: bold;
  color: #FFF;
  font-family: "fot-tsukumin-pr6n", sans-serif;
  font-weight: 300;
  font-style: normal;*/
  max-width: 450px;
  margin: 0 auto 30px;
}
.ayumi_text2 {
  width: 100%;
  max-width: 450px;
  margin: 0 auto 50px;
  font-family: "Noto Sans JP", sans-serif;
  color: #FFF;
  font-weight: 800;
}
.ayumi_text2 p:last-child {
  font-size: 12px;
}
.main04top_link {
  position: absolute;
  bottom: 0;
  left: 50%; /* 親要素の外側（左辺）から50%内側 */
}
.main04top_link img {
  width: 50%;
  height: auto;
}
.main04top_link:hover {
  bottom: 10px;
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  .timeline_sp, .timeline_line_sp, .logo_inn_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .main04 {
    padding: 50px 0 0 0 0;
  }
  .main04_cont {
    padding-bottom: 100px;
  }
  .ayumi_slide {
    width: 200px;
    height: auto;
    margin: 0;
    padding: 0 20px;
  }
  .ayumi_title_out {
    width: 100%;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .ayumi_title_inn {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 5px;
    padding: 10px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
    text-align: center;
  }
  .ayumi_title_inn:first-child img {
    width: 70%;
    height: auto;
  }
  .logo_inn_pc {
    display: none;
  }
  .ayumi_logo_out {
    width: 100%;
    max-width: 700px;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .ayumi_logo_inn {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 5px;
    padding: 10px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
    text-align: center;
  }
  .main04 .mov_box {
    position: relative;
    margin-top: -300px;
    margin-bottom: 100px;
  }
  .ayumi_text {
    margin-bottom: 0;
    text-align: center;
  }
  .ayumi_text2 {
    width: 100%;
    max-width: 450px;
    margin: 0 auto 50px;
    font-family: "Noto Sans JP", sans-serif;
    color: #FFF;
    font-weight: 800;
  }
  .ayumi_text2 p:last-child {
    font-size: 12px;
  }
  .timeline_pc {
    display: none;
  }
  .timeline_line_pc {
    display: none;
  }
  .timeline_sp {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
  }
  .timeline_sp img {
    max-width: 100vw;
    width: 100vw;
  }
  .main04top_link {
    position: absolute;
    bottom: 0;
    left: 50%; /* 親要素の外側（左辺）から50%内側 */
  }
  .main04top_link img {
    width: 50%;
    height: auto;
  }
}
/*main05
-------------------------------------*/
.main05 {
  padding-bottom: 200px;
}
@media screen and (min-width: 769px) {
  .message_img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .message_textbox .message_title .br_pc:after {
    content: "\A";
    white-space: pre;
  }
  .message_box2 .box_out {
    width: 100%;
    max-width: 430px;
    margin: 0 auto 50px;
  }
  .message_box2 .box_out img {
    width: 100%;
    height: auto;
  }
}
.message_headtext {
  width: 100%;
  max-width: 700px;
  margin: -13px auto 60px;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  font-size: 30px;
}
.message_headtext01, .message_headtext02 {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
}
.message_box1 .message_headtext01 {
  width: 40%;
  color: #9966cc;
  padding-left: 80px;
}
.message_box2 .message_headtext01 {
  color: #9966cc;
  padding-left: 80px;
}
.message_box1 .message_headtext02 {
  width: 60%;
  color: #000045;
  text-align: right;
}
.message_textbox {
  width: 100%;
  max-width: 650px;
  margin: 0 auto 40px;
  color: #000045;
}
.message_textbox .message_title {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}
.message_textbox .message_title .br {
  padding-right: 10px;
}
.message_textbox .message_text {
  margin-bottom: 30px;
  font-size: 14px;
}
.message_box1 .message_name {
  width: 100%;
  max-width: 260px;
  float: right;
  text-align: right;
  display: block;
}
.message_box1 .message_name:after {
  content: "";
  display: block;
  width: 270px;
  height: 100px;
  background: url("../img/message_name01.png");
  background-repeat: no-repeat;
  background-position: top;
  background-size: 50% auto;
  position: absolute;
  right: -5%; /* 親要素の外側（左辺）から50%内側 */
}
.message_name p {
  font-size: 12px;
  color: #000045;
}
.main05_cont .logo {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 150px 0;
}
.main05_cont .logo img {
  width: 200px;
  height: auto;
}
/*.message_box2 .box_out {
  width: 100%;
  max-width: 630px;
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap;  flexアイテムを折り返す（複数行に配置する） 
}*/
.message_box2 .box_inn {
  width: calc(50% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  margin: 5px;
  padding: 10px;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  text-align: center;
}
.message_box2 .batsu {
  position: relative;
}
.message_box2 .batsu:after {
  content: "×";
  color: #9966cc;
  font-size: 40px;
  font-weight: bold;
  display: inline-block;
  position: absolute;
  right: -12%;
  top: 20%;
}
.message_box2 .message_textbox .message_title {
  font-size: 22px;
}
.message_box2 .message_textbox .message_text {
  width: 100%;
  max-width: 450px;
  margin: 0 auto 60px;
}
.message_box2 .mov_box_dummy {
  width: 530px;
  height: 360px;
  margin: 0 auto;
  background: #000045;
  display: block;
  color: #9966CC;
  text-align: center;
}
.message_box2 .mov_box_dummy span {
  line-height: 360px;
}
.mov_box_out {
  width: 100%;
  margin: 0 auto 50px;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
}
.mov_box_inn {
  width: calc(50% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  margin: 5px;
  padding: 10px;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  text-align: center;
}
.mov_box_inn p {
  padding-top: 15px;
  font-size: 14px;
}
.mov_box_inn a{
	  position: relative;
  overflow: hidden;
}
.mov_box_inn a:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 2;
  background: #000045; /*好みの色に変えてください。*/
  opacity: 0;
  transition: 0.3s;
}
/*.mov_box_inn a:after {
  content: "";
  display: block;
  width: 0;
  height: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 3;
  transition: 0.3s;
  background: #9966cc; 好みの色に変えてください。
}*/
.mov_box_inn a:after{
  content:"▶︎";/*好みの文章に変更してください。*/
  display:block;
  color:#fff;
  line-height:48px;
  width:20%;
  border:solid 1px #fff;
  border-radius:5px;
  text-align:center;
  position:absolute;
  top:50%;
  left:50%;
  margin-top:-1em;
  margin-left:-45px;
  opacity:0;
  z-index:3;
  transition:0.3s;
  font-weight:bold;
  letter-spacing:0.2em;
}
.mov_box_inn a:hover:before {
  opacity: 0.5;
}
.mov_box_inn a:hover:after {
	  opacity:1;
 width:35%;
}
@media screen and (max-width: 768px) {
  .main05 {
    padding-bottom: 650px;
  }
  .message_img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .message_img img {
    width: 500px;
    height: 250px;
    object-fit: cover;
  }
  .message_headtext {
    display: block;
  }
  .message_box1 .message_headtext01 {
    width: 100%;
    padding-left: 0;
  }
  .message_box2 .message_headtext01 {
    padding-left: 0;
  }
  .message_box1 .message_headtext02 {
    width: 100%;
    padding-right: 5px;
  }
  .message_box1 .message_name:after {
    content: "";
    display: block;
    width: 270px;
    height: 100px;
    background: url("../img/message_name01.png");
    background-repeat: no-repeat;
    background-position: top right;
    background-size: 50% auto;
    position: absolute;
    right: 10%; /* 親要素の外側（左辺）から50%内側 */
  }
  .message_textbox .message_title .br:after {
    content: "\A";
    white-space: pre;
  }
  .message_box2 .message_textbox .message_title {
    letter-spacing: -1.5px;
  }
  .message_box2 .message_textbox .message_text {
    width: 100%;
    max-width: 250px;
  }
  /*  .message_box2 .mov_box_dummy {
    width: 100%;
    height: 260px;
    margin: 0 auto;
  }
  .message_box2 .mov_box_dummy span {
    line-height: 65%;
  }*/
  .message_box2 .box_out {
    width: 100%;
    max-width: auto;
    margin: 0 auto 300px;
  }
  .mov_box_out {
    width: 100%;
    margin: 0 auto 50px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .mov_box_inn {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 5px;
    padding: 0 10px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
    text-align: center;
  }
  .mov_box_inn:first-child {
    margin-bottom: 60px;
  }
  .mov_box_inn p {
    padding-top: 15px;
    font-size: 14px;
  }
}
/*footer
-------------------------------------*/
@media screen and (min-width: 769px) {
  footer {
    padding-bottom: 120px;
    background: #000045;
  }
  .foot_img01:before {
    content: "";
    display: inline-block;
    width: 300px;
    height: 280px;
    background-image: url('../img/main01_img04.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0%;
    left: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateY(-40%); /* 要素の位置をX軸方向に-50%変える */
  }
  .foot_cont > .top_link, .foot_cont > .foot_btn, .foot_cont > .foot_mainlogo {
    text-align: center;
  }
  .foot_cont {
    padding: 150px 0;
  }
  .foot_cont > .top_link {
    position: absolute;
    top: 5%;
    left: 50%; /* 親要素の外側（左辺）から50%内側 */
  }
  .top_link:hover {
    top: -1px;
    transition: 0.5s;
  }
  .foot_btn {
    width: 360px;
    margin: 0 auto 70px;
    padding: 15px;
    border-radius: 10px;
    background: #9966cc;
  }
  .foot_btn a {
    color: #f0debd;
    text-align: center;
    font-weight: bold;
  }
  .foot_btn.kiran {
    opacity: 1;
    overflow: hidden;
    position: relative;
    cursor: pointer;
  }
  .foot_btn.kiran::before {
    background-color: #fff;
    content: "";
    display: block;
    position: absolute;
    top: -100px;
    left: 0;
    width: 30px;
    height: 100%;
    opacity: 0;
    transition: cubic-bezier(0.32, 0, 0.67, 0);
  }
  .foot_btn.kiran:hover::before {
    animation: kiran 0.5s linear;
  }
  @keyframes kiran {
    0% {
      transform: scale(2) rotate(45deg);
      opacity: 0;
    }
    20% {
      transform: scale(20) rotate(45deg);
      opacity: 0.6;
    }
    40% {
      transform: scale(30) rotate(45deg);
      opacity: 0.4;
    }
    80% {
      transform: scale(45) rotate(45deg);
      opacity: 0.2;
    }
    100% {
      transform: scale(50) rotate(45deg);
      opacity: 0;
    }
  }
  .foot_row {
    position: relative;
    overflow: hidden;
  }
  .foot_row h1 {
    float: left;
  }
  .foot_row .sns_box {
    width: 180px;
    height: 70px;
    float: right;
    display: flex;
    align-items: center;
  }
  .footer-boxout .menu-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    display: flex;
    height: 50px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding-bottom: 120px;
    background: #000045;
  }
  .foot_img01:before {
    content: "";
    display: inline-block;
    width: 230px;
    height: 250px;
    background-image: url('../img/main01_img04.png');
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0%;
    left: -10%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateY(-70%); /* 要素の位置をX軸方向に-50%変える */
  }
  .foot_cont > .top_link, .foot_cont > .foot_btn, .foot_cont > .foot_mainlogo {
    text-align: center;
  }
  .foot_cont {
    padding: 150px 0;
  }
  .foot_cont > .top_link {
    position: absolute;
    top: 5%;
    left: 50%; /* 親要素の外側（左辺）から50%内側 */
  }
  .foot_btn a {
    width: 100%;
    margin: 0 auto 70px;
    padding: 15px;
    text-align: center;
    color: #f0debd;
    font-weight: bold;
    border-radius: 10px;
    background: #9966cc;
  }
  .foot_mainlogo {
    margin-bottom: 50px;
  }
  .foot_row {
    position: relative;
    overflow: hidden;
  }
  .foot_row h1 {
    width: 30%;
    height: auto;
    float: left;
  }
  .foot_row .sns_box {
    width: 35%;
    height: auto;
    float: right;
    display: flex;
    padding-top: 5px;
  }
  .footer-boxout .menu-btn {
    position: absolute;
    top: 0px;
    right: 10px;
    display: flex;
    height: 30px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
  }
}
.copyright {
  color: #9966cc;
  text-align: left;
}
/*-------------------------------------

プレゼント

-------------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
.clearfix:before {
  content: "";
  display: block;
  clear: both;
}
.clearfix {
  display: block;
}
@media screen and (min-width: 769px) {
  .img_sp {
    display: none;
  }
  .fuwafuwa_topleft_present {
    animation: fuwafuwa 3s ease-in-out infinite alternate;
    background: url(../img/top_img05.png) no-repeat 5% 80% / 100% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 130px;
    height: 230px;
    margin-top: 30px;
    position: absolute;
    bottom: 5%;
    left: 15%; /* 親要素の外側（左辺）から50%内側 */
  }
  .mainimg_present > .fuwafuwa_topright {
    animation: fuwafuwa2 5s ease-in-out infinite alternate;
    background: url(../img/top_img04.png) no-repeat right bottom / 80% auto;
    display: inline-block;
    transition: 1.5s ease-in-out;
    width: 146px;
    height: 420px;
    margin-top: 15px;
    position: absolute;
    bottom: 0;
    right: 15%; /* 親要素の外側（左辺）から50%内側 */
    z-index: -1;
  }
}
@media screen and (max-width: 768px) {
  .img_pc {
    display: none;
  }
  .fuwafuwa_topleft_present {
    display: none;
    visibility: visible;
  }
  .mainimg_present > .fuwafuwa_topright {
    display: none;
    visibility: visible;
  }
}
.present_cont {
  width: 100vw;
  padding-bottom: 100px;
  background: url("../img/present_bg.png");
  cover: contain;
  background-position: left top;
  /*position: relative;
	z-index:-1;*/
}
.top_img2box_present:before {
  content: "";
  display: inline-block;
  width: 430px;
  height: 430px;
  background-image: url('../img/top_img02.png');
  background-position: top;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0%; /* 親要素の外側（左辺）から50%内側 */
  transform: translateX(-30%); /* 要素の位置をX軸方向に-50%変える */
}
.top_img2box_present:after {
  content: "";
  display: inline-block;
  width: 430px;
  height: 430px;
  background-image: url('../img/top_img03.png');
  background-position: top;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0%; /* 親要素の外側（左辺）から50%内側 */
  transform: translateX(30%); /* 要素の位置をX軸方向に-50%変える */
}
@media screen and (max-width: 768px) {
  .top_img2box_present:before {
    content: "";
    display: inline-block;
    width: 230px;
    height: 230px;
    background-image: url('../img/top_img02.png');
    background-position: top;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(-40%); /* 要素の位置をX軸方向に-50%変える */
  }
  .top_img2box_present:after {
    content: "";
    display: inline-block;
    width: 230px;
    height: 230px;
    background-image: url('../img/top_img03.png');
    background-position: top;
    background-size: contain;
    position: absolute;
    top: 0;
    right: 0%; /* 親要素の外側（左辺）から50%内側 */
    transform: translateX(30%); /* 要素の位置をX軸方向に-50%変える */
  }
}
.mainimg_cont_pre {
  margin-bottom: 50px;
}
.pre_img {
  text-align: center;
}
.mainimg_present {
  margin-bottom: 10px;
}
.top_textimg {
  width: 850px;
  margin: 0 auto;
}
/*.top_btn_kekka {
  width: 100%;
  max-width: 850px;
  margin-left: 100px;
}
.top_btn_kekka a {
  display: block;
  padding: 10px 20px;
  color: #FF0073;
  background: #FFF;
  font-weight: bold;
  font-size: 22px;
  border-radius: 10px;
}
.top_btn_kekka a:hover {
  color: #FFF;
  background-color: #FF0073;
}*/
/*.top_btn_kekka.kiran:hover {
  opacity: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
	background-color: #FF0073;
	border-radius: 10px;
}
.top_btn_kekka.kiran::before {
  background-color: #FF0073;
  content: "";
  display: block;
  position: absolute;
  top: -100px;
  left: 0;
  width: 30px;
  height: 100%;
  opacity: 0;
  transition: cubic-bezier(0.32, 0, 0.67, 0);
	 animation: kiran 0.5s linear;
}
.anim-box.kiran:hover::before {
  animation: kiran 0.5s linear;
}*/
/* ボタンの基本スタイル */
.top_btn_kekka.btn a {
  position: relative;
  display: block;
  width: 100%;
  max-width: 850px;
  margin-left: 100px;
  padding: 10px 20px;
  background: #FFF;
  color: #FF0073 !important;
  font-weight: bold;
  font-size: 22px;
  border-radius: 10px;
  box-sizing: border-box;
}
/* 光のスタイル */
.top_btn_kekka.btn-flash a {
  overflow: hidden;
}
.top_btn_kekka.btn-flash a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  transition: .5s;
}
.top_btn_kekka.btn-flash a:hover {
  color: #FFF !important;
  background: #FF0073;
}
/* ホバー時のスタイル */
.top_btn_kekka.btn-flash a:hover::before {
  top: 0;
  left: 100%;
}
@media screen and (min-width: 769px) {
  .top_textimg br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .top_textimg {
    width: 100%;
    margin: 0 auto 50px;
  }
  .top_textimg img {
    margin-bottom: 30px;
  }
  .top_textimg img {
    width: 90%;
    height: auto;
  }
  .top_btn_kekka {
    width: 90%;
    max-width: 100%;
    margin: 0 auto;
    background: #FFF;
    border-radius: 10px;
  }
  .top_btn_kekka a {
    display: block;
    padding: 10px 20px;
    color: #FF0073;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.2em;
  }
}
/*推しキャラはどれ？
-------------------------------------*/
.main01_present {
  margin-bottom: 0;
}
.cha_out {
  width: 1100px;
  margin: -30px auto 80px;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
}
.cha_inn {
  width: calc(33% - 7px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  margin: 5px;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
}
.main01_preimg1 {
  position: relative;
  z-index: 1;
}
.how_touhyo, .box_present {
  width: 1000px;
  margin: 0 auto;
  padding: 20px;
  background: #FFF;
  border-radius: 12px;
  position: relative;
  z-index: 9997;
}
.how_touhyo .title {
  width: 100%;
  margin: -35px auto 10px;
  color: #FFF;
  text-align: center;
}
.how_touhyo .title span {
  padding: 5px 30px;
  font-size: 25px;
  border-radius: 16px;
  background: #A40B5E;
}
.how_touhyo .text {
  text-align: center;
}
.how_touhyo .text span:first-child {
  color: #E51373;
  font-size: 20px;
}
.how_touhyo .text .nth2 {
  color: #40210F;
}
.how_touhyo .text span:last-child {
  color: #F29600;
}
.how_touhyo_out {
  width: 950px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
}
.how_touhyo_inn {
  width: calc(50% - 30px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  margin: 15px;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
}
.how_touhyo_inn .inn_box {
  margin-bottom: 30px;
}
.how_touhyo_inn .link a {
  padding-top: 10px;
  text-align: right;
  color: #E51373 !important;
  relative: relative !important;
  z-index: 9998 !important;
}
.how_touhyo_inn .link a:hover {
  text-decoration: underline;
}
.how_touhyo_inn .small_text {
  margin-top: 1em;
  margin-left: 1em;
  font-size: 12px;
  text-indent: -1em;
  pading-left: 1em;
}
.how_touhyo_inn .small_text span {
  color: #E51373;
  text-decoration: underline;
}
.how_touhyo .box {
  width: 80%;
  margin: 0 auto;
  padding: 10px 0;
  font-size: 20px;
  color: #FFF;
  text-align: center;
  border-radius: 12px;
  background: hsla(327, 87%, 34%, 0.60)
}
@media screen and (max-width: 768px) {
  .main01_preimg1 {
    margin-bottom: 30px;
  }
  .cha_out {
    width: 100%;
    margin: 0 auto 80px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .cha_inn {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 0 0 30px 0;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  }
  .how_touhyo, .box_present {
    width: 100%;
    margin: 0 auto;
  }
  .how_touhyo .text span:first-child {
    color: #E51373;
    font-size: 20px;
  }
  .how_touhyo .text .nth2 {
    color: #40210F;
    letter-spacing: -0.1em !important;
  }
  .how_touhyo .text span:last-child {
    color: #F29600;
  }
  .how_touhyo_out {
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .how_touhyo_inn {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 0 0 15px 0;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  }
  .how_touhyo_inn .inn_box {
    margin-bottom: 30px;
  }
  .how_touhyo_inn .link a {
    padding-top: 10px;
    text-align: right;
    color: #E51373 !important;
    relative: relative !important;
    z-index: 9998 !important;
  }
  .how_touhyo_inn .link a:hover {
    text-decoration: underline;
  }
  .how_touhyo .box {
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
    font-size: 16px;
    color: #FFF;
    text-align: center;
    border-radius: 12px;
    background: hsla(327, 87%, 34%, 0.60)
  }
  .how_touhyo .box .br::before {
    content: "\A";
    white-space: pre;
  }
}
}
/*グッズプレゼント！
-------------------------------------*/
.box_present {
  position: relative;
  z-index: 9998;
}
.present_out {
  width: 970px;
  margin: 0 auto 30px;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
}
.present_inn {
  width: calc(33% - 10px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  margin: 5px 5px 20px 5px;
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
}
@media screen and (min-width: 769px) {
  .present_out .pre_img {
    width: 100%;
    margin: 0 auto;
  }
  .present_out .pre_img img {
    position: relative;
    left: 2em;
  }
  .present_out .text_small {
    max-width: 80px;
    font-size: 10px;
    text-indent: -1em;
    padding-left: 1em;
    text-align: left;
    margin-left: 3em;
    display: inline-block;
  }
}
.box_present .box_out {
  margin-bottom: 30px;
  overflow: hidden;
  font-size: 12px;
}
.box_present .box01 {
  width: 30%;
  margin-right: 10px;
  float: left;
}
.box_present .box02 {
  width: 68%;
  float: left;
}
.box_present .box02 dt {
  margin: 0;
  font-weight: bold;
}
.box_present .box02 dd {
  padding-left: 1em;
  text-indent: -1em;
}
.box_present .margin_bottom {
  margin-bottom: 10px;
}
.box_present .box03 {
  width: 55%;
  margin-right: 10px;
  float: left;
}
.box_present .box04 {
  width: 43%;
  margin-top: 40px;
  float: left;
}
.box_present .box04 .box04_sub1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .present_out {
    width: 100%;
    margin: 0 auto 30px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
  .present_inn {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 0 0 20px 0;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  }
  .present_out .pre_img {
    width: 100%;
  }
  /*.present_out .pre_img img{
	position: relative;
	left:-4em;
	}*/
  .present_out .text_small {
    width: 100%;
    font-size: 10px;
    text-align: center;
    display: block;
  }
  .box_present .box_out {
    margin-bottom: 30px;
    overflow: hidden;
    font-size: 12px;
  }
  .box_present .box01 {
    width: 100%;
    margin: 0 0 30px 0;
    float: both;
  }
  .box_present .box02 {
    width: 100%;
    clear: both;
  }
  .box_present .box03 {
    width: 100%;
    margin: 0 0 30px 0;
    clear: both;
  }
  .box_present .box04 {
    width: 100%;
    margin: 0 auto 30px auto;
    clear: both;
    text-align: center;
  }
  .box_present .box04 .box04_sub1 img {
    margin-bottom: 40px;
  }
}
/*結果発表
-------------------------------------*/
.present_topimg > .top_img1box:before {
  background: none;
}
.present_topimg .mainlogo {
  padding-top: 180px;
}
.kekka_box {
  padding-top: 30px;
}
.kekka_box p {
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .kekka_box img {
    width: 60%;
    height: auto;
  }
  .topimg_pre {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }
}
@media screen and (max-width: 768px) {
  .kekka_box img {
    width: 100%;
    height: auto;
  }
  .topimg_pre {
    margin-bottom: 0 !important;
    padding-bottom: 60px !important;
  }
  .present_topimg > .top_img2box:before {
    display: none !important;
  }
  .present_topimg .fuwafuwa_topleft {
    top: 30%;
    left: 0%; /* 親要素の外側（左辺）から50%内側 */
  }
}
/*#menu-box {
  display: none;
}*/
#menu-bg {
  width: 100%;
  background: hsla(39, 63%, 84%, 1.00);
  overflow: hidden;
}
#menu {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}
#menu li {
  display: block;
  float: left;
  width: 25%;
  margin: 0;
  padding: 0;
}
#menu li a {
  display: block;
  padding: 20px 0;
  color: #604C3F;
  text-align: center;
  text-decoration: none;
  font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
  font-weight: bold;
  font-style: normal;
}
#menu li a:hover {
  color: #FFF;
}
#toggle {
  display: flex;
  position: relative;
  margin-left: auto;
  top: -5px;
  right: 0;
}
#toggle a {
  display: block;
  padding: 12px 0 10px;
  color: #9966CC;
  text-align: center;
  text-decoration: none;
}
#toggle:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #9966CC;
}
#toggle a:before, #toggle a:after {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 20px;
  height: 4px;
  background: #fff;
}
#toggle a:before {
  margin-top: -6px;
}
#toggle a:after {
  margin-top: 2px;
}
@media only screen and (max-width: 768px) {
  .head_box {
    width: 95%;
    margin: 0 auto;
    padding: 1rem 0;
    /* ロゴとメニューを横並びにする */
    display: flex;
  }
  #menu {
    display: none;
  }
  #menu li {
    display: block;
    float: left;
    width: 50%;
    margin: 0;
    padding: 0;
  }
  #menu li a {
    display: block;
    padding: 20px 0;
    color: #604C3F;
    text-align: center;
    text-decoration: none;
    font-family: "a-otf-ud-shin-go-pr6n", sans-serif;
    font-weight: bold;
    font-style: normal;
  }
}