@charset "UTF-8";
/*
Theme Name: レスポンシブテンプレート
Theme URI: 
Description: サインズ
Version: 1.0
Author: sains
Author URI: 
*/

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/******************
画像位置ぞろえ[共通]
******************/

img.aligncenter{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

img.alignright{
	margin-left: auto;
	display:block;
}

img.alignleft{
	text-align: left;
}

/******************
オールクリア[共通]
******************/

body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object,figure{
	margin: 0;
	padding: 0;
}

html {
	font-size: 62.5%; /* 1rem = 10px */
}

body {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	color: #323232;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	word-break: break-all;
	background-color: #f5f5f4;
	position: relative;
}

img {
	border:none;
	vertical-align:bottom;
	max-width:100%;
	height:auto;
}

li {
	list-style-type:none;	
}

a {
	color:#323232;
	text-decoration:none;
	transition: .3s all ease;
	backface-visibility: hidden;
}

a:hover {
	color: #989898;
	backface-visibility: hidden;
}

a img {
    -webkit-transition: 0.3s ease-in-out;
       -moz-transition: 0.3s ease-in-out;
         -o-transition: 0.3s ease-in-out;
            transition: 0.3s ease-in-out;
		outline:none;
	box-shadow: #000 0 0 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}

a:hover img {
	opacity:0.7;
	-moz-opacity:0.7;
	-webkit-opacity:0.7;
}

table {
	border-collapse:collapse;
	border-color: #333333;
}
th {
	font-weight: 400;
}
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	font-size: 100%;
	color: #323232;
}

@media screen and (max-width: 1024px) {
	body {
		font-size: 1.4rem;
	}
}

/******************
汎用[共通]
******************/

.float_left{
	float:left;
}

.float_right{
	float:right;
}

.clear{
	clear:both;
}

.cenclear{
	clear:both;
	text-align:center;
	padding-top:30px;
}

.txt_center{
	text-align:center;
}


/******************
全体[共通]
******************/

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	overflow: hidden;
	clip: rect(0,0,0,0);
}


.accordion-panel {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease;
}


/******************
ヘッダー
******************/
.header {
	width: 100%;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 100;
}
.header-inner {
	width: 95%;
	margin: 0 auto;
}
.header-logo {
	max-width: 160px;
	width: 100%;
}
.header-logo a {
	display: block;
}
.nav-btn {
	width: 80px;
	height: 80px;
	position: fixed;
	top: 10px;
	right: 2.5%;
	z-index: 10000;
}
.nav-btn:before {
	content: "MENU";
	position: absolute;
	bottom: 10px;
	left: 0;
	width: 100%;
	text-align: center;
	font-family: "Poppins", sans-serif;
	font-size: 1.4rem;
}
.nav-btn span:not(.sr-only) {
	display: block;
	width: 60%;
	height: 1px;
	background-color: #323232;
	position: absolute;
	left: 20%;
	transition: .3s all ease;
}
.nav-btn span:nth-child(2) {
	top: 16px;
}
.nav-btn span:nth-child(3) {
	top: 28px;
}
.nav-btn span:nth-child(4) {
	top: 40px;
}

/*オープン時のスタイル*/

.nav-btn.is-active:before {
	content: "CLOSE";
}
.nav-btn.is-active span:nth-child(2) {
	top: 30px;
	transform: rotate(25deg);
}
.nav-btn.is-active span:nth-child(3) {
	width: 0;
}
.nav-btn.is-active span:nth-child(4) {
	top: 30px;
	transform: rotate(-25deg);
}


body.is-locked {
	overflow: hidden;
}
body:before {
	opacity: 0;
	visibility: hidden;
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	transition: .3s all ease;
	z-index: 100;
}
body.is-locked:before {
	opacity: 1;
	visibility: visible;
}

.nav-wrap {
	position: fixed;
	top: 0;
	right: 0;
	width: 100%;
	max-width: 680px;
	height: 100svh;
	background-color: #f5f5f4;
	transform: translateX(100%);
	transition: .3s all ease;
	overflow-y: auto;
	z-index: 9999;
	
	background-image: repeating-linear-gradient(to bottom,#bfbfbf 0 6px,transparent 6px 12px);
	background-size: 1px 12px;
	background-repeat: repeat-y;
	background-position: 4em 0;
}
.nav-wrap.is-open {
	transform: translateX(0);
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}
#global-nav .nav-container {
	padding: 6em 4em 4em;
	position: relative;
}
#global-nav ul {
	padding-left: 60px;
}
#global-nav ul li:not(:last-child) {
	margin-bottom: 2em;
}
#global-nav ul li a {
	display: inline-block;
	color: #323232;
}
#global-nav ul li a .eng {
	display: inline-block;
	font-family: "Poppins", sans-serif;
	font-size: 2.6rem;
	font-weight: 400;
	position: relative;
}
#global-nav ul li a .eng:before {
	content: "";
	width: 0;
	height: 100%;
	background-color: #54e2f4;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	transition: .3s all ease;
}
#global-nav ul li a:hover .eng:before {
	width: 100%;
}
#global-nav ul li a .eng:after {
	content: "";
	width: calc(4em + 5px);
	height: 1px;
	border-top: 1px dashed #bfbfbf;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: calc(100% + 30px);
}
#global-nav ul li a .jp {
	display: block;
	font-size: 1.4rem;
}
#global-nav ul li a .jp br {
	display: none;
}

@media screen and (max-width: 1280px) {
	.nav-wrap {
		max-width: 520px;
	}
	#global-nav ul li a .eng {
		font-size: 2.2rem;
	}
}
@media screen and (max-width: 1024px) {
	.header {
		height: 70px;
	}
	.header-logo {
		max-width: 120px;
	}
	.nav-btn {
		width: 50px;
		height: 50px;
	}
	.nav-btn:before {
		bottom: 5px;
		line-height: 100%;
	}
	.nav-btn span:not(.sr-only) {
		width: 80%;
		left: 10%;
	}
	.nav-btn span:nth-child(2) {
		top: 7px;
	}
	.nav-btn span:nth-child(3) {
		top: 15px;
	}
	.nav-btn span:nth-child(4) {
		top: 23px;
	}
	.nav-btn.is-active span:nth-child(2) {
		top: 15px;
	}
	.nav-btn.is-active span:nth-child(4) {
		top: 15px;
	}
}
@media screen and (max-width: 768px) {
	.nav-wrap {
		background-position: 2em 0;
	}
	#global-nav .nav-container {
		padding: 6em 2em 4em;
	}
	#global-nav ul {
		padding-left: 40px;
	}
	#global-nav ul li a .eng:after {
		right: calc(100% + 20px);
		width: calc(2em + 5px);
	}
}
@media screen and (max-width: 480px) {
	.nav-wrap {
		background-position: 1em 0;
	}
	#global-nav .nav-container {
		padding: 6em 1em 4em;
	}
	#global-nav ul {
		padding-left: 25px;
	}
	#global-nav ul li a .eng {
		font-size: 2rem;
	}
	#global-nav ul li a .eng:after {
		right: calc(100% + 10px);
	}
}
@media screen and (max-width: 350px) {
	#global-nav ul li a .jp br {
		display: block;
	}
}

/******************
メイン
******************/
.main {
	overflow: hidden;
}

/*メインビジュアル*/
.main-visual {
	position: relative;
	max-width: 1800px;
	margin: 1em auto;
	height: clamp( calc(100vw * 3 / 7), calc(100svh - 2em), calc(100vw * 5 / 7) );
}
.main-visual .img-container {
	width: 50%;
	height: 100%;
	margin: 0 auto;
}
.mv-swiper {
	height: 100%;
	overflow: hidden;
}
.mv-swiper .slide-img {
	height: 100%;
}
@keyframes zoom-in {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}
.mv-swiper .swiper-slide-active .slide-img,
.mv-swiper .swiper-slide-duplicate-active .slide-img,
.mv-swiper .swiper-slide-prev .slide-img {
	animation: zoom-in 10s linear 0s 1 normal both;  
}
.mv-swiper .slide-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.main-visual .main-text {
	position: absolute;
	z-index: 10;
}
.main-visual .text-01 {
	top: 110px;
	left: 2.5%;
	width: 35%;
	max-width: 590px;
	animation-delay: 0.6s;
}
.main-visual .text-02 {
	bottom: 7%;
	right: 2.5%;
	width: 29%;
	max-width: 490px;
	animation-delay: 0.8s;
}
.top-h1 {
	margin-bottom: 1em;
}
.top-h1 h1 {
	font-family: "Shippori Mincho", serif;
	font-size: clamp(1.6rem, 1.8vw, 2.4rem);
	font-weight: 200;
	letter-spacing: .1rem;
	white-space: nowrap;
	text-align: right;
}

.mv-swiper-sp {
	display: none;
}

@media screen and (max-width: 768px) {
	.main-visual {
		margin: calc(70px + 4em) auto 4em;
		height: clamp( calc(100vw * 1 / 1), calc(100svh - (8em + 70px) ), calc(100vw * 5 / 2) );
		display: flex;
		flex-direction: column;
	}
	.main-visual .img-container {
		width: 100%;
		height: auto;
		flex: 1;
		min-height: 0;
		margin: -1em auto;
	}
	
	.mv-swiper-pc {
		display: none;
	}
	.mv-swiper-sp {
		display: block;
	}
	
	.main-visual .main-text {
		position: static;
	}
	.main-visual .text-01 {
		width: 80%;
		max-width: 380px;
		margin-left: 5%;
	}
	.main-visual .text-02 {
		text-align: right;
		margin-right: 5%;
		width: 95%;
		max-width: 100%;
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}
	.top-h1 {
		margin-bottom: 0;
		margin-top: 1em;
		order: 2;
	}
	.top-h1 h1 {
		letter-spacing: .1rem;
	}
	.main-visual .text-02 img {
		width: 75%;
		max-width: 320px;
	}
}




/*コンテンツ共通*/
.contents {
	width: 95%;
	max-width: 1800px;
	margin: 0 auto;
}
.top-contents section {
	margin-bottom: 8em;
}
.over-container {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.top-h2 {
	display: flex;
	align-items: center;
	margin-bottom: 4em;
}
.top-h2 p {
	font-family: "Poppins", sans-serif;
	font-size: clamp(2.8rem, 4.5vw, 6rem);
	font-weight: 200;
	line-height: 100%;
}
.top-h2 h2 {
	display: inline-block;
	font-size: 1.6rem;
	font-weight: 500;
	padding: 0 1em;
	margin-left: 80px;
	position: relative;
}
.top-h2 h2:before {
	content: "";
	width: 50px;
	height: 1px;
	background-color: #323232;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: -50px;
}
.top-h2 h2:after {
	content: "";
	width: 0;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background-color: #54e2f4;
	z-index: -1;
	transition: .3s all ease;
}
.top-h2 h2.has-anime:after {
	width: 100%;
}
h2.common {
	font-size: clamp(1.8rem, 2.4vw, 3.4rem);
	font-weight: 300;
	letter-spacing: .2rem;
	margin-bottom: 1em;
}
.common-link {
	margin-top: 3em;
}
.common-link a {
	display: inline-block;
	padding-right: 90px;
	position: relative;
}
.common-link a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 20px;
	width: 45px;
	height: 3px;
	border-bottom: 1px solid #323232;
	border-right: 2px solid #323232;
	transform: skew(60deg) translateY(-1px);
	z-index: 1;
	transition: .3s all ease;
}
.common-link a:hover:before {
	right: 17px;
}
.common-link a:after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 0;
	width: 40px;
	height: 40px;
	border-radius: 100%;
	border: 1px solid #323232;
	
	background: radial-gradient(circle at center, #54e2f4 50%, transparent 51%);
	background-size: 0% 0%;
	background-position: center;
	background-repeat: no-repeat;
	transition: .3s all ease;
}
.common-link a:hover:after {
	background-size: 200% 200%;
}

@keyframes rotate {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}


.fade-element {
	opacity: 0;
	transition: transform 0.5s linear;
	animation-duration: 1.5s;
	animation-fill-mode: both;
}
.is-fadein {
	animation-name: itemBlur;
	opacity: 1;
}
@keyframes itemBlur {
	from {
		opacity: 0;
		filter: blur(15px);
	}
	to {
		opacity: 1;
		filter: blur(0px);
	}
}
.is-fadeup {
	animation-name: itemBlurUp;
	opacity: 1;
	animation-duration: 1.5s;
	animation-fill-mode: both;
}
@keyframes itemBlurUp {
	from {
		opacity: 0;
		transform: translateY(30px);
		filter: blur(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
		filter: blur(0);
	}
}


@media screen and (max-width: 768px) {
	.contents {
		width: 90%;
	}
	h2.common {
		letter-spacing: .1rem;
	}
}
@media screen and (max-width: 460px) {
	.top-h2 {
		align-items: flex-start;
		flex-direction: column;
		gap: 1em 0;
	}
	.top-h2 h2 {
		font-size: 1.4rem;
		margin-left: 20px;
	}
	.top-h2 h2:before {
		width: 20px;
		left: -20px;
	}
	
	.common-link a {
		padding-right: 55px;
	}
	.common-link a:before {
		right: 15px;
		width: 25px;
	}
	.common-link a:hover:before {
		right: 12px;
	}
	.common-link a:after {
		width: 30px;
		height: 30px;
	}
}

/*最新のお知らせ*/
.latest-articles {
	margin-top: 4em;
}
.latest-news-container {
	display: flex;
	gap: 0 3em;
	align-items: center;
	border-bottom: 1px solid #323232;
	padding-bottom: 1em;
}
.latest-news-container h2 {
	font-family: "Poppins", sans-serif;
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 200;
	line-height: 100%;
}
.latest-news-container .news-item {
	padding: 0;
	border: 0;
	flex: 1;
}
.latest-news-container .news-date {
	margin-right: 10px !important;
}
.latest-news-container .news-title {
	width: calc(100% - 110px) !important;
}

@media screen and (max-width: 768px) {
	.latest-news-container {
		flex-direction: column;
		align-items: flex-start;
		gap: 1.5em 0;
	}
	.latest-news-container .news-item {
		width: 100%;
	}
	.news-item .news-date {
		width: 80px;
	}
	.latest-news-container .news-title {
		width: calc(100% - 90px) !important;
	}
}

/*アジャストメント*/
.top-adjustment .flex-col {
	display: flex;
	align-items: flex-start;
}
.top-adjustment .img-container {
	width: 55%;
	margin-right: -10%;
}
.top-adjustment .img-container img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}
.top-adjustment .text-container {
	width: 55%;
	background-color: #f5f5f4;
	padding: 4em 0 4em 4em;
	margin-top: 12em;
	z-index: 5;
}
.top-adjustment .text-container .eng {
	display: inline-block;
	font-family: "Poppins", sans-serif;
	font-size: 1.8rem;
	font-weight: 200;
	line-height: 100%;
	margin-bottom: 0.5em;
	position: relative;
}
.top-adjustment .text-box p {
	line-height: 250%;
}

@media screen and (max-width: 1024px) {
	.top-adjustment .img-container img {
		height: auto;
	}
}

@media screen and (max-width: 768px) {
	.top-adjustment .flex-col {
		flex-direction: column;
	}
	.top-adjustment .img-container {
		width: 100vw;
		margin-right: calc(50% - 50vw);
	}
	.top-adjustment .text-container {
		width: 100%;
		padding: 3em 0 3em 0;
		margin-top: -3em;
	}
	.top-adjustment .text-container .eng {
		font-size: 1.6rem;
	}
}
@media screen and (max-width: 460px) {
	.top-adjustment .img-container {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		margin-bottom: 2em;
	}
	.top-adjustment .text-container {
		width: 100%;
		padding: 0;
		margin-top: 0;
		background-color: transparent;
	}
	.top-adjustment .text-box p {
		line-height: 200%;
	}
	.top-adjustment .common-link {
		text-align: center;
	}
	.common-link a {
		text-align: left;
	}
}

/*お悩み*/
.top-worry h2 {
	margin-bottom: 3em;
	position: relative;
}
.top-worry h2:before {
	content: "";
	width: 50%;
	max-width: 600px;
	aspect-ratio: 1/1;
	border: 1px dashed #bfbfbf;
	border-radius: 100%;
	position: absolute;
	top: -100px;
	left: calc(-2.5vw - 250px);
	z-index: -2;
	animation: rotate 100s linear infinite;
}
.top-worry h2:after {
	content: "";
	width: 7%;
	max-width: 70px;
	aspect-ratio: 1/1;
	background-color: #54e2f4;
	border-radius: 100%;
	position: absolute;
	top: -130px;
	left: calc(-2.5vw - 20px);
	z-index: -1;
}
.worry-list-container ul {
	padding-left: 120px;
	max-width: 480px;
	margin-left: auto;
	margin-right: 10%;
	position: relative;
}
.worry-list-container ul:before {
	content: "";
	width: 1px;
	height: calc(100% - 24px);
	background-color: #323232;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
}
.worry-list-container ul li {
	position: relative;
	padding-left: 20px;
	line-height: 24px;
}
.worry-list-container ul li:not(:last-child) {
	margin-bottom: 3em;
}
.worry-list-container ul li:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background-color: #323232;
	position: absolute;
	top: 10px;
	left: 0;
}
.worry-list-container ul li:after {
	content: "";
	width: 80px;
	height: 1px;
	background-color: #323232;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: -120px;
}
.worry-list-container ul li:nth-child(1):after {
	width: 100vw;
	left: auto;
	right: calc(100% + 40px);
}

@media screen and (max-width: 1024px) {
	.worry-list-container ul {
		max-width: 400px;
		margin-right: 0;
	}
}
@media screen and (max-width: 768px) {
	.top-worry h2:before {
		width: 100%;
		max-width: 160px;
		top: -70px;
		left: calc(-2.5vw - 80px);
		animation: rotate 20s linear infinite;
	}
	.top-worry h2:after {
		width: 30px;
		top: -85px;
		left: calc(-5vw - 5px);
	}
	.worry-list-container ul {
		padding-left: 40px;
	}
	.worry-list-container ul li:after {
		width: 20px;
		left: -40px;
	}
	.worry-list-container ul li:nth-child(1):after {
		right: calc(100% + 20px);
	}
	
}
@media screen and (max-width: 460px) {
	.top-worry h2:before {
		display: none;
	}
	.top-worry h2:after {
		width: 50px;
		top: -15px;
		left: calc(-5vw - 10px);
	}
	.worry-list-container ul {
		padding-left: 0;
	}
	.worry-list-container ul:before {
		display: none;
	}
	.worry-list-container ul li {
		padding-bottom: 1em;
		border-bottom: 1px dashed #bfbfbf;
	}
	.worry-list-container ul li:not(:last-child) {
		margin-bottom: 2em;
	}
	.worry-list-container ul li:after {
		display: none;
	}
}
@media screen and (max-width: 410px) {
	.top-worry h2 br {
		display: none;
	}
}

/*症例・疾患・成果*/
.case-list-container {
	padding-left: 200px;
	position: relative;
	counter-reset: case-number;
}
.case-list-container:before {
	content: "";
	width: 200px;
	height: 100%;
	background: url("./images/top/case_decoration.svg") center bottom / 100% 1440px no-repeat;
	position: absolute;
	bottom: 0;
	left: calc(-2.5vw - 30px);
}
.case-list-container .accordion-item {
	border-bottom: 1px dashed #bfbfbf;
}
.case-list-container button {
	width: 100%;
	padding: 3em 0;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-template-rows: 1fr;
	grid-column-gap: 20px;
	align-items: center;
	text-align: left;
}
.case-list-container .eng {
	width: 250px;
	font-family: "Poppins", sans-serif;
	padding-left: 60px;
	position: relative;
}
.case-list-container .eng:before {
	font-family: "Noto Sans JP", sans-serif;
	counter-increment: case-number;
	content: "(" counter(case-number) ") ";
	font-variant-numeric: tabular-nums;
	font-size: 1.4rem;
	font-weight: 200;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	left: 0;
}
.case-list-container .icon {
	text-align: center;
}
.case-list-container .icon img {
	width: 100px;
}
.case-list-container .jp {
	font-size: 1.8rem;
}
.case-list-container .toggle-icon {
	width: 25px;
	height: 25px;
	margin-left: auto;
	margin-right: 5%;
	position: relative;
}
.case-list-container .toggle-icon:before {
	content: "+";
	display: block;
	text-align: center;
	line-height: 25px;
	font-size: 2.8rem;
	font-weight: 200;
	transition: .3s all ease;
}
.accordion-item.is-open .toggle-icon:before {
	transform: rotate(45deg);
}

.case-list-container .accordion-item .panel-inner {
	margin: 0 20px 2em 60px;
	background-color: #fff;
	padding: 2em 3em;
}

.case-list {
	display: flex;
	flex-wrap: wrap;
	gap: 1em 20px;
}
.case-list li {
	width: calc(33.33% - 15px - (40px / 3));
	padding-left: 15px;
	position: relative;
}
.case-list li:before {
	content: "";
	width: 5px;
	height: 5px;
	border-radius: 100%;
	background-color: #323232;
	position: absolute;
	top: 10px;
	left: 0;
}

.case-list-container .notes {
	margin-top: 2em;
}

.top-case .common-link {
	text-align: right;
	margin-right: 5%;
}

@media screen and (max-width: 1090px) {
	.case-list-container button {
		display: flex !important;
		gap: 0 !important;
		grid-column-gap: 0;
		position: relative;
	}
	.case-list-container .eng {
		padding-left: 40px;
	}
	.case-list-container .icon {
		margin-right: 3em;
	}
	.case-list-container .toggle-icon {
		margin-right: 2.5%;
		position: absolute;
		right: 0;
	}
}
@media screen and (max-width: 1024px) {
	.top-case .top-h2 {
		margin-bottom: 1em;
	}
	.case-list-container {
		padding-left: 0;
	}
	.case-list-container:before {
		display: none;
	}
	.case-list-container .accordion-item .panel-inner {
		margin: 0 0 2em 0;
	}
	.top-case .common-link {
		margin-right: 0;
	}
}
@media screen and (max-width: 768px) {
	.case-list-container .eng {
		display: none;
	}
	.case-list-container .icon {
		position: relative;
		padding-left: 60px;
	}
	.case-list-container .icon:before {
		font-family: "Noto Sans JP", sans-serif;
		counter-increment: case-number;
		content: "(" counter(case-number) ") ";
		font-variant-numeric: tabular-nums;
		font-size: 1.4rem;
		font-weight: 200;
		position: absolute;
		top: 23px;
		left: 0;
	}
	.case-list-container .icon img {
		width: 80px;
	}
	.case-list li {
		width: calc(50% - 15px - (20px / 2));
	}
	.case-list-container .accordion-item .panel-inner {
		padding: 2em 2em;
		position: relative;
	}
	.case-list-container .accordion-item .panel-inner:before {
		position: absolute;
		bottom: 5px;
		right: 20px;
		opacity: 0.04;
		font-size: clamp(2.8rem, 5.2vw, 3.8rem);
	}
	.case-list-container .accordion-item:nth-child(1) .panel-inner:before {
		content: "NECK AND SHOULDER AREA";
	}
	.case-list-container .accordion-item:nth-child(2) .panel-inner:before {
		content: "WAIST AND BACK AREA";
	}
	.case-list-container .accordion-item:nth-child(3) .panel-inner:before {
		content: "ANS AND INTERNAL ORGANS";
	}
	.case-list-container .accordion-item:nth-child(4) .panel-inner:before {
		content: "AROUND THE PELVIS";
	}
}
@media screen and (max-width: 460px) {
	.case-list-container .jp {
		font-size: 1.6rem;
	}
	.case-list-container .icon {
		padding-left: 0;
		margin-right: 1.5em;
	}
	.case-list-container .icon:before {
		display: none;
	}
	.case-list-container .icon img {
		width: 60px;
	}
	.case-list li {
		width: calc(100% - 15px);
	}
	.case-list-container .accordion-item .panel-inner:before {
		display: none;
	}
	.top-case .common-link {
		text-align: center;
	}
}
@media screen and (max-width: 430px) {
	.case-list-container .notes br {
		display: none;
	}
}

/*当院について*/
.top-about {
	
}
.top-about .flex-col {
	display: flex;
	align-items: flex-start;
}
.top-about .text-container {
	width: 45%;
	margin-left: 5%;
	margin-right: -10%;
	background-color: #f5f5f4;
	padding: 0 4em 4em 0;
	z-index: 1;
}
.top-about .img-container {
	width: 60%;
	margin-top: 6em;
}
.top-about h3 {
	font-size: clamp(1.8rem, 2.1vw, 3rem);
	font-weight: 300;
	letter-spacing: .2rem;
	margin-bottom: 2em;
}
.top-about .text-box p {
	line-height: 250%;
}

@media screen and (max-width: 1440px) {
	.top-about .flex-col {
		align-items: flex-end;
	}
	.top-about .text-container {
		margin-bottom: 6em;
	}
	.top-about .img-container {
		margin-top: 0;
	}
}
@media screen and (max-width: 1024px) {
	.top-about .text-container {
		min-width: 380px;
		margin-left: 0;
	}
}
@media screen and (max-width: 768px) {
	.top-about .flex-col {
		align-items: flex-start;
		flex-direction: column;
	}
	.top-about .text-container {
		order: 2;
		min-width: auto;
		margin-left: 0;
		margin-right: 0;
		margin-top: -4em;
		margin-bottom: 0;
		padding: 3em 0 0 3em;
		width: calc(100% - 3em + 1px);
	}
	.top-about .img-container {
		width: 95vw;
		margin-left: calc(50% - 50vw);
	}
	.top-about h3 {
		letter-spacing: .1rem;
		margin-bottom: 1em;
	}
}
@media screen and (max-width: 460px) {
	.top-about .img-container {
		width: 100%;
		margin-left: 0;
		margin-bottom: 2em;
	}
	.top-about .text-container {
		margin-top: 0;
		padding: 0;
		width: 100%;
		background-color: transparent;
	}
	.top-about .text-box p {
		line-height: 200%;
	}
	.top-about .text-box p br {
		display: none;
	}
	.top-about .common-link {
		text-align: center;
	}
}
@media screen and (max-width: 370px) {
	.top-about h3 br {
		display: none;
	}
}

/*ご利用案内*/
.top-guide {
	position: relative;
}
.top-guide:before {
	
}
.top-guide .flex-col {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0 10%;
}
.top-guide .link-container {
	flex: 1;
	display: flex;
	border: 1px solid #323232;
	position: relative;
}
.top-guide .link-container:before {
	content: "";
	width: 1px;
	height: calc(100% + 8em);
	border-left: 1px dashed #bfbfbf;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
}
.top-guide .link-item {
	width: 50%;
}
.top-guide .link-item a {
	display: block;
	background-color: #fff;
}
.top-guide .link-item-inner {
	min-width: 200px;
	text-align: center;
	padding: 8em 2em;
}
.top-guide .link-item-inner img {
	width: 80px;
}
.top-guide .link-item-inner p {
	margin-top: 1.5em;
}

@media screen and (max-width: 1024px) {
	.top-guide .flex-col {
		flex-direction: column;
	}
	.top-guide .link-container {
		flex: auto;
		width: 100%;
	}
	.top-guide .link-container:before {
		height: 100%;
	}
	.top-guide .link-item-inner {
		min-width: auto;
		padding: 4em 0;
	}
}
@media screen and (max-width: 460px) {
	.top-guide .link-container {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		border-left: 0;
		border-right: 0;
	}
	.top-guide .link-item-inner img {
		width: 60px;
	}
}

/*お知らせ*/
.top-news {
	position: relative;
}
.top-news:before {
	content: "";
	width: 200%;
	max-width: 1500px;
	aspect-ratio: 1/1;
	border: 1px dashed #bfbfbf;
	border-radius: 100%;
	position: absolute;
	top: -700px;
	left: calc(-2.5vw - 1240px);
	z-index: -1;
	animation: rotate 100s linear infinite;
}
.top-news:after {
	content: "";
	width: 200%;
	max-width: 1000px;
	aspect-ratio: 1/1;
	border: 1px dashed #bfbfbf;
	border-radius: 100%;
	position: absolute;
	bottom: 100px;
	left: 75%;
	z-index: -1;
	animation: rotate 100s linear infinite;
}
.top-news .top-h2 {
	margin-bottom: 1em;
}
.top-news-container {
	margin-left: 20%;
}
.news-item {
	border-bottom: 1px solid #323232;
	padding: 3em 0;
	display: flex;
}
.news-item .news-date {
	white-space: nowrap;
	width: 100px;
	margin-right: 20px;
	font-family: "Poppins", sans-serif;
}
.news-item .news-title {
	width: calc(100% - 120px);
}
.top-news .img-container {
	margin-left: calc(50% - 50vw);
	width: 70%;
	margin-top: 8em;
}

@media screen and (max-width: 768px) {
	.top-news-container {
		margin-left: 0;
	}
	.news-item .news-date {
		width: 80px;
	}
	.news-item .news-title {
		width: calc(100% - 100px);
	}
	.top-news:before {
		width: 1300px;
		top: -900px;
		left: calc(-2.5vw - 1230px);
	}
	.top-news:after {
		width: 1300px;
		bottom: -200px;
		left: 85%;
	}
	.top-news .img-container {
		width: 85%;
		max-width: 600px;
	}
}
@media screen and (max-width: 460px) {
	.news-item {
		padding: 2em 0;
		flex-direction: column;
	}
	.news-item .news-date {
		width: 100%;
		margin-bottom: 0.2em;
		margin-right: 0;
	}
	.news-item .news-title {
		width: 100%;
	}
	.top-news .common-link {
		text-align: center;
	}
	.top-news .img-container {
		width: 95vw;
	}
}

/******************
フッター
******************/

.footer-contact {
	width: 95%;
	max-width: 1800px;
	margin: 0 auto;
	display: flex;
}
.tel-container, .line-container {
	width: 50%;
	text-align: center;
	position: relative;
}
.tel-container:before {
	content: "";
	width: 1px;
	height: 70%;
	background-color: #323232;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 0;
}
.footer-contact .title {
	font-size: 2rem;
	margin-bottom: 1.5em;
}
.footer-contact .text-box {
	margin-bottom: 1.5em;
}
.footer-contact .tel a {
	display: inline-block;
	font-family: "Poppins", sans-serif;
	font-size: 3.8rem;
	font-weight: 200;
	letter-spacing: .1rem;
	padding-left: 35px;
	margin-bottom: 0.2em;
	position: relative;
}
.footer-contact .tel a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 24px;
	height: 26px;
	background: url(./images/common/tel_icon.svg) center / 100% no-repeat;
}
.footer-contact .tel .notes span {
	background-color: #323232;
	color: #fff;
	font-size: 1.4rem;
	padding: 0.2em 0.5em;
	margin-right: 1em;
}
.footer-contact .faq {
	margin-top: 3em;
}
.footer-contact .faq a {
	display: block;
	width: 100%;
	max-width: 320px;
	margin: 0 auto;
	padding: 1em 0;
	border: 1px solid #323232;
}
.footer-contact .qr {
	max-width: 180px;
	margin: 0 auto;
}
.footer-contact .line-btn-sp {
	display: none;
}

.footer-info {
	background-color: #000;
	color: #fff;
	margin-top: 6em;
}
.footer-info-inner {
	width: 90%;
	max-width: 1800px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	gap: 4em;
	padding: 6em 0 4em;
}
.footer-info .info-container {
	width: 40%;
	max-width: 540px;
}
.footer-info .logo-eg {
	max-width: 400px;
	margin: 0 auto;
}
.footer-info .logo-jp {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 1.5em;
	margin-top: 3em;
}
.footer-info .footer-logo {
	width: 100%;
	max-width: 150px;
}
.footer-info .footer-logo a {
	display: block;
}
.footer-info .footer-logo a img {
	filter: brightness(0) invert(1);
}
.footer-info .add p {
	font-size: 1.4rem;
}
.footer-info .gmap {
	margin-top: 1em;
}
.footer-info .gmap a {
	display: inline-block;
	color: #fff;
	position: relative;
	padding-right: 20px;
}
.footer-info .gmap a:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 11px;
	height: 12px;
	background: url("./images/common/external_link_icon.svg") center center / 100% auto no-repeat;
	filter: brightness(0) invert(1);
}
.footer-info .calendar-container {
	flex: 1;
}
.footer-info .calendar-container .calendar {
	font-size: 1.5rem;
}
.footer-info .common-link a {
	color: #fff;
}
.footer-info .common-link a:before {
	border-bottom: 1px solid #ffffff;
	border-right: 2px solid #ffffff;
}
.footer-info .common-link a:after {
	border: 1px solid #ffffff;
}
.copyright {
	width: 95%;
	max-width: 1800px;
	margin: 0 auto;
	font-size: 1.2rem;
	text-align: right;
	padding-bottom: 2em;
}

.calendar {
	max-width: 800px;
	margin: 0 auto;
}
.calendar table {
	width: 100%;
}
.calendar table tr {
	border-bottom: 1px solid #c1c1c1;
}
.calendar table tr:nth-child(2) {
	border-bottom: 1px dashed #c1c1c1;
}
.calendar table th {
	text-align: center;
	padding: 2em 1em;
	font-weight: 300;
	white-space: nowrap;
}
.calendar table td {
	text-align: center;
	padding: 2em 1em;
}
.calendar table tr:first-child th {
	padding: 1em 1em;
}
.calendar table th:first-child {
	font-family: "Poppins", sans-serif;
}
.calendar .notes {
	margin-top: 1em;
}

@media screen and (max-width: 1024px) {
	.tel-container:before {
		height: 100%;
	}
	.footer-contact .title {
		font-size: 1.8rem;
	}
	.footer-contact .tel a {
		font-size: 2.8rem;
		padding-left: 30px;
	}
	.footer-contact .tel a:before {
		width: 20px;
		height: 20px;
	}
	.footer-contact .tel .notes span {
		padding: 0.1em 0.2em;
	}
	.footer-contact .faq a {
		max-width: 260px;
	}
	.footer-contact .qr {
		max-width: 130px;
	}
	
	.footer-info-inner {
		flex-direction: column;
	}
	.footer-info .calendar-container {
		flex: auto;
		width: 100%;
	}
	.footer-info .calendar-container .calendar {
		max-width: 100%;
	}
	.footer-info .info-container {
		width: 100%;
		max-width: 100%;
		order: 2;
		display: flex;
		gap: 0 3em;
	}
	.footer-info .logo-eg {
		width: 100%;
		max-width: 380px;
		order: 2;
		flex: 1;
	}
	.footer-info .logo-jp {
		justify-content: flex-start;
		margin-top: 0;
	}
	.footer-info .footer-logo {
		max-width: 120px;
	}
}
@media screen and (max-width: 768px) {
	.footer-contact {
		flex-direction: column;
		gap: 8em;
	}
	.tel-container, .line-container {
		width: 100%;
	}
	.tel-container:before {
		height: 1px;
		width: 100%;
		top: auto;
		bottom: -4em;
	}
	.footer-contact .title {
		position: absolute;
		top: 0;
		left: 0;
		writing-mode: vertical-rl;
		white-space: nowrap;
		width: 12%;
		height: 100%;
		text-align: left;
		margin-bottom: 0;
	}
	.footer-contact .title span {
		writing-mode: horizontal-tb;
		margin-bottom: 0.5rem;
	}
	.footer-contact .inner-box {
		text-align: left;
		margin-left: 24%;
		margin-right: 7%;
	}
	.footer-contact .faq a {
		max-width: 100%;
		text-align: center;
	}
	.footer-contact .qr {
		display: none;
	}
	.footer-contact .line-btn-sp {
		display: block;
		margin-top: 3em;
	}
	.footer-contact .line-btn-sp a {
		text-align: center;
		display: block;
		width: 100%;
		margin: 0 auto;
		padding: 1em 0;
		border: 1px solid #323232;
	}
	
	
}
@media screen and (max-width: 560px) {
	.footer-info .info-container {
		gap: 0 1em;
	}
}
@media screen and (max-width: 460px) {
	.footer-contact .title {
		position: static;
		width: 100%;
		height: auto;
		writing-mode: horizontal-tb;
		text-align: center;
		margin-bottom: 1em;
	}
	.footer-contact .inner-box {
		text-align: center;
		margin-left: 0;
		margin-right: 0;
	}
	.footer-contact .tel .notes {
		font-size: 1.3rem;
	}
	.footer-contact .faq a {
		max-width: 280px;
	}
	.footer-contact .line-btn-sp a {
		max-width: 280px;
	}
	
	.footer-info .info-container {
		gap: 4em 0;
		flex-direction: column;
	}
	.footer-info .logo-eg {
		max-width: 260px;
	}
	.footer-info .logo-jp {
		justify-content: center;
		flex-direction: column;
	}
	.footer-info .logo-jp .add {
		text-align: center;
	}
	.copyright {
		text-align: center;
	}
}

@page {
	margin: 16mm 10mm;
}
@-moz-document url-prefix() {
	@page {
		margin: auto;
	}
}
@media screen and (-webkit-min-device-pixel-ratio:0) {
	@page {
		margin: auto;
	}
}
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}