@import "oc-theme-base.css";

:root {
	--oc-link-color: #008CD6;
	--oc-primary-color: #233b68;

	--oc-btn-primary-color: #008CD6;
	--oc-btn-alt-color: #233b68;

	--oc-blog-heading-mt: 1.9rem;
	--oc-blog-heading-mb: 1.625rem;
	--oc-blog-heading-pt: 1.625rem;
	--oc-blog-font-size: calc(1rem + .069vw);
	--oc-blog-heading1-fs: calc(1.6rem + .069vw);
	--oc-blog-heading2-fs: calc(1.5rem + .069vw);
	--oc-blog-heading3-fs: calc(1.35rem + .069vw);
	--oc-blog-line-height: 1.625rem;
}

body {
	font-size: 16px;
	line-height: 1.8;
}

.text-primary-color {
	color: var(--oc-primary-color);
}

.clear-fix {
	clear: both;
}

a {
	text-decoration: none;
	color: var(--oc-link-color);
	;
}

a:hover {
	text-decoration: none;
}

img {
	max-width: 100%;
}

.bg-image {
	z-index: 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.text-bg-top {
	z-index: 0;
	height: 200px;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.text-bg-top .caption {}

.text-bg-top .caption h1,
.text-bg-top .caption h2 {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
}

.content-none {
	text-align: center;
	font-size: 20px;
	padding: 80px 10px;
}

.content-none .error-number {
	font-size: 70px;
}

.content-none .content-none-btn {
	margin: 20px auto;
	text-align: center;
}

/* OC Button Style */
.site-btn {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 375px;
	height: 73px;
	max-width: 90%;
	border: 1px solid #fff;
	color: #fff;
	background-color: transparent;
	transition: all 0.5s;
}

.site-btn {
	color: var(--oc-primary-color);
	border-color: var(--oc-primary-color);
}

/* END - OC Button Style */

/* OC Modal Style */
.modal-design {
	height: 80vh;
	overflow: scroll;
	margin: 15% 0 10% 0;
	border-radius: unset;
}

.modal-dialog {
	max-width: 800px;
	padding: 1rem;
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: 500px;
		margin: 1.75rem auto;
	}
}

.close-btn {
	position: fixed;
	right: 0;
	top: 25px;
}

.modal-side-margin {
	margin: 0;
}

.modal-body-design {
	padding: 0;
}

.round_btn {
	display: block;
	width: 45px;
	height: 45px;
	border: 2px solid #AA8400;
	/* 枠の調整 */
	border-radius: 50%;
	/* 丸みの度合い */
	background: #fff;
	/* ボタンの背景色 */
}

.round_btn::before,
.round_btn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3px;
	/* 棒の幅（太さ） */
	height: 22px;
	/* 棒の高さ */
	background: #AA8400;
	/* バツ印の色 */
}

.round_btn::before {
	transform: translate(-50%, -50%) rotate(45deg);
}

.round_btn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

/* END - OC Modal Style */

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
追加 css
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
	margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
	list-style: none;
	margin: 0;
	padding: 0;
}

/* Set core root defaults */
html:focus-within {
	scroll-behavior: smooth;
}

/* Set core body defaults */
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
	max-width: 100%;
	display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
	font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
	html:focus-within {
		scroll-behavior: auto;
	}

	*,
	*::before,
	*::after {
		-webkit-animation-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
		-webkit-transition-duration: 0.01ms !important;
		transition-duration: 0.01ms !important;
		scroll-behavior: auto !important;
	}
}

html {
	font-size: 16px;
}

@media (max-width: 1140px) {
	html {
		font-size: 1.4035087719vw;
	}
}

@media screen and (max-width: 768px) {
	html {
		font-size: 16px;
	}
}

@media (max-width: 374px) {
	html {
		font-size: 4.064171123vw;
	}
}

body {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0em;
	font-family:YakuHanJP, "Noto Sans JP", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	color: #2B4857;
	background: #fff;
}

a {
	text-decoration: none;
	color: inherit;
}

.swiper-button-next:after,
.swiper-button-prev:after {
	color: transparent;
}

.lower-layer {
	padding: 5rem 0;
}

@media screen and (max-width: 768px) {
	body {
		font-size: 4.27vw;
	}

	.lower-layer {
		padding: 10.67vw 0 0;
	}
}

.drawer {
	position: relative;
	z-index: 100;
}

.drawer .icon {
	position: fixed;
	width: 64px;
	height: 64px;
	top: 0;
	right: 0;
	background: #008CD6;
	cursor: pointer;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 250;
}

.drawer .icon.is-active {
	background: #011c40;
}

.drawer .icon-bars {
	position: relative;
	width: 16px;
	height: 6px;
	top: 18px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 1000;
}

.drawer .icon-bar1,
.drawer .icon-bar2 {
	position: absolute;
	width: 16px;
	height: 2px;
	background: #fff;
	top: 0;
	left: 0;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

.drawer .icon-bar1 {
	top: 0;
}

.drawer .icon-bar2 {
	top: 4px;
}

.drawer .icon.is-active .icon-bar1 {
	width: 16px;
	top: calc(50% - 1px);
	-webkit-transform: rotate(-35deg);
	transform: rotate(-35deg);
}

.drawer .icon.is-active .icon-bar2 {
	width: 16px;
	top: calc(50% - 1px);
	-webkit-transform: rotate(35deg);
	transform: rotate(35deg);
}

.drawer .icon.is-active {
	z-index: 251;
}

.drawer .icon-menu {
	position: absolute;
	top: 16px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #fff;
}

.drawer .contents {
	position: fixed;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	color: #fff;
	background: #011c40;
	padding: 8.53vw 8vw 8vw;
	margin-top: 64px;
	cursor: auto;
	opacity: 0;
	pointer-events: none;
	overflow-y: scroll;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 250;
}

.drawer .contents.is-active {
	opacity: 1;
	pointer-events: auto;
}

.drawer .nav-wrap {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 4vw;
}

.drawer .menus {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	gap: 2.93vw;
}

.drawer .menu {
	width: 100%;
}

.drawer .menu a {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 1.33vw;
	font-size: 3.73vw;
}

.drawer .menu__arrow {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.drawer .menu__arrow img {
	width: 5.07vw;
	height: 5.07vw;
	-o-object-fit: contain;
	object-fit: contain;
}

.drawer .nav--01 {
	-webkit-box-flex: 1;
	-ms-flex: auto;
	flex: auto;
	width: 100%;
}

.drawer .nav--02,
.drawer .nav--03 {
	width: calc(50% - 2vw);
	margin-top: 8vw;
}

.drawer .menus--row2 {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 2.13vw 8vw;
	padding-left: 4.27vw;
}

.drawer .menus--row2 .menu {
	width: calc(50% - 4vw);
}

.drawer .menu--big {
	width: 100%;
	margin-bottom: 4.27vw;
}

.drawer .menu--big a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 4vw;
}

.drawer .menu--big .menu__text {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	font-size: 4.8vw;
}

.drawer .menu__text--small {
	font-size: 3.2vw;
}

.drawer .menu--big .menu__arrow img {
	width: 6.4vw;
	height: 6.4vw;
}

.drawer .cta {
	width: 100%;
	margin-top: 8.53vw;
	margin-top: 12vw;
}

.drawer .btns {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.07vw;
}

.drawer .btn a {
	gap: 2.13vw;
	background: #008CD6;
	padding: 3.2vw 10.67vw;
}

.drawer .btn a:hover {
	opacity: 1;
}

.drawer .btn__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.drawer .btn__icon img {
	width: 6.4vw;
	height: 6.4vw;
	-o-object-fit: contain;
	object-fit: contain;
}

.drawer .btn__text {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	font-size: 4.27vw;
	color: #fff;
}

.drawer .btn__arrow {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.drawer .btn__arrow img {
	width: 4.8vw;
	height: 4.8vw;
	-o-object-fit: contain;
	object-fit: contain;
}

.drawer .btn--contact a {
	background: #008CD6;
}

.drawer .tel {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	margin-top: 8.53vw;
}

.drawer .tel a {
	display: block;
	height: 100%;
}

.drawer .tel__text {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	font-size: 3.73vw;
	text-align: center;
}

.drawer .tel__row {
	position: relative;
	top: 1.33vw;
	gap: 3.2vw;
}

.drawer .tel__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.drawer .tel__icon img {
	width: 12.8vw;
	height: 12.8vw;
	-o-object-fit: contain;
	object-fit: contain;
}

.drawer .tel__number {
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	font-size: 8.53vw;
}

.drawer .close {
	gap: 2.67vw;
	margin-top: 8.53vw;
	cursor: pointer;
}

.drawer .close__icon {
	position: relative;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: inline-block;
	width: 4vw;
	height: 2.93vw;
}

.drawer .close__icon::before,
.drawer .close__icon::after {
	content: "";
	position: absolute;
	width: 4.27vw;
	height: 0.53vw;
	top: 50%;
	left: 50%;
	background: #fff;
}

.drawer .close__icon::before {
	-webkit-transform: translate(-50%, -50%) rotate(-35deg);
	transform: translate(-50%, -50%) rotate(-35deg);
}

.drawer .close__icon::after {
	-webkit-transform: translate(-50%, -50%) rotate(35deg);
	transform: translate(-50%, -50%) rotate(35deg);
}

#footer {
	color: #fff;
	background: #00273C;
	padding: 3.75rem 0 5rem;
}

#footer .body {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 5.9375rem;
}

#footer .contents {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 15.125rem;
	flex: 0 0 15.125rem;
}

#footer .logo {
	width: 100%;
	max-width: 12.875rem;
}

#footer .logo a {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#footer .logo a:hover {
	opacity: 0.8;
}

#footer .logo img {
	width: 100%;
}

#footer .meta {
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0em;
	margin-top: 1rem;
}

#footer .tel {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 0.5rem;
	padding-left: 0.3125rem;
	margin-top: 2rem;
}

#footer .tel__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#footer .tel__icon img {
	width: 1.1875rem;
	height: 1.1875rem;
	-o-object-fit: contain;
	object-fit: contain;
}

#footer .tel__number {
	font-size: 1.3125rem;
	font-weight: 700;
	line-height: 1.5238095238;
	letter-spacing: 0.0095238095em;
}

#footer .text {
	margin-top: 1rem;
}

#footer .nav-wrap {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 2.46875rem;
}

#footer .menus {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
	gap: 0.5rem;
}

#footer .menu {
	width: 100%;
}

#footer .menu a {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 1rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#footer .menu a:hover {
	opacity: 0.8;
}

#footer .menu__arrow {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#footer .menu__arrow img {
	width: 1.125rem;
	height: 1.125rem;
	-o-object-fit: contain;
	object-fit: contain;
}

#footer .nav--01 {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 16.75rem;
	flex: 0 0 16.75rem;
}

#footer .menus--row2 {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 0.5rem 2.5rem;
}

#footer .menus--row2 .menu {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
}

#footer .menus--row2 .menu:nth-of-type(odd) {
	width: 6.125rem;
}

#footer .menus--row2 .menu:nth-of-type(even) {
	width: 8.125rem;
}

#footer .menu--big {
	width: 100%;
	margin-bottom: 1rem;
}

#footer .menu--big a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
}

#footer .menu--big .menu__text {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
}

#footer .menu--big .menu__arrow img {
	width: 1.5rem;
	height: 1.5rem;
}

#footer .copyright {
	display: block;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0em;
	margin-top: 3rem;
}

#footer .page-top {
	position: fixed;
	width: 4rem;
	height: 4rem;
	bottom: 3rem;
	right: 3rem;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	z-index: 30;
}

#footer .page-top a {
	display: block;
	height: 100%;
	background: #008CD6;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	border-radius:7px;
}

#footer .page-top a:hover {
	opacity: 0.8;
}

#footer .page-top .arrow {
	height: 100%;
}

#footer .page-top .arrow span {
	position: relative;
	top: 0.1875rem;
	display: inline-block;
	width: 1.125rem;
	height: 1.125rem;
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);
	border-right: 0.25rem solid #fff;
	border-bottom: 0.25rem solid #fff;
}

@media screen and (max-width: 768px) {
	#footer {
		padding: 21.33vw 0;
		padding-bottom: calc(70px + 21.33vw);
	}

	#footer .body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 16vw;
	}

	#footer .contents {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		width: 100%;
		text-align: center;
	}

	#footer .logo {
		max-width: 54.93vw;
		margin-inline: auto;
	}

	#footer .logo a:hover {
		opacity: 1;
	}

	#footer .meta {
		font-size: 3.2vw;
		margin-top: 4.27vw;
	}

	#footer .tel {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		gap: 2.13vw;
		padding-left: 0;
		margin-top: 8.53vw;
	}

	#footer .tel__icon img {
		width: 5.07vw;
		height: 5.07vw;
	}

	#footer .tel__number {
		font-size: 5.6vw;
	}

	#footer .text {
		margin-top: 4.27vw;
	}

	#footer .nav-wrap {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		gap: 4vw;
	}

	#footer .menus {
		gap: 2.93vw;
	}

	#footer .menu a {
		gap: 1.33vw;
		font-size: 3.73vw;
	}

	#footer .menu a:hover {
		opacity: 1;
	}

	#footer .menu__arrow img {
		width: 5.07vw;
		height: 5.07vw;
	}

	#footer .nav--01 {
		-webkit-box-flex: 1;
		-ms-flex: auto;
		flex: auto;
		width: 100%;
	}

	#footer .nav--02,
	#footer .nav--03 {
		width: calc(50% - 2vw);
		margin-top: 8vw;
	}

	#footer .menus--row2 {
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		gap: 2.13vw 8vw;
		padding-left: 4.27vw;
	}

	#footer .menus--row2 .menu {
		width: calc(50% - 4vw);
	}

	#footer .menus--row2 .menu:nth-of-type(odd) {
		width: calc(50% - 4vw);
	}

	#footer .menus--row2 .menu:nth-of-type(even) {
		width: calc(50% - 4vw);
	}

	#footer .menu--big {
		margin-bottom: 4.27vw;
	}

	#footer .menu--big a {
		gap: 4vw;
	}

	#footer .menu--big .menu__text {
		font-size: 4.8vw;
	}

	#footer .menu--big .menu__arrow img {
		width: 6.4vw;
		height: 6.4vw;
	}

	#footer .copyright {
		font-size: 3.73vw;
		margin-top: 12.8vw;
	}

	#footer .page-top {
		width: 64px;
		width: 70px;
		height: 64px;
		bottom: 49px;
		right: 0;
	}

	#footer .page-top a:hover {
		opacity: 1;
	}

	#footer .page-top .arrow span {
		top: 3px;
		left: 1px;
		width: 18px;
		height: 18px;
		border-right: 4px solid #fff;
		border-bottom: 4px solid #fff;
	}
}

#pc-header {
	position: fixed;
	width: 100%;
	top: 0;
	left: 0;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: -webkit-transform 0.3s ease-in-out;
	transition: -webkit-transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
	background: #fff;
	z-index: 100;
}

#pc-header.is-hidden {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

#pc-header .inner {
	max-width: 100% /*1440px*/;
	padding: 0 0 0 1.5rem;
}

#pc-header .body {
	position: relative;
	/*-ms-flex-wrap: wrap;
	flex-wrap: wrap;*/
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#pc-header .row {
	gap: 1.5rem;
	padding: 0 0 0.5rem 0;
}

#pc-header .logo {
	width: 100%;
	max-width: 268px;
}

#pc-header .logo a {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#pc-header .logo a:hover {
	opacity: 0.8;
}

#pc-header .meta {
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0em;
	text-wrap: nowrap;
    margin-bottom: 5px;
}

#pc-header .contents {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	flex-grow: 1;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 1.5rem;
}

#pc-header .tel {
	gap: 0.4375rem;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

#pc-header .tel__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#pc-header .tel__icon img {
	width: 1.5rem;
	height: 1.5rem;
	-o-object-fit: contain;
	object-fit: contain;
}

#pc-header .tel__number {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0.1em;
	color: #008CD6;
}

#pc-header .nav {
	margin-top: 0.625rem;
}

#pc-header .menus {
	gap: 1.25rem;
}

#pc-header .menu a {
	position: relative;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#pc-header .menu.parent.is-active a,
#pc-header .menu a:hover {
	color: #008CD6;
}

#pc-header .menu a::before {
	content: "";
	width: 0.25rem;
	height: 0.25rem;
	position: absolute;
	top: 50%;
	right: -0.75rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #008CD6;
	border-radius: 50%;
}

#pc-header .menu.parent a::after {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	bottom: -100%;
	left: 0;
	background: transparent;
}

#pc-header .menu:last-child a::before {
	display: none;
}

#pc-header .btn a {
	gap: 0.25rem;
	background: #008CD6;
	padding: 1.75rem 2.53125rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#pc-header .btn a:hover {
	opacity: 0.8;
}

#pc-header .btn__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#pc-header .btn__icon img {
	width: 1.5rem;
	height: 1.5rem;
	-o-object-fit: contain;
	object-fit: contain;
}

#pc-header .btn__text {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #fff;
}

#pc-header .child {
	position: absolute;
	width: calc(100% - 10.9375rem);
	max-width: 1008px;
	top: 5rem;
	top: var(--header-height);
	right: 11rem;
	-webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#pc-header .child.is-active {
	opacity: 1;
	visibility: visible;
}

#pc-header .child__body {
	background: #fff;
	padding: 2rem 2.5rem 2rem;
}

#pc-header .child__menus {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem 0.5rem;
}

#pc-header .child__menu a {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 1rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#pc-header .child__menu a:hover {
	opacity: 0.8;
}

#pc-header .child__image {
	width: 4rem;
	height: auto;
	background: #E5EEF5;
	border-radius: 50%;
	aspect-ratio: 1/1;
}

#pc-header .child__image img {
	width: 100%;
	aspect-ratio: 1/1;
	-o-object-fit: contain;
	object-fit: contain;
}

#pc-header .child__title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
}

#pc-header .child__btn {
	margin-top: 2rem;
	text-align: center;
}

#pc-header .child__btn a {
	min-width: 14.375rem;
	background: #008CD6;
	padding: 0.75rem 1.75rem 0.75rem 2rem;
}

#pc-header .child__btn .btn__text {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
}

#pc-header .child__btn .btn__icon img {
	width: 0.75rem;
	height: 0.75rem;
}

#sp-header {
	position: fixed;
	width: 100%;
	height: 64px;
	top: 0;
	left: 0;
	background: #fff;
	-webkit-box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
	padding: 22px 0 17px;
	-webkit-transform: translateY(0);
	transform: translateY(0);
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	z-index: 300;
}


@media screen and (max-width: 1328px) {
#pc-header .menus {flex-wrap:wrap;justify-content: flex-end;}


}

#sp-header.is-hidden {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

#sp-header.is-active {
	background: #011c40;
}

#sp-header .inner {
	padding-left: 4vw;
	padding-right: 64px;
}

#sp-header .body {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 37.5px;
	gap: 1rem;
	padding-right: 5.87vw;
}

#sp-header .logo {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	position: relative;
	width: 100%;
	max-width: 160px;
	z-index: 200;
}

#sp-header .links {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 11px;
	pointer-events: auto;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
}

#sp-header.is-active .links {
	opacity: 0;
	pointer-events: none;
}

#sp-header .link a {
	gap: 3px;
}

#sp-header .link__icon img {
	width: 18px;
	height: 18px;
	-o-object-fit: contain;
	object-fit: contain;
}

#sp-header .link__text {
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
}

.l-inner,
.l-inner-s,
.l-inner-m,
.l-inner-l {
	width: 100%;
	margin-inline: auto;
	padding: 0 1.25rem;
}

.l-inner {
	max-width: 1128px;
}

.l-inner-s {
	max-width: 904px;
}

.l-inner-m {
	max-width: 1352px;
}

.l-inner-l {
	max-width: 1432px;
}

@media screen and (max-width: 768px) {

	.l-inner,
	.l-inner-s,
	.l-inner-m,
	.l-inner-l {
		max-width: 100%;
		padding: 0 1rem;
		padding: 0 4vw;
	}
}

.c-banner .images {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

.c-banner .image a {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.c-banner .image a:hover {
	opacity: 0.8;
}

.c-banner .image--small {
	width: 100%;
	max-width: 728px;
	margin-inline: auto;
}

.c-banner .image--mt {
	margin-top: 3rem;
}

.c-banner .image02 {
	margin-top: 2rem;
}

@media screen and (max-width: 768px) {
	.c-banner .images {
		grid-template-columns: 1fr;
		gap: 8.53vw;
	}

	.c-banner .image a:hover {
		opacity: 1;
	}

	.c-banner .image--small {
		max-width: 100%;
	}

	.c-banner .image--mt {
		margin-top: 8.53vw;
	}

	.c-banner .image02 {
		margin-top: 4.27vw;
	}
}

.c-btn--center {
	text-align: center;
}

.c-btn a {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	gap: 0.5rem;
	background: #008CD6;
	padding: 1.125rem 3.25rem 1.125rem 4rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	border-radius:7px;
}

.c-btn a:hover {
	opacity: 0.8;
}

.c-btn .btn__text {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #fff;
}

.c-btn .btn__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.c-btn .btn__icon img {
	width: 1.125rem;
	height: 1.125rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.c-btn--small a {
	padding: 0.75rem 2.5rem 0.75rem 3rem;
}

.c-btn--small .btn__text {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
}

.c-btn--reverse a {
	background: #fff;
}

.c-btn--reverse .btn__text {
	color: #008CD6;
}

@media screen and (max-width: 768px) {
	.c-btn a {
		width: 100%;
		gap: 2.13vw;
		padding: 3.2vw 10.67vw 3.2vw 12.8vw;
	}

	.c-btn a:hover {
		opacity: 1;
	}

	.c-btn .btn__text {
		font-size: 4.27vw;
	}

	.c-btn .btn__icon img {
		width: 4.8vw;
		height: 4.8vw;
	}

	.c-btn--small a {
		padding: 3.2vw 10.67vw 3.2vw 12.8vw;
	}

	.c-btn--small .btn__text {
		font-size: 4.27vw;
	}
}

.c-hours .hours__row {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 1rem;
}

.c-hours .hours__title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
}

.c-hours .hours__sub-title {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
	color: #2B4857;
	background: #F9F9F9;
	padding: 0.5rem 1rem;
	border-radius:4px;
}

.c-hours .hours__table {
	width: 100%;
	table-layout: fixed;
	border-collapse: separate;
	margin-top: 1.4375rem;
}

.c-hours .hours__table tr.border td {
	border-bottom: 1px dashed #728fa8;
}

.c-hours .hours__table th.hidden {
	opacity: 0;
}

.c-hours .hours__table th span {
	display: inline-block;
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0em;
	color: #fff;
	background: #94B7C9;
	border-radius: 50%;
	padding: 0.5625rem;
}

.c-hours .hours__table th span.deeply {
	background: #00273C;
}

.c-hours .hours__table td {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.2857142857;
	letter-spacing: 0em;
	color: #2B4857;
	padding: 0.3125rem 0 0.5rem;
	text-align: center;
}

.c-hours .hours__table th,
.c-hours .hours__table td {
	width: 15%;
	text-align: center;
}

.c-hours .hours__table th:first-of-type,
.c-hours .hours__table td:first-of-type {
	width: 6rem;
}

.c-hours .hours__table td:first-of-type span {
	display: inline-block;
	min-width: 100%;
	font-weight: 700;
	background: #F9F9F9;
	padding: 0.25rem;
	border-radius:4px;
}

.c-hours .hour__lists {
	margin-top: 1.125rem;
}

.c-hours .hour__list {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 1rem;
}

.c-hours .hour__list:not(:first-of-type) {
	margin-top: 0.75rem;
}

.c-hours .hour__title {
	min-width: 10.875rem;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
}

.c-hours .hour__text {
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
	.c-hours .hours__row {
		gap: 2.67vw;
	}

	.c-hours .hours__title {
		font-size: 3.73vw;
	}

	.c-hours .hours__sub-title {
		font-size: 3.2vw;
		padding: 2.13vw 4.27vw;
	}

	.c-hours .hours__table {
		margin-top: 2.93vw;
	}

	.c-hours .hours__table th span {
		font-size: 2.67vw;
		padding: 1.87vw;
	}

	.c-hours .hours__table td {
		font-size: 2.59vw;
		line-height: 1.3;
		padding: 1.33vw 0 2.13vw;
	}

	.c-hours .hours__table th:first-of-type,
	.c-hours .hours__table td:first-of-type {
		width: 17.87vw;
	}

	.c-hours .hours__table td:first-of-type span {
		line-height: 1.5;
		padding: 0.48vw 1.23vw;
	}

	.c-hours .hour__lists {
		background: #F9F9F9;
		padding: 4.27vw;
		margin-top: 1.33vw;
	}

	.c-hours .hour__list {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 1.07vw;
	}

	.c-hours .hour__list:not(:first-of-type) {
		margin-top: 2.13vw;
	}

	.c-hours .hour__title {
		min-width: 100%;
		font-size: 2.67vw;
	}

	.c-hours .hour__text {
		font-size: 2.67vw;
	}
}

.c-title {
	text-align: center;
}
.l-title {
	text-align: left;
}

.c-title .c-title__ja,
.l-title .l-title__ja {
	position: relative;
	display: inline-block;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0em;
	color: #008CD6;
	border-bottom: 1px solid #008CD6;
	padding-bottom: 0.6875rem;
}

@media screen and (max-width: 768px) {
	.c-title .c-title__ja,
	.l-title .l-title__ja {
		font-size: 5.33vw;
		line-height: 1.5;
		padding-bottom: 2.93vw;
	}
}

.c-worries01 {
	margin-top: 3rem;
}

.c-worries01 .tabs {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
}

.c-worries01 .tab {
	position: relative;
	gap: 0.9375rem;
	background: #F9F9F9;
	padding: 1rem 2.3375rem 1rem 1.9rem;
	cursor: pointer;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.c-worries01 .tab::before {
	content: "";
	position: absolute;
	width: 2rem;
	height: 1.6875rem;
	bottom: -1.625rem;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background: #008CD6;
	-webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	opacity: 0;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.c-worries01 .tab__title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.c-worries01 .tab__triangle {
	position: relative;
	top: 0.0625rem;
	width: 0.625rem;
	height: 0.3125rem;
	background: #008CD6;
	-webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
	clip-path: polygon(0 0, 50% 100%, 100% 0);
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.c-worries01 .tab:hover,
.c-worries01 .tab.current {
	background: #008CD6;
}

.c-worries01 .tab.current::before {
	opacity: 1;
}

.c-worries01 .tab:hover .tab__title,
.c-worries01 .tab.current .tab__title {
	color: #fff;
}

.c-worries01 .tab:hover .tab__triangle,
.c-worries01 .tab.current .tab__triangle {
	background: #fff;
}

.c-worries01 .swiper-container {
	position: relative;
	margin-top: 5.5rem;
}

.c-worries01 .swiper-slide {
	position: relative;
	width: 100%;
	max-width: 50rem;
	margin-inline: auto;
	height: auto;
	margin: 0 2.5rem;
}

.c-worries01 .swiper-slide::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(28, 102, 166, 0.2);
	z-index: 1;
}

.c-worries01 .swiper-slide.swiper-slide-active::before {
	opacity: 0;
	z-index: -1;
}

.c-worries01 .item {
	height: 100%;
	background: #E5EEF5;
	padding: 3rem;
}

.c-worries01 .item__body {
	height: 100%;
	background: #fff;
	padding: 2rem;
}

.c-worries01 .item__row {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 2.9375rem;
}

.c-worries01 .item__head {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.c-worries01 .item__title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	color: #008CD6;
	border-bottom: 1px solid #008CD6;
	padding-bottom: 0.9375rem;
}

.c-worries01 .item__lists {
	margin-top: 2.25rem;
}

.c-worries01 .item__list {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 0.5rem;
}

.c-worries01 .item__list:not(:first-of-type) {
	margin-top: 0.5rem;
}

.c-worries01 .item__list-icon {
	position: relative;
	top: 0.125rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.c-worries01 .item__list-icon img {
	width: 1.5rem;
	height: 1.5rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.c-worries01 .item__list-text {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #666;
}

.c-worries01 .item__image {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 11.25rem;
	flex: 0 0 11.25rem;
	right: -0.1875rem;
	margin-top: -2.5rem;
}

.c-worries01 .item__image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 1/1;
}

.c-worries01 .item__units {
	margin-top: 1.625rem;
}

.c-worries01 .item__unit:not(:first-of-type) {
	margin-top: 1.5rem;
}

.c-worries01 .item__unit-head {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 1rem;
}

.c-worries01 .item__unit-title {
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #fff;
	background: #008CD6;
	padding: 0.25rem 1rem;
}

.c-worries01 .item__unit-head a {
	gap: 1rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.c-worries01 .item__unit-head a:hover {
	opacity: 0.8;
}

.c-worries01 .item__unit-catch {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
}

.c-worries01 .item__unit-icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.c-worries01 .item__unit-icon img {
	width: 1.125rem;
	height: 1.125rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.c-worries01 .item__unit-text {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0em;
	margin-top: 0.25rem;
}

.c-worries01 .swiper-button-prev,
.c-worries01 .swiper-button-next {
	width: 3rem;
	height: 3rem;
	position: absolute;
	top: calc(50% + 1.5rem);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 11;
}

.c-worries01 .swiper-button-prev {
	left: calc(50% - 27.375rem);
}

.c-worries01 .swiper-button-next {
	right: calc(50% - 30.1875rem);
}

.c-worries01 .swiper-button-prev::after,
.c-worries01 .swiper-button-next::after {
	width: 0.925rem;
	height: 0.925rem;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	border-right: 0.25rem solid #728fa8;
	border-bottom: 0.25rem solid #728fa8;
}

.c-worries01 .swiper-button-next::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
	.c-worries01 {
		margin-top: 9.6vw;
	}

	.c-worries01 .tabs {
		display: block;
	}

	.c-worries01 .tab {
		gap: 4vw;
		padding: 4.27vw;
	}

	.c-worries01 .tab:not(:first-of-type) {
		margin-top: 2.67vw;
	}

	.c-worries01 .tab::before {
		display: none;
	}

	.c-worries01 .tab__title {
		font-size: 4.27vw;
	}

	.c-worries01 .tab__triangle {
		top: 0.27vw;
		width: 2.67vw;
		height: 1.33vw;
	}

	.c-worries01 .swiper-container {
		margin-top: 0;
	}

	.c-worries01 .swiper-slide {
		max-width: 100%;
		margin: 0;
	}

	.c-worries01 .swiper-slide::before {
		display: none;
	}

	.c-worries01 .item {
		background: transparent;
		padding: 0;
	}

	.c-worries01 .item__body {
		padding: 6.4vw 0 6.13vw;
	}

	.c-worries01 .item__row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 6.4vw;
	}

	.c-worries01 .item__image {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		width: 100%;
		max-width: 48vw;
		margin-inline: auto;
		right: auto;
		margin-top: 0;
	}

	.c-worries01 .item__head {
		width: 100%;
	}

	.c-worries01 .item__title {
		font-size: 5.33vw;
		padding-bottom: 4vw;
		text-align: center;
	}

	.c-worries01 .item__lists {
		margin-top: 6.4vw;
	}

	.c-worries01 .item__list {
		gap: 2.13vw;
	}

	.c-worries01 .item__list:not(:first-of-type) {
		margin-top: 2.13vw;
	}

	.c-worries01 .item__list-icon {
		top: 0.53vw;
	}

	.c-worries01 .item__list-icon img {
		width: 6.4vw;
		height: 6.4vw;
	}

	.c-worries01 .item__list-text {
		font-size: 4.27vw;
		color: #666;
	}

	.c-worries01 .item__units {
		margin-top: 6.4vw;
	}

	.c-worries01 .item__unit:not(:first-of-type) {
		margin-top: 6.4vw;
	}

	.c-worries01 .item__unit-head {
		gap: 4.27vw;
	}

	.c-worries01 .item__unit-title {
		-ms-flex-negative: 0;
		flex-shrink: 0;
		font-size: 4.27vw;
		padding: 3.2vw 4.27vw;
	}

	.c-worries01 .item__unit-head a {
		gap: 4.27vw;
	}

	.c-worries01 .item__unit-head a:hover {
		opacity: 1;
	}

	.c-worries01 .item__unit-catch {
		font-size: 4.27vw;
	}

	.c-worries01 .item__unit-icon img {
		width: 4.8vw;
		height: 4.8vw;
	}

	.c-worries01 .item__unit-text {
		font-size: 3.73vw;
		margin-top: 2.13vw;
	}

	.c-worries01 .swiper-button-prev,
	.c-worries01 .swiper-button-next {
		display: none;
	}
}

.c-worries02 {
	margin-top: 4rem;
}

.c-worries02 .items {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1rem;
}

.c-worries02 .item div {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 0.5rem;
	height:5rem;
	background: #f8f8f8;
	border-radius: 0.5rem;
	padding: 1rem 1.5rem;
}

.c-worries02 .item a:hover {
	opacity: 0.8;
}

.c-worries02 .item__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.c-worries02 .item__icon img {
	width: 2rem;
	height: 2rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.c-worries02 .item__title {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
}

@media screen and (max-width: 768px) {
	.c-worries02 {
		margin-top: 8.53vw;
	}

	.c-worries02 .items {
		grid-template-columns: 1fr;
		gap: 2.67vw;
	}

	.c-worries02 .item a {
		gap: 5.33vw;
		border-radius: 2.13vw;
		padding: 3.2vw 8vw;
	}

	.c-worries02 .item a:hover {
		opacity: 1;
	}

	.c-worries02 .item__icon img {
		width: 7.47vw;
		height: 7.47vw;
	}

	.c-worries02 .item__title {
		font-size: 4.27vw;
	}
}

.common-contact {
	padding: 5rem 0 6rem;
}

.common-contact .lead {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0em;
	margin-top: 1.5rem;
	text-align: center;
}

.common-contact .cta {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	gap: 0.25rem;
	margin-top: 4rem;
}

.common-contact .btns {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.25rem;
}

.common-contact .btn a {
	gap: 0.5rem;
	background: #008CD6;
	padding: 2.34375rem 1.8125rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	border-radius:7px;
}

.common-contact .btn a:hover {
	opacity: 0.8;
}

.common-contact .btn__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.common-contact .btn__icon img {
	width: 1.5rem;
	height: 1.5rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.common-contact .btn__text {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #fff;
}

.common-contact .btn__arrow {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.common-contact .btn__arrow img {
	width: 1.125rem;
	height: 1.125rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.common-contact .btn--contact a {
	background: #00273C;
}

.common-contact .tel {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 28rem;
	flex: 0 0 28rem;
}

.common-contact .tel a {
	display: block;
	height: 100%;
	background: #F9F9F9;
	padding: 1rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.common-contact .tel a:hover {
	opacity: 0.8;
}

.common-contact .tel__text {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	text-align: center;
}

.common-contact .tel__row {
	position: relative;
	top: 0.3125rem;
	gap: 0.75rem;
}

.common-contact .tel__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.common-contact .tel__icon img {
	width: 3rem;
	height: 3rem;
	-o-object-fit: contain;
	object-fit: contain;
}

.common-contact .tel__number {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
	color: #008CD6;
}

.common-contact .hours {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	margin-top: 3rem;
}

.common-contact .c-hours {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	background: #F9F9F9;
	padding: 3rem;
}

.common-contact .hours__sub-title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
	border: 1px solid #008CD6;
	padding: 0.4375rem 0.9375rem;
}

.common-contact .hours__table th:first-of-type,
.common-contact .hours__table td:first-of-type {
	width: 7rem;
}

.common-contact .hours__table td:first-of-type span {
	background: #fff;
}

.common-contact .hours__image {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 28rem;
	flex: 0 0 28rem;
}

.common-contact .hours__image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	.common-contact {
		padding: 21.33vw 0 0;
		overflow: hidden;
	}

	.common-contact .lead {
		font-size: 4.8vw;
		margin-top: 6.4vw;
		text-align: left;
	}

	.common-contact .cta {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 9.33vw;
		margin-top: 8.53vw;
	}

	.common-contact .btns {
		grid-template-columns: 1fr;
		gap: 1.07vw;
	}

	.common-contact .btn a {
		gap: 2.13vw;
		padding: 7.47vw 10.67vw;
	}

	.common-contact .btn a:hover {
		opacity: 1;
	}

	.common-contact .btn__icon img {
		width: 6.4vw;
		height: 6.4vw;
	}

	.common-contact .btn__text {
		font-size: 5.33vw;
	}

	.common-contact .btn__arrow img {
		width: 4.8vw;
		height: 4.8vw;
	}

	.common-contact .tel {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}

	.common-contact .tel a {
		background: transparent;
		padding: 0;
	}

	.common-contact .tel a:hover {
		opacity: 1;
	}

	.common-contact .tel__text {
		font-size: 3.73vw;
	}

	.common-contact .tel__row {
		top: 1.33vw;
		gap: 3.2vw;
	}

	.common-contact .tel__icon img {
		width: 12.8vw;
		height: 12.8vw;
	}

	.common-contact .tel__number {
		font-size: 10.67vw;
	}

	.common-contact .hours {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8.53vw;
		margin-top: 12vw;
	}

	.common-contact .c-hours {
		background: transparent;
		padding: 0;
	}

	.common-contact .hours__sub-title {
		font-size: 3.2vw;
		border: none;
		padding: 2.13vw 4.27vw;
	}

	.common-contact .hours__table th:first-of-type,
	.common-contact .hours__table td:first-of-type {
		width: 17.87vw;
	}

	.common-contact .hours__table td:first-of-type span {
		background: #F9F9F9;
	}

	.common-contact .hours__image {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		width: 100vw;
		margin: 0 calc(50% - 50vw);
	}
}

.common-fv {
	padding: 2rem 0 0;
	margin-top: var(--header-height);
}

.common-fv .body {
	position: relative;
	padding: 4.8125rem 5rem;
}

.common-fv .body::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(1, 1, 1, 0.2);
	border-radius: 1rem;
}

.common-fv .title {
	position: relative;
	font-size: 2.25rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0em;
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.common-fv .image {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}

.common-fv .image img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 1rem;
}

.breadcrumb {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0em;
	margin-top: 2rem;
}

.breadcrumb .box {
	padding-left: 2.5rem;
}

.breadcrumb .box>span:first-child {
	position: relative;
	display: inline-block;
	padding-left: 1.0625rem;
}

.breadcrumb .box>span:first-child::before {
	content: "";
	width: 1rem;
	height: 1rem;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-image: url("../img/icon-home.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

.breadcrumb a span {
	font-weight: 400;
	color: #008CD6;
	text-decoration: underline;
}

.breadcrumb span {
	font-weight: 700;
	color: #2B4857;
	padding-inline: 0.1875rem;
}

@media screen and (max-width: 768px) {
	.common-fv {
		padding: 0;
		margin-top: 64px;
		overflow: hidden;
	}

	.common-fv .body {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		padding: 10.67vw 4vw;
	}

	.common-fv .body::before {
		border-radius: 0;
	}

	.common-fv .title {
		font-size: 5.33vw;
	}

	.common-fv .image img {
		border-radius: 0;
	}

	.breadcrumb {
		font-size: 3.2vw;
		line-height: 1.5;
		margin-top: 4.27vw;
	}

	.breadcrumb .box {
		padding-left: 0;
	}

	.breadcrumb .box>span:first-child {
		padding-left: 4.53vw;
	}

	.breadcrumb .box>span:first-child::before {
		width: 3.73vw;
		height: 3.73vw;
	}

	.breadcrumb span {
		padding-inline: 0.53vw;
	}
}

.common-menu .items {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 7.25rem 2.0625rem;
	margin-top: 3rem;
}

.common-menu .item a {
	display: block;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.common-menu .item a:hover {
	opacity: 0.8;
}

.common-menu .item__image {
	width: 76.3%;
	height: auto;
	margin-inline: auto;
	background: #E5EEF5;
	border-radius: 50%;
	aspect-ratio: 1/1;
}

.common-menu .item__image img {
	position: relative;
	width:100%;
	height:100%;
	-o-object-fit: contain;
	object-fit: contain;
}

.common-menu .item:nth-of-type(3) .item__image img {
	top: -0.3rem;
}

.common-menu .item:nth-of-type(11) .item__image img {
	left: -0.2rem;
}

.common-menu .item:nth-of-type(12) .item__image img {
	left: -0.2rem;
}

.common-menu .item:nth-of-type(13) .item__image img {
	top: -0.2rem;
	left: 0.2rem;
}

.common-menu .item:nth-of-type(15) .item__image img {
	top: -0.8rem;
}

.common-menu .item:nth-of-type(18) .item__image img {
	left: -0.4rem;
}

.common-menu .item:nth-of-type(19) .item__image img {
	left: -0.2rem;
}

.common-menu .item:nth-of-type(21) .item__image img {
	left: -0.1rem;
}

.common-menu .item__row {
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.common-menu .item__title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
}

.common-menu .item__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.common-menu .item__icon img {
	width: 1.125rem;
	height: 1.125rem;
	-o-object-fit: contain;
	object-fit: contain;
}

@media screen and (max-width: 768px) {
	.common-menu .items {
		grid-template-columns: repeat(2, 1fr);
		gap: 4.27vw 0;
		margin-top: 12.8vw;
	}

	.common-menu .item a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 2.13vw;
		padding-right: 2.67vw;
	}

	.common-menu .item a:hover {
		opacity: 1;
	}

	.common-menu .item__image {
		width: 17.07vw;
		margin-left: 0;
	}

	.common-menu .item__image img {
		width: 12vw;
		height: 12vw;
	}

	.common-menu .item__row {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
		margin-top: 0;
	}

	.common-menu .item__title {
		font-size: 3.73vw;
	}

	.common-menu .item__icon {
		display: none;
	}
}

#top-about {
	position: relative;
	padding: 0;
}

#top-about .bg {
	position: absolute;
	width: 100%;
	height: 85%;
	top: calc(50% + 0.75rem);
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #F9F9F9;
	z-index: -1;
}

#top-about .bg::before {
	content: "";
	position: absolute;
	width: auto;
	height: 90%;
	bottom: 0;
	right: 0;
	background-image: url("../img/top-about-bg.webp");
	background-repeat: no-repeat;
	background-size: contain;
	aspect-ratio: 1290/1178;
	z-index: -1;
}

#top-about .body {
	gap: 5rem;
	padding-left: 6.5rem;
}

#top-about .contents {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 30.5rem;
	flex: 0 0 30.5rem;
	padding-top: 2.5rem;
}

#top-about .title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0em;
	color: #008CD6;
}

#top-about .box {
	padding-left: 0.625rem;
	margin-top: 2rem;
}

#top-about .btn {
	margin-top: 3rem;
}

#top-about .images {
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	aspect-ratio: 640/843;
}

#top-about .image01 {
	position: absolute;
	width: 65%;
	top: -20px;
	right: 0;
	z-index: 1;
}

#top-about .image01 img {
	width: 100%;
	height: auto;
	aspect-ratio: 416/555;
	-o-object-fit: cover;
	object-fit: cover;
}

#top-about .image02 {
	position: absolute;
	width: 47.8%;
	bottom: -20px;
	left: 0;
}

#top-about .image02 img {
	width: 100%;
	height: auto;
	aspect-ratio: 306/408;
	-o-object-fit: cover;
	object-fit: cover;
}

@media screen and (max-width: 768px) {
	#top-about {
		padding: 21.33vw 0 16vw;
	}

	#top-about::before {
		content: "";
		position: absolute;
		width: 77.33vw;
		height: 86.4vw;
		bottom: 29.33vw;
		right: 0;
		background-image: url("../img/top-about-bg-sp.webp");
		background-repeat: no-repeat;
		background-size: contain;
		aspect-ratio: 1290/1178;
		z-index: -1;
	}

	#top-about .bg {
		width: 53.33vw;
		height: 206.67vw;
		top: 0;
		-webkit-transform: none;
		transform: none;
	}

	#top-about .bg::before {
		display: none;
	}

	#top-about .body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 17.07vw;
		padding-left: 0;
	}

	#top-about .contents {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		padding-top: 0;
	}

	#top-about .title {
		font-size: 5.33vw;
	}

	#top-about .box {
		padding-left: 0;
		margin-top: 8.53vw;
	}

	#top-about .btn {
		margin-top: 12.8vw;
	}

	#top-about .images {
		width: 100%;
		width: 97.5%;
		margin-left: auto;
		aspect-ratio: 336/587;
	}

	#top-about .image01 {
		width: 75%;
		top:0;
	}

	#top-about .image01 img {
		aspect-ratio: 252/336;
	}

	#top-about .image02 {
		width: 45.5%;
	}

	#top-about .image02 img {
		aspect-ratio: 153/204;
	}
}

#top-access {
	padding:0;
	margin-top:5rem;
	display:flex;
	flex-direction:row-reverse;
}

#top-access .access-content {
	width:45%;
	background:#008CD6;
	padding:3rem;
	text-align:left;
	color:#fff;
}
#top-access .access-content .l-title .l-title__ja {
	color:#fff;
	border-bottom:solid 1px #fff;
}
#top-access .logo {
	margin-top:3rem;
	max-width:300px;
}
#top-access .lead {
	margin-top: 3rem;
	text-align: left;
}

#top-access .item__title {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	background:url(../img/metro.svg) no-repeat left;
	background-size:15px 21px;
	padding: 0.75rem 1rem 0.35rem 20px;
}

#top-access .item__text {
	padding:0 0 0 20px;
}

#top-access .btn {
	margin-top: 3rem;
	text-align:left;
}
#top-access .btn a {
	background:#fff;
}
#top-access .btn a .btn__text {
	color:#008CD6;
}
#top-access .map {
	position: relative;
	width:55%;
	aspect-ratio: 1440/320;
}

#top-access .map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 768px) {
	#top-access {padding: 16vw 0 0;display:block;}
	#top-access .access-content {width:100%;}
	#top-access .logo {width:60%;}
	#top-access .lead {margin-top: 12.8vw;}
	#top-access .items {margin-top: 6.4vw;}
	#top-access .item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 4.27vw;
	}
	#top-access .item:first-of-type {padding-bottom: 6.13vw;}
	#top-access .item:last-of-type {padding-top: 6.13vw;}
	#top-access .item__title {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		display: block;
		font-size: 4.8vw;
		padding: 3.2vw 4.27vw;
	}
	#top-access .item:first-of-type .item__title {padding: 6.8vw 4.27vw;}
	#top-access .item__text {padding: 0;}
	#top-access .btn {margin-top: 12.8vw;}
	#top-access .map {
		margin-top:0;
		aspect-ratio: 375/281;
		width:100%;
	}
}

#top-clinic {
	background: #fff;
	padding:0 0 5rem;
}

/* swiper style */
#top-clinic .swiper-container {
	position: relative;
	width: 100%;
	max-width: 1216px;
	margin-inline: auto;
	padding: 0 3rem;
	margin-top: 1.125rem;
}

#top-clinic .swiper-slide {
	height: auto;
}

#top-clinic .swiper-slide__image {
	padding: 1.875rem 1rem 0 1rem;
}

#top-clinic .swiper-slide__image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 341/255;
	border: 4px solid #fff;
	-webkit-box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
	box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.25);
}

#top-clinic .swiper-slide__title {
	margin-top: 1.5rem;
	text-align: center;
}

#top-clinic .swiper-slide__title span {
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	background: #fff;
	padding: 0.375rem 1rem 0.625rem;
}

#top-clinic .swiper-button-prev,
#top-clinic .swiper-button-next {
	width: 3rem;
	height: 3rem;
	position: absolute;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 11;
}

#top-clinic .swiper-button-prev {
	left: 1.6875rem;
}

#top-clinic .swiper-button-next {
	right: -1rem;
}

#top-clinic .swiper-button-prev::after,
#top-clinic .swiper-button-next::after {
	width: 0.925rem;
	height: 0.925rem;
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
	-webkit-transform-origin: center center;
	transform-origin: center center;
	border-right: 0.25rem solid #008CD6;
	border-bottom: 0.25rem solid #008CD6;
}

#top-clinic .swiper-button-next::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}


/* swiper style introduction */

.clinic-swiper {
	max-width:1080px;
	margin:3rem auto 0;
	display:flex;
	justify-content:space-between;
}

.clinic-swiper .mySwiper2 {
	width:70%;
}
.clinic-swiper .mySwiper2 img {border-radius:10px;}
.clinic-swiper .mySwiper2 .swiper-slide {
	position:relative;
}
.clinic-swiper .mySwiper2 .swiper-slide .imgtitle {
	position:absolute;
	bottom:20px;
	left:50%;
	transform: translateX(-50%);
	background:#fff;
	padding:0 1rem;
	font-weight:400;
	height:34px;
	line-height:34px;
	border-radius:17px;
}

.clinic-swiper .thumblist {
	width:30%;
	padding:0 0 0 20px;
	display:flex;
	flex-wrap: wrap;
	justify-content:space-between;
	align-content: flex-start;
}

.thumblist .thumblist-item {
	width:48%;
	height:auto;
	opacity:0.4;
	margin-bottom:1rem;
}
.thumblist-item div.imgtitle {display:none;}


.thumblist .thumblist-item.current,
.thumblist .thumblist-item:hover {
	opacity:1.0!important;
	transition:0.5s;
}

.thumblist .thumblist-item img {
	border-radius:7px;
	}



@media screen and (max-width: 768px) {
.clinic-swiper {
	display:block;
	padding:0 1rem;
}
.clinic-swiper .mySwiper2 {width:100%;margin-bottom:1rem;}
.clinic-swiper .thumblist {
	width:100%;
	padding:0;
	justify-content:flex-start;
	margin-right:-1rem;
}
.thumblist .thumblist-item {width:20%;margin-right:1rem;}
}

/* top-greeting */
#top-greeting {
	background: #f9f9f9;
	padding:5rem 0;
}

#top-greeting .greeting {
	margin-top:0;
}

#top-greeting .greeting__body {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: stretch;
	gap: 0;
	background: #fff;
	padding:0;
	border-radius:10px;
}

#top-greeting .greeting__contents {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	text-align: left;
	padding:3rem;
}

#top-greeting .greeting .c-title {
	text-align: left;
}

#top-greeting .greeting__catch {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0em;
	color: #008CD6;
	margin-top: 0.9375rem;
}

#top-greeting .greeting__text {
	margin-top: 2rem;
}

#top-greeting .greeting__btn {
	margin-top: 1.875rem;
}

#top-greeting .greeting__image {
	height:100%
}
#top-greeting .greeting__image img {height:100%;}


#top-greeting .price {
	max-width:1080px;
	padding:0;
	margin: 3rem auto;
	border-radius:10px;
	background:url(../img/first01.webp),url(../img/first02.webp);
	background-position:left,center;
	background-size:auto 200%;
	background-repeat:no-repeat;
	color:#fff;
}

#top-greeting .price__body {
	padding: 3rem;
	text-align:left;
}
#top-greeting .price__body .l-title .l-title__ja {color:#fff;border-bottom:solid 1px #fff;}
#top-greeting .price__title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	background: #F9F9F9;
	padding: 0.625rem;
}

#top-greeting .price__text {
	font-size: 1rem;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0em;
	margin-top: 1.375rem;
}

#top-greeting .price__text--mt {
	margin-top: 1rem;
}

#top-greeting .price__text--bold {
	font-weight: 700;
}

#top-greeting .price__text .accent {
	color: #fff;
}

#top-greeting .price__catch {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	margin-top: 2rem;
}

#top-greeting .price__btn {
	margin-top: 2rem;
}

#top-greeting .price__body .c-btn a {background:#00273C;}



@media screen and (max-width: 768px) {
	#top-clinic {
		padding: 16vw 0 21.33vw;
		overflow: hidden;
	}

	#top-clinic .swiper-container {
		max-width: 100%;
		padding: 0;
		margin-top: 10.67vw;
	}

	#top-clinic .swiper-slide {
		-webkit-transform: scale(0.83);
		transform: scale(0.83);
		-webkit-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}

	#top-clinic .swiper-slide.swiper-slide-active {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	#top-clinic .swiper-slide__image {
		padding: 2.13vw 0;
	}

	#top-clinic .swiper-slide__image img {
		aspect-ratio: 180/135;
		border: 2px solid #fff;
		-webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
		box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.25);
	}

	#top-clinic .swiper-slide__title {
		margin-top: 1.07vw;
	}

	#top-clinic .swiper-slide__title span {
		font-size: 4.48vw;
		padding: 1.07vw 2.27vw;
	}

	#top-clinic .swiper-button-prev,
	#top-clinic .swiper-button-next {
		width: 8.53vw;
		height: 8.53vw;
		top: calc(50% + 2.67vw);
	}

	#top-clinic .swiper-button-prev {
		left: 5.33vw;
	}

	#top-clinic .swiper-button-next {
		right: -2.67vw;
	}

	#top-clinic .swiper-button-prev::after,
	#top-clinic .swiper-button-next::after {
		width: 2.67vw;
		height: 2.67vw;
		border-right: 2px solid #fff;
		border-bottom: 2px solid #fff;
	}

	#top-greeting .greeting {
		margin-top: 32vw;
	}

	#top-greeting .greeting__body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 12.8vw;
		background: transparent;
		padding: 0;
	}

	#top-greeting .greeting__contents {
		text-align: center;
		padding:1rem;
	}

	#top-greeting .greeting .c-title {
		text-align: center;
	}

	#top-greeting .greeting__catch {
		font-size: 4.8vw;
		margin-top: 6.4vw;
		text-align: left;
	}

	#top-greeting .greeting__text {
		margin-top: 2rem;
		text-align: left;
	}

	#top-greeting .greeting__btn {
		margin-top: 12.8vw;
	}

	#top-greeting .greeting__image {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		width: 100%;
		max-width: 53.33vw;
		margin-inline: auto;
	}
	#top-greeting .greeting__image img {border-radius:10px;}

	#top-greeting .price {
		padding: 0;
		margin-top: 12.8vw;
	}

	#top-greeting .price__body {
		padding: 4.27vw;
	}

	#top-greeting .price__title {
		font-size: 4.8vw;
		padding: 2.67vw;
	}

	#top-greeting .price__text {
		font-size: 4.27vw;
		margin-top: 6.4vw;
		text-align: left;
	}

	#top-greeting .price__text--mt {
		margin-top: 3.73vw;
	}

	#top-greeting .price__catch {
		font-size: 4.27vw;
		margin-top: 8.53vw;
		text-align: left;
	}

	#top-greeting .price__btn {
		margin-top: 8.53vw;
	}

	#top-greeting .btn__text {
		font-size: 4.8vw;
	}
}

#top-column {
	padding: 7.5rem 0;
}

#top-column .items {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	margin-top: 3rem;
}

#top-column .item a {
	display: block;
	background: #F9F9F9;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	border-radius:10px;
}

#top-column .item a:hover {
	opacity: 0.8;
}

#top-column .item__image img {
	width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	aspect-ratio: 341/255;
	border-radius:10px 10px 0 0;
}

#top-column .item__contents {
	padding: 1.5rem;
	border-radius:0 0 10px 10px;
}

#top-column .item__title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
}

#top-column .item__date {
	display: inline-block;
	font-size: 0.75rem;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0em;
	background: #fff;
	padding: 0.5rem 1rem;
	margin-top: 0.5rem;
}

#top-column .item__text {
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	margin-top: 0.5rem;
}

#top-column .btn {
	margin-top: 5rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#top-column {
		padding: 21.33vw 0 32vw;
	}

	#top-column .items {
		grid-template-columns: 1fr;
		gap: 8.53vw;
		margin-top: 12.8vw;
	}

	#top-column .item a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 4.8vw 3.2vw;
		background: transparent;
	}

	#top-column .item a:hover {
		opacity: 1;
	}

	#top-column .item__image {
		-webkit-box-flex: 0;
		-ms-flex: 0 0 40vw;
		flex: 0 0 40vw;
	}

	#top-column .item__image img {
		aspect-ratio: 150/112;
		border-radius:10px;
	}

	#top-column .item__contents {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		padding: 0;
	}

	#top-column .item__title {
		font-size: 4.27vw;
	}

	#top-column .item__date {
		font-size: 3.2vw;
		background: #F9F9F9;
		padding: 2.13vw 4.27vw;
		margin-top: 2.13vw;
	}

	#top-column .item__text {
		width: 100%;
		font-size: 3.73vw;
		-webkit-line-clamp: 3;
		margin-top: 0;
	}

	#top-column .btn {
		margin-top: 12.8vw;
	}

	#top-column .btn__text {
		font-size: 4.8vw;
	}
}

#top-faq {
	padding: 3.25rem 0 2.71875rem;
}

#top-faq .items {
	margin-top: 3rem;
}

#top-faq .item {
	cursor: pointer;
}

#top-faq .item:not(:first-of-type) {
	margin-top: 1.5rem;
}

#top-faq .item__question {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	gap: 1rem;
	background: #F9F9F9;
	border-radius: 0.25rem;
	padding: 1.5rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#top-faq .item:hover .item__question,
#top-faq .item.is-open .item__question {
	background: #008CD6;
}

#top-faq .item__row {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 1rem;
}

#top-faq .item__en {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
	background: #fff;
	padding: 0.125rem 0.625rem 0.375rem;
}

#top-faq .item__title {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
}

#top-faq .item:hover .item__title,
#top-faq .item.is-open .item__title {
	color: #fff;
}

#top-faq .item__icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
	width: 1.5rem;
	height: 1.5rem;
}

#top-faq .item__icon::before,
#top-faq .item__icon::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	background: #008CD6;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#top-faq .item:hover .item__icon::before,
#top-faq .item.is-open .item__icon::before,
#top-faq .item:hover .item__icon::after,
#top-faq .item.is-open .item__icon::after {
	background: #fff;
}

#top-faq .item__icon::before {
	width: 2px;
	height: 0.75rem;
}

#top-faq .item__icon::after {
	width: 0.75rem;
	height: 2px;
}

#top-faq .item.is-open .item__icon::before {
	-webkit-transform: translate(-50%, -50%) rotate(90deg);
	transform: translate(-50%, -50%) rotate(90deg);
}

#top-faq .item__answer {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 1rem;
	padding: 0 0 0 1.5rem;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#top-faq .item.is-open .item__answer {
	max-height: 100%;
	opacity: 1;
	overflow: visible;
	padding: 2rem 0 1.5rem 1.5rem;
}

#top-faq .item__answer .item__en {
	color: #fff;
	background: #008CD6;
}

#top-faq .btn {
	margin-top: 3rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#top-faq {
		padding: 16vw 0;
	}

	#top-faq .items {
		margin-top: 12.8vw;
	}

	#top-faq .item:not(:first-of-type) {
		margin-top: 6.4vw;
	}

	#top-faq .item__question {
		gap: 0;
		border-radius: 1.07vw;
		padding: 3.2vw;
	}

	#top-faq .item__row {
		gap: 4.27vw;
	}

	#top-faq .item__en {
		min-width: 8.53vw;
		font-size: 3.73vw;
		padding: 1.47vw 2.8vw;
	}

	#top-faq .item__title {
		font-size: 3.73vw;
	}

	#top-faq .item__icon {
		width: 6.4vw;
		height: 6.4vw;
	}

	#top-faq .item__icon::before {
		height: 3.2vw;
	}

	#top-faq .item__icon::after {
		width: 3.2vw;
	}

	#top-faq .item__answer {
		gap: 4.27vw;
		padding: 0 0 0 3.2vw;
	}

	#top-faq .item.is-open .item__answer {
		padding: 8.53vw 0 2.13vw 3.2vw;
	}

	#top-faq .item__answer .item__text {
		font-size: 3.73vw;
	}

	#top-faq .btn {
		margin-top: 12.8vw;
	}
}

#top-features {
	background: #F9F9F9;
	padding: 5rem 0 3.75rem;
}

#top-features .head {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 6.75rem;
}

#top-features .c-title {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#top-features .lead {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 0em;
}

#top-features .items {
	margin-top: 5rem;
}

#top-features .item:not(:first-of-type) {
	margin-top: 2rem;
}

#top-features .item {
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	gap: 3.84375rem;
}

#top-features .item__head {
	position: relative;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 14rem;
	flex: 0 0 14rem;
	background: #fff;
	padding: 2rem 1.25rem;
	border-radius:7px;
}

#top-features .item__head::before {
	content: "";
	position: absolute;
	width: 0.875rem;
	height: 1.9375rem;
	top: 50%;
	right: -2.375rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #008CD6;
	-webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

#top-features .item__head-title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
	background: #E5EEF5;
	padding: 1rem 2rem;
	text-align: center;
	border-radius:4px;
}

#top-features .item__head-title--thin {
	color: #008CD6;
}

#top-features .item__head-image {
	width: 100%;
	max-width: 7.5rem;
	margin-inline: auto;
	margin-top: 0.5rem;
}

#top-features .item__head-image img {
	width: 100%;
}

#top-features .item__units {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}

#top-features .item__units--row3 {
	grid-template-columns: repeat(3, 1fr);
}

#top-features .unit {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	background: #fff;
	padding: 1.7rem;
	justify-content:flex-start;
	border-radius:7px;
}

#top-features .unit__title {
	width: 100%;
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
	border-bottom: 1px solid #008CD6;
	padding-bottom: 0.9375rem;
}

#top-features .unit__text {
	margin-top: 1rem;
}

#top-features .btn {
	margin-top: 4rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#top-features {
		padding: 21.33vw 0 16vw;
	}

	#top-features .head {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 6.4vw;
	}

	#top-features .lead {
		font-size: 4.27vw;
		line-height: 1.5;
	}

	#top-features .items {
		margin-top: 12.8vw;
	}

	#top-features .item:not(:first-of-type) {
		margin-top: 12.8vw;
	}

	#top-features .item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 11.87vw;
	}

	#top-features .item__head {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: reverse;
		-ms-flex-direction: row-reverse;
		flex-direction: row-reverse;
		gap: 2.13vw;
		background: transparent;
		padding: 0;
	}

	#top-features .item__head::before {
		width: 8.4vw;
		height: 3.6vw;
		top: auto;
		bottom: -7.47vw;
		right: calc(50% - 8.4vw);
		-webkit-transform: translateX(-50%);
		transform: translateX(-50%);
		-webkit-clip-path: polygon(0 0, 50% 100%, 100% 0);
		clip-path: polygon(0 0, 50% 100%, 100% 0);
	}

	#top-features .item__head-title {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		font-size: 4.8vw;
		padding: 7.07vw 5.33vw;
		border-radius:4px;
	}

	#top-features .item__head-image {
		max-width: 7.5rem;
		max-width: 21.33vw;
		margin-left: 0;
		margin-top: 0;
	}

	#top-features .item__units {
		grid-template-columns: 1fr;
		gap: 4.27vw;
	}

	#top-features .item__units--row3 {
		grid-template-columns: 1fr;
	}

	#top-features .unit {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 4.27vw;
	}

	#top-features .unit__title {
		font-size: 4.27vw;
		padding-bottom: 2.13vw;
	}

	#top-features .unit__text {
		font-size: 3.73vw;
		margin-top: 2.13vw;
	}

	#top-features .btn {
		margin-top: 12.8vw;
	}
}

.fix-banner {
	position: fixed;
	top: 14.9375rem;
	right: 0;
	z-index: 50;
}

.fix-banner a {
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.fix-banner a:hover {
	opacity: 0.7;
}

.fix-banner .image {
	width: 5rem;
	height: 15rem;
}

.fix-banner .image img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 768px) {
	.fix-banner {
		top: 90.13vw;
	}

	.fix-banner a:hover {
		opacity: 1;
	}

	.fix-banner .image {
		width: 11.73vw;
		height: 17.6vw;
	}
}

.fix-menu {
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	z-index: 100;
}

.fix-menu .fix-menu__btn {
	width: calc(100% - 70px);
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	background: #008CD6;
}

.fix-menu .fix-menu__web {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 54.1%;
	flex: 0 0 54.1%;
}

.fix-menu .fix-menu__web a {
	height: 100%;
	gap: 8px;
	gap: 0.5rem;
	background: #008CD6;
	padding: 12px;
}

.fix-menu .fix-menu__web-icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.fix-menu .fix-menu__web-icon img {
	width: 24px;
	height: 24px;
	-o-object-fit: contain;
	object-fit: contain;
}

.fix-menu .fix-menu__web-text {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #fff;
}

.fix-menu .fix-menu__web-arrow {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.fix-menu .fix-menu__web-arrow img {
	width: 18px;
	height: 18px;
	-o-object-fit: contain;
	object-fit: contain;
}

.fix-menu .fix-menu__tel {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

.fix-menu .fix-menu__tel a {
	height: 100%;
	display: block;
	background: #E5EEF5;
	padding: 7px 12px;
}

.fix-menu .fix-menu__tel-row {
	gap: 4px;
	padding-right: 16px;
}

.fix-menu .fix-menu__tel-icon {
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

.fix-menu .fix-menu__tel-icon img {
	width: 16px;
	height: 16px;
	-o-object-fit: contain;
	object-fit: contain;
}

.fix-menu .fix-menu__tel-text {
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #2B4857;
}

.fix-menu .fix-menu__tel-number {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
	color: #008CD6;
	margin-top: 2px;
	text-align: center;
}

.fix-menu .drawer .icon {
	width: 70px;
	height: 48px;
	top: auto;
	bottom: 0;
	right: 0;
}

.fix-menu .drawer .icon-bars {
	width: 16px;
	height: 6px;
	top: 13px;
}

.fix-menu .drawer .icon-bar1,
.fix-menu .drawer .icon-bar2 {
	width: 16px;
	height: 2px;
}

.fix-menu .drawer .icon-bar1 {
	top: 0;
}

.fix-menu .drawer .icon-bar2 {
	top: 4px;
}

.fix-menu .drawer .icon-menu {
	top: 13px;
}

#top-fv {
	padding-top: 2rem;
	margin-top: var(--header-height);
}

#top-fv .body {
	position: relative;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	aspect-ratio: 1392/634;
}

#top-fv .box {
	position: relative;
	width: 100%;
	max-width: 40.625rem;
	margin-inline: auto;
	z-index: 2;
}

#top-fv .title {
	color: #fff;
	text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	text-align: center;
}

#top-fv .main-title {
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0em;
}

#top-fv .sub-title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	margin-top: 1.6875rem;
}

#top-fv .items {
	width: 100%;
	max-width: 25.5rem;
	margin-inline: auto;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	margin-top: 2rem;
}

#top-fv .item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	color: #fff;
	background: #008CD6;
	padding: 2.0625rem 0.625rem;
	border-radius: 50%;
}

#top-fv .item__sub-title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
}

#top-fv .item__title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
}

#top-fv .gallery {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

#top-fv .swiper-container {
	position: relative;
	height: 100%;
}

#top-fv .top-fv-swiper {
	height: 100%;
}

#top-fv .swiper-slide {
	height: auto;
}

#top-fv .image {
	position: relative;
	height: 100%;
}

#top-fv .image::before {
	content: "";
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(1, 1, 1, 0.2);
	border-radius: 1.25rem;
}

#top-fv .image img,
#top-fv picture {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	border-radius: 1rem;
}

#top-fv .pagination-bullets,
#top-fv .swiper-pagination-bullets.swiper-pagination-horizontal,
#top-fv .swiper-pagination-custom,
.swiper-pagination-fraction {
	width: -webkit-max-content;
	width: -moz-max-content;
	width: max-content;
	left: 1.5rem;
	bottom: 1.5rem;
	text-align: left;
}

#top-fv .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
#top-fv .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	border-radius: 4px;
	margin: 0 0.375rem;
}

#top-fv .swiper-pagination-bullet {
	width: 1.5rem;
	height: 1.5rem;
	background: #fff;
	opacity: 1;
}

#top-fv .swiper-pagination-bullet-active {
	background: #008CD6;
}

@media screen and (max-width: 768px) {
	#top-fv {
		padding-top: 0;
		margin-top: 64px;
	}

	#top-fv .inner {
		padding: 0;
	}

	#top-fv .body {
		aspect-ratio: 375/317;
	}

	#top-fv .box {
		padding: 0 4vw;
	}

	#top-fv .main-title {
		font-size: 5.33vw;
		line-height: 1.5;
	}

	#top-fv .sub-title {
		font-size: 3.73vw;
		margin-top: 2.67vw;
	}

	#top-fv .items {
		max-width: 80.8vw;
		gap: 2.67vw;
		padding: 0 1.33vw;
		margin-top: 6.4vw;
	}

	#top-fv .item {
		padding: 6.8vw 4vw;
	}

	#top-fv .item__sub-title {
		font-size: 2.5vw;
	}

	#top-fv .item__title {
		font-size: 3.5vw;
	}

	#top-fv .image::before {
		border-radius: 0;
	}

	#top-fv .image img,
	#top-fv picture {
		border-radius: 0;
	}

	#top-fv .pagination-bullets,
	#top-fv .swiper-pagination-bullets.swiper-pagination-horizontal,
	#top-fv .swiper-pagination-custom,
	.swiper-pagination-fraction {
		left: 2.13vw;
		bottom: -9.87vw;
	}

	#top-fv .swiper-pagination-bullet {
		width: 4vw;
		height: 4vw;
		background: #f3f3f3;
	}

	#top-fv .swiper-pagination-bullet-active {
		background: #008CD6;
	}
}

#top-instagram {
	padding: 7.5rem 0 3.75rem;
}

#top-instagram .image {
	margin-top: 3rem;
}

@media screen and (max-width: 768px) {
	#top-instagram {
		padding: 32vw 0 16vw;
	}

	#top-instagram .image {
		margin-top: 12.8vw;
	}
}

#top-menu {
	padding: 7.5rem 0;
}

#top-menu .btn {
	margin-top: 8.25rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#top-menu {
		padding: 21.33vw 0 32vw;
	}

	#top-menu .btn {
		margin-top: 12.8vw;
	}

	#top-menu .btn__text {
		font-size: 4.8vw;
	}
}

#top-movie {
	padding: 3.75rem 0 3.125rem;
}

#top-movie .youtube {
	position: relative;
	width: 100%;
	max-width: 40rem;
	margin-inline: auto;
	margin-top: 3rem;
	aspect-ratio: 640/361;
	overflow: hidden;
}

#top-movie .youtube iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 768px) {
	#top-movie {
		padding: 16vw 0;
	}

	#top-movie .youtube {
		max-width: 100%;
		margin-top: 12.8vw;
		aspect-ratio: 345/195;
	}
}

.section-row {
	padding: 5.4375rem 0 5.875rem;
}

.section-row .inner {
	max-width: 1200px;
	margin-inline: auto;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 4rem;
	padding: 0 1.25rem;
}

#top-news {
	width: calc(51.3% - 2rem);
}

#top-news .body {
	background: #F9F9F9;
	padding: 2rem;
	border-radius:10px;
}

#top-news .title {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
}

#top-news .items {
	margin-top: 1rem;
}

#top-news .item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 1.5rem;
}

#top-news .item:not(:first-of-type) {
	margin-top: 0.75rem;
}

#top-news .item__date {
	position: relative;
	top: 0.125rem;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #728fa8;
}

#top-news .item a {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0em;
	color: #2B4857;
	text-decoration: underline;
	overflow: hidden;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#top-news .item a:hover {
	opacity: 0.8;
}

#top-news .btn {
	margin-top: 1.5rem;
}

#top-news .btn a {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	gap: 0.5rem;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

#top-news .btn a:hover {
	opacity: 0.8;
}

#top-news .btn__text {
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
	color: #008CD6;
}

#top-news .btn__icon {
	position: relative;
	top: 0.0625rem;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}

#top-news .btn__icon img {
	width: 0.75rem;
	height: 0.75rem;
	-o-object-fit: contain;
	object-fit: contain;
}

@media screen and (max-width: 768px) {
	.section-row {
		padding: 20.8vw 0 17.07vw;
	}

	.section-row .inner {
		max-width: 100%;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 12.8vw;
		padding: 0 4vw;
	}

	#top-news {
		width: 100%;
	}

	#top-news .body {
		background: transparent;
		padding: 0;
	}

	#top-news .box {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		gap: 5.33vw;
		padding-right: 2.67vw;
	}

	#top-news .title {
		font-size: 3.73vw;
		color: #2B4857;
	}

	#top-news .btn {
		margin-top: 0;
	}

	#top-news .btn a {
		gap: 2.13vw;
	}

	#top-news .btn a:hover {
		opacity: 1;
	}

	#top-news .btn__text {
		font-size: 3.2vw;
	}

	#top-news .btn__icon {
		top: 0.27vw;
	}

	#top-news .btn__icon img {
		width: 3.2vw;
		height: 3.2vw;
	}

	#top-news .items {
		margin-top: 4.27vw;
	}

	#top-news .item {
		gap: 6.4vw;
	}

	#top-news .item:not(:first-of-type) {
		margin-top: 2.13vw;
	}

	#top-news .item__date {
		top: 0.125rem;
		font-size: 3.73vw;
	}

	#top-news .item a {
		font-size: 3.73vw;
		-webkit-line-clamp: 1;
	}

	#top-news .item a:hover {
		opacity: 1;
	}
}

#top-service {
	position: relative;
	background: #F9F9F9;
	padding: 5rem 0;
}

#top-service::before {
	content: "";
	position: absolute;
	width: 32rem;
	height: 28rem;
	bottom: 0;
	left: 0;
	background-image: url("../img/top-service-bg.webp");
	background-repeat: no-repeat;
	background-size: contain;
	aspect-ratio: 512/448;
}

#top-service .body {
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	gap: 7.0625rem;
}

#top-service .contents {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#top-service .title {
	position: relative;
	left: -1.25rem;
	font-size: 2.5rem;
	font-weight: 700;
	line-height: 1.56;
	letter-spacing: 0em;
	color: #008CD6;
}

#top-service .sub-title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
	margin-top: 2rem;
}

#top-service .lead {
	margin-top: 4rem;
}

#top-service .items {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 40rem;
	flex: 0 0 40rem;
	border-radius:10px;
}

#top-service .item {
	gap: 2rem;
	background: #fff;
	padding: 2rem;
}

#top-service .item:not(:first-of-type) {
	margin-top: 1.5rem;
}

#top-service .item:nth-last-of-type(even) {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}

#top-service .item__image {
	-webkit-box-flex: 0;
	-ms-flex: 0 0 10rem;
	flex: 0 0 10rem;
}

#top-service .item__image img {
	width: 100%;
}

#top-service .item__box {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

#top-service .item__title {
	display: inline-block;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #fff;
	background: #008CD6;
	padding: 0.25rem 1rem;
	border-radius:4px;
}

#top-service .item__catch {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	margin-top: 0.5rem;
}

#top-service .item__text {
	margin-top: 1.1875rem;
}

@media screen and (max-width: 768px) {
	#top-service {
		padding: 21.33vw 0;
	}

	#top-service::before {
		display: none;
	}

	#top-service .body {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8vw;
	}

	#top-service .contents {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}

	#top-service .title {
		left: auto;
		font-size: 6.4vw;
		line-height: 1.3;
		text-align: center;
	}

	#top-service .sub-title {
		font-size: 4.8vw;
		margin-top: 4.27vw;
		text-align: center;
	}

	#top-service .lead {
		margin-top: 8.53vw;
	}

	#top-service .items {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		width: 100%;
	}

	#top-service .item {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 8vw;
		background: transparent;
		padding: 0;
		text-align: center;
	}

	#top-service .item:not(:first-of-type) {
		margin-top: 8.53vw;
	}

	#top-service .item:nth-last-of-type(even) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	#top-service .item__image {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		width: 100%;
		max-width: 42.67vw;
		margin-inline: auto;
	}

	#top-service .item__box {
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
	}

	#top-service .item__title {
		font-size: 3.73vw;
		padding: 1.07vw 4.27vw;
	}

	#top-service .item__catch {
		font-size: 4.8vw;
		margin-top: 2.13vw;
	}

	#top-service .item__text {
		margin-top: 5.07vw;
		text-align: left;
	}
}

#top-worries {
	padding: 7.5rem 0;
}

#top-worries .lead {
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0em;
	margin-top: 1.5rem;
	text-align: center;
}

#top-worries .block {
	position: relative;
	background-image: url("../img/top-worries-block-bg.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position:50%;
	padding: 5.8125rem 0;
	margin-top: 7.5rem;
	border-radius:10px;
}

#top-worries .block::before {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background: rgb(0 140 214 / 60%);
	border-radius:10px;
}

#top-worries .block__body {
	position: relative;
	z-index: 1;
}

#top-worries .block__head {
	color: #fff;
	text-align: center;
}

#top-worries .block__title {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
}

#top-worries .block__sub-title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	margin-top: 1rem;
}

#top-worries .block__btn {
	margin-top: 3rem;
	text-align: center;
}

@media screen and (max-width: 768px) {
	#top-worries {
		padding: 16vw 0 21.33vw;
		overflow: hidden;
	}

	#top-worries .lead {
		font-size: 4.27vw;
		margin-top: 6.4vw;
		text-align: left;
	}

	#top-worries .block {
		width: 100vw;
		margin: 0 calc(50% - 50vw);
		background-image: url("../img/top-worries-block-bg-sp.webp");
		padding: 12vw 4vw;
		margin-top: 21.33vw;
	}

	#top-worries .block__title {
		font-size: 5.33vw;
	}

	#top-worries .block__sub-title {
		font-size: 4.27vw;
		margin-top: 6.4vw;
		text-align: left;
	}

	#top-worries .block__btn {
		margin-top: 12.8vw;
	}

	#top-worries .btn__text {
		font-size: 4.8vw;
	}
}

#top-hours {
	width: calc(48.7% - 2rem);
}

@media screen and (max-width: 768px) {
	#top-hours {
		width: 100%;
	}
}

.u-target {
	opacity: 0;
	-webkit-transform: translateY(3.125rem);
	transform: translateY(3.125rem);
	-webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
	transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
	transition: opacity 0.5s ease, transform 0.5s ease;
	transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.u-target.SlideUp {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}

.u-pc {
	display: block;
}

.u-sp {
	display: none;
}

.u-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.u-br {
	display: inline-block;
}

@media screen and (max-width: 768px) {
	.u-pc {
		display: none;
	}

	.u-sp {
		display: block;
	}
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
投稿詳細（ブロックエディター） css
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* グループ */
.post-content h2.wp-block-heading+.wp-block-group {
	padding: 0 2.5rem;
}

.post-content h3.wp-block-heading+.wp-block-group {
	padding-left: 2.5rem;
}

.post-content h5.wp-block-heading+.wp-block-group {
	padding-left: 2.5rem;
}

.is-layout-constrained> :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
	max-width: 100%;
}

/* カラム */
.post-content .wp-block-columns {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 4em;
}

.post-content .wp-block-columns {
	margin-bottom: 0;
}

.post-content .wp-block-columns:nth-of-type(even) {
	margin-top: 5rem;
}

/*
.post-content .wp-block-columns .wp-block-column:nth-of-type(odd) {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-preferred-size: 33.5rem !important;
	flex-basis: 33.5rem !important;
}

.post-content .wp-block-columns .wp-block-column:nth-of-type(even) {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	-ms-flex-preferred-size: 25.5rem !important;
	flex-basis: 25.5rem !important;
}

.post-content .wp-block-column .wp-block-image:nth-of-type(n + 2) {
	margin-top: 4rem;
}

.post-content .wp-block-columns:nth-of-type(even) .wp-block-column:nth-of-type(1) {
	-ms-flex-preferred-size: 25.5rem !important;
	flex-basis: 25.5rem !important;
}

.post-content .wp-block-columns:nth-of-type(even) .wp-block-column:nth-of-type(2) {
	-ms-flex-preferred-size: 33.5rem !important;
	flex-basis: 33.5rem !important;
}
*/



/* 見出し */
.post-content h2.wp-block-heading {
	font-size: 1.5rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
	border-bottom: 1px solid #008CD6;
	padding-bottom: 1.4375rem;
	margin-bottom: 4rem;
}

.post-content h3.wp-block-heading {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
	background: #F9F9F9;
	padding: 1rem 1.5rem;
	margin-bottom: 3rem;
}

.post-content h4.wp-block-heading {
	margin-bottom: 2rem;
}

.post-content h4.wp-block-heading span {
	position: relative;
	display: inline-block;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
	padding-left: 2.125rem;
}

.post-content h4.wp-block-heading span::before {
	content: "";
	width: 1.5rem;
	height: 2px;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #008CD6;
}

.post-content h5.wp-block-heading {
	padding-left: 2.5rem;
}

.post-content h5.wp-block-heading span {
	position: relative;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
	padding-left: 1.25rem;
	margin-bottom: 1.5rem;
}

.post-content h5.wp-block-heading span::before {
	content: "";
	width: 0.625rem;
	height: 0.625rem;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #008CD6;
}

/* テキスト */
.post-content p {
	margin-bottom: 2rem;
}

.post-content p:last-of-type {
	margin-bottom: 0;
}

.post-content p:has(> a) {
	margin-bottom: 0;
}

/* リンク */
.post-content a {
	display: inline-block;
	color: #008CD6;
	text-decoration: underline;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.post-content a:hover {
	opacity: 0.8;
}

.post-content a[rel*="nofollow"],
.post-content a[rel*="noopener"],
.post-content a[rel*="noreferrer"] {
	position: relative;
	padding-right: 1.25rem;
}

.post-content a[rel*="nofollow"]::before,
.post-content a[rel*="noopener"]::before,
.post-content a[rel*="noreferrer"]::before {
	content: "";
	display: inline-block;
	width: 1rem;
	height: 1rem;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background-image: url("../img/icon-separate-tab.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

/* リスト */
.post-content .wp-block-list li {
	position: relative;
	padding-left: 1.125rem;
}

.post-content .wp-block-list li:not(:first-of-type) {
	margin-top: 0.5rem;
}

.post-content .wp-block-list li::before {
	content: "";
	width: 0.5rem;
	height: 0.5rem;
	position: absolute;
	top: 0.6rem;
	left: 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	background: #666;
}

/* テーブル */
.post-content thead,
.post-content tbody,
.post-content tfoot,
.post-content tr,
.post-content td,
.post-content th {
	border-color: #fff;
	border-style: solid;
	border-width: 0.25rem;
}

.post-content .wp-block-table .has-fixed-layout {
	display: block;
}

.post-content .wp-block-table .has-fixed-layout th,
.post-content .wp-block-table .has-fixed-layout td {
	width: 14rem;
}

.post-content .wp-block-table .has-fixed-layout th {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #fff;
	background: #728FA8;
	padding: 0.625rem 0.5rem;
}

.post-content .wp-block-table .has-fixed-layout td {
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.7;
	letter-spacing: 0em;
	color: #2B4857;
	background: #F9F9F9;
	padding: 0.875rem 0.5rem;
}

/* ボタン */
.post-content .wp-block-button__link {
	position: relative;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0em;
	color: #fff;
	border-radius: 0;
	background: #008CD6;
	padding: 0.75rem 2.8125rem 0.75rem 1.8125rem;
	text-decoration: none;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.post-content .wp-block-button__link:hover {
	opacity: 0.8;
}

.post-content .wp-block-button__link::before {
	content: "";
	width: 0.75rem;
	height: 0.75rem;
	position: absolute;
	top: 50%;
	right: 1.75rem;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background-image: url("../img/icon-arrow-white.svg");
	background-repeat: no-repeat;
	background-size: contain;
}

/* ボタンサイズ */
.post-content .wp-block-button__link.has-medium-font-size {
	font-size: 1.125rem;
	line-height: 1.5;
	padding: 0.75rem 4.125rem 0.75rem 3rem;
}

.post-content .wp-block-button__link.has-large-font-size {
	font-size: 1.125rem;
	line-height: 1.5;
	padding: 0.75rem 4.125rem 0.75rem 3rem;
	background: #008CD6;
}

.post-content .wp-block-button__link.has-x-large-font-size {
	font-size: 1.25rem;
	line-height: 1.5;
	padding: 1.125rem 4.875rem 1.125rem 4rem;
	background: #008CD6;
}

.post-content .wp-block-button__link.has-medium-font-size::before {
	width: 1.125rem;
	height: 1.125rem;
	right: 2.5rem;
}

.post-content .wp-block-button__link.has-large-font-size::before {
	width: 1.125rem;
	height: 1.125rem;
	right: 2.5rem;
}

.post-content .wp-block-button__link.has-x-large-font-size::before {
	width: 1.125rem;
	height: 1.125rem;
	right: 3.25rem;
}

/* タブ切り替え */
.post-content .tab-buttons {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	gap: 0.25rem;
}

.post-content .tab-button {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	width: 100%;
	max-width: 14rem;
	height: -webkit-max-content;
	height: -moz-max-content;
	height: max-content;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #fff;
	background: #008CD6;
	padding: 0.75rem;
	margin: 0;
	text-align: center;
	cursor: pointer;
}

.post-content .tab-button:hover {
	opacity: 0.8;
}

.post-content .tab-button.active {
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	background: #008CD6;
	padding: 1rem 0.75rem;
}

.post-content .tab-button.active:hover {
	opacity: 1;
}

.post-content .tab-content {
	display: none;
	padding: 2rem;
}

.post-content .tab-content.active {
	display: block;
}

/* タブ追加ボタン */
.post-content .add-tab-button-wrapper {
	text-align: center;
	margin: 1rem 0;
}

.post-content .add-tab-button {
	background: #008CD6;
	color: #FFFFFF;
	border: none;
	padding: 0.5rem 1.5rem;
	cursor: pointer;
	font-weight: 700;
	border-radius: 4px;
	transition: background 0.3s ease;
}

.post-content .add-tab-button:hover {
	background: #008CD6;
}

/* タブ削除ボタン・追加ボタン（フロントエンドでは非表示） */
.post-content .tab-button .delete-tab,
.post-content .tab-container .add-tab-button-wrapper,
.post-content .tab-container .add-tab-button {
	display: none !important;
}

/* アコーディオン */
/* Q&A削除ボタン・追加ボタン（フロントエンドでは非表示） */
.post-content .accordion .delete-qa,
.post-content .accordion .add-accordion-button-wrapper,
.post-content .accordion .add-accordion-button {
	display: none !important;
}

.post-content .accordion .question {
	position: relative;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.5;
	letter-spacing: 0em;
	color: #008CD6;
	background: #F9F9F9;
	border-radius: 0.25rem;
	padding: 1.5rem 3.625rem 1.5rem 1.5rem;
	margin-bottom: 0;
	cursor: pointer;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.post-content .accordion .question:hover,
.post-content .accordion .question.is-active {
	color: #fff;
	background: #008CD6;
}

.post-content .accordion .question::before,
.post-content .accordion .question::after {
	content: "";
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	background: #008CD6;
	-webkit-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
}

.post-content .accordion .question:hover::before,
.post-content .accordion .question.is-active::before,
.post-content .accordion .question:hover::after,
.post-content .accordion .question.is-active::after {
	background: #fff;
}

.post-content .accordion .question::before {
	width: 0.875rem;
	height: 0.125rem;
	right: 1.5rem;
}

.post-content .accordion .question::after {
	width: 0.125rem;
	height: 0.875rem;
	right: 1.85rem;
}

.post-content .accordion .question.is-active::after {
	transform: translateY(-50%) rotate(90deg);
}

.post-content .accordion .answer {
	padding: 0 0 0 1.5rem;
	max-height: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: 0.5s ease-in-out;
	transition: 0.5s ease-in-out;
}

.post-content .accordion .answer.is-active {
	max-height: 100%;
	opacity: 1;
	padding: 1.5rem 0 0 1.5rem;
}

@media screen and (max-width: 768px) {

	/* グループ */
	.post-content h2.wp-block-heading+.wp-block-group {
		padding: 0;
	}

	.post-content h3.wp-block-heading+.wp-block-group {
		padding-left: 0;
	}

	.post-content h5.wp-block-heading+.wp-block-group {
		padding-left: 0;
	}

	/* カラム */
	.post-content .wp-block-columns {
		-webkit-box-orient: vertical;
		-webkit-box-direction: reverse;
		-ms-flex-direction: column-reverse;
		flex-direction: column-reverse;
		gap: 12vw;
	}

	.post-content .wp-block-columns:nth-of-type(even) {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin-top: 16vw;
	}

	.post-content .wp-block-columns .wp-block-column:nth-of-type(odd) {
		-ms-flex-preferred-size: 100% !important;
		flex-basis: 100% !important;
	}

	.post-content .wp-block-columns .wp-block-column:nth-of-type(even) {
		-ms-flex-preferred-size: 100% !important;
		flex-basis: 100% !important;
	}

	.post-content .wp-block-column .wp-block-image:nth-of-type(n + 2) {
		margin-top: 2.67vw;
	}

	.post-content .wp-block-columns:nth-of-type(even) .wp-block-column:nth-of-type(1) {
		-ms-flex-preferred-size: 100% !important;
		flex-basis: 100% !important;
	}

	.post-content .wp-block-columns:nth-of-type(even) .wp-block-column:nth-of-type(2) {
		-ms-flex-preferred-size: 100% !important;
		flex-basis: 100% !important;
	}

	/* 見出し */
	.post-content h2.wp-block-heading {
		font-size: 5.33vw;
		padding-bottom: 2.67vw;
		margin-bottom: 5.33vw;
	}

	.post-content h3.wp-block-heading {
		font-size: 4.8vw;
		padding: 2.67vw;
		margin-bottom: 5.33vw;
	}

	.post-content h4.wp-block-heading {
		margin-bottom: 2.67vw;
	}

	.post-content h4.wp-block-heading span {
		font-size: 4.27vw;
		padding-left: 5.33vw;
	}

	.post-content h4.wp-block-heading span::before {
		width: 3.5vw;
	}

	.post-content h5.wp-block-heading {
		padding-left: 0;
	}

	.post-content h5.wp-block-heading span {
		font-size: 4.27vw;
		padding-left: 5vw;
	}

	.post-content h5.wp-block-heading span::before {
		width: 2.67vw;
		height: 2.67vw;
	}

	/* テキスト */
	.post-content p {
		margin-bottom: 4.27vw;
	}

	.post-content .has-small-font-size {
		font-size: 3.73vw !important;
	}

	.post-content .has-medium-font-size {
		font-size: 4.27vw !important;
	}

	.post-content .has-large-font-size {
		font-size: 4.8vw !important;
	}

	.post-content .has-x-large-font-size {
		font-size: 5.33vw !important;
	}

	/* リンク */
	.post-content a:hover {
		opacity: 1;
	}

	.post-content a[rel*=nofollow],
	.post-content a[rel*=noopener],
	.post-content a[rel*=noreferrer] {
		padding-right: 4.27vw;
	}

	.post-content a[rel*=nofollow]::before,
	.post-content a[rel*=noopener]::before,
	.post-content a[rel*=noreferrer]::before {
		width: 3.2vw;
		height: 3.2vw;
	}

	/* リスト */
	.post-content .wp-block-list li {
		padding-left: 4.27vw;
	}

	.post-content .wp-block-list li:not(:first-of-type) {
		margin-top: 1.33vw;
	}

	.post-content .wp-block-list li::before {
		width: 2.13vw;
		height: 2.13vw;
		top: 3vw;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
	}

	/* テーブル */
	.post-content thead,
	.post-content tbody,
	.post-content tfoot,
	.post-content tr,
	.post-content td,
	.post-content th {
		border-width: 1.07vw;
	}

	.post-content .wp-block-columns {
		overflow: scroll;
	}

	.post-content .wp-block-table .has-fixed-layout {
		white-space: nowrap;
	}

	.post-content .wp-block-table .has-fixed-layout th,
	.post-content .wp-block-table .has-fixed-layout td {
		width: 59.73vw;
	}

	.post-content .wp-block-table .has-fixed-layout th {
		font-size: 4.8vw;
		padding: 3.2vw 2.13vw;
	}

	.post-content .wp-block-table .has-fixed-layout td {
		font-size: 4.27vw;
		padding: 4.27vw 2.13vw;
	}

	/* ボタン */
	.post-content .wp-block-button__link {
		font-size: 3.73vw;
		padding: 3.2vw 12vw 3.2vw 7.73vw;
	}

	.post-content .wp-block-button__link:hover {
		opacity: 1;
	}

	.post-content .wp-block-button__link::before {
		width: 3.2vw;
		height: 3.2vw;
		right: 7.47vw;
	}

	/* ボタンサイズ */
	.post-content .wp-block-button__link.has-medium-font-size {
		font-size: 4.8vw;
		padding: 3.2vw 17.6vw 3.2vw 12.8vw;
	}

	.post-content .wp-block-button__link.has-large-font-size {
		font-size: 4.8vw;
		padding: 3.2vw 17.6vw 3.2vw 12.8vw;
	}

	.post-content .wp-block-button__link.has-x-large-font-size {
		font-size: 4.8vw;
		padding: 4.8vw 20.8vw 4.8vw 17.07vw;
	}

	.post-content .wp-block-button__link.has-medium-font-size::before {
		width: 4.8vw;
		height: 4.8vw;
		right: 10.67vw;
	}

	.post-content .wp-block-button__link.has-large-font-size::before {
		width: 4.8vw;
		height: 4.8vw;
		right: 10.67vw;
	}

	.post-content .wp-block-button__link.has-x-large-font-size::before {
		width: 4.8vw;
		height: 4.8vw;
		right: 13.87vw;
	}

	/* タブ切り替え */
	.post-content .tab-container {
		overflow: scroll;
	}

	.post-content .tab-buttons {
		gap: 1.07vw;
	}

	.post-content .tab-button {
		white-space: nowrap;
		width: 59.73vw;
		max-width: 100%;
		font-size: 3.73vw;
		padding: 3.2vw;
	}

	.post-content .tab-button:hover {
		opacity: 1;
	}

	.post-content .tab-button.active {
		font-size: 4.8vw;
		padding: 3.2vw 4.27vw;
	}

	.post-content .tab-button.active:hover {
		opacity: 1;
	}

	.post-content .tab-content {
		padding: 5.33vw 4vw;
	}

	/* アコーディオン */
	.post-content .accordion .question {
		font-size: 4.8vw;
		border-radius: 1.07vw;
		padding: 3.2vw 9.6vw 3.2vw 3.2vw;
	}

	.post-content .accordion .question::before {
		width: 3.73vw;
		height: 0.53vw;
		right: 8vw;
		right: 3.73vw;
	}

	.post-content .accordion .answer {
		padding: 0 2.56vw;
	}

	.post-content .accordion .answer.is-active {
		padding: 3.2vw 2.56vw 0;
	}

	.post-content .accordion .question::after {
		width: 0.53vw;
		height: 3.73vw;
		right: 5.3vw;
	}
}


.post-content .directions .step>div {position:relative;}

.post-content .directions .step>div::after {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	right:-35px;
	content:" ";
	display: inline-block;
	width: 1.125rem;
	height: 1.125rem;
	-webkit-transform-origin: center center;
	transform-origin: center center;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	border-right: 0.25rem solid #008CD6;
	border-bottom: 0.25rem solid #008CD6;
}

.post-content .directions .step>div:last-child::after {display:none;}





@media screen and (max-width: 768px) {
	.first-block {
		width: 100% !important;
        padding: 0 !important;
        margin: 0;
	}
	.first-block p br {display:none;}
	.first-block p strong {font-size:1.5rem;line-height:1.4em;}
	.post-content .medical-policy .wp-block-columns {
		-webkit-box-orient: vertical;
        -webkit-box-direction:column;
        -ms-flex-direction: column;
        flex-direction: column;
	}
	.post-content .medical-policy .wp-block-columns {overflow:hidden;}
	.about-greeting,
	.wp-container-core-columns-is-layout-2c398e40 {padding:20px!important;}
	.wp-container-core-columns-is-layout-2c398e40 figure {width:60%;padding:20px 0 0;margin:0 auto;}

	.wp-container-core-columns-is-layout-2c398e40 div {padding:0!important;margin:0 auto;justify-content:center;}

	.post-content .directions .wp-block-columns {flex-direction:column;}
	.post-content .directions .step>div::after {
		top:auto;
		bottom:-20px;
		right:50%;
		transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	}
	.post-content .directions figure,
	.post-content .directions .wp-block-image img {width:100%;height:auto;}



	.wp-container-core-group-is-layout-a98df959 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}




}