@charset "UTF-8";

/* =======================================
    01.Base（reset / base / typography）
======================================= */
/* ------ Reset -------*/
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
ul {
  list-style: none;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
html,body {
  -webkit-text-size-adjust: 100%;
}


/* ------ root（pc 750px / sp 375px） -------*/
:root {
  /* color */
  --color-primary: #e60012;
  --color-secondary: #623118;

  /* size */
  --size-10:  min(1.333vw, 10px);
  --size-15:  min(2vw, 15px);
  --size-20:  min(2.667vw, 20px);
  --size-25:  min(3.333vw, 25px);
  --size-30:  min(4vw, 30px);
  --size-40:  min(5.333vw, 40px);
  --size-50:  min(6.667vw, 50px);
  --size-60:  min(8vw, 60px);
  --size-70:  min(9.333vw, 70px);
  --size-80:  min(10.667vw, 80px);
  --size-90:  min(12vw, 90px);
  --size-100: min(13.333vw, 100px);

  /* font */
  --font-size-2xl:  min(4.933vw, 3.7rem);
  --font-size-xl:   min(4.4vw, 3.3rem);
  --font-size-lg:   min(3.467vw, 2.6rem);
  --font-size-md:   min(2.667vw, 2rem);
  --font-size-sm:   min(2.267vw, 1.7rem);
  --font-size-base: min(2.133vw, 1.6rem);
  --font-size-xs:   min(1.6vw, 1.2rem);
}

@media screen and (max-width: 750px) {
  :root {
    /* size */
    --size-10:  min(2.667vw, 10px);
    --size-15:  min(4vw, 15px);
    --size-20:  min(5.333vw, 20px);
    --size-25:  min(6.667vw, 25px);
    --size-30:  min(8vw, 30px);
    --size-40:  min(10.667vw, 40px);
    --size-50:  min(13.333vw, 50px);
    --size-60:  min(16vw, 60px);
    --size-70:  min(18.667vw, 70px);
    --size-80:  min(21.333vw, 80px);
    --size-90:  min(24vw, 90px);
    --size-100: min(26.667vw, 100px);

    /* font */
    --font-size-2xl:  min(6.933vw, 3rem);   /* 375px時 約2.6rem */
    --font-size-xl:   min(4.8vw, 2.2rem);   /* 375px時 約1.8rem */
    --font-size-lg:   min(4.267vw, 1.9rem); /* 375px時 約1.6rem */
    --font-size-md:   min(4vw, 1.8rem);     /* 375px時 約1.5rem */
    --font-size-sm:   min(3.867vw, 1.7rem); /* 375px時 約1.45rem */
    --font-size-base: min(3.733vw, 1.7rem); /* 375px時 約1.4rem */
    --font-size-xs:   min(3.2vw, 1.5rem);   /* 375px時 約1.2rem */
  }
}


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


/* ------ box -------*/
body {
  background-color: #fff;
  overflow-y: auto;
}
#pageWrapper{
  margin: 0 auto;
  max-width: 750px;
  overflow: hidden;
  position: relative;
  width: 100%;
}
section {
  margin: 0 auto;
  position: relative;
  width: 88%;
}
.container {
  margin: 0 auto;
  position: relative;
  padding: 35px var(--size-25);
  width: 100%;
}
.case{
  position: relative
}
@media screen and (max-width: 750px) {
  body{
    min-width: 100%;
  }
  .container {
    padding: var(--size-25) var(--size-20);
  }
}


/* ------ text -------*/
html {
  font-size: 62.5%;
}
body{
  color: #000;
  font-family: "Montserrat","Zen Kaku Gothic New","Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: var(--font-size-base);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
main p{
  margin-bottom: 1.5em;
}
main p:last-child{
  margin-bottom: 0;
}


/* =======================================
  02. Utilities（margin / padding etc）
======================================= */
/* ------ padding -------*/
.section-mb{
  margin-bottom: var(--size-60);
}
.case-mb{
  margin-bottom: var(--size-50);
}
.box-mb{
  margin-bottom: var(--size-30);
}
@media screen and (max-width: 750px) {
  .section-mb{
    margin-bottom: var(--size-40);
  }
  .box-mb{
    margin-bottom: var(--size-25);
  }
}


/* ------ margin -------*/
.mb_0{
  margin-bottom: 0;
}
.mb_20{
  margin-bottom: var(--size-20);
}
.mb_25{
  margin-bottom: var(--size-25);
}
.mb_30{
  margin-bottom: var(--size-30);
}
.mb_40{
  margin-bottom: var(--size-40);
}
.mb_50{
  margin-bottom: var(--size-50);
}
.mb_60{
  margin-bottom: var(--size-60);
}
.mb_80{
  margin-bottom: var(--size-80);
}
.mb_100{
  margin-bottom: var(--size-100);
}


/* ------ 配置 -------*/
.center{
  text-align: center;
}


/* ------ 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;
  }
}
@media screen and (max-width: 767px) {
  .no-animation {
    opacity: 1 !important;
    animation: none !important;
  }
}


/* ------ visually-hidden -------*/
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}



/* =======================================
    03. Components（button / card / badge）
======================================= */
/* ------ title -------*/
.ttl_main{
  background-color: var(--color-primary);
  line-height: 1;
  padding: 10px;
  text-align: center;
}
.ttl_sub {
  color: var(--color-secondary);
  font-size: var(--font-size-2xl);
  font-weight: bold;
  margin-bottom: 0.5em;
  letter-spacing: 0.05em;
  text-align: center;
}
.ttl_item{
  font-size: var(--font-size-base);
  margin-bottom: 0.25em;
}
@media screen and (max-width: 750px) {
  .ttl_main img{
    height: min(6.933vw, 26px);
  }
  .ttl_item{
    font-size: 110%;
  }
}
.txt_center{
  text-align: center;
}
.txt_small{
  font-size: 90%;
}
.txt_xsmall{
  font-size: 80%;
}
.txt_large{
  font-size: 150%;
}
.txt_red{
  color: var(--color-primary);
}


/* ------ btn -------*/
.btn, a.btn {
  box-sizing: border-box;
  color: #fff;
  display: block;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  transition: 0.3s all;
  max-width: 392px;
}
@media screen and (min-width: 751px) {
  .btn:hover{
    text-decoration: none;
    transform:scale(0.95);
    transition: 0.3s all;
  }
}
.btn.none{
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .btn,a.btn{
    width: 74.667vw;
    /* width: 280px; */
  }
  .btn:last-child{
    margin-bottom: 0;
  }
}

/* a.link_txt */
a.link_txt{
  color: #000;
  text-decoration: underline;
}
a.link_txt.txt_red{
  color: var(--color-primary);
}
@media screen and (min-width: 751px) {
  a.link_txt:hover{
    text-decoration: none;
  }
}


/* ------ background -------*/
/* .bg_texture */
.bg_texture{
  background-image: url(../img/bg_texture.jpg);
  background-position: top center;
  background-repeat: repeat-y;
  background-size: 100% auto;
}

/* .bg_white */
.bg_white{
  background-color: #fff;
}


/* ------ img -------*/
@media screen and (max-width: 750px){
  img{
    width: 100%;
  }
}


/* ------ .deco -------*/
.deco{
  position: absolute;
}



/* ------ arrow -------*/
.arrow_r{
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #fff;
  margin-right: 10px;
  margin-left: 5px;
}


/* ------ list_box -------*/
/* .list_box */
.list_box li{
  position: relative;
  padding-left: 1.2em;
  line-height: 1.7;
}
.list_box li::before{
  content: '●';
  position: absolute;
  left: 0;
}

/* list_note_box */
.list_note_box li{
  position: relative;
  padding-left: 1.2em;
  line-height: 1.7;
}
.list_note_box li::before{
  content: '※';
  position: absolute;
  left: 0;
}



/* ------ accordion -------*/
.accordion_btn{
  cursor: pointer;
}
.accordion_open {
  display: none;
}


/* ------ .scroll_box -------*/
.scroll_box {
  height: 430px;
  overflow-y: scroll;
  padding-right: var(--size-10);
}
/* Firefox のスクロールバーを強制的に表示 */
@-moz-document url-prefix() {
  .scroll_box {
      scrollbar-width: auto !important;
  }
}
/* Chrome / Safari / Edge のスクロールバーを表示 */
.scroll_box::-webkit-scrollbar {
  width: 8px;
}
.scroll_box::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}
.scroll_box::-webkit-scrollbar-track {
  background: #f1f1f1;
}
@media screen and (max-width: 750px) {
  .scroll_box {
    height: 400px;
  }
}


/* =======================================
    04. Layout（header / footer / grid）
======================================= */
/* ------ 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;
  }
} */



/* =======================================
    05. Pages
======================================= */
/* ------ #mv_box -------*/
#mv_box{
  margin-bottom: 0;
  width: 100%;
}
#mv_box .mainvisual{
  display: block;
  height: auto;
}

/* deco */
.deco_mv_01{
  top: 0;
  left: min(4vw, 30px);
  width: min(25.2vw, 189px);
}
.deco_mv_02{
  bottom: min(3.333vw, 25px);
  right: min(1.333vw, 10px);
  width: min(23.867vw, 179px);
}
.deco_mv_03{
  bottom: calc(min(6.667vw, 50px) * -1);
  left: min(20vw, 150px);
  width: min(43.067vw, 323px);
}


/* ------ #about_box -------*/
#about_box .container{
  padding: 0;
  padding-top: var(--size-60);
}
@media screen and (max-width: 750px) {
  #about_box .container{
    padding-top: var(--size-50);
  }
}

p.txt_period,
p.txt_bottom,
p.ttl_deadline,
p.txt_deadline{
  background: url(../img/bg_texture_cover.jpg);
  background-size: 750px auto;
  background-position: top center;
  background-repeat: repeat;

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 750px) {
  p.txt_period,
  p.txt_bottom,
  p.ttl_deadline,
  p.txt_deadline{
    background-size: 375px auto;
  }
}


/* --- period_box --- */
.period_box{
  color: #fff;
  padding: 0 var(--size-10);
}
.period_box p{
  font-size: var(--font-size-sm);
  margin-bottom: 1em;
  letter-spacing: 0.08em;
}
.period_box p.ttl_period{
  background: url(../img/bg_texture_cover.jpg);
  background-size: 750px auto;
  background-position: top center;
  color: #b2872c;
  letter-spacing: 0.1em;
  margin-right: 15px;
  padding: 5px 6px;
}
.period_box p.txt_period{
  font-size: min(2.4vw, 1.8rem);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  line-height: 1.2;
  flex: 1;
}
.period_box p.txt_period .txt_large{
  font-size: min(6.533vw, 4.9rem);
  font-weight: 600;
}
.period_box .arrow_r{
  margin-right: 10px;
  margin-left: 5px;
}
.period_box p.txt_bottom{
  letter-spacing: 0.16em;
}
@media screen and (max-width: 750px) {
  .period_box p.ttl_period{
    background-size: 375px auto;
    font-size: var(--font-size-lg);
  }
  .period_box p.txt_period{
    font-size: var(--font-size-md);
    margin-bottom: 1.5em;
  }
  .period_box p.txt_period .txt_large{
    font-size: min(9.067vw, 3.3rem);
  }
  .period_box .arrow_r{
    margin-left: var(--size-40)
  }
  .period_box p.txt_bottom{
    font-size: var(--font-size-base);
  }
}

/* .col2 */
.period_box .col2{
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0.5em;
}
.period_box .col2 p{
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  .period_box .col2{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .period_box .col2 p{
    margin: 0 auto 0.5em;
  }
}

/* --- deadline_box --- */
.deadline_box{
  padding: 0 var(--size-10);
  margin-bottom: var(--size-60);
}
.deadline_box p{
  margin: 0;
}
.deadline_box p.ttl_deadline{
  border: 2px solid #fff;
  border-right: 0;
  color: #fff;
  font-size: min(2.8vw, 2.1rem);
  padding: 0 var(--size-30);
  letter-spacing: 0.1em;

  display:-webkit-box;
  display:-ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.deadline_box p.txt_deadline{
  border: 2px solid #fff;
  color: #fff;
  font-size: min(2.8vw, 2.1rem);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  flex: 1;
}
.deadline_box p.txt_deadline .txt_large{
  font-size: min(6.533vw, 4.9rem);
  font-weight: 600;
}
.deadline_box p.txt_deadline .txt_middle{
  font-size: min(4vw, 3rem);
}
@media screen and (max-width: 750px) {
  .deadline_box{
    margin-bottom: var(--size-40);
  }
  .deadline_box .container{
    max-width: 90%;
  }
  .deadline_box p.ttl_deadline{
    border: 2px solid #fff;
    border-bottom: 0;
    font-size: var(--font-size-lg);
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px;
  }
  .deadline_box p.txt_deadline{
    font-size: var(--font-size-sm);
    padding: 5px;
  }
  .deadline_box p.txt_deadline .txt_large{
    font-size: min(9.067vw, 3.3rem);
  }
  .deadline_box p.txt_deadline .txt_middle{
    font-size: min(5.333vw, 2rem);
  }
  .deadline_box .col2{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}


/* ------ #how-to-apply_box 応募方法 -------*/
#how-to-apply_box .container{
  padding-top: var(--size-50);
}
#how-to-apply_box .case{
  margin-bottom: var(--size-60);
}
#how-to-apply_box .box{
  margin-bottom: var(--size-100);
}
#how-to-apply_box .case:last-child{
  margin-bottom: 0;
}
@media screen and (max-width: 750px) {
  #how-to-apply_box .container{
    padding: var(--size-25) var(--size-15);
  }
  #how-to-apply_box .case{
    margin-bottom: var(--size-40);
  }
  #how-to-apply_box .box{
    margin-bottom: var(--size-50);
  }
}

/* top_box */
#how-to-apply_box .top_box{
  margin-bottom: var(--size-80);
}
#how-to-apply_box .ttl_how-to-apply{
  font-size: min(6.267vw, 4.7rem);
  line-height: 1.4;
  margin-bottom: 0.5em;
  text-align: center;
}
#how-to-apply_box .ttl_how-to-apply .txt_small{
  display: inline-block;
  font-size: var(--font-size-lg);
}
#how-to-apply_box .ttl_how-to-apply_sub{
  font-size: var(--font-size-xl);
  margin-bottom: 0.3em;
  text-align: center;
}
#how-to-apply_box .top_box .list_box{
  margin-bottom: 2em;
  padding: 0 0.5em;
}
#how-to-apply_box .top_box .list_box li{
  font-size: min(2.933vw, 2.2rem);
  margin-bottom: 0.5em;
  line-height: 1.4;
}
#how-to-apply_box .top_box .list_box li::before{
  color: #3e4347;
}
#how-to-apply_box .top_box .list_box li:last-child{
  margin-bottom: 0;
}
#how-to-apply_box .top_box .list_note_box li{
  font-size: 94%;
}
@media screen and (max-width: 750px) {
  #how-to-apply_box .top_box{
    margin-bottom: var(--size-30);
  }
  #how-to-apply_box .ttl_how-to-apply{
    font-size: var(--font-size-2xl);
    margin-bottom: 0.7em;
  }
  #how-to-apply_box .ttl_how-to-apply .txt_small{
    line-height: 1.6;
    padding-bottom: 0.5em;
  }
  #how-to-apply_box .ttl_how-to-apply_sub{
    margin-bottom: 0.7em;
  }
  #how-to-apply_box .top_box .list_box li{
    font-size: var(--font-size-md);
    margin-bottom: 1em;
    line-height: 1.5;
  }
}

/* step_box */
#how-to-apply_box .step_box p{
  font-size: var(--font-size-lg);
  line-height: 1.4;
  text-align: center;
}
#how-to-apply_box .step_box p.txt_small{
  font-size: var(--font-size-md);
  line-height: 1.5;
  text-align: left;
  padding-left: 110px;
}
#how-to-apply_box .ttl_step{
  display: block;
  margin: 0 auto var(--size-30);
}
@media screen and (max-width: 750px) {
  #how-to-apply_box .step_box p{
    line-height: 1.6;
  }
  #how-to-apply_box .step_box p.txt_small{
    font-size: var(--font-size-base);
    padding-left: 0;
    text-align: center;
  }
}



/* .img_step */
#how-to-apply_box .img_step{
  display: block;
  margin: 0 auto var(--size-50);
}
#how-to-apply_box .img_step.sp{
  display: none;
}
#how-to-apply_box .img_step01,
#how-to-apply_box .img_step02,
#how-to-apply_box .img_step03{
  padding-left: var(--size-60);
  box-sizing: content-box;
}
@media screen and (max-width: 750px) {
  #how-to-apply_box .img_step{
    margin-bottom: var(--size-30);
    width: min(70%, 210px);
  }
  #how-to-apply_box .img_step.pc{
    display: none;
  }
  #how-to-apply_box .img_step.sp{
    display: block;
  }
  #how-to-apply_box .ttl_step{
    margin: 0 auto var(--size-20);
    max-height: 34px;
    width: 40%;
  }
  #how-to-apply_box .img_step01,
  #how-to-apply_box .img_step02,
  #how-to-apply_box .img_step03{
    padding-left: 10%;
    width: min(80%, 240px);
    box-sizing: border-box;
  }
  #how-to-apply_box .img_step04{
    width: min(52%, 156px);
  }
}

/* -- .case_01 -- */
#how-to-apply_box .step_a_box {
  border-bottom: 4px solid;
}
#how-to-apply_box .step_a_box .step_01{
  background-image: url(../img/line_dots_bk.png);
  background-size: auto 3.5px;
  background-position: bottom center;
  background-repeat: no-repeat;
  margin-bottom: var(--size-50);
  padding-bottom: var(--size-50);
}
@media screen and (max-width: 750px) {
  #how-to-apply_box .step_a_box{
    border-bottom: 3px solid;
  }
  #how-to-apply_box .step_a_box .step_01{
    background-image: url(../img/line_dots_bk_sp.png);
    background-size: 100% auto;
    margin-bottom: var(--size-40);
    padding-bottom: var(--size-40);
  }
}

/* -- .case_02 -- */
#how-to-apply_box .step_b_box .step_02{
  margin-bottom: var(--size-50);
}
#how-to-apply_box .step_b_box .col2{
  align-items: center;
  justify-content: center;
}
#how-to-apply_box .step_b_box .col2 p{
  font-size: var(--font-size-md);
  text-align: left;
  margin-bottom: 0;
}
#how-to-apply_box .step_b_box .col2 .left{
  background-color: #e9e8e8;
  padding: 10px;
  padding: 0.8em;
  margin-right: 1em;
}
#how-to-apply_box .case_02 .list_box{
  margin-bottom: 2em;
}
#how-to-apply_box .case_02 .list_box li{
  font-size: 94%;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  #how-to-apply_box .step_b_box .col2 p{
    font-size: var(--font-size-xs);
  }
}


/* .caution_box */
#how-to-apply_box .caution_box .ttl_caution{
  background-color: var(--color-primary);
  color: #fff;
  font-size: var(--font-size-lg);
  font-weight: bold;
  padding: 5px;
  text-align: center;
}
#how-to-apply_box .caution_box .list_box{
  border: 5px solid var(--color-primary);
  border-top: 0;
  padding: 20px 15px;
  margin-bottom: 0;
}


/* .overflow */
#how-to-apply_box .overflow{
  display: none;
}
#how-to-apply_box .overflow .box:last-child{
  margin-bottom: var(--size-40);
}
#how-to-apply_box .btn_more {
  margin-bottom: var(--size-40);
  position: relative;
  text-align: center;
}
#how-to-apply_box .btn_more img{
  cursor: pointer;
  transition: transform 0.3s ease;
  width: var(--size-50);
  transition: 0.3s all;
}
#how-to-apply_box .btn_more.active img{
  transform: rotate(180deg);
}
@media screen and (min-width: 751px) {
  #how-to-apply_box .btn_more img:hover{
    opacity: 0.7;
  }
}


/* ------ #store_box 対象店舗 -------*/
#store_box .container{
  padding-top: var(--size-50);
  padding-bottom:var(--size-50);
}
#store_box p{
  font-size: var(--font-size-xl);
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 750px) {
  #store_box .container{
    padding-top: var(--size-30);
    padding-bottom:var(--size-30);
  }
}


/* ------ #product_box 対象商品 -------*/
#product_box p{
  font-size: var(--font-size-xl);
  line-height: 1.5;
  margin-bottom: 0;
  text-align: center;
}
#product_box .col2{
  align-items: center;
  justify-content: center;
  gap: var(--size-60);
}
.img_product{
  width: min(8.933vw, 67px);
}
@media screen and (max-width: 750px) {
  #product_box .col2{
    gap: var(--size-20);
  }
  .img_product{
    width: min(15%, 67px);
  }
}


/* ------ #prize_box 賞品内容 -------*/
#prize_box p{
  font-size: var(--font-size-xl);
  line-height: 1.5;
  margin-bottom: 0.5em;
  text-align: center;
}
#prize_box .list_note_box{
  padding-left: var(--size-90);
}
@media screen and (max-width: 750px) {
  #prize_box .list_note_box{
    font-size: 94%;
    padding-left: 0;
  }
}


/* ------ #application-terms_box 応募規約 -------*/
#application-terms_box .container{
  padding-right: var(--size-15);
}
@media screen and (max-width: 750px) {
  #application-terms_box .container{
    padding-right: var(--size-10);
  }
  #application-terms_box .link_txt{
    line-height: 1.2;
    display: inline-block;
    margin-bottom: 1em;
  }
}


/* ------ #contact_box お問合せ -------*/
#contact_box{
  text-align: center;
  margin-bottom: 0;
}
#contact_box .case.top_box{
  margin-bottom: var(--size-60);
}
#contact_box p{
  color: var(--color-secondary);
  margin-bottom: 1em;
}
#contact_box p.txt_top{
  font-size: min(2.4vw, 1.8rem);
  margin-bottom: 1.5em;
}
#contact_box a.txt_mail{
  color: var(--color-secondary);
  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.933vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 1.5em;
  text-decoration: none;
}
#contact_box a.txt_mail::before{
  content:'';
  display: inline-block;
  background-image: url(../img/icon_mail.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: var(--size-10);
  height: 27px;
  width: 38px;
}
@media screen and (min-width: 751px) {
  #contact_box a:hover{
    text-decoration: none;
    opacity: 0.7;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 750px) {
  #contact_box .case.top_box{
    margin-bottom: var(--size-30);
  }
  #contact_box p{
    font-size: min(3.467vw, 1.6rem); /* 1.3rem; */
  }
  #contact_box p.txt_top{
    font-size: var(--font-size-base);
  }
  #contact_box a.txt_mail{
    font-size: var(--font-size-lg);
    margin-bottom: var(--size-30);
    line-height: 1.2;
    text-align: left;
  }
  #contact_box a.txt_mail::before{
    margin-right: var(--size-10);
    height: min(5.867vw, 22px);
    width: var(--size-30);
  }
}


/* ------ #faq_box よくある質問 -------*/
#faq_box .ttl_sub{
  letter-spacing: 0;
}
#faq_box .container{
  padding-top: var(--size-60);
}
#faq_box a.txt_mail_s{
  color: #000;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  text-decoration: none;
}
#faq_box a.txt_mail_s::before{
  content:'';
  display: inline-block;
  background-image: url(../img/icon_mail_s.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  margin-right: 7px;
  height: 14px;
  width: 18px;
}
@media screen and (min-width: 751px) {
  #faq_box a.txt_mail_s:hover{
    text-decoration: none;
    opacity: 0.7;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 750px) {
  #faq_box .container{
    padding-top: var(--size-50); 
  }
}

/* accordion */
#faq_box .accordion {
  background-image: url(../img/line_dots.png);
  background-size: auto 3px;
  background-position: top center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  padding-left: var(--size-30);
  padding-top: var(--size-30);
  margin-top: var(--size-30);
  width: 100%;
}
#faq_box .accordion:nth-child(1){
  margin-top: 0;
}
#faq_box .question, #faq_box .answer{
  padding-left: 45px;
}
#faq_box .question {
  font-size: var(--font-size-sm);
  position: relative;
}
#faq_box .answer {
  font-size: var(--font-size-xs);
  margin-top: var(--size-30);
  position: relative;
}
#faq_box .answer .txt_large{
  font-size: var(--font-size-base);
}
#faq_box .question::before{
  content: '';
  background-image: url(../img/icon_q.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 21px;
  width: 18px;
  position: absolute;
  top: 4px;
  left: 15px;
}
#faq_box .answer::before{
  content: '';
  background-image: url(../img/icon_arrow.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  height: 12px;
  width: 8px;
  position: absolute;
  top: 3px;
  left: 30px;
}
@media screen and (max-width: 750px) {
  #faq_box .accordion {
    margin-top: var(--size-30);
    padding-top: var(--size-30);
    padding-left: 0;
  }
  #faq_box .question, #faq_box .answer {
    padding-left: var(--size-30);
  }
  #faq_box .question {
    font-size: var(--font-size-base); 
  }
  #faq_box .answer {
    font-size: min(3.467vw, 1.6rem); /* 1.3rem; */
    margin-top: var(--size-20);
  }
  #faq_box .answer .txt_large{
    font-size: var(--font-size-base);
  }
  #faq_box .question::before{
    left: min(0.8vw, 3px);
    top: 0;
  }
  #faq_box .answer::before{
    top: min(1.6vw, 6px);
    left: min(3.733vw, 14px);
  }
}


/* ------ coming soon -------*/
.comingsoon#pageWrapper::before{
  content: '';
  display: block;
  background-color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.txt_comingsoon{
  display: none;
  font-size: 8rem;
  font-weight: bold;
  position: absolute;
  top: 338px;
  text-align: center;
  width: 100%;
  z-index: 2;
}
.comingsoon .txt_comingsoon{
  display: block;
}
@media screen and (max-width: 750px) {
  .txt_comingsoon{
    font-size: 5rem;
    top: 200px;
  }
}