@charset "utf-8";
/* CSS Document */
* {
  margin: 0;
  padding: 0
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 250px;
}
body {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
  font-size: 20px;
  color: #000000;
  overflow-x: hidden;
}
a {
  text-decoration: none;
}
a:hover {
  opacity: 0.8;
}
ul {
  list-style: none;
}
img {
  max-width: 100%
}
.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.flex02 {
  flex-direction: row-reverse;
}
.h2-ttl {
  font-weight: normal;
}
.h2-ttl .en {
  font-size: 96px;
  color: #E38A8A;
}
.h2-ttl .ja {
  font-size: max(2.8vw , 28px);
  color: #52171B;
}
/*==================================================
ヘッダー
===================================*/
#header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}
.header-wrap {
  display: flex;
  width: 100%;
  margin: 0 auto;
  align-items: flex-start;
}
h1 {
  padding: 15px;
    width: 40%;
}
.header-right {
  width: 50%;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
/*==================================================
グローバルメニュー
===================================*/
#g-nav {
  width: 100%;
  z-index: 999;
  /*最前面へ*/
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  align-items: center;
  background: #5F523F;
}
.fix-nav-wrap {
  width: 100%;
}
#g-nav .header-right {
  width: 40%;
}
#g-nav .header-right .reserve {
  width: 33.3%;
}
#g-nav .header-right .tel {
  background: #6eb7dc;
}
.fix-nav-list:hover {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
#g-nav.fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  background: #5F523F;
}
.nav-menu-wrap {
  width: 100%;
  margin-left: auto;
}
.menu {
  position: relative;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding: 20px 0;
}
.menu > li {
  float: left;
  width: 20%;
  position: relative;
}
.menu > li a {
  display: block;
  color: #FFFFFF;
  font-size: max(1vw , 16px);
  padding: 30px 0.5vw;
    white-space: nowrap;
}
ul.menu__second-level {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
/* floatクリア */
.menu:before, .menu:after {
  content: " ";
  display: table;
}
.menu:after {
  clear: both;
}
.menu {
  /* *zoom: 1; */
}
.menu > li.menu__single {
  position: relative;
  color: #FFFFFF;
}
li.menu__single ul.menu__second-level {
  position: absolute;
  top: 60px;
  width: 350px;
  background: #eff5f6;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  z-index: 99;
}
li.menu__single:hover ul.menu__second-level {
  top: 100px;
  visibility: visible;
  opacity: 1;
  z-index: 99;
}
.menu__second-level li a {
  padding: 10px 0;
  color: #333333;
}


.dropdown__lists {
    transform: scaleY(0);/*デフォルトでは非表示の状態にしておく*/
    transform-origin: center top;/*変形を適応する基準をtopとする*/
    transition: all .3s;/*表示の変化を0.3秒に指定*/
    width: 100%;
    position: absolute;
    top: 90px;
    left: 0;
	z-index: 9999;
}
.menu__single:hover .dropdown__lists {
    transform: scaleY(1);/*Gナビメニューにホバーしたら表示*/
}
.dropdown__list {
    background-color: #E38A8A;
    /*height: 60px;*/
    transition: all .3s;
    position: relative;
}
.dropdown__list:not(:first-child)::before{
    content: "";
    width: 100%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
}
.dropdown__list:hover {
    opacity: 1;
}
.dropdown__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    position: relative;
	font-size: 18px!important;
}
/*.dropdown__list a::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-left: 2px solid #fff;
    transform: rotate(135deg);
    position: absolute;
    right: 15px;
    top: calc(50% - 5px);
}*/

/*==================================================
メインビジュアル
===================================*/
.mv {
  position: relative;
  line-height: 0;
    background: url("../img/m")
}
.mv-ttl {
  position: absolute;
  top: 30%;
  right: 0;
  font-size: max(3.4vw , 32px);
  z-index: 2;
  color: #52171B;
  line-height: 1.5;
}
.mv-ttl span {
  font-size: max(4.2vw , 36px);
  color: #000000;
  letter-spacing: 3px;
}
/*==================================================
trouble
===================================*/
.trouble-ttl {
  position: relative;
  background-image: url("../img/trouble-ttl.jpg");
  background-repeat: no-repeat;
  background-position: center;
  height: 349px;
  text-align: center;
  margin-bottom: 70px;
}
.trouble-ttl p {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: #5F523F;
}
.trouble-ttl span {
  font-size: 32px;
  color: #E38A8A;
}
.trouble-inner {
  background-image: url("../img/trouble-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
    background-size: cover;
  padding: 70px 0 140px;
}
.trouble-inner .flex {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  justify-content: center;
    gap: 20px 0;
}
.trouble-item {
  position: relative;
  background-color: #E38A8A;
  color: #ffffff;
  padding: 7px;
  font-size: 30px;
  width: 386px;
  text-align: center;
  margin: 20px;
}
.trouble-item .number {
  background-image: url("../img/number.png");
  background-repeat: no-repeat;
  width: 94px;
  height: 94px;
  position: absolute;
  font-size: 36px;
  line-height: 2.7;
  top: 0;
  transform: translate(-50%, -50%);
}
.trouble-item .inner {
  border: solid 1px #ffffff;
  padding: 35px 0;
}
.trouble-item02 {
  background-color: #B06D5C;
}
.trouble-item03 {
  background-color: #A2A066;
}
.trouble-item04 {
  background-color: #7E5156;
}
.trouble-item05 {
  background-color: #6B5E4B;
}
.trouble-txt {
  position: relative;
  max-width: 1520px;
  width: 95%;
  margin: 50px auto 0;
  font-size: 50px;
  color: #5F523F;
  text-align: center;
}
.more
{
    text-align: center;
    margin-top: 15px;
    font-size: max(0.9vw , 14px);
    font-weight: 600;
}
span.more 
{
    padding: 5px 10px;
    border: solid 1px #FFFFFF;
}
/*==================================================
message
===================================*/
.message {
  margin-bottom: 200px;
}
.message-ttl {
  text-align: center;
  background-color: #F6F4DF;
  padding: 45px
}
.message-left {
  width: 40%;
  position: relative;
}
.message-left .name {
  text-align: center;
  width: calc(490 / 1920* 100vw);
    max-width: 490px;
  padding: 33px 0;
  background-color: #E38A8A;
  color: #ffffff;
  font-size: max(2vw , 22px);
  position: absolute;
  left: 70%;
  transform: translate(-50%, -50%);
}
.message-left span {
  font-size: max(1.4vw , 16px);
  letter-spacing: 10px;
}
.message-right {
  width: 60%;
}
.message-right .lead {
  color: #F59393;
  font-size: max(3vw , 26px);
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin-top: 100px;
}
.message-right span {
  font-size: max(2vw , 20px)
}
.message-right .txt {
  margin-top: 60px;
  margin-left: 18%;
}
.detail {
  margin-top: 70px;
  margin-left: 18%;
}
.detail-btn {
  font-size: 24px;
  border: solid 1px #707070;
  padding: 30px 40px;
  color: #5F523F;
}
/*==================================================
counseling
===================================*/
.counseling {
  position: relative;
  background-color: #FFF4F4;
  border-bottom: solid 4px #E38A8A;
  padding: 120px 0;
}
.counseling-ttl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  font-weight: normal;
  color: #F59393;
}
.counseling-ttl:before, .counseling-ttl:after {
  border-top: 10px double #52171B;
  content: "";
  width: 100%;
}
.counseling-ttl2 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: normal;
  color: #F59393;
}
.counseling-ttl2:before, .counseling-ttl2:after {
  border-top: 10px double #52171B;
  content: "";
  width: 30%;
}
.counseling-ttl:before {
  margin-right: 1em;
}
.counseling-ttl:after {
  margin-left: 1em;
}
.counseling-ttl2:before {
  margin-right: 1em;
}
.counseling-ttl2:after {
  margin-left: 1em;
}
.counseling-free {
  text-align: center;
  max-width: 660px;
  width: 95%;
  color: #ffffff;
  font-size: 40px;
  padding: 30px 0;
  background-color: #E38A8A;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.counseling-inner {
  max-width: 1555px;
  width: 95%;
  margin: 75px auto 0;
}
.counseling-left {
  width: 45%;
}
.counseling-box {
  border: solid 1px #000000;
  background-color: #ffffff;
  padding: 50px 1vw 15px;
}
.counseling-box02 {
  padding: 20px;
}
.counseling-list {
  line-height: 1.7;
}
.counseling-list li {
  background: url("../img/list-mark.png");
  background-repeat: no-repeat;
  height: 38px;
  padding-left: 10%;
  padding-bottom: 35px;
  font-size: 24px;
}
.counseling-right {
  width: 45%;
  text-align: center;
}
.counseling-right .txt01 {
  font-size: 24px;
  margin-bottom: 10px;
}
.counseling-right .txt02 {
  background-color: #E38A8A;
  color: #ffffff;
  max-width: 490px;
  padding: 5px 0;
  margin: 10px auto;
}
.contact-btn {
  cursor: pointer;
  padding: 5px 0;
  max-width: 585px;
  width: 95%;
  border: solid 1px #707070;
  background-color: #ffffff;
  margin: 20px auto;
}
.web-btn {
  cursor: pointer;
  max-width: 585px;
  width: 95%;
  padding: 16px 0;
  border: solid 1px #707070;
  background-color: #ffffff;
  margin: 20px auto;
  font-size: 40px;
}
.web-btn a {
  display: block;
  color: #52171B;
}
/*==================================================
medical
===================================*/
.medical-ttl {
  text-align: center;
  background-color: #E9E8E7;
  padding: 45px 0;
}
.medical-ttl .en {
  font-size: max(3.2vw , 30px);
}
.medical .lead{
  color: #F59393;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-top: 100px;
}
.medical .flex{
  justify-content: center;
  margin: 50px 0 100px;
}
.medical .features-box{
  width: 20%;
  margin: 0 auto;
}
.medical-box {
  position: relative;
  max-width: 1700px;
  width: 100%;
  height: 540px;
  margin: 145px 0 400px auto;
  background-color: #FFF4F4;
}
.medical-box::before {
  content: url("../img/line-bg.png");
  position: absolute;
  bottom: -37%;
  width: 100%;
  overflow: hidden;
}
.medical-box .number {
  color: #ffffff;
  font-size: 190px;
  line-height: 1;
  position: absolute;
  right: -15%;
  bottom: -10%;
  z-index: -1;
}
.medical-left {
  width: 50%;
  margin-top: -3%;
  margin-left: -5%;
}
.medical-right {
  position: relative;
  width: 40%;
  margin-right: 10%;
  padding-top: 40px;
  z-index: 1;
}
.medical-right .txt01 {
  font-size: 30px;
  color: #E38A8A;
  text-align: center;
}
.medical-right .txt02 {
  font-size: 38px;
  color: #52171B;
  text-align: center;
  margin-bottom: 20px;
}
.medical-box02 {
  margin-right: auto;
  margin-left: 0;
}
.medical-box02 .flex {
  flex-direction: row-reverse;
}
.medical-box02 .medical-left {
  margin-left: 0;
  margin-right: -9%;
}
.medical-box02 .medical-right {
  margin-left: 7%;
  margin-right: 0;
}
.medical-btn {
  min-width: 320px;
    display: block;
    margin: 50px auto;
    text-align: center
}
.medical-btn .detail-btn {
  padding: 20px 70px;
  background-color: #ffffff;
}
/*==================================================
flower
===================================*/
.flower {
  position: relative;
  background-image: url("../img/flower-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  height: 605px;
  text-align: center;
}
.flower p {
  width: 100%;
  font-size: 60px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #ffffff;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
}
/*==================================================
reason
===================================*/
.reason {
  margin-bottom: 240px;
}
.reason-ttl {
  text-align: center;
  /*background-color: #f2f2f2;
  padding: 45px 0;*/
}
.reason-ttl .en {
  font-size: 60px;
}
.reason .flex {
  margin-top: 110px;
}
.reason-left {
  width: 50%;
  line-height: 0;
}
.reason-left img {
    height: 100%;
    object-fit: cover;
}
.reason-right {
  width: 50%;
  max-height: 635px;
}
.reason-box {
  padding: 0 13%;
  background-color: #E38A8A;
  color: #ffffff;
  height: 100%;
}
.reason-box .txt01 {
  font-size: 80px;
  padding-top: 50px;
  text-align: center;
}
.reason-box .txt02 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 30px;
}
.reason-box02 {
  background-color: #AF6C59;
}
.reason-box03 {
  background-color: #A2A066;
}
.mb3
{
    margin-bottom: 30px;
}
/*==================================================
footer
===================================*/
.f-left {
  width: 50%;
  padding: 110px 0;
  background-color: #FFF4F4;
  text-align: center;
}
.f-left .txt01 {
  font-size: 24px;
  margin-bottom: 10px;
}
.f-left .txt02 {
  background-color: #E38A8A;
  color: #ffffff;
  max-width: 490px;
  padding: 5px 0;
  margin: 10px auto;
}
.f-right {
  width: 49.8%;
}
.f-right iframe {
  height: 100%;
}
.f-nav {
  padding: 70px 0;
  background-color: #F1ECCE;
  justify-content: space-around;
}
.f-ttl {
  font-size: 60px;
  color: #E38A8A;
  border-bottom: solid 1px #E38A8A;
}
.site-map {
  text-align: center;
  width: 40%;
}
.f-medical {
  text-align: center;
  width: 40%;
}
.f-nav ul {
  font-size: 24px;
  text-align: left;
  margin-left: 5%;
}
.f-nav li {
  margin-top: 30px;
}
.f-nav a {
  color: #000000;
}
.of-bunner {
  margin: 30px auto;
  text-align: center;
}
.of-bunner a {
  display: block;
  background-color: #E38A8A;
  color: #ffffff;
  max-width: 585px;
  width: 95%;
  padding: 20px 0;
  margin: 0 auto;
  font-size: 40px;
  line-height: 1;
}
.of-bunner span {
  font-size: 24px;
}
.sp {
  display: none;
}
/*==================================================
ページトップボタン
===================================*/
#page_top {
  position: fixed;
  right: 20px;
  bottom: 30px;
  z-index: 9;
}
#page_top a {
  position: relative;
  display: block;
  text-decoration: none;
}
/*==================================================
下層ページ
===================================*/
.sub-mv {
  line-height: 0;
  position: relative;
  background-image: url(../img/sub/mv.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 80vh;
}
.sub-mv_ttl {
  text-align: center;
  color: #ffffff;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  line-height: 2;
}
.sub-mv_ttl .ja {
  font-size: 56px;
}
.sub-mv_ttl .en {
  font-size: 24px;
}
.content01 {
  text-align: center;
  margin: 200px 0 300px;
}
.content01 .inner {
  max-width: 1550px;
  width: 90%;
  margin: 0 auto;
}
.sub-ttl01 {
  font-size: 48px;
  margin-bottom: 50px;
  font-weight: normal;
  position: relative;
  border-bottom: solid 1px #000000;
}
.sub-ttl01::before {
  content: url("../img/sub/flower.png");
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.content01 .flex {
  margin-bottom: 60px;
}
.flex.denture_flex
{
    justify-content: center;
    gap: 20px;
}
.content01-left {
  width: 45%;
  text-align: left;
}
.content01-left .lead {
  font-size: 35px;
  margin-bottom: 50px;
}
.content01-left .lead span {
  color: #F59393;
}
.content01-right {
  width: 50%;
}
.concept .treatment-box{
	margin-bottom: 30px;
}
.concept .txt-box{
	max-width: 1320px;
    width: 90%;
    margin: 50px auto;
}
.concept .txt01{
	text-align: center;
    font-size: 32px;
    margin: 40px;
}
.concept .txt02{
	text-align: left;
}
.concept .risk-box{
    width: 65%;
    margin: 50px auto;
    padding: 60px 120px;
    background-color: #FFF4F4;
}
.concept .risk-list{
    list-style: disc;
    text-align: left;
}
.concept .flex{
	margin-top: 50px;
}
.concept .price-box{
	width: 24%;
}
.qa_box{
	margin-bottom: 30px;
}
.question_bg{
	background-color: #E38A8A;
	color: #fff;
	font-weight: 500;
	font-size: 30px;
	padding: 10px 20px;
	text-align: left;
}
.answer_bg{
	padding: 20px;
	text-align: left;
}
.situation {
  background-color: #FFF4F4;
  padding: 75px 0;
  margin: 60px auto;
}
.situation .inner {
  max-width: 1450px;
  width: 90%;
  margin: 0 auto;
  background-color: #ffffff;
  border: solid 1px #000000;
  padding: 50px;
}
.situation .lead {
  color: #ffffff;
  background-color: #F59393;
  transform: skewX(-15deg);
  padding: 17px 0;
  text-align: center;
  font-size: 28px;
}
.situation .list {
  width: 60%;
  margin: 50px auto 0;
  padding-left: 5%;
  list-style: disc;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
.situation .list li {
  width: 45%;
  margin-left: 5%;
}
.situation .list li::marker {
  color: #F59393;
}
.features {
  margin-bottom: 70px;
}
.features .inner {
  max-width: 1550px;
  width: 90%;
  margin: 0 auto;
}
.sub-ttl02 {
  text-align: center;
  font-size: 40px;
  color: #ffffff;
  padding: 13px 0;
  background: linear-gradient(-4deg, #E38A8A 0%, #E38A8A 50%, #F59393 50%, #F59393 100%);
}
.features .flex {
  justify-content: center;
}
.features .txt-box {
  max-width: 1320px;
  width: 90%;
  margin: 50px auto;
}
.features .txt-box .txt01 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}
.features .txt-box .txt02 {
  text-align: left;
}
.features-box {
  width: 30%;
  margin-right: 3%;
  text-align: left;
}
.features-box .ttl02 {
  text-align: center;
  color: #ffffff;
  background-color: #E38A8A;
  font-size: max(1.6vw , 18px);
  padding: 20px 0;
  margin: -9px 0 25px;
}
.fee {
  margin-bottom: 120px;
}
.fee .inner {
  max-width: 1550px;
  width: 90%;
  margin: 0 auto;
}
.fee-tbl {
  text-align: left;
  border: solid 1px #B3B3B3;
  border-collapse: collapse;
  width: 80%;
  margin: 60px auto 20px;
}
.fee-tbl th {
  width: 60%;
  padding: 20px;
  color: #ffffff;
  background-color: #E38A8A;
  border-bottom: solid 1px #FFFFFF;
}
.fee-tbl td {
  padding: 20px;
  border-bottom: solid 1px #B3B3B3;
}
.content01 .note {
  width: 80%;
  margin: 0 auto;
  text-align: left;
}
.payment {
  background-image: url("../img/sub/payment-bg.jpg");
  background-repeat: no-repeat;
  height: 772px;
  margin-bottom: 165px;
  padding-top: 100px;
  text-align: center;
}
.payment p {
  font-size: 36px;
  line-height: 2.5;
  color: #ffffff;
}
.payment .flex {
  max-width: 1550px;
  width: 95%;
  margin: 40px auto 0;
}
.payment-box {
  position: relative;
  width: 24%;
}
.payment-box p {
  width: 100%;
  font-size: 28px;
  line-height: 1;
  color: #F59393;
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translate(-50%, -50%);
}
.risk .inner {
  text-align: center;
  max-width: 1550px;
  width: 90%;
  margin: 0 auto;
}
.risk-box {
  width: 65%;
  margin: 100px auto 0;
  padding: 60px 120px;
  background-color: #FFF4F4;
}
.risk-box .risk-list {
  list-style: disc;
  text-align: left;
}
.counseling-sub {
  text-align: center;
  margin-bottom: 150px;
}
.counseling-sub .txt01 {
  color: #F59393;
  font-size: 32px;
}
.counseling-sub .flex {
  margin: 30px 0;
}
.counseling-sub .counseling-inner {
  margin-top: 20px;
}
.counseling-sub .pentagon-box {
  position: relative;
  width: 25%;
  background-image: url("../img/sub/counseling01.png");
  background-repeat: no-repeat;
  background-position: center;
  height: 360px;
    background-size: contain;
}
.counseling-sub .pentagon-box:nth-child(even) {
  background-image: url("../img/sub/counseling02.png");
}
.counseling-sub .pentagon-box p {
  color: #ffffff;
  font-size: 24px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
    width: 95%;
}
.kinds {
  margin-bottom: 80px;
}
.kinds-ttl {
  text-align: center;
  max-width: 1550px;
  width: 90%;
  margin: 0 auto 80px;
}
.kinds-content {
  background-color: #FFF4F4;
  padding: 80px 0 20px;
}
.kinds-content .inner {
  max-width: 1550px;
  width: 90%;
  margin: 0 auto;
}
.kinds-left {
  width: 65%;
}
.kinds-left .ttl {
  font-size: 40px;
  font-weight: normal;
  border-bottom: solid 1px #000000;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.kinds-right {
  width: 30%;
}
.kinds-detail {
  text-align: center;
}
.kinds-detail a {
  display: block;
  max-width: 680px;
  margin: 50px auto 80px;
  font-size: 24px;
  border: solid 1px #707070;
  padding: 30px 0;
  color: #5F523F;
  background-color: #ffffff;
}
.comparison {
  margin-bottom: 150px;
}
.comparison-tbl {
  text-align: left;
  border: solid 1px #9F5065;
  border-collapse: collapse;
  width: 80%;
  margin: 60px auto 20px;
}
.comparison-tbl thead th {
  background-color: #FFF4F4;
  color: #000000;
  border: solid 1px #9F5065;
}
.comparison-tbl .blank {
  width: 25%;
}
.comparison-tbl .bg-glay {
  background-color: #F2F2F2;
}
.comparison-tbl th {
  text-align: center;
  padding: 20px 50px;
  color: #ffffff;
  background-color: #E38A8A;
  border: solid 1px #9F5065;
}
.comparison-tbl td {
  padding: 20px;
  border: solid 1px #9F5065;
}
.treatment {
  text-align: center;
  margin-bottom: 120px;
}
.treatment .inner {
  max-width: 1550px;
  width: 90%;
  margin: 0 auto;
}
.treatment-box {
  background-color: #FFF4F4;
  border-bottom: solid 9px #F59393;
  padding: 50px;
}
.treatment-left {
  width: 65%;
  text-align: left;
}
.treatment-left .ttl {
  position: relative;
  font-size: 24px;
  margin-bottom: 30px;
  padding-left: 7%;
}
.treatment-left .ttl span {
  position: absolute;
  top: 18px;
  left: 20px;
  transform: translate(-50%, -50%);
  text-align: center;
  display: block;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background-color: #F59393;
  border-radius: 25px;
  line-height: 2;
}
.treatment-right {
  width: 30%;
}
.dli-caret-down {
  display: inline-block;
  vertical-align: middle;
  color: #F59393;
  line-height: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent;
  border-width: 1em 1.5em;
  border-top-color: currentColor;
  border-bottom: 0;
  margin: 30px auto;
}
.promise {
  text-align: center;
  margin: 200px 0;
}
.ttl-frame {
  text-align: center;
  max-width: 1550px;
  width: 90%;
  margin: 0 auto;
}
.promise-box {
  background-color: #FFF4F4;
  padding: 200px 0 50px;
}
.promise-box .inner {
  max-width: 1550px;
  width: 90%;
  margin: 0 auto;
}
.promise-item {
  position: relative;
  width: 23%;
  background-color: #ffffff;
  padding: 15px 0;
  margin-bottom: 80px;
}
.promise-number {
  background-image: url("../img/sub/clinic-nb.png");
  background-repeat: no-repeat;
  width: 101px;
  height: 101px;
  position: absolute;
  transform: translate(-50%, -50%);
  font-size: 48px;
  color: #ffffff;
  line-height: 2.2;
}
.promise-item .inner {
  text-align: center;
  border: solid 1px #E38A8A;
  height: 200px;
  padding-top: 60px;
  font-size: 24px;
}
.promise-item .txt01 {
  color: #E38A8A;
  margin-bottom: 20px;
}
.pickup .reason-right {
  max-height: 750px;
}
.pickup .reason-box .txt02 {
  padding-top: 80px;
}
.pickup .reason-box .txt03 {
  padding-bottom: 80px;
}
.pickup .reason-box {
  position: relative;
}
.pickup .reason-box::before, .pickup .reason-box::after {
  content: '';
  width: 30%;
  height: 30%;
  position: absolute;
  display: inline-block;
}
.pickup .reason-box::before {
  border-left: solid 1px #ffffff;
  border-top: solid 1px #ffffff;
  top: 20px;
  left: 20px;
}
.pickup .reason-box::after {
  border-right: solid 1px #ffffff;
  border-bottom: solid 1px #ffffff;
  bottom: 20px;
  right: 20px;
}
.sub-clinic {
  margin-top: 200px;
}
.message .inner {
  max-width: 1550px;
  width: 90%;
  margin: 100px auto 0;
}
.message-right .txt02 {
  margin-left: 18%;
}
.message-right .txt03 {
  text-align: left;
  margin-right: 5%;
}
.content02 .message-left {
  width: 50%;
}
.content02 .message-right {
  width: 50%;
}
/*.sub-clinic .menu {
    margin-top: 0px;
    margin-right: 0px;
    margin-bottom: 30px;
    background-image: url(../img/temp/bg_menuline.png);
    background-repeat: no-repeat;
    min-height: 182px;
    margin-left: 0px;
}
.sub-clinic .menu img {
    float: left;
}
.sub-clinic .menu .m_title {
    font-size: 20px;
    padding-top: 40px;
    font-weight: bold;
}
.sub-clinic .menu p {
  margin-left: 200px;
  width: 390px;
  font-size: 16px;
}
.sub-clinic .cf:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    width: 100%;
    height: 0;
}*/
/*==================================================
scroll_up ｜下から上へ出現
===================================*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
/*==================================================
スライダー
===================================*/
#swiper1 .swiper-slide img {
  height: auto;
  width: 100%;
}
.slider-thumbnail .swiper-slide {
  opacity: .5;
  transition: opacity .5s;
  width: calc(100% / 3);
  cursor: pointer;
}
.slider-thumbnail .swiper-slide.swiper-slide-thumb-active {
  opacity: 1;
}
/* レイアウトのためのスタイル */
.swiper {
  max-width: 1200px;
  width: 100%;
  line-height: 0;
}
.swiper-slide img {
  height: auto;
  width: 100%;
}
.slider-thumbnail {
  margin: 50px 0 70px;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev:after, .swiper-button-next:after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "" !important;
  height: 50px;
  margin: auto;
  width: 50px;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev:after {
  background-image: url("../img/left-arrow.png") !important;
}
/* 次への矢印カスタマイズ */
.swiper-button-next:after {
  background-image: url("../img/right-arrow.png") !important;
}
/*==================================================
レスポンシブ調整
===================================*/
@media (max-width: 1536px) {
  .medical-box02 .medical-left {
    margin-right: 0;
  }
  .reason-box .txt01 {
    font-size: 70px;
    padding-top: 30px;
  }
  .reason-box .txt02 {
    font-size: 30px;
  }
  .counseling-sub .pentagon-box p {
    font-size: 22px;
  }
}
@media (max-width: 1024px) {
  body {
    font-size: 18px;
  }
  .header-right {
    text-align: right;
  }
  .header-right img {
    /*width: 70%;*/
  }
.sub-mv {
  height: 50vh;
}
  .trouble-item {
    width: 300px;
    font-size: 24px;
  }
  .trouble-txt {
    margin-top: 50px;
    font-size: 38px;
  }
  .message-left {
    width: 100%;
  }
  .message-right {
    width: 100%;
    margin-top: 50px;
  }
  .detail {
    margin-left: 0;
    text-align: center;
  }
  .counseling-left {
    width: 100%;
    margin-bottom: 50px;
  }
  .counseling-right {
    width: 100%;
  }
  .medical-ttl .en {
    font-size: 38px;
  }
  .medical .lead{
    font-size: 35px;
  }
  .medical-left {
    width: 40%;
  }
  .medical-right {
    width: 50%;
    height: 450px;
  }
  .medical-right .txt01 {
    font-size: 20px;
  }
  .medical-right .txt02 {
    font-size: 30px;
  }
  .reason-box {
    padding: 0 3%;
  }
  .reason-box .txt01 {
    font-size: 34px;
    padding-top: 10px;
  }
  .reason-box .txt02 {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .situation .inner {
    padding: 20px;
  }
  .situation .lead {
    width: 95%;
    margin: 0 auto;
  }
  .fee-tbl {
    width: 100%;
  }
  .content01 .note {
    width: 100%;
  }
  .payment-box p {
    font-size: 22px;
  }
  .features-box .ttl02 {
    font-size: 22px;
  }
  .situation .list {
    width: 85%;
  }
  .counseling-sub .pentagon-box {
    width: 50%;
  }
  .treatment-left .ttl {
    padding-left: 10%;
  }
  .promise-item .inner {
    height: 150px;
    font-size: 18px;
  }
  .pickup .reason-box {
    padding: 0 10%;
  }
  .pickup .reason-box .txt02 {
    padding-top: 60px;
  }
  .message-right .txt02 {
    margin-left: 0;
    margin-top: 100px;
  }
  .content02 .message-left {
    width: 100%;
  }
  .content02 .message-right {
    width: 100%;
    margin-top: 150px
  }
}
@media (max-width: 834px) {
    .menu {
  flex-wrap: wrap;
  padding: 15px 0;
        justify-content: center
}
  .mv-ttl {
    font-size: 26px;
  }
  .mv-ttl span {
    font-size: 28px;
  }
  .menu > li a {
    font-size: 15px;
      padding: 15px 0.5vw;
  }
    
    .menu > li {
  text-align: center;
  width: 22%;
}
  .dropdown__list a {
	font-size: 15px!important;
  }
  .trouble-txt {
    margin-top: 70px;
    font-size: 30px;
  }
  .message-left .name {
    left: 68%;
  }
  .medical .lead{
    font-size: 30px;
  }
  .flower p {
    font-size: 50px;
  }
  .reason-ttl .en {
    font-size: 50px;
  }
  .reason-left {
    width: 100%;
  }
  .reason-right {
    width: 100%;
  }
  .reason-box {
    padding: 3%;
  }
  .f-left {
    width: 100%;
    margin-bottom: 50px;
  }
  .f-right {
    width: 100%;
  }
  .content01-left {
    width: 100%;
    margin-bottom: 50px;
  }
  .content01-right {
    width: 100%;
  }
  .concept .price-box{
	width: 49%;
  }
  .situation .list {
    width: auto;
    padding-left: 5%;
    margin-top: 30px;
  }
  .features-box {
    width: 47%;
    margin-bottom: 50px;
  }
  .payment {
    background-size: cover;
    height: auto;
    padding: 50px 0;
  }
  .payment p {
    font-size: 24px;
    line-height: 2;
    bottom: 3%;
  }
  .payment-box {
    width: 49%;
  }
  .kinds-left {
    width: 100%;
    margin-bottom: 50px;
  }
  .kinds-right {
    width: 77%;
    margin: 0 auto;
  }
  .comparison-tbl {
    width: 90%;
  }
  .treatment-left {
    width: 100%;
    margin-bottom: 50px;
  }
  .treatment-right {
    width: 100%;
  }
  .promise-item {
    width: 47%;
  }
  .pickup .reason-right {
    height: 400px;
  }
  .promise-box {
    padding: 100px 0 0px
  }
  .promise-number {
    background-size: contain;
    width: 70px;
    font-size: 33px;
    top: 30px;
  }
  .promise-item .inner {
    font-size: 16px;
    padding-top: 35px;
  }
  .medical .features-box{
  width: 45%;
  margin: 0 auto;
  }
}
@media (max-width: 520px) {
  body {
    font-size: 16px;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block;
  }
    .sub-mv {
  height: 48vh;
}
  .hamb {
    position: fixed;
    cursor: pointer;
    z-index: 300;
    right: 10px;
    top: 10px;
    width: 65px;
    height: 65px;
    background-color: #52171B;
  }
  .black-bg ul {
    width: 300px;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
  }
  .black-bg ul li {
    text-align: center;
    padding: 3px 0;
    margin-bottom: 5px;
  }
  .black-bg ul li:last-child {
    border-bottom: none;
    /*margin-top: 40px;*/
  }
  .black-bg ul li a {
    color: #52171B;
    font-size: 20px;
    font-weight: bold;
    display: block;
    text-decoration: none;
  }
  .black-bg .bg-clr {
    background-color: #E38A8A;
  }
  .black-bg .bg-clr a {
    color: #ffffff;
  }
  .line {
    position: absolute;
    left: 23%;
    width: 35px;
    height: 3px;
    background-color: #ffffff;
    top: 30%;
  }
  .line:nth-child(2) {
    top: 45%;
    left: 23%;
  }
  .line:nth-child(3) {
    top: 60%;
    left: 23%;
  }
  .hamb-text {
    position: absolute;
    left: 22%;
    bottom: 15%;
    font-size: 12px;
    color: #ffffff;
  }
  .black-bg {
    position: fixed;
    background: #FFF4F4;
    top: 0;
    right: -450px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    overflow: auto;
    z-index: 10;
  }
  .black-bg.open {
    opacity: 1;
    visibility: visible;
    right: 0;
  }
  #hamb.active .line {
    background-color: #ffffff;
  }
  /*アニメーション*/
  .black-bg {
    transition: opacity 0.35s, visibility 0.35s, width 0.35s;
  }
  #hamb.active .line:nth-child(1) {
    transform: translateY(10px) translateX(0) rotate(45deg);
  }
  #hamb.active .line:nth-child(2) {
    opacity: 0;
    background: #FFF;
  }
  #hamb.active .line:nth-child(3) {
    transform: translateY(-8px) translateX(0) rotate(-45deg);
  }
  .animation {
    transition: all .6s;
  }
  h1 {
    padding: 10px;
    width: 70%;
  }
  .mv-ttl {
    top: 50%;
    font-size: 22px;
  }
  .mv-ttl span {
    font-size: 24px;
  }
  .trouble-inner .flex {
    margin-top: 125px;
  }
  .trouble-ttl p {
    font-size: 24px;
  }
  .trouble-ttl span {
    font-size: 18px;
  }
  .trouble-ttl {
    background-size: cover;
    height: 177px;
    margin-bottom: 40px;
  }
  .trouble-item .number {
    background-image: url("../img/sp/number.png");
    width: 48px;
    height: 48px;
    font-size: 19px;
  }
  .trouble-item {
    width: 163px;
    font-size: 16px;
    margin: 13px 5px;
  }
  .trouble-item .inner {
    padding: 12px 0;
  }
  .trouble-inner {
    background-image: url("../img/sp/trouble-bg.jpg");
    height: 594px;
  }
  .trouble-txt {
    margin-top: 60px;
    font-size: 18px;
	font-weight: 700;
  }
  .h2-ttl .en {
    font-size: 40px;
  }
  .h2-ttl .ja {
    font-size: 18px;
  }
  .message-left .name {
    width: 270px;
    font-size: 22px;
  }
  .message-left span {
    font-size: 16px;
    letter-spacing: 5px;
  }
  .message-right .lead {
    font-size: 23px;
    line-height: 1.5;
  }
  .message-right {
    padding: 0 5%;
  }
  .message-right span {
    font-size: 18px;
  }
  .message-right .txt {
    margin-top: 30px;
    margin-left: 0;
  }
  .counseling-free {
    font-size: 23px;
    padding: 14px 0;
  }
  .counseling-ttl {
    font-size: 30px;
  }
  .counseling-list li {
    background: url("../img/sp/list-mark.png");
    background-repeat: no-repeat;
    height: 22px;
    font-size: 16px;
  }
  .counseling-box {
    padding: 30px 30px 0px;
  }
  .counseling-right .txt01 {
    font-size: 16px;
  }
  .contact-btn a {
    display: inline-block;
  }
  .web-btn {
    font-size: 22px;
  }
  .medical-ttl .en {
    font-size: 26px;
  }
  .medical .lead{
    font-size: 20px;
    margin-top: 50px;
  }
  .medical-box {
    height: auto;
    margin-bottom: 330px;
  }
  .medical-box::before {
    bottom: -28%;
  }
  .medical-left {
    width: 90%;
    margin: -8% auto 0;
  }
  .medical-right {
    width: 90%;
    margin: 0 auto 50px;
    height: 370px;
    padding-top: 20px;
  }
  .medical-box .number {
    font-size: 130px;
    right: -5%;
    bottom: -15%;
  }
  .medical-btn {
    bottom: -45%;
  }
  .medical-box02 .medical-left {
    margin: -8% auto 0;
  }
  .medical-box02 .medical-right {
    margin: 0 auto 50px;
  }
  .medical-right .txt02 {
    font-size: 28px;
  }
  .flower {
    background-image: url("../img/sp/flower-bg.jpg");
    height: 215px;
  }
  .flower p {
    font-size: 22px;
  }
  .h2-ttl .en {
    font-size: 26px;
  }
  .reason {
    margin-bottom: 150px;
  }
  .reason .flex {
    margin-top: 70px;
  }
  .f-left {
    width: 90%;
    margin-bottom: 0;
    padding: 60px 5%;
  }
  .f-left .txt01 {
    font-size: 22px;
  }
  .f-right {
    padding: 130px 0;
  }
  .site-map {
    width: 90%;
    margin-bottom: 50px;
  }
  .f-medical {
    width: 90%;
  }
  .of-bunner a {
    font-size: 26px;
  }
  .of-bunner span {
    font-size: 16px;
  }
  .f-ttl {
    font-size: 36px;
  }
  .f-nav ul {
    font-size: 18px;
  }
  #page_top {
    right: 10px;
    bottom: 130px;
    width: 57px;
  }
  .sub-mv_ttl .ja {
    font-size: 34px;
  }
  .content01 {
    margin: 100px 0;
  }
  .concept .risk-box{
    width: 70%;
    margin: 30px auto;
    padding: 20px 50px;
  }
  .question_bg{
	font-size: 20px;
  }
  .sub-ttl01 {
    font-size: 26px;
  }
  .sub-ttl01::before {
    top: -55%;
  }
  .content01-left .lead {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .situation .inner {
    width: 80%;
  }
  .situation .lead {
    font-size: 20px;
  }
  .situation .list {
    margin-top: 20px;
  }
  .situation .list li {
    width: 100%;
  }
  .sub-ttl02 {
    font-size: 30px;
  }
  .features .txt-box .txt01 {
    text-align: left;
    font-size: 24px;
    margin-bottom: 20px;
  }
  .features .txt-box {
    margin: 30px auto;
    text-align: left;
  }
  .features-box {
    width: 100%;
    margin-right: 0;
  }
  .payment {
    padding: 50px 20px;
  }
  .payment p {
    font-size: 18px;
  }
  .risk-box {
    width: 70%;
    margin: 30px auto 0;
    padding: 20px 50px;
  }
  .counseling-sub .txt01 {
    font-size: 20px;
  }
  .counseling-sub .pentagon-box {
    background-size: contain;
    height: 210px;
  }
  .counseling-sub .pentagon-box p {
    font-size: 16px;
  }
  .kinds-left .ttl {
    font-size: 24px;
  }
  .kinds-detail a {
    font-size: 16px;
    padding: 15px 0;
  }
  .treatment-box {
    padding: 20px;
  }
  .treatment-left .ttl {
    padding-left: 17%;
  }
  .comparison-tbl {
    width: 900px;
    margin: 30px;
  }
  .pickup .reason-right {
    height: 500px;
  }
  .reason-box .txt02 {
    font-size: 20px;
  }
    .detail-btn {
  font-size: 18px;
  border: solid 1px #707070;
  padding: 25px 35px;
  color: #5F523F;
}
}
@media (max-width: 375px) {
  .mv-ttl {
    font-size: 20px;
  }
  .mv-ttl span {
    font-size: 21px;
  }
  .trouble-item {
    width: 160px;
    font-size: 14px;
  }
  .trouble-txt {
    margin-top: 95px;
    font-size: 16px;
	font-weight: 700;
  }
  .message-left .name {
    left: 56%;
  }
  .message-right .lead {
    font-size: 19px;
  }
  .message-right span {
    font-size: 16px;
  }
  .detail-btn {
    padding: 30px 10px;
  }
  .medical-right .txt01 {
    font-size: 17px;
  }
  .medical-right .txt02 {
    font-size: 24px;
  }
}
@media (max-width: 320px) {
  .mv-ttl {
    font-size: 19px;
  }
  .mv-ttl span {
    font-size: 20px;
  }
  .trouble-ttl p {
    font-size: 20px;
  }
  .trouble-item {
    width: 135px;
    font-size: 12px;
  }
  .trouble-txt {
    margin-top: 105px;
    font-size: 14px;
  }
  .medical-right {
    height: 395px;
  }
  .medical-right .txt02 {
    font-size: 22px;
  }
  .payment-box {
    width: 100%;
  }
  .risk-box {
    width: 65%;
  }
  .sub-mv_ttl .ja {
    font-size: 32px;
  }
  .counseling-sub .txt01 {
    font-size: 18px;
  }
  .counseling-sub .pentagon-box p {
    font-size: 14px;
  }
  .treatment-left .ttl {
    padding-left: 20%;
  }
  .promise-item {
    width: 100%;
  }
  .reason-box .txt02 {
    font-size: 17px;
  }
}

/* ///////////////20250704/////////////// */
.txt-center{
  text-align: center;
}

/* 2カラムの親 */
.clinic-menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 5%; /* 行間・列間の調整 */
  /*justify-content: center;*/
  justify-content: space-between;
}

/* 1アイテム（画像＋テキスト横並び） */
.clinic-menu-item {
  width: 45%;         /* 2カラム用 */
  margin-bottom: 40px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  min-width: 320px;
}

/* 画像 */
.clinic-menu-item img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  margin-right: 32px;
  border-radius: 8px;
}

/* テキスト部分 */
.clinic-menu-item .text-box {
  flex: 1;
}

.clinic-menu-item .m_title {
  font-size: 1.2em;
  font-weight: bold;
  margin-bottom: 8px;
  border-bottom: 1px solid #000;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .clinic-menu-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .clinic-menu-item img {
    margin: 0 auto;
    margin-bottom: 16px;
  }
}

.mt10{
  margin-top: 100px;
}
.mt5{
  margin-top: 50px;
}
.left
{
    text-align: left!important;
}
.detail-btn2 {
  border: solid 1px #707070;
  padding: 20px 40px;
  color: #5F523F;
}
.price_table {
  text-align: left;
  border: solid 1px #9F5065;
  border-collapse: collapse;
  width: 100%;
  margin-bottom:20px;
}
.price_table th {
  padding: 20px 15px;
  color: #ffffff;
  background-color: #E38A8A;
  border: solid 1px #9F5065;
    width: 50%;
}
.price_table td {
  padding: 20px;
  border: solid 1px #9F5065;
}