@charset "UTF-8";

/*
  contents

 - reset（編集しない）
 - base（font-familyなどの変更。fontは1.6rem＝16px）
 - link（テキストリンク関連）
 - button（ボタン関連）
 - typography（見出し・注釈・本文など共通）
 - main（各セクションごとのスタイル）
 - footer（コピーライトなどフッター関連）
 - utility（clearfix・mb10など）
 */
/* -----------------------------------------
  reset（編集しない）
----------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  max-height: 99999px;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

/* remember to define focus styles! */
:focus {
  outline: 0;
}

/* remember to highlight inserts somehow! */
ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

/* tables still need 'cellspacing=&quot;0&quot;' in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* -----------------------------------------
  base（font-familyなどの変更。fontは1.6rem＝16px）
----------------------------------------- */
/* rem用 */
html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "メイリオ", Meiryo, "Meiryo UI", Avenir, "Open Sans", Helvetica, "Helvetica Neue", Arial, Verdana, Roboto, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 1.6rem;
}

/* 解析タグの隙間対策 */
body>img {
  display: none;
}

/* 画像の隙間対策 */
#wrapper img {
  display: block;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

video {
  max-width: 100%;
  height: auto;
}

p video {
  width: 100%;
  height: auto;
}

/* -----------------------------------------
  link（テキストリンク関連）
----------------------------------------- */
#wrapper a {
  display: inline-block;
  -webkit-transition: opacity 0.5s ease-out;
  transition: opacity 0.5s ease-out;
  text-decoration: none;
}

#wrapper a:hover {
  opacity: 0.7;
}

#wrapper .rel-box {
  position: relative;
}

/* -----------------------------------------
  button（ボタン関連）
----------------------------------------- */
#wrapper .btn_offer {
  position: absolute;
  width: 90.8%;
  bottom: 14%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);

}

#wrapper .fv_offer .btn_offer {
  bottom: 23%;
}

#wrapper .way .btn_offer {
  bottom: 9%;
}

#wrapper .bottom_offer .btn_offer {
  bottom: 26%;
}

#wrapper .rel-box .btn_offer {
  bottom: 2%;
}

#wrapper .btn_small_offer {
  position: absolute;
  width: 44.9333%;
  bottom: 2%;
  right: 1.5%;
}

#wrapper .offer_date {
  position: absolute;
  top: 3%;
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  width: 100%;
  color: #ee1b6a;
}

#wrapper .offer_limit {
  position: absolute;
  font-family: 'Noto Serif JP', serif;
  position: absolute;
  bottom: 24%;
  left: 11%;
  font-size: 4.5rem;
  color: #fff600;
}

#wrapper .offer_limit span {
  font-size: 7rem;
}



/* -----------------------------------------
  main（各セクションごとのスタイル）
----------------------------------------- */
/* サイトの最大幅 */
#wrapper {
  max-width: 750px;
  margin: 0 auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  z-index: 1;
  /* padding-bottom: 160px; */
}


#wrapper .program {
  position: relative;
  z-index: 1;
}

#wrapper .approach {
  position: relative;
  z-index: 2;
  margin-top: -15%;
}

/* accordion */

#wrapper .faq {
  background-image: url("../img/lp/bg_faq.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 13.0667%;
}

#wrapper dl.accordion {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;

  margin-bottom: 0.6667%;
}

#wrapper dl.accordion:last-child {
  margin-bottom: 0;
}

#wrapper dl.accordion dt {
  position: relative;
  cursor: pointer;
}

#wrapper dl.accordion dt:after {
  content: "";
  background-image: url("../img/lp/icon_open.webp");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 4.4%;
  padding-top: 4.4%;
  right: 8%;
  top: 34%;
  transition: all .25s ease;
}

#wrapper dl.accordion dt.selected:after {
  background-image: url("../img/lp/icon_close.webp");
}

#wrapper dl.accordion dd {
  display: none;
}

.txt-hide {
    display: none;
    margin: 2px 0 0 0;
}

button.more {
    width: 300px;
    margin: 20px auto;
    display: block;
    background-color: #cdb277;
    color: #fff;
    padding: 20px 15px;
    border: none;
    outline: 0;
    transition: .5s;
    -erbkit-transition: .5s;
    font-size: 15px;
}

button.more::after {
    content: "もっと他の質問も確認する▼";
    transition: .2s;
    -erbkit-transition: .2s;
}

button.more.on-click::after {
    content: "閉じる▲";
}

/* tvcm */
.cm-box {
  position: relative;
}

.cm-wrap {
  width: 64.9rem;
  height: 36.5rem;
  margin: 0 auto;
  text-align: center;
  position: absolute;
  top: 61.5%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#cm_video {
  width: 65rem;
  height: 37rem;
  box-shadow: 0px 0px 10px #00000020;
  border-radius: 10px;
  width: 64.9rem;
  height: 36.5rem;
}


/* banner */

#fixed_banner{
  max-width: 750px;
  margin: 0 auto;
  position: fixed;
  z-index: 3;
  bottom: 0;
}

#fixed_banner ul{
  position: absolute;
  width: 100%;
  left: 0;
  top: 34%;

}
#fixed_banner ul li{
  width: 32.6667%; 
    width: 60%;
    margin: auto;
}
#fixed_banner ul li:first-child{
  /* margin-left: 1%; 電話ボタンも入れるなら1％ */
}

#fixed_banner .banner_btn_line{

}


/* googlemap */
/* #wrapper .access {
  background-color: #fdf9f9;
}

#wrapper .access .map_wrap {
  position: relative;
  max-width: 670px;
  width: 89.3333%;
  padding-top: 52.6667%;
  margin: 0 auto;
  border: 6px solid #FFF;
}

#wrapper .access iframe {
  position: absolute;

  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
} */
#access {
  background-color: #FFFAF0;
  padding-bottom: 32px;
}

.access-title {
  display: flex;
  justify-content: center;
  padding: 32px 0;
}

.access-contents {
  margin: 24px;
  /* border: solid 1px #BE9E63;
  background-color: #ffffff; */
}

.access-tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  cursor: pointer;
}

.tab {
  width: 48%;
  background: #eee;
  border: 2px solid #231815;
  padding: 20px 20px;
  text-align: center;
  border-radius: 10px;
  margin: 5px 0;
  color: #888;
}

.access-tab .active {
  background-color: #fff;
  color: #000;
}

.panel {
  display: none;
  text-align: center;
  border: 2px solid #231815;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  margin-top: 10px;
}

.panel.active {
  display: block;
}

.panel table {
  width: 100%;
}

.panel th,
.panel td {
  width: 100%;
  display: block;
  text-align: center;
  margin-bottom: 15px;
}

.panel th span {
  display: inline-block;
  width: 180px;
  font-weight: normal;
  color: #fff;
  background: #000;
  border-radius: 20px;
  padding: 5px;
}

.clinic-contents {
  margin: 18px;
  border: solid 1px #D3D3D3;
}

.map-contents {
  margin: 14px;
}

.map-tx img {
  display: inline-block !important;
  vertical-align: middle !important;
  width: 1em;
}

.map-tx {
  font-size: 1.7em;
  line-height: 1.5em;
}

.map-tx {
  margin-bottom: 10px;
}

.map-link {
  color: #BE9E63;
}

.link-img {
  margin-left: 4px;
}

.info-img {
  margin-right: 4px;
}

#map_wrap {
  max-width: 670px;
  width: 100%;
  height: 500px;
  /* 枠外mapを非表示 */
  overflow: hidden;
}
/* 左の吹き出し（ポップ）削除 */
#map_wrap iframe {
  width: 100%;
  height: 860px;
  margin-top: -170px;
}

@media (max-width: 750px) {
  #map_wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
  }
  #map_wrap iframe {
    width: 100%;
    height: 600px;
    margin-top: -170px;
  }
}

/* end */

/* footer */
#wrapper footer{
  background-color: #372116;
  text-align: center;
  padding: 10% 0 40%;
}

#wrapper footer .policy a {
  font-size: 2rem;
  color: #FFF;
  border-bottom: 1px solid #FFF;
}

/* -----------------------------------------
  utility（clearfix・mb10など）
----------------------------------------- */
/* clearfix */
#wrapper .clearfix {
  width: 100%;
}

#wrapper .clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* 位置 */
#wrapper .txtC {
  text-align: center !important;
}

#wrapper .txtR {
  text-align: right !important;
}

#wrapper .txtL {
  text-align: left !important;
}

/* positionでのレイアウトの外枠に使用 */
#wrapper .p-box {
  position: relative;
}

@media (max-width:750px) {
  html {
    font-size: calc(1000vw / 750);
  }
}


/*アクセスへのボタン追加*/
.access_btn {
  margin: -40px 0 30px 0;
  text-align: center;
}

.access_btn a {
  /* width:30%; */
  width: 24%;
  padding: 0 2px;
}

@media (max-width:750px) {
  .access_btn {
    margin: -5.3vw 0 4vw 0;
  }
}

/*--------------
　院内写真カルーセル
--------------*/
.clinic_photo {
  width: 100%;
  background-color: #faeff0;
  padding: 30px 0;
}

.clinic_photo img {
  width: 100%;
}

/* webtv */

.webtv {
  position: relative;
  width:100%; /* 横幅は100%にしておく(ここを変えたい場合は実装コード2の方法を確認してください) */
  height:0; /* 高さは0にしておく(padding-topで高さを指定するため) */
  padding-top: 56.25%; /* 高さを指定(16:9) */
}

.webtv img{
  margin-top: -56.25%; 
}

.webtv iframe {
  position: absolute;
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 6%;
  height: 100%;
}
.thankyou-footer {
  margin-top: 40%;
}

.dammy_map {
  position: relative;
  margin: 18px;
}

.dammy_map_title {
position: absolute;
top: 0;
left: 6%;
width: 190px;
overflow: hidden;
}

.dammy_map_title img{
max-width: 140% !important;
}

.pink_text {
  text-align: center;
  font-size: 2em;
  padding: 14px;
  background-color: #fcf3f5;
  color: #e91e63;
}

.crowns {
  background: #1c070a;
}

.crowns-btn {
    display: contents;
    width: 90.8%;
}

/* 220409 予約枠欄テキスト */
.reserve_frame {
  position: relative;
  aspect-ratio: 1 / 1.96;
  overflow: hidden;
}
.reserve_last2,.reserve_last,.reserve_this {
  color: #fff;
  font-size: 5rem;
  /* font-family: 'Noto Serif JP', serif; */
  font-family: serif;
  font-weight: 700;
}
.reserve_last2 {
  position: absolute;
  left: 12%;
  bottom: 26.5%;
}
.reserve_last {
  position: absolute;
  left: 12%;
  bottom: 19%;
}
.reserve_this {
  position: absolute;
  left: 12%;
  bottom: 11.5%;
}

.medical_treatment_video {
	background: url("../img/lp/bg_video_01.webp");
	background-size: 100%;
	text-align: center;
}

.medical_treatment_video video {
	max-width: 85%;
}

.medical_treatment_video img {
	width: 85%;
	margin: auto;
}

.medical_treatment02_video {
	background: url("../img/lp/bg_video_02.webp");
	background-size: 100%;
	text-align: center;
}

.medical_treatment02_video video {
	max-width: 85%;
}

.medical_treatment02_video img {
	width: 85%;
	margin: auto;
}

/* カウントダウン */
.countdown_box {
  position: relative;
}

.countdown_num {
  position: absolute;
  width: 100%;
  text-align: center;
}

.fv_countdown {
  top: 18%;
  font-size: 5.0rem;
  font-weight: bold;
}

.offer_countdown {
  top: 76%;
  font-size: 6.0rem;
  font-weight: bold;
}

.yycountdown-box,
.yycountdown-box02 {
  color: #d62d5b!important;
}

.yycountdown-box::before {
  content: "＼";
  font-weight: normal!important;
}

.yycountdown-box::after {
  content: "／";
  font-weight: normal!important;
}

.yycountdown-box02::before {
  /* content: "＼"; */
  font-weight: normal!important;
}

.yycountdown-box02::after {
  /* content: "／"; */
  font-weight: normal!important;
}

.countdown_num .yyc-day::before {
  content: "終了まで";
  font-size: 3.0rem!important;
  padding: 0 10px;
}

.countdown_num .yyc-day-text,
.countdown_num .yyc-hou-text,
.countdown_num .yyc-min-text,
.countdown_num .yyc-sec-text {
  font-size: 3.0rem!important;
  color: #e26c8c;
}

@media (max-width: 750px) {
  .fv_countdown {
    top: 18%;
    font-size: 5.0rem;
    font-weight: bold;
  }

  .offer_countdown {
    top: 75%;
    font-size: 5.5rem;
    font-weight: bold;
  }
  
  .yycountdown-box,
  .yycountdown-box02 {
    color: #d62d5b!important;
  }
  
  .yycountdown-box::before {
    content: "＼";
    font-weight: normal!important;
  }
  
  .yycountdown-box::after {
    content: "／";
    font-weight: normal!important;
  }

  .yycountdown-box02::before {
    /* content: "＼"; */
    font-weight: normal!important;
  }
  
  .yycountdown-box02::after {
    /* content: "／"; */
    font-weight: normal!important;
  }
  
  .countdown_num .yyc-day::before {
    content: "終了まで";
    font-size: 2.5rem!important;
    padding: 0 10px;
  }
  
  .countdown_num .yyc-day-text,
  .countdown_num .yyc-hou-text,
  .countdown_num .yyc-min-text,
  .countdown_num .yyc-sec-text {
    font-size: 2.5rem!important;
    color: #e26c8c;
  }
}

/* tchm（表示位置） */
.tchm_position {
  position: relative;
}
.tchm_gif {
  position: absolute;
  width: 44rem;
  top: 5rem;
  left: 19rem;
}
.tchm_item {
  position: absolute;
  width: 100%;
  top: 9.5rem;
}
.tchm_video {
  position: absolute;
  text-align: center;
  bottom: 10rem;
}
.tchm_position video {
  width: 75%;
  box-shadow: 0px 0px 10px #00000020;
  border-radius: 10px;
}

.v_line_height {
  line-height: 0;
}

/* monitor */
#monitor {
  background-image: url("../../common/img/blp/bg_monitor.webp");
}
#monitor img {
  width: 90%;
  margin: 0 auto 18px;
}
.monitor-lead {
  font-size: 1.25rem;
  text-align: right;
  padding-bottom: 24px;
  line-height: 1.5em;
}

/* てんちむ背景 */
.fv {
  background-color: #fdd0da;
}

/* キャンペーン */
.btn_bg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn_blog {
  position: absolute;
  width: 100%;
}

.campaign_bg {
  position: relative;
}

@media (min-width: 751px) {
  .campaign_bg a {
    margin-left: 18px;
  }
}

.campaign_botchat {
  position: absolute;
  top: 80%;
  width: 100%
}

@media (max-width: 750px) {
  .btn_bg {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .btn_blog {
    position: absolute;
    width: 100%;
  }
  
  .campaign_bg {
    position: relative;
  }
  
  .campaign_botchat {
    position: absolute;
    top: 80%;
    width: 100%
  }
}

.yureru {
  animation: yureru 2s infinite;
}

@keyframes yureru {
  0% {
    transform: translate(0px, 2px);
  }
  5% {
    transform: translate(0px, -2px);
  }
  10% {
    transform: translate(0px, 2px);
  }
  15% {
    transform: translate(0px, -2px);
  }
  20% {
    transform: translate(0px, 2px);
  }
  25% {
    transform: translate(0px, -2px);
  }
  30% {
    transform: translate(0px, 0px);
  }
}

/* flow背景 */
.flow {
  background-color: #f9f6ee;
}

/*6ヶ月キャンペーン(gif)*/
.campaign_cta {
  position: relative;
}

.campaign_cta  a {
  position: absolute;
  left:0;
  bottom:5%;
}

/* slider */
.banner_cp {
  position: relative;
}

.banner_cp .slider_wrap {
  position: absolute;
  top: 23rem;
  left: 0%;
  width: 100%;
}

.slider .slick-arrow {
  z-index: 1;
}

.banner_cp .slider_wrap .slider .slick-slide img {
  width: 78.666%;
  margin: auto;
}

.banner_cp .slider_wrap .slider .slick-arrow {
  position: absolute;
  top: 50%;
  width: 5rem;
}

.banner_cp .slider_wrap .slider .slick-arrow.prev {
  left: 3%;
}

.banner_cp .slider_wrap .slider .slick-arrow.next {
  right: 3%;
}

.banner_cp .slider_wrap .slider .slick-dots {
  display: flex;
  justify-content: center;
  bottom: 0%;
  top: 107%;
  height: 4%;
}

.banner_cp .slider_wrap .slider .slick-dots li {
  width: 2%;
  height: 100%;
  margin: 0% 1%;
  background-color: #9696ac;
  border-radius: 50%;
  transition: 0.6s;
}

.banner_cp .slider_wrap .slider .slick-dots li.slick-active {
  background-color: #aa8446;
}

.banner_cp .slider_wrap .slider .slick-dots li * {
  display: none;
}

/* 仮予約の流れ START */
.flow_reserve {
  position: relative;
}

.flow_reserve .btn_cta {
  position: absolute;
  bottom: 0;
}
/* 仮予約の流れ END */

/* oss用CTA START */
.result_btn_01 {
  position: relative;
}

.result_btn_01 .btn_cta {
  position: absolute;
  bottom: 3rem;
}
/* oss用CTA END */

.youtuber_ct {
  position: relative;
}

.youtuber_character {
  position: absolute;
  top: 18%;
  left: 0;
  transform: translate(0%, -50%);
  width: 90%;
}

.youtuber_character_gif {
  position: absolute;
    top: 11.3%;
    left: 54%;
    transform: translate(-50%, -50%);
    width: 60%;
}

#youtuber_ct_wrap {
  position: absolute;
    top: 83%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 76%;
    border-radius: 13px;
}

.fv_video_3mt {
  position: relative;
}

.fv_video_3mt_video {
  position: absolute;
  z-index: 99;
  bottom: 0;
  padding: 4%;
}

/* 放映記念 - 100万円分 */
.cm-million {
  position: relative;
}

.cm-million-mov {
  bottom: 6rem;
  left: 50%;
  position: absolute;
  transform: translate(-50%);
  width: 86.5%;
}

.cm-million-mov video {
  border-radius: 10px;
}

/* -----------------------------------------
6ヶ月キャンペーン
----------------------------------------- */

.campaign_cta {
  position: relative;
}

.campaign_cta a {
  position: absolute;
  left: 0;
  bottom: 5%;
}

.campaign_cta .campaigan_limit {
  position: absolute;
  font-size: calc(2.8rem + 2.8 * ((100vw - 320px) / 1120));
  font-weight: 900;
  background: linear-gradient(180deg, #ffff33, #fff);
  background: -webkit-linear-gradient(90deg, #ffff33, #fff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  bottom: 19.5%;
  left: 8.5%;

}

@media (max-width: 750px) {
  .campaign_cta .campaigan_limit {
    font-size: 2.5rem;
    font-size: calc(3rem + 4 * ((100vw - 320px) /1120));
    right: 10%;
  }
}

@media (max-width: 478px) {
  .campaign_cta .campaigan_limit {
    font-size: 2.5rem;
    font-size: calc(3rem + 4 * ((100vw - 320px) /1120));
    right: 10%;
  }
}

.ia_inbody_offer .campaign_cta02 .campaigan_limit02 {
  /*リアルタイム*/
  position: absolute !important;
  width: 80%;
  text-align: center;
  font-size: calc(2.7rem + 2.3 * ((100vw - 320px) / 1120));
  font-weight: 700;
  background-color: #af256d !important;
  /*background: linear-gradient(180deg, #ffff33, #fff);
  background: -webkit-linear-gradient(90deg, #ffff33, #fff);*/
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  top: 0%;
  left: 10%;
}

.campaign_cta .campaigan_ltxt02 {
  font-size: calc(3.5rem + 2.8 * ((100vw - 320px) / 1120));
  font-weight: 900;
}

/* CTA上のリアルタイム */
.cta_box .campaigan_limit02 {
  margin-bottom: -12%;
}

/* @keyframes junp{
0% {
  transform: scale(0.95,0.95);
}
40% {
  transform: scale(1,1);
}
100% {
  transform: scale(0.95,0.95);
}
} */


@media (max-width: 750px) {
  .campaign_cta .campaigan_limit02 {
    font-size: 2.5rem;
    font-size: calc(2.5rem + 3 * ((100vw - 320px) /1120));
    left: 20%;
  }

}

@media (max-width: 478px) {
  .campaign_cta .campaigan_limit02 {
    font-size: 2.5rem;
    font-size: calc(2.7rem + 4 * ((100vw - 320px) /1120));
    left: 20%;
  }
}