
/* ----------------------------------
kv
---------------------------------- */
/* .kv{
  aspect-ratio: 16 / 9;
  background: url(../images/index/kv_bg.png) center center no-repeat;
  background-size: cover;
  padding:6.2vw 4.2vw 2.2vw;
  box-sizing: border-box;
}
.kv_wrapper{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kv_left{
  width:50%;
}
.kv_left h1{
  font-size:15.625vw;
  color:#fff;
  font-family: var(--f-f-mincho);
  font-weight:bold;
  line-height: 1;
}
.kv_left h2{
  color:#0658c4;
  font-size:3vw;
  font-weight:bold;
  width:80%;
  margin:-0.8em 0 0 auto;
  position:relative;
  z-index: 2;
  position:relative;
}
.kv_left h2::before{
  content:"";
  position:absolute;
  inset:-10px;
  background:rgba(255,255,255,0.85);
  filter:blur(35px);
  z-index:-1;
}
.kv_left p{
  font-size:1.875vw;
  color:#fff;
  font-weight:bold;
  line-height: 2;
  margin:2.167vw auto 2.167vw 0;
}
.kv_info{
  background-color: #fff;
  padding:24px;
  width:80%;
}
.kv_info table{
  width:100%;
}
.kv_info table tr th,
.kv_info table tr td{
  padding:1.2vw 0.8vw;
  font-size:1.25vw;
}
.kv_info table thead th{
  font-weight:bold;
}
.kv_info table tbody{
  color:var(--main-blue);
}
.kv_info table tbody tr{
  border-top:1px solid var(--main-blue);
}
.kv_info p{
  font-size:14px;
  margin:10px auto;
  font-weight:normal;
  color:var(--main-font-color);
}
.kv_right{
  width:50%;
}
.kv_right ul{
  display: flex;
  width:100%;
  margin:0 auto;
  align-items: flex-start;
}
.kv_right ul li{
  width:calc(100% / 3);
}
.kv_right ul li{
  opacity: 0;
  transform: translateY(-30px) rotate(-3deg);
}

.kv_right.is-show ul li{
  animation: kvFadeDown 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.kv_right.is-show ul li:nth-child(1){
  animation-delay: .2s;
}

.kv_right.is-show ul li:nth-child(2){
  animation: kvFadeDown_sec 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: .5s;
}

.kv_right.is-show ul li:nth-child(3){
  animation-delay: .8s;
}

@keyframes kvFadeDown{
  0%{
    opacity: 0;
    transform: translateY(-20px) rotate(-3deg);
  }

  100%{
    opacity: 1;
    transform: translateY(0) rotate(0);
  }
}
@keyframes kvFadeDown_sec{
  0%{
    opacity: 0;
    transform: translateY(10px) rotate(-3deg);
  }

  100%{
    opacity: 1;
    transform: translateY(80px) rotate(0);
  }
}
.kv_right ul li img{
  width:100%;
}
.kv_right p{
  font-size:3vw;
  color:#fff;
  line-height: 1.2;
  letter-spacing: 5px;
  padding-left:1em;
  font-weight:500;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    #f5f9ff 30%,
    #d9e9ff 70%,
    #b8d4ff 100%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  margin-top:90px;
} */
.top_kv {
  position: relative;
  margin-top:124px;
  box-sizing: content-box;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin-bottom:120px;
}

.top_kv img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform-origin: left center;
  z-index: 1;
}

/* 表示中 */
.top_kv img.is-active {
  opacity: 1;
  z-index: 3;
}

/* めくれて消える画像 */
.top_kv img.is-leave {
  opacity: 1;
  z-index: 4;
  animation: kvPageTurn 1.4s ease-in-out forwards;
}

@keyframes kvPageTurn {
  0% {
    clip-path: inset(0 0 0 0);
    transform: scale(1);
  }
  100% {
    clip-path: inset(0 0 0 100%);
    transform: scale(1.04);
  }
}

/* ----------------------------------
news
---------------------------------- */
.news_wrapper{
  display: flex;
  align-items: flex-start;
  gap:90px;
}
.news_content{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap:160px;
  width:100%;
  position:relative;
  height:280px;
}
.news_head{
  height:100%;
  width:20%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news_head h2.section_title{
  color:var(--main-blue);
  font-size:4rem;
  line-height: 1;
  font-family: var(--english-font);
}
.news_head h2.section_title span{
  color:var(--main-font-color);
  font-size:var(--fs-lg);
  font-family: var(--f-f-mincho);
  margin-top:1rem;
}
.news_head a{
  color:var(--main-font-color);
  font-family: var(--english-font);
  position:relative;
  padding-bottom:3px;
  padding-right:12px;
}
.news_head a::before{
  width:100%;
  height:1px;
  left:0;
  bottom:0;
  background-color: #d9d9d9;
}
ul.news_list{
  width:calc(100% - 360px);
}
.news-item{
  font-size:1.4rem;
  padding-bottom:40px;
  margin-bottom:40px;
  position:relative;
  width:100%;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.news-item:last-child{
  margin-bottom:0;
}
/* news link矢印アイコン共通 */
.news-item::before,
.news_head a::after{
  width:25px;
  height:25px;
  right:0;
  top:50%;
  transform: translateY(-50%);
  background: url(../images/index/news_arrow.png) center center no-repeat;
  background-size: cover;
}
.news-item::after{
  left:0;
  bottom:0;
  height:1px;
  width:100%;
  background-color: #d9d9d9;
}
.news-item span{
  display: inline-block;
}
.news-date{
  font-family:var(--english-font);
  font-size:var(--fs-ssm);
  margin-right:1em;
  color:#3a5264;
}

.news-title{
  margin-top:1em;
  font-size:1rem;
  margin:0;
}
/* .news-title::after{
  content:"";
  position:absolute;
  width:12px;
  height:6px;
  background: url(../images/index/arrow_black.png) center center no-repeat;
  background-size: cover;
  right:-420px;
  top:50%;
  transform: translateY(-50%);
} */
.news-title a{
  color:var(--main-font-color);
}
/* ----------------------------------
feature
---------------------------------- */
.section_feature.index_section{
  margin-left: calc(50% - 50vw);
  /* background-color: #3483EA; */
  background: url(../images/index/worries_bg.jpg) top center no-repeat;
  background-size: cover;
  color:#fff;
  position:relative;
  padding-bottom:430px;
  margin-bottom:0;
}
.section_feature .section_mintitle{
  font-family: var(--english-font);
  line-height: 0.3;
  font-size:clamp(10rem,12rem,14rem);
  text-align: right;
  color:#003479;
  opacity: 0.3;
  /* display: inline-block;
  width:160px;
  text-align: right;
  transform:translate(-2rem,100px) rotate(90deg) ; */
}

.feature.wrapper{
  padding-top:100px;
  width:95%;
  max-width: 1080px;
}
.feature h3{
  font-size:2rem;
  font-family: var(--f-f-mincho);
  text-align: center;
  color:#000;
}
.feature h3 span{
  color:var(--main-blue)
}
.feature ul{
  display: flex;
  flex-wrap: wrap;
  margin-top:4.2rem;
  gap:13px;
  margin-bottom:64px;
  width:100%;
}
.feature ul li{
  width:calc((100% - 39px) / 4);
  position:relative;
  padding:16px;
  text-align: center;
  background-color: rgba(255,255,255,0.5);
  box-shadow:4px 4px 8px 0px rgba(0,0,0,0.1);
  transition: 0.4s all;
}
.feature ul li:hover{
  transition: 0.4s all;
  box-shadow:none;
  transform: translate(4px,4px);
}
.feature ul li a{
  color:var(--main-font-color);
}
.feature ul li article{
  width:100%;
  aspect-ratio: 16 / 9;
  margin-bottom:7px;
  margin:0 auto;
  object-fit: cover;
  overflow: hidden;
}
.feature ul li article img{
  width:100%;
}
.feature ul li span{
  margin:7px auto;
  text-align: center;
  display: block;
  text-align: center;
  font-size:var(--fs-ssm);
  font-family: var(--english-font);
  color:#0658C4;
}
.feature ul li{
  color:var(--main-font-color);
  font-family: var(--f-f-mincho);
  background-color: rgba(255,255,255,0.5);
}
/* ----------------------------------
feature_decoration
---------------------------------- */
.feature_decoration{
  position:relative;
  height:824px;
  margin-top:-320px;
}
.feature_image,
.feature_title{
  position:absolute;
}
.feature_title{
  left:1rem;
  top:0;
  font-family: var(--english-font);
  opacity: 0.2;
  font-size:7rem;
  color:var(--main-font-color);
  opacity: 0.2;
}
.feature_image.image1{
  top:-60px;
  right:-60px;
}
.feature_image.image2{
  top:136px;
  left:80px;
}
.feature_image.image3{
  bottom:0;
  left:680px;
}
.feature_image.image4{
  top:0;
  right:0;
}
.feature_image {
  position: absolute;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

/* 表示時 */
.feature_decoration.is-show .feature_image {
  opacity: 1;
  transform: translateY(0);
}

/* 時差 */
.feature_decoration.is-show .image2 {
  transition-delay: 0.2s;
}

.feature_decoration.is-show .image3 {
  transition-delay: 0.4s;
}

.feature_decoration.is-show .image4 {
  transition-delay: 0.6s;
}
/* ----------------------------------
solutions
---------------------------------- */
.section_solutions{
  padding-top:140px;
}
p.en.en_title{
  font-size:1rem;
  color:#D4AF37;
}
.solution_head h2{
  font-family:var(--f-f-mincho);
  font-size:1.8rem;
  margin:16px auto;
}
.solution_head h2 span{
  font-family:var(--f-f-mincho);
  font-size:2.4rem;
  color:var(--main-blue);
  font-weight:bold;
}
ul.solution_list{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top:60px;
  border-top:1px solid #D3DDE7;
  border-bottom:1px solid #D3DDE7;
}
ul.solution_list li{
  width:calc(100% / 3);
  padding:40px;
}
ul.solution_list li img{
  width:100%;
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}
ul.solution_list.is-show li img {
  opacity: 1;
  transform: translateX(0);
}
ul.solution_list.is-show li img.solution_image2{
  transition-delay: 0.4s;
}
ul.solution_list li p.solution_txt{
  padding:1rem;
  font-size:1.4rem;
  font-family: var(--f-f-mincho);
  line-height: 1.75;
}
ul.solution_list li a p.solution_txt {
  color:initial;
}
ul.solution_list li:not(:first-child),
ul.solution_list li:not(:nth-child(4)){
  border-left:1px solid #D3DDE7;
}
ul.solution_list li:first-child,
ul.solution_list li:nth-child(2),
ul.solution_list li:nth-child(3){
  border-bottom:1px solid #D3DDE7;
}
.solution_bottom{
  margin-top:60px;
}
p.solution_detail{
  font-size:1.5rem;
  margin-top:36px;
  margin-bottom:0;
  padding-top:36px;
  padding-bottom:36px;
  font-family: var(--f-f-mincho);
  position:relative;
}
p.solution_detail::before,
p.solution_detail::after{
  content:"";
  position:absolute;
  max-width: 740px;
  width:60%;
  aspect-ratio: 1496 / 28;
  left:50%;
  transform: translateX(-50%);
  top:0;
  background: url(../images/index/solution_bottom_deco.png) center center no-repeat;
  background-size: cover;
}
p.solution_detail::after{
  top:initial;
  bottom:0;
  transform:translateX(-50%) rotate(180deg);
}
p.solution_detail span{
  color:var(--main-blue);
}
/* ----------------------------------
clinic_info
---------------------------------- */


.wrapper.clinic_info_wrap{
  display: flex;
  gap:40px;
  flex-direction: row-reverse;
  align-items: center;
  max-width: 1140px;
}
.info_detail{
  text-align: center;
  font-family: var(--f-f-mincho);
}
.info_detail,.info_map{
  width:calc((100% - 24px) / 2);
}
.info_links{
  margin-top:24px;
  display: flex;
  justify-content: space-between;
}
.info_detail p{
  font-size:var(--fs-ssm);
}
p.address{
  margin-top:1rem;
  line-height: 1.75;
}
a.info_tel{
  margin:1rem auto;
  font-size:1.5rem;
  display: block;
  color:var(--main-font-color);
}
.info_detail table{
  width:100%;
  margin:24px auto;
  font-family: var(--f-f-japanese);
  border-top:1px solid #D9D9D9;
  border-bottom:1px solid #D9D9D9;
}
.info_detail table tr{
  border-bottom:1px solid #D9D9D9;
}
.info_detail table tr th,
.info_detail table tr td{
  padding:20px 12px;
}
.info_detail table tr td.sat{
  position:relative;
}
.info_detail table tr td{
  color:var(--main-blue);
}
.info_detail table tr td.sat span{
  position:absolute;
  font-size:1rem;
  bottom:12px;
  left:50%;
  transform: translateX(-50%);
}
.info_detail ul.contact_header{
  width:100%;
  gap:20px;
  margin-top:2rem;
}
.info_detail ul.contact_header li,
.info_detail a.contact_btn{
  width:calc((100% - 20px) / 2);
}
.info_detail ul.contact_header li a{
  width:100%;
}
.info_detail a.contact_btn{
  padding:1rem;
  display: block;
  color:var(--main-font-color);
  margin:12px auto 0;
}
.info_detail a.contact_btn::before{
  width:100%;
  height:1px;
  left:0;
  bottom:0;
  background-color: #D3DDE7;
}
.info_detail a.contact_btn::after{
  width:25px;
  height:25px;
  top:50%;
  transform: translateY(-50%);
  right:8px;
  background: url(../images/index/news_arrow.png) center center no-repeat;
  background-size: cover;
}
.info_map{
  margin-top:50px;
  width:100%;
}
.info_map iframe{
  width:100%;
  height:480px;
  margin-bottom:8px;
}
/* ----------------------------------
clinic_image
---------------------------------- */
.clinic_image{
  position:relative;
}
.clinic_image h2{
  color: #fff;
  font-size:8rem;
  position:absolute;
  right:24px;
  bottom:0;
  font-family: var(--english-font);
  line-height: 1;
}
/* ----------------------------------
about
---------------------------------- */
.section_about{
  background: url(../images/index/clinic_bg.png) top center no-repeat;
  background-size: cover;
  padding-top:144px;
  padding-bottom:160px;
  color:#fff;
  opacity: 0;
  transform: translateY(-24px);
  transition:
    opacity 1s ease,
    transform 1s ease;
  position:relative;
}
h4.about_title{
  position:absolute;
  top:-70px;
  left:5%;
  font-family: var(--english-font);
  color:var(--main-blue);
  font-size:8rem;
  line-height: 1;
  opacity: 0.5;
}
h4.about_title span{
  padding-left:68px;
  font-family: var(--f-f-mincho);
  color:#fff;
  font-size:2rem;
  opacity: 1;
  display: block;
  font-weight:bold;
}
h4.about_title span::before{
  width:46px;
  height:1px;
  left:10px;
  top:50%;
  transform: translateY(-50%);
  background-color: #fff;
}
.section_about.is-show{
  opacity: 1;
  transform: translateY(0);
}
.about_wrapper{
  display: flex;
  gap:80px;
  align-items: flex-start;
  justify-content: space-between;
  font-family: var(--f-f-mincho);
}
.about_wrapper h3{
  writing-mode: vertical-rl;
  font-size:2.25rem;
  letter-spacing: 5px;
}
.about_wrapper h3 span{
  border-right: 1px solid #fff;
  padding-right: 5px;
}
.about_content ul{
  display: flex;
  gap:40px;
  justify-content: flex-start;
}
.about_content ul li{
  width:calc((100% - 80px) / 3);
}
p.about_list_title{
  font-size:1.5rem;
  margin-top:10px;
}
p.about_list_detail{
  font-family: var(--f-f-normal);
  margin-top:10px
}
.about_bottom{
  padding:52px 82px;
  border:1px solid #fff;
  background-color: rgba(255,255,255,0.1);
  font-size:1.5rem;
  margin-top:60px;
}
/* ----------------------------------
reason
---------------------------------- */
.reason_head h3 span{
  display: block;
  padding-bottom:5px;
  margin:0 auto 60px;
  color:var(--main-blue);
  /* font-size:var(--fs-sm); */
  font-size: 8rem;
  font-family: var(--english-font);
  opacity: 0.3;
}
.reason_head h3 span::after{
  width:100%;
  height:1px;
  background-color: #1977F3;
  left:0;
  bottom:0;
}
.reason_head h3{
  font-size:2.25rem;
  font-family: var(--f-f-mincho);
}
.section_reason ul{
  display: flex;
  margin-top:60px;
  gap:80px 40px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.section_reason ul li{
  width:calc((100% - 80px) / 3);
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}
.section_reason .reason_head.is-show ul li{
  opacity: 1;
  transform: translateX(0);
}
.section_reason .reason_head.is-show ul li a{
  color:var(--main-font-color)
}
.section_reason ul li img{
  width:100%;
  transition: 0.7s all;
}
.section_reason ul li:hover img{
  transform: scale(1.05);
  transition: 0.7s all;
}
.section_reason ul li .reason_no{
  color:var(--main-blue);
  font-family: var(--english-font);
  font-size:2rem;
  margin:1rem 0;
  display: inline-block;
}
.section_reason ul li .reason_no::before,
.section_reason ul li .reason_no::after{
  width:32px;
  height:1px;
  top:50%;
  transform: translateY(-50%);
  background-color: var(--main-blue);
}
.section_reason ul li .reason_no::before{
  left:-40px;
}
.section_reason ul li .reason_no::after{
  right:-40px;
}
.reason_list_detail{
  margin-top:1rem;
  font-size:1.5rem;
  font-family: var(--f-f-mincho);
}
.reason_detail_txt{
  margin-top:25px;
}
/* ----------------------------------
menu
---------------------------------- */
.index_section.menu_section{
  background-color: rgba(52,131,234,0.2);
  padding-bottom:36px;
  margin-bottom:0;
}
.menu_head{
  position:relative;
}
.menu_head img{
  width:100%;
}
.menu_title{
  width:100%;
  position:absolute;
  left:50%;
  top:20%;
  transform: translateX(-50%);
}
.menu_title p.en_title{
  font-size:clamp(4rem,5rem,6rem);
  color:rgba(255,255,255,0.3);
  font-family: var(--english-font);
  font-weight:500;
  width:100%;
  display: block;
}
.menu_title h3{
  display: flex;
  align-items: center;
  justify-content: center;
  gap:10px;
  position:relative;
  z-index: 1;
  margin-top:-2em;
}
.menu_title h3 span{
  display: inline-block;
  padding:0 1rem;
  color:var(--main-font-color);
  font-family: var(--f-f-mincho);
  font-size:clamp(3rem,3.6rem,4rem);
  background-color: #fff;
  font-weight:bold;
}
.menu_title p.menu_subtitle{
  color:#fff;
  margin-top:1em;
  font-family: var(--f-f-mincho);
}
/* .menu_section::after{
  width:165px;
  height:190px;
  background-color: #F3F8FD;
  top:-48px;
  right:0;
  z-index: -1;
}
.menu_wrapper{
  width:95%;
  max-width:1320px;
  margin:0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  gap:30px;
  padding-top:40px;
  border-top:1px solid rgba(58,82,100,0.2);
}
.menu_wrapper h3{
  display: inline;
  font-size:1.75rem;
  writing-mode: vertical-rl;
  letter-spacing: 3px;
  font-family: var(--f-f-mincho);
  padding-right:3px;
  border-right:1px solid var(--main-blue);
}
.menu_wrapper h3.sp_menu_title{
  display: none;
}
.menu_wrapper h3 span{
  color:var(--main-blue)
}
.menu_content h3.menu_title{
  font-size:7rem;
  opacity: 0.3;
  font-family: var(--english-font);
  color:var(--main-blue);
  writing-mode: initial;
  border-right:none;
}
.menu_content h3.menu_title span{
  font-size:2rem;
  padding-left:48px;
  opacity: 1;
}
.menu_content h3.menu_title span::before{
  width:36px;
  height:1px;
  left:0;
  top:50%;
  transform: translateY(-50%);
  background-color: #1977F3;
}*/
ul.menu_list{
  display: flex;
  flex-wrap: wrap;
  width:95%;
  align-items: center;
  justify-content: center;
  max-width:1280px;
  margin:20px auto;
  gap:10px;
} 
ul.menu_list li{
  width:calc((100% - 50px) / 6);
  position:relative;
  text-align: center;
  display: block;
  align-items: center;
  justify-content: center;
  padding:20px;
  /* background-color: #F3F9FF; */
  background-color: #fff;
  box-shadow: 6px 6px 10px 0px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

/* 表示時 */
ul.menu_list li.is-show {
  opacity: 1;
  transform: translateY(0);
}
ul.menu_list li::after{
  content:"";
  position:absolute;
  width:0;
  height:0;
  border-bottom: 10px solid var(--main-blue);
  border-left: 10px solid transparent;
  bottom:3px;
  right:3px;
}
ul.menu_list li a{
  color:var(--main-font-color);
}
ul.menu_list li a article{
  transition: 1s all;
}
ul.menu_list li a:hover article{
  transform: scale(1.3);
  background-color: #eef6fd;
  border:1px solid #fff;
  transition: 1s all;
}
ul.menu_list li article{
 text-align: center;
  border-radius: 50%;
  width:80px;
  height:80px;
  margin:0 auto 10px;
  line-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}
ul.menu_list li article span{
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.menu_list li p{
  font-family: var(--f-f-mincho);
  height:50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
ul.menu_list li span{
  font-size:0.8rem;
  display: block;
  padding-top:0.5rem;
}
/* ul.menu_list li{
  border-top:1px solid rgba(58,82,100,0.2);
  border-left:1px solid rgba(58,82,100,0.2);
}
ul.menu_list li:nth-child(6n),
ul.menu_list li:last-child{
  border-right:1px solid rgba(58,82,100,0.2);
}
ul.menu_list li:nth-child(n+18):nth-child(-n+23){
  border-bottom:1px solid rgba(58,82,100,0.2);
} */
.decoration_image img{
  width:100%;
}
/* ----------------------------------
pickup
---------------------------------- */
.pickup_section.index_section{
  padding-top:10rem;
  background-color: #FCF6F0;
  margin-bottom:0;
}
.pickup_wrap{
  width:95%;
  max-width: 1350px;
  margin:0 auto;
}
.pickup_head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding:0 2rem;
}
h3.pickup_title{
  font-family: var(--f-f-mincho);
  font-size:2.25rem;
}
.pickup_head span{
  font-family: var(--english-font);
  /* font-size:var(--fs-sm); */
  font-size:8rem;
  color:var(--main-blue);
  padding-bottom:3px;
  opacity: 0.3;
}
.pickup_head span::after{
  width:100%;
  height:1px;
  bottom:0;
  left:1px;
  background-color: var(--main-blue);
}
.pickup_section ul{
  width:95%;
  max-width: 1350px;
  margin:50px auto 0;
  display: flex;
  gap: 40px;
}
.pickup_section ul li{
  width:calc((100% - 40px) / 2);
  text-align: center;
  padding:0 56px 56px;
  background: url(../images/index/pickup_bg.png) top center no-repeat;
  background-size: cover;
  color:#fff;
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}
.pickup_section.is-show ul li{
  opacity: 1;
  transform: translateX(0);
}
.pickup_section ul li img{
  width:100%;
}
p.pickup_menu_title{
  font-family: var(--f-f-mincho);
  font-size:2rem;
  margin:1rem auto;
}
.pickup_wrap a.both{
  display: block;
  width:230px;
  text-align: center;
  font-size:var(--fs-sm);
  font-family: var(--english-font);
  padding-bottom:12px;
  margin:1.5rem auto 0;
  color:#fff;
}
.pickup_wrap a.both::before{
  width:100%;
  height:1px;
  bottom:0;
  left:0;
  background-color: #fff;
}
.pickup_wrap a.both::after{
  width:25px;
  height:25px;
  top:0;
  right:0;
  background: url(../images/index/pickup_arrow.png) center center no-repeat;
  background-size: cover;
}
.pickup_wrap ul li{
  transition: 1s all;
}
.pickup_wrap ul li:hover{
  transition: 1s all;
  transform: scale(1.05);
}
.pickup_wrap ul>li>a{
  color:#fff;
}
/* ----------------------------------
doctor
---------------------------------- */
.doctor_section{
  padding-top:140px;
  position:relative;
  background-color: #FCF6F0;
}
h3.doctor_title{
  padding-left:5%;
  font-family: var(--english-font);
  font-size:8rem;
  color:var(--main-blue);
  margin-bottom:1rem;
  opacity: 0.3;
}
h3.doctor_title span{
  font-size:2rem;
  padding-left:45px;
}
h3.doctor_title span::before{
  width:36px;
  height:1px;
  left:0;
  top:50%;
  transform: translateY(-50%);
  background-color: var(--main-blue);
}
.doctor_wrap{
  width:calc(100% - 8.333333vw);
  max-width: 1320px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background-color: #fff;
  flex-direction: row-reverse;
}
.doctor_image{
  width:65%;
  flex: 0 0 auto;
}
.doctor_image img{
  display: block;
  width: 100%;
  object-fit: cover;
}
.greeting{
  padding:80px;
  font-family: var(--f-f-mincho);
  letter-spacing: 3px;
  width:35%;
}
.greeting_wrap{
  display: flex;
  gap:10px;
  flex-direction: row-reverse;
  align-items: flex-start;
}
h3.doctor_name{
  font-size:clamp(2rem,2.25rem,2.5rem);
  writing-mode: vertical-rl;
}
h3.doctor_name span{
  margin-top:10px;
  font-size:1.2rem;
}
.greeting p{
  font-size:clamp(1rem,1.25rem,1.5rem);
  padding:1em;
  writing-mode: vertical-rl;
}
.greeting a{
  display: block;
  padding:16px 0;
  color:var(--main-font-color);
  font-family: var(--english-font);
  width:100%;
  text-align: center;
  border:1px solid rgba(0,0,0,0.3);
  position:relative;
}
.greeting a::after{
  content:"";
  position:absolute;
  width:25px;
  height:25px;
  right:30px;
  top:50%;
  transform: translateY(-50%);
  background: url(../images/index/news_arrow.png) center center no-repeat;
  background-size: cover;
  transition: 1s all;
}
.greeting a:hover::after{
  right:16px;
}
.doctor_image_deco{
  position:absolute
}
.doctor_image_deco.deco_2{
  top:80px;
  right:0;
}
.doctor_image_deco.deco_3{
  bottom:-80px;
  right:60px;
}
/* ----------------------------------
price
---------------------------------- */
.price_section{
  padding-top:146px;
  background-color: #FCF6F0;
  padding-bottom:180px;
}
.price_wrap{
  display: flex;
  width:90%;
  max-width: 1140px;
  margin:0 auto;
  background-color: #fff;
}
.price_head{
  width:34%;
  padding:60px;
}
.price_head h3{
  font-size:clamp(3rem,3.5rem,4rem);
  font-family: var(--english-font);
  color:var(--main-blue)
}
.price_head p{
  margin:8px auto 80px;
  font-size:var(--fs-lg);
  font-family: var(--f-f-mincho);
}
.price_head a{
  font-family: var(--english-font);
  display: block;
  width:200px;
  padding:10px;
  color:var(--main-blue)
}
.price_head a::before{
  width:100%;
  height:1px;
  background-color: var(--main-blue);
  bottom:0;
  left:0;
}
.price_head a::after{
  width:25px;
  height:25px;
  right:0;
  top:50%;
  transform: translateY(-50%);
  background: url(../images/index/news_arrow.png) center center no-repeat;
  background-size: cover;
}
/* ----------------------------------
facility
---------------------------------- */
.facility_section{
  background-color: #FCF6F0;
  padding-top:0;
  padding-bottom:140px;
}
.facility_wrap{
  width:95%;
  max-width:1280px;
  margin:0 auto;
}

.facility_gallery{
  display: flex;
  gap: 38px;
  margin-top:40px;
  align-items: flex-start;
}
.facility_main_image{
  width:calc(46% - 16px);
  position:relative;
}
.facility_main_image img{
  width:100%;
}
.facility_gallery ul{
  display: flex;
  gap: 38px;
  width:calc(54% - 16px);
  align-items: flex-start;
  flex-wrap: wrap;
}
.facility_gallery ul li{
  width:calc((100% - 40px) / 2);
  position:relative;
}
.facility_gallery ul li img{
  width:100%;
}
.facility_main_image span,
.facility_gallery ul li span{
  position:absolute;
  display: block;
  text-align: center;
  width:130px;
  padding:5px 0;
  font-size:0.8rem;
  top:10px;
  left:10px;
  background-color: #fff;
  z-index: 1;
}
/* ----------------------------------
movie
---------------------------------- */
/* .movie_section{
  aspect-ratio: 16 / 9;
} */
.movie_box {
  position: relative;
  width:100%;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
}

.movie_poster {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.movie_poster img,
.movie_box iframe {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.movie_box iframe {
  border: 0;
  width:100%;
  height:100%;
}

.movie_play_cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.4);
  color: var(--main-font-color);
  font-family: var(--english-font);
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10;
  transition: opacity .2s ease, transform .2s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  transform: translate(-50%, -50%); /* scale アニメは削除 */
  transition: opacity .2s ease;     /* transform を外す */
}
.movie_play_cursor.map_movie_btn{
  font-size:1rem;

}
.movie_play_cursor span {
  line-height: 1.4;
  text-align: center;
}

.movie_box.is-hover .movie_play_cursor {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%);
}

.movie_box.is-playing .movie_play_cursor {
  display: none;
}

@media (max-width: 767px) {
  .movie_play_cursor {
    width: 110px;
    height: 110px;
    font-size: 0.95rem;
    top: 50% !important;
    left: 50% !important;
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
  }
}
/* ----------------------------------
blog
---------------------------------- */
.blog_section{
  width:100%;
  max-width: 1120px;
  margin:96px auto;
}
.blog_content{
  display: flex;
  gap:50px;
  margin-top:60px;
}
.blog_content article.blog-item{
  width:calc((100% - 100px) / 3)
}
.blog_content article.blog-item a{
  font-size:#303030;
}
.blog_content article.blog-item img{
  width:100%;
}
.blog_content article.blog-item a .news-title{
  font-size:1.1rem;
  font-family: var(--f-f-mincho);
  text-align: center;
  margin-top:7px;
  color:var(--main-font-color);
}
/* ----------------------------------
faq
---------------------------------- */
.faq_wrapper{
  margin-top:64px;
}
.faq_wrapper dl{
  background-color: #FFFAEF;
  padding:32px;
  margin-bottom:16px;
}
.faq_wrapper dl span{
  font-family: var(--english-font);
  display: block;
  width:40px;
  height:40px;
  line-height: 40px;
  border-radius:20px;
  border:1px solid #91725F;
  background-color: #fff;
  color:#91725F;
  margin-right:1em;
  text-align: center;
}
.faq_wrapper dl dt,
.faq_wrapper dl dd{
  padding-left:56px;
  position:relative;
}
.faq_wrapper dl dt::before,
.faq_wrapper dl dd::before{
  font-family: var(--english-font);
  content:"Q";
  position:absolute;
  width:40px;
  height:40px;
  line-height: 40px;
  border-radius:20px;
  border:1px solid #91725F;
  background-color: #fff;
  color:#91725F;
  left:0;
  top:-7px;
  text-align: center;
}
.faq_wrapper dl dt{
  margin-bottom:27px;
}
.faq_wrapper dl dd::before{
  content:"A";
  color:#fff;
  background-color: #74947E;
}
/* ----------------------------------
template
---------------------------------- */
.temp_wrap{
  width:100%;
  max-width: 940px;
  margin:0 auto;
  background-color: #fff;
  padding-top:16px;
  padding-bottom:120px;
}
.temp_mv{
  background: url(../images/common/temp_title_bg.png) center center no-repeat;
  background-size: cover;
  padding-top:100px;
  padding-bottom:100px;
  margin-top:124px;
}
.temp_mv h2{
  /* width:632px; */
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  justify-content: center;
  margin:0 auto;
  font-size:4rem;
  line-height: 1.4;
  color:#fff;
  font-family:var(--f-f-mincho)
}
.temp_mv h2 br{
  display: none;
}
.temp_mv h2 span{
  font-size:1.2rem;
  font-family: var(--english-font);
  letter-spacing: 3px;
}
.temp_head{
  margin:120px auto;
  line-height:2;
}
.temp_head img{
  width:70%;
}
.temp_index{
  padding:32px;
  border:1px solid var(--main-blue);
  box-sizing: border-box;
  background-color: rgba(246,250,255,0.5);
}
.temp_index h3{
  font-size:1.8rem;
  font-family: var(--f-f-mincho);
  color:var(--main-blue);
  padding:8px 0;
  border-bottom:1px solid var(--main-blue);
}
.temp_index ul.index_list{
  margin-top:30px;
  list-style: disc;
  padding-left:1.5em;
  line-height: 2;
}
.temp_index ul.index_list li a{
  color:#605C5A;
}
.index_inner{
  font-size:1.4rem;
}
.index_inner li{
  position:relative;
}
.index_inner li::before{
  content:"";
  position:absolute;
  width:5px;
  height:10px;
  border-left:1px solid #303030;
  border-bottom:1px solid #303030;
  bottom:45%;
  left:-1em;
}
/* =============================
template
============================= */
.temp_content_wrapper{
  background-color: #F6FAFF;
  padding-top:100px;
  padding-bottom:100px;
  margin-top:100px;
}
.temp_sec{
  margin:0 auto 120px;
  width:95%;
  max-width: 940px;
}

/* .temp_sec.sec_white{
  background-color: #fff;
  padding:80px;
  box-sizing: content-box;
} */
section.temp_sec:nth-child(even){
  background-color: #fff;
  padding:80px;
  box-sizing: content-box;
}
.temp_sec_head.ta_c{
  text-align: left;
  padding:24px 24px 36px;
  background: url(../images/common/temp_sec_head.jpg) center center no-repeat;
  background-size: cover;
  /* background-color: #e2edfa; */
  box-shadow:  2px 2px 5px 0px rgba(0, 0, 0, 0.3);
  border-radius: 7px;
  position:relative;
}
.temp_sec_head.ta_c::before{
  content:"";
  position:absolute;
  width:2px;
  height:60%;
  background-color: var(--main-blue);
  left:0;
  top:50%;
  transform: translateY(-50%);
}
.temp_sec_head.ta_c::after{
  content:"";
  position:absolute;
  width:20%;
  height:30%;
  top:12px;
  left:12px;
  background: url(../images/common/temp_sec_head_dot.png) center center no-repeat;
  background-size: cover;
  opacity: 0.2;
}
.temp_sec_head span{
  font-size:0.8rem;
  color:var(--main-blue);
  font-family: var(--english-font);
  display: inline-block;
  padding: 5px 10px;
  background-color: #ecf5ff;
  border-radius:3px;
  border-left:1px solid var(--main-blue);
}
/* .temp_sec_head span::after{
  width:100%;
  height:1px;
  background-color: var(--main-blue);
  bottom:0;
  left:0;
} */
.temp_sec_head h3{
  font-size:2rem;
  font-family: var(--f-f-mincho);
  margin:10px auto 0;
  position:relative;
}
.temp_sec_head h3::before,.temp_sec_head h3::after{
  content:"";
  width:36px;
  height:2px;
  position:absolute;
  left:0;
  background-color: var(--main-blue);
  bottom:-7px;
}
.temp_sec_head h3::after{
  opacity: 0.1;
  width:64px;
  left:38px;
}
.temp_sec img{
  margin-top:64px;
  width: 70%;
  max-width:980px;
  height: auto;
  display: block;
}

.sec_inner{
  margin-top:64px;
}
.sec_inner h4{
  font-size:1.5rem;
  padding-bottom:16px;
  position:relative;
  margin-bottom: 40px;
  font-family: var(--f-f-mincho);
  color:var(--main-blue);
  padding-left:8px;
}
.sec_inner h4::before{
  content:"";
  position:absolute;
  width:120px;
  height:3px;
  background:linear-gradient(
    90deg,
    #b88a28 0%,
  #c6dffc 60%,
    var(--main-blue) 100%
  );
  bottom:5px;
  left:0;
  width:100%;
}
/* .sec_inner h4::before{
  content:"";
  position:absolute;
  width:120px;
  height:1px;
  background-color: var(--main-blue);
  bottom:0;
  left:0;
  z-index: 1;
}
.sec_inner h4::after{
  content:"";
  position:absolute;
  width:100%;
  height:1px;
  background-color: var(--main-blue);
  bottom:0;
  left:0;
  opacity: 0.2;
} */

.sec_inner h5{
  font-size:1.1rem;
  padding:5px 12px;
  border-bottom:1px solid rgba(25,119,243,0.5);
  margin-bottom:16px;
  color:var(--main-blue);
  margin-bottom:16px;
  /* color:#fff; */
}
.sec_inner p{
  margin-top:12px;
  line-height: 2;
}
.sec_link{
  margin-top:40px;
}
.sec_link ul{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 24px;
}
.sec_link ul li{
  width:calc((100% - 48px) / 3);
  border-bottom: 1px solid var(--main-font-color);
  padding-bottom:12px;
}
.sec_link ul li a{
  width:100%;
  font-size:1rem;
  color:var(--main-font-color);
  text-align: center;
  display: block;
  position:relative;
}
.sec_link ul li a::after{
  content:"";
  position:absolute;
  width:25px;
  height:25px;
  right:10px;
  top:50%;
  transform: translateY(-50%);
  background: url(../images/index/news_arrow.png) center center no-repeat;
  background-size: cover;
}
.sec_link ul li a span{
  font-size:0.9rem;
  font-family:var(--f-f-mincho)
}
.sec_inner table{
  margin-top:40px;
  width:100%;
}
.sec_inner table thead tr{
  background-color: #F8F8F8;
  border-top:1px solid #D9D9D9;
}
.sec_inner table thead tr th{
  text-align: center;
  padding:16px;
}
.sec_inner table thead tr th:not(:first-child){
  border-left:1px solid #D9D9D9;
}
.sec_inner table tbody tr{
  border-bottom:1px solid #D9D9D9;
}
.sec_inner table tbody tr:first-child{
  border-top:1px solid #D9D9D9;
}
.sec_inner table tbody tr th{
  padding:30px;
  width:220px;
  background-color: #F8F8F8;
  text-align: center;
}
.sec_inner table tbody tr td{
  border-left:1px solid #D9D9D9;
  padding:16px;
}
.sec_inner table tbody tr td a{
  color:#303030;
  text-decoration: underline;
  font-size:1.8rem;
  opacity: 0.9;
}
.temp_card_content{
  padding:24px;
  background-color: #F8F8F8;
}
.temp_card_content.price_content{
  margin-top:12px;
}
.temp_card_content ul{
  display: flex;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.temp_card_content ul{
  margin-top:16px;
}
.temp_card_content ul li{
  width:calc((100% - 16px) / 2);
  background-color: #fff;
  height:80px;
  text-align: center;
  display: flex;
  align-items: center;      /* 縦中央 */
  justify-content: center;  /* 横中央 */
  flex-direction: column;   /* brやspanを縦並びに */
}
.temp_card_content ul li span{
  font-size:1.4rem;
}
.sec_inner dl{
  margin-bottom:60px;
}
.sec_inner dl dt{
  position:relative;
  padding-left:60px;
  font-size:1.5rem;
  font-family: var(--f-f-mincho);
  color:var(--main-blue);
  margin-bottom:66px
}
.sec_inner dl dd{
  margin-top:16px;
  line-height: 2;
}
.sec_inner dl dt::before{
  content:"Q";
  font-family: var(--english-font);
  position:absolute;
  width:40px;
  height:40px;
  line-height: 40px;
  border-radius: 20px;
  color:#fff;
  background-color: var(--main-blue);
  top:50%;
  transform: translateY(-50%);
  left:0;
  text-align: center;
}
.sec_inner dl dt::after{
  content:"";
  position:absolute;
  width:100%;
  height:1px;
  background-color:#3A5264;
  opacity: 0.2;
  left:0;
  bottom:-30px;
}
.sec_inner.flow dl {
  counter-reset: step;
}
.sec_inner.flow dl dt {
  counter-increment: step;
  font-size:1.2rem;
  font-weight:bold;
  color:var(--main-blue);
}
.sec_inner.flow dl dt::before {
  content: counter(step);
}

.sec_inner.flow dl dd{
  padding-bottom:80px;
  position:relative;
}
.sec_inner.flow dl dd::before{
  display: none;
}
.sec_inner.flow dl dd:not(:last-child)::after{
  content:"";
  position:absolute;
  left:50%;
  transform: translateX(-50%);
  bottom:30px;
  border-top:10px solid var(--main-blue);
  border-left:10px solid transparent;
  border-right:10px solid transparent;
}
ul.temp_list{
  padding-left:3em;
  list-style: disc;
  line-height: 2;
}
.sec_inner.temp_access table thead tr th{
  width:calc(100% / 3);
}
.sec_inner.temp_access table tbody tr td{
  text-align: center;
}
.sec_inner table.price_table thead tr th{
  width:55%;
}
ul.sec_list{
  list-style: disc;
  padding:1em;
}
ul.sec_list li{
  font-size:0.9em;
  padding-left:0.5em;
}
/* ----------------------------------
ぱんくず
---------------------------------- */
.breadcrumbs{
  display: flex;
  align-items: center;
  padding:16px;
  font-family: var(--f-f-japanese);
}
.breadcrumbs a{
  color:#222222;
}
.arrow{
  display: block;
  width:7px;
  height:7px;
  border-right:1px solid #222222;
  border-bottom:1px solid #222222;
  margin:0 10px 0 7px;
  transform: rotate(-45deg);
}

/* ----------------------------------
archive
---------------------------------- */
.main_single{
  padding-top:120px;
  padding-bottom:120px;
}
.archive_news{
  margin:60px auto;
  width:100%;
  max-width: 1280px;
  padding:0 3%;
  box-sizing: border-box;
}
.news_head ul{
  display: flex;
  justify-content: flex-end;
}
.news_head ul li{
  padding-left:2em;
  font-size:1.2rem;
  font-family: var(--english-font);
}
.news_head ul li a,
.cp_item a{
  color:#222222;
}
span.archive_thumb{
  display: block;
  width:180px;
  aspect-ratio: 16 / 9;
}
span.archive_thumb span,
span.archive_thumb span img{
  width:100%;
  display: block;
}
.cp_list{
  margin:60px auto;
}
.cp_list li{
  border-bottom:1px solid #dfdfdf;
  font-size:1.4rem;
  padding:1em;
}
.cp_link p{
  font-size:1rem;
  display: flex;
  align-items: center;
  position: relative;
}
.cp_link p img{
  width:100%;
  height:100%;
}
p.view_all a{
  background-color: #74947E;
  color:#fff;
  text-align: center;
  display: block;
  padding-top:16px;
  padding-bottom:16px;
  position:relative;
  width:180px;
  margin:0 0 0 auto;
}
.taxonomy_date,.taxonomy_title{
  display: block;
}
.taxonomy_date{
  text-align: center;
  width:15%;
}
.taxonomy_title{
  text-align: left;
}
.cp_link p::after{
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  right:20px;
  top:43px;
  border-top: solid 1px;
  border-right: solid 1px;
  transform: rotate(45deg);
  color: inherit;
}
/* 投稿記事 */
main.main_single{
  margin:80px auto;
}
.post_title{
  margin:80px auto 0;
}
.post_title h2{
  font-size:20px;
  font-weight:bold;
  background-color: rgba(0,0,0,0.6);
  color:#fff;
  padding:5px 12px;
  box-sizing: border-box;
}
.post_info{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding:7px 5px 0 0;
  font-size:12px;
}
.post_info a{
  display: inline-block;
  text-decoration: underline;
  font-weight: bold;
  color:#ed8599;
}
.post_flex{
  display: flex;
  align-items: flex-start;
  margin-top:60px;
}
.single_content{
  padding-right:5%;
  box-sizing: border-box;
}
.post_flex_content{
  width:75%;
}
.single_content img{
  width:100%;
}
.single_content p{
  margin-top:30px;
  font-size:16px;
}
.post_sidebar{
  width:25%;
  margin-top:30px;
}
/* .sidebar */
.side_title{
  font-family: var(--english-font);
  font-size:16px;
  font-weight:bold;
  padding:10px 5%;
  border:1px solid #4D4D4D;
  box-sizing: border-box;
}
.side_content{
  padding:10px 5%;
  box-sizing: border-box;
  background-color: #efefef;
}
.side_inner{
  margin-bottom:10px;
}
.side_inner .news_title{
  text-align: left;
  border-bottom:1px solid #a0a0a0;
}

.side_inner .news_date,
.side_inner .news_title{
  font-size: 13px;
  color:#4D4D4D;
}
.side_inner .news_title{
  color:#ed8599;
}

.post_content{
  margin:96px auto;
}
/* ----------------------------------
contact
---------------------------------- */
.contact-form.dental-form {
  max-width: 760px;
  margin: 0 auto;
}

.contact-form.dental-form .form-row {
  margin-bottom: 24px;
}

.contact-form.dental-form .form-label {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: #222;
}

.contact-form.dental-form .required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #d94b4b;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  vertical-align: middle;
}

.contact-form.dental-form .form-input,
.contact-form.dental-form .form-select,
.contact-form.dental-form .form-textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  box-sizing: border-box;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form.dental-form .form-input:focus,
.contact-form.dental-form .form-select:focus,
.contact-form.dental-form .form-textarea:focus {
  border-color: #4aa3a3;
  outline: none;
  box-shadow: 0 0 0 3px rgba(74, 163, 163, 0.15);
}

.contact-form.dental-form .form-textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form.dental-form .wpcf7-list-item {
  margin: 0 20px 0 0;
}

.contact-form.dental-form .wpcf7-list-item-label {
  font-size: 16px;
  color: #222;
}

.contact-form.dental-form .privacy-box {
  padding: 20px;
  border: 1px solid #e3e3e3;
  border-radius: 8px;
  background: #f8f8f8;
}

.contact-form.dental-form .privacy-box .wpcf7-list-item {
  margin: 0;
}

.contact-form.dental-form .privacy-box label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.contact-form.dental-form .privacy-box input[type="checkbox"] {
  margin-top: 3px;
}

.contact-form.dental-form .privacy-box span {
  font-size: 15px;
  line-height: 1.8;
  color: #222;
}

.contact-form.dental-form .form-submit {
  text-align: center;
  margin-top: 40px;
}

.contact-form.dental-form .submit-btn,
.wpcf7cp-btns button {
  appearance: none;
  border: none;
  border-radius: 999px;
  background: #4aa3a3;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 18px 48px;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.wpcf7cp-btns{
  display: flex;
  justify-content: center;
}
.wpcf7cp-btns button{
  width:240px;
  text-align: center;
}
.contact-form.dental-form .submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.contact-form.dental-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  font-size: 14px;
  color: #d94b4b;
}

.contact-form.dental-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.7;
}
#wpcf7cpcnf table tr td{
  font-size:1.2rem;
  padding:8px 12px;
}

/* others */
.rpi-slides-root{
  display: none!important;
}
/* トップページドクター下スライダー調整 */
.doctor_deco_slider {
  width: 100vw;
  overflow: hidden;
  position: relative;
  padding:60px 0;
}

.doctor_deco_track {
  display: flex;
  width: max-content;
  animation: doctorSlide 45s linear infinite;
}

.doctor_image_deco_slide {
  width: 240px;
  height: auto;
  flex-shrink: 0;
  display: block;
}

@keyframes doctorSlide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 768px) {
  .doctor_deco_track {
    animation-duration: 35s;
  }

  .doctor_image_deco_slide {
    width: 150px;
  }
}