@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;
}

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('../../common/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('../../common/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('../../common/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;
  display: none;
}

#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("../../common/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("../../common/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;
}

/* 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;
}

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


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

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


.campaign_cta .campaigan_limit{
    /*リアルタイム*/
    position: absolute;
    font-size: 2.3rem;
    font-size: calc(2.3rem + 3 * ((100vw - 320px) / 1120));
    font-weight: 900;
    color: red;
    bottom: 49.5%;
    right: 11%;

}

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

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

/*----------
  エビデンス動画スライド
  ------------*/
/*------ スライダーの背景 ------*/
.evidence_mov {
  position: relative;
  overflow: hidden;
  width: 100%;
}

/*------ スライダーの横幅 ------*/
.evidence_mov .slide-items {
  position: absolute;
  width: 100%;
  margin: 0 auto;
  bottom:11%;
}

/*------ スライダー画像 ------*/
.evidence_mov .slide-items div {
  width: 100%;
  left: 1.5%;
}

.evidence_mov .slide-items div img {
  width: 90%;
  margin-left: 2%;
}

/* videoしているので限定 */
.evidence_mov .slide-items div video {
  width: 90%;
  margin-left: 2%;
}

/*-------- 高さ調整 ----------*/
.evidence_mov .slide-items .slick-slide {
  height: auto !important;
}

/*---------- 矢印 ----------*/
.evidence_mov .slide-items .slick-next {
  right: 3% !important;
}

.evidence_mov .slide-items .slick-prev {
  left: 3% !important;
}

.evidence_mov .slide-items .slick-arrow {
  width: initial!important;
  height: initial!important;
  z-index: 2 !important;
}

.evidence_mov .slide-items .slick-arrow:before {
  font-size: 4rem !important;
  color: #6591d1;
}

.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);
  }
}

/* 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;
}