@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@300;400;500;700&family=Zen+Maru+Gothic:wght@500;700;900&display=swap');


@media screen and (min-width:768px) {.pc-none{ display: none!important; } }
@media screen and (max-width:767px) {.sp-none{ display: none!important; } }

/*----------------------------------------------------------------------------
  header sp-nav
----------------------------------------------------------------------------*/
header .header__hamburger,
header .sp-nav{
  display: none;
}
header .wide-nav{
  width: 100%;
  max-width: 100%;
  background-color: #fff;
  margin: 0 auto;
  position: fixed;
  top: 0;
  border-bottom: 4px solid #e60012;
  z-index: 9999;
}
header .wide-nav li a{ padding: 30px 0;}
header .wide-nav li:first-child a{ width: 80%;}
header .wide-nav li:nth-child(2):before{ display: none;}
header .wide-nav > .header__inner{
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  header .header__hamburger,
  header .sp-nav{ display: block; }
  header .wide-nav{ display: none; }

  header{
    background-color: #e60012;
    z-index: 999;
    width: 100%;
    height: 10vw;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
  }

  .header__inner {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: inherit;
    position: relative;
  }
  .sp-nav {
    position: absolute;
    right: 0;
    left: 0;
    top: 9.9vw;
    width: 65vw;
    height: auto;
    transform: translateX(-101%);
    background-color: #e60012;
    transition: ease .4s;
  }

  .nav-items__item:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  .nav-items__item a {
    color: #fff;
    width: 100%;
    display: block;
    text-align: left;
    font-size: 3.4vw;
    padding: 4vw 5vw;
    font-weight: 600;
  }

  /* ハンバーガーメニュー */
  .header__hamburger {
    width: 28px;
    height: 100%;
  }
  .hamburger {
    background-color: transparent;
    border-color: transparent;
    z-index: 9999;
  }
  .hamburger span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: ease .4s;
    display: block;
  }
  .hamburger span:nth-child(1) { top: 0;}
  .hamburger span:nth-child(2) { margin: 6px 0;}
  .hamburger span:nth-child(3) { top: 0;}
  /* メニュー開 */
  .sp-nav.active { transform: translateX(0);}
  .hamburger.active span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
  }
  .hamburger.active span:nth-child(2) { opacity: 0;}
  .hamburger.active span:nth-child(3) {
    top: -8px;
    transform: rotate(-45deg);
  } 
}

/*----------------------------------------------------------------------------
  hero
----------------------------------------------------------------------------*/
#hero {
  position: relative;
}
#hero .main_ttl {
  position: absolute;
  top: max(20vw,40%);
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
#hero .slider-container {
  overflow-x: scroll;
  white-space: nowrap;
  /*scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;*/
  scrollbar-width: none;
  font-size: 0;
  pointer-events: none;
}
#hero .slider-container::-webkit-scrollbar {
  display: none;
}
#hero .slider-item {
  display: inline-block;
  width: auto;
  text-align: center;
  font-size: initial;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  #hero .main_ttl {
    top: 28vw;
    width: 80vw;
    z-index: 9;
  }
  #hero .slider-item{
    width: 140%;
    position: relative;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}

/*----------------------------------------------------------------------------
  wide-nav
----------------------------------------------------------------------------*/
.wide-nav {
  max-width: 1280px;
  margin: 40px auto 60px;
  line-height: 1.4;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 500;
}
.wide-nav ul{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  text-align: center;
}
.wide-nav li{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.wide-nav li:before{
  min-height: 3.2em;
  background-color: #e60012;
  border-radius: 20px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 2px;
  position: absolute;
  top: auto;
  left: 0;
}
.wide-nav li:first-child:before{
    width: 0;
}
.wide-nav li a{
  width: 100%;
  color: #e60012;
  font-size: min(3em,15px);
  letter-spacing: 0.085em;
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .wide-nav {
    max-width: 96%;
    margin: 3vw auto;
  }
  .wide-nav ul{ flex-wrap: wrap;  }
  .wide-nav li { width: 33%; }
  .wide-nav li:nth-child(3n+1):before{ width: 0;}
  .wide-nav li a {
    font-size: 3.15vw;
    font-weight: 600;
    padding: 5.5vw 0;
  }
}

/*----------------------------------------------------------------------------
  news
----------------------------------------------------------------------------*/
#news {
  padding: 0 0 150px;
}
#news .inner {
  width: 90%;
  max-width: 1100px;
}
#news h2 {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 900;
  font-style: normal;
  color: #e60012;
  text-align: center;
  font-size: 55px;
  letter-spacing: 0.085em;
  margin: 0 0 20px;
}
.news_box a {
  display: flex;
  flex-direction: column;
  transition: all 0.2s ease;
}
@media screen and (min-width: 767px) {
  .news_box a:hover {
    opacity: 0.7;
  }
}
#news .news_box a > .news_item {
  display: flex;
  align-items: stretch;
  margin-bottom: 30px;
}
#news .news_box a > .news_item .news_thumb{
  width: 220px;
  height: 150px;
  /*width: 23%;*/
  aspect-ratio: 1.48/1;
}
#news .news_box a > .news_item .news_thumb img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#news .news_box a > .news_item .news_item-body{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  width: 75%;
  margin-left: 3%;
  border-bottom: 1px solid #000;
  position: relative;
}
#news .news_box a > .news_item .news_item-body:after{
  content: "";
  background-image: url(../images/news_arr.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
#news .news_box a > .news_item .news_item-body .news-top .date{
  vertical-align: middle;
  padding-right: 20px; 
}
#news .news_box a > .news_item .news_item-body .news-top .label{
  display: inline-block;
  color: #fff;
  vertical-align: middle;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 65%;
  letter-spacing: 0.046em;
  font-weight: bold;
}
.label { background-color: #333;}
.label.is-saiyou_lb00 { background-color: #efa3a3;}
.label.is-saiyou_lb01 { background-color: #f39800;}
.label.is-saiyou_lb02 { background-color: #e60039;}
.label.is-saiyou_lb03 { background-color: #8f99e8;}
.label.is-saiyou_lb04 { background-color: #6dc494;}
#news .news_box a > .news_item .news_item-body .news-title{
  display: flex;
  align-items: center;
  min-height: 123px;
  font-size: 16px;
  letter-spacing: 0.15em;
  padding: 30px 50px 30px 0;
  margin: 0;
}

#news .news_link{
  width: max-content;
  margin: 0 auto;
  font-family: "Zen Maru Gothic", serif;
  font-size: 22px;
  letter-spacing: 0;
  color: #fff;
  font-weight: 500;
  border-radius: 50px;
  letter-spacing: 0.025em;
  display: block;
  padding: 12px 50px 15px;
  margin-top: 60px;
  text-align: center;
  background-color: #e60039;
  position: relative;
}
#news .news_link:after{
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 12px solid #fff;
  border-right: 0;
  position:absolute;
  top: 50%;
  right: 0;
  transform: translate(-200%, -50%);
}


@media screen and (max-width: 767px) {
  #news{
    padding: 0 0 7vw;
  }
  #news h2{
    font-size: 7.8vw;
  }
  #news .news_box a > .news_item .news_thumb{
    width: 30vw;
    height: 100%;
  }
  #news .news_box a > .news_item .news_item-body:after{
    width: 6vw;
    height: 6vw;
  }
  #news .news_box a > .news_item .news_item-body .news-top .date{
    font-size: 2.8vw;
    font-weight: 500;
  }
  #news .news_box a > .news_item .news_item-body .news-title{
    min-height: auto;
    font-size: 2.6vw;
    letter-spacing: 0.065em;
    padding: 2vw 8.5vw 2vw 0;
    line-height: 1.6;
  }
}

/*----------------------------------------------------------------------------
  intro
----------------------------------------------------------------------------*/
#intro h2 {
  position: relative;
  max-width: 48%;
  overflow: visible;
  margin: 0;
  padding: 15px 0;
  background-color: #e60039;
  border-radius: 0px 50px 50px 0;
}
@media (max-width: 1100px) {
  #intro h2 {
    /*max-width: 90%;*/
    padding-right: 8.2vw;
  }
}

#intro h2 .title-image {
  position: relative;
  left: calc((100vw - 1020px) / 2.3);
  max-width: none;
  width: auto;
  height: 35px;
  display: block;
}
@media (max-width: 1100px) {
  #intro h2 .title-image {
    left: 0;
    max-width: 100%;
    height: auto;
    padding-left: 5%;
  }
}

#intro .inner {
  width: 90%;
  max-width: 1100px;
  position: relative;
  padding-bottom: 120px;
}
#intro .inner:before {
  content: "";
  background-image: url(../images/yakult-bg01.gif);
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 275px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-100%, -77%);
  transition-delay: 0.4s;
  z-index: -1;
}
#intro .inner.animate:before {
  background-image: url(../images/yakult-bg01.gif?reload);
}
#intro .inner .text_block{
  display: block;
  width: 490px;
  margin: 40px 0;
  position: relative;
}
#intro .inner .text_block:after {
  content: "";
  background-image: url(../images/intro_bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 650px;
  height: 624px;
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0;
  transform: translate(105%, 0%) translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
  transition-delay: 0.5s;
  z-index: 1;
}
#intro .inner .text_block.visible::after {
  opacity: 1;
  transform: translate(105%, 0%) translateY(0);
}
/* ★ リサイズ中は transition を無効化する */
body.resizing #intro .inner .text_block::after {
  transition: none !important;
}
#intro .inner .text_block h3{
  font-family: "Zen Maru Gothic", serif;
  color: #e60039;
  font-size: 36px;
  line-height: 1.6;
  letter-spacing: 0.085em;
  font-weight: 600;
}
#intro .inner .text_block p{
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.085em;
  margin: 20px 0 30px;
}
#intro .inner .text_block .yakult_img {
  display: block;
  width: 80%;
}

@media screen and (max-width: 767px) {
  #intro{ padding: 5vw 0 0;}
  #intro h2 { max-width: 80%;}
  #intro h2 .title-image {
    max-width: 95%;
    padding-left: 10%;
  }
  #intro .inner { padding-bottom: 14vw;}
  #intro .inner:before{ 
    width: 25vw;
    height: 46vw;
    transform: translate(264%, -63%);
  }
  #intro .inner .text_block{
    width: 92%;
    margin: 5vw auto 0;
  }
  #intro .inner .text_block:after{
    width: 83vw;
    height: 100%;
    top: 24vw;
    right: 50%;
    transform: translate(50%, 0%) translateY(20px);
  }
  /* ★ リサイズ中は transition を無効化する */
  body.resizing #intro .inner .text_block::after {
    transition: none !important;
  }
  #intro .inner .text_block.visible::after {
    transform: translate(50%, 0%) translateY(0);
  }
  #intro .inner .text_block h3{
    font-size: 4.6vw;
    line-height: 1.5;
    margin-bottom: 92vw;
  }
  #intro .inner .text_block p{
    font-size: 3.4vw;
    margin: 0;
  }
  #intro .inner .text_block .yakult_img {
    display: block;
    width: 55.8%;
    position: absolute;
    bottom: 51.5vw;
    right: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: opacity 1s ease-out, transform 1s ease-out;
    transition-delay: 0.5s;
    z-index: 5;
  }
  #intro .inner .text_block .yakult_img.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/*----------------------------------------------------------------------------
  movie
----------------------------------------------------------------------------*/
#movie .inner{
  width: 90%;
  max-width: 1280px;
  padding: 100px 0;
  position: relative;
}
#movie .inner:before {
  content: "";
  background-image: url(../images/yakult-bg02.gif);
  background-repeat: no-repeat;
  background-size: contain;
  width: 150px;
  height: 285px;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(0%, -40%);
  transition-delay: 0.4s;
  z-index: 1;
}
#movie .inner.animate:before {
  background-image: url(../images/yakult-bg02.gif?reload);
}
#movie h2{
  text-align: center;
}
#movie h2 img{
  display: inline-block;
  height: 45px;
}
#movie p{
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.085em;
  margin: 20px 0 60px;
  text-align: center;
}
.youtube_block{
  width: 100%;
  background-color: #e60039;
  padding: 35px;
  border-radius: 10px;
  position: relative;
}
.youtube_block .youtube_area {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.youtube_block .youtube_area iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  pointer-events: auto;
}
.youtube_block .youtube_area .thumbnail {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/movie_thumb.jpg');
  background-size: cover;
  background-position: center;
  cursor: pointer;
  z-index: 1;
}
.youtube_block .youtube_area .play_button {
  position: absolute;
  top: 50%; left: 50%;
  width: 181px;
  height: 174px;
  background-image: url('../images/movie_btn.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  #movie h2 { 
    max-width: 70%;
    margin: 0 auto;
  }
  #movie h2 img{
    height: auto;
  }
  #movie .inner { padding: 12vw 0 14vw;}
  #movie .inner:before{ 
    width: 20vw;
    height: 38vw;
    transform: translate(-370%, -30%);
  }
  #movie p{
    font-size: 3.2vw;
    margin: 2vw 0 6vw;
  }
  .youtube_block{
    width: 94%;
    margin: 0 auto;
    padding: 3vw;
    border-radius: 5px;
  }
  .youtube_block .youtube_area .play_button{
    width: 45%;
    height: 45%;
  }
}

/*----------------------------------------------------------------------------
  work
----------------------------------------------------------------------------*/
#work .inner{
  width: 90%;
  max-width: 1100px;
  padding: 100px 0 0;
  position: relative;
}
#work > .inner:before {
  content: "";
  background-image: url(../images/yakult-bg03.gif);
  background-repeat: no-repeat;
  background-size: contain;
  width: 103px;
  height: 275px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-100%, -12%);
  transition-delay: 0.4s;
  z-index: 1;
}
#work > .inner.animate:before {
  background-image: url(../images/yakult-bg03.gif?reload);
}
#work h2{
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
#work h2 img{
  display: inline-block;
  height: 125px;
}
#work p{
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.085em;
  margin: 20px 0 60px;
  text-align: center;
}
#work .flex_block{
  display: flex;
  justify-content: space-between;
  gap: 11%;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  #work h2 { 
    max-width: 80%;
    margin: 0 auto 5vw;
  }
  #work h2 img{
    height: auto;
  }
  #work .inner { padding: 12vw 0 0;}
  #work .inner:before{ 
    width: 20vw;
    height: 38vw;
    transform: translate(380%, -12%);
  }
  #work .flex_block {
    flex-direction: column;
    align-items: center;
    width:  65%;
    margin: 0 auto 14vw;
  }
  #work .flex_block .flex_item + .flex_item{
    margin-top: 12vw;
  }
}

/*----------------------------------------------------------------------------
  work appeal
----------------------------------------------------------------------------*/
#work .appeal .inner{
  width: 90%;
  max-width: 1100px;
  padding: 100px 0 20px;
  position: relative;
}
#work .appeal h2{
  text-align: center;
  margin-bottom: 60px;
}
#work .appeal h2 img{
  display: inline-block;
  height: 60px;
}
#work .appeal .flex_block{
  gap: 8%;
  margin-bottom: 0;
}
#work .appeal .flex_block .flex_item{
  text-align: center;
}
#work .appeal .flex_block .flex_item img{
  display: inline-block;
  width:96px;
}
#work .appeal .flex_block .flex_item h3{
  font-family: "Zen Maru Gothic", serif;
  font-size: 36px;
  padding-top: 15px;
  line-height: 1.3;
  letter-spacing: 0.015em;
  font-weight: 600;
}
#work .appeal .flex_block .flex_item h3.red{ color: #e60039;}
#work .appeal .flex_block .flex_item h3.blue{ color: #1d2088;}
#work .appeal .flex_block .flex_item p{
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: 0.015em;
  text-align: left;
}
#work .appeal .flex_block .flex_item p span{
  display: inline-block;
  color: #e60039;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  #work .appeal h2 { 
    max-width: 70%;
    margin: 0 auto 5vw;
  }
  #work .appeal h2 img{
    height: auto;
  }
  #work .appeal .inner { padding: 12vw 0 14vw;}
  #work .appeal .inner:before{ display: none;}
  #work .appeal .flex_block {
    display: block;
    width: 92%;
    margin: 0 auto;
  }
  #work .appeal .flex_block .flex_item + .flex_item{
    margin-top: 8vw;
  }
  #work .appeal .flex_block .flex_item img{
    width: 25%;
    padding: 1.2% 0 0 4%;
    float: left;
  }
  #work .appeal .flex_block .flex_item h3{
    width: 75%;
    padding-top: 0;
    float: left;
    font-size: 6.8vw;
    line-height: 1.35;
  }
  #work .appeal .flex_block .flex_item p{
    width: 100%;
    font-size: 3.4vw;
    padding-top: 4vw;
    margin: 0;
    clear: both;
  }
}

/*----------------------------------------------------------------------------
  work system, benefits , apply
----------------------------------------------------------------------------*/
#benefits .inner,
#apply .inner{
  width: 90%;
  max-width: 1100px;
  padding: 100px 0 0;
  position: relative;
}
#work .system h3,
#benefits h3,
#apply h3{
  font-family: "Zen Maru Gothic", serif;
  font-size: 20px;
  letter-spacing: 0;
  color: #fff;
  font-weight: 600;
  width: 100%;
  display: block;
  padding: 10px;
  margin-bottom: 20px;
  border-bottom: 3px solid #e60039;
  position: relative;
}
#work .system h3 span,
#benefits h3 span,
#apply h3 span{
  display: inline-block;
  text-align: center;
  width: 150px;
  padding: 5px 5px 2px 5px;
  background-color: #e60039;
  border-radius: 10px 10px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
}

#work .system-item,
#benefits .benefit-item{
  padding: 0 20px;
}
#work .system-item:not(:last-child),
#benefits .benefit-item:not(:last-child){
  padding-bottom: 20px;
}
#work .system-item h4{
  color: #e60039;
  font-size: 18px;
  margin-bottom: 5px;
}
#work .system-item p{
  text-align: left;
  font-size: 16px;
  margin: 0 auto;
}

#benefits .benefit-item h4,
#apply .apply-item h4{
  font-size: 18px;
  display: flex;
  align-items: center;
}
#benefits .benefit-item h4:before,
#apply .apply-item h4:before{
  content: '◼︎';
  color: #e60039;
  display: inline-block;
  font-size: 25px;
}
#benefits .benefit-item p{
  text-align: left;
  font-size: 16px;
  margin: 0 auto;
  padding-left: 26px;
}

#apply table{
  border-top: 1px solid #000;
}
#apply .tablepress tbody tr{
  border-bottom: 1px solid #000;
}
#apply .tablepress tbody td,
#apply .tablepress tfoot th{
  font-size: 18px;
  vertical-align: middle;
}
#apply .tablepress tbody td.column-1{
  background-color: #f6f6f6;
  font-weight: 500;
  text-align:justify;
  text-align-last:justify;
  padding: 30px 40px;
  width: 166px;
}
#apply .tablepress tbody td.column-2{
  padding: 20px;
}

@media screen and (max-width: 767px) {
  #benefits .inner,
  #apply .inner{
    padding: 12vw 0 6vw;
  }
  #work .system h3,
  #benefits h3,
  #apply h3{
    font-size: 4vw;
    border-bottom: 1px solid #e60039;
    margin-bottom: 4vw;
  }
  #work .system h3 span,
  #benefits h3 span,
  #apply h3 span {
    width: 33vw;
  }

  #work .system-item,
  #benefits .benefit-item{
    padding: 0 1vw;
  }
  #work .system-item:not(:last-child),
  #benefits .benefit-item:not(:last-child){
    padding-bottom: 2vw;
  }

  #work .system-item h4,
  #benefits .benefit-item h4,
  #apply .apply-item h4{
    font-size: 3.6vw;
  }
  #work .system-item h4{
    margin-bottom: 1vw;
  }
  #benefits .benefit-item h4{
    margin-left: -1vw;
  }
  #benefits .benefit-item h4:before,
  #apply .apply-item h4:before{
    font-size: 5vw;
  }

  #work .system-item p,
  #benefits .benefit-item p,
  #apply .apply-item p{
    font-size: 2.8vw;
  }
  #benefits .benefit-item p{
    padding-left: 0;
  }

  #apply .tablepress tbody td,
  #apply .tablepress tfoot th{
    font-size: 3.2vw;
  }
  #apply .tablepress tbody td.column-1{
    padding: 2.4vw;
    width: 18.8vw;
  }
  #apply .tablepress tbody td.column-2{
    padding: 4vw 3vw;
  }
}

/*----------------------------------------------------------------------------
  inquiry
----------------------------------------------------------------------------*/
#inquiry{
  margin-bottom: 140px;
}
#inquiry .inner{
  width: 90%;
  max-width: 1100px;
  padding: 100px 0 60px;
  position: relative;
  border-bottom: 3px solid #e60039;
}
#inquiry .tel_area{
  width: 80%;
  margin: 0 auto;
  padding: 50px 0;
}
#inquiry .tel_area > p{
  width: 96%;
  margin: 0 auto;
  padding-bottom: 40px;
}
#inquiry .tel_area > .tel_link{
  pointer-events: none;
}
#inquiry .tel_area > .contact_link{
  width: max-content;
  margin: 0 auto;
  font-family: "Zen Maru Gothic", serif;
  font-size: 32px;
  letter-spacing: 0;
  color: #e60039;
  font-weight: 500;
  border-radius: 50px;
  letter-spacing: 0.025em;
  display: block;
  padding: 15px 70px 15px 50px;
  margin-top: 40px;
  text-align: center;
  border: 1px solid #e60039;
  position: relative;
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 767px) {
  #inquiry .tel_area > .contact_link:hover{
    color: #fff;
    background-color: #e60039;
  }
}
#inquiry .tel_area > .contact_link:after{
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid #e60039;
  border-right: 0;
  position:absolute;
  top: 50%;
  right: 0;
  transform: translate(-200%, -50%);
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 767px) {
  #inquiry .tel_area > .contact_link:hover:after{
    border-left: 21px solid #fff;
  }
}
#inquiry .flex_block{
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
#inquiry .flex_block .insta_link{
  width: 100%;
  margin: 0 auto;
  font-family: "Zen Maru Gothic", serif;
  font-size: 32px;
  letter-spacing: 0;
  color: #fff;
  background-color: #e60039;
  font-weight: 500;
  border-radius: 50px;
  letter-spacing: 0.025em;
  display: block;
  padding: 15px 70px 15px 50px;
  margin: 20px 0;
  text-align: center;
  border: 1px solid #e60039;
  position: relative;
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 767px) {
  #inquiry .flex_block .insta_link:hover{
    color: #e60039;
    background-color: #fff;
  }
}
#inquiry .flex_block .insta_link:after{
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 21px solid #fff;
  border-right: 0;
  position:absolute;
  top: 50%;
  right: 0;
  transform: translate(-200%, -50%);
  transition: background-color 0.2s ease;
}
@media screen and (min-width: 767px) {
  #inquiry .flex_block .insta_link:hover:after{
    border-left: 21px solid #e60039;
  }
}

@media screen and (max-width: 767px) {
  #inquiry {
    margin-bottom: 14vw;
  }
  #inquiry .inner{
    padding: 12vw 0 8vw;
  }
  #inquiry .tel_area {
    width: 100%;
    padding: 6vw 0 10vw;
  }
  #inquiry .tel_area > p {
    width: 100%;
    padding-bottom: 4vw;
  }
  #inquiry .tel_area > .contact_link{
    width: 78%;
    font-size: 4vw;
    font-weight: 800;
    padding: 2vw 7.2vw 2vw 3.8vw;
    margin-top: 5vw;
  }
  #inquiry .tel_area > .contact_link:after{
    border-top: 2vw solid transparent;
    border-bottom: 2vw solid transparent;
    border-left: 3vw solid #e60039;
    transform: translate(-130%, -50%);
  }

  #inquiry .flex_block{
    width: 85%;
    gap: 14px;
  }
  #inquiry .flex_block .insta_link{
    width: 100%;
    margin: 4vw auto;
    font-size: 4vw;
    font-weight: 800;
    padding: 2vw 7.2vw 2vw 3.8vw;
  }
  #inquiry .flex_block .insta_link:after{
    border-top: 2vw solid transparent;
    border-bottom: 2vw solid transparent;
    border-left: 3vw solid #fff;
    transform: translate(-130%, -50%);
  }
}

/*----------------------------------------------------------------------------
  faq
----------------------------------------------------------------------------*/
#faq{
  background-color: #e60039;
  font-family: "Zen Maru Gothic", serif;
}
#faq .inner{
  width: 90%;
  max-width: 1100px;
  padding: 100px 0;
  position: relative;
}
#faq h2{
  color: #fff;
  font-weight: 900;
  text-align: center;
  font-size: 42px;
  letter-spacing: 0.085em;
  margin-bottom: 30px;
}
#faq h2 span{
  display: block;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.025em;
}

#faq .accordion {
  max-width: 100%;
  margin: 0 auto;
}

#faq .accordion-item {
  margin-bottom: 10px;
  overflow: hidden;
}
#faq .accordion-item:last-child {
  margin-bottom: 0;
}
#faq .accordion-header {
  background-color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  font-size: 22px;
}
#faq .accordion-header .question{
  background-color: #9fa0a0;
  color: #fff;
  padding: 8px 20px 13px 20px;
  height: auto;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.085em;
  line-height: 1;
  display: flex;
  align-items: center;
}
#faq .accordion-header p{
  display: flex;
  align-items: center;
  width: 100%;
  padding-left: 1.5%;
  padding-right: 10%;
  text-align: left;
}
#faq .accordion-item-inner {
  overflow: hidden;
  width: 100%;
  height: 0;
  transition: all 0.5s;
}
#faq .accordion-item-content {
  width: 100%;
  padding: 20px;
  background-color: #fce4de;
  font-size: 20px;
  line-height: 1.5;
}
#faq .arrow {
  position: relative;
  display: inline-block;
  transition: transform 0.3s ease;
}
#faq .arrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px #e60039;
  border-right: solid 2px #e60039;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: transform 0.3s ease;
}
#faq .accordion-item.active .arrow::before {
  transform: translate(-50%, -50%) rotate(135deg);
  top: 50%;
}


@media screen and (max-width: 767px) {
  #faq h2{
    font-size: 6.8vw;
    margin-bottom: 3vw;
  }
  #faq h2 span{
    font-size: 3.2vw;
  }
  #faq .inner{
    padding: 5vw 0 10vw;
  }
  #faq .accordion {
    max-width: 92%;
  }
  #faq .accordion-item {
    margin-bottom: 3vw;
  }
  #faq .accordion-header{
    font-size: 3.35vw;
  }
  #faq .accordion-header .question {
    padding: 1vw 2vw 1.6vw 2vw;
    font-size: 3.8vw;
    font-weight: 600;
  }
  #faq .accordion-header p{
    padding: 1.3vw 6vw 1.7vw 1.7vw;
    line-height: 1.2;
    font-size: 3.15vw;
  }
  #faq .accordion-item .accordion-item-content{
    font-size: 3.15vw;
    padding: 2vw 3.5vw;
  }
  #faq .arrow::before{
    width: 2vw;
    height: 2vw;
    right: 2vw;
  }
}

/*----------------------------------------------------------------------------
  oubo
----------------------------------------------------------------------------*/
#oubo {
  position: fixed;
  top: 20%;
  right: 0;
  z-index: 99;
}
#oubo a{
  background-color: #e60039;
  border: 1px solid #fff;
  border-right: 0;
  padding: 20px 10px;
  font-family: "Zen Maru Gothic", serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.065em;
  color: #fff;
  writing-mode: vertical-rl;
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 767px) {
  #oubo{
    top: 50vw;
  }
  #oubo a{
    padding: 3.8vw 1.5vw;
    font-size: 4.6vw;
    border-radius: 7px 0 0 8px;
  }
}

@supports (-webkit-touch-callout: none) {
  @media screen and (max-width: 767px) {
    #oubo {
      right: max(env(safe-area-inset-right), 26px);
    }
  }
}

/*----------------------------------------------------------------------------
  footer
----------------------------------------------------------------------------*/
footer {
  font-family: fot-tsukuardgothic-std, sans-serif;
  margin-top: 167px;
  padding: 0 0 170px;
  text-align: center;
}
footer .inner .box h2 {
  display: inline-block;
  margin: 0 auto 20px;
  transition: all 0.2s ease;
}
@media screen and (min-width: 767px) {
  footer .inner .box h2:hover{
    opacity: 0.7;
  }
}
footer .inner .box address {
    font-size: 14px;
    font-style: normal;
}

@media screen and (max-width: 767px) {
  footer{
    margin-top: 10vw;
    padding: 0 0 10vw;
  }
  footer .inner .box {
    width: 80%;
    margin: 0 auto;
  }
  footer .inner .box h2 {
    margin: 0 auto 1.5vw;
  }
  footer .inner .box address{
    font-size: 2.4vw;
  }
}

.tablepress tbody td, .tablepress tfoot th {
    border-top: none!important;
}

body.resizing .scroll-fade-in {
  transition: none !important;
}
