@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: 270px;
  height: auto;
  margin-top: -20px;
}
.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) {
  .header h1 img {
    width: 90%;
    height: auto;
  }
  .head_scroll_inn a {
    font-size: 18px;
  }
  .head_scroll_inn:first-child {
    padding-top: 8%;
  }
  .sns_box {
    margin-right: 0;
    margin-left: 0;
  }
  .sns_box ul {
    padding-right: 0;
    display: flex;
    list-style: none;
  }
  .sns_box li {
    padding-right: 15px;
  }
}
/*メイン画像
-------------------------------------*/
.mainimg {
  width: 100vw;
  padding: 330px 0 200px 0;
  background: rgba(0, 0, 120, 1.00);
}
.mainimg_cont .mainlogo {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.mainimg .mainlogo p:first-child {
  margin-bottom: 130px;
}
@media screen and (min-width: 769px) {
  .mainimg .mainlogo p:first-child img {
    width: 30%;
    height: auto;
  }
  .mainimg .mainlogo p:last-child img {
    width: 20%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .mainimg {
    padding-top: 150px;
    padding-bottom: 120px;
  }
  .mainimg .mainlogo {
    text-align: center;
    padding-top: 30px;
  }
  .mainimg .mainlogo p:first-child img {
    width: 70%;
    height: auto;
  }
  .mainimg .mainlogo p:last-child img {
    width: 50%;
    height: auto;
  }
}
/*main01
-------------------------------------*/
.main01 {
  clear: both;
}
.top_bnr_out {
  width: 100%;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
}
.top_bnr_inn {
  width: calc(50%); /* 列の幅を均等に分配し、マージンを考慮して計算 */
  box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
}
.top_bnr_inn a:hover {
  background: hsla(0, 0%, 100%, 1.00);
  opacity: 0.6;
}
.video_box {
  width: 100%;
  height: 350px;
  overflow: hidden;
}
.video {
  width: 100%;
  height: 350px;
  object-fit: cover;
  object-position: 50% 50%;
  position: relative;
  z-index: -10;
}
.video_text span {
  display: inline-block;
  background: #3e3a39;
  padding: 0 0 0 10px;
  opacity: 0.9;
}
.video_text .video_text01 {
  margin-left: 100px;
}
@media screen and (min-width: 769px) {
  .video_text {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    font-size: 40px;
    color: #FFF;
    top: -250px !important;
  }
}
@media screen and (max-width: 768px) {
  .top_bnr_out {
    width: 100vw;
  }
  .top_bnr_inn {
    width: 100%; /* 列の幅を均等に分配し、マージンを考慮して計算 */
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
  }
  .top_bnr_inn:first-child img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: 95% 0%;
  }
  .top_bnr_inn:last-child img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    object-position: 12% 0%;
  }
  .main01_cont p img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: 30% 0%;
  }
  .video_box {
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  .video {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: 50% 50%;
    position: relative;
    z-index: -10;
  }
  .video_text {
    width: 90%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    font-size: 28px;
    color: #FFF;
    top: -150px;
  }
  .video_text span {
    display: inline-block;
    background: #3e3a39;
    padding: 0 0 0 10px;
    opacity: 0.9;
  }
  .video_text .video_text01 {
    margin-left: 50px;
  }
}
@media screen and (max-width: 390px) {
  .top_bnr_inn:first-child img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: 95% 0%;
  }
  .top_bnr_inn:last-child img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    object-position: 10% 0%;
  }
}
@media screen and (min-width: 769px) {}
/*main02
-------------------------------------*/
/*.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;
}*/
.main02 {
  background: #FFF;
}
@media screen and (min-width: 769px) {
  .main02_cont {
    padding-bottom: 120px;
    /*background: url("../img/main02_bg.png");
    background-repeat: no-repeat;
    background-position: right 95%;*/
  }
  /*  .insta_box_out {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 100px 0;
    display: -webkit-flex;
    flex-wrap: wrap; 
  }
  .insta_box_inn {
    width: calc(25%); 
    padding: 0 10px;
    box-sizing: border-box; 
  }*/
  .insta_box_out {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap; /* flexアイテムを折り返す（複数行に配置する） */
  }
/*  .insta_box_out iframe {
    width: 100%;
    border: 0;
    overflow: hidden;
  }*/
  .insta_box_inn {
    width: calc(33% - 2px); /* 列の幅を均等に分配し、マージンを考慮して計算 */
    margin: 5px auto;
    padding: 5px;
    box-sizing: border-box; /* ボックスモデルを維持するために必要なスタイル */
    text-align: center;
  }
  .insta_link {
    padding-right: 40px;
    text-align: right;
  }
  .insta_link span {
    vertical-align: top;
    padding-right: 10px;
    color: #604C3F !important;
  }
  .insta_link a {
    display: inline-block;
  }
  .main02_cont .img_fujimaru {
    width: 100%;
    madgin: 0 auto;
    padding: 250px 0;
    text-align: center;
  }
  .main02_cont .img_fujimaru img {
    width: 40%;
    height: auto;
  }
  .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_cont {
    margin-top: -20px;
    padding-bottom: 120px;
  }
  .main02_cont p {
    margin-bottom: 50px;
  }
  .main02_cont p img {
    width: 90%;
    height: auto;
  }

  .main02_cont .img_fujimaru {
    width: 100%;
    madgin: 0 auto;
    padding: 250px 0;
    text-align: center;
  }
  .insta_link {
    padding-right: 0;
    text-align: right;
  }
  .insta_link a img {
    width: 30%;
    height: auto;
  }
}
/*main03
-------------------------------------*/
.main03 {
  padding-bottom: 200px;
  background: rgba(238, 176, 51, 0.10);
  position: relative;
}
.main03_cont {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.main03_cont .text_box {
  padding: 100px 0;
  color: #000078;
}
.main03_cont .text_box p:first-child {
  margin: 0 calc(50% - 50vw);
  font-size: 34px;
  margin-bottom: 50px;
  text-align: center;
}
.main03_cont .text_box .first_span {
  display: block !important;
  text-align: right !important;
}
.main03_cont .text_box .last_span {
  display: block;
}
.main03_cont .text_box .tsukub {
  font-size: 17px;
  font-weight: bold !important;
}
.main03_cont .textimg_box {
  text-align: center;
}
.main03_cont .textimg_box:first-child img {
  width: 70%;
  height: auto;
}
.main03_cont .textimg_box img {
  width: 50%;
  height: auto;
}
.main03top_link {
  position: absolute;
  bottom: 0;
  left: 50%; /* 親要素の外側（左辺）から50%内側 */
}
.main03top_link img {
  width: 50%;
  height: auto;
}
.main03top_link:hover {
  bottom: 10px;
  transition: 0.5s;
}
@media screen and (min-width: 769px) {
  /*  .main03_bg1 {
    max-width: 100vw;
    margin: 0 auto;
    background: url("../img/background_img01.png");
    background-repeat: no-repeat;
    background-position: 140% -50%;
	  position: relative;
	  z-index: 9999;
  }*/
  .main03_bg1:before {
    content: "";
    display: inline-block;
    width: 600px;
    height: 510px;
    margin-top: calc(50% - 63vw);
    margin-left: 700px;
    margin-bottom: -100px;
    background-image: url('../img/background_img01.png');
    background-size: contain;
    z-index: 9999;
  }
  .main03_cont .br_pc::before {
    content: "\A";
    white-space: pre;
  }
}
@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_bg1:before {
    content: "";
    display: inline-block;
    width: 300px;
    height: 260px;
    margin-top: calc(50% - 80vw);
    margin-left: 120px;
    background-image: url('../img/background_img01.png');
    background-size: contain;
    z-index: 9999;
  }
  .main03_cont {
    width: 90%;
    margin: -50px auto 0 auto;
    padding: 0;
  }
  .main03_cont .text_box {
    padding: 50px 0 100px 0;
    color: #000078;
    font-size: 14px;
  }
  .main03_cont .text_box p:first-child {
    margin: 0 auto 50px auto;
    font-size: 30px;
    text-align: left;
  }
  .main03_cont .text_box .first_span {
    display: block !important;
    text-align: right !important;
  }
  .main03_cont .text_box .last_span {
    display: block;
  }
  .main03_cont .text_box .tsukub {
    font-size: 17px;
    font-weight: bold !important;
  }
  .main03_cont .textimg_box {
    text-align: center;
  }
  .main03_cont .textimg_box:first-child img {
    width: 90%;
    height: auto;
  }
  .main03_cont .textimg_box img {
    width: 80%;
    height: auto;
  }
  .main03top_link {
    position: absolute;
    bottom: 0;
    left: 50%; /* 親要素の外側（左辺）から50%内側 */
  }
  .main03top_link img {
    width: 50%;
    height: auto;
  }
  .main03_cont .br::before {
    content: "\A";
    white-space: pre;
  }
}
/*main05
-------------------------------------*/
@media screen and (min-width: 769px) {
  .message_img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
@media screen and (max-width: 768px) {
  .message_img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .message_img img {
    width: 500px;
    height: 250px;
    object-fit: cover;
  }
}
/*footer
-------------------------------------*/
footer {
  padding-bottom: 80px;
  background: rgba(0, 0, 120, 1.00);
}
@media screen and (min-width: 769px) {
  .foot_row h1 img {
    width: 50%;
    height: auto;
  }
  .foot_cont {
    padding: 250px 0 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;
  }
  .foot_row h1 {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .foot_row h1 img {
    width: 90%;
    height: auto;
  }
  .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 .sns_box {
    width: 30%;
    height: auto;
    float: right;
    display: flex;
    padding-top: 55px;
  }
  /*  .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: #FFF;
  text-align: center;
}
/*-------------------------------------

プレゼント

-------------------------------------*/
.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;
  }
}