@charset "utf-8";

/* =======================================
    共通パーツ
======================================= */
/* ------ Reset -------*/
* {
  padding: 0;
  margin: 0;
}
ul {
  list-style: none;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
html,body {
  -webkit-text-size-adjust: 100%;
}


/* ------ Responsive -------*/
.pc {
  display: block;
}
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}


/* ------ box -------*/
body {
  background-color: #fff;
  /* min-width: 1165px; */
  overflow-y: scroll;
}
#pageWrapper{
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
section {
  position: relative;
  width: 100%;
}
.container {
  box-sizing: border-box;
  max-width: 1165px; /* 1135px + 30px*/
  margin: 0 auto;
  position: relative;
  padding: 80px 15px;
  width: 100%;
}
.case{
  margin-bottom: 70px;
}
.box{
  margin-bottom: 40px;
}
.case:last-child,.box:last-child{
  margin-bottom: 0;
}
@media screen and (max-width: 767px){
  body{
    min-width: 100%;
  }
  .container {
    padding: 10.667vw 0; /* 40px 0 */
    margin: 0 auto;
    width: 86%;
  }
  .case{
    margin-bottom: 8vw; /* 40px */
  }
  .box{
    margin-bottom: 4vw; /* 20px */
  }
}


/* ------ flex-box -------*/
.col2,.col3{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}
@media screen and (max-width: 767px) {
  .col2,.col3{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}


/* ------ fadeInUp -------*/
.fadeInUp{
  -webkit-transform: translateZ(0);
  /* display: none; */
  opacity: 0;
}
.fadeInUp.animated {
  /* アニメーションのプロパティを指定 */
  -webkit-transform: translateZ(0);
  animation-name: animated;
  animation-duration: 1s;
  animation-timing-function: ease;
  position: relative;
  opacity: 1;
}
@keyframes animated {
  from {
    opacity: 0;
    bottom: -20px;
  }
  to {
    opacity: 1;
    bottom: 0;
  }
}


/* ------ text -------*/
html {
  font-size: 62.5%;
}
body{
  color: #4C4948;
  font-family: "Zen Kaku Gothic Antique","Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 1.7rem;
  font-optical-sizing: auto;
  font-weight: 500;
  line-height: 1.7;
}
main p{
  margin-bottom: 1em;
}
main p:last-child{
  margin-bottom: 0;
}
.ttl_main{
  position: relative;
  text-align: center;
  z-index: 10;
}
.ttl_sub{
  margin-bottom: 40px;
}
.ttl_main img, .ttl_sub img{
  margin: 0 auto;
}
.ttl_item{
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.txt_notes{
  font-size: 1.1rem;
  position: relative;
  letter-spacing: -0.05em;
}
sup{
  font-size: 1.2rem;
  position: relative;
  top: -3px;
  right: 0;
  font-weight: 900;
}
@media screen and (max-width: 767px){
  body{
    font-size: 2.933vw; /* 1.1rem */
  }
  .ttl_main img{
    height: 100%;
    width: auto;
  }
  .ttl_sub{
    margin-bottom: 4vw; /* 15px */
  }
  .ttl_item{
    font-size: 2.933vw; /* 1.1rem */
    font-weight: bold;
  }
  .txt_notes{
    font-size: 2.133vw; /* 0.8rem */
  }
  sup{
    font-size: 1.867vw; /* 0.7rem */
  }
}
.txt_emsp.pc{
  display: inline-block;
}
@media screen and (max-width: 767px){
  .txt_emsp.pc{
    display: none;
  }
}


/* ------ img -------*/
img{
  max-width: 100%;
  vertical-align: bottom;
  height: auto;
}
@media screen and (max-width: 767px){
  img{
    width: 100%;
  }
}


/* ------ btn -------*/
/* a */
a{
  color: #4C4948;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover{
    text-decoration: underline;
  }
}

/* btn */
.btn{
  display: inline-block;
}
.btn_text{
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .btn:hover{
    text-decoration: none;
    transform:scale(0.95);
    transition: 0.3s all;
    opacity: 1;
  }
  .btn_text:hover{
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .btn{
    display: block;
  }
}

/* .link_box */
.link_box {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.link_box .btn img{
  width: 60.086vw;
  max-width: 700px;
}
@media screen and (max-width: 767px) {
  .link_box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .link_box .btn img{
    width: 72vw;
  }
}


/* ------ background -------*/
/* .bg_stripe */
.bg_stripe{
  background-image: url(../img/bg_stripe.jpg);
  background-repeat: repeat;
  background-size: 115px auto;
  background-position: top left;
  padding-top: 80px;
}
.bg_stripe .container{
  padding-top: 0;
  max-width: 1000px; /*970px + 30px*/
}
.bg_stripe .ttl_main{
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .bg_stripe{
    background-size: 60px auto;
    padding-top: 10.667vw;
  }
  .bg_stripe .ttl_main{
    height: 38px;
    margin-bottom: 4vw;
  }
}


/* --------------------------------------------------
  #pageTop
-------------------------------------------------- */
/* ------ #mainvisual_box -------*/
#mainvisual_box{
  position: relative;
  z-index: 1;
}
#mainvisual_box img{
  margin: 0 auto;
  width: 100%;
}
#mainvisual_box .btn{
  position: absolute;
  bottom: 12.5vw;
  /* max-width: 574px; */
  width: 29.896vw;
}
.btn_blue{
  left: calc(50% - 31.771vw);
}
.btn_red{
  right: calc(50% - 31.771vw);
}
@media screen and (max-width: 767px) {
  #mainvisual_box .btn{
    bottom: 13.867vw;
    width: 37.333vw;
  }
  .btn_blue{
    left: calc(50% - 40.333vw);
  }
  .btn_red{
    right: calc(50% - 40.333vw);
  }
}


/* ------ #subvisual_box -------*/
#subvisual_box{
  background-color: #ffcd00;
  text-align: center;
  position: relative;
  z-index: 0;
}
#subvisual_box .container{
  margin-top: -3.5%;
  padding-top: 3.5%;
  padding-bottom: 0;
  transition: 0.3s all;
}
#subvisual_box img{
  /* max-width: 1199px; */
  position: relative;
  transition: 0.3s all;
  width: 100%;
}
@media screen and (max-width: 767px){
  #subvisual_box .container{
    margin-top: -3%;
    padding-top: 6%;
    width: 92%;
  }
}


/* ------ #prize_box -------*/
#prize_box{
  background-color: #693700;
}
#prize_box .container{
  padding-bottom: 70px;
}
#prize_box .img_prize{
  margin: 0 auto 50px;
  text-align: center;
}
#prize_box .img_prize img{
  max-width: 1026px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 767px){
  #prize_box .container{
    padding-bottom: 9vw;
  }
  #prize_box .img_prize{
    margin-bottom: 5.333vw; /* 20px */
  }
  #prize_box .fadeInUp{
    opacity: 1 !important;
  }
  #prize_box .animated{
    animation: none;
  }
}


/* ------ #application-methods_box -------*/
#application-methods_box .img_application-methods{
  margin-bottom: 1.5em;
  max-width: 970px;
  width: 100%;
}
#application-methods_box p{
  font-size: min(1.717vw, 1.9rem);
  font-weight: 600;
}
#application-methods_box p.txt_application-methods{
  color: #6a3906;
  font-size: min(2.232vw, 2.6rem);
  font-weight: 900;
  line-height: 1.5;
  padding-left: 5%;
  margin-bottom: 1.2em;
}
@media screen and (max-width: 767px){
  #application-methods_box .bd_w_box .inner{
    padding-top: 10px;
  }
  #application-methods_box .img_application-methods{
    margin: 0 auto 1.5em;
    width: 90%;
  }
  #application-methods_box p{
    font-size:  3.2vw; /*12px*/
  }
  #application-methods_box p.txt_application-methods{
    font-size: 3.733vw; /*14px*/
    padding-left: 0;
  }
}

/* .date_box */
#application-methods_box .case{
  margin-bottom: 1.2em;
}
#application-methods_box .case:last-child{
  margin-bottom: 0;
}
#application-methods_box .date_box{
  border: 3px solid #ff752e;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.6em;
}
#application-methods_box .date_box .col2:nth-child(2){
  border-top: 3px solid #ff752e;
}
#application-methods_box .date_box p{
  background-color: #fff;
  box-sizing: border-box;
  margin-bottom: 0;
  font-weight: 900;
  padding: 10px min(1.717vw ,20px);
}
#application-methods_box .date_box p:nth-child(2){
  flex: 1;
}
#application-methods_box .date_box .title{
  background-color: #ff752e;
  color: #fff;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: min(2.232vw, 2.6rem);
  position: relative;
  width: min(27.468vw, 320px);
}
#application-methods_box .date_box .title.bd_bottom::after{
  content: '';
  display: block;
  background-color: #fff;
  position: absolute;
  bottom: -3px;
  height: 3px;
  width: 97%;
}
#application-methods_box .date_box .date{
  color: #000;
  display: inline-block;
  font-size: min(2.06vw, 2.4rem);
}
#application-methods_box .date_box .date::after{
  content: '';
  background-image: url(../img/icon_arrow_b.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: inline-block;
  height: min(1.888vw,22px);
  width: min(1.03vw,12px);
  margin-left: min(1.288vw,15px);
  margin-right:min(0.687vw,8px);
  position: relative;
  top: 3px;
}
#application-methods_box .date_box .marker{
  background-color: #fff000;
  color: #d7000f;
  font-size: min(2.403vw, 2.8rem);
  padding: 0 min(1.631vw ,10px);
}
@media screen and (max-width: 767px){
  #application-methods_box .date_box p{
    padding: 2vw 6vw;
    text-align: center;
  }
  #application-methods_box .date_box .title{
    font-size: 4vw;/*14px*/
    width: 100%;
  }
  #application-methods_box .date_box .date{
    display: block;
    font-size: 4.267vw; /*15px*/
    position: relative;
  }
  #application-methods_box .date_box .date::after{
    height: 4.267vw;
    width: 2.4vw;
    position: absolute;
    top: 8vw;
    left: calc(50% - 4.5px);
    transform: rotate(90deg); /* ← これを追加 */
    transform-origin: center center; /* （任意）回転の基準点を中央に */
  }
  #application-methods_box .date_box .marker{
    font-size: 4.267vw;/*16px*/
  }
}
#application-methods_box .case:nth-of-type(1) .date_box .title{
  letter-spacing: 0.3em;
}
#application-methods_box .case:nth-of-type(1) .date_box .center{
  color: #000;
  font-size: min(2.403vw, 2.8rem);
  text-align: center;
}
@media screen and (max-width: 767px){
  #application-methods_box .case:nth-of-type(1) .date_box .center{
    font-size: 4.533vw;
  }
}

/* ------ #products_box -------*/
#products_box .img_products{
  max-width: 970px;
  width: 100%;
}


/* ------ #application-requirements_box -------*/
#application-requirements_box .ttl_main{
  margin-bottom: 40px;
}
#application-requirements_box sup{
  font-size: 0.8rem;
  top: -3px;
}
@media screen and (max-width: 767px){
  #application-requirements_box p{
    line-height: 1.5;
  }
}

#application-requirements_box dt{
  margin-top: 40px;
}
@media screen and (max-width: 767px){
  #application-requirements_box dl,
  #application-requirements_box ul{
    line-height: 1.5;
  }
  #application-requirements_box dt{
    margin-top: 2.667vw; /* 10px */
  }

}
#application-requirements_box dt:nth-child(1){
  margin-top: 0;
}

/* .scroll_box */
.scroll_box{
  background-color: #fff;
  /* border: 3px solid #ff752e; */
  padding: 30px 30px 30px 40px;
  box-sizing: border-box;
  border-radius: 30px;
}
.scroll_box .case{
  max-height: 360px;
  overflow-y: auto;
  padding-right: 10px;
}
@media screen and (max-width: 767px){
  .scroll_box{
    padding: 4vw 1.333vw 4vw 4vw;
    border-radius: 2.667vw;
  }
}


/* ------ #faq-contact_box -------*/
@media screen and (max-width: 767px){
  #faq-contact_box .ttl_sub img{
    width: 60vw;
  }
}
.txt_question{
  font-size: 2.2rem;
  font-weight: bold;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.txt_question::before{
  content: '';
  display: inline-block;
  background-image: url(../img/icon_question.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  margin-right: 10px;
  width: 30px;
  height: 28px;
}
.txt_answer{
  padding-left: 30px;
}
.txt_answer::before{
  content: '';
  display: inline-block;
  background-image: url(../img/icon_arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: center center;
  margin-right: 15px;
  margin-left: 5px;
  width: 10px;
  height: 15px;
}
@media screen and (max-width: 767px){
  .txt_question{
    font-size: 3.2vw; /* 1.2rem */
    margin-bottom: 0.5em;
  }
  .txt_question::before{
    margin-right: 1.333vw; /* 5px */
    width: 3.733vw; /* 14px */
    height: 4.267vw; /* 16px */
  }
  .txt_answer{
    padding-left: 4vw; /* 15px */
    line-height: 1.5;
  }
  .txt_answer::before{
    margin-right: 1.333vw; /* 5px */
    margin-left: 0;
    width: 1.6vw; /* 6px */
    height: 2.667vw; /* 10px */
  }
}
.ttl_campaign{
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0.8em;
}
.ttl_campaign_sub{
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.txt_campaign{
  padding-left: 200px;
}
@media screen and (max-width: 767px){
  .ttl_campaign{
    font-size: 4vw; /* 1.5rem */
  }
  .ttl_campaign_sub{
    font-size: 3.467vw; /* 1.3rem */
  }
  .txt_campaign{
    padding-left: 0;
  }
}


/* ------ #receipt-registration_box -------*/
#receipt-registration_box{
  background-color: #fff;
}
#receipt-registration_box .container{
  padding-bottom: 40px;
}
#receipt-registration_box .ttl_main{
  margin-bottom: 2em;
}
@media screen and (max-width: 767px){
  #receipt-registration_box .container{
    padding-bottom: 8vw;
  }
  #receipt-registration_box .ttl_main{
    height: 36px;
    margin-bottom: 1.5em;
  }
}

/* .receipt_box */
.receipt_box{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.receipt_box li{
  margin: 0 1% 2%;
  width: 31.333%
}
@media screen and (max-width: 767px){
  .receipt_box li{
    margin: 0 auto 5.333vw;
    width: 88%
  }
  .receipt_box li:last-child{
    margin-bottom: 0;
  }
}

/* ------ footer -------*/
footer{
  background-color: #000;
  padding: 15px;
}
footer .copy{
  color: #fff;
  font-size: 1.2rem;
  text-align: center;
}


/* ------ finished -------*/
.txt_finished{
  color: #fff;
  display: block;
  font-size: 2.778vw; /* 40px */
  font-weight: bold;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .txt_finished{
    font-size: 4.533vw; /* 17px */
  }
}

/* .finished */
.finished{
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
}
.finished_01{
  width: 67.708vw;
  height: 17.708vw;
  top: 3.958vw;
  left: 15.625vw;
}
.finished_02{
  width: 38.889vw;
  height: 3.472vw;
  top: 21.667vw;
  left: 31.042vw;
}
.finished_03{
  width: 63.889vw;
  height: 8.333vw;
  top: 60.417vw;
  left: 18.056vw;
}
@media screen and (max-width: 767px) {
  .finished_01{
    width: 88vw;
    height: 22.4vw;
    top: 5.067vw;
    left: 5.333vw;
  }
  .finished_02{
    width: 49.333vw;
    height: 4.8vw;
    top: 27.467vw;
    left: 25.867vw;
  }
  .finished_03{
    width: 80vw;
    height: 9.867vw;
    top: 76.8vw;
    left: 10.133vw;
  }
}


/* .finished_hover */
.finished_hover{
  position: relative;
}
.finished_hover::before{
  content: '';
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.finished_hover .txt_finished{
  top: 46%;
}
@media screen and (max-width: 767px) {
  .finished_hover .txt_finished{
    top: 35%;
  }
}