/******************************************************************
Theme Name: CUBE GAMMA THEME
Theme URI: http://cube096.com
Description: CUBEが自信をもってお届けするレスポンシブウェブデザインテーマ
Author: CUBE CO.,LTD.
Author URI: http://cube096.com
Version: beta
Tags: fluid-layout, responsive-layout, accessibility-ready, translation-ready, microformats, rtl-language-support
*/
*, *::before, *::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
html, body {
	height: 100%;
}
img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}
input, button, textarea, select {
	font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}
#root, #__next {
	isolation: isolate;
}
ol, ul {
	list-style-type:none;
	margin:0;
}
legend, menu, ol, ul {
	padding:0
}
a {
	text-decoration:none;
	color: var(--font-color);
	position: relative;
	z-index: 2;
}
p,li,dd {
	overflow-wrap: break-word;
	text-align: justify;
}
body {
	/*--- ▼ゴシック ---*/
	font-family:"Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	
	/*--- ▼明朝 ---*/
	/*font-family: "Noto Serif JP", "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝";*/
	
	line-height: 2.5;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
	color: var(--font-color);
	font-weight: 400;
	font-style: normal;
	font-size: var(--fontsize-16);
	background-color: var(--bg-color);
}
body img {
	max-width:100%;
	height:auto;
}
h1,h2,h3,h4,h5,h6{
	font-weight: 400;
	line-height: 1.5;
	font-style: normal;
}
table{
	border-collapse: separate;
	border-spacing: 0;
}
:root {
	--main-color: #2C3E50;
	--mainsub-color: #d9dce0;
	--sub-color: #BDC3C7;
	--sub-color2: #607F9D;
	--font-color: #111111;
	--sub-font: #959EA7;
	--bg-color: #FFFFFF;
	--sub-bg: #F2F3F4;
	--padding-130: clamp(50px, 6.8vw, 130px);
	--padding-95: clamp(40px, 4.9vw, 95px);
	--padding-80: clamp(40px, 4.1vw, 80px);
	--padding-65: clamp(40px, 3.4vw, 65px);
	--fontsize-25: clamp(18px, 1.3vw, 25px);
	--fontsize-22: clamp(17px, 1.1vw, 22px);
	--fontsize-20: clamp(16px, 1vw, 20px);
	--fontsize-18: clamp(15px, 0.94vw, 18px);
	--fontsize-16: 16px;
	--fontsize-15: 15px;
}
/* recaptcha badge
----------------------------------------------------------- */
.grecaptcha-badge{
    z-index:10000;
	bottom: 75px !important;
}
/* ページネーション
----------------------------------------------------------- */
/*アーカイブ用*/
.nav-links{
	display: -webkit-flex;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.nav-links .page-numbers{
	display: block;
	width: 45px;
	height: 45px;
	line-height: 45px;
	text-align: center;
	background-color: #fff;
	transition: all ease 0.5s;
	border-radius: 3px;
	border: 1px solid #D5D5D5;
	margin: 0 5px;
}
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover{
	background-color: #F2F2F2;
}
.nav-below {
	display: -webkit-flex;
	display: flex;
	justify-content: center;
}
.next.page-numbers,.prev.page-numbers{
	padding: 0 5px;
}
/*シングル用*/
.single .nav-below {
	display: inherit;
	margin-top: 45px;
}
.single .nav-below:after {
	content: "";
	display: block;
	height: 0;
	font-size: 0;
	clear: both;
	visibility: hidden;
}
.single .nav-below a {
	background-color: #FFF;
	text-decoration: none;
	padding: 5px;
	font-size: 0.9em;
	line-height: 1.5;
	transition: all ease 0.5s;
	border: 1px solid #D5D5D5;
}
.single .nav-below a:hover {
	background-color: var(--mainsub-color);
}
.single .nav-below .prev {
	padding-left: 65px;
	position: relative;
}
.single .nav-below .next {
	padding-right: 65px;
	position: relative;
}
.single .nav-below .prev::before,
.single .nav-below .next::before{
	content: "";
	width: 40px;
	height: 40px;
	background-color: var(--main-color);
	border-radius: 20px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.single .nav-below .prev::before{
	left: 10px;
}
.single .nav-below .next::before{
	right: 10px;
}
.single .nav-below .prev::after,
.single .nav-below .next::after{
	content: "";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 5px solid transparent;
	border-bottom: 5px solid transparent;
}
.single .nav-below .prev::after{
	left: 25px;
	border-right: 7px solid #fff;
	border-left: 0;
}
.single .nav-below .next::after{
	right: 25px;
	border-left: 7px solid #fff;
	border-right: 0;
}
.prev {
	width: 48%;
	float: left;
}
.next {
	width: 48%;
	float: right;
	text-align: right;
}
.prev_title,
.next_title {
	font-size: 12px;
}
.next p{
	text-align: right;
}
.next p,
.prev p{
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	margin-top: 5px;
}
.prev img {
	float: left;
	margin-right: 10px;
}
.next img {
	float: right;
	margin-left: 10px;
}
.prevAndNextLeft a:before {
	content: "\f053";
	margin-right: 5px;
	font-family: FontAwesome;
}
.prevAndNextRight a:after {
	content: "\f054";
	margin-left: 10px;
	font-family: FontAwesome;
}
.prevAndNextLeft {
	width: 50%;
	float: left;
}
.prevAndNextRight {
	width: 50%;
	float: left;
}
.prevAndNextLeft {
	text-align: left;
}
.prevAndNextRight {
	text-align: right;
}
/* 
 animation
----------------------------------------------------------- */  
.fadein {
	opacity:0.1;
	transition:all ease 1s;
	-webkit-transition:all ease 1s;
	-moz-transition:all ease 1s;
}
.on .fadein,
.on.fadein {
	opacity:1;
}
.totop{
	opacity:0.1;
	transform: translateY(30px);
	transition: all 1s;
}
.on .totop,
.on.totop{
	opacity: 1;
	transform: translateY(0);
}
.fadeinleft {
	opacity:0.1;
	-webkit-transform: translateX(-50px);
	transform: translateX(-50px);
	transition: all ease 1s;
	-webkit-transition: all ease 1s;
	-moz-transition: all ease 1s;
}
.on .fadeinleft,
.on.fadeinleft {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}
.fadeinright {
	opacity:0.1;
	-webkit-transform: translateX(50px);
	transform: translateX(50px);
	transition: all ease 1s;
	-webkit-transition: all ease 1s;
	-moz-transition: all ease 1s;
}
.on .fadeinright,
.on.fadeinright {
	opacity: 1;
	-webkit-transform: translateX(0px);
	transform: translateX(0px);
}
.no2{
	transition-delay: .3s;
}
.no3{
	transition-delay: 0.6s;
}
.no4{
	transition-delay: 0.9s;
}
.no5{
	transition-delay: 1.2s;
}
.no6{
	transition-delay: 1.5s;
}
.no7{
	transition-delay: 1.8s;
}
/* 
 Head
----------------------------------------------------------- */ 
.navwrap {
	background: rgba(255,255,255,0.5);
	position:fixed;
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
	align-items: center;
	top:clamp(10px, 1vw, 20px);
	left:clamp(15px, 2.6vw, 50px);
	z-index:998;
	transition:all ease 0.5s;
	padding: 0 clamp(15px, 2vw, 40px);
	border-radius: 3px;
	backdrop-filter: blur(15px) brightness(1.3);
}
.navwrap p img,
.navwrap h1 img{
	height: 40px;
	width: auto;
}
.navwrap > ul {
	display:flex;
	justify-content:flex-end;
	flex-wrap:wrap;
	align-items: center;
	margin-left: clamp(30px, 4.1vw, 80px);
}
.navwrap > ul > li{
	text-align: center;
	transition:all ease 0.5s;
	position: relative;
}
.navwrap > ul > li:not(:last-child){
	margin-right: clamp(20px, 3.4vw, 65px);
}
.navwrap > ul > li > a,
.navwrap > ul > li > p{
	display: inline-block;
	padding: clamp(15px, 1.3vw, 25px) 0;
	position: relative;
	line-height: 2;
}
.navwrap > ul > li:hover > a,
.navwrap > ul > li:hover > p{
	color: var(--main-color);
}
.navwrap > ul > li > a::after,
.navwrap > ul > li > p::after{
	content: "";
	position: absolute;
	left: 0;
	bottom: clamp(15px, 1.3vw, 25px);
	height: 1px;
	width: 0;
	background-color: var(--main-color);
	transition: all ease 0.5s;
}
.navwrap > ul > li:hover > a::after,
.navwrap > ul > li:hover > p::after{
	width: 100%;
}
.navwrap ul li.open_btn {
	position: relative;
}
.navwrap ul li.open_btn > a {
	cursor: pointer;
	padding-right: clamp(20px, 1.1vw, 22px);
	position: relative;
}
.navwrap ul li.open_btn > a::before {
	content: "＋";
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all ease 0.5s;
}
.navwrap ul li.open_btn:hover > a::before {
	transform: translateY(-50%) rotate(45deg);
}
.navwrap ul li.open_btn ul {
	position: absolute;
	top: clamp(90px, 5.2vw, 100px);
	left: 50%;
	transform: translateX(-50%) scaleY(0);
	height: 0;
	transform-origin: center top;
	width: 300px;
}
.navwrap ul li.open_btn:hover ul {
	transform: translateX(-50%) scaleY(1);
	height: auto;
}
.navwrap ul li.open_btn ul li {
	text-align: justify;
}
.navwrap ul li.open_btn ul li:not(:last-child) {
	margin-bottom: 1px;
}
.navwrap ul li.open_btn ul li > a {
	padding: clamp(10px, 1vw, 20px) clamp(50px, 3.4vw, 65px) clamp(10px, 1vw, 20px) clamp(10px, 1.3vw, 25px);
	background-color: rgba(255,255,255,0.95);
	position: relative;
	display: block;
}
.navwrap ul li.open_btn ul li > a::before {
	content: "";
	position: absolute;
	right: clamp(10px, 1.3vw, 25px);
	top: 50%;
	transform: translateY(-50%);
	padding: clamp(10px, 0.94vw, 18px);
	background-image: url("./library/images/header_arrow.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	transition:all ease 0.5s;
}
.navwrap ul li.open_btn ul li:hover > a {
	color: var(--main-color);
}
.navwrap ul li.open_btn ul li:hover > a::before {
	right: calc(clamp(10px, 1.3vw, 25px) / 2);
}
.navwrap ul li.open_btn ul li > a small {
	display: block;
}
.navwrap ul li.open_btn ul li > a > span {
	width: clamp(25px, 1.6vw, 30px);
	height: clamp(25px, 1.6vw, 30px);
	background-color: #F8F6E7;
	border-radius: 5px;
	position: relative;
	display: block;
}
.navwrap.top {
	background-color: transparent;
	padding: 0;
	backdrop-filter: blur(0) brightness(1);
}
.navwrap.top > ul > li > a,
.navwrap.top > ul > li > p{
	color: #fff;
}
.navwrap.top > ul > li > a::after,
.navwrap.top > ul > li > p::after{
	background-color: #fff;
}
.navwrap * {
	transition:all ease 0.5s;
}
.fix_btn{
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 6;
	display: flex;
	justify-content: flex-end;
	align-items: center;
}
.fix_btn li{
	width: 255px;
}
.fix_btn li:first-child{
	margin-right: 2px;
}
.fix_btn li a{
	display: block;
	background-color: var(--main-color);
	padding: clamp(10px, 1vw, 20px) clamp(15px, 2vw, 40px) clamp(10px, 1vw, 20px) clamp(50px, 4.4vw, 85px);
	color: #fff;
	transition: all ease 0.3s;
	font-size: var(--fontsize-18);
	font-family: "Noto Serif JP", serif;
	background-image: url("./library/images/icn_web.svg");
	background-position: center left clamp(15px, 2vw, 40px);
	background-repeat: no-repeat;
	background-size: auto clamp(20px, 1.6vw, 30px);
}
.fix_btn li:nth-child(2) a{
	letter-spacing: 0.1em;
	background-image: url("./library/images/icn_tel.svg");
}
.fix_btn li a:hover{
	opacity: 0.7;
}
.top_back{
	height: 45px;
	width: 45px;
	border-radius: 25px;
	background-color: var(--main-color);
	position: fixed;
	left: 15px;
	bottom: 15px;
	display: grid;
	place-content: center;
	z-index: 10000;
	opacity: 0;
	transition:all ease 0.5s;
}
.top_back.view{
	opacity: 1;
}
.top_back img{
	height: 13px;
	width: auto;
}
/* パンくずリスト
----------------------------------------------------------- */
.pan{
	margin-top: 15px;
}
.breadcrumb__list {
    display: flex;
	width: min(90%,1440px);
    margin-inline: auto;
    flex-wrap: wrap;
	font-size: 13px;
	line-height: 1.7;
}
.breadcrumb__item:not(:last-child)::after {
    content: '−';
    margin: 0 8px;
    color: #AAAAAA;
}
.breadcrumb__item a {
    color: #AAAAAA;
}
.breadcrumb__item:last-child a {
    color: #333333;
}
/* 
共通
----------------------------------------------------------- */ 
.pc {
	display:block;
}
br.pc{
	display: inherit;
}
.sp {
	display:none;
}
br.sp{
	display: none;
}
.pc1100{
	display: block;
}
br.pc1100{
	display: inherit;
}
.sp1100{
	display: none;
}
br.sp1100{
	display: none;
}
.pc640{
	display: block;
}
br.pc640{
	display: inherit;
}
.sp640{
	display: none;
}
br.sp640{
	display: none;
}
.inner{
	width: min(90%,1200px);
	margin-inline:auto;
	padding: clamp(50px, 6.8vw, 130px) 0;
}
.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex .img img{
	width: 100%;
	height: auto;
}
#main{
	overflow: hidden;
}
#container{
	position: relative;
}
.more_btn{
	display: block;
	width: min(100%,300px);
	color: #fff;
	text-align: center;
	padding: clamp(15px, 1.3vw, 25px);
	position: relative;
	background-color: var(--main-color);
	animation:morebtnOver .8s cubic-bezier(0.2, 0.5, 0.32, 0.8) 0s forwards;
	background-size:400% 100%
}
.more_btn:hover {
	animation:morebtnHover .8s cubic-bezier(0.2, 0.5, 0.32, 0.8) 0s forwards;
}
@keyframes morebtnHover {
	0% {
		background-position:132% 0;
		background-image:linear-gradient(to right, #3E5265 25%, #3E5265 25%, rgba(146,186,221,0.5) 50%,  #3E5265 75%, #3E5265 100%);
	}
	100% {
		background-position:66% 0;
		background-image:linear-gradient(to right, #3E5265 25%, #3E5265 25%, rgba(146,186,221,0.5) 50%,  #3E5265 75%, #3E5265 100%);
	}
}
@keyframes morebtnOver {
	0% {
		background-position:66% 0;
		background-image:linear-gradient(to right, #3E5265 25%, #3E5265 25%, rgba(146,186,221,0.5) 50%,  #3E5265 75%, #3E5265 100%);
	}
	100% {
		background-position:0 0;
		background-image:linear-gradient(to right, #3E5265 25%, #3E5265 25%, rgba(146,186,221,0.5) 50%,  #3E5265 75%, #3E5265 100%);
	}
}
.sub .more_btn{
	padding: clamp(10px, 0.8vw, 15px) clamp(40px, 3.1vw, 60px) clamp(10px, 0.8vw, 15px) 20px;
	text-align: left;
	font-size: var(--fontsize-15);
}
.more_btn.pdf{
	text-align: left;
}
.sub .more_btn.normal{
	padding: clamp(10px, 0.8vw, 15px) clamp(10px, 1vw, 20px);
	text-align: center;
}
.more_btn::before{
	content: "";
	position: absolute;
	right: clamp(10px, 1vw, 20px);
	top: 50%;
	transform: translateY(-50%);
	padding: clamp(15px, 0.94vw, 18px);
	background-image: url("./library/images/more_btn.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.more_btn.pdf::before{
	background-image: url("./library/images/more_btn_bdf.svg");
}
.anchor{
	padding-top: clamp(80px, 7.8vw, 150px);
    margin-top: calc(clamp(80px, 7.8vw, 150px) * -1);
}
.tac{
	text-align: center;
}
.tal{
	text-align: left;
}
.tar{
	text-align: right;
}
.taj{
	text-align: justify;
}
.linkbox{
	position: relative;
	z-index: 5;
}
.linkbox.tac a{
	margin: 0 auto;
}
.linkbox.tar a{
	margin: 0 0 0 auto;
}
.no_link{
	pointer-events: none !important;
}
.txt_only{
	width: 100% !important;
}
.txt_link{
	text-decoration: underline;
	transition: all ease 0.5s;
}
.txt_link:hover{
	opacity: 0.7;
}
.js-accordion > li{
	position: relative;
}
.js-accordion .ttl{
	padding-right: clamp(30px, 1.8vw, 35px);
	position: relative;
}
.js-accordion .ttl::before,
.js-accordion .ttl::after{
	content: "";
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 2px;
	transition: all ease 0.5s;
	background-color: var(--main-color);
}
.js-accordion .ttl::after {
	transform: rotate(-90deg);
}
.js-accordion .open .ttl::after {
	transform: rotate(0);
}
.js-accordion > li .btn{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 1;
}
.js-accordion .box {
	display: none;
}
.js-modal {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 10005;
    backface-visibility: hidden;
}
.js-modal .wrap {
    width: 100%;
    height: 100%;
}
.js-modal .wrap_box {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,0.6);
}
.js-modal .scloll_area {
	transform: scale(.5);
	transition: all ease 1s;
}
.js-modal.open .scloll_area {
	transform: scale(1);
}
.js-modal .content {
    width: 100%;
    height: auto;
    max-height: 85vh;
    position: relative;
	overflow-y: auto;
	overflow-x: hidden;
}
.js-modal .content > img {
    max-height: 85vh;
	width: auto;
}
.js-modal .js-sclollarea {
    width: auto;
	height: auto;
	max-width: 90%;
	margin: clamp(15px, 1.6vw, 30px);
    max-height: 90%;
	position: relative;
}
.js-modal .js-modalclose {
    cursor: pointer;
    z-index: 100000;
    position: absolute;
    top: calc(clamp(15px, 1.3vw, 25px) * -1);
    right: calc(clamp(15px, 1.3vw, 25px) * -1);
	width: clamp(30px, 2.6vw, 50px);
	height: clamp(30px, 2.6vw, 50px);
	background-image: url('./library/images/modal_close.svg');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	transition: all ease 0.5s;
}
.js-modal .js-modalclose:hover {
    transform: rotate(90deg);
}
.img_modal{
	position: relative;
}
.img_modal::before{
	content: "";
	position: absolute;
	right: 5px;
	bottom: 5px;
	width: 30px;
	height: 30px;
	background-image: url('./library/images/img_modal.svg');
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
}
.img_modal > img{
	width: 100%;
	height: auto;
}
.txt_box{
	padding: clamp(25px, 2.6vw, 50px) clamp(20px, 2vw, 40px);
	background-image: url('./library/images/txt_box_l.svg'),url('./library/images/txt_box_r.svg');
	background-size: auto 8px;
	background-position: top left,right bottom;
	background-repeat: no-repeat;
}
/* 
 TOP
----------------------------------------------------------- */ 
.home .inner{
	width: min(90%,1440px);
}
.top_h2{
	font-size: 16px;
	font-weight: 700;
	padding-left: 30px;
	background-image: url('./library/images/top_h2.svg');
	background-size: auto 20px;
	background-position: top 2px left;
	background-repeat: no-repeat;
	position: relative;
	z-index: 1;
}
.top_h2 span{
	display: block;
	font-family: "Michroma", sans-serif;
	font-size: clamp(49px, 4.9vw, 95px);
	color: rgba(189,195,199,0.3);
	line-height: 1;
	font-weight: 400;
}
.fv{
	width:100%;
	height:100vh;
	height: 100dvh;
	position: relative;
	z-index: 0;
	background-image: url('./library/images/fv01.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.fv::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to bottom, rgba(44,62,80,0.2), rgba(44,62,80,0.6));
	z-index: 1;
}
.fv .txt{
	position: absolute;
	z-index: 1;
	left: 6.5%;
	bottom: 8.5%;
	color: #9BBFD8;
	mix-blend-mode: color-dodge;
}
.fv .txt h1{
	font-family: "Noto Serif JP", serif;
	font-size: clamp(30px, 3.4vw, 65px);
}
.fv .txt p{
	font-size: clamp(15px, 1.3vw, 25px);
}
.top_concept::before{
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	width: 100%;
	height: 100vh;
	background-image: url('library/images/top_concept_bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.top_concept .move_txt {
	height: clamp(70px, 7.3vw, 140px);
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	background-image: url('./library/images/top_concept_txt.png');
	background-size: auto 100%;
	background-position: top right;
	background-repeat: repeat-x;
	animation: move_txt 60s infinite linear;
}
@keyframes move_txt {
	0% {
		background-position: bottom 5% right;
	}
	100% {
		background-position: bottom 5% right 3000px;
	}
}
.top_concept .flex{
	flex-direction: row-reverse;
	align-items: center;
}
.top_concept h3{
	text-align: center;
	margin: clamp(15px, 2.9vw, 55px) 0 clamp(25px, 2.6vw, 50px);
	font-size: clamp(19px, 1.5vw, 28px);
	font-weight: 700;
	color: var(--main-color);
	font-family: "Noto Serif JP", serif;
}
.top_concept .img{
	width: 50%;
	display: flex;
	justify-content: space-between;
}
.top_concept .txt{
	width: 45%;
}
.top_concept .img img{
	width: 47.5%;
}
.top_concept .img img:nth-of-type(odd){
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.top_concept .img img:nth-of-type(even){
	margin-top: clamp(25px, 2.6vw, 50px);
}
.top_concept .top_h2{
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.top_concept .txt_box{
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.top_strengths{
	background-color: #DBE2E8;
}
.top_strengths .inner{
	padding: clamp(60px, 8.3vw, 160px) 0;
}
.top_strengths .top_h2{
	margin-bottom: clamp(30px, 4.1vw, 80px);
}
.top_strengths .flex{
	align-items: flex-start;
}
.top_strengths .txt_box{
	width: 420px;
}
.top_strengths ul{
	width: 55.5%;
	position: relative;
	z-index: 2;
}
.top_strengths ul li{
	background: rgba(255,255,255,0.3);
	backdrop-filter: blur(5px) brightness(1.05);
	padding: clamp(15px, 1.3vw, 25px) clamp(20px, 2vw, 40px);
	display: flex;
	align-items: center;
}
.top_strengths ul li:not(:last-child){
	margin-bottom: 10px;
}
.top_strengths ul li span{
	font-family: "Michroma", sans-serif;
	font-size: clamp(23px, 1.7vw, 33px);
	width: 25px;
}
.top_strengths ul li p{
	font-size: clamp(15px, 1.3vw, 25px);
	font-family: "Noto Serif JP", serif;
	color: #2C3E50;
	padding-left: clamp(60px, 8.3vw, 160px);
	width: calc(100% - 25px);
	position: relative;
}
.top_strengths ul li p::before{
	content: "";
	position: absolute;
	left: clamp(5px, 2vw, 40px);
	top: 50%;
	transform: translateY(-50%);
	padding: clamp(20px, 2vw, 40px);
	background-image: url('library/images/icn_scope.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.top_strengths ul li:nth-child(2) p::before{
	background-image: url('library/images/icn_teeth.svg');
}
.top_strengths ul li:nth-child(3) p::before{
	background-image: url('library/images/icn_hospital.svg');
}
.top_strengths .top_h2 span{
	position: absolute;
	left: clamp(100px, 10.4vw, 200px);
	top: 30px;
	z-index: -1;
}
.top_primary{
	background-color: #FFFFFF;
	background-image: url('library/images/top_primary_bg.jpg');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
}
.top_primary .top_h2 span{
	margin: 15px 25px 0 -30px;
}
.top_primary .flex{
	justify-content: flex-start;
}
.top_primary ul{
	display: grid;
	gap: 10.5px;
	grid-template-columns: repeat(4, 1fr);
	margin-top: clamp(30px, 2.6vw, 50px);
}
.top_primary ul li{
	position: relative;
	transition: all ease 0.3s;
	background-color: #fff;
	display: grid;
	box-shadow: 0px 0px 30px 0px rgba(44, 62, 80, 0.1);
}
.top_primary ul li:hover{
	background-color: #E5ECF0;
}
.top_primary ul li > a {
	display: grid;
	grid-template-rows: auto 1fr auto;
	height: 100%;
}
.top_primary ul li .img {
	overflow: hidden;
}
.top_primary ul li .img img{
	aspect-ratio: 176 / 119;
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition:all ease-in 0.3s;
}
.top_primary ul li:hover .img img{
	transform:scale(1.05);
}
.top_primary ul li .txt{
	height: 100%;
	padding: clamp(25px, 2.6vw, 50px) clamp(20px, 2.6vw, 50px);
	display: grid;
	place-content: center;
	place-items: center start;
}
.top_primary ul li .txt h3{
	color: var(--main-color);
	font-size: var(--fontsize-20);
	text-align: center;
	margin-bottom: clamp(10px, 1.3vw, 25px);
}
.top_primary ul li .txt h3 span{
	display: block;
	font-size: 14px;
	color: #8AADCB;
	font-family: "Michroma", sans-serif;
	text-align: center;
}
.top_primary ul li .txt p{
	width: fit-content;
	margin: 0 auto;
	line-height: 1.5;
	padding-right: clamp(30px, 2vw, 40px);
	background-image: url("./library/images/more_btn.svg");
	background-position: center right;
	background-repeat: no-repeat;
	background-size: auto 100%;
}
.top_news{
	background-color: #fff;
}
.top_news .inner{
	padding: 0 0 clamp(40px, 4.9vw, 95px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.top_news .ttl{
	width: min(40%,440px);
}
.top_news ul{
	width: min(55.5%,800px);
}
.top_news .top_h2{
	margin-bottom: clamp(30px, 3.4vw, 65px);
	background-position: bottom 2px left;
}
.top_news .top_h2 span{
	margin: 0 0 15px -30px;
}
.top_news ul li:not(:last-child){
	margin-bottom: clamp(15px, 1vw, 20px);
}
.top_news ul li a{
	display: block;
	padding: clamp(15px, 1.6vw, 30px) clamp(50px, 4.4vw, 85px) clamp(15px, 1.6vw, 30px) clamp(15px, 3.4vw, 65px);
	border: 1px solid var(--sub-color);
	transition: all ease-in 0.3s;
	position: relative;
}
.top_news ul li a:hover{
	background-color: #E5ECF0;
}
.top_news ul li a::before{
	content: "";
	position: absolute;
	right: clamp(15px, 2vw, 40px);
	top: 50%;
	transform: translateY(-50%);
	padding: 12px;
	background-image: url("./library/images/more_btn.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.top_news ul li .news_info{
	margin-bottom: clamp(5px, 0.8vw, 15px);
}
.top_news ul li h3{
	font-size: var(--fontsize-16);
}
.top_blog{
	background-color: #F9F9F9;
}
.top_blog .top_h2{
	margin-bottom: clamp(20px, 1.6vw, 30px);
}
.top_blog .top_h2 span{
	position: absolute;
	right: 0;
	bottom: 0;
}
.top_blog ul{
	display: grid;
	gap: 20px;
	grid-template-columns: repeat(4, 1fr);
}
.top_blog ul li .img{
	margin-bottom: 12px;
}
.top_blog ul li .img img{
	width: 100%;
	height: 100%;
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: all ease-in 0.3s;
	filter: grayscale(1);
}
.top_blog ul li:hover .img img{
	filter: grayscale(0);
}
.top_blog ul li .news_date{
	margin-right: 0;
	margin-bottom: 5px;
	display: block;
}
.top_blog ul li .news_info{
	margin-bottom: 8px;
}
.top_blog ul li h3{
	font-size: var(--fontsize-16);
}
/* 
 subpage共通
----------------------------------------------------------- */
.sub{
	line-height: 2;
}
.sub .inner{
	width: min(90%,1000px);
	padding: clamp(40px, 4.9vw, 95px) 0;
}
.sub_fv {
	padding: clamp(130px, 15.1vw, 290px) 0 clamp(50px, 10.1vw, 190px);
	border-bottom: 1px solid #DEE1E3;
	background-image: url('./library/images/sub_fv.svg');
	background-size: auto 100%;
	background-position: top right;
	background-repeat: no-repeat;
	background-color: var(--bg-color);
}
.sub_fv h1 {
	font-size: 16px;
	font-weight: 700;
	width: min(90%,1440px);
	margin-inline: auto;
	position: relative;
	z-index: 1;
	padding-left: clamp(50px, 4.4vw, 85px);
}
.sub_fv h1::before {
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background-color: #707070;
	height: 1px;
	width: clamp(40px, 3.4vw, 65px);
}
.sub_fv h1 span{
	position: absolute;
	left: 0;
	top: 25%;
	transform: translateY(-50%);
	z-index: -1;
	display: block;
	font-family: "Michroma", sans-serif;
	color: rgba(189,195,199,0.2);
	font-size: clamp(55px, 6.8vw, 130px);
	line-height: 1;
	font-weight: 400;
}
.sub_sub_fv{
	padding: clamp(100px, 10.4vw, 200px) 0 clamp(70px, 6.8vw, 130px);
	position: relative;
	background-image: url('./library/images/sub_sub_fv.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	z-index: 0;
}
.sub_sub_fv::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(44,62,80,0.7);
	z-index: -1;
}
.sub_sub_fv h1 {
	font-size: clamp(20px, 1.7vw, 33px);
	width: min(90%,1440px);
	margin-inline: auto;
	color: #fff;
}
.sub_sub_fv h1 span {
	font-size: clamp(16px, 0.94vw, 18px);
	display: block;
}
.sub_sub_fv > span {
	position: absolute;
	right: 0;
	bottom: clamp(5px, 1.3vw, 25px);
	line-height: 1;
	font-family: "Michroma", sans-serif;
	font-size: clamp(40px, 3.6vw, 70px);
	color: #D1D1D1;
	mix-blend-mode: color-burn;
	text-align: right;
}
.bg_ttl{
	font-size: clamp(16px, 1vw, 20px);
	font-weight: 700;
	width: fit-content;
	color: #fff;
	background-color: var(--main-color);
	padding: 2px 15px 2px clamp(35px, 2.3vw, 45px);
	background-image: url('./library/images/bg_ttl.svg');
	background-size: auto clamp(14px, 0.94vw, 18px);
	background-position: center left 15px;
	background-repeat: no-repeat;
	margin-bottom: clamp(15px, 1.6vw, 30px);
}
.w_box{
	background-color: #fff;
	padding: clamp(20px, 2.6vw, 50px) clamp(20px, 5.2vw, 100px);
}
.sub_h2{
	text-align: center;
	font-size: var(--fontsize-25);
	font-family: "Noto Serif JP", serif;
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.sub_h2 span{
	display: block;
	font-size: 12px;
	color: var(--sub-font);
	font-family: "Michroma", sans-serif;
}
.sub_h2 small{
	display: block;
	font-size: var(--fontsize-18);
	color: var(--sub-color2);
	font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.sub_h2 em{
	font-size: var(--fontsize-15);
	font-style: normal;
}
.sub_h2_line{
	text-align: center;
	color: var(--main-color);
	font-size: var(--fontsize-25);
	position: relative;
	padding-bottom: clamp(15px, 1vw, 20px);
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.sub_h2_line::before{
	content: "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	height: 4px;
	width: clamp(60px, 4.1vw, 80px);
	background-image: linear-gradient(to right, #75818C, #75818C 50%, var(--sub-color) 50%, var(--sub-color));
	font-weight: 500;
}
.sub_h2_line span{
	display: block;
	font-family: "Michroma", sans-serif;
	color: rgba(44,62,80,0.1);
	font-size: clamp(28px, 2.6vw, 50px);
	line-height: 1.3;
	font-weight: 400;
}
.sub_sub_first{
	position: relative;
}
.sub_sub_first::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 120%;
	background-color: var(--sub-bg);
	z-index: -1;
	background-image: url("./library/images/sub_bg_texture.png");
}
.sub_sub_ttl{
	position: relative;
}
.sub_sub_ttl img{
	width: 100%;
	height: auto;
}
.sub_sub_h2{
	background-color: rgba(44,62,80,0.8);
	padding: clamp(15px, 1.3vw, 25px) clamp(15px, 2.6vw, 50px);
	color: #fff;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.sub_sub_h2 .ttl{
	font-size: clamp(17px, 1.5vw, 27px);
	font-family: "Noto Serif JP", serif;
}
.sub_sub_h2 p{
	text-align: center;
	line-height: 1.5;
	margin-top: 5px;
}
.sub_h3{
	background-image: linear-gradient(to bottom, var(--sub-color2), #446280);
	color: #fff;
	font-size: clamp(16px, 1vw, 20px);
	padding: 15px clamp(30px, 2.6vw, 50px);
	position: relative;
	margin-bottom: clamp(20px, 1.8vw, 35px)
}
.sub_h3::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 3px;
	width: clamp(20px, 1.3vw, 25px);
	background-color: #fff;
}
.sub_h3::after{
	content: "";
	position: absolute;
	right: -5px;
	bottom: -5px;
	width: 100%;
	height: 100%;
	border: 1px solid var(--sub-font);
	z-index: -1;
}
.contents_item:not(:last-of-type){
	margin-bottom: clamp(40px, 4.9vw, 95px);
}
.contents_item .flex{
	align-items: flex-start;
}
.contents_item .flex .img{
	width: 40%;
	border: 1px solid #DBDBDB;
}
.contents_item .flex .img img{
  width: 100%;
  height: 100%;
  aspect-ratio: 8 / 5;
	object-fit: cover;
}
.contents_item .flex .txt{
	width: 56.8%;
}
.contents_item .flex .sub_txt{
	font-size: 12px;
	color: #555555;
}
.contents_item .img_list{
	display: grid;
	gap: clamp(15px, 2.6vw, 50px);
	grid-template-columns: repeat(2, 1fr);
}
.contents_item .img_list img{
	max-width: none;
	width: 100%;
	height: auto;
	border: 1px solid #DBDBDB;
}
.contents_item .img_list p{
	text-align: center;
	margin-top: 10px;
}
.border_box{
	border: 1px solid var(--sub-color);
	padding: clamp(20px, 2.6vw, 50px);
}
.contents_item .border_box{
	margin-top: clamp(15px, 1.6vw, 30px);
}
.border_box .sub_h2{
	margin-bottom: clamp(15px, 1.6vw, 30px);
}
.youtube{
	width: 100%;
	aspect-ratio: 16 / 9;
	position: relative;
	padding-top: 56.25%;
}
.youtube iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.section_faq{
	background-color: #FAFAFA;
}
.faq_list li:not(:last-child){
	margin-bottom: 10px;
}
.faq_list li{
	padding: clamp(20px, 1.6vw, 30px) clamp(20px, 2vw, 40px);
	background-color: #F4F4F4;
}
.faq_list li .ttl{
	font-size: var(--fontsize-16);
	color: var(--main-color);
}
.faq_list li .ttl span{
	font-family: "Michroma", sans-serif;
	padding-right: 10px;
}
.faq_list li .box{
	background-color: #fff;
	padding: clamp(15px, 1vw, 20px) clamp(15px, 1.6vw, 30px);
	margin-top: clamp(15px, 1vw, 20px);
}
.under_ttl{
	font-size: var(--fontsize-25);
	color: var(--main-color);
	width: fit-content;
	margin: 0 auto clamp(15px, 1.6vw, 30px);
	border-bottom: 1px solid var(--main-color);
	font-family: "Noto Serif JP", serif;
}
.check_list li{
	padding-left: clamp(30px, 2vw, 40px);
	position: relative;
	z-index: 1;
	font-size: var(--fontsize-18);
}
.check_list li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 8px;
	padding: clamp(10px, 0.63vw, 12px);
	background-image: url('./library/images/check_list.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.check_list.not li::before{
	background-image: url('./library/images/check_not.svg');
}
.check_list li:not(:last-child){
	margin-bottom: 5px;
}
.double_box{
	border: 5px double var(--sub-color);
	padding: clamp(20px, 2vw, 40px);
	background-image: url("./library/images/sub_bg_texture.png");
	background-color: #FAFAFA;
}
.rl_ttl{
	font-family: "Noto Serif JP", serif;
	font-size: var(--fontsize-20);
	color: var(--sub-color2);
	margin-bottom: clamp(10px, 1vw, 20px);
	display: flex;
	align-items: center;
	font-weight: 700;
}
.rl_ttl::after {
	content: "";
	background-color: rgba(96,127,157,0.3);
	flex-grow: 1;
	height: 1px;
	margin-left: 10px;
}
.sub_h4{
	font-size: var(--fontsize-16);
	font-weight: 700;
	color: var(--sub-color2);
	padding-bottom: 7px;
	padding-left: 20px;
	border-bottom: 1px solid var(--sub-color2);
	position: relative;
	margin-bottom: 1em;
}
.sub_h4::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 5px;
	height: 100%;
	background-image: linear-gradient(to bottom, var(--sub-color), var(--sub-color2));
}
.g_box{
	padding: clamp(20px, 2.6vw, 50px);
	background-color: var(--sub-bg);
	background-image: url('./library/images/sub_bg_texture.png');
}
.hyo,
.hyo2,
.hyo3 {
	overflow-x: auto;
}
.hyo dl,
.hyo2 dl,
.hyo3 dl {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.hyo dl:not(:last-of-type),
.hyo2 dl:not(:last-of-type),
.hyo3 dl:not(:last-of-type) {
	margin-bottom: 4px;
}
.hyo dl dt {
	width: clamp(150px, 18.2vw, 350px);
	background-color: rgba(44,62,80,0.15);
	padding: clamp(10px, 0.8vw, 15px) clamp(10px, 1.6vw, 30px);
}
.hyo dl dd {
	width: calc(100% - clamp(150px, 18.2vw, 350px));
	padding: clamp(10px, 0.8vw, 15px) clamp(10px, 2vw, 40px);
	border-bottom: 1px solid rgba(44,62,80,0.2);
}
.hyo2 dl dt {
	width: clamp(150px, 13vw, 250px);
	background-color: #EBEDEE;
	padding: clamp(10px, 0.8vw, 15px);
	display: grid;
	place-content: center;
	place-items: center start;
}
.hyo2 dl dd {
	width: calc(100% - clamp(150px, 13vw, 250px));
	padding: clamp(10px, 0.8vw, 15px) clamp(10px, 1.6vw, 30px);
	border-bottom: 1px solid #EBEDEE;
}
.hyo3 dl dt {
	width: clamp(60px, 5.2vw, 100px);
	background-color: #EBEDEE;
	padding: clamp(10px, 0.8vw, 15px);
	display: grid;
	place-content: center;
	place-items: center start;
	background-image: linear-gradient(to bottom, var(--sub-color2), #446280);
	color: #fff;
}
.hyo3 dl dd {
	width: calc(100% - clamp(60px, 5.2vw, 100px));
	padding: clamp(10px, 0.8vw, 15px) clamp(10px, 1vw, 20px);
	border-bottom: 1px solid rgba(0, 0, 0, 0.16);
}
.num_list li:not(:last-child){
	margin-bottom: clamp(15px, 1.6vw, 30px);
}
.num_list li{
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}
.num_list li span{
	width: clamp(55px, 4.1vw, 80px);
	padding-right: clamp(20px, 2vw, 40px);
	position: relative;
	display: block;
	color: var(--sub-color2);
	font-size: var(--fontsize-20);
	font-family: "Michroma", sans-serif;
}
.num_list li span::before{
	content: "";
	position: absolute;
	right: clamp(5px, 0.5vw, 10px);
	top: 50%;
	transform: translateY(-50%);
	height: 1px;
	width: clamp(15px, 1vw, 20px);
	background-color: rgba(44,62,80,0.3);
}
.num_list li p{
	width: calc(100% - clamp(55px, 4.1vw, 80px));
}
.line_box{
	background-color: #fff;
	box-shadow: 0px 3px 30px 0px rgba(0, 0, 0, 0.1);
	padding: clamp(20px, 2.6vw, 50px);
	border: 1px solid #DEE3E6;
}
.bb_ttl{
	font-size: 16px;
	padding-bottom: 10px;
	margin-bottom: 5px;
	border-bottom: 1px solid #E6E8EB;
	position: relative;
}
.bb_ttl::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: -1px;
	height: 1px;
	width: clamp(30px, 2.6vw, 50px);
	background-color: var(--main-color);
}
.flow_list li:not(:last-child){
	margin-bottom: clamp(20px, 1.6vw, 30px);
}
.flow_list li{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.flow_list li > span{
	width: clamp(40px, 6.2vw, 120px);
	height: clamp(40px, 6.2vw, 120px);
	border-radius: 60px;
	background-color: var(--main-color);
	color: #fff;
	line-height: 1;
	font-family: "Michroma", sans-serif;
	font-size: clamp(17px, 1.7vw, 33px);
	display: grid;
	place-content: center;
	place-items: center center;
	position: relative;
}
.flow_list li > span::before{
	content: "";
	position: absolute;
	right: calc(clamp(25px, 3.1vw, 60px) * -1);
	top: 50%;
	transform: translateY(-50%);
	padding: clamp(10px, 0.94vw, 18px);
	background-image: url("./library/images/referral_howto_span.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.flow_list li .box{
	width: calc(100% - clamp(35px, 6.2vw, 120px) - clamp(25px, 4.1vw, 80px));
	background-color: #FFFFFF;
	padding: clamp(20px, 2vw, 40px) clamp(20px, 4.1vw, 80px);
}
.flow_list li .ttl{
	font-weight: 700;
	font-size: clamp(17px, 1vw, 20px);
	color: var(--main-color);
	margin-bottom: clamp(10px, 1vw, 20px);
	font-family: "Noto Serif JP", serif;
}
.flow_list li .linkbox{
	margin-top: clamp(10px, 1vw, 20px);
}
.flow_list li .more_btn::before{
	transform: translateY(-50%) rotate(90deg);
}
.big_btn{
	display: block;
	padding: clamp(20px, 3.4vw, 65px) clamp(70px, 7.6vw, 145px) clamp(20px, 3.4vw, 65px) clamp(20px, 4.9vw, 95px);
	background-image: url('./library/images/clinic_first_link.jpg');
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	position: relative;
	z-index: 0;
	color: #fff;
}
.big_btn::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(44,62,80,0.7);
	transition: all ease 0.5s;
	z-index: -1;
}
.big_btn:hover::before{
	background-color: rgba(80,115,150,0.7);
}
.big_btn::after{
	content: "";
	position: absolute;
	right: clamp(20px, 4.9vw, 95px);
	top: 50%;
	transform: translateY(-50%);
	padding: clamp(12px, 0.94vw, 18px);
	background-image: url("./library/images/arrow_w.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.big_btn .ttl{
	font-size: clamp(20px, 1.5vw, 28px);
	font-family: "Noto Serif JP", serif;
	margin-bottom: clamp(8px, 0.8vw, 15px);
}
.case_flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.case_flex .img{
	width: 39%;
}
.case_flex .txt{
	width: 57.5%;
}
.case_flex .txt .linkbox{
	margin-top: clamp(10px, 1vw, 20px);
}
.maru_txt{
	padding-left: clamp(25px, 1.8vw, 35px);
	position: relative;
}
.maru_txt::before{
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	width: clamp(18px, 1.3vw, 25px);
	height: clamp(18px, 1.3vw, 25px);
	border-radius: 18px;
	background-color: #D8E2ED;
	border: 5px solid var(--sub-color2);
	box-sizing: border-box;
}
.scroll-hint {
	overflow-x: auto !important;
	overflow-y: hidden !important;
}
.scroll-hint-icon {
	top: 50% !important;
	left: 50% !important;
	transform: translate(-50%,-50%) !important;
}
.table{
	overflow: auto;
}
.table table{
	min-width: 650px;
	width: 100%;
	line-height: 1.5;
	border-collapse: separate;
}
.table th:first-child,
.table td:first-child {
	position: sticky;
	left: 0;
	z-index: 2;
	white-space: nowrap;
}
.table thead th:first-child {
	z-index: 3;
}
.table thead th{
	padding: clamp(10px, 0.8vw, 15px);
	font-weight: 500;
	color: var(--main-color);
	text-align: center;
	vertical-align: middle;
	border-bottom: 1px solid #FFFFFF;
	background-color: var(--mainsub-color);
}
.table thead th:not(:last-child),
.table thead td{
	border-right: 1px solid #FFFFFF;
}
.table thead th:nth-child(3){
	background-color: #CFDFE1;
	color: #294448;
}
.table thead td{
	background-color: #F1F2F3;
	border-bottom: 1px solid #FFFFFF;
}
.table tbody tr th{
	background-color: #F1F2F3;
	vertical-align: middle;
	color: var(--main-color);
	padding: clamp(10px, 0.8vw, 15px);
	font-weight: 500;
	width: 16.5%;
	border-right: 1px solid #fff;
}
.table tbody tr:not(:last-child) th{
	border-bottom: 1px solid #fff;
}
.table tbody tr td{
	padding: clamp(10px, 0.8vw, 15px);
	background-color: rgba(217,220,224,0.5);
	width: 41.75%;
	text-align: center;
	vertical-align: middle;
	font-size: var(--fontsize-15);
}
.table tbody tr:not(:last-child) td{
	border-bottom: 1px solid #fff;
}
.table tbody tr td:nth-child(2){
	border-right: 1px solid #fff;
}
.table tbody tr td:nth-child(3){
	background-color: rgba(207,223,225,0.5);
}
.gray_box{
	background-color: #EEEFF0;
	padding: clamp(20px, 2.6vw, 50px) clamp(20px, 5.2vw, 100px);
}
.maru_list li:not(:last-child){
	margin-bottom: clamp(15px, 1.3vw, 25px);
}
.maru_list li{
	line-height: 1.5;
	padding-left: clamp(20px, 1.3vw, 25px);
	position: relative;
}
.maru_list li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: var(--sub-color2);
}
.maru_list_mini li:not(:last-child){
	margin-bottom: clamp(8px, 0.8vw, 15px);
}
.maru_list_mini li{
	line-height: 1.5;
	padding-left: clamp(15px, 1vw, 20px);
	position: relative;
	font-size: var(--fontsize-15);
	color: #444;
}
.maru_list_mini li::before{
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	width: 8px;
	height: 8px;
	border-radius: 5px;
	background-color: #8AADCB;
}
.img_link{
	height: clamp(125px, 12.5vw, 240px);
	position: relative;
	z-index: 0;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	padding: clamp(25px, 2.6vw, 50px) clamp(60px, 3.6vw, 70px) clamp(25px, 2.6vw, 50px) clamp(25px, 2.6vw, 50px);
	display: grid;
	place-items: center start;
}
.img_link::before{
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(44,62,80,0.7);
	transition: all ease 0.5s;
	z-index: -1;
}
.img_link:hover::before{
	background-color: rgba(80,115,150,0.7);
}
.img_link::after{
	content: "";
	position: absolute;
	right: clamp(25px, 2.6vw, 50px);
	top: 50%;
	transform: translateY(-50%);
	padding: clamp(12px, 0.94vw, 18px);
	background-image: url("./library/images/arrow_w.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.img_link .ttl{
	font-size: var(--fontsize-22);
	color: #fff;
	font-family: "Noto Serif JP", serif;
}
.kado_box{
	margin: 4px;
	position: relative;
	z-index: 0;
}
.kado_box::before,
.kado_box::after{
	content: "";
	position: absolute;
	background-image: url('./library/images/fee_limits.svg');
	background-size: contain;
	background-position: top left;
	background-repeat: no-repeat;
	padding: clamp(13px, 0.8vw, 15px);
	z-index: -1;
}
.kado_box::before{
	left: -4px;
	top: -4px;
}
.kado_box::after{
	right: -4px;
	bottom: -4px;
	transform: scale(-1,-1);
}
.kado_box > div{
	background-color: #fff;
	padding: clamp(25px, 2.6vw, 50px) clamp(20px, 1.3vw, 25px);
	width: 100%;
	height: 100%;
}
.important_txt{
	padding-left: 30px;
	position: relative;
	z-index: 1;
	color: #C65151;
}
.important_txt::before{
	content: "";
	position: absolute;
	left: 0;
	top: 6px;
	padding: 11px;
	background-image: url('./library/images/important_txt.svg');
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.important_list .gray_box{
	padding: clamp(35px, 3.4vw, 65px) clamp(20px, 2.6vw, 50px) clamp(20px, 2.6vw, 50px);
	position: relative;
	z-index: 0;
}
.important_list .gray_box::before{
	content: "";
	position: absolute;
	left: 50%;
	top: calc(clamp(15px, 1.6vw, 30px) * -1);
	transform: translateX(-50%);
	width: 1px;
	height: clamp(40px, 3.1vw, 60px);
	background-color: var(--main-color);
}
.important_list .under_ttl{
	margin-bottom: clamp(10px, 0.83vw, 16px);
	color: #CC6A6A;
	border-bottom: 1px solid #CC6A6A;
}
.important_list .tac{
	margin-bottom: clamp(20px, 2.3vw, 45px);
}
/* 
 concept
----------------------------------------------------------- */
.concept .inner{
	width: min(90%,1440px);
}
.concept p{
	line-height: 2.5;
}
.concept_ttl{
	margin-bottom: clamp(25px, 2.6vw, 50px);
	font-size: clamp(25px, 2vw, 40px);
	font-family: "Noto Serif JP", serif;
	color: var(--main-color);
}
.concept_ttl span{
	display: block;
	font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	font-size: var(--fontsize-18);
	margin-top: 10px;
	padding-left: clamp(50px, 4.4vw, 85px);
	position: relative;
}
.concept_ttl span::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	height: 1px;
	width: clamp(40px, 3.4vw, 65px);
	background-color: rgba(44,62,80,0.2);
}
.concept_read{
	width: 95%;
	margin: 0 auto;
	background-color: var(--main-color);
	background-image: url("./library/images/sub_bg_texture.png");
	margin-top: 15px;
	position: relative;
}
.concept_read::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 130%;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	background-color: #fff;
	z-index: -1;
}
.concept_read .inner{
	padding: clamp(70px, 7.6vw, 145px) 0;
	color: #fff;
	display: grid;
	place-content: center;
	place-items: center start;
}
.concept_read .concept_ttl{
	color: #fff;
}
.concept_read .concept_ttl span::before{
	background-color: rgba(255,255,255,0.2);
}
.concept_read p{
	color: #C6D1DE;
}
.concept_read .bg_ttl{
	color: var(--main-color);
	background-color: #fff;
	background-image: url('./library/images/bg_ttl_b.svg');
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.concept_read .img img{
	width: clamp(140px, 18.2vw, 350px);
	height: auto;
	position: absolute;
}
.concept_read .img img:first-of-type{
	left: clamp(25px, 2.6vw, 50px);
	top: clamp(25px, 2.6vw, 50px);
}
.concept_read .img img:last-of-type{
	right: clamp(25px, 2.6vw, 50px);
	bottom: clamp(25px, 2.6vw, 50px);
}
.concept_visualization{
	background-color: #fff;
	position: relative;
	background-image: url('./library/images/concept_visualization_bg.png');
	background-size: 50% auto;
	background-position: bottom clamp(30px, 3.4vw, 65px) right;
	background-repeat: no-repeat;
}
.concept_visualization > span{
	position: absolute;
	left: 2.5%;
	top: clamp(30px, 3.4vw, 65px);
	display: block;
	font-family: "Michroma", sans-serif;
	color: rgba(189,195,199,0.2);
	font-size: clamp(30px, 3.4vw, 65px);
	line-height: 1.5;
}
.concept_visualization .inner{
	padding: clamp(120px, 11.5vw, 220px) 0 clamp(30px, 3.4vw, 65px);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}
.concept_visualization .txt{
	width: 40.5%;
	padding-top: clamp(30px, 3.4vw, 65px);
}
.concept_visualization .img{
	width: 53%;
}
.concept_visualization .img img:first-of-type{
	width: clamp(330px, 25vw, 480px);
	height: auto;
}
.concept_visualization .img img:last-of-type{
	width: clamp(420px, 36.5vw, 700px);
	height: auto;
	margin: clamp(25px, 2.6vw, 50px) 0 0 auto;
}
.concept_cycle{
	background-image: url("./library/images/sub_bg_texture.png");
	background-color: var(--sub-bg);
}
.concept_cycle .bg_ttl{
	margin-bottom: clamp(20px, 2vw, 40px);
}
.concept_cycle .inner{
	padding: clamp(30px, 3.4vw, 65px) 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row-reverse;
	align-items: center;
}
.concept_cycle .img{
	width: 50%;
}
.concept_cycle .txt{
	width: 45%;
}
.concept_cycle .img img{
	width: 100%;
	height: auto;
}
.concept_protect{
	position: relative;
	background-color: #fff;
	z-index: 0;
}
.concept_protect > span{
	position: absolute;
	left: 2.5%;
	top: clamp(25px, 3.1vw, 60px);
	display: block;
	font-family: "Michroma", sans-serif;
	color: rgba(189,195,199,0.2);
	font-size: clamp(30px, 3.4vw, 65px);
	line-height: 1.5;
	z-index: -1;
}
.concept_protect .inner{
	padding: clamp(110px, 10.9vw, 210px) 0 clamp(100px, 8.3vw, 160px);
}
.concept_protect .inner > img{
	width: 100%;
	height: auto;
	margin-bottom: clamp(30px, 4.1vw, 80px);
}
.concept_protect .concept_ttl{
	margin-bottom: 0;
	margin-right: clamp(25px, 2.6vw, 50px);
}
.concept_protect .ttl{
	display: flex;
	justify-content: center;
	align-items: flex-end;
	flex-wrap: wrap;
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.concept_protect .flex .txt{
	width: 60%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.concept_protect .flex .img{
	width: 35%;
}
.concept_protect .flex .txt p{
	width: 47.5%;
}
.concept_thought::before{
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	width: 100%;
	height: 100vh;
	background-image: url('library/images/so_lastly_bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.concept_thought .inner{
	padding: clamp(50px, 6.8vw, 130px) 0;
}
.concept_thought .w_box{
	width: min(100%,900px);
	margin: 0 auto;
	padding: clamp(24px, 3.4vw, 65px);
}
.concept_thought .w_box h2{
	text-align: center;
	margin-bottom: clamp(20px, 2vw, 40px);
	font-size: clamp(21px, 1.7vw, 33px);
	color: var(--main-color);
	font-family: "Noto Serif JP", serif;
}
.concept_thought .w_box p{
	text-align:center;
}
.concept_thought .w_box p b{
	text-decoration: underline;
}
.concept_thought .w_box .big{
	margin-top: clamp(20px, 2vw, 40px);
	line-height: 2;
	font-size: var(--fontsize-20);
	color: var(--main-color);
	font-family: "Noto Serif JP", serif;
	font-weight: 700;
}
/* 
 care
----------------------------------------------------------- */
.care .sub_h2_line{
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.care .ttl{
	display: flex;
	align-items: flex-end;
	margin-bottom: clamp(30px, 3.4vw, 65px);
	flex-wrap: wrap;
}
.care .ttl .sub_h2_line{
	margin-bottom: 0;
	margin-right: clamp(30px, 5.5vw, 105px);
	text-align: left;
}
.care .ttl .sub_h2_line::before{
	left: 0;
	transform: translateX(0%);
}
.care .ttl p{
	margin-top: 20px;
}
.care .inner{
	width: min(90%,1440px);
}
.care_about{
	position: relative;
}
.care_about::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 25%;
	width: 100%;
	height: 100%;
	background-color: var(--sub-bg);
	z-index: -1;
	background-image: url("./library/images/sub_bg_texture.png");
}
.care_about .inner{
	padding-bottom: clamp(50px, 6.8vw, 130px);
}
.care_about .flex{
	align-items: flex-start;
}
.care_about .txt{
	width: 45%;
}
.care_about .img{
	width: 50%;
	display: flex;
	justify-content: space-between;
}
.care_about .img img{
	width: 47.5%;
}
.care_about .img img:nth-of-type(odd){
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.care_about .img img:nth-of-type(even){
	margin-top: clamp(25px, 2.6vw, 50px);
}
.care_about .txt p{
	line-height: 2.5;
}
.care_about .txt p b{
	text-decoration: underline;
}
.care_flow .inner{
	padding: 0 0 clamp(50px, 6.8vw, 130px);
}
.flow_list li > span > span{
	display: block;
	text-align: center;
	font-size: clamp(8px, 0.83vw, 16px);
}
.care_flow .flow_list li .box{
	background-color: var(--sub-bg);
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
}
.care_flow .flow_list li .box > img{
	width: clamp(70px, 6.2vw, 120px);
	height: auto;
}
.care_flow .flow_list li .box > .txt{
	width: calc(92.5% - clamp(70px, 6.2vw, 120px));
}
.care_flow .flow_list li .txt_link{
	color: var(--sub-color2);
}
.care_flow .flow_list li i{
	margin-left: 5px;
}
.care_flow .flow_list li .txt > img{
	margin-top: clamp(10px, 1vw, 20px);
}
.care_our{
	background-color: var(--sub-bg);
	background-image: url('./library/images/sub_bg_texture.png');
}
.care_our ul{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	position: relative;
}
.care_our ul::before,
.care_our ul::after{
	content: "";
	position: absolute;
	left: 0;
	width: 100vw;
	margin: 0 calc(50% - 50vw);
	height: 1px;
	background-color: var(--sub-color);
}
.care_our ul::before{
	top: 0;
}
.care_our ul::after{
	bottom: 0;
}
.care_our ul li{
	position: relative;
	transition: all ease 0.3s;
	background-color: #fff;
	display: grid;
	box-shadow: 0px 0px 30px 0px rgba(44, 62, 80, 0.1);
	margin: 20px;
	z-index: 0;
}
.care_our ul li::before{
	content: "";
	position: absolute;
	right: -20px;
	top: -20px;
	height: calc(100% + 40px);
	border-right: 1px dashed var(--sub-color);
	z-index: 1;
	z-index: -1;
}
.care_our ul li:first-child::after{
	content: "";
	position: absolute;
	left: -20px;
	top: -20px;
	height: calc(100% + 40px);
	border-right: 1px dashed var(--sub-color);
	z-index: -1;
}
.care_our ul li:hover{
	background-color: #E5ECF0;
}
.care_our ul li > a {
	display: grid;
	grid-template-rows: auto 1fr auto;
	height: 100%;
}
.care_our ul li .img {
	overflow: hidden;
}
.care_our ul li .img img{
	aspect-ratio: 64 / 43;
	object-fit: cover;
	width: 100%;
	height: 100%;
	transition:all ease-in 0.3s;
}
.care_our ul li:hover .img img{
	transform:scale(1.05);
}
.care_our ul li a > div{
	height: 100%;
	display: flex;
	flex-direction: column;
}
.care_our ul li .txt{
	padding: clamp(20px, 1.3vw, 25px) clamp(15px, 1vw, 20px) clamp(15px, 1vw, 20px) clamp(15px, 1vw, 20px);
	display: grid;
	place-content: center;
}
.care_our ul li .txt h3{
	color: var(--main-color);
	font-size: var(--fontsize-20);
	text-align: center;
	margin-bottom: clamp(10px, 0.83vw, 16px);
}
.care_our ul li .txt h3 span{
	display: block;
	font-size: 14px;
	color: #8AADCB;
	font-family: "Michroma", sans-serif;
	text-align: center;
}
.care_our ul li .txt p{
	line-height: 1.5;
	text-align: center;
}
.care_our ul li .linkbox{
	margin-top: auto;
}
.care_our ul li .more_btn{
	width: 100%;
}
.care_our ul li:hover .more_btn {
	animation:morebtnHover .8s cubic-bezier(0.2, 0.5, 0.32, 0.8) 0s forwards;
}
.care_general .inner{
	padding-bottom: clamp(50px, 6.8vw, 130px);
}
.care_general .tac{
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.care_general .inner > ul{
	padding: clamp(25px, 2.6vw, 50px) 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	position: relative;
	z-index: 0;
}
.care_general .inner > ul::before{
	content: "";
	position: absolute;
	right: 0;
	top: 0;
	width: 85vw;
	height: 100%;
	background-color: var(--sub-bg);
	z-index: -1;
	background-image: url("./library/images/sub_bg_texture.png");
	margin: 0 calc(50% - 50vw);
}
.care_general .inner > ul > li{
	padding: clamp(20px, 1.6vw, 30px) clamp(70px, 6.8vw, 130px) clamp(20px, 1.6vw, 30px) clamp(20px, 2.6vw, 50px);
	background-color: #fff;
	border: 1px solid var(--sub-color);
	display: flex;
	flex-direction: column;
	position: relative;
}
.care_general .inner > ul > li::before{
	content: "";
	position: absolute;
	right: clamp(20px, 2.6vw, 50px);
	top: clamp(20px, 1.6vw, 30px);
	padding: clamp(20px, 1.6vw, 30px);
	background-image: url("./library/images/icn_cavities.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.care_general .inner > ul > li:nth-child(2)::before{
	background-image: url("./library/images/icn_periodontal.svg");
}
.care_general .inner > ul > li:nth-child(3)::before{
	background-image: url("./library/images/icn_dentures.svg");
}
.care_general .inner > ul > li:nth-child(4)::before{
	background-image: url("./library/images/icn_mouthpiece.svg");
}
.care_general .inner > ul > li:nth-child(5)::before{
	background-image: url("./library/images/icn_mtm.svg");
}
.care_general .inner > ul > li:nth-child(6)::before{
	background-image: url("./library/images/icn_kids.svg");
}
.care_general .inner > ul > li:nth-child(7)::before{
	background-image: url("./library/images/icn_prevention.svg");
}
.care_general .inner > ul > li:nth-child(8)::before{
	background-image: url("./library/images/icn_pmtc.svg");
}
.care_general .inner > ul > li:nth-child(9)::before{
	background-image: url("./library/images/icn_ceramic.svg");
}
.care_general .inner > ul > li:nth-child(10)::before{
	background-image: url("./library/images/icn_whitening.svg");
}
.care_general .inner > ul > li:nth-child(11)::before{
	background-image: url("./library/images/icn_implant.svg");
}
.care_general .inner > ul > li:last-child{
	grid-column: 1 / -1;
}
.care_general .inner > ul > li h3{
	font-size: var(--fontsize-18);
	margin-bottom: clamp(8px, 0.8vw, 15px);
	font-weight: 700;
	color: var(--main-color);
}
.care_general .inner > ul > li p{
	font-size: var(--fontsize-15);
}
.care_general .inner > ul > li:nth-child(1) p{
	margin-bottom: clamp(15px, 1.3vw, 25px);
}
.care_general .inner > ul > li .linkbox{
	margin-top: auto;
}
.care_general .maru_list_mini{
	margin-top: clamp(10px, 0.8vw, 15px);
}
/* 
 second opinion
----------------------------------------------------------- */
.so_about{
	position: relative;
}
.so_about::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 130%;
	background-color: var(--sub-bg);
	z-index: -1;
	background-image: url("./library/images/sub_bg_texture.png");
}
.so_about h2{
	text-align: center;
	margin-bottom: clamp(28px, 2.8vw, 53px);
	font-family: "Noto Serif JP", serif;
	font-size: var(--fontsize-25);
}
.so_about .w_box{
	padding: clamp(35px, 3.4vw, 65px) clamp(20px, 2.6vw, 50px) clamp(20px, 2.6vw, 50px);
	position: relative;
	z-index: 0;
}
.so_about .w_box::before{
	content: "";
	position: absolute;
	left: 50%;
	top: calc(clamp(15px, 1.6vw, 30px) * -1);
	transform: translateX(-50%);
	width: 1px;
	height: clamp(40px, 3.1vw, 60px);
	background-color: var(--main-color);
}
.so_overview{
	background-color: var(--bg-color);
}
.so_overview .sub_h2_line{
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.so_overview .grid{
	display: grid;
	gap: clamp(25px, 2.6vw, 50px);
	grid-template-columns: repeat(2, 1fr);
	margin: clamp(15px, 1.6vw, 30px) 0;
}
.so_overview .gray_box{
	padding: clamp(25px, 2.6vw, 50px) clamp(20px, 1.8vw, 35px);
}
.so_overview .kado_box > div{
	padding: clamp(20px, 2vw, 40px) clamp(15px, 1.3vw, 25px);
}
.so_overview .gray_box .sub_h2{
	margin-bottom: clamp(15px, 1.6vw, 30px);
}
.so_overview .contents_item:first-of-type{
	margin-top: clamp(40px, 4.1vw, 80px);
}
.so_overview .contents_item:nth-of-type(2) .check_list{
	margin-top: clamp(15px, 1.3vw, 25px);
}
.so_overview .contents_item .hyo2{
	margin: clamp(15px, 1.3vw, 25px) 0;
}
.so_overview .hyo2 dl dt {
	place-content: inherit;
	width: 30%;
}
.so_overview .hyo2 dl dd {
	width: 70%;
}
.so_process{
	background-color: var(--sub-bg);
	background-image: url('./library/images/sub_bg_texture.png');
}
.so_process .flow_list{
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.so_process .sub_h4{
	margin-bottom: clamp(15px, 1.3vw, 25px);
}
.so_process .hyo{
	margin-bottom: 1em;
}
.so_important{
	background-color: var(--bg-color);
}
.so_faq .faq_list{
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.so_form{
	background-color: #F0F0F0;
}
.so_form .sub_h2_line{
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.so_form .box{
	background-color: #fff;
	padding: clamp(20px, 3.4vw, 65px);
	box-shadow: 0px 3px 30px 0px rgba(44, 62, 80, 0.08);
}
.so_form .box .wpcf7{
	width: min(100%,800px);
	margin: 0 auto;
}
.so_form .box .wpcf7 dl:nth-of-type(3) .wpcf7-text{
	width: 80px !important;
	margin-right: 10px;
}
.so_form .box .wpcf7 dl:nth-of-type(9) .sub_txt{
	margin-top: clamp(10px, 1.3vw, 25px);
}
.so_form .box .wpcf7 dl:nth-of-type(15) .sub_txt{
	margin-bottom: clamp(5px, 1vw, 20px);
}
.so_form .box .gray_box{
	display: grid;
	place-content: center;
}
.so_form .box .gray_box h3{
	text-align: center;
	margin-bottom: clamp(10px, 1vw, 20px);
	font-size: var(--fontsize-20);
	font-family: "Noto Serif JP", serif;
}
.so_form .box .gray_box .important_txt{
	margin: clamp(15px, 1.3vw, 25px) auto 0;
	width: fit-content;
}
.form_modal .content{
	background-color: #fff;
	padding: clamp(30px, 3.1vw, 60px) clamp(25px, 2.6vw, 50px);
}
.form_modal .js-modalclose{
	top: 20px;
	right: 20px;
	background-image: url('./library/images/form_modal_close.svg');
	width: 20px;
	height: 20px;
}
.form_modal .js-sclollarea {
	width: min(90%,900px);
}
#modal_privacy .under_ttl{
	margin-bottom: clamp(20px, 2.3vw, 45px);
}
.form_modal .privacy p,
.form_modal .privacy ol{
	font-size: 14px;
}
.form_modal .privacy ol li{
	margin-top: clamp(15px, 1.6vw, 30px);
}
.form_modal .privacy ol li h4{
	border-bottom: 1px solid var(--font-color);
	padding-bottom: 5px;
	margin-bottom: 5px;
}
.so_referring{
	background-image: url('./library/images/so_referring_bg.png');
	background-size: auto 100%;
	background-position: top right;
	background-repeat: no-repeat;
	background-color: var(--bg-color);
}
.so_referring .line_box{
	margin-top: clamp(15px, 1.6vw, 30px);
}
.so_lastly::before{
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	width: 100%;
	height: 100vh;
	background-image: url('library/images/so_lastly_bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.so_lastly .w_box{
	width: min(100%,900px);
	margin: 0 auto;
	padding: clamp(30px, 3.4vw, 65px);
}
.so_lastly .w_box h2{
	text-align: center;
	margin-bottom: clamp(20px, 2vw, 40px);
	font-size: clamp(21px, 1.7vw, 33px);
	color: var(--main-color);
	font-family: "Noto Serif JP", serif;
}
.so_lastly .w_box p{
	text-align: center;
	line-height: 2.5;
}
/* 
 fee
----------------------------------------------------------- */
.fee .sub_h2_line{
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.fee_read{
	position: relative;
}
.fee_read::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 130%;
	background-color: var(--sub-bg);
	z-index: -1;
	background-image: url("./library/images/sub_bg_texture.png");
}
.fee_read .inner{
	padding-bottom: clamp(50px, 6.8vw, 130px);
}
.fee_read .border_box{
	padding: clamp(20px, 1.6vw, 30px) clamp(20px, 2vw, 40px);
	margin: clamp(15px, 1.3vw, 25px) 0;
}
.fee_comparison .double_box{
	margin-top: clamp(20px, 2vw, 40px);
}
.fee_comparison .double_box p{
	font-size: var(--fontsize-18);
	text-align: center;
}
.fee_comparison .double_box p b{
	text-decoration: underline;
}
.fee_limits{
	background-color: var(--sub-bg);
	background-image: url('./library/images/sub_bg_texture.png');
}
.fee_limits .inner{
	padding-bottom: clamp(45px, 5.5vw, 105px);
}
.fee_limits ul {
	display: grid;
	gap: 12px;
	grid-template-columns: repeat(3, 1fr);
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.fee_limits ul li h3{
	text-align: center;
	font-size: var(--fontsize-20);
	margin-bottom: clamp(10px, 1vw, 20px);
	font-weight: 500;
	color: var(--main-color);
}
.fee_limits ul li img{
	height: clamp(40px, 2.6vw, 50px);
	margin: 0 auto clamp(10px, 1vw, 20px);
}
.fee_limits .link{
	margin-top: 25px;
	display: grid;
	gap: 25px;
	grid-template-columns: repeat(2, 1fr);
}
.fee_limits .link .img_link:first-of-type{
	background-image: url('./library/images/img_link_features.jpg');
}
.fee_limits .link .img_link:last-of-type{
	background-image: url('./library/images/img_link_flow.jpg');
}
/* 
 endodontics
----------------------------------------------------------- */
.endodontics_about .inner > p{
	text-align: center;
	margin-top: clamp(25px, 2.6vw, 50px);
}
.endodontics_contents .border_box .flex .img{
	border: none;
}
.endodontics_contents .contents_item > .flex{
	margin-bottom: clamp(20px, 1.6vw, 30px);
}
.endodontics_contents .contents_item .grid{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 55px;
}
.endodontics_contents .contents_item .grid li{
	width: calc((100% - 110px) / 3);
	position: relative;
	border: 1px solid #E5E7E8;
	background-image: linear-gradient(to bottom, #F9F9F9, #EAEAEA);
	padding: clamp(16px, 0.94vw, 18px) 10px;
}
.endodontics_contents .contents_item .grid li:not(:last-child)::before{
	content: "";
	position: absolute;
	top: 50%;
	right: -35px;
	transform: translateY(-50%);
	background-image: url("./library/images/closs.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	padding: 7px;
}
.endodontics_contents .contents_item .grid li h4{
	text-align: center;
	font-size: var(--fontsize-18);
	font-weight: 700;
	color: var(--main-color);
}
.endodontics_contents .contents_item .grid li img{
	height: 30px;
	width: auto;
	margin: clamp(10px, 0.8vw, 15px) auto 0;
}
.endodontics_contents .contents_item .grid li p{
	text-align: center;
	margin-top: clamp(10px, 0.8vw, 15px);
	line-height: 1.5;
}
.endodontics_contents .contents_item .check_list{
	margin-top: clamp(15px, 1.3vw, 25px);
}
.endodontics_contents .contents_item .maru_txt{
	margin-bottom: clamp(10px, 0.8vw, 15px);
}
/* 
 rootcanal
----------------------------------------------------------- */
.rootcanal_about .youtube{
	margin: clamp(40px, 4.1vw, 80px) 0 clamp(25px, 2.6vw, 50px);
}
.rootcanal_contents .check_list{
	margin-bottom: clamp(20px, 1.6vw, 30px);
}
.rootcanal_contents .contents_item .border_box:not(:first-of-type){
	margin-top: clamp(15px, 1vw, 20px);
}
.rootcanal_contents .contents_item .border_box:last-of-type{
	margin-bottom: clamp(15px, 1.6vw, 30px);
}
.rootcanal_contents .border_box h4{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: clamp(10px, 0.83vw, 16px);
	font-size: var(--fontsize-20);
	color: var(--sub-color2);
	font-weight: 700;
}
.rootcanal_contents .border_box h4 span{
	display: block;
	width: clamp(90px, 5.7vw, 110px);
	font-size: var(--fontsize-16);
	font-family: "Michroma", sans-serif;
	font-weight: 400;
	position: relative;
}
.rootcanal_contents .border_box h4 span::before{
	content: "";
	position: absolute;
	top: 50%;
	right: 8px;
	transform: translateY(-50%);
	height: 1px;
	width: clamp(15px, 1.3vw, 25px);
	background-color: #707070;
}
.rootcanal_contents .border_box .linkbox{
	margin-top: clamp(10px, 0.83vw, 16px);
}
.rootcanal_flow{
	background-color: var(--sub-bg);
	background-image: url('./library/images/sub_bg_texture.png');
}
/* 
 referral
----------------------------------------------------------- */
.referral_referring .g_box{
	display: grid;
	place-content: center;
	place-items: center center;
	margin: clamp(25px, 2.6vw, 50px) 0;
}
.referral_referring .hyo{
	margin: clamp(10px, 0.8vw, 15px) 0;
}
.referral_howto{
	background-color: var(--sub-bg);
	background-image: url('./library/images/sub_bg_texture.png');
}
.referral_policy .inner{
	padding-bottom: clamp(50px, 6.8vw, 130px);
}
.referral_policy .line_box{
	padding: clamp(20px, 3.4vw, 65px) clamp(20px, 3.9vw, 75px);
}
.referral_form .inner{
	padding: 0 0 clamp(50px, 6.8vw, 130px);
}
.referral_form .line_box{
	margin: clamp(20px, 1.6vw, 30px) 0 clamp(25px, 2.6vw, 50px);
}
.referral_form .line_box .more_btn{
	width: min(100%,420px);
}
.rootcanal_contents{
	background-color: var(--bg-color);
}
.rootcanal_flow .flow_list{
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.rootcanal_flow .flow_list .ttl{
	padding-left: clamp(35px, 2.6vw, 50px);
	position: relative;
}
.rootcanal_flow .flow_list .ttl::before{
	content: "";
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	padding: clamp(13px, 0.94vw, 18px);
	background-image: url("./library/images/rootcanal_flow_ct.svg");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
}
.rootcanal_flow .flow_list li:nth-child(2) .ttl::before{
	background-image: url("./library/images/rootcanal_flow_rubberdam.svg");
}
.rootcanal_flow .flow_list li:nth-child(3) .ttl::before{
	background-image: url("./library/images/rootcanal_flow_micro.svg");
}
.rootcanal_flow .flow_list li:nth-child(4) .ttl::before{
	background-image: url("./library/images/rootcanal_flow_medicine.svg");
}
.rootcanal_flow .flow_list li:nth-child(5) .ttl::before{
	background-image: url("./library/images/rootcanal_flow_temporary.svg");
}
.rootcanal_flow .flow_list li:nth-child(6) .ttl::before{
	background-image: url("./library/images/rootcanal_flow_fillings.svg");
}
.rootcanal_flow .w_box{
	padding: clamp(20px, 2.6vw, 50px);
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.rootcanal_consult::before {
	content: "";
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: -10;
	width: 100%;
	height: 100vh;
	background-image: url('library/images/rootcanal_consult_bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.rootcanal_consult .box{
	background: rgba(255,255,255,0);
	backdrop-filter: blur(5px) brightness(1.05);
	padding: clamp(25px, 4.1vw, 80px);
}
.rootcanal_consult .box h2{
	text-align: center;
	font-size: clamp(19px, 1.5vw, 28px);
	font-family: "Noto Serif JP", serif;
}
.rootcanal_consult .box .linkbox{
	margin: clamp(20px, 2.6vw, 50px) 0;
}
.rootcanal_consult .box p{
	text-align: center;
	line-height: 2.5;
}
.rootcanal_consult .more_btn{
	width: min(100%,380px);
	font-size: var(----fontsize-16);
	padding: clamp(15px, 1.3vw, 25px) clamp(40px, 3.1vw, 60px) clamp(15px, 1.3vw, 25px) clamp(20px, 2vw, 40px);
}
/* 
 clinic
----------------------------------------------------------- */
.clinic_inside .inner{
	padding-bottom: 0;
}
.clinic_inside p{
	text-align: center;
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.clinic_features .inner{
	padding: clamp(50px, 6.8vw, 130px) 0 0;
}
.clinic_features .contents_wrap{
	position: relative;
	padding: clamp(40px, 4.9vw, 95px) 0 clamp(40px, 4.9vw, 95px);
}
.clinic_features .contents_wrap::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100vw;
	height: 100%;
	background-color: var(--sub-bg);
	background-image: url('./library/images/sub_bg_texture.png');
	z-index: -1;
	margin: 0 calc(50% - 50vw);
}
.features_list{
	display: grid;
	gap: clamp(25px, 2.6vw, 50px);
	grid-template-columns: repeat(2, 1fr);
}
.features_list li img{
	width: 100%;
	height: auto;
	max-width: none;
}
.features_list h3{
	margin: clamp(10px, 1vw, 20px) 0 clamp(8px, 0.8vw, 15px);
	font-size: var(--fontsize-20);
	font-weight: 700;
	color: var(--main-color);
}
.clinic_first{
	background-image: url('./library/images/clinic_first_bg.png');
	background-size: 100% auto;
	background-position: bottom center;
	background-repeat: no-repeat;
}
.clinic_hours{
	background-color: var(--sub-bg);
	background-image: url('./library/images/sub_bg_texture.png');
	z-index: -1;
}
.clinic_hours .time_tbl dl dt {
	width: clamp(125px, 11.5vw, 220px);
}
.clinic_hours .time_tbl dl dd {
	width: calc((100% - clamp(125px, 11.5vw, 220px)) / 6);
}
.clinic_access .rl_ttl{
	margin-top: clamp(25px, 2.6vw, 50px);
}
.clinic_access .img_area{
	margin-top: clamp(25px, 2.6vw, 50px);
	display: grid;
	gap: clamp(25px, 2.3vw, 45px);
	grid-template-columns: repeat(2, 1fr);
}
.clinic_access .img_area > div{
	display: grid;
	grid-template-rows: subgrid;
	grid-row: span 3;
	gap: 1em;
}
.clinic_access .img_area .sub_h4{
	margin-bottom: 0;
}
.clinic_access .img_area img{
	max-width: none;
	width: 100%;
	height: auto;
}
/* 
 micromaintenance
----------------------------------------------------------- */
.micromaintenance_about .inner > p{
	text-align: center;
	margin: clamp(25px, 2.6vw, 50px) 0;
}
.micromaintenance_contents .contents_item .check_list{
	margin: clamp(15px, 1.6vw, 30px) 0;
}
.micromaintenance_contents .contents_item .img_list{
	margin: clamp(15px, 1.6vw, 30px) 0;
}
.micromaintenance_contents .contents_item .double_box{
	text-align: center;
}
.micromaintenance_contents .contents_item .double_box p{
	background: linear-gradient(transparent 98%, var(--font-color) 2%);
	display: inline;
	font-size: var(--fontsize-22);
	font-family: "Noto Serif JP", serif;
	line-height: 1.5;
}
/* 
 microperio
----------------------------------------------------------- */
.microperio_about .sub_sub_h2{
	position: relative;
}
.microperio_about img{
	width: clamp(170px, 14vw, 270px);
	height: auto;
	margin: 0 auto;
}
.microperio_contents .youtube{
	margin-top: clamp(15px, 1.3vw, 25px);
}
/* 
 staff
----------------------------------------------------------- */
.staff .profile > span{
	display: block;
}
.staff .profile h2{
	font-size: clamp(21px, 1.7vw, 33px);
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.staff .profile h2 span{
	color: var(--sub-font);
	font-size: var(--fontsize-16);
	font-family: "Michroma", sans-serif;
	letter-spacing: 0.05em;
	padding-left: 1em;
}
.staff .profile dl{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	line-height: 2.5;
}
.staff .profile dl:not(:last-of-type){
	margin-bottom: clamp(25px, 2.6vw, 50px);
}
.staff .profile dl dt{
	width: clamp(110px, 6.8vw, 130px);
}
.staff .profile dl dd{
	width: calc(100% - clamp(110px, 6.8vw, 130px));
	color: #555555;
}
.staff .greetings p a:not(.more_btn){
	text-decoration: underline;
	color: var(--sub-color2);
	transition: all ease 0.3s;
}
.staff .greetings p a:not(.more_btn):hover{
	opacity: 0.7;
}
.staff .greetings p a i{
	padding-left: 3px;
}
.staff_deputy{
	position: relative;
}
.staff_deputy::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 88.5%;
	background-color: var(--sub-bg);
	background-image: url('./library/images/sub_bg_texture.png');
	z-index: -1;
}
.staff_deputy .inner{
	padding-bottom: clamp(50px, 6.8vw, 130px);
}
.staff_deputy .flex{
	align-items: flex-start;
}
.staff_deputy .flex > img{
	width: 35%;
	height: auto;
}
.staff_deputy .flex .profile{
	width: 55.5%;
}
.staff_deputy .greetings{
	margin-top: clamp(30px, 3.1vw, 60px);
}
.staff_deputy .greetings .txt{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.staff_deputy .greetings .txt > p{
	width: 47%;
}
.staff_deputy .greetings .txt .more_btn{
	width: 100%;
	margin-top: clamp(15px, 1.3vw, 25px);
}
.staff_deputy .w_box{
	padding: clamp(20px, 2.6vw, 50px) clamp(20px, 3.9vw, 75px);
	margin-top: clamp(40px, 3.6vw, 70px);
}
.staff_deputy .w_box .flex .img{
	width: 38%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.staff_deputy .w_box .flex .txt{
	width: 56.5%;
}
.staff_deputy .w_box .flex .img > a{
	width: 47%;
	transition: all ease 0.5s;
}
.staff_deputy .w_box .flex .img > a:hover{
	opacity: 0.7;
}
.staff_deputy .w_box .linkbox{
	margin-top: clamp(15px, 1.3vw, 25px);
}
.staff_director{
	position: relative;
}
.staff_director::before{
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 68.5%;
	background-color: var(--sub-bg);
	background-image: url('./library/images/sub_bg_texture.png');
	z-index: -1;
}
.staff_director .inner{
	padding-top: clamp(50px, 6.8vw, 130px);
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}
.staff_director img{
	width: 20%;
	height: auto;
}
.staff_director .profile{
	width: 70%;
}
.staff_director .greetings{
	margin-top: clamp(35px, 3.4vw, 65px);
}
/* 
 news index-archives page（サイドバー無し）
----------------------------------------------------------- */
.news_info{
	margin-bottom: 30px;
	text-align: left;
	line-height: 1.5;
}
.news_date{
	margin-right: 15px;
	font-family: "Michroma", sans-serif;
	font-size: 12px;
	color: #777777;
	letter-spacing: 0.05em;
}
.news_cat a,
.news_cat span{
	padding:2px 10px;
	font-size:13px;
	white-space: nowrap;
	margin: 3px 5px 3px 0;
	font-weight: normal;
	transition: all ease 0.5s;
	display: inline-block;
	line-height: 1.3;
	background-color: var(--main-color);
	border-radius: 3px;
	border: 1px solid var(--main-color);
	color: #AAB6C3;
}
.news_cat a:hover{
  background-color:#AAB6C3;
  color:var(--main-color);
}
.ttl_maru{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
	color: var(--main-color);
	position: relative;
	padding-left: 20px;
}
.ttl_maru::before{
	content: "";
	position: absolute;
	left: 0;
	top: 9px;
	padding: 5.5px;
	border-radius: 10px;
	background-color: var(--main-color);
}
.list_wrap{
	display:flex;
    justify-content:flex-start;
	flex-wrap:wrap;
}
.l_cotent{
	width:70%;
	margin-right:5%;
}
.news_list{
	margin-bottom: clamp(30px, 2.3vw, 45px);
}
.news_list > li{
	background-color: #fff;
	border: 1px solid #D5D5D5;
	border-left: 6px solid var(--main-color);
	margin-bottom:20px;
	position: relative;
	transition:all ease 0.5s;
}
.news_list > li:hover{
	background-color: var(--mainsub-color);
}
.news_list > li > a{
	display: block;
	padding: 20px;
}
.news_list .news_info{
	margin-bottom: 0;
}
/*アイキャッチなしの場合は削除*/
.news_list > li dl{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.news_list > li dt{
	width:32.5%;
}
.news_list > li dt img{
	width:100%;
	height: 100%;
	object-fit: cover;
	aspect-ratio: 199 / 132;
}
/*アイキャッチなしの場合は削除 ここまで*/
.news_list > li dd{
	width:65%;
	/*▼アイキャッチなしの場合*/
	/*width: 100%;*/
}
.news_list > li dd a:hover{
	opacity: 0.7;
}
.news_list > li dd .news_info{
	padding-top: 5px;
	border-top: 1px solid #D5D5D5;
	margin-bottom: 0;
}
.news_list > li dd h3{
	font-size:var(--fontsize-20);
	background: none;
	padding-left: 0;
	text-align: justify;
	margin-bottom: 5px;
}
.news_list > li dd p{
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	margin-bottom: 10px;
	color: #555;
	line-height: 1.5;
}
.sidebar {
	width: 25%;
}
.widgettitle {
	margin-bottom: 20px;
	border-bottom: 1px solid #E3E3E3;
	position: relative;
	padding-left: 20px;
	padding-bottom: 10px;
	color: var(--main-color);
}
.widgettitle::before{
	content: "";
	position: absolute;
	left: 0;
	top: 7px;
	padding: 5.5px;
	border-radius: 6px;
	background-color: var(--main-color);
}
.widget ul:not(.children) {
  margin-bottom: 30px;
}
.widget ul li:not(:last-child) a {
	margin-bottom: 5px;
}
.widget ul li a {
	width: 100%;
	display: block;
	padding-left: 25px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	position:relative;
	transition:all ease 0.5s;
	-webkit-transition:all ease 0.5s;
	-moz-transition:all ease 0.5s;
}
.widget ul li a::before{
	content:"▶";
	font-size:8px;
	position:absolute;
	top:50%;
	left:0;
	transform:translateY(-50%);	
}
.widget ul li a:hover{
	color: var(--main-color);
}
#archives-dropdown-2 {
	width: 100%;
	font-size: 0.9rem;
	padding: 10px 15px;
	border: 0px;
	background-color: #F3F3F3;
}
/* news single page
----------------------------------------------------------- */
.stitle {
	font-size:22px;
	font-weight: 500;
	line-height: 1.3;
	color: var(--main-color);
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #ccc;
	position: relative;
	text-align: justify;
}
.stitle::before{
	content: "";
	background-color: var(--main-color);
	bottom:-1px;
	position: absolute;
	left:0;
	width: 50px;
	height: 1px;
}
.singlecont a {
	text-decoration: underline;
	color: inherit;
	font-weight: inherit;
}
.singlecont h1,
.singlecont h2,
.singlecont h3,
.singlecont h4,
.singlecont h5,
.singlecont h6{
	line-height: inherit;
	font-weight: bold;
}
/* 
 contact
----------------------------------------------------------- */ 
.wpcf7 dl, .mw_wrap dl {
	width:100%;
	margin-bottom:30px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.wpcf7 dl, .mw_wrap dl:not(:last-of-type) {
	padding-bottom: clamp(15px, 1.3vw, 25px);
	margin-bottom: clamp(15px, 1.3vw, 25px);
	border-bottom: 1px solid #EDEDED;
}
.wpcf7 dt, .mw_wrap dt {
	width:35%;
	margin-bottom: 3px;
}
.wpcf7 dt span, .mw_wrap dt span {
	color:#fff;
	background-color: #C65151;
	border-radius: 3px;
	padding: 1px 5px;
	margin-left: 10px;
	font-size: 13px;
}
.wpcf7 dd, .mw_wrap dd {
	width:65%;
}
.wpcf7 dl.form_sub, .mw_wrap dl.form_sub {
	margin-bottom:10px;
}
.wpcf7 dl.form_sub dt p, .mw_wrap dl.form_sub dt p {
	font-size: 16px;
}
.wpcf7 dt.form_sub_ttl, .mw_wrap dt.form_sub_ttl {
	margin-bottom: 5px;
}
.wpcf7-list-item{
	margin: 2.5px clamp(15px, 2vw, 40px) 2.5px 0;
}
.wpcf7-list-item a{
	transition: all ease 0.3s;
	color: #4583B7;
	text-decoration: underline;
}
.wpcf7-list-item a:hover{
	opacity: 0.7;
}
.wpcf7 dd .wpcf7-form-control-wrap:not(:first-of-type){
	margin-top: clamp(10px, 0.8vw, 15px);
	display: block;
}
.wpcf7 .under_txt{
	font-size: 14px;
	text-decoration: underline;
	margin-top: 10px;
}
.wpcf7-date{
	background-color: #FFF;
	max-width: 100%;
	border: 1px solid #ccc;
	padding:5px;
	font-size:0.9rem;
	min-height: 38px;
}
.wpcf7 .subbtn, .mw_wrap .subbtn {
	width: fit-content;
	margin:30px auto 0;
}
.wpcf7 .flex, 
.mw_wrap .flex {
	justify-content: center;
}
.wpcf7 .flex .subbtn, 
.mw_wrap .flex .subbtn {
	margin:30px 15px 0;
}
.subbtn input {
	width:250px;
	padding:10px;
	color: #FFF;
	border-style: none;
	background-color:var(--main-color);
	transition:all ease 0.5s;
}
.subbtn input:hover {
	opacity: 0.7;
}
.wpcf7 .flex .subbtn:first-of-type input, 
.mw_wrap .flex .subbtn:first-of-type input {
	background-color:var(--mainsub-color);
	color: var(--font-color);
}
.wpcf7-text, .mw_txt, .wpcf7-number {
	width: 100%;
	background-color: #FFF;
	max-width: 100%;
	border: 1px solid #ccc;
	padding:5px;
	font-size:0.9rem;
	min-height: 38px;
}
.wpcf7-text:focus, .wpcf7-textarea:focus {
	background-color:#fafeff;
}
.wpcf7-select, .mw_select,
.wpcf7-file, .me_file{
	background-color: #FFF;
	width: 100%;
	border: 1px solid #ccc;
	padding:5px 10px;
	font-size:0.9rem;
	min-height: 38px;
}
.wpcf7-textarea, .mw_area {
	width: 100%;
	background-color: #FFF;
	max-width: 100%;
	border: 1px solid #ccc;
	padding:5px;
	font-size:0.9rem;
	max-height: 200px;
}
.wpcf7 dd .sub, .mw_wrap dd .sub {
	font-size:14px;
}
.shonin .wpcf7-list-item{
	margin: 15px auto 0;
	text-align: center;
	display: block;
	font-size: 14px;
}
.wpcf7 .flex, 
.mw_wrap .flex {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.wpcf7 .flex .subbtn, 
.mw_wrap .flex .subbtn {
	margin:30px 15px 0;
}
.wpcf7 .flex .subbtn:first-of-type input, 
.mw_wrap .flex .subbtn:first-of-type input {
	background-color:#cccccc;
}
.wpcf7-spinner{
	display: none !important;
}
.wpcf7-turnstile {
	text-align: center;
	margin-top: clamp(15px, 1.6vw, 30px);
}
/* 
 foot
----------------------------------------------------------- */
.footer {
	background-image: url('./library/images/footer_bg.png'),linear-gradient(to right bottom, #EAEAEA, #BCBCBC);
	position: relative;
	z-index: 1;
}
.footer .inner {
	padding: clamp(30px, 3.4vw, 65px) 0 10px;
	width: min(90%,1440px);
}
.footer_introduction{
	display: flex;
	justify-content: space-between;
	padding: clamp(20px, 3.4vw, 65px) clamp(20px, 4.9vw, 95px);
	backdrop-filter: blur(5px) brightness(1.05);
	background-color: rgba(69,86,103,0);
	margin-bottom: clamp(30px, 3.4vw, 65px);
}
.footer_introduction .txt{
	display: flex;
	flex-direction: column;
}
.footer_introduction .txt p{
	margin-top: auto;
}
.footer_introduction ul{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.footer_introduction ul li{
	width: clamp(260px, 18.2vw, 350px);
}
.footer_introduction ul li:not(:last-child){
	margin-right: clamp(15px, 1vw, 20px);
}
.footer_introduction ul li a{
	width: 100%;
	text-align: left;
}
.footer_introduction ul li:nth-child(2) .more_btn::before{
	background-image: url("./library/images/more_pdf.svg");
}
.footer_info{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	margin-bottom: clamp(30px, 3.4vw, 65px);
	flex-direction: row-reverse;
}
.footer_info .map{
	width: 40%;
	display: flex;
	flex-direction: column;
}
.footer_info .info{
	width: calc(60% - 4px);
	padding: clamp(25px, 2.3vw, 45px) clamp(25px, 3.4vw, 65px);
	backdrop-filter: blur(5px) brightness(1.05);
	background-color: rgba(69,86,103,0);
}
.footer_info .map img{
	width: 100%;
	height: auto;
	margin-top: 4px;
}
.footer_info .info .flex{
	margin-bottom: clamp(15px, 1.6vw, 30px);
	justify-content: flex-start;
	align-items: center;
}
.footer_info .info .flex img{
	height: 40px;
	width: auto;
	margin-right: clamp(20px, 3.4vw, 65px);
}
.footer_info .info .flex p{
	font-size: 12px;
	color: var(--main-color);
	font-family: "Michroma", sans-serif;
	line-height: 1.75;
	letter-spacing: 0.05em;
}
.time_tbl > div{
	margin-bottom: clamp(15px, 1.3vw, 25px);
	overflow: hidden;
}
.time_tbl dl {
	display: flex;
	text-align: center;
	padding: clamp(8px, 0.8vw, 15px) 0;
}
.time_tbl dl:first-of-type {
	background-color: #EAEAEA;
}
.time_tbl dl:not(:first-of-type) {
	border-bottom: 1px solid var(--sub-color);
}
.time_tbl dl dt {
	width: 155px;
	line-height: 1.3;
	display: grid;
	place-content: center;
	place-items: center center;
}
.time_tbl dl:not(:first-of-type) dt {
	font-size: 12px;
	font-family: "Michroma", sans-serif;
	letter-spacing: 0.05em;
}
.time_tbl dl dd {
	width: calc((100% - 155px) / 6);
	text-align: center;
	line-height: 1.3;
	display: grid;
	place-content: center;
	place-items: center center;
}
.time_tbl dl:not(:first-of-type) dd {
	font-size: 14px;
}
.time_tbl_sub{
	line-height: 2;
	font-size: 14px;
}
.footer_info .info .more_btn{
	width: min(100%,360px);
	text-align: left;
	margin-top: clamp(15px, 1.6vw, 30px);
}
.copy{
	color: var(--main-color);
	text-align: center;
	font-size: 12px;
	font-family: "Michroma", sans-serif;
	letter-spacing: 0.05em;
}
/* 
 smartphone menu btn
----------------------------------------------------------- */
.spnavbtn {
	position:fixed;
	top:4%;
	right:2%;
	z-index:999;
	text-align:center;
	padding:12px 10px 5px 11px;
	cursor:pointer;
	display:none;
}
.nav-trigger, .nav-trigger span {
	display: inline-block;
	transition: all ease 0.5s;
	box-sizing: border-box;
}
.nav-trigger {
	position: relative;
	width: 30px;
	height: 18px;
}
.nav-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--main-color);
	border-radius: 20px;
}
.spnavbtn.top .nav-trigger span {
	background-color: #fff;
	transition: all ease 0.5s;
}
.nav-trigger span:nth-of-type(1) {
	top: 0;
}
.nav-trigger span:nth-of-type(2) {
	top: 8px;
}
.nav-trigger span:nth-of-type(3) {
	bottom: 0;
}
/* 
 smartphone menu btn click
----------------------------------------------------------- */
.spnavbtn .activete {
	font-size:0.9em;
	opacity:0;
}
.spnavbtn .activete:before {
	content:"";
}
.nav-trigger.active span:nth-of-type(1) {
	-webkit-transform: translateY(8px) rotate(-45deg);
	transform: translateY(8px) rotate(-45deg);
}
.nav-trigger.active span:nth-of-type(2) {
	left: 60%;
	opacity: 0;
	-webkit-animation: active-menu-bar02 .8s forwards;
	animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
@keyframes active-menu-bar02 {
	100% {
		height: 0;
	}
}
.nav-trigger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-8px) rotate(45deg);
	transform: translateY(-8px) rotate(45deg);
}
/* 
 smartphone menu btn click area
----------------------------------------------------------- */
.spnav {
	position:relative;
	z-index:999;
}
.sp_close{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	z-index: 998;
	display: none;
}
.sp_close.open{
	display: inherit;
}
.spnav .trigger {
	width:300px;
	height:100%;
	transition:all ease 0.5s;
	position:fixed;
	top:0;
	left:-300px;
	overflow-y:scroll;
}
.spnav .open {
	width:300px;
	max-width:80%;
	height:100%;
	position:fixed;
	top:0;
	left:0;
	overflow-y:scroll;
	-webkit-backdrop-filter: saturate(140%) blur(20px) brightness(130%);
	backdrop-filter: saturate(140%) blur(20px) brightness(130%);
	background: rgba(255,255,255,0.8);
}
.spnav .trigger > p {
	width:100%;
	padding:15px;
	text-align:center;
}
.spnav .trigger > p img {
	height: 40px;
	width: auto;
	margin:0 auto;
}
.spnav .trigger > ul > li:first-child {
	border-top:1px solid rgba(44,62,80,0.5);
}
.spnav .trigger > ul > li {
	border-bottom:1px solid rgba(44,62,80,0.5);
	font-size:0.9rem;
	transition:all ease 0.5s;
	line-height: 1.2;
}
.spnav .trigger > ul > li a,
.spnav .trigger > ul > li p{
	padding: 15px;
	display: block;
	position: relative;
	z-index: 1;
}
.spnav .trigger > ul > li span {
	display: block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	border-left: solid 1px rgba(44,62,80,0.5);
	z-index: 2;
	cursor: pointer;
}
.spnav .trigger > ul > li:not(.sp_accordion) span::before {
	content: '';
	display: block;
	position: absolute;
	inset: 50%;
	transform: translate(-50%, -50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent transparent var(--main-color);
	border-width: 4.5px 0px 4.5px 7.79px;
}
.spnav .trigger > ul > li.sp_accordion > a{
	margin-right: 40px;
}
.spnav .trigger > ul > li.sp_accordion > a > span{
	right: -40px;
}
.spnav .trigger > ul > li.sp_accordion span::before,
.spnav .trigger > ul > li.sp_accordion span::after {
	content: '';
	display: block;
	position: absolute;
	inset: 50%;
	transform: translate(-50%, -50%);
	background-color: var(--main-color);
	border-radius: 50vh;
	transition: all ease .2s;
}
.spnav .trigger > ul > li.sp_accordion span::before {
	width: 50%;
	height: 1px;
}
.spnav .trigger > ul > li.sp_accordion span::after {
	height: 50%;
	width: 1px;
}
.spnav .trigger > ul > li.sp_accordion.sp_accordion_open span::before,
.spnav .trigger > ul > li.sp_accordion.sp_accordion_open span::after {
	transform: translate(-50%, -50%) rotate(45deg);
	background-color: var(--main-color);
}
.spnav .trigger > ul > li:last-child {
	border-bottom:1px solid rgba(44,62,80,0.5);
}
.spnav ul li ul li {
	border-top:1px solid rgba(44,62,80,0.2);
}
.spnav ul li ul li:last-child {
	border-bottom:none;
}
.sp_accordionbox{
	width: 100%;
	background: rgba(255,255,255,0.5);
	display: none;
}
.sp_accordionbox li a{
	padding-left: 35px !important;
}
.sp_accordionbox li a::before {
	content: '';
	display: block;
	position: absolute;
	left: 15px;
	top: 50%;
	transform: translateY(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent transparent transparent var(--main-color);
	border-width: 4.5px 0px 4.5px 7.79px;
	margin-right: 10px;
}
@media screen and (max-width: 1600px) {
	/* 
	 concept
	----------------------------------------------------------- */
	.concept_protect .ttl{
		align-items: center;
	}
}
@media screen and (max-width: 1400px) {
	/* 
	 header
	----------------------------------------------------------- */
	.navwrap p img,
	.navwrap h1 img{
		height: 35px;
	}
	.navwrap > ul {
		margin-left: 25px;
	}
	.navwrap > ul > li:not(:last-child){
		margin-right: 25px;
	}
	/* 
	 concept
	----------------------------------------------------------- */
	.concept_visualization .txt{
		padding-top: 0;
		width: 48%;
	}
	.concept_visualization .img{
		width: 47%;
	}
}
@media screen and (max-width: 1200px) {
	/* 
	 header
	----------------------------------------------------------- */
	.navwrap > ul > li:not(:last-child){
		margin-right: 18px;
	}
	/* 
	 top
	----------------------------------------------------------- */
	.top_primary .txt_box{
		width: calc(100% - 330px);
	}
	.top_primary ul li .txt{
		padding: 15px 20px;
	}
	/* 
	 concept
	----------------------------------------------------------- */
	.concept_cycle .inner{
		align-items: flex-start;
	}
}
@media screen and (max-width: 1100px) {
	:root {
		--fontsize-16: 15px;
		--fontsize-15: 14px;
	}
	.pc1100{
		display: none;
	}
	br.pc1100{
		display: none;
	}
	.sp1100{
		display: block;
	}
	br.sp1100{
		display: inherit;
	}
	/* 
	 header
	----------------------------------------------------------- */ 
	.navwrap {
		height: 60px;
	}
	.navwrap ul {
		display: none;
	}
	/* 
	 top
	----------------------------------------------------------- */ 
	.top_strengths .txt_box{
		width: 300px;
	}
	.top_primary ul{
		grid-template-columns: repeat(2, 1fr);
	}
	/* 
	 concept
	----------------------------------------------------------- */ 
	.concept_read p{
		max-width: 350px;
	}
	/* 
	 care
	----------------------------------------------------------- */ 
	.care_our ul{
		grid-template-columns: repeat(2, 1fr);
	}
	.care_our ul li:nth-child(-n+2)::before{
		width: calc(100% + 40px);
		border-bottom: 1px dashed var(--sub-color);
	}
	.care_our ul li:nth-child(3)::after{
		content: "";
		position: absolute;
		left: -20px;
		top: -20px;
		height: calc(100% + 40px);
		border-right: 1px dashed var(--sub-color);
		z-index: -1;
	}
	/* 
	 endodontics
	----------------------------------------------------------- */ 
	.endodontics_contents .contents_item .grid{
		gap: 30px;
	}
	.endodontics_contents .contents_item .grid li:not(:last-child)::before{
		right: -24px;
	}
	.endodontics_contents .contents_item .grid li{
		width: calc((100% - 60px) / 3);
	}
	/* 
	 clinic
	----------------------------------------------------------- */ 
	.clinic_access iframe{
		height: 250px;
	}
	/* 
	 staff
	----------------------------------------------------------- */
	.staff_deputy .flex .profile{
		width: 60%;
	}
	.staff_deputy .greetings .txt > p{
		width: 100%;
	}
	.staff_deputy .greetings .txt .more_btn{
		width: min(100%,450px);
		margin-bottom: 30px;
	}
	.staff_director .profile{
		width: 75%;
	}
	.staff_deputy::before{
		height: 91.5%;
	}
	.staff_director::before{
		height: 73%;
	}
	/* 
	 news
	----------------------------------------------------------- */ 
	.news_list > li dd p{
		margin-bottom: 15px;
	}
	.news_list > li dd .info{
		padding-top: 15px;
	}
	/* 
	 smartphone menu btn
	----------------------------------------------------------- */
	.spnavbtn {
		top:10px;
		right:5px;
		padding:10px 10px 5px 11px;
		display:block;
		background: none;
		border: none;
	}
	.nav-trigger {
		width: 30px;
	}
	/* 
	 footer
	----------------------------------------------------------- */ 
	.footer .inner {
		padding: clamp(30px, 3.4vw, 65px) 0 70px;
	}
	.footer_introduction{
		display: block;
	}
	.footer_introduction .txt{
		margin-bottom: 10px;
	}
	.footer_introduction ul li{
		width: calc((100% - clamp(15px, 1vw, 20px)) / 2);
	}
	.time_tbl dl dt {
		width: 125px;
	}
	.time_tbl dl dd {
		width: calc((100% - 125px) / 6);
	}
}
@media screen and (max-width:820px) {
	:root {
		--fontsize-16: 14px;
		--fontsize-15: 13px;
	}
	.pc {
		display:none;
	}
	br.pc{
		display: none;
	}
	.sp {
		display:block;
	}
	br.sp{
		display: inherit;
	}
	.flex-prev {
		display:none!important;
	}
	.flex-next {
		display:none!important;
	}
	/* 
	 top
	----------------------------------------------------------- */
	.fv .txt{
		left: 5%;
	}
	.top_concept .txt{
		width: 100%;
		margin-bottom: 30px;
	}
	.top_concept .img{
		width: 100%;
	}
	.top_strengths .txt_box{
		width: 100%;
		margin-bottom: 30px;
	}
	.top_strengths ul{
		width: 100%;
	}
	.top_primary .txt_box{
		width: 100%;
		margin-top: 30px;
	}
	.top_news .ttl{
		width: 100%;
		margin-bottom: 30px;
	}
	.top_news ul{
		width: 100%;
	}
	.top_blog ul{
		grid-template-columns: repeat(2, 1fr);
	}
	/* 
	 concept
	----------------------------------------------------------- */ 
	.concept_read p{
		max-width: none;
	}
	.concept_read .img{
		width: 450px;
		margin-top: 40px;
		display: flex;
		justify-content: space-between;
	}
	.concept_read .img img{
		position: relative;
		width: 47.5%;
		height: auto;
		left: auto !important;
		right: auto !important;
		bottom: auto !important;
		top: auto !important;
	}
	.concept_read .img img:nth-child(odd){
		margin-bottom: 30px;
	}
	.concept_read .img img:nth-child(even){
		margin-top: 30px;
	}
	.concept_visualization .txt{
		width: 100%;
		margin-bottom: 30px;
	}
	.concept_visualization .img{
		width: 100%;
	}
	.concept_cycle .img{
		width: 100%;
	}
	.concept_cycle .txt{
		width: 100%;
		margin-bottom: 20px;
	}
	.concept_protect .ttl{
		display: block;
	}
	.concept_protect .concept_ttl{
		margin-bottom: 20px;
	}
	.concept_protect .flex .txt{
		width: 100%;
		margin-bottom: 30px;
	}
	.concept_protect .flex .img{
		width: 100%;
	}
	/* 
	 care
	----------------------------------------------------------- */ 
	.care_about .txt{
		width: 100%;
		margin-bottom: 30px;
	}
	.care_about .img{
		width: 100%;
	}
	.care_flow .flow_list li .box > .txt{
		width: calc(95% - clamp(70px, 6.2vw, 120px));
	}
	.care_general .inner > ul{
		grid-template-columns: repeat(1, 1fr);
	}
	.care_general .inner > ul > li:nth-child(1) p{
		margin-bottom: 0;
	}
	.care_general .inner > ul > li .linkbox{
		margin-top: clamp(15px, 1.3vw, 25px);
	}
	/* 
	 secondopinion
	----------------------------------------------------------- */ 
	.so_overview .hyo2 dl dt {
		width: 33%;
	}
	.so_overview .hyo2 dl dd {
		width: 67%;
	}
	.so_process .hyo dl dt {
		width: clamp(180px, 18.2vw, 350px);
	}
	.so_process .hyo dl dd {
		width: calc(100% - clamp(180px, 18.2vw, 350px));
	}
	/* 
	 fee
	----------------------------------------------------------- */ 
	.fee_limits ul {
		grid-template-columns: repeat(2, 1fr);
	}
	/* 
	 referral
	----------------------------------------------------------- */ 
	.referral_referring .tac{
		text-align: justify;
	}
	/* news single page
	----------------------------------------------------------- */
	.l_cotent {
		width: 100%;
		margin: 0;
	}
	.sidebar {
		width: 100%;
		margin-top: 40px;
	}
	/* 
	 ページネーション
	----------------------------------------------------------- */
	.prev, .next {
		width:100%;
		margin:0 0 5px;
	}
	.next {
		float:right;
	}
	.single .nav-below {
		margin-top: 40px;
	}
	/* 
	 footer
	----------------------------------------------------------- */
	.footer_info .map{
		width: 100%;
		margin-top: 4px;
	}
	.footer_info .info{
		width: 100%;
	}
	.footer_info .map iframe{
		height: 250px;
	}
}
@media screen and (max-width:640px) {
	body{
		line-height: 1.8;
	}
	.pc640{
		display: none;
	}
	br.pc640{
		display: none;
	}
	.sp640{
		display: block;
	}
	br.sp640{
		display: inherit;
	}
	.top_back{
		display: none;
	}
	.fix_btn{
		width: 100%;
	}
	.fix_btn li{
		width: calc((100% - 2px) / 2);
	}
	.fix_btn li a{
		line-height: 1.5;
	}
	/* 
	 top
	----------------------------------------------------------- */
	.fv{
		background-image: url('./library/images/fv01_sp.jpg');
	}
	.top_strengths .top_h2 span{
		left: -30px;
		position: relative;
		width: calc(100% + 30px);
		top: 0;
	}
	.top_primary{
		background-size: auto 55%;
	}
	.top_primary ul{
		grid-template-columns: repeat(1, 1fr);
	}
	.top_primary ul li > a {
		display: flex;
	}
	.top_primary ul li .img {
		width: calc(100% - 220px);
	}
	.top_primary ul li .txt{
		width: 220px;
		display: block;
		padding: 15px;
	}
	.top_primary ul li .txt h3{
		text-align: left;
		font-size: 16px;
	}
	.top_primary ul li .txt h3 span{
		text-align: left;
		font-size: 10px;
	}
	.top_primary ul li .txt p{
		margin: 0 auto 0 0;
	}
	/* 
	 subpage共通
	----------------------------------------------------------- */ 
	.sub{
		line-height: 1.8;
	}
	.contents_item .flex .img{
		width: 100%;
		margin-bottom: 10px;
	}
	.contents_item .flex .txt{
		width: 100%;
	}
	.contents_item .img_list p{
		margin-top: 5px;
	}
	.check_list li::before{
		top: 5px;
	}
	.sub_sub_h2{
		position: relative;
	}
	.hyo dl dt,
	.hyo2 dl dt {
		width: 100%;
	}
	.hyo dl dd,
	.hyo2 dl dd {
		width: 100%;
	}
	.flow_list li > span::before{
		display: none;
	}
	.flow_list li .box{
		width: calc(100% - clamp(35px, 6.2vw, 120px) - 10px);
	}
	.big_btn p{
		font-size: 13px;
	}
	.case_flex .img{
		width: 100%;
		margin-bottom: 15px;
	}
	.case_flex .txt{
		width: 100%;
	}
	.maru_list li::before{
		top: 6px;
	}
	.under_ttl{
		font-size: 17px;
	}
	.important_txt::before{
		top: 4px;
		padding: 10px;
	}
	/* 
	 concept
	----------------------------------------------------------- */ 
	.concept p{
		line-height: 1.8;
	}
	.concept_read .inner{
		padding: 30px 0;
	}
	.concept_read .img{
		width: 100%;
	}
	.concept_protect .flex .txt p{
		width: 100%;
	}
	.concept_thought .w_box p{
		text-align: justify;
	}
	/* 
	 care
	----------------------------------------------------------- */ 
	.care_about .txt p{
		line-height: 1.8;
	}
	.care_flow .flow_list li .box > img{
		display: none;
	}
	.care_flow .flow_list li .box > .txt{
		width: 100%;
	}
	.care_our ul{
		grid-template-columns: repeat(1, 1fr);
	}
	.care_our ul li{
		margin: 20px 0;
	}
	.care_our ul li::before {
		border-right: none;
	}
	.care_our ul li:nth-child(3)::before{
		width: calc(100% + 40px);
		border-bottom: 1px dashed var(--sub-color);
	}
	.care_our ul li > a {
		display: flex;
		flex-wrap: wrap;
	}
	.care_our ul li .img {
		width: calc(100% - 220px);
	}
	.care_our ul li a > div{
		width: 220px;
	}
	.care_our ul li .txt{
		padding: 15px;
		display: block;
	}
	.care_our ul li .txt h3{
		text-align: left;
		font-size: 16px;
	}
	.care_our ul li .txt h3 span{
		text-align: left;
		font-size: 10px;
	}
	.care_our ul li .txt p{
		text-align: justify;
	}
	.care_general .tac{
		text-align: justify;
	}
	.care_general .inner > ul > li{
		padding: 20px;
	}
	.care_general .inner > ul > li::before{
		padding: 15px;
		top: 15px;
	}
	.care_general .inner > ul > li h3{
		padding-right: 40px;
	}
	/* 
	 secondopinion
	----------------------------------------------------------- */ 
	.so_overview .grid{
		grid-template-columns: repeat(1, 1fr);
	}
	.so_overview .hyo2 dl dt {
		width: 100%;
	}
	.so_overview .hyo2 dl dd {
		width: 100%;
	}
	.so_process .hyo dl dt {
		width: 100%;
	}
	.so_process .hyo dl dd {
		width: 100%;
	}
	.so_referring .tac{
		text-align: justify;
	}
	.so_lastly .w_box p{
		text-align: justify;
		line-height: 1.8;
	}
	/* 
	 fee
	----------------------------------------------------------- */ 
	.fee_limits ul,
	.fee_limits .link{
		grid-template-columns: repeat(1, 1fr);
	}
	/* 
	 endodontics
	----------------------------------------------------------- */ 
	.endodontics_about .inner > p{
		text-align: justify;
	}
	.endodontics_contents .contents_item .grid li{
		width: calc((100% - 30px) / 2);
	}
	.endodontics_contents .contents_item .grid li:nth-child(2)::before{
		display: none;
	}
	.endodontics_contents .contents_item .grid li:last-child::before{
		content: "";
		position: absolute;
		top: -24px;
		left: 50%;
		transform: translate(-50%,0%);
		background-image: url("./library/images/closs.svg");
		background-position: center center;
		background-repeat: no-repeat;
		background-size: contain;
		padding: 7px;
	}
	/* 
	 rootcanal
	----------------------------------------------------------- */ 
	.rootcanal_about .tac{
		text-align: justify;
	}
	.rootcanal_contents .border_box h4{
		display: block;
	}
	.rootcanal_consult .box h2,
	.rootcanal_consult .box p{
		text-align: justify;
	}
	.rootcanal_consult .box p{
		line-height: 1.8;
	}
	/* 
	 referral
	----------------------------------------------------------- */ 
	.referral_form .tac{
		text-align: justify;
	}
	/* 
	 clinic
	----------------------------------------------------------- */ 
	.features_list{
		grid-template-columns: repeat(1, 1fr);
	}
	.clinic_access iframe {
		height: 200px;
	}
	.clinic_access .img_area{
		grid-template-columns: repeat(1, 1fr);
	}
	/* 
	 micromaintenance
	----------------------------------------------------------- */ 
	.micromaintenance_about .inner > p{
		text-align: justify;
	}
	.contents_item .img_list{
		grid-template-columns: repeat(1, 1fr);
	}
	/* 
	 staff
	----------------------------------------------------------- */
	.staff .profile dl{
		line-height: 1.8;
	}
	.staff .profile dl dt{
		width: 95px;
	}
	.staff .profile dl dd{
		width: calc(100% - 95px);
	}
	.staff_deputy .flex > img{
		width: min(100%,350px);
		margin: 0 auto 20px;
	}
	.staff_deputy .flex .profile{
		width: 100%;
	}
	.staff_deputy .w_box .flex .img{
		width: 100%;
		margin-bottom: 20px;
	}
	.staff_deputy .w_box .flex .txt{
		width: 100%;
	}
	.staff_director img{
		width: min(100%,200px);
		margin: 0 auto 20px;
	}
	.staff_director .profile{
		width: 100%;
	}
	.staff_deputy .greetings .txt .more_btn{
		margin-inline: auto;
		text-align: center;
	}
	.staff_deputy .w_box .linkbox a{
		margin: 0 auto;
	}
	/* 
	 news
	----------------------------------------------------------- */
	.news_list > li dt {
		width: 100%;
		margin: 0 auto 15px;
	}
	.news_list > li dd {
		width: 100%;
	}
	.news_list > li dd p{
		margin-bottom: 10px;
	}
	.news_list > li dd .info{
		padding-top: 10px;
	}
	/* 
	 contact
	----------------------------------------------------------- */ 
	.wpcf7 dt, .mw_wrap dt {
		width:100%;
		margin-bottom: 5px;
	}
	.wpcf7 dd, .mw_wrap dd {
		width:100%;
	}
	/* 
	 footer
	----------------------------------------------------------- */ 
	.footer_introduction ul li{
		width: 100%;
	}
	.footer_introduction ul li:not(:last-child){
		margin-right: 0;
		margin-bottom: 15px;
	}
	.footer_info .info .flex img{
		height: 35px;
		margin-right: 0;
	}
	.footer_info .info .flex p{
		width: 100%;
		margin-top: 10px;
	}
	.time_tbl dl:not(:first-of-type) dt {
		font-size: 11px;
	}
	.time_tbl dl:not(:first-of-type) dd {
		font-size: 13px;
	}
	.time_tbl dl dt {
		width: 115px;
	}
	.time_tbl dl dd {
		width: calc((100% - 115px) / 6);
	}
}