@charset "SHIFT-JIS";

@import url("https://yakult-t.jp/css/style.css");

* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  /* font-family: Arial, sans-serif; */
  overflow-x: hidden;
  background-color: #fffaf2;
}

img {
  width: 100%;
}

a {
  display: block;
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  transform: scale(0.95);
  cursor: pointer;
}

img {
  width: 100%;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

/* ヘッダー ----------------------------------*/

.wrapper div.header {
  margin: 0 auto;
  background-color: #fff;
}

/* フッター ------------------------------------*/

/* ヘッダー ----------------------------------*/

#header {
  background: transparent;
  overflow-x: hidden;
  padding: 10px 0;
  position: relative;
}

.inner {
  position: static;
  margin: 0 auto;
  max-width: 1000px;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
}

.header_logo {
  width: 114px;
  display: inline-block;
}

/* フッター ------------------------------------*/

#footer {
  position: relative;
  background-color: #fffaf2;
  padding: 10px 0;
  z-index: 2;
  border-top: #c90c1a solid 2px;
}

#footer .logo,
#footer #copyright {
  text-align: center;
  margin: 8px auto;
}

#footer a {
  display: block;
  width: 114px;
  margin: 0 auto;
}





/* MV ---------------------------------------- */

.container {
  position: relative;
  width: 100%;
  background-color: #fffaf2;
  max-width: 750px;
  margin: auto;
  background-image: linear-gradient(90deg, #ad181f, #cc131c 50%, #ad181f);
  margin-bottom: 80px;
  
}




@media screen and (min-width:767px) {

  .header-inner.is-pc {
      display: flex !important;
  }

  .header-inner.is-sp {
      display: none !important;
  }

  .footer.footer-campaign.is-pc {
      display: block !important;
  }

  .footer.footer-campaign.is-sp {
      display: none !important;
  }

}

@media screen and (max-width:766px) {

  .is-sp {
      display: block !important;
  }

  .header-inner.is-pc {
      display: none !important;
  }

  .header-inner.is-sp {
      display: flex !important;
      padding: 0;
  }

  .footer.footer-campaign.is-pc {
      display: none !important;
  }

  .footer.footer-campaign.is-sp {
      display: block !important;
  }

  .header img,
  .footer img {
      height: 18px;
      width: auto;
  }


}

/* ここから使用 */
.acc_btn{
  position: relative;
  background-color: #fff;
  padding: 20px;
  margin: 10px 30px 0px;
}
.acc_btn:hover{
  cursor: pointer;
}
.acc_box._unactive{
  display: none;
  background-color: #efefef;
  padding: 10px 30px;
}
.acc_box{
  margin: 0px 30px;
}
/* 矢印 */
.acc_btn:after {
  content: "";

  position: absolute;
  
  transform: translateY(-50%);
  right: 25px;
  top: 43%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #231815;
  border-right: solid 2px #231815;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.acc_btn.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
  
}
/* ここまで使用 */

.item01{
margin: 0px 60px;
}

.item02{
  margin: 30px ;
}

.item03{
  margin: 60px;
}

.item04{
  margin:  30px 100px;
}

.item05{
  max-width: 690px;
  width: 100%;
  margin: auto;
  text-align: center;
  background-color: #fff;
}
.item05_txt_02{margin-left: -17px;}

.item05_txt{
/* 本文を隠す高さを指定 */
position: relative;
height: 1810px;
overflow: hidden;
transition: max-height 0.5s ease;
margin-left: -17px;
}
.item05_txt .top_btn{
  position: absolute;
  width: 100%;
  top: 840px;
  margin-left: 16px;
}

.item05_txt .top_btn a{
  width: 90%;
  margin: 0 auto;
}
.item05_txt .top_btn .btn_02{
  margin-top: 20px;
}

/* もっと見るボタンで高さを自動に */
.item05_txt.active {
  height: auto;
}

/* 透過グラデーションをposition指定 */
.item05_txt::before {
  content: ""; 
  width: 100%;
  height: 20%;
  display: block;
  background: linear-gradient(rgba(255, 255, 255, 0) 0,#fff 90%);
  position: absolute;
  bottom: 0;
  left: 0;
  margin-left: 16px;
  z-index: 10;
}

/* もっと見るボタンで透過グラデーションを解除 */
.item05_txt.active::before {
  background: none;
}
@media screen and (max-width:766px) {
  .item05_txt{
    height: 1210px;
    margin-left: -11px;
    }
    .item05_txt_02{
      margin-left: -11px;

    }
    .item05_txt .top_btn {
      width: 100%;
      top: 550px;
      margin-left: 8px;
  }
    

}
.morebutton{
  width: 60%;
  margin: 10px 10px 100px;
  padding: 10px 0;
  font-size: 30px;
  background-color: #005bac;
  border: solid 2px #005bac;
  color: #fff;
  border-radius: 50px;
  position: relative;
}


.morebutton:after {
  content: "";
  position: absolute;
  transform: translateY(-50%);
  right: 25px;
  top: 43%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

.morebutton.open:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}


.item06{
  margin: 30px ;
  padding-bottom: 30px;
}

.top_btn{
  margin: 40px 30px;
}


.answer{
  color: #ca101a;
  padding: 0px 10px 0px 0px;
  
}

.answer_txt{
  padding: 10px;
  font-size: 20px;
}

.question{
  color: #ca101a;
  padding: 0px 10px 0px 0px;
  font-size: 36px;
  line-height: 1;
  
}

.question_txt{
  font-size: 24px;
  font-weight: 600;
  max-width: 95%;
}

.red{
  color: #ca101a;
}

a.red{
  display: inline;
}

.attention{
  font-size: 20px;
}

.link{
  color: #fff;
  text-align: left;
  margin: 0px 30px;
  font-size: 30px;

}

.copy{
  padding: 30px;
}

@media screen and (max-width:767px) 
{

  .copy{
    padding: 20px;
  }

.item01{
  margin: 0px 30px;
}

.item03{
margin: 30px;

  }
.item04{
  margin: 30px 30px;
}

.item05{
  width: 90%;
}
.morebutton{
  width: 80%;
  margin: 10px 10px 80px;
  font-size: 26px;
}

.top_btn{
  margin: 20px 30px;
}

.acc_btn{
  padding: 10px 20px;
}

.question{
  color: #ca101a;
  padding: 0px 10px 0px 0px;
  font-size: 26px;
  
}

.question_txt{
  font-size: 16px;
  max-width: 90%;
  font-weight: 600;
}

.answer_txt{
  font-size: 16px;
  padding: 0px;
}

.attention{
  font-size: 14px;
}

.link{
  margin: 0px 30px;
  font-size: 15px;

}

/* 矢印 */
.acc_btn:after {
  top: 40%;
}

}

/* 追尾 */

.tracking{
  position: fixed;
  bottom: 10px;
  right: 5%;
  left: 5%;
  margin: 0 auto;
  font-size: 32px;
  text-align: center;
  width: 90%;
  max-width: 700px;
  background: #ee853d;
  padding: 10px;
  z-index: 99;
  border-radius: 90px;
}
.tracking a{
  color: #fff;
}
.footer{
  padding-bottom: 100px;
}

@media screen and (max-width:767px){
  .tracking{
    font-size: 18px;
  }

}

/* 規約 */

.note{
  border: solid 1px #333;
  color: #333;
  height: 250px;
  padding: 20px;
  overflow-y: scroll;
  font-size: 20px;
  background-color: #fff;
}
.note a{
  display: inline-block;
}
.info{
  font-size: 30px;
  /* margin-bottom: 10px; */
}
.info p{
  /* padding-top: 10px; */
}
.info .line{
  border: 1px solid;
}
.info._02{
  display: flex;
}
.fs12{
  font-size: 20px;
}
.mb10{
  margin-bottom: 10px;
}
.pt10{
  padding-top: 10px;
}
@media screen and (max-width:767px){
  .info{
    font-size: 14px;
  }
  .note{
    font-size: 12px;
  }
  .fs12{
    font-size: 12px;
  }
}

.rel{
  position: relative;
}
.benefit_coupon{
  position: absolute;
  bottom: 5%;
  right: 0;
  left: 0;
  margin: auto;
  width: 90%;
}
.item01 .benefit_coupon{
  bottom: 15%;
}
.coupon_wrap{
  width: 90%;
  margin: 30px auto 20px;
  display: flex;
  gap: 2%;
  align-items: center;
  font-weight: bold;
  text-align: center;
}
.coupon_code{
  font-size: 40px;
  width: 75%;
  border: solid 1px #000;
  background-color: #fff;
}
.coupon_copy{
  width: 25%;
  font-size: 30px;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  padding: 8px 0;
  border: solid 2px #fff;
}

@media screen and (max-width:767px){
  .coupon_wrap{
    margin: 3% auto 20px;
  }
  .benefit_coupon{
    bottom: 1%;
  }
  .coupon_code{
    font-size: 22px;
  }
  .coupon_copy{
    font-size: 12px;
  }

}

.end{
  background-color: #fff000;
  color: #ca101a;
  text-align: center;
  font-weight: 600;
  font-size: 32px;
  padding: 10px 0;
}
@media screen and (max-width:767px){

  .end{
  font-size: 20px;
}

}