@charset "UTF-8";


/* ========================================================
  
  common

======================================================== */

/*---------------------------------------------------------
 m_nav_area
---------------------------------------------------------*/
.m_nav_area {
	position: absolute;
	padding-bottom: 10px;
	inset: auto 0 0 0;
}


/* ========================================================
  
  FV

======================================================== */
.fv_area {
	width: 100vw;
	height: 100vh;
	min-height: min(calc(100vw * 0.6), 780px);
}
.fv_area::before {
	position: absolute;
	content: "";
	background: linear-gradient(to top, rgba(255,255,255,1), rgba(255,255,255,0));
	width: 100%;
	height: 200px;
	inset: auto 0 0 0;
	z-index: 1;
}

/* m_wave */
.m_wave {
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
	overflow: hidden;
}
.m_wave > div {
	position: absolute;
	width: 100%;
	height: 100%;
	background: url(../images/top/m-wave01@2x.png) no-repeat left bottom;
	background-size: 100% auto;
	inset: 0;
	animation: waveMove 12s .2s ease-in-out infinite;
	transform-origin: left bottom;
}
.m_wave > div.m_wave02 {
	background-image: url(../images/top/m-wave02@2x.png);
	animation-delay: 1s;
}
.m_wave > div.m_wave03 {
	background-image: url(../images/top/m-wave03@2x.png);
	animation-delay: 1.6s;
}
@keyframes waveMove {
  0% {
    transform: translateY(0) scaleX(1.01);
  }
  25% {
    transform: translateY(-20px) scaleX(1.1);
  }
  50% {
    transform: translateY(0) scaleX(1.02);
  }
  75% {
    transform: translateY(10px) scaleX(1);
  }
  100% {
    transform: translateY(0) scaleX(1.01);
  }
}

/* Tablet,Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 960px) {
.fv_area {
	width: 100svw;
	height: 100svh;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.fv_area {
	min-height: calc(100vw * 1.4);
	max-height: calc(100vw * 1.8);
}
.fv_area::before {
	height: 25vw;
}

/* m_wave */
.m_wave > div.m_wave01 {
	background-image: url(../images/top/m-wave01-sp@2x.png);}
.m_wave > div.m_wave02 {
	background-image: url(../images/top/m-wave02-sp@2x.png);}
.m_wave > div.m_wave03 {
	background-image: url(../images/top/m-wave03-sp@2x.png);}

}


/*-----------------------------------------------
 FV - m_slide
-----------------------------------------------*/
.m_slide,
.m_slide .splide__track,
.m_slide .splide__list,
.m_slide .splide__slide {
	width: 100%;
	height: 100%;
}
.m_slide {
	z-index: -1;
}
.m_slide .splide__slide {
	background-color: #000;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.m_slide .slide1 {background-image: url(../images/top/fv-img01@2x.jpg);}
.m_slide .slide2 {background-image: url(../images/top/fv-img02@2x.jpg);}
.m_slide .slide3 {background-image: url(../images/top/fv-img03@2x.jpg);}
.m_slide .slide4 {background-image: url(../images/top/fv-img04@2x.jpg);}
.m_slide .slide5 {background-image: url(../images/top/fv-img05@2x.jpg);}

.m_slide .splide__pagination {
	display: none;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.m_slide .slide1 {background-image: url(../images/top/fv-img01-sp@2x.jpg);}
.m_slide .slide2 {background-image: url(../images/top/fv-img02-sp@2x.jpg);}
.m_slide .slide3 {background-image: url(../images/top/fv-img03-sp@2x.jpg);}
.m_slide .slide4 {background-image: url(../images/top/fv-img04-sp@2x.jpg);}
.m_slide .slide5 {background-image: url(../images/top/fv-img05-sp@2x.jpg);}
}


/*-----------------------------------------------
 FV - m_copy
-----------------------------------------------*/
.m_copy {
	position: absolute;
	width: 100%;
	height: 100%;
	inset: 0;
	opacity: 0;
	transition: opacity .8s .2s;
}
.m_img.anime_on .m_copy {
	opacity: 1;
}

.m_copy__jp,
.m_copy__en {
	position: absolute;
	display: block;
	max-width: max-content;
	filter: drop-shadow(0 0 10px rgba(0,0,0,0.1));
	transform: translateZ(0);
	z-index: 1;
}
.m_copy__jp {
	width: 60%;
	max-width: 847px;
	left: 50%;
	top: 50%;
	translate: -50% -50%;
}
.m_copy__en {
	width: 90%;
	max-width: 1300px;
	left: 50%;
	bottom: 14%;
	translate: -50% 0;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.m_copy {
	width: 90%;
	height: auto;
	left: 50%;
	top: 60%;
	translate: -50% -50%;
}
.m_copy__jp,
.m_copy__en {
	position: relative;
	inset: auto;
	translate: none;
}
.m_copy__jp {
	width: 100%;
	margin-bottom: 1em;
}
.m_copy__en {
	width: 90%;
}
}


/*-----------------------------------------------
 FV - m_news
-----------------------------------------------*/
.m_news {
	--accent-color: var(--color-och-100);

	position: absolute;
}
.m_news a {
	position: relative;
	display: block;
	font-size: 94%;
	line-height: 1.4;
	background-color: #fff;
	padding: 1.2em 4em 1.2em 2em;
	border-radius: .6em;
}
.m_news a::after {
	position: absolute;
	content: "";
	font-family: 'fontello';
	content: '\e800';
	color: var(--accent-color);
	font-size: 150%;
	font-weight: normal;
	line-height: 1;
	right: 1.2em;
	top: 50%;
	translate: 0 -50%;
}
.m_news .wp_date {
	font-size: 100%;
}
.m_news a:not(:hover) .title {
	text-decoration: underline;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.m_news {
	width: 45%;
	max-width: 470px;
	right: 3%;
	top: 65%;
	translate: 0 -50%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.m_news {
	width: 92%;
	font-size: 90%;
	inset: auto 0 6.5vw 0;
	margin: auto;
	z-index: 1;
}
}





/* ========================================================
  
  page_common

======================================================== */

/*---------------------------------------------------------
 wave
---------------------------------------------------------*/
#concept .com_bg__wave {
	top: 160px;
}

/* kodawari */
.kodawari_inner .com_bg__wave {
	inset: auto 0 auto 0;
	margin: auto;
}

/*---------------------------------------------------------
 illust
---------------------------------------------------------*/
/* concept */
.cpt_img > li:nth-of-type(2) .com_illust {
	left: -67%;
	bottom: -18%;
}
.cpt_img > li:nth-of-type(3) .com_illust {
	left: 45%;
	bottom: -28%;
}
.cpt_img > li:nth-of-type(5) .com_illust {
	left: 69%;
	top: -32%;
}
/* kodawari */
.kodawari_inner .com_illust {
	right: -3%;
	translate: 0 -58%;
}
/* tic_slide_wrap */
.tic_slide_wrap .com_illust {
	right: 5%;
	top: 0;
	translate: 0 -75%;
}
/* wp */
#wp .com_illust {
	right: 0;
	top: 0;
	translate: 0 -50%;
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

/* kodawari */
.kodawari_title .com_illust {
	position: relative;
	margin: .5em 6% auto auto
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

/* kodawari */
.kodawari_title .com_illust {
	right: 0;
	bottom: 0;
}
/* tic_slide_wrap */
.tic_slide_wrap .splide__slide {
	width: 45vw !important;
}
.tic_slide_wrap .com_illust {
	right: 70%;
	translate: 0 -60%;
}
}



/* ========================================================
  
  main

======================================================== */
main {
	padding-top: min(8vw,120px);
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

}


/*---------------------------------------------------------
 sp_menu_area
---------------------------------------------------------*/
.sp_menu_area {
	padding: 0 5%;
	margin-bottom: 10%;
}
.sp_menu_area .open_box {
	display: none;
	position: absolute;
	width: 100vw;
	background-color: #fafafa;
	padding: 5%;
	left: 50%;
	translate: -50% 0;
	z-index: 1;
}
.sp_menu_area .com_menu__med {
	display: flex;
	justify-content: center;
	font-weight: var(--fw-bold);
	margin-top: 6%;
}
.sp_menu_area .com_menu__med > li {
	width: 48%;
}



/*---------------------------------------------------------
 Opening
---------------------------------------------------------*/
#opening {
	width: 80%;
	max-width: 780px;
	text-align: center;
	margin-inline: auto;
}
.opening_date {
	max-width: 774px;
	margin-inline: auto;
}
.opening_btn {
	margin-top: 2em;
}
.opening_btn a {
	display: block;
	width: 100%;
	height: auto;
	background-color: var(--color-ivo);
	padding: .6em 2em;
}
.opening_btn a::after {
	position: relative;
	content: '\e807';
	translate: none;
	inset: auto;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

#opening {
	width: 90%;
}
}


/*---------------------------------------------------------
 Info
---------------------------------------------------------*/
.info_box {
	background-color: var(--color-ivo);
	padding: 4.2% 4%;
	border-radius: 20px;
}
.info_title {
	display: flex;
	align-items: center;
	column-gap: .8em;
	font-size: 106%;
	letter-spacing: .12em;
	margin-bottom: 1.2em;
}
.info_title .ft_en {
	color: var(--color-bei-600);
	font-size: 137%;
	letter-spacing: .1em;
}

.info_box .com_timetable_wrap {
	background-color: transparent;
	padding: 0;
}
.info_box .com_timetable {
	border-top: 1px solid #dddada;
	border-bottom: 1px solid #dddada;
	padding: .5em 3%;
}
.info_box .com_sche_txt {
	margin-top: .6em;
}

.info_box .com_cta_wrap {
	margin-top: 1.5em;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {
.info_col_wrap {
	display: grid;
	justify-content: space-between;
	grid-template-columns: 36% 62%;
}
.info_col_wrap .box_r {
	display: grid;
	justify-content: space-between;
	grid-template-columns: 42% 55%;
}
.info_box .com_acslist {
	flex-wrap: wrap;
}

.info_box .com_timetable {
	font-size: min(1.4vw,.94rem);
}

.info_box .com_cta_wrap {
	font-size: 87%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.info_box {
	padding: 8% 6%;
	border-radius: 4vw;
}
.info_title {
	font-size: 90%;
	letter-spacing: .1em;
	margin-bottom: 1em;
}
.info_col_wrap .box_l {
	margin-bottom: 6%;
}

.info_box .map {
	max-width: max-content;
	margin-inline: auto;
}
.info_box address {
	margin-top: 1.2em;
}
.info_box .com_cta_wrap {
	margin-top: 6%;
}
}



/*---------------------------------------------------------
 CONCEPT
---------------------------------------------------------*/
#concept {
	/* background: url(../images/top/concept-bg-wave@2x.png) no-repeat left bottom -1px; */
	background-size: 100% auto;
	padding-bottom: min(52vw,1000px);
}
.cpt_inbox {
	position: relative;
	padding: 120px 30% 0;
}
.cpt_txt {
	position: relative;
}
.cpt_txt .com_h__min {
	white-space: nowrap;
}
.cpt_txt .fs__17 {
	line-height: 2.8;
}
.cpt_img > li {
	position: absolute;
	max-width: max-content;
	translate: -50% 0;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

#concept .com_bg__img {
	-webkit-mask-image: linear-gradient(to bottom, transparent 15%, black 80%);
	mask-image: linear-gradient(to bottom, transparent 15%, black 80%);
	top: auto;
	bottom: 0;
}

.cpt_img > li:nth-of-type(1) {
	width: 17%;
	max-width: 180px;
	left: 14%;
	top: 2%;
}
.cpt_img > li:nth-of-type(2) {
	width: 17%;
	max-width: 224px;
	left: 87%;
	top: 0;
}
.cpt_img > li:nth-of-type(3) {
	width: 26%;
	max-width: 383px;
	left: 12%;
	top: 37%;
}
.cpt_img > li:nth-of-type(4) {
	width: 16%;
	max-width: 185px;
	left: 94%;
	top: 47%;
}
.cpt_img > li:nth-of-type(5) {
	width: 18%;
	max-width: 260px;
	left: 82%;
	top: 82%;
}
.cpt_img > li:nth-of-type(6) {
	width: 16%;
	max-width: 193px;
	left: 33%;
	top: 110%;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

.cpt_txt .fs__17 {
	line-height: 2.2;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

#concept {
	padding-bottom: 32%;
}
#concept .com_bg__img {
	display: none;
}
#concept .com_h__min {
	font-size: 180%;
}

.cpt_inbox {
	padding: 32% 8% 0;
}
.cpt_txt .fs__17 {
	line-height: 2;
}

.cpt_img > li:nth-of-type(1) > img,
.cpt_img > li:nth-of-type(3) > img,
.cpt_img > li:nth-of-type(4) > img {
	opacity: 0.3;
}
.cpt_img > li:nth-of-type(1) {
	width: 29vw;
	left: 14%;
	top: 7vw;
}
.cpt_img > li:nth-of-type(2) {
	width: 30vw;
	left: 82%;
	top: 0;
}
.cpt_img > li:nth-of-type(3) {
	width: 43vw;
	left: 25%;
	top: 102%;
}
.cpt_img > li:nth-of-type(4) {
	width: 30vw;
	left: 82%;
	top: 86%;
}
.cpt_img > li:nth-of-type(5) {
	width: 35vw;
	left: 74%;
	top: 120%;
}
.cpt_img > li:nth-of-type(6) {
	width: 23vw;
	left: 35%;
	top: 138%;
}
}



/*---------------------------------------------------------
 Kodawari
---------------------------------------------------------*/
#kodawari {
	padding-top: 20px;
	padding-bottom: 50px;
}

.kodawari_wave {
	position: absolute;
	background: url(../images/top/concept-bg-wave@2x.png) no-repeat left bottom -1px;
	background-size: 100% 100%;
	width: 100%;
	height: min(25vw,340px);
	left: 0;
	bottom: calc(100% - 1px);
	translate: 0 30px;
	transition: translate 4s;
	z-index: -1;
}
.kodawari_wave.anime_on {
	translate: 0 0;
}

#kodawari .com_bg__color {
	background-color: var(--color-ivo);
}
.kodawari_title {
	position: relative;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.kodawari_wrap {
	display: grid;
	justify-content: space-between;
	grid-template-columns: 28% 69%;
}

.kodawari_title h2 {
	position: sticky;
	left: 0;
	top: 180px;
}

.kodawari_content {
	padding-left: 10%;
	border-left: 2px dotted currentColor;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.kodawari_title {
	padding: 0 12% 10%;
	margin-bottom: 2%;
}
}

/* Kodawari - kodawari_content
-----------------------------------------------*/
#kodawari01 {
	--accent-color: var(--color-taq);
}
#kodawari02 {
	--accent-color: #88b57a;
}
#kodawari03 {
	--accent-color: var(--color-coral);
}
#kodawari04 {
	--accent-color: var(--color-pnk);
}
#kodawari05 {
	--accent-color: var(--color-och);
}

.kodawari_inner {
	position: relative;
	margin-bottom: 14%;
}
.kodawari_inner:last-of-type {
	margin-bottom: 0;
}

.kodawari_content .box_img {
	position: relative;
	max-width: 770px;
	margin-left: auto;
}
.kodawari_content .box_img .abs {
	position: absolute;
	width: 42%;
	max-width: 300px;
	left: 2%;
	top: 3%;
}
#kodawari01 .box_img .abs {
	width: 58%;
	max-width: 443px;
	left: 50%;
	top: 48%;
	translate: -50% -50%;
}

.kodawari_content .com_h__min {
	display: flex;
	column-gap: 1em;
	margin-bottom: 1em;
}
.kodawari_content .com_h__min span {
	color: var(--accent-color);
}
.kodawari_content .com_h__min .no {
	width: 3em;
}
.kodawari_content .com_h__min h3 {
	align-self: flex-end;
	padding-top: .6em;
}

.kodawari_point {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: .5em .8em;
	color: var(--accent-color);
	font-size: min(1.6vw,120%);
	font-weight: var(--fw-bold);
	line-height: 1.2;
	letter-spacing: .1em;
	margin-bottom: .8em;
}
.kodawari_point > li {
	padding: .5em 1.2em;
	background-color: #fff;
	border-radius: 2em;
}

.kodawari_content .com_btn__radi {
	text-align: center;
}
.kodawari_content .com_btn__radi a::after {
	color: var(--accent-color);
}
.kodawari_content .com_btn__radi a:hover {
	background-color: var(--accent-color);
}
.kodawari_content .com_btn__radi a:hover::after {
	color: #FFF;
}

.kodawari_content .tic_slide .splide__list {
	column-gap: 25px;
}
.kodawari_content .tic_slide .splide__slide {
	width: 32vw;
	max-width: 480px;
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.kodawari_content .slide_wrap {
	position: relative;
	width: calc(70% + (100vw - 100%) / 2);
	margin-right: calc(50% - 50vw);
	overflow: hidden;
	margin-bottom: -10px;
}

.kodawari_content .com_h__min {
	margin-top: -0.3em;
}
.kodawari_content .com_h__min .no {
	margin-left: -0.4em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

#kodawari {
	padding-top: 58vw;
}

.kodawari_content .box_img {
	width: 100vw;
	margin-inline: calc(50% - 50vw);
	margin-bottom: 5%;
}
.kodawari_content .box_img .abs {
	width: 46%;
	left: 1%;
	top: -10%;
}

.kodawari_point {
	gap: .5em .4em;
	font-size: 85%;
	letter-spacing: .1em;
}

.kodawari_content .slide_wrap {
	margin-bottom: 4%;
}
}



/*---------------------------------------------------------
 Onayami
---------------------------------------------------------*/
#onayami {
	position: relative;
	text-align: center;
	color: #FFF;
	padding-top: min(10vw,140px);
}
#onayami .com_bg__color {
	background-color: var(--color-bei-500);
}

.onayami_title {
	position: relative;
	font-size: min(3.5vw,266%);
	font-weight: var(--fw-bold);
	line-height: 1.2;
	letter-spacing: .12em;
	padding-top: 2.2em;
	margin-bottom: .4em;
}
.onayami_title .ft_en {
	font-size: 300%;
	letter-spacing: .04em;
	opacity: 0.3;
	margin-bottom: .1em;
}
.onayami_title::after {
	position: absolute;
	content: "";
	background: url(../images/top/mark-question.svg) no-repeat;
	background-size: contain;
	width: 4.5em;
	aspect-ratio: 180/292;
	left: calc(50% + 7.8em);
	top: 0;
	opacity: 0;
	rotate: -5deg;
	transition: rotate 1s, opacity 1s;
	transition-delay: .2s;
	transform-origin: 10% 70%;
}
.onayami_title.anime_on::after {
	opacity: 1;
	rotate: 0deg;
}

.onayami_title + p {
	font-size: min(1.6vw,120%);
	margin-bottom: 2em;
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

#onayami {
	padding-top: 18%;
}
.onayami_title {
	font-size: 140%;
	padding-top: 1em;
	margin-bottom: .8em;
}
.onayami_title .ft_en {
	font-size: 220%;
}
.onayami_title::after {
	width: 2.7em;
	left: calc(50% + 5.2em);
}

.onayami_title + p {
	font-size: 90%;
	margin-bottom: 1.5em;
}
}

/* Onayami - onayami_list
-----------------------------------------------*/
.onayami_list {
	display: flex;
	flex-wrap: wrap;
	gap: 3em 4.25%;
	color: var(--color-base);
	font: var(--font-min);
	font-size: min(1.6vw,153%);
	line-height: 1.3;
	letter-spacing: .1em;
}
.onayami_list > li {
	position: relative;
	width: 16.6%;
}
.onayami_list > li::after {
	position: absolute;
	content: "";
	background: url(../images/common/path-frame.svg) no-repeat center bottom;
	background-size: 100% 100%;
	width: 100%;
	height: 100%;
	left: 2px;
	bottom: 4%;
	rotate: -7deg;
	transition: rotate .2s .2s;
	pointer-events: none;
}
.onayami_list a {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	aspect-ratio: 215/225;
	padding-top: 2em;
}
.onayami_list a::before {
	position: absolute;
	content: "";
	background-color: #fff;
	mask: url(../images/common/path-door.svg) no-repeat center;
	-webkit-mask: url(../images/common/path-door.svg) no-repeat center;
	mask-size: contain;
	-webkit-mask-size: contain;
	width: 100%;
	height: 100%;
	inset: 0;
	z-index: -1;
	transition: background-color .5s;
}
.onayami_list a::after {
	content: "";
	font-family: 'fontello';
	content: '\e800';
	color: var(--color-taq);
	font-size: 140%;
	line-height: 1;
	margin: .6em auto 0;
}
.onayami_list a:hover::before {
	background-color: #d9eded;
}
.onayami_list > li:hover::after {
	rotate: -5deg;
}

.onayami_list > li:nth-child(5n+2)::after,
.onayami_list > li:nth-child(5n+4)::after {
	rotate: 7deg;
}
.onayami_list li:nth-child(5n+2):hover::after,
.onayami_list li:nth-child(5n+4):hover::after {
	rotate: 5deg;
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.onayami_list {
	gap: 1.4em 5%;
	font-size: 82%;
	letter-spacing: .04em;
}
.onayami_list > li {
	width: 30%;
}

.onayami_list > li:nth-child(5n + 4) {
	margin-left: 17.25%;
}
}



/*---------------------------------------------------------
 Treatment
---------------------------------------------------------*/
#treatment {
	counter-reset: myCounter;
}
#treatment .com_bg__color {
	background-color: var(--color-bei-500);
}
#treatment .com_h__min i {
	color: var(--color-tan);
}
.trt_pick_box .com_h__min .com_icon,
.trt_pick_col2 .com_h__min .com_icon {
	background-color: var(--color-tan);
}
/* trt_title */
.trt_title {
	font-size: min(3.2vw,253%);
	margin-bottom: .8em;
}
.trt_title span {
	display: inline-block;
	font-size: 157%;
	letter-spacing: .06em;
	line-height: 1.2;
	vertical-align: -0.1em;
	margin-left: .2em;
}
.trt_title .ft_en {
	color: #FFF;
	font-size: 63%;
}
/* trt_no */
.trt_no {
	counter-increment: myCounter;
	font: var(--font-en);
	font-size: 1.05rem;
	letter-spacing: .1em;
}
.trt_no::before {
	content: counter(myCounter, decimal-leading-zero);
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

#treatment .com_menu__med {
	grid-template-columns: repeat(4,23.2%);
	font-size: min(1.7vw,1.53rem);
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

/* trt_title */
.trt_title {
	font-size: 125%;
}
.trt_title span {
	margin-top: .1em;
}
.trt_title .ft_en {
	margin-bottom: .6em;
}
/* trt_no */
.trt_no {
	font-size: 2.8vw;
}

#treatment .com_menu__med {
	font-size: 3.6vw;
}
}

/* Treatment - trt_pick_box
-----------------------------------------------*/
.trt_pick_box {
	position: relative;
	width: 96vw;
	max-width: 1450px;
	padding: min(6%,80px) 5% 0;
	left: 50%;
	translate: -50% 0;
	margin-bottom: 35px;
}
/* bg */
.trt_pick_box .bg {
	position: absolute;
	width: 100%;
	height: calc(100% - 20px);
	inset: 0 0 auto 0;
	border-radius: 30px;
	z-index: -1;
	overflow: hidden;
}
.trt_pick_box .bg::before {
	position: absolute;
	content: "";
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	width: 100%;
	height: 100%;
	inset: 0;
	transition: scale .8s;
}
.trt_pick_box:has(a:hover) .bg::before {
	scale: 1.06;
}
.trt_pick_box:nth-of-type(1) .bg::before {
	background-image: url(../images/top/treatment-ceramic-bg@2x.jpg);}
.trt_pick_box:nth-of-type(2) .bg::before {
	background-image: url(../images/top/treatment-implant-bg@2x.jpg);}
.trt_pick_box:nth-of-type(3) .bg::before {
	background-image: url(../images/top/treatment-kidsortho-bg@2x.jpg);}

/* no */
.trt_pick_box .trt_no {
	position: relative;
	color: #FFF;
	font-size: min(4vw,366%);
	line-height: 0.66;
	left: 1em;
}
/* text */
.trt_pick_box .box_txt > a {
	display: block;
	background-color: #fff;
	padding: 10%;
	border-radius: 20px;
}
.trt_pick_box .box_txt > a:hover {
	background-color: rgba(255,255,255,0.9);
}
.trt_pick_box .ft_en {
	font-size: min(1.4vw,106%);
	margin-bottom: .4em;
}
.trt_pick_box .com_h__min {
	font-size: min(3.9vw,333%);
	white-space: nowrap;
}

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.trt_pick_box {
	display: flex;
	justify-content: space-between;
}
.trt_pick_box:nth-of-type(odd) {
	flex-direction: row-reverse;
}
.trt_pick_box .box_img {
	width: 46%;
	max-width: max-content;
}
.trt_pick_box .box_txt {
	width: 48%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.trt_pick_box {
	width: 92vw;
	padding: 10% 5% 0;
	margin-bottom: 35px;
}
.trt_pick_box .bg {
	height: 62vw;
	border-radius: 15px;
}
.trt_pick_box .trt_no {
	position: relative;
	color: #FFF;
	font-size: 8vw;
	left: 1em;
}
.trt_pick_box .box_txt > a {
	padding: 10% 8%;
}
.trt_pick_box .ft_en {
	font-size: 2.6vw;
}
.trt_pick_box .com_h__min {
	font-size: 160%;
}
.trt_pick_box .box_img {
	margin: 0 auto -10%;
}
}

/* Treatment - trt_pick_col2
-----------------------------------------------*/
.trt_pick_col2 {
	display: grid;
	row-gap: 1.5em;
}
.trt_pick_col2 .box_img {
	aspect-ratio: 300/220;
	border-radius: 6.6% / 9%
}
.trt_pick_col2 .com_h__min {
	font-size: min(2.5vw,233%);
	padding-left: 1.2em;
}
.trt_pick_col2 .trt_no {
	position: absolute;
	font-size: 45%;
	vertical-align: 0.1em;
	left: 0;
	top: 1.6em;
}
/* PC
------------------------------------------*/
@media only screen and (min-width: 960px) {

.trt_pick_col2 a {
	position: relative;
	padding-left: 54%;
}
.trt_pick_col2 .box_img {
	position: absolute;
	width: 49%;
	left: 0;
	top: 0;
}
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.trt_pick_col2 {
	justify-content: space-between;
	grid-template-columns: repeat(2,48%);
	row-gap: 2.5em;
}
}
/* Mobile,Tablet (Portrait)
------------------------------------------*/
@media only screen and (max-width: 959px) {

.trt_pick_col2 .img_wrap {
	display: grid;
	justify-content: space-between;
	align-items: center;
	grid-template-columns: 40% 55%;
	margin-bottom: 4%;
}
.trt_pick_col2 .com_h__min {
	font-size: 3vw;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.trt_pick_col2 .com_h__min {
	font-size: 150%
}
}

/* Treatment - trt_other
-----------------------------------------------*/
.trt_other {
	display: flex;
	justify-content: center;
	column-gap: 9%
}
.trt_other a {
	display: block;
	font-size: min(2.6vw,200%);
}
.trt_other .icon {
	width: 4.34em;
	background-color: #d6d4c8;
	padding: 1.23em;
	border-radius: 50%;
	transition: background-color .6s;
}
.trt_other .icon img {
	width: 100%;
}
.trt_other a:hover .icon {
	background-color: #cebfaa;
}
.trt_other .txt {
	min-width: 6em;
	padding-bottom: .8em;
	border-bottom: 2px dotted currentColor;
}
.trt_other .com_h__min {
	font-size: 100%;
	margin-bottom: .3em;
}
.trt_other .com_h__min .com_icon {
	display: inline-block;
	font-size: 42%;
	vertical-align: -0.2em;
	margin-left: .5em;
}
.trt_other .ft_en {
	font-size: 53%;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.trt_other a {
	display: flex;
	align-items: center;
	column-gap: 1em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.trt_other a {
	width: 45%;
	text-align: center;
	font-size: 115%;
}
.trt_other .icon {
	width: 4.34em;
	margin: 0 auto .5em;
}
.trt_other .txt {
	border-width: 1px;
}
.trt_other .com_h__min {
	margin-inline: auto;
}
}



/*---------------------------------------------------------
 Slide
---------------------------------------------------------*/
.tic_slide_wrap {
	position: relative;
}
.tic_slide_wrap::after {
	position: absolute;
	content: "";
	background: url(../images/common/path-wave-b.svg) repeat-x left -1px bottom -1px;
	background-size: min(102vw,1500px) auto;
	width: calc(100vw + 4px);
	height: 120px;
	left: -2px;
	bottom: -1px;
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.tic_slide_wrap .splide__slide {
	width: 45vw !important;
}
.tic_slide_wrap::after {
	background-repeat: no-repeat;
	background-size: 102vw auto;
}
}


/*---------------------------------------------------------
 WP
---------------------------------------------------------*/
.wp_title {
	display: flex;
	align-items: center;
	gap: .2em 1em;
	font: var(--font-min);
	font-size: min(2vw,133%);
	line-height: 1.5;
	letter-spacing: .1em;
	margin-bottom: 1.2em;
}
.wp_title .ft_en {
	font-size: 200%;
}
.wp_title .ft_en::first-letter {
	color: var(--accent-color);
}

.wp_wrap .com_btn__icon {
	text-align: center;
	margin-top: 2em;
}

#wp .scl_area {
	max-height: 500px;
}

#news {
	--accent-color: var(--color-och-100);
}
#blog {
	--accent-color: var(--color-lgrn);
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

#wp {
	padding-top: 20px;
}

.wp_wrap {
	display: grid;
	justify-content: space-between;
	grid-template-columns: min(570px,47%) 49%;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.wp_wrap {
	padding-top: 8%;
}
.wp_title {
	font-size: 95%;
}
.wp_title .ft_en {
	font-size: 200%;
}

.wp_wrap .com_btn__icon {
	margin-top: 1.2em;
}
}

/* WP - wp_list
-----------------------------------------------*/
.wp_list a {
	display: block;
	padding: 4% 5%;
}
.wp_list > li:first-of-type a {
	padding-top: 0;
}
.wp_date { /* FV内と共通 */
	display: inline-block;
	color: var(--accent-color);
	font: var(--font-en);
	font-size: 106%;
	letter-spacing: .1em;
	margin-bottom: .4em;
}
.wp_list .title {
	position: relative;
	font: var(--font-min);
	font-size: min(1.7vw,153%);
	line-height: 1.5;
	margin-bottom: .2em;

	transition: color .3s;
}
.wp_list a:hover .title {
	color: var(--accent-color);
}
.wp_list p {
	font-size: 94%;
	line-height: 1.6;
}
.wp_list .com_hov_img {
	aspect-ratio: 330/210;
	border-radius: 7.7% / 12%;
}
/* news */
#news .scl_area {
	overflow-x: visible;
	overflow-y: scroll;
	padding-right: 4%;
}
#news .wp_list > li:nth-of-type(even) a {
	background-color: rgba(214,187,121,0.07);
}
/* blog */
#blog .wp_list > li:nth-of-type(even) a {
	background-color: rgba(149,198,139,0.07);
}
#blog .wp_list a {
	display: grid;
	justify-content: space-between;
	align-items: flex-start;
	grid-template-columns: 36% 60%;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.wp_list a {
	padding: 5% 6%;
}
.wp_date {
	font-size: 90%;
}
.wp_list .title {
	font-size: 100%;
}
.wp_list p {
	font-size: 90%;
}
.wp_list .com_hov_img {
	margin-bottom: 5%;
}
/* news */
#news .scl_area {
	height: 80vw;
}
/* blog */
#blog {
	margin-top: 10%;
}
#blog .wp_list {
	display: grid;
	grid-template-columns: repeat(3,33%);
	width: 170vw;
	max-height: auto;
}
#blog .wp_list a {
	display: block;
	padding: 10% 10%;
}
}



/*---------------------------------------------------------
 Instagram
---------------------------------------------------------*/
#instagram {
	background-color: var(--color-ivo);
}
.inst_inner {
	position: relative;
}
.inst_inner .com_bnr_insta {
	position: absolute;
	width: 20%;
	height: 100%;
	left: 70%;
	top: 0;
	translate: -50% 0;
	background-color: var(--color-ivo);
}

/* slide */
.inst_slide .sbi_item {
	aspect-ratio: 240 / 280;
	max-width: 240px;
	border-radius: 8.3% / 7.1%;
	overflow: hidden;
}
.inst_slide #sbi_images {
	display: flex !important;
	gap: 1.5%;
}
.inst_slide .sbi_photo_wrap,
.inst_slide .sbi_photo {
	height: 100% !important;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.inst_inner .com_bnr_insta a {
	font-size: min(2.8vw,200%);
}
/* slide */
.inst_slide {
	visibility: visible !important;
}
.inst_slide .sbi_item {
	width: 18.5% !important;
}
#instagram #sb_instagram #sbi_images .sbi_item:nth-of-type(4) {
	margin-left: auto !important;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {


.inst_inner .com_bnr_insta {
	width: 42vw;
	left: 75%;
}
/* slide */
.inst_slide {
	width: 100vw;
	margin-inline: calc(50% - 50vw);
}
.inst_slide #sbi_images {
	gap: 3.2vw;
}
.inst_slide .sbi_item {
	width: 38vw !important;
}
}



/*---------------------------------------------------------
 Recruit
---------------------------------------------------------*/
.recruit_inner {
	position: relative;
	display: block;
}

.rec_img_main {
	position: relative;
	max-width: 660px;
	transition: translate .6s, box-shadow .6s;
	transition-delay: .1s;
}

.rec_text {
	position: relative;
	text-align: left;
}
.rec_text .ft_en {
	font-size: min(2.8vw,220%);
	margin-bottom: .2em;
}
.rec_text .com_h__min i {
	color: var(--color-tan);
}

.rec_img_sub > li {
	position: absolute;
	max-width: max-content;
	translate: -50% -50%;
}
.rec_img_sub > li img {
	transition: translate .6s, box-shadow .6s;
}
.rec_img_sub > li:nth-of-type(1) {
	width: 16%;
	left: 7.6%;
	top: 68%;
}
.rec_img_sub > li:nth-of-type(2) {
	width: 13%;
	left: 28%;
	top: 17%;
}
.rec_img_sub > li:nth-of-type(3) {
	width: 12%;
	left: 90%;
	top: 25%;
	z-index: -1;
}
.rec_img_sub > li:nth-of-type(4) {
	width: 13%;
	left: 94%;
	top: 84%;
}

.recruit_inner:hover .rec_img_main,
.recruit_inner:hover .rec_img_sub > li img {
	translate: 0 -6%;
	box-shadow: 0 15px 15px -10px rgba(0,0,0,0.2);
}
.recruit_inner:hover .rec_img_sub > li:nth-of-type(even) img {
	transition-delay: .2s;
}
/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

.recruit_inner {
	display: flex;
	flex-direction: row-reverse;
	justify-content: center;
	align-items: flex-end;
	padding: 7.2% 0 4.5%;
}
.rec_text {
	padding-left: 6%;
	margin-right: -1.5%;
}
.rec_img_main {
	width: 50%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {

.recruit_inner {
	padding-top: 25%;
}
.rec_img_main {
	margin-bottom: 6%;
}

.rec_text {
	margin-bottom: 3%;
}
.rec_text,
.recruit_inner + p {
	padding: 0 3%;
}
.rec_text .com_h__min {
	font-size: 180%;
}
.rec_text .ft_en {
	font-size: 3.8vw;
}

.rec_img_sub > li:nth-of-type(1) {
	width: 22vw;
	left: 78%;
	top: 80%;
}
.rec_img_sub > li:nth-of-type(2) {
	width: 22vw;
	left: 34%;
	top: 12%;
}
.rec_img_sub > li:nth-of-type(3) {
	width: 22vw;
	left: 94%;
	top: 23%;
}
.rec_img_sub > li:nth-of-type(4) {
	display: none;
}
}



/*---------------------------------------------------------

---------------------------------------------------------*/

/* PC,Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) {

}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {

}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {


}