@charset 'UTF-8';

/* ===================================================================
CSS information
 file name  :  style.css
 style info :  トリプルフォース肌訴求PC style CSS
=================================================================== */
/* ---------------------------------------
body
--------------------------------------- */
body {
  background-color: #f2f2f2;
    min-width: 1080px;
}

/* ---------------------------------------
header, main, footer
--------------------------------------- */
header,
main,
footer {
  overflow: hidden;
  width: 100%;
}

.wrapper {
  background-color: #fff;
  width: 1080px;
  margin: auto;
  box-shadow: 0 0 10px 2px #d6d6d6;
}

.inner_header,
.inner_footer {
  width: 1080px;
  margin: 0 auto;
}

.inner {
  width: 1080px;
  margin: 0 auto;
}

.banner {
  text-align: center;
  background: url(../img/banner_bg.png) no-repeat center / cover;
}

.stockout {
  text-align: center;
}

/*本日の販売終了のカウントダウンバナー*/
#countdown {
  line-height: 0;
  position: relative;
  display: block;
  width: 1000px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

#countdown.fixed {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: calc(50% - 500px);
}

#countdown input {
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
}

#countdown ul {
  position: absolute;
  bottom: 0;
  display: flex;
  width: 6.8%;
  margin-bottom: 2.5%;
  list-style: none;
}

#countdown ul img {
  max-width: 100%;
}

#countdown ul li {
  width: 100%;
  height: auto;
  margin-left: 1%;
}

#countdown ul.hour {
  right: 42.6%;
}

#countdown ul.minute {
  right: 31.2%;
}

#countdown ul.second {
  right: 21.7%;
}

@media only screen and (max-width: 999px) {
  #countdown.fixed {
    left: 0;
  }

  #countdown ul {
    bottom: 0;
    width: 5.7%;
  }

  #countdown ul.hour {
    right: 43%;
  }

  #countdown ul.minute {
    right: 31.5%;
  }

  #countdown ul.second {
    right: 22.2%;
  }
}

/* ---------------------------------------
コンテンツ下部スラッシュカット
--------------------------------------- */
.slash {
  position: relative;
  z-index: 1;
}

.slash::before,
.slash::after {
  position: absolute;
  z-index: 2;
  bottom: -300px;
  width: 10000px;
  height: 300px;
  content: '';
  background-color: #fff;
}

.slash::before {
  left: 50%;
  margin-left: -5000px;
  transform: rotateZ(6deg);
}

.slash::after {
  right: 50%;
  margin-right: -5000px;
  transform: rotateZ(-6deg);
}

/* ---------------------------------------
mv
--------------------------------------- */
.mv {
  width: 100%;
  background: url('../img/mv_bg.png?210625') no-repeat center top;

}

.inner_mv {
  position: relative;
  width: 1080px;
  margin: 0 auto;
}

/* ---------------------------------------
コンバージョンエリア
--------------------------------------- */
.cv {
  width: 100%;
  background: url('../img/cv_bg_01.png'), url('../img/cv_bg_02.png');
  background-repeat: no-repeat, repeat;
  background-position: center 18px;
}

.inner_cv {
  position: relative;
  width: 1040px;
  margin: 0 auto;
  padding-bottom: 40px;
  padding-top: 18px;
}

.cv h2 {
  text-align: center;
}

.cv2 h2 {
  padding: 0 0 20px;
}

.cv h2.cv_fv {
  padding: 0;
}

.cv h2.cv_fv img {
  margin-top: -305px;
}

.cv .cv_ttl_next {
  position: absolute;
  z-index: 1;
  top: -37px;
  width: 1000px;
  text-align: center;
}

.cv .cv_base {
  position: relative;
  /*z-index: 1;*/
  width: 100%;
}

.cv .btnArea {
  position: absolute;
  width: 100%;
  margin: 0 auto;
}

.cv .btnArea form {
  display: block;
  height: 114px;
  text-align: center;
}

.cv1 .btnArea {
  position: absolute;
  bottom: 2%;
  left: 0.1%;
}

.cv1 .btnArea form {
  width: 853px;
  margin: 0 auto;
  background: url(../img/btn_try_on.png?220819) no-repeat;
}

.cv2 .btnArea {
  bottom: 68px;
}

.cv2 .btnArea form {
  width: 613px;
  margin: 0 83px 0 auto;
}

.cv .inner_cv .stockout {
  display: inline-block;
  margin-top: 22px;
}

.cv .inner_cv .btn_box {
  position: absolute;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
  -webkit-transform: translate3d(0, 0, 0);
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  animation-name: bounce;
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@keyframes bounce {

  20%,
  53%,
  80%,
  from,
  to {
    transform: translate3d(0, 0, 0);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
  }

  40%,
  43% {
    transform: translate3d(0, -12px, 0);
    animation-timing-function: cubic-bezier(.755, .050, .855, .060);
  }

  70% {
    transform: translate3d(0, -4px, 0);
    animation-timing-function: cubic-bezier(.755, .050, .855, .060);
  }

  90% {
    transform: translate3d(0, 0, 0);
  }
}

.cv .inner_cv .btn_area {
  top: 0px;
  left: 37px;
  position: relative;
}
/*モーダル*/
.modal{
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 9;
}
.modal__bg{
  position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
  box-sizing: border-box;
}
.modal__content{
  background: #fff;
	text-align: left;
	padding: 0 0 14px 50px;
  width: 90%;
  max-width: 960px;
  position: relative;
  top: 50%;
  left: 50%;
  z-index: 8;
  font-size: calc(24/750 * 100vw);
  transform: translate(-50%,-50%);
}  
.modal_scroll{
  max-height: 800px;
  overflow-y: auto;
  padding: 30px 30px 30px 0;
  font-size: min(calc(18/750 * 100vw), 18px);
}
.modal_scroll span{
  font-size: min(calc(16/750 * 100vw), 16px);
}
.js-modal-open{
  position: absolute;
  top: 79%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: calc(221/750 * 100vw);
  cursor: pointer;
  text-align: center;
}
.js-modal-open02{
  top: 81.5%;
  width: calc(164/750 * 100vw);
}
.modal-open-cv2{
  bottom: 15%;
}
.modal-close{
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  background: #dc143c;
  border-radius: 50%;
  top: -4%;
  right: -2%; 
  z-index: 9;
  cursor: pointer;
}
.modal-close::before, .modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px; /* 棒の幅（太さ） */
  height: 20px; /* 棒の高さ */
  background: #fff; /* バツ印の色 */
}
.modal-close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.modal-close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.modal__content p{
  margin: 16px auto;
}
p.modal-close{
  margin: 0;
}
/* ---------------------------------------
突破
--------------------------------------- */
.toppa {
  width: 100%;
  background: url('../img/toppa_bg_01.png'), url('../img/toppa_bg_02.png');
  background-repeat: no-repeat, repeat;
  background-position: center top;
}

.toppa h2 {
  text-align: center;
}

/* ---------------------------------------
変化
--------------------------------------- */
.henka {
  width: 100%;
  background: url('../img/bg_henka.png');
  background-repeat: no-repeat;
  background-position: center top;
  margin-bottom: 38px;
}

/* ---------------------------------------
糖化1
--------------------------------------- */
.touka1 {
  background: url('../img/touka1_bg.png') center bottom no-repeat;
}

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

/* ---------------------------------------
糖化2
--------------------------------------- */
.touka2 {
  background: url('../img/touka2_bg.png') center top no-repeat;
}

/* ---------------------------------------
ポイント
--------------------------------------- */
.point_box {
  position: relative;
}

.point_box .gif {
  position: absolute;
  width: 640px;
  left: 0;
  right: 0;
  margin: auto;
}

.point_box .gif01 {
  bottom: 220px;
}

.point_box .gif02 {
  bottom: 180px;
}

.point_box .gif img {
  width: 100%;
  height: auto;
}

/* ---------------------------------------
世界初
--------------------------------------- */
.sekaihatsu {
  background: url('../img/sekaihatsu_bg.png') center top no-repeat;
}

/* ---------------------------------------
3つのこだわり
--------------------------------------- */
.kodawari {
  width: 100%;
  margin-bottom: 138px;
}

.inner_kodawari {
  width: 900px;
  margin: 0 auto;
  padding-top: 176px;
}

/* ---------------------------------------
リゲインシリーズの集大成
--------------------------------------- */
.kaihatsu {
  width: 100%;
}

.inner_kaihatsu {
  position: relative;
  width: 1000px;
  margin: 0 auto 70px;
  text-align: center;
}

.kaihatsu h2 {
  padding: 0 0 50px;
}

/* ---------------------------------------
第１位獲得！
--------------------------------------- */
.kakutoku {
  width: 100%;
  background: url('../img/kakutoku_bg.png') no-repeat center top;
}

/* ---------------------------------------
お客様の感想
--------------------------------------- */
.kansou {
  position: relative;
  width: 100%;
  text-align: center;
}

.kansou h2 {
  position: absolute;
  top: -142px;
  left: 50%;
  margin-left: -443px;
}

.kansou p.kansou_01 {
  background: url('../img/kansou_01_bg.png') no-repeat center;
}

.kansou p.kansou_02 {
  background: url('../img/kansou_02_bg.png') no-repeat center;
}

.kansou p.kansou_03 {
  background: url('../img/kansou_03_bg.png') no-repeat top;
}

.kansou p.kansou_04 {
  background: url('../img/kansou_04_bg.png') no-repeat center;
}

.kansou p.kansou_05 {
  background: url('../img/kansou_05_bg.png') no-repeat top;
}

/* ---------------------------------------
Q&A
--------------------------------------- */
.qa {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-bottom: 80px;
  text-align: center;
  background: url('../img/qa_bg.png') repeat center;
}

.qa h2 {
  padding: 86px 0 56px;
}

.inner_qa {
  width: 960px;
  margin: 0 auto;
  padding: 11px;
  background-color: #fff;
}

.qa_list {
  padding: 94px 68px;
  text-align: left;
  border: #e5f3f2 solid 2px;
}

.qa_list dt {
  margin-bottom: 50px;
}

.qa_list dd {
  margin-bottom: 50px;
  padding-bottom: 50px;
  background: url('../img/qa_border.png') repeat-x left bottom;
}

.qa_list dd:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  background: none;
}

/* ---------------------------------------
定期便サービス
--------------------------------------- */
.teiki {
  width: 100%;
  padding: 90px 0 53px;
  background-color: #e5f3f2;
}

.inner_teiki {
  width: 960px;
  margin: 0 auto;
}

.teiki h2 {
  margin-bottom: 50px;
  text-align: center;
}

.teiki ol {
  margin-right: -44px;
  margin-left: -5px;
}

.teiki ol li {
  display: inline-block;
  margin-right: 30px;
}

/* ---------------------------------------
成分、用法・用量、効能・効果、使用上の注意
--------------------------------------- */
.chushaku {
  width: 100%;
  padding: 78px 0 0;
}

.chushaku ul {
  width: 960px;
  margin: 0 auto;
}

/* ---------------------------------------
第一三共ヘルスケア　×　アイム
--------------------------------------- */
.hanbai {
  width: 100%;
  margin-bottom: 66px;
  text-align: center;
}

/* ---------------------------------------
フッター
--------------------------------------- */
footer {
  width: 100%;
  padding-bottom: 60px;
  text-align: center;
}

footer h1 {
  width: 100%;
  margin-bottom: 12px;
}

footer p {
  font-size: 1.2rem;
}

footer p a {
  text-decoration: none;
  color: #000;
}

footer p a:hover {
  text-decoration: none;
}
