@charset "UTF-8";

.thumbnail{display: none;}

/*メインイメージ
---------------------------------------------------------*/
header {
	padding-bottom: 50px;
}
.m_img_area {
	position: relative;
	z-index: 0;
	width: 100%;
}
.m_img_area .m_img {
	position: relative;
	z-index: 0;
}
.m_img_area .slide_control {
	position: absolute;
	z-index: 10;
}
.m_img_area .m_copy {
	position: absolute;
	z-index: 1;
}
.m_img_area .swiper-slide {
	width: 73.5vw;
	height: 80vh;/*初期表示で何も見えなくなるのを回避する。後からjsで設定する高さが優先される。*/
	transition: all 1.0s;
}
.m_img_area .swiper-slide::before {
	content: "";/*影*/
	position: absolute;
	width: 100%;
	height: 7vw;
	max-height: 40px;
	left: 0;
	top: 100%;
	background: url("../images/top/m_shadow@2x.png") no-repeat center top;
	background-size: 100% 100%;
	transition: all 1.0s;
}
.m_img_area .swiper-slide[class*=-prev] {
	transform: translateY(30%);
}
.m_img_area .swiper-slide[class*=-active] {
	transform: translateY(0%);
}
.m_img_area .swiper-slide[class*=-next] {
	transform: translateY(-30%);
}
.m_img_area .swiper-slide[class*=-prev]::before,
.m_img_area .swiper-slide[class*=-next]::before {
	height: 0px;
}
.m_img_area .swiper-slide div {
	content: "";
	position: absolute;
	width: 96%;
	height: 100%;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.m_img_area .slide1 div {
	background-image: url("../images/top/m_img1@2x.jpg");
}
.m_img_area .slide2 div {
	background-image: url("../images/top/m_img2@2x.jpg");
	background-position: left center;
}
.m_img_area .slide3 div {
	background-image: url("../images/top/m_img3@2x.jpg");
}
.m_img_area .slide4 div {
	background-image: url("../images/top/m_img4@2x.jpg");
	background-position: center top;
}
.m_img_area .slide_control {
	display: flex;
    justify-content: center;
    align-items: center;
	right: 8%;
	bottom: 2%;
	color: #293e5a;
}
.m_img_area .swiper-button-prev,
.m_img_area .swiper-button-next {
	cursor: pointer;
}
.m_img_area .swiper-button-prev {
	transform: rotate(180deg);
}
.m_img_area .swiper-pagination {
	position: relative;
}
.m_img_area .swiper-pagination::before {
	content: "";
	position: absolute;
	width: 1px;
	height: .8em;
	background: #293e5a;
	margin: auto;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(40deg);
}
.m_img_area .swiper-pagination span {
	font-family: semplicitapro, sans-serif;
	font-weight: 400;
	font-style: normal;
	display: inline-block;
	width: 2.0em;
	margin: 0 1.0em;
}
.m_img_area .m_copy {
	right: 3%;
	top: 11%;
	width: 60%;
	max-width: 700px;
}
.m_img_area .m_copy .m_point {
	position: relative;
	z-index: 1;
}
.m_img_area .m_copy .m_point ul {
	position: relative;
	z-index: 0;
	display: flex;
    justify-content: space-between;
}
.m_img_area .m_copy .m_point ul li {
	width: 25%;
}
.m_img_area .m_copy .m_point ul li:nth-child(2),
.m_img_area .m_copy .m_point ul li:nth-child(4) {
	padding-top: 5%;
}
.m_img_area .m_copy .m_point p {
	width: 32%;
	max-width: 225px;
	position: absolute;
	z-index: 1;
	left: 0%;
	top: 70%;
}
.m_img_area .m_copy .txt {
	width: 90%;
	margin: 0 auto;
	position: relative;
	z-index: 0;
	transform: translateY(-10%);
}
.m_img_area .m_copy .m_point ul li:nth-child(1) {
	transition-delay: .4s;
}
.m_img_area .m_copy .m_point ul li:nth-child(2) {
	transition-delay: .6s;
}
.m_img_area .m_copy .m_point ul li:nth-child(3) {
	transition-delay: .8s;
}
.m_img_area .m_copy .m_point ul li:nth-child(4) {
	transition-delay: 1.0s;
}
.m_img_area .m_copy .txt span {
	transition-delay: 1.0s;
}
.m_img_area .m_copy .m_point p span {
	transition-delay: 2.0s;
	transition-duration: 2.0s;
}
/* 画面高さ：1000px以下
------------------------------------------*/
@media only screen and (min-width: 960px) and (max-height: 1000px) {
header {
	padding-bottom: 3vh;
}
.m_img_area .m_copy {
	right: 2%;
	top: 2%;
	width: 75vh;
}
.m_img_area .slide_control {
	right: 3%;
	bottom: 1%;
	font-size: 90%;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
header {
	padding-bottom: 6%;
}
.m_img_area .swiper-slide {
	width: 80vw;
}
.m_img_area .slide_control {
	font-size: 90%;
}
.m_img_area .m_copy {
	right: -2%;
}
}
/* 縦向きの場合
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) and (orientation: portrait) {
.m_img_area .slide1 div {
	background-position: 30% center;
}
.m_img_area .slide2 div {
	background-position: left center;
}
.m_img_area .slide3 div {
	background-position: 70% center;
}
.m_img_area .slide4 div {
	background-position: 30% center;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
header {
	padding-bottom: 4%;
}
.m_img_area .swiper-slide {
	width: 86vw;
}
.m_img_area .swiper-slide::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0.4;
	background: linear-gradient(0deg, rgba(255,255,255,1) 20%, rgba(255,255,255,0) 80%);
}
.m_img_area .slide_control {
	right: 4%;
	bottom: 2%;
	font-size: 70%;
}
.m_img_area .swiper-slide[class*=-prev] {
	transform: translateY(20%);
}
.m_img_area .swiper-slide[class*=-next] {
	transform: translateY(-20%);
}
.m_img_area .m_copy {
	margin: auto;
	left: 0;
	right: 0;
	top: auto;
	bottom: 3%;
	width: 100%;
}
.m_img_area .m_copy .txt {
	width: 80%;
}
}

/* 縦向きの場合
------------------------------------------*/
@media only screen and (max-width: 767px) and (orientation: portrait) {
.m_img_area .slide1 div {
	background-image: url("../images/top/m_img1_sp.jpg");
}
.m_img_area .slide2 div {
	background-image: url("../images/top/m_img2_sp.jpg");
	background-position: center center;
}
.m_img_area .slide3 div {
	background-image: url("../images/top/m_img3_sp.jpg");
	background-position: center bottom;
}
.m_img_area .slide4 div {
	background-image: url("../images/top/m_img4_sp.jpg");
}
}

/*衛生管理
---------------------------------------------------------*/
#pagebody {
	position: relative;
	z-index: 2;
	padding-top: 40px;
}
.bnr_clean {
	width: 84%;
	max-width: 750px;
	box-sizing: border-box;
	margin: 0 auto 80px;
	background: #53b5d9;
	border-radius: 10px;
	padding: 25px 0;
	position: relative;
	z-index: 1;
	color: #fff;
}
.bnr_clean a {
	color: #fff;
}
.bnr_clean::before {
	content: "";
	position: absolute;
	z-index: 0;
	width: 50%;
	height: 100%;
	background: #3baad4;
	border-radius: 10px 0 0 10px;
	left: 0;
	top: 0;
}
.bnr_clean .ft_sempl {
	text-align: right;
	color: #008abf;
	font-size: 220%;
	letter-spacing: .15em;
	line-height: 1.2em;
	position: absolute;
	right: 0;
	top: 0;
	transform: translate(.8em,-55%);
}
.bnr_clean dl {
	position: relative;
	z-index: 1;
	padding-left: 34%;
	padding-right: 6%;
	text-align: left;
}
.bnr_clean dt {
	font-size: min(170%,2.5vw);
	letter-spacing: .15em;
	line-height: 1.6em;
	margin-bottom: .3em;
}
.bnr_clean dd {
	font-size: 95%;
	letter-spacing: .15em;
	line-height: 1.6em;
}
.bnr_clean .abs {
	position: absolute;
	width: 34%;
	max-width: 250px;
	left: 0;
	top: 50%;
	transform: translate(-8%,-50%);
}
.bnr_clean .com_arrow {
	position: absolute;
	right: 2%;
	bottom: 0;
	transform: translateY(40%);
	background: #008abf;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
#pagebody {
	padding-top: 8%;
}
.bnr_clean {
	margin-bottom: 8%;
}
.bnr_clean dt {
	font-size: 2.7vw;
	letter-spacing: .05em;
}
.bnr_clean dd {
	font-size: 90%;
	letter-spacing: .05em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
#pagebody {
	padding-top: 10%;
}
.bnr_clean {
	width: 94%;
	max-width: 100%;
	margin-bottom: 8%;
	padding: 1.5em 0 1.0em;
}
.bnr_clean .ft_sempl {
	font-size: 150%;
	letter-spacing: .05em;
	right: 4%;
	transform: translate(0,-55%);
}
.bnr_clean dl {
	padding: 0;
}
.bnr_clean dt {
	text-align: center;
	font-size: 130%;
	letter-spacing: .1em;
	margin-bottom: .5em;
}
.bnr_clean dd {
	font-size: 90%;
	letter-spacing: normal;
	padding-right: 4%;
	padding-left: 40%;
}
.bnr_clean .abs {
	width: 40%;
	top: 45%;
	transform: translate(-8%,0%);
}
.bnr_clean .com_arrow {
	font-size: 90%;
	right: 4%;
}
}


/*TOP共通
---------------------------------------------------------*/
.top_index {
	color: #d2d2cf;
	font-size: min(940%,13vw);
	letter-spacing: .15em;
	line-height: 1.2em;
	opacity: 0.5;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.top_index {
	letter-spacing: .1em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.top_index {
	font-size: 400%;
	letter-spacing: .1em;
}
}


/*POLICY
---------------------------------------------------------*/
.policy {
	position: relative;
	margin-bottom: 80px;
}
.policy::before {
	content: "";/*背景*/
	position: absolute;
	width: 100%;
	height: 60vw;
	max-height: 730px;
	background: url("../images/top/poli_bg@2x.png") no-repeat right top;
	background-size: contain;
	right: 0;
	top: 0;
	transform: translateY(-15%);
}
.policy .w1220 {
	position: relative;
	z-index: 0;
}
.policy .top_index {
	position: absolute;
	left: 3%;
	top: 0;
	transform: translateY(-55%);
}
.policy h2 {
	font-size: 110%;
	letter-spacing: .2em;
	line-height: 1.6em;
	margin-bottom: 50px;
}
.policy .txt dt {
	color: #293e5a;
	font-size: 205%;
	letter-spacing: .15em;
	line-height: 1.6em;
	margin-bottom: .8em;
}
.policy .point {
	width: 100%;
	max-width: 1000px;
	margin: 50px auto 0;
	display: flex;
    justify-content: space-between;
}
.policy .point li {
	width: 33.3333%;
	max-width: 330px;
}
.policy .point .point_inbox {
	position: relative;
}
.policy .point .point_inbox h3 {
	font-size: 300%;
    font-weight: normal;
	letter-spacing: .05em;
	line-height: 1.1em;
	min-width: 5.6em;
	position: absolute;
	left: 0;
	bottom: calc(100% + .5em);
}
.policy .point .point_inbox h3 a {
	color: #8a8c8c;
}
.policy .point .point_inbox h3::before {
	content: "POLICY 01";
	font-family: semplicitapro, sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	color: #1980be;
	font-size: 28%;
	letter-spacing: .1em;
	line-height: 1.2em;
	padding-bottom: .8em;
	width: 9em;
	border-bottom: solid 1px #1980be;
	position: absolute;
	left: -1.0em;
	bottom: calc(100% + .8em);
}
.policy .point .point_inbox h3 .com_arrow {
	position: absolute;
	right: 0;
	bottom: 0;
	font-size: 35%;
}
.policy .point .point_inbox > div {
	text-align: center;
	font-size: 110%;
	letter-spacing: .15em;
	line-height: 1.6em;
	margin-top: -1.0em;
}
.policy .point .col1 h3 .col {
	color: #1980be;
}
.policy .point .col1 h3 .com_arrow {
	background: #1980be;
}
.policy .point .col2 h3 .col {
	color: #d75f82;
}
.policy .point .col2 h3::before {
	content: "POLICY 02";
	color: #d75f82;
	border-color: #d75f82;
}
.policy .point .col2 h3 .com_arrow {
	background: #d75f82;
}

.policy .point .col3 h3 .col {
	color: #b79952;
	letter-spacing: -.2em;
}
.policy .point .col3 h3::before {
	content: "POLICY 03";
	color: #b79952;
	border-color: #b79952;
}
.policy .point .col3 h3 .com_arrow {
	background: #b79952;
}
/* 1100px以下
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1100px) {
.policy .point {
	width: 108%;
	margin-left: -4%;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.policy {
	margin-bottom: 10%;
}
.policy h2 {
	letter-spacing: .15em;
	margin-bottom: 6%;
}
.policy .txt dt {
	font-size: 190%;
	letter-spacing: .1em;
	text-shadow: 
    #fff 1px 1px 20px, #fff -1px 1px 20px,
    #fff 1px -1px 20px, #fff -1px -1px 20px;
}
.policy .point {
	margin-top: 6%;
}
.policy .point .point_inbox h3 {
	font-size: 4.5vw;
	letter-spacing: .05em;
}
.policy .point .point_inbox h3::before {
	font-size: 35%;
}
.policy .point .point_inbox > div {
	letter-spacing: .1em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.policy {
	padding-top: 30vw;
	margin-bottom: 10%;
}
.policy::before {
	height: 65vw;/*背景*/
}
.policy .w1220 {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}
.policy h2 {
	font-size: 100%;
	letter-spacing: .15em;
	margin-bottom: 8%;
}
.policy .txt dt {
	font-size: 140%;
	letter-spacing: .1em;
	line-height: 1.6em;
	margin-bottom: .8em;
}
.policy .point {
	margin: 3% 0 0;
	display: block;
}
.policy .point li {
	width: 100%;
	max-width: 100%;
	margin-top: 0;
}
.policy .point li:nth-child(2) {
	margin-top: 6%;
}
.policy .point li > div {
	transition-delay: 0s !important;
}
.policy .point .point_inbox h3 {
	font-size: 220%;
	letter-spacing: .1em;
	line-height: 1.1em;
	min-width: 0;
	width: 60%;
	margin: 0 auto;
	left: 0;
	right: 0;
}
.policy .point .point_inbox h3::before {
	font-size: 35%;
	letter-spacing: .1em;
	bottom: calc(100% + .5em);
}
.policy .point .point_inbox > div {
	font-size: 110%;
	letter-spacing: .05em;
	margin-top: -1.2em;
}

.policy .point .col3 h3 .col {
	letter-spacing: -.1em;
}
}

/*TROUBLE
---------------------------------------------------------*/
.trouble {
	padding-bottom: 60px;
}
.trouble .slide_area {
	position: relative;
	z-index: 1;
}
.trouble .slide_area::before {
	content: "";	/*スライドショー下背景色*/
	position: absolute;
	z-index: -1;
	width: 100%;
	height: 50%;
	background: #293e5a;
	left: 0;
	bottom: -1px;
}
.trouble .slide_area .swiper-slide {
	width: 50vw;
	max-width: 620px;
}
.trouble .bg {
	background: #293e5a;
	color: #fff;
	padding-bottom: 100px;
	border-radius: 0 0 70px 70px;
}
.trouble .bg a {
	color: #fff;
}
.trouble .bg .w1100 {
	text-align: center;
}
.trouble .bg .title_box {
	position: relative;
}
.trouble .bg .title_box .top_index {
	color: #384c66;
	opacity: 1;
}
.trouble .bg .title_box h2 {
	font-size: 200%;
	letter-spacing: .15em;
	line-height: 1.2em;
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.trouble .bg .title_box h2 span {
	display: inline-block;
	padding: 0 1.8em;
	position: relative;
}
.trouble .bg .title_box h2 span::before,
.trouble .bg .title_box h2 span::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 1.7em;
	background: #fff;
	top: 0;
}
.trouble .bg .title_box h2 span::before {
	left: 0;
	transform: rotate(-30deg);
}
.trouble .bg .title_box h2 span::after {
	right: 0;
	transform: rotate(30deg);
}
.trouble .bg ul {
	width: 100%;
	max-width: 986px;
	margin: 30px auto 0;
	display: flex;
    flex-wrap: wrap;
}
.trouble .bg ul li {
	width: 22%;
	margin-right: 4%;
	margin-top: 3%;
	background: #3e516a;
	border-radius: 50%;
	position: relative;
	transition-delay: .2s;
}
.trouble .bg ul li:nth-child(4n) {
	margin-right: 0;
}
.trouble .bg ul li:nth-child(-n+4) {
	margin-top: 0;
	transition-delay: 0s;
}
.trouble .bg ul li::before {
	content: "";
	position: absolute;
	width: 80%;
	height: 80%;
	background: #5a6a80;
	border-radius: 50%;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	transition: all 0.6s ease-out;
}
.trouble .bg ul li:hover::before {
	transition: all 0.4s ease-out;
	width: 100%;
	height: 100%;
}
.trouble .bg ul li a {
	display: block;
	position: relative;
	z-index: 1;
	font-size: min(130%,2.0vw);
	letter-spacing: .15em;
	line-height: 1.4em;
}
.trouble .bg ul a::before {
	content: "";
	display: block;
	padding-top: 100%;/*高さ*/
}
.trouble .bg ul a p {
	position: absolute;
	left: 0;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}
.trouble .bg ul a p span {
	color: #ccff4f;
}
.trouble .bg ul a .com_arrow {
	position: absolute;
	right: 8%;
	bottom: 8%;
	background: #fff;
	color: #294c7f;
	font-size: 70%;
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.trouble {
	padding-bottom: 4%;
}
.trouble .bg {
	padding-bottom: 12%;
	border-radius: 0 0 6vw 6vw;
}
.trouble .bg .title_box h2 {
	font-size: 3.2vw;
	letter-spacing: .1em;
}
.trouble .bg ul {
	margin-top: 2%;
}
.trouble .bg ul li {
	width: 23.2%;
	margin-right: 2.4%;
}
.trouble .bg ul li a {
	font-size: 2.2vw;
	letter-spacing: .05em;
}
.trouble .bg ul a .com_arrow {
	right: 4%;
	bottom: 4%;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.trouble {
	padding-bottom: 6%;
}
.trouble .slide_area .swiper-slide {
	width: 80vw;
}
.trouble .bg {
	padding-top: 4%;
	padding-bottom: 14%;
	border-radius: 0 0 10vw 10vw;
}
.trouble .bg .w1100 {
	width: 100%;
	padding-left: 0;
	padding-right: 0;
}
.trouble .bg .title_box h2 {
	font-size: 140%;
	letter-spacing: normal;
}
.trouble .bg .title_box h2 span {
	padding-left: .8em;
	padding-right: .6em;
}
.trouble .bg ul {
	margin-top: 0;
    justify-content: center;
}
.trouble .bg ul li {
	width: 31%;
	margin: 6% 1% 0 !important;
	transition-delay: .4s;
}
.trouble .bg ul li:nth-child(-n+6) {
	transition-delay: .2s;
}
.trouble .bg ul li:nth-child(-n+3) {
	margin-top: 3% !important;
	transition-delay: 0s;
}	
.trouble .bg ul li a {
	font-size: 95%;
	letter-spacing: .05em;
}
.trouble .bg ul a p {
	transform: translateY(-55%);
}
.trouble .bg ul a .com_arrow {
	right: 10%;
	bottom: 0;
	transform: translateY(20%);
	font-size: 70%;
}
}

/*clinic
---------------------------------------------------------*/
.clinic {
	padding-top: 120px;
	padding-bottom: 130px;
	position: relative;
	z-index: 1;
}
.clinic .abs_line {
	position: absolute;
	z-index: -1;
	width: 152%;
	max-width: 2285px;
	left: 50%;
	top: 0;
	transform: translateX(-45%);
}
.clinic .abs_line div:first-child {
	width: 85%;
	max-width: 1950px;
	margin-left: auto;
	margin-right: 0;
}
.clinic .abs_line div:last-child {
	width: 85%;
	max-width: 1950px;
	margin-left: 0;
	margin-right: auto;
	margin-top: -11%;
}
.clinic .abs_line svg .line1 {
	fill: #81c2f4;
	opacity: .2;
}
.clinic .abs_line svg .line1_mask1,
.clinic .abs_line svg .line1_mask2 {
	fill: none;
	stroke: #fff;
	stroke-miterlimit: 10;
	stroke-width: 98px;
	stroke-dashoffset: 0px;
}
.clinic .abs_line svg .line1_mask1 {
	stroke-dasharray: 1100px;
}
.clinic .abs_line svg .line1_mask2 {
	stroke-dasharray: 2300px;
}
.clinic .abs_line .anime_on svg .line1_mask1 {
	animation: line1-written1 0.8s linear forwards;
}
.clinic .abs_line .anime_on svg .line1_mask2 {
	animation: line1-written2 2s 0.9s ease-out forwards;
}
@keyframes line1-written1 {
	0% {
		stroke-dashoffset: 0px;
	}
	100% {
		stroke-dashoffset: 1100px;
	}
}
@keyframes line1-written2 {
	0% {
		stroke-dashoffset: 0px;
	}
	100% {
		stroke-dashoffset: 2300px;
	}
}
.clinic .abs_line svg .line2 {
	fill: #d9e3df;
	opacity: .2;
}
.clinic .abs_line svg .line2_mask {
	fill: none;
	stroke: #fff;
	stroke-miterlimit: 10;
	stroke-width: 110px;
	stroke-dasharray: 2700px;
	stroke-dashoffset: 0px;
}
.clinic .abs_line .anime_on svg .line2_mask {
	animation: line2-written 2.0s ease-out forwards;
}
@keyframes line2-written {
	0% {
		stroke-dashoffset: 0px;
	}
	100% {
		stroke-dashoffset: 2700px;
	}
}
.clinic h2 {
	width: 70%;
	max-width: 795px;
	margin-left: auto;
	margin-right: 3%;
	margin-bottom: 120px;
}
.clinic .poin_title {
	display: flex;
    align-items: center;
	margin-bottom: 20px;
}
.clinic .poin_title .no {
	color: #1980be;
	font-size: 470%;
	letter-spacing: normal;
	line-height: 1.2em;
	margin-right: .3em;
}
.clinic .poin_title h3 {
	font-size: 125%;
	letter-spacing: .2em;
	line-height: 1.4em;
}
.clinic .poin_title h3 .ft_sempl {
	display: block;
	color: #1980be;
	font-size: 90%;
	letter-spacing: .15em;
	line-height: 1.2em;
	padding-top: .4em;
	padding-bottom: .6em;
}
.clinic .poin_style > dt {
	font-size: min(220%,2.8vw);
	letter-spacing: .15em;
	line-height: 1.5em;
	margin-bottom: .8em;
}
.clinic .pickup {
	width: 100%;
	max-width: 1280px;
	margin-bottom: 100px;
}
.clinic .pickup.img_r {
	margin-left: auto;
	margin-right: 0;
}
.clinic .pickup.img_l {
	margin-left: 0;
	margin-right: auto;
}
.clinic .pickup .img_box {
	width: 50%;
	max-width: 620px;
}
.clinic .pickup .txt_box {
	width: 47%;
	max-width: 570px;
}
.clinic .col2_box {
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.clinic .col2_box .box {
	width: 48.5%;
	max-width: 580px;
	margin-bottom: 100px;
}
.clinic .col2_box .img_box {
	margin-bottom: 20px;
}
.clinic .box5 {
	margin-bottom: 110px;
}
.clinic .box5 .img_list {
	width: 94%;
	max-width: 1340px;
	margin: 0 auto 40px;
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.clinic .box5 .img_list li {
	width: 50%;
}
.clinic .box5 .fle_box {
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
	text-align: left;
}
.clinic .box5 .fle_box .box_l {
	width: calc(50% + 170px);
	box-sizing: border-box;
	padding-left: 3%;
}
.clinic .box5 .fle_box .box_r {
	margin-top: 60px;
	width: calc(50% - 170px);
	position: relative;
}
.clinic .box5 .box_l .txt_box {
	width: 100%;
	max-width: 780px;
	box-sizing: border-box;
	margin-left: auto;
	margin-right: 0;
	padding-right: 4%;
}
.clinic .box5 .box_l .poin_style > dd {
	width: 100%;
	max-width: 620px;
}
.clinic .box5 .fle_box .box_r::before {
	content: "";
	position: absolute;
	z-index: -1;
	width: 0%;
	height: 100%;
	right: 0;
	top: 0;
	background: #44ada1;
	border-radius: 40px 0 0 40px;
	transition: all 1.0s;
}
.clinic .box5 .fle_box .box_r.anime_on::before {
	width: 100%;
}
.clinic .box5 .box_r dl {
	width: 100%;
	box-sizing: border-box;
	padding: 40px 4%;
	color: #fff;	
}
.clinic .box5 .box_r dt {
	font-size: min(205%,3.0vw);
	letter-spacing: .15em;
	line-height: 1.6em;
	padding: 0 3% .8em;
	border-bottom: solid 1px #fff;
	margin-bottom: .8em;
	position: relative;
}
.clinic .box5 .box_r dt .ft_min {
	position: relative;
	z-index: 1;
}
.clinic .box5 .box_r dt .txt_min {
	display: block;
	font-size: 75%;
	letter-spacing: .15em;
	line-height: 1.6em;
}
.clinic .box5 .box_r dt .col {
	color: #ccff4f;
}
.clinic .box5 .box_r dt .illust {
	position: absolute;
	z-index: 0;
	width: 40%;
	max-width: 168px;
	right: 3%;
	bottom: .5em;
}
.clinic .box5 .box_r dd {
	padding: 0 3%;
}
.clinic .box5 .box_r dd .com_arrow {
	position: absolute;
	font-size: 140%;
	right: 8%;
	bottom: 0;
	transform: translateY(30%);
	background: #03916f;
}
.clinic .box5 .f_style > dt {
	font-size: 125%;
	letter-spacing: .15em;
	line-height: 1.2em;
	padding-left: 1.2em;
	position: relative;
	margin-bottom: .8em;
}
.clinic .box5 .f_style > dt::before {
	content: "";
	position: absolute;
	width: .8em;
	height: 2px;
	background: #7ec6f4;
	left: 0;
	top: .5em;
}
.clinic .box5 .access_list{
    display: flex;
    justify-content: space-between;
	margin: 1.5em 0;
}
.clinic .box5 .access_list li{
	width: 48.5%;
}
.clinic .box5 .access_list li dl{
	margin-top: 1.5em;
}
.clinic .box5 .access_list li dl:first-child{
	margin-top: 0;
}
.clinic .box5 .access_list li dt{
	font-size: 120%;
  letter-spacing: .15em;
  line-height: 1.5em;
	text-align: center;
	color: #1980be;
	margin-bottom: 0.8em;
	background: #dae9f1;;
	padding: 0.5em 1em;
	box-sizing: border-box;
	border-radius: 1.25em;
}
.clinic .box5 .access_list li dd{
	width: 94%;
	margin: 0 auto;
	font-size: 90%;
	letter-spacing: 0.1em;
	line-height: 1.8em;
}
.clinic .box5 .access_list li dd strong{
	font-size: 115%;
	line-height: 1.5em;
	letter-spacing: 0.1em;
	margin-bottom: 0.8em;
}
.clinic .first {
	position: relative;
	padding: 40px 3% 70px;
	text-align: center;
}
.clinic .first::before,
.clinic .first::after {
	content: "";
	position: absolute;
	z-index: 0;
	width: 8%;
	height: 100%;
	top: 0;
	border: solid 2px #cccdcd;
}
.clinic .first::before {
	left: 0;
	border-right: none;
}
.clinic .first::after {
	right: 0;
	border-left: none;
}
.clinic .first dt {
	position: relative;
}
.clinic .first dt p:not(.lead) {
	font-size: 250%;
	letter-spacing: .15em;
	line-height: 1.4em;
	margin-bottom: .8em;
}
.clinic .first .lead {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 100%;
	font-size: 160%;
	letter-spacing: .15em;
	line-height: 1.6em;
	padding-bottom: .5em;
}
.clinic .first .lead span {
	color: #1980be;
	display: inline-block;
	padding: 0 1.5em;
	position: relative;
}
.clinic .first .lead span::before,
.clinic .first .lead span::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 2.0em;
	background: #1980be;
	top: -.1em;
}
.clinic .first .lead span::before {
	left: .5em;
	transform: rotate(-20deg);
}
.clinic .first .lead span::after {
	right: 1.0em;
	transform: rotate(20deg);
}
.clinic .first .com_btn2 {
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
	transform: translateY(50%);
}
.clinic .first .com_btn2 a {
	margin-top: 0;
}
/* 1340px以下
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1340px) {
.clinic .box5 .fle_box .box_l {
	width: 55%;
	padding-left: 3%;
}
.clinic .box5 .fle_box .box_r {
	width: 45%;
}	
.clinic .box5 .box_r dl {
	padding: 40px 4%;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.clinic {
	padding-top: 10%;
	padding-bottom: 14%;
}
.clinic h2 {
	width: 80%;
	margin-right: 0;
	margin-bottom: 10%;
}
.clinic .poin_title {
	margin-bottom: 2%;
}
.clinic .poin_title h3 {
	letter-spacing: .15em;
}
.clinic .poin_title h3 .ft_sempl {
	letter-spacing: .1em;
}
.clinic .poin_style > dt {
	font-size: 3.5vw;
	letter-spacing: .05em;
	margin-bottom: .5em;
}
.clinic .box2 .poin_style > dt br {
	display: none !important;
}
.clinic .pickup {
	margin-bottom: 8%;
}
.clinic .pickup.img_r .img_box {
	margin-left: 4%;
	margin-bottom: 1.5em;
}
.clinic .pickup.img_l .img_box {
	margin-right: 4%;
	margin-bottom: 1.5em;
}
.clinic .pickup .txt_box {
	width: 100%;
	max-width: 100%;
	float: none !important;
}
.clinic .col2_box .box {
	margin-bottom: 8%;
}	
.clinic .box5 {
	margin-bottom: 12%;
}
.clinic .box5 .img_list {
	margin-bottom: 3%;
}
.clinic .box5 .fle_box .box_l {
	width: 52%;
}
.clinic .box5 .fle_box .box_r {
	margin-top: 6%;
	width: 45%;
}
.clinic .box5 .fle_box .box_r::before {
	border-radius: 4vw 0 0 4vw;
}
.clinic .box5 .box_r dt {
	font-size: 3.2vw;
	letter-spacing: .1em;
	padding: 0 0 .8em;
}
.clinic .box5 .box_r dt .txt_min {
	letter-spacing: .1em;
}
.clinic .box5 .box_r dt .illust {
	right: 0;
}
.clinic .box5 .box_r dd {
	padding: 0;
}
.clinic .box5 .box_r dd .com_arrow {
	font-size: 120%;
}
.clinic .box5 .f_style > dt {
	letter-spacing: .1em;
	margin-bottom: .5em;
}
.clinic .first {
	padding: 4% 3% 8%;
}
.clinic .first dt p:not(.lead) {
	font-size: 220%;
	letter-spacing: .1em;
	line-height: 1.4em;
	margin-bottom: .5em;
}
.clinic .first .lead {
	font-size: 140%;
	letter-spacing: .1em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.clinic {
	padding-top: 14%;
	padding-bottom: 20%;
}
.clinic .abs_line {
	width: 170%;
}
.clinic h2 {
	width: 100%;
	margin-right: 0;
	margin-bottom: 14%;
}
.clinic .poin_title {
	margin-bottom: .5em;
}
.clinic .poin_title .no {
	font-size: 300%;
}
.clinic .poin_title h3 {
	font-size: 110%;
	letter-spacing: .15em;
}
.clinic .poin_title h3 .ft_sempl {
	font-size: 90%;
	letter-spacing: .1em;
	padding-top: .2em;
	padding-bottom: 0;
}
.clinic .poin_style > dt {
	font-size: 140%;
	letter-spacing: .1em;
	line-height: 1.5em;
	margin-bottom: .5em;
}
.clinic .pickup {
	margin-bottom: 12%;
}
.clinic .pickup .img_box {
	float: none;
	width: 100%;
	margin: 0 auto 1.2em;
}
.clinic .pickup .txt_box {
	float: none;
	width: 100%;
	max-width: 100%;
}
.clinic .col2_box {
	display: block;
}
.clinic .col2_box .box {
	width: 100%;
	max-width: 100%;
	margin-bottom: 12%;
}
.clinic .col2_box .img_box {
	margin-bottom: 1.0em;
}
.clinic .box5 {
	margin-bottom: 14%;
}
.clinic .box5 .img_list {
	width: 70%;
	margin-bottom: 1.0em;
	display: block;
}
.clinic .box5 .img_list li {
	width: 100%;
}
.clinic .box5 .fle_box {
	display: block;
}
.clinic .box5 .fle_box .box_l {
	width: 100%;
	padding: 0 5%;
}
.clinic .box5 .fle_box .box_r {
	margin-top: 14%;
	margin-left: auto;
	margin-right: 0;
	width: 95%;
}
.clinic .box5 .box_l .txt_box {
	max-width: 100%;
	padding-right: 0;
}
.clinic .box5 .box_l .poin_style > dd {
	max-width: 100%;
}
.clinic .box5 .fle_box .box_r::before {
	border-radius: 5vw 0 0 5vw;
}
.clinic .box5 .box_r dl {
	padding: 6%;
}
.clinic .box5 .box_r dt {
	font-size: 140%;
	letter-spacing: .1em;
	padding: 0 0 .5em;
	margin-bottom: .5em;
}
.clinic .box5 .box_r dt .txt_min {
	letter-spacing: .1em;
}
.clinic .box5 .box_r dd {
	padding: 0;
	font-size: 90%;
}
.clinic .box5 .box_r dd .com_arrow {
	right: 5%;
	font-size: 110%;
}
.clinic .box5 .f_style > dt {
	font-size: 110%;
	letter-spacing: .1em;
	margin-bottom: .5em;
}
.clinic .box5 .f_style > dd{
	font-size: 90%;
	line-height: 1.6em;
}
.clinic .box5 .access_list{
    display: block;
	margin: 5% 0;
}
.clinic .box5 .access_list li{
	width: 100%;
	margin-top: 5%;
}
.clinic .box5 .access_list li:first-child{
	margin-top: 0;
}
.clinic .box5 .access_list li dl{
	margin-top: 5%;
}
.clinic .box5 .access_list li dl:first-child{
	margin-top: 0;
}
.clinic .box5 .access_list li dt{
	font-size: 110%;
	letter-spacing: .1em;
	margin-bottom: 0.6em;
}
.clinic .box5 .access_list li dd{
	font-size: 85%;
	letter-spacing: 0.05em;
}
.clinic .box5 .access_list li dd strong{
	letter-spacing: 0.05em;
	margin-bottom: 0.6em;
}
.clinic .first {
	padding: 16% 6% 14%;
}
.clinic .first dt p:not(.lead) {
	font-size: 150%;
	letter-spacing: .1em;
}
.clinic .first .lead {
	font-size: 110%;
	letter-spacing: .1em;
	line-height: 1.8em;
	padding-bottom: .5em;
}
.clinic .first .lead span::after {
	right: .8em;
}
.clinic .first dd {
	text-align: left;
}
}

/*medical
---------------------------------------------------------*/
.medical .bg {
	background: #417f98;
	padding-top: 80px;
}
.medical .med_index {
	text-align: center;
	font-size: min(250%,3.5vw);
	letter-spacing: .15em;
	line-height: 1.6em;
}
.medical .bg .lead_box {
	text-align: center;
	color: #fff;
	margin-bottom: 80px;
}
.medical .bg .lead_box .title_box {
	position: relative;
	margin-bottom: 30px;
}
.medical .bg .lead_box .top_index {
	color: #5d92a7;
}
.medical .bg .lead_box h2 {
	color: #fff;
	position: absolute;
	z-index: 1;
	left: 0;
	right: 0;
	bottom: 0;
}
.medical .med_box {
	position: relative;
	z-index: 1;
	margin-bottom: 50px;
}
.medical .med_box::before {
	content: "";	/*背景グラデ*/
	position: absolute;
	z-index: -1;
	width: 100vw;
	height: calc(100% - 160px);
	background: #ccc;
	left: 50%;
	top: 120px;
	transform: translateX(-150%);
	transition: transform 1.0s;
}
.medical .med_box.anime_on::before {
	transform: translateX(-50%);
}
.medical .med_box .img_box {
	position: relative;
}
.medical .med_box .img_box .img1 {
	position: relative;
	z-index: 0;
	width: 60%;
	max-width: 710px;
	padding-left: 5%;
}
.medical .med_box .img_box .img1 .ft_sempl {
	color: #fff;
	font-size: min(850%,10vw);
	letter-spacing: .1em;
	line-height: 1.2em;
	position: absolute;
	z-index: 1;
	left: 0;
	bottom: 0;
	transform: translateY(25%);
}
.medical .med_box .img_box .img2 {
	position: absolute;
	z-index: 1;
	width: 60%;
	max-width: 690px;
	right: 0;
	top: 50%;
	transform: translateY(-52%);
	transition-delay: 1.0s;
}
.medical .med_box .img_box .img1 .fadeup {
	transition-delay: 0.2s;
}
.medical .med_box .img_box .img2 .fadeup {
	transition-delay: 0.4s;
}
.medical .med_box .img_box .img1 .ft_sempl .fadein {
	transition-delay: 1.0s;
}
.medical .med_box .txt_box {
	transition-delay: 0.6s;
}
.medical .med_box .txt_box .med_index {
	margin-top: 1.4em;
	margin-bottom: .4em;
}
.medical .med_box .txt_box .txt {
	width: 100%;
	max-width: 980px;
	margin: 0 auto 40px;
}
.medical .med_box .link_list {
	width: 70%;
	max-width: 690px;
	margin-left: auto;
	margin-right: 0;
	background: #fff;
	padding: 30px 0;
	display: flex;
    justify-content: space-between;
	transition-delay: 0.8s;
}
.medical .med_box .link_list li {
	width: 50%;
	box-sizing: border-box;
	border-left: solid 1px #999b9b;
	padding-left: 6%;
}
.medical .med_box .link_list li:first-child {
	border-left: none;
}
.medical .med_box .link_list .com_btn3 a {
	display: block;
	height: 3.0em;
	padding-left: 0;
	margin-top: 0;
}
.medical .med_box .link_list .com_btn3 a p {
	position: absolute;
	left: 3.5em;
	top: 50%;
	transform: translateY(-50%);
}
.medical .med_box .link_list .com_btn3 a .com_arrow {
	font-size: 90%;
}
.medical .box1::before {
	background: linear-gradient(90deg, rgba(160,191,203,1) 0%, rgba(250,223,217,1) 100%);
}
.medical .box1 .link_list .com_arrow {
	background: #e28894;
}
.medical .box2::before {
	background: linear-gradient(90deg, rgba(236,238,214,1) 0%, rgba(160,191,203,1) 100%);
}
.medical .box2 .link_list .com_arrow {
	background: #b39948;
}
.medical .denture {
	padding: 30px 0 120px;
	color: #fff;
}
.medical .denture a {
	color: #fff;
}
.medical .denture .com_txt_link:hover {
	color: #7ec6f4;
}
.medical .denture .com_btn3 a .com_arrow {
	background: #7ec6f4;
}
.medical .denture .flex_box {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	display: flex;
    justify-content: space-between;
	margin-bottom: 80px;
}
.medical .denture .flex_box .img_box {
	width: 37%;
	max-width: 404px;
}
.medical .denture .flex_box .txt_box {
	width: 60%;
	max-width: 630px;
}
.medical .denture h3 {
	font-size: 180%;
	letter-spacing: .15em;
	line-height: 1.6em;
	margin-bottom: .5em;
}
.medical .denture .txt_box .com_btn3 a {
	margin-top: 2.0em;
}
.medical .denture ul {
	width: 100%;
	margin: 0 auto 60px;
	display: flex;
    justify-content: center;
}
.medical .denture li {
	display: flex;
    justify-content: center;
}
.medical .denture li:nth-child(2) {
	margin: 0 3%;
}
.medical .denture li .icon {
	width: 20vw;
	max-width: 80px;
	margin-right: 1.2em;
}
.medical .denture li dt {
	font-size: 95%;
	letter-spacing: .15em;
	line-height: 1.6em;
	white-space: nowrap;
}
.medical .denture li dd {
	white-space: nowrap;
}
.medical .denture .price_box {
	position: relative;
	text-align: center;
}
.medical .denture .price_box::before {
	content: "";
	position: absolute;
	z-index: 0;
	width: 100%;
	height: 1px;
	background: #8db2c1;
	left: 0;
	top: 50%;
}
.medical .denture .price_box > div {
	width: 40%;
	max-width: 340px;
	margin: 0 auto;
	padding: 0 20px;
	background: #417f98;
	position: relative;
	z-index: 1;
}
.medical .denture .com_btn2 a {
	display: block;
	background: #266d8d;
}
.medical .denture .com_btn2 a:hover {
	background: #7ec6f4;
}

.medical .case {
	background: #ecefee;
	padding: 60px 0;
}
.medical .case .w1220 {
	display: flex;
    justify-content: space-between;
}
.medical .case .box_l {
	width: 36%;
}
.medical .case .box_r {
	width: 64%;
}
.medical .case .box_l .ft_sempl {
	color: #fff;
	font-size: min(840%,10vw);
	letter-spacing: .1em;
	line-height: 1.2em;
	margin-top: -.2em;
}
.medical .case .box_l .com_btn1 a {
	margin-top: 0;
}
.medical .case .box_r ul {
	width: 100%;
	max-width: 630px;
	display: flex;
    justify-content: space-between;
}
.medical .case .box_r li {
	width: 48%;
	max-width: 290px;
}
.medical .case .box_r .ft_sempl {
	color: #294c7f;
	font-size: 95%;
	letter-spacing: .1em;
	line-height: 1.2em;
	margin: 1.2em 0 .5em;
}
.medical .case .box_r .ft_min {
	font-size: 95%;
	letter-spacing: .15em;
	line-height: 1.4em;
}
.medical .case .img_thum {
	position: relative;
	overflow: hidden;
}
.medical .case .img_thum::before {
	content: "";	/* 高さ */
	display: block;
	padding-top: 65%;
}
.medical .case .img_thum a {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	transition: all 1s ease-out;
}
.medical .case li:hover .img_thum a {
	transition: all 7s cubic-bezier(0,.6,.45,1);
	transform: scale(1.3);
}
.medical .case .img_thum img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* 1150px以下
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 1150px) {
.medical .denture ul {
	width: 100%;
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
    justify-content: space-between;
}
.medical .denture li {
	width: 33.3333%;
	margin: 0 !important;
	display: block;
	text-align: center;
}
.medical .denture li .icon {
	width: 30%;
	margin: 0 auto 1.0em;
}
}
/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.medical .bg {
	padding-top: 4%;
}
.medical .med_index {
	font-size: 3.9vw;
	letter-spacing: .1em;
}
.medical .bg .lead_box {
	margin-bottom: 7%;
}
.medical .bg .lead_box .title_box {
	margin-bottom: 2%;
}
.medical .med_box {
	margin-bottom: 8%;
}
.medical .med_box .img_box .img1 .ft_sempl {
	font-size: 10vw;
	letter-spacing: .05em;
}
.medical .med_box .img_box .img2 {
	width: 65%;
}
.medical .med_box .txt_box .med_index {
	margin-top: 1.0em;
	margin-bottom: .3em;
}
.medical .med_box .txt_box .txt {
	margin-bottom: 4%;
}
.medical .med_box .link_list {
	padding: 15px 0;
}
.medical .denture {
	padding: 3% 0 8%;
}
.medical .denture .flex_box {
	margin-bottom: 6%;
}
.medical .denture h3 {
	font-size: 170%;
	letter-spacing: .1em;
}
.medical .denture .txt_box .com_btn3 a {
	margin-top: 1.5em;
}
.medical .denture ul {
	width: 100%;
	max-width: 100%;
    justify-content: space-between;
	margin-bottom: 6%;
}
.medical .denture li {
	width: 33.3333%;
	margin: 0 !important;
	display: block;
	text-align: center;
}
.medical .denture li .icon {
	width: 30%;
	margin: 0 auto .5em;
}
.medical .denture li dt {
	letter-spacing: .1em;
}
.medical .case {
	padding: 5% 0;
}
.medical .case .box_l .ft_sempl {
	font-size: 10vw;
	letter-spacing: .05em;
}
.medical .case .box_r .ft_sempl {
	letter-spacing: .05em;
}
.medical .case .box_r .ft_min {
	letter-spacing: .1em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.medical .bg {
	padding-top: 12%;
}
.medical .med_index {
	font-size: 150%;
	letter-spacing: .1em;
	line-height: 1.4em;
}
.medical .bg .lead_box {
	margin-bottom: 10%;
	text-align: left;
}
.medical .bg .lead_box .title_box {
	margin-bottom: 6%;
}
.medical .bg .lead_box .top_index {
	position: absolute;
	z-index: 0;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	letter-spacing: normal;
}
.medical .bg .lead_box h2 {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
}
.medical .med_box {
	margin-bottom: 14%;
}
.medical .med_box::before {
	height: calc(100% - 28vw);/*背景グラデ*/
	top: 20vw;
}
.medical .med_box .img_box .img1 {
	width: 100%;
	box-sizing: border-box;
	padding-left: 5%;
	margin: 0 auto;
}
.medical .med_box .img_box .img1 .ft_sempl {
	font-size: 400%;
	letter-spacing: .05em;
	left: 0;
	bottom: 0;
	transform: translate(-.2em,.3em);
}
.medical .med_box .img_box .img2 {
	position: relative;
	width: 120%;
	margin-left: -10%;
	margin-top: -5%;
	right: auto;
	top: auto;
	transform: none;
}
.medical .med_box .txt_box .med_index {
	margin-top: 0;
	margin-bottom: .5em;
}
.medical .med_box .txt_box .txt {
	margin-bottom: 6%;
}
.medical .med_box .link_list {
	width: 116%;
	max-width: 120%;
	padding: .8em 0;
	margin-left: -8%;
}
.medical .med_box .link_list li {
	padding-left: 3%;
}
.medical .med_box .link_list .com_btn3 a {
	font-size: 90%;
	height: 3.0em;
}
.medical .med_box .link_list .com_btn3 a p {
	left: 2.4em;
}
.medical .med_box .link_list .com_btn3 a .com_arrow {
	font-size: 60%;
}
.medical .denture {
	padding: 3% 0 10%;
}
.medical .denture .flex_box {
	display: block;
	padding-bottom: 10%;
	border-bottom: solid 1px #8db2c1;
	margin-bottom: 10%;
}
.medical .denture .flex_box .img_box {
	width: 80%;
	margin: 0 auto 1.0em;
}
.medical .denture .flex_box .txt_box {
	width: 100%;
	max-width: 100%;
}
.medical .denture h3 {
	text-align: center;
	font-size: 135%;
	letter-spacing: .05em;
	margin-bottom: .3em;
}
.medical .denture .txt_box .com_btn3 a {
	margin-top: 1.0em;
}
.medical .denture ul {
	margin-bottom: 10%;
    justify-content: space-between;
    flex-wrap: wrap;
}
.medical .denture li {
	width: 48%;
    justify-content: space-between;
    align-items: center;
	margin: 2.0em 0 0 !important;
	position: relative;
	padding-bottom: 2.4em;
}
.medical .denture li:nth-child(-n+2) {
	margin: 0 !important;
}
.medical .denture li .icon {
	width: 28%;
	margin: 0;
}
.medical .denture li dl {
	width: 65%;
}
.medical .denture li dt {
	font-size: 85%;
	letter-spacing: normal;
	white-space: normal;
}
.medical .denture li dd.com_btn3 {
	position: absolute;
	left: 0;
	bottom: 0;
}
.medical .denture li dd.com_btn3 a {
	font-size: 95%;
	letter-spacing: normal;
	padding-left: 2.5em;
}
.medical .denture .price_box > div {
	width: 60%;
	max-width: 100%;
	padding: 0 10px;
}
.medical .case {
	padding: 6% 0 8%;
}
.medical .case .w1220 {
	display: block;
}
.medical .case .box_l {
	width: 100%;
	margin-bottom: 10%;
}
.medical .case .box_r {
	width: 100%;
}
.medical .case .box_l .ft_sempl {
	font-size: 400%;
}
.medical .case .box_r ul {
	max-width: 100%;
}
.medical .case .box_r .ft_sempl {
	font-size: 90%;
	letter-spacing: .05em;
	margin: 1.0em 0 .5em;
}
.medical .case .box_r .ft_min {
	font-size: 90%;
	letter-spacing: normal;
}
}

/*info
---------------------------------------------------------*/
.info {
	padding-bottom: 100px;
}
.news_sns .flex_box{
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
	padding-bottom: 60px;
	margin-bottom: 180px;
	border-bottom: 1px solid #ccc;
}
.news_sns .box_l {
	width: 45%;
	max-width: 540px;
}
.news_sns .box_r {
	display: flex;
    justify-content: space-between;
	width: 50%;
	max-width: 610px;
	padding-top: 2%;
}
.news_sns .box_r .bnr_sns {
	width: 100%;
	max-width: 290px;
}

.news_sns .news .title_box {
	display: flex;
    justify-content: space-between;
    align-items: flex-end;
	margin-bottom: 30px;
}
.news_sns.news .title_box h2 {
	color: #294c7f;
	font-size: 250%;
	letter-spacing: .1em;
	line-height: 1.2em;
}
.news_sns .news ul {
	display: flex;
    justify-content: space-between;
}
.news_sns .news li {
	width: 42%;
	position: relative;
}
.news_sns .news li:last-child {
	padding-left: 8%;
}
.news_sns .news li:last-child::before {
	content: "";
	position: absolute;
	width: 1px;
	height: 70%;
	background: #bfc0c0;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
}
.news_sns .news li .ft_sempl {
	color: #294c7f;
	font-size: 95%;
	letter-spacing: .1em;
	line-height: 1.2em;
	margin-bottom: .5em;
}
.news_sns .news li .ft_min {
	font-size: 120%;
	letter-spacing: .15em;
	line-height: 1.4em;
	margin-bottom: .5em;
}
.news_sns .news li p {
	font-size: 85%;
	letter-spacing: .15em;
	line-height: 1.6em;
	padding-bottom: .5em;
	position: relative;
}
.news_sns .news li p::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #294c7f;
	left: 0;
	bottom: 0;
	transform: scale(0,1);
	transform-origin: right center;
	transition: transform 0.6s;
}
.news_sns .news li:hover p::after {
	transition: transform 0.4s;
	transform-origin: left center;
	transform: scale(1,1);
}
.news_sns .bnr_sns {
	position: relative;
}
.news_sns .bnr_sns > div {
	width: 96%;
	max-width: 290px;
}
.news_sns .bnr_sns dl {
	position: absolute;
	z-index: 1;
	color: #fff;
	left: 6%;
	top: 0;
}
.news_sns .bnr_sns dt {
	font-size: min(450%,2.9vw);
	letter-spacing: .1em;
	line-height: 1.2em;
	opacity: 0.5;
	margin-top: -.2em;
}
.news_sns .bnr_sns dd {
	font-size: min(120%,2.0vw);
	letter-spacing: .15em;
	line-height: 1.5em;
	margin-top: 1.2%;
}
.news_sns .bnr_sns .com_btn2 {
	position: absolute;
	z-index: 2;
	width: 90%;
	max-width: 300px;
	right: 0;
	bottom: 0;
	transform: translateY(40%);
	font-size: min(100%,3.4vw);
}
.news_sns .bnr_sns .com_btn2 a {
	display: block;
	box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.2);
	background: #fff;
	color: #010404;
	padding: .7em 1em;
	padding-right: 2.5em;
}
.news_sns .bnr_sns .com_btn2 a .com_arrow {
	color: #294c7f;
}
.info .recruit {
	width: 92%;
	max-width: 1100px;
	box-sizing: border-box;
	margin: 0 auto;
	background: #fde2db;
	padding: 3.5%;
}
.info .recruit > div {
	background: #fff;
	padding: 50px 7% 30px;
	position: relative;
	z-index: 1;
	border-radius: 30px;	/*揃える*/
}
.info .recruit > div::before {
	content: "";
	position: absolute;
	z-index: 0;
	width: 43%;
	max-width: 435px;
	height: 100%;
	border-radius: 0 30px 30px 0;
	background: url("../images/top/rec_img@2x.jpg") no-repeat center center;
	background-size: cover;
	right: 0;
	top: 0;
}
.info .recruit h2 {
	color: #f9998d;
	font-size: 345%;
	letter-spacing: .1em;
	line-height: 1.2em;
	position: absolute;
	z-index: 1;
	left: 7%;
	top: 0;
	transform: translateY(-50%);
}
.info .recruit dl {
	position: relative;
	z-index: 1;
}
.info .recruit dt {
	font-size: 220%;
	letter-spacing: .15em;
	line-height: 1.2em;
	display: inline-block;
	padding-right: 1.8em;
	position: relative;
	margin-bottom: .5em;
}
.info .recruit dt .com_arrow {
	position: absolute;
	font-size: 45%;
	background: #f9998d;
	right: 0;
	top: -.2em;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.info {
	padding-bottom: 8%;
}
.news_sns .flex_box{
	padding-bottom: 6vw;
	margin-bottom: 14vw;
}
.news_sns .news .title_box {
	font-size: 90%;
	margin-bottom: 6%;
}
.news_sns .news .title_box h2 {
	letter-spacing: .05em;
}
.news_sns .news li {
	width: 45%;
}
.news_sns .news li:last-child {
	padding-left: 5%;
}
.news_sns .news li .ft_sempl {
	letter-spacing: .05em;
}
.news_sns .news li .ft_min {
	letter-spacing: .05em;
}
.news_sns .news li p {
	letter-spacing: normal;
}

.info .recruit {
	padding: 3.5%;
}
.info .recruit > div {
	padding: 6% 4% 4%;
}
.info .recruit h2 {
	left: 4%;
	font-size: 5.0vw;
	letter-spacing: .05em;
}
.info .recruit dl {
	font-size: 95%;
}
.info .recruit dd {
	line-height: 1.6em;
}
}
/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.info {
	padding-bottom: 14%;
}
.news_sns .flex_box {
	display: block;
	padding-bottom: 12vw;
	margin-bottom: 5vw;
}
.news_sns .flex_box .box_l {
	width: 100%;
	max-width: 100%;
}
.news_sns .flex_box .box_r {
	width: 100%;
	max-width: 100%;
	padding-top: 0;
}
.news_sns .news {
	margin-bottom: 10%;
}
.news_sns .news .title_box {
	margin-bottom: 6%;
}
.news_sns .news .title_box h2 {
	font-size: 200%;
	letter-spacing: .05em;
}
.news_sns .news .title_box .com_btn1 {
	font-size: 90%;
}
.news_sns .news li {
	width: 44%;
}
.news_sns .news li:last-child {
	padding-left: 6%;
}
.news_sns .news li .ft_sempl {
	font-size: 90%;
	letter-spacing: .05em;
	margin-bottom: .3em;
}
.news_sns .news li .ft_min {
	font-size: 110%;
	letter-spacing: .05em;
	margin-bottom: .3em;
}
.news_sns .news li p {
	font-size: 90%;
	letter-spacing: normal;
}
.news_sns .bnr_sns {
	width: 80%;
	margin: 0 auto;
}
.news_sns .bnr_sns dt {
	font-size: 190%;
	letter-spacing: .05em;
}
.news_sns .bnr_sns dd {
	font-size: 90%;
	letter-spacing: .1em;
}
.news_sns .bnr_sns .com_btn2 {
	font-size: 90%;
}
.news_sns .recruit {
	width: 100%;
	padding: 6%;
}
.news_sns .recruit > div {
	padding: 10% 6% 35vw;
	border-radius: 4vw;/*揃える*/
}
.news_sns .recruit > div::before {
	width: 100%;
	max-width: 100%;
	height: 30vw;
	border-radius: 0 0 4vw 4vw;
	top: auto;
	bottom: 0;
	background-image: url("../images/top/rec_img_sp.jpg");
}
.news_sns .recruit h2 {
	font-size: 200%;
	letter-spacing: .05em;
	text-align: center;
	margin: auto;
	left: 0;
	right: 0;
	top: 0;
	transform: translateY(-50%);
}
.info .recruit h2 {
	font-size: 8vw;
	top: 4%;
}
.info .recruit dl {
	position: relative;
	z-index: 1;
}
.info .recruit dt {
	font-size: 160%;
	letter-spacing: .1em;
	margin-bottom: .5em;
}
.info .recruit dd {
	font-size: 90%;
	letter-spacing: normal;
	line-height: 1.6em;
}
}



/*DOCTOR
---------------------------------------------------------*/
.doctor .bg {
	position: relative;
	z-index: 0;
	overflow: hidden;
	padding: 170px 0 80px;
}
.doctor .bg .w1220 {
	position: relative;
	z-index: 1;
}
.doctor .top_index {
	position: absolute;
	left: 3%;
	top: 0;
	transform: translateY(-55%);
}
.doctor h2 {
	font-size: 110%;
	letter-spacing: .2em;
	line-height: 1.6em;
	margin-bottom: 90px;
}

.doctor .flex_box {
	width: 100%;
	max-width: 1160px;
	margin-left: auto;
	margin-right: 0;
	display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.doctor .flex_box .box_l {
	width: 34%;
	max-width: 389px;
	position: relative;
	z-index: 1;
}
.doctor .flex_box .box_r {
	width: 60%;
	max-width: 670px;
	position: relative;
	z-index: 2;
	padding-top: 12%;
}
.doctor .flex_box .box_l .photo {
	position: relative;
	z-index: 0;
}
.doctor .flex_box .box_l dl {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 310px;
	margin: 30px auto 0;
}
.doctor .flex_box .box_l dt {
	font-size: 125%;
	letter-spacing: .2em;
	line-height: 1.2em;
	margin-bottom: .8em;
}
.doctor .flex_box .box_l dt span {
	font-size: 85%;
	letter-spacing: .2em;
	line-height: 1.2em;
}
.doctor .flex_box .box_l dd:not(.img_txt) {
	font-size: 220%;
	letter-spacing: .15em;
	line-height: 1.2em;
	margin-bottom: .5em;
}
.doctor .flex_box .box_l dd.img_txt {
	border-bottom: solid 1px #294c7f;
}
.doctor .flex_box .box_l dd.img_txt img {
	margin-left: 0;
	width: 55%;
	max-width: 160px;
}
.doctor .flex_box .box_l .abs {
	width: 120vw;
	max-width: 1820px;
	position: absolute;
	z-index: 1;
	left: -80px;
	top: 33%;
}
.doctor .flex_box .box_r dt {
	font-size: min(260%,4.0vw);
	letter-spacing: .15em;
	line-height: 1.5em;
	margin-bottom: 1.0em;
}

.doctor .profile {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: 1020px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
	display: flex;
    justify-content: space-between;
}
.doctor .profile > dl {
	width: 48%;
	max-width: 474px;
}
.doctor .profile dt {
	background: #4493b8;
	color: #fff;
	font-size: 115%;
	letter-spacing: .2em;
	line-height: 1.4em;
	padding: .3em 1.5em;
	margin-bottom: 1.5em;
}
.doctor .profile dd {
	width: 100%;
	max-width: 420px;
	margin: 0 auto;
	font-size: 95%;
	letter-spacing: .15em;
	line-height: 1.4em;
}
.doctor .profile dd li {
	box-sizing: border-box;
	padding-left: 1.0em;
	position: relative;
	margin-bottom: .8em;
}
.doctor .profile dd li::before {
	content: "・";
	position: absolute;
	left: 0;
	top: 0;
}
.doctor .profile dd li:last-child {
	margin-bottom: 0;
}
.doctor .profile dd li.no_dot {
	padding-left: 0;
}
.doctor .profile dd li.no_dot::before {
	display: none;
}

.doctor .com_btn2 {
	position: relative;
	text-align: center;
}
.doctor .com_btn2 a {
	margin-top: 0;
}

/* Tablet (Portrait)
------------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 959px) {
.doctor .bg {
	padding: 12% 0 8%;
}
.doctor h2 {
	letter-spacing: .15em;
	margin-bottom: 6%;
}

.doctor .flex_box .box_l dl {
	margin-top: 10%;
	font-size: 90%;
}	
.doctor .flex_box .box_l dt {
	letter-spacing: .1em;
}
.doctor .flex_box .box_l dt span {
	letter-spacing: .1em;
}
.doctor .flex_box .box_l dd:not(.img_txt) {
	letter-spacing: .1em;
}
.doctor .flex_box .box_l .abs {
	left: -5vw;
	top: 33%;
}
.doctor .flex_box .box_r dt {
	font-size: 4.0vw;
	margin-bottom: .6em;
}

.doctor .profile {
	margin-bottom: 6%;
}
.doctor .profile dt {
	letter-spacing: .1em;
}
.doctor .profile dd {
	letter-spacing: .05em;
}
}

/* Mobile (Portrait)
------------------------------------------*/
@media only screen and (max-width: 767px) {
.doctor .bg {
	padding: 20% 0 15%;
}
.doctor h2 {
	font-size: 100%;
	letter-spacing: .15em;
	margin-bottom: 8%;
}

.doctor .flex_box {
	display: block;
}
.doctor .flex_box .box_l {
	width: 100%;
	max-width: 100%;
}
.doctor .flex_box .box_r {
	width: 100%;
	max-width: 100%;
	padding-top: 8%;
}

.doctor .flex_box .box_l .photo {
	width: 60%;
	margin: 0 auto;
}
.doctor .flex_box .box_l dl {
	width: 100%;
	max-width: 100%;
	margin: 4% 0 0;
	text-align: center;
}
.doctor .flex_box .box_l dt {
	font-size: 110%;
	letter-spacing: .1em;
	margin-bottom: .5em;
}
.doctor .flex_box .box_l dt span {
	letter-spacing: .1em;
}
.doctor .flex_box .box_l dd:not(.img_txt) {
	font-size: 180%;
	letter-spacing: .15em;
	margin-bottom: .3em;
}
.doctor .flex_box .box_l dd.img_txt {
	width: 65%;
	margin: 0 auto;
}
.doctor .flex_box .box_l dd.img_txt img {
	margin-left: auto;
}
.doctor .flex_box .box_l .abs {
	width: 140vw;
	left: 0;
	top: 33%;
}
.doctor .flex_box .box_r dt {
	font-size: 140%;
	letter-spacing: .1em;
	margin-bottom: .8em;
}

.doctor .profile {
	display: block;
	margin-bottom: 9%;
}
.doctor .profile > dl {
	width: 100%;
	max-width: 100%;
	margin-bottom: 5%;
	font-size: 90%;
}
.doctor .profile > dl:last-child {
	margin-bottom: 0;
}
.doctor .profile dt {
	letter-spacing: .1em;
	margin-bottom: .8em;
}
.doctor .profile dd {
	width: 90%;
	max-width: 100%;
	letter-spacing: normal;
}
.doctor .profile dd li {
	margin-bottom: .4em;
}
}


