@charset "UTF-8";

/* layout */
/* ===============================================
reset
=============================================== */
* {
	margin: 0;
	padding: 0;
}

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

*:where(:not(fieldset, progress, meter)) {
	border-width: 0;
	border-style: solid;
	background-origin: border-box;
	background-repeat: no-repeat;
	outline: none;
}

html {
	block-size: 100%;
	-webkit-text-size-adjust: none;
}

body {
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeSpeed;
	min-block-size: 100%;
}

/* 各メディア要素のデフォルト */
:where(img, svg, video) {
	block-size: auto;
	max-inline-size: 100%;
}

:where(svg) {
	stroke: none;
	fill: currentColor;
}

body :where(figure) {
	margin: 0;
}

/* fill属性のないSVG */
:where(svg):where(:not([fill])) {
	stroke: currentColor;
	fill: none;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* width属性のないSVGのサイズ */
:where(svg):where(:not([width])) {
	inline-size: 5rem;
}

/* フォーム内のスタイルを削除 */
:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
	color: inherit;
	font: inherit;
	font-size: inherit;
	letter-spacing: inherit;
}

:where(input[type=submit]) {
	border: none;
	background: transparent;
	cursor: pointer;
}

/* textareaのサイズ変更は垂直のみにし、ブラウザがサポートしている場合にのみblock */
:where(textarea) {
	resize: vertical;
}

@supports (resize: block) {
	:where(textarea) {
		resize: block;
	}
}

/* テキストのオーバーフローを回避 */
:where(p, h1, h2, h3, h4, h5, h6) {
	font-size: 1em;
	font-weight: 500;
	overflow-wrap: break-word;
}

:where(ul, ol)[role=list] {
	list-style: none;
}

a:not([class]) {
	-webkit-text-decoration-skip: ink;
	text-decoration-skip-ink: auto;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
	cursor: pointer;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

:where(input[type=file]) {
	cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button {
	cursor: pointer;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
	cursor: pointer;
}

/* フォーカスのアウトラインをアニメーション */
@media (prefers-reduced-motion: no-preference) {
	:focus-visible {
		-webkit-transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
		transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
	}

	:where(:not(:active)):focus-visible {
		-webkit-transition-duration: 0.25s;
		transition-duration: 0.25s;
	}
}

:where(:not(:active)):focus-visible {
	outline-offset: 5px;
}

a {
	outline: none;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

button {
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background: none;
	cursor: pointer;
}

ol,
ul,
menu {
	list-style: none;
}

em {
	font-style: normal;
}

table {
	border-collapse: collapse;
}

textarea {
	white-space: revert;
}

::-webkit-input-placeholder {
	color: unset;
}

::-moz-placeholder {
	color: unset;
}

:-ms-input-placeholder {
	color: unset;
}

::-ms-input-placeholder {
	color: unset;
}

::placeholder {
	color: unset;
}

:where([hidden]) {
	display: none;
}

@media (prefers-reduced-motion: reduce) {

	.sip-slider,
	.swiper-container,
	.swiper-wrapper,
	.swiper-slide,
	.swiper-slide img {
		-webkit-transition-duration: 100ms !important;
		transition-duration: 100ms !important;
	}
}

/* ===============================================
  base
  =============================================== */
body {
	margin-inline: auto;
	padding: 0;
	font-family: "游ゴシック", YuGothic, "Yu Gothic", "游ゴシック体", "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "メイリオ", Meiryo, sans-serif;
	color: #333333;
	line-height: 1.3;
	word-wrap: break-word;
	width: 100%;
	height: 100dvh;
	font-weight: 500;
	overscroll-behavior-y: none;
	-webkit-font-smoothing: antialiased;
	position: relative;
	top: 0;
}

body.fixed {
	overflow: hidden;
	height: 100vh;
}

@media screen and (max-width: 1024px) {
	body {
		line-height: 1.5;
	}
}

a {
	color: #333333;
}

@media (hover: hover) and (pointer: fine) {
	a:hover img {
		opacity: 0.75;
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}
}

input,
select,
textarea {
	font-size: 16px;
	font-weight: 400;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

input::-webkit-input-placeholder,
select::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	font-weight: initial;
}

input::-moz-placeholder,
select::-moz-placeholder,
textarea::-moz-placeholder {
	font-weight: initial;
}

input:-ms-input-placeholder,
select:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	font-weight: initial;
}

input::-ms-input-placeholder,
select::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	font-weight: initial;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
	font-weight: initial;
}

:where(input:not(input[type=submit])),
select,
textarea {
	border: 1px solid;
	cursor: text;
}

select {
	color: #333333;
	cursor: pointer;
}

@media (hover: hover) and (pointer: fine) {
	button:hover {
		opacity: 0.75;
		-webkit-transition: 0.3s ease-in-out;
		transition: 0.3s ease-in-out;
	}
}

/* ===============================================
  utility
  =============================================== */
/******************************************************************************
   Margin
  ******************************************************************************/
.mA-10 {
	margin: clamp(5px, 0.6666666667vw, 10px);
}

.mT-10 {
	margin-top: clamp(5px, 0.6666666667vw, 10px);
}

.mB-10 {
	margin-bottom: clamp(5px, 0.6666666667vw, 10px);
}

.mL-10 {
	margin-left: clamp(5px, 0.6666666667vw, 10px);
}

.mR-10 {
	margin-right: clamp(5px, 0.6666666667vw, 10px);
}

.mA-20 {
	margin: clamp(10px, 1.3333333333vw, 20px);
}

.mT-20 {
	margin-top: clamp(10px, 1.3333333333vw, 20px);
}

.mB-20 {
	margin-bottom: clamp(10px, 1.3333333333vw, 20px);
}

.mL-20 {
	margin-left: clamp(10px, 1.3333333333vw, 20px);
}

.mR-20 {
	margin-right: clamp(10px, 1.3333333333vw, 20px);
}

.mA-30 {
	margin: clamp(15px, 2vw, 30px);
}

.mT-30 {
	margin-top: clamp(15px, 2vw, 30px);
}

.mB-30 {
	margin-bottom: clamp(15px, 2vw, 30px);
}

.mL-30 {
	margin-left: clamp(15px, 2vw, 30px);
}

.mR-30 {
	margin-right: clamp(15px, 2vw, 30px);
}

.mA-40 {
	margin: clamp(20px, 2.6666666667vw, 40px);
}

.mT-40 {
	margin-top: clamp(20px, 2.6666666667vw, 40px);
}

.mB-40 {
	margin-bottom: clamp(20px, 2.6666666667vw, 40px);
}

.mL-40 {
	margin-left: clamp(20px, 2.6666666667vw, 40px);
}

.mR-40 {
	margin-right: clamp(20px, 2.6666666667vw, 40px);
}

.mA-50 {
	margin: clamp(25px, 3.3333333333vw, 50px);
}

.mT-50 {
	margin-top: clamp(25px, 3.3333333333vw, 50px);
}

.mB-50 {
	margin-bottom: clamp(25px, 3.3333333333vw, 50px);
}

.mL-50 {
	margin-left: clamp(25px, 3.3333333333vw, 50px);
}

.mR-50 {
	margin-right: clamp(25px, 3.3333333333vw, 50px);
}

.mA-60 {
	margin: clamp(30px, 4vw, 60px);
}

.mT-60 {
	margin-top: clamp(30px, 4vw, 60px);
}

.mB-60 {
	margin-bottom: clamp(30px, 4vw, 60px);
}

.mL-60 {
	margin-left: clamp(30px, 4vw, 60px);
}

.mR-60 {
	margin-right: clamp(30px, 4vw, 60px);
}

.mA-70 {
	margin: clamp(35px, 4.6666666667vw, 70px);
}

.mT-70 {
	margin-top: clamp(35px, 4.6666666667vw, 70px);
}

.mB-70 {
	margin-bottom: clamp(35px, 4.6666666667vw, 70px);
}

.mL-70 {
	margin-left: clamp(35px, 4.6666666667vw, 70px);
}

.mR-70 {
	margin-right: clamp(35px, 4.6666666667vw, 70px);
}

.mA-80 {
	margin: clamp(40px, 5.3333333333vw, 80px);
}

.mT-80 {
	margin-top: clamp(40px, 5.3333333333vw, 80px);
}

.mB-80 {
	margin-bottom: clamp(40px, 5.3333333333vw, 80px);
}

.mL-80 {
	margin-left: clamp(40px, 5.3333333333vw, 80px);
}

.mR-80 {
	margin-right: clamp(40px, 5.3333333333vw, 80px);
}

.mA-90 {
	margin: clamp(45px, 6vw, 90px);
}

.mT-90 {
	margin-top: clamp(45px, 6vw, 90px);
}

.mB-90 {
	margin-bottom: clamp(45px, 6vw, 90px);
}

.mL-90 {
	margin-left: clamp(45px, 6vw, 90px);
}

.mR-90 {
	margin-right: clamp(45px, 6vw, 90px);
}

.mA-100 {
	margin: clamp(50px, 6.6666666667vw, 100px);
}

.mT-100 {
	margin-top: clamp(50px, 6.6666666667vw, 100px);
}

.mB-100 {
	margin-bottom: clamp(50px, 6.6666666667vw, 100px);
}

.mL-100 {
	margin-left: clamp(50px, 6.6666666667vw, 100px);
}

.mR-100 {
	margin-right: clamp(50px, 6.6666666667vw, 100px);
}

.mA-110 {
	margin: clamp(55px, 7.3333333333vw, 110px);
}

.mT-110 {
	margin-top: clamp(55px, 7.3333333333vw, 110px);
}

.mB-110 {
	margin-bottom: clamp(55px, 7.3333333333vw, 110px);
}

.mL-110 {
	margin-left: clamp(55px, 7.3333333333vw, 110px);
}

.mR-110 {
	margin-right: clamp(55px, 7.3333333333vw, 110px);
}

.mA-120 {
	margin: clamp(60px, 8vw, 120px);
}

.mT-120 {
	margin-top: clamp(60px, 8vw, 120px);
}

.mB-120 {
	margin-bottom: clamp(60px, 8vw, 120px);
}

.mL-120 {
	margin-left: clamp(60px, 8vw, 120px);
}

.mR-120 {
	margin-right: clamp(60px, 8vw, 120px);
}

.mA-130 {
	margin: clamp(65px, 8.6666666667vw, 130px);
}

.mT-130 {
	margin-top: clamp(65px, 8.6666666667vw, 130px);
}

.mB-130 {
	margin-bottom: clamp(65px, 8.6666666667vw, 130px);
}

.mL-130 {
	margin-left: clamp(65px, 8.6666666667vw, 130px);
}

.mR-130 {
	margin-right: clamp(65px, 8.6666666667vw, 130px);
}

.mA-140 {
	margin: clamp(70px, 9.3333333333vw, 140px);
}

.mT-140 {
	margin-top: clamp(70px, 9.3333333333vw, 140px);
}

.mB-140 {
	margin-bottom: clamp(70px, 9.3333333333vw, 140px);
}

.mL-140 {
	margin-left: clamp(70px, 9.3333333333vw, 140px);
}

.mR-140 {
	margin-right: clamp(70px, 9.3333333333vw, 140px);
}

.mA-150 {
	margin: clamp(75px, 10vw, 150px);
}

.mT-150 {
	margin-top: clamp(75px, 10vw, 150px);
}

.mB-150 {
	margin-bottom: clamp(75px, 10vw, 150px);
}

.mL-150 {
	margin-left: clamp(75px, 10vw, 150px);
}

.mR-150 {
	margin-right: clamp(75px, 10vw, 150px);
}

.mA-160 {
	margin: clamp(80px, 10.6666666667vw, 160px);
}

.mT-160 {
	margin-top: clamp(80px, 10.6666666667vw, 160px);
}

.mB-160 {
	margin-bottom: clamp(80px, 10.6666666667vw, 160px);
}

.mL-160 {
	margin-left: clamp(80px, 10.6666666667vw, 160px);
}

.mR-160 {
	margin-right: clamp(80px, 10.6666666667vw, 160px);
}

.mA-170 {
	margin: clamp(85px, 11.3333333333vw, 170px);
}

.mT-170 {
	margin-top: clamp(85px, 11.3333333333vw, 170px);
}

.mB-170 {
	margin-bottom: clamp(85px, 11.3333333333vw, 170px);
}

.mL-170 {
	margin-left: clamp(85px, 11.3333333333vw, 170px);
}

.mR-170 {
	margin-right: clamp(85px, 11.3333333333vw, 170px);
}

.mA-180 {
	margin: clamp(90px, 12vw, 180px);
}

.mT-180 {
	margin-top: clamp(90px, 12vw, 180px);
}

.mB-180 {
	margin-bottom: clamp(90px, 12vw, 180px);
}

.mL-180 {
	margin-left: clamp(90px, 12vw, 180px);
}

.mR-180 {
	margin-right: clamp(90px, 12vw, 180px);
}

.mA-190 {
	margin: clamp(95px, 12.6666666667vw, 190px);
}

.mT-190 {
	margin-top: clamp(95px, 12.6666666667vw, 190px);
}

.mB-190 {
	margin-bottom: clamp(95px, 12.6666666667vw, 190px);
}

.mL-190 {
	margin-left: clamp(95px, 12.6666666667vw, 190px);
}

.mR-190 {
	margin-right: clamp(95px, 12.6666666667vw, 190px);
}

.mA-200 {
	margin: clamp(100px, 13.3333333333vw, 200px);
}

.mT-200 {
	margin-top: clamp(100px, 13.3333333333vw, 200px);
}

.mB-200 {
	margin-bottom: clamp(100px, 13.3333333333vw, 200px);
}

.mL-200 {
	margin-left: clamp(100px, 13.3333333333vw, 200px);
}

.mR-200 {
	margin-right: clamp(100px, 13.3333333333vw, 200px);
}

/*-------SP-------*/
@media screen and (max-width: 768px) {
	.mAsp-10 {
		margin: 10px;
	}

	.mTsp-10 {
		margin-top: 10px;
	}

	.mBsp-10 {
		margin-bottom: 10px;
	}

	.mLsp-10 {
		margin-left: 10px;
	}

	.mRsp-10 {
		margin-right: 10px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-20 {
		margin: 20px;
	}

	.mTsp-20 {
		margin-top: 20px;
	}

	.mBsp-20 {
		margin-bottom: 20px;
	}

	.mLsp-20 {
		margin-left: 20px;
	}

	.mRsp-20 {
		margin-right: 20px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-30 {
		margin: 30px;
	}

	.mTsp-30 {
		margin-top: 30px;
	}

	.mBsp-30 {
		margin-bottom: 30px;
	}

	.mLsp-30 {
		margin-left: 30px;
	}

	.mRsp-30 {
		margin-right: 30px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-40 {
		margin: 40px;
	}

	.mTsp-40 {
		margin-top: 40px;
	}

	.mBsp-40 {
		margin-bottom: 40px;
	}

	.mLsp-40 {
		margin-left: 40px;
	}

	.mRsp-40 {
		margin-right: 40px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-50 {
		margin: 50px;
	}

	.mTsp-50 {
		margin-top: 50px;
	}

	.mBsp-50 {
		margin-bottom: 50px;
	}

	.mLsp-50 {
		margin-left: 50px;
	}

	.mRsp-50 {
		margin-right: 50px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-60 {
		margin: 60px;
	}

	.mTsp-60 {
		margin-top: 60px;
	}

	.mBsp-60 {
		margin-bottom: 60px;
	}

	.mLsp-60 {
		margin-left: 60px;
	}

	.mRsp-60 {
		margin-right: 60px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-70 {
		margin: 70px;
	}

	.mTsp-70 {
		margin-top: 70px;
	}

	.mBsp-70 {
		margin-bottom: 70px;
	}

	.mLsp-70 {
		margin-left: 70px;
	}

	.mRsp-70 {
		margin-right: 70px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-80 {
		margin: 80px;
	}

	.mTsp-80 {
		margin-top: 80px;
	}

	.mBsp-80 {
		margin-bottom: 80px;
	}

	.mLsp-80 {
		margin-left: 80px;
	}

	.mRsp-80 {
		margin-right: 80px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-90 {
		margin: 90px;
	}

	.mTsp-90 {
		margin-top: 90px;
	}

	.mBsp-90 {
		margin-bottom: 90px;
	}

	.mLsp-90 {
		margin-left: 90px;
	}

	.mRsp-90 {
		margin-right: 90px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-100 {
		margin: 100px;
	}

	.mTsp-100 {
		margin-top: 100px;
	}

	.mBsp-100 {
		margin-bottom: 100px;
	}

	.mLsp-100 {
		margin-left: 100px;
	}

	.mRsp-100 {
		margin-right: 100px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-110 {
		margin: 110px;
	}

	.mTsp-110 {
		margin-top: 110px;
	}

	.mBsp-110 {
		margin-bottom: 110px;
	}

	.mLsp-110 {
		margin-left: 110px;
	}

	.mRsp-110 {
		margin-right: 110px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-120 {
		margin: 120px;
	}

	.mTsp-120 {
		margin-top: 120px;
	}

	.mBsp-120 {
		margin-bottom: 120px;
	}

	.mLsp-120 {
		margin-left: 120px;
	}

	.mRsp-120 {
		margin-right: 120px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-130 {
		margin: 130px;
	}

	.mTsp-130 {
		margin-top: 130px;
	}

	.mBsp-130 {
		margin-bottom: 130px;
	}

	.mLsp-130 {
		margin-left: 130px;
	}

	.mRsp-130 {
		margin-right: 130px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-140 {
		margin: 140px;
	}

	.mTsp-140 {
		margin-top: 140px;
	}

	.mBsp-140 {
		margin-bottom: 140px;
	}

	.mLsp-140 {
		margin-left: 140px;
	}

	.mRsp-140 {
		margin-right: 140px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-150 {
		margin: 150px;
	}

	.mTsp-150 {
		margin-top: 150px;
	}

	.mBsp-150 {
		margin-bottom: 150px;
	}

	.mLsp-150 {
		margin-left: 150px;
	}

	.mRsp-150 {
		margin-right: 150px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-160 {
		margin: 160px;
	}

	.mTsp-160 {
		margin-top: 160px;
	}

	.mBsp-160 {
		margin-bottom: 160px;
	}

	.mLsp-160 {
		margin-left: 160px;
	}

	.mRsp-160 {
		margin-right: 160px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-170 {
		margin: 170px;
	}

	.mTsp-170 {
		margin-top: 170px;
	}

	.mBsp-170 {
		margin-bottom: 170px;
	}

	.mLsp-170 {
		margin-left: 170px;
	}

	.mRsp-170 {
		margin-right: 170px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-180 {
		margin: 180px;
	}

	.mTsp-180 {
		margin-top: 180px;
	}

	.mBsp-180 {
		margin-bottom: 180px;
	}

	.mLsp-180 {
		margin-left: 180px;
	}

	.mRsp-180 {
		margin-right: 180px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-190 {
		margin: 190px;
	}

	.mTsp-190 {
		margin-top: 190px;
	}

	.mBsp-190 {
		margin-bottom: 190px;
	}

	.mLsp-190 {
		margin-left: 190px;
	}

	.mRsp-190 {
		margin-right: 190px;
	}
}

@media screen and (max-width: 768px) {
	.mAsp-200 {
		margin: 200px;
	}

	.mTsp-200 {
		margin-top: 200px;
	}

	.mBsp-200 {
		margin-bottom: 200px;
	}

	.mLsp-200 {
		margin-left: 200px;
	}

	.mRsp-200 {
		margin-right: 200px;
	}
}

/******************************************************************************
  padding
  ******************************************************************************/
.pA-10 {
	padding: clamp(5px, 0.6666666667vw, 10px);
}

.pT-10 {
	padding-top: clamp(5px, 0.6666666667vw, 10px);
}

.pB-10 {
	padding-bottom: clamp(5px, 0.6666666667vw, 10px);
}

.pL-10 {
	padding-left: clamp(5px, 0.6666666667vw, 10px);
}

.pR-10 {
	padding-right: clamp(5px, 0.6666666667vw, 10px);
}

.pA-20 {
	padding: clamp(10px, 1.3333333333vw, 20px);
}

.pT-20 {
	padding-top: clamp(10px, 1.3333333333vw, 20px);
}

.pB-20 {
	padding-bottom: clamp(10px, 1.3333333333vw, 20px);
}

.pL-20 {
	padding-left: clamp(10px, 1.3333333333vw, 20px);
}

.pR-20 {
	padding-right: clamp(10px, 1.3333333333vw, 20px);
}

.pA-30 {
	padding: clamp(15px, 2vw, 30px);
}

.pT-30 {
	padding-top: clamp(15px, 2vw, 30px);
}

.pB-30 {
	padding-bottom: clamp(15px, 2vw, 30px);
}

.pL-30 {
	padding-left: clamp(15px, 2vw, 30px);
}

.pR-30 {
	padding-right: clamp(15px, 2vw, 30px);
}

.pA-40 {
	padding: clamp(20px, 2.6666666667vw, 40px);
}

.pT-40 {
	padding-top: clamp(20px, 2.6666666667vw, 40px);
}

.pB-40 {
	padding-bottom: clamp(20px, 2.6666666667vw, 40px);
}

.pL-40 {
	padding-left: clamp(20px, 2.6666666667vw, 40px);
}

.pR-40 {
	padding-right: clamp(20px, 2.6666666667vw, 40px);
}

.pA-50 {
	padding: clamp(25px, 3.3333333333vw, 50px);
}

.pT-50 {
	padding-top: clamp(25px, 3.3333333333vw, 50px);
}

.pB-50 {
	padding-bottom: clamp(25px, 3.3333333333vw, 50px);
}

.pL-50 {
	padding-left: clamp(25px, 3.3333333333vw, 50px);
}

.pR-50 {
	padding-right: clamp(25px, 3.3333333333vw, 50px);
}

.pA-60 {
	padding: clamp(30px, 4vw, 60px);
}

.pT-60 {
	padding-top: clamp(30px, 4vw, 60px);
}

.pB-60 {
	padding-bottom: clamp(30px, 4vw, 60px);
}

.pL-60 {
	padding-left: clamp(30px, 4vw, 60px);
}

.pR-60 {
	padding-right: clamp(30px, 4vw, 60px);
}

.pA-70 {
	padding: clamp(35px, 4.6666666667vw, 70px);
}

.pT-70 {
	padding-top: clamp(35px, 4.6666666667vw, 70px);
}

.pB-70 {
	padding-bottom: clamp(35px, 4.6666666667vw, 70px);
}

.pL-70 {
	padding-left: clamp(35px, 4.6666666667vw, 70px);
}

.pR-70 {
	padding-right: clamp(35px, 4.6666666667vw, 70px);
}

.pA-80 {
	padding: clamp(40px, 5.3333333333vw, 80px);
}

.pT-80 {
	padding-top: clamp(40px, 5.3333333333vw, 80px);
}

.pB-80 {
	padding-bottom: clamp(40px, 5.3333333333vw, 80px);
}

.pL-80 {
	padding-left: clamp(40px, 5.3333333333vw, 80px);
}

.pR-80 {
	padding-right: clamp(40px, 5.3333333333vw, 80px);
}

.pA-90 {
	padding: clamp(45px, 6vw, 90px);
}

.pT-90 {
	padding-top: clamp(45px, 6vw, 90px);
}

.pB-90 {
	padding-bottom: clamp(45px, 6vw, 90px);
}

.pL-90 {
	padding-left: clamp(45px, 6vw, 90px);
}

.pR-90 {
	padding-right: clamp(45px, 6vw, 90px);
}

.pA-100 {
	padding: clamp(50px, 6.6666666667vw, 100px);
}

.pT-100 {
	padding-top: clamp(50px, 6.6666666667vw, 100px);
}

.pB-100 {
	padding-bottom: clamp(50px, 6.6666666667vw, 100px);
}

.pL-100 {
	padding-left: clamp(50px, 6.6666666667vw, 100px);
}

.pR-100 {
	padding-right: clamp(50px, 6.6666666667vw, 100px);
}

.pA-110 {
	padding: clamp(55px, 7.3333333333vw, 110px);
}

.pT-110 {
	padding-top: clamp(55px, 7.3333333333vw, 110px);
}

.pB-110 {
	padding-bottom: clamp(55px, 7.3333333333vw, 110px);
}

.pL-110 {
	padding-left: clamp(55px, 7.3333333333vw, 110px);
}

.pR-110 {
	padding-right: clamp(55px, 7.3333333333vw, 110px);
}

.pA-120 {
	padding: clamp(60px, 8vw, 120px);
}

.pT-120 {
	padding-top: clamp(60px, 8vw, 120px);
}

.pB-120 {
	padding-bottom: clamp(60px, 8vw, 120px);
}

.pL-120 {
	padding-left: clamp(60px, 8vw, 120px);
}

.pR-120 {
	padding-right: clamp(60px, 8vw, 120px);
}

.pA-130 {
	padding: clamp(65px, 8.6666666667vw, 130px);
}

.pT-130 {
	padding-top: clamp(65px, 8.6666666667vw, 130px);
}

.pB-130 {
	padding-bottom: clamp(65px, 8.6666666667vw, 130px);
}

.pL-130 {
	padding-left: clamp(65px, 8.6666666667vw, 130px);
}

.pR-130 {
	padding-right: clamp(65px, 8.6666666667vw, 130px);
}

.pA-140 {
	padding: clamp(70px, 9.3333333333vw, 140px);
}

.pT-140 {
	padding-top: clamp(70px, 9.3333333333vw, 140px);
}

.pB-140 {
	padding-bottom: clamp(70px, 9.3333333333vw, 140px);
}

.pL-140 {
	padding-left: clamp(70px, 9.3333333333vw, 140px);
}

.pR-140 {
	padding-right: clamp(70px, 9.3333333333vw, 140px);
}

.pA-150 {
	padding: clamp(75px, 10vw, 150px);
}

.pT-150 {
	padding-top: clamp(75px, 10vw, 150px);
}

.pB-150 {
	padding-bottom: clamp(75px, 10vw, 150px);
}

.pL-150 {
	padding-left: clamp(75px, 10vw, 150px);
}

.pR-150 {
	padding-right: clamp(75px, 10vw, 150px);
}

.pA-160 {
	padding: clamp(80px, 10.6666666667vw, 160px);
}

.pT-160 {
	padding-top: clamp(80px, 10.6666666667vw, 160px);
}

.pB-160 {
	padding-bottom: clamp(80px, 10.6666666667vw, 160px);
}

.pL-160 {
	padding-left: clamp(80px, 10.6666666667vw, 160px);
}

.pR-160 {
	padding-right: clamp(80px, 10.6666666667vw, 160px);
}

.pA-170 {
	padding: clamp(85px, 11.3333333333vw, 170px);
}

.pT-170 {
	padding-top: clamp(85px, 11.3333333333vw, 170px);
}

.pB-170 {
	padding-bottom: clamp(85px, 11.3333333333vw, 170px);
}

.pL-170 {
	padding-left: clamp(85px, 11.3333333333vw, 170px);
}

.pR-170 {
	padding-right: clamp(85px, 11.3333333333vw, 170px);
}

.pA-180 {
	padding: clamp(90px, 12vw, 180px);
}

.pT-180 {
	padding-top: clamp(90px, 12vw, 180px);
}

.pB-180 {
	padding-bottom: clamp(90px, 12vw, 180px);
}

.pL-180 {
	padding-left: clamp(90px, 12vw, 180px);
}

.pR-180 {
	padding-right: clamp(90px, 12vw, 180px);
}

.pA-190 {
	padding: clamp(95px, 12.6666666667vw, 190px);
}

.pT-190 {
	padding-top: clamp(95px, 12.6666666667vw, 190px);
}

.pB-190 {
	padding-bottom: clamp(95px, 12.6666666667vw, 190px);
}

.pL-190 {
	padding-left: clamp(95px, 12.6666666667vw, 190px);
}

.pR-190 {
	padding-right: clamp(95px, 12.6666666667vw, 190px);
}

.pA-200 {
	padding: clamp(100px, 13.3333333333vw, 200px);
}

.pT-200 {
	padding-top: clamp(100px, 13.3333333333vw, 200px);
}

.pB-200 {
	padding-bottom: clamp(100px, 13.3333333333vw, 200px);
}

.pL-200 {
	padding-left: clamp(100px, 13.3333333333vw, 200px);
}

.pR-200 {
	padding-right: clamp(100px, 13.3333333333vw, 200px);
}

/*-------SP-------*/
@media screen and (max-width: 768px) {
	.pAsp-10 {
		padding: 10px;
	}

	.pTsp-10 {
		padding-top: 10px;
	}

	.pBsp-10 {
		padding-bottom: 10px;
	}

	.pLsp-10 {
		padding-left: 10px;
	}

	.pRsp-10 {
		padding-right: 10px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-20 {
		padding: 20px;
	}

	.pTsp-20 {
		padding-top: 20px;
	}

	.pBsp-20 {
		padding-bottom: 20px;
	}

	.pLsp-20 {
		padding-left: 20px;
	}

	.pRsp-20 {
		padding-right: 20px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-30 {
		padding: 30px;
	}

	.pTsp-30 {
		padding-top: 30px;
	}

	.pBsp-30 {
		padding-bottom: 30px;
	}

	.pLsp-30 {
		padding-left: 30px;
	}

	.pRsp-30 {
		padding-right: 30px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-40 {
		padding: 40px;
	}

	.pTsp-40 {
		padding-top: 40px;
	}

	.pBsp-40 {
		padding-bottom: 40px;
	}

	.pLsp-40 {
		padding-left: 40px;
	}

	.pRsp-40 {
		padding-right: 40px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-50 {
		padding: 50px;
	}

	.pTsp-50 {
		padding-top: 50px;
	}

	.pBsp-50 {
		padding-bottom: 50px;
	}

	.pLsp-50 {
		padding-left: 50px;
	}

	.pRsp-50 {
		padding-right: 50px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-60 {
		padding: 60px;
	}

	.pTsp-60 {
		padding-top: 60px;
	}

	.pBsp-60 {
		padding-bottom: 60px;
	}

	.pLsp-60 {
		padding-left: 60px;
	}

	.pRsp-60 {
		padding-right: 60px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-70 {
		padding: 70px;
	}

	.pTsp-70 {
		padding-top: 70px;
	}

	.pBsp-70 {
		padding-bottom: 70px;
	}

	.pLsp-70 {
		padding-left: 70px;
	}

	.pRsp-70 {
		padding-right: 70px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-80 {
		padding: 80px;
	}

	.pTsp-80 {
		padding-top: 80px;
	}

	.pBsp-80 {
		padding-bottom: 80px;
	}

	.pLsp-80 {
		padding-left: 80px;
	}

	.pRsp-80 {
		padding-right: 80px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-90 {
		padding: 90px;
	}

	.pTsp-90 {
		padding-top: 90px;
	}

	.pBsp-90 {
		padding-bottom: 90px;
	}

	.pLsp-90 {
		padding-left: 90px;
	}

	.pRsp-90 {
		padding-right: 90px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-100 {
		padding: 100px;
	}

	.pTsp-100 {
		padding-top: 100px;
	}

	.pBsp-100 {
		padding-bottom: 100px;
	}

	.pLsp-100 {
		padding-left: 100px;
	}

	.pRsp-100 {
		padding-right: 100px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-110 {
		padding: 110px;
	}

	.pTsp-110 {
		padding-top: 110px;
	}

	.pBsp-110 {
		padding-bottom: 110px;
	}

	.pLsp-110 {
		padding-left: 110px;
	}

	.pRsp-110 {
		padding-right: 110px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-120 {
		padding: 120px;
	}

	.pTsp-120 {
		padding-top: 120px;
	}

	.pBsp-120 {
		padding-bottom: 120px;
	}

	.pLsp-120 {
		padding-left: 120px;
	}

	.pRsp-120 {
		padding-right: 120px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-130 {
		padding: 130px;
	}

	.pTsp-130 {
		padding-top: 130px;
	}

	.pBsp-130 {
		padding-bottom: 130px;
	}

	.pLsp-130 {
		padding-left: 130px;
	}

	.pRsp-130 {
		padding-right: 130px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-140 {
		padding: 140px;
	}

	.pTsp-140 {
		padding-top: 140px;
	}

	.pBsp-140 {
		padding-bottom: 140px;
	}

	.pLsp-140 {
		padding-left: 140px;
	}

	.pRsp-140 {
		padding-right: 140px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-150 {
		padding: 150px;
	}

	.pTsp-150 {
		padding-top: 150px;
	}

	.pBsp-150 {
		padding-bottom: 150px;
	}

	.pLsp-150 {
		padding-left: 150px;
	}

	.pRsp-150 {
		padding-right: 150px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-160 {
		padding: 160px;
	}

	.pTsp-160 {
		padding-top: 160px;
	}

	.pBsp-160 {
		padding-bottom: 160px;
	}

	.pLsp-160 {
		padding-left: 160px;
	}

	.pRsp-160 {
		padding-right: 160px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-170 {
		padding: 170px;
	}

	.pTsp-170 {
		padding-top: 170px;
	}

	.pBsp-170 {
		padding-bottom: 170px;
	}

	.pLsp-170 {
		padding-left: 170px;
	}

	.pRsp-170 {
		padding-right: 170px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-180 {
		padding: 180px;
	}

	.pTsp-180 {
		padding-top: 180px;
	}

	.pBsp-180 {
		padding-bottom: 180px;
	}

	.pLsp-180 {
		padding-left: 180px;
	}

	.pRsp-180 {
		padding-right: 180px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-190 {
		padding: 190px;
	}

	.pTsp-190 {
		padding-top: 190px;
	}

	.pBsp-190 {
		padding-bottom: 190px;
	}

	.pLsp-190 {
		padding-left: 190px;
	}

	.pRsp-190 {
		padding-right: 190px;
	}
}

@media screen and (max-width: 768px) {
	.pAsp-200 {
		padding: 200px;
	}

	.pTsp-200 {
		padding-top: 200px;
	}

	.pBsp-200 {
		padding-bottom: 200px;
	}

	.pLsp-200 {
		padding-left: 200px;
	}

	.pRsp-200 {
		padding-right: 200px;
	}
}

/******************************************************************************
  font-size
  ******************************************************************************/
.fS-2 {
	font-size: clamp(1.6666666667px, 0.1333333333vw, 2px);
}

.fS-4 {
	font-size: clamp(3.3333333333px, 0.2666666667vw, 4px);
}

.fS-6 {
	font-size: clamp(5px, 0.4vw, 6px);
}

.fS-8 {
	font-size: clamp(6.6666666667px, 0.5333333333vw, 8px);
}

.fS-10 {
	font-size: clamp(8.3333333333px, 0.6666666667vw, 10px);
}

.fS-12 {
	font-size: clamp(10px, 0.8vw, 12px);
}

.fS-14 {
	font-size: clamp(11.6666666667px, 0.9333333333vw, 14px);
}

.fS-16 {
	font-size: clamp(13.3333333333px, 1.0666666667vw, 16px);
}

.fS-18 {
	font-size: clamp(15px, 1.2vw, 18px);
}

.fS-20 {
	font-size: clamp(16.6666666667px, 1.3333333333vw, 20px);
}

.fS-22 {
	font-size: clamp(18.3333333333px, 1.4666666667vw, 22px);
}

.fS-24 {
	font-size: clamp(20px, 1.6vw, 24px);
}

.fS-26 {
	font-size: clamp(21.6666666667px, 1.7333333333vw, 26px);
}

.fS-28 {
	font-size: clamp(23.3333333333px, 1.8666666667vw, 28px);
}

.fS-30 {
	font-size: clamp(25px, 2vw, 30px);
}

.fS-32 {
	font-size: clamp(26.6666666667px, 2.1333333333vw, 32px);
}

.fS-34 {
	font-size: clamp(28.3333333333px, 2.2666666667vw, 34px);
}

.fS-36 {
	font-size: clamp(30px, 2.4vw, 36px);
}

.fS-38 {
	font-size: clamp(31.6666666667px, 2.5333333333vw, 38px);
}

.fS-40 {
	font-size: clamp(33.3333333333px, 2.6666666667vw, 40px);
}

.fS-42 {
	font-size: clamp(35px, 2.8vw, 42px);
}

.fS-44 {
	font-size: clamp(36.6666666667px, 2.9333333333vw, 44px);
}

.fS-46 {
	font-size: clamp(38.3333333333px, 3.0666666667vw, 46px);
}

.fS-48 {
	font-size: clamp(40px, 3.2vw, 48px);
}

.fS-50 {
	font-size: clamp(41.6666666667px, 3.3333333333vw, 50px);
}

.fS-52 {
	font-size: clamp(43.3333333333px, 3.4666666667vw, 52px);
}

.fS-54 {
	font-size: clamp(45px, 3.6vw, 54px);
}

.fS-56 {
	font-size: clamp(46.6666666667px, 3.7333333333vw, 56px);
}

.fS-58 {
	font-size: clamp(48.3333333333px, 3.8666666667vw, 58px);
}

.fS-60 {
	font-size: clamp(50px, 4vw, 60px);
}

/*-------SP-------*/
@media screen and (max-width: 768px) {
	.fSsp-2 {
		font-size: 2px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-4 {
		font-size: 4px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-6 {
		font-size: 6px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-8 {
		font-size: 8px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-10 {
		font-size: 10px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-12 {
		font-size: 12px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-14 {
		font-size: 14px;
	}
}

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

@media screen and (max-width: 768px) {
	.fSsp-18 {
		font-size: 18px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-20 {
		font-size: 20px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-22 {
		font-size: 22px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-24 {
		font-size: 24px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-26 {
		font-size: 26px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-28 {
		font-size: 28px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-30 {
		font-size: 30px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-32 {
		font-size: 32px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-34 {
		font-size: 34px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-36 {
		font-size: 36px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-38 {
		font-size: 38px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-40 {
		font-size: 40px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-42 {
		font-size: 42px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-44 {
		font-size: 44px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-46 {
		font-size: 46px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-48 {
		font-size: 48px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-50 {
		font-size: 50px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-52 {
		font-size: 52px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-54 {
		font-size: 54px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-56 {
		font-size: 56px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-58 {
		font-size: 58px;
	}
}

@media screen and (max-width: 768px) {
	.fSsp-60 {
		font-size: 60px;
	}
}

/******************************************************************************
  font-weight
  ******************************************************************************/
.fW-400 {
	font-weight: 400;
}

.fW-500 {
	font-weight: 500;
}

.fW-600 {
	font-weight: 600;
}

.fW-700 {
	font-weight: 700;
}

.fW-800 {
	font-weight: 800;
}

.fW-900 {
	font-weight: 900;
}

/* ===============================================
  text
  =============================================== */
.c-txtC {
	text-align: center;
}

.c-txtL {
	text-align: left;
}

.c-txtR {
	text-align: right;
}

.c-txtJ {
	text-align: justify;
}

.c-txtI {
	font-style: italic;
}

.c-lhS {
	line-height: 1.2;
}

.c-lhM {
	line-height: 1.5;
}

.c-lhL {
	line-height: 1.8;
}

.c-lhLL {
	line-height: 2;
}

.c-txti {
	text-indent: -1em;
	padding-left: 1em;
}

.c-txtiM {
	text-indent: -2em;
	padding-left: 2em;
}

.c-txtiL {
	text-indent: -2.5em;
	padding-left: 2.5em;
}

.c-lsS {
	letter-spacing: -0.02em;
}

.c-lsM {
	letter-spacing: 0.1em;
}

.c-lsL {
	letter-spacing: 0.16em;
}

.c-yuMin {
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.c-oswald {
	font-family: "Oswald", sans-serif;
}

.c-txt-u-line {
	text-decoration: underline;
}

@media (hover: hover) and (pointer: fine) {
	.c-txt-u-line:hover {
		text-decoration: none;
	}
}

.c-txt-uL {
	text-decoration: underline;
}

/******************************************************************************
  etc
  ******************************************************************************/
/*中央揃え*/
.c-center {
	margin-inline: auto;
}

/* ===============================================
  layout overall
  =============================================== */
.innerS,
.innerM,
.innerL {
	margin-inline: auto;
}

.innerL {
	width: min(100%, 1500px);
}

.innerM {
	width: min(92%, 1250px);
}

.innerS {
	width: min(92%, 980px);
}

.wrapper {
	width: 100%;
	position: relative;
}

.wrapper img {
	width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
	-o-object-fit: cover;
	object-fit: cover;
	overflow: hidden;
}

.wrapper :where(img, svg, video, canvas, audio, iframe, embed, object) {
	display: block;
}

/*---------- none ----------*/
@media screen and (min-width: 769px) {
	.pc_none {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.sp_none {
		display: none !important;
	}
}

@media screen and (max-width: 425px) {
	.sp_s_none {
		display: none !important;
	}
}

@media screen and (min-width: 426px) {
	.ss_view {
		display: none !important;
	}
}

/* common */
.buttonList {
	text-align: center;
}

.buttonList a {
	display: block;
	padding: 0.8em;
	border: 2px solid #fff;
	font-size: clamp(13px, 1.33vw, 20px);
}

@media (hover: hover) and (pointer: fine) {
	.buttonList a:hover {
		opacity: 0.75;
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}
}

.buttonListIcon {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	width: 100%;
}

.buttonListIcon::before {
	content: "";
	width: 2em;
	height: 2em;
	display: block;
	margin-right: 0.6em;
}

.buttonListIcon.web::before {
	background: url(../img/icon-web_reserve.svg) no-repeat center center/contain;
}

.buttonListIcon.line::before {
	background: url(../img/icon-line_reserve.svg) no-repeat center center/contain;
}

.buttonListIcon.tel::before {
	background: url(../img/icon-tel_reserve.svg) no-repeat center center/contain;
	margin-right: 0.3em;
}

@media screen and (max-width: 768px) {
	.buttonListIcon.tel::before {
		margin-right: 0;
		width: 1.3em;
	}
}

.button__main {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	background-color: #ff9900;
	border: 2px solid #ff9900;
	border-radius: 5em;
	text-align: center;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	color: #fff;
	font-size: clamp(16px, 1.6vw, 24px);
	font-weight: 700;
	display: block;
	position: inherit;
	height: 100%;
	padding: 1.3em 5.6em;
}

@media screen and (max-width: 768px) {
	.button__main {
		width: min(420px, 100%);
		padding: 1.3em 10% 1.3em 10%;
	}
}

.button__main:hover {
	color: #ff9900;
	background-color: #fff;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.button__main:hover.button__arrow::after {
	background: url(..../img/arrow-orange.svg) no-repeat center center / contain;
}

.button__main-blue {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	background-color: #182a52;
	border-radius: 5em;
	text-align: center;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	color: #fff;
	font-size: clamp(16px, 1.6vw, 24px);
	font-weight: 700;
	display: block;
	position: relative;
	height: 100%;
	padding: 1.3em 5.6em;
	overflow: hidden;
	transition: 0.2s ease-in-out;

}

@media screen and (max-width: 768px) {
	.button__main-blue {
		width: min(420px, 100%);
		padding: 1.3em 10% 1.3em 5%;
	}
}

.button__main-blue::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	background-color: #999999;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
	.button__main-blue:hover::before {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		transition: 0.2s ease-in-out;
	}
}

.button__main-light-blue {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-inline: auto;
	background-color: #0099ff;
	border-radius: 5em;
	text-align: center;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	color: #fff;
	font-size: clamp(16px, 1.6vw, 24px);
	font-weight: 700;
	display: block;
	position: relative;
	height: 100%;
	padding: 1.3em 5.6em;
	overflow: hidden;
	transition: 0.2s ease-in-out;

}

@media screen and (max-width: 768px) {
	.button__main-light-blue {
		width: min(420px, 100%);
		padding: 1.3em 10% 1.3em 5%;
	}
}

.button__main-light-blue::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	background-color: #999999;
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
	.button__main-light-blue:hover::before {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);
		transition: 0.2s ease-in-out;
	}
}

.button__main-blue-txt {
	position: relative;
	z-index: 1;
}

.button__light-blue {
	display: flex;
	color: #fff;
	font-weight: 600;
	background-color: #0099ff;
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	border-radius: 1.2em;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 2.3em;
	line-height: 1.4em;
}

.button__white {
	display: flex;
	color: #182a52;
	font-weight: 600;
	background-color: #fff;
	padding-left: 1em;
	padding-right: 1em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	border-radius: 1.2em;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 2.3em;
	line-height: 1.4em;
}

.button__gradation {
	background-color: #09f;
	box-shadow: clamp(5px, .67vw, 10px) clamp(5px, .67vw, 10px) 0px 0px rgba(0, 0, 0, .15);
	text-align: center;
	position: relative;
	overflow: hidden;
	max-width: 720px;
}

.button__gradation::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	background-color: #999;
	transform: translateX(-100%);
	transition: .2s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
	.button__gradation:hover::before {
		transform: translateX(0);
		transition: all .2s ease-in-out;
	}
}

.button__gradation>* {
	padding: clamp(20px, 4vw, 55px) 5%;
	background: url(../img/button-gra_bg.png) no-repeat left center / contain;
}

.button__gradation-a {
	color: #fff;
	font-size: clamp(16px, 1.6vw, 24px);
	font-weight: 700;
	display: block;
	transition: .2s ease-in-out;
	position: inherit;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.button__arrow {
	position: relative;
}

.button__arrow::after {
	content: "";
	display: block;
	width: 30px;
	height: 100%;
	background: url(../img/arrow-white.svg) no-repeat center center/contain;
	position: absolute;
	top: 48%;
	-webkit-transform: translate(0, -52%);
	transform: translate(0, -52%);
	right: 1.2em;
	-webkit-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
}

.button__arrow-move::after {
	animation: arrow-move 1.2s linear infinite;
}

@media screen and (max-width: 768px) {
	.button__arrow-move::after {
		animation: move-arrowSP 1.2s linear infinite;
	}
}

@keyframes arrow-move {
	0% {
		right: 1.6em;
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	80% {
		opacity: 1;
	}

	100% {
		right: 0.6em;
		opacity: 0.8;
	}
}

@keyframes move-arrowSP {
	0% {
		right: 1.2em;
		opacity: 0;
	}

	30% {
		opacity: 1;
	}

	80% {
		opacity: 1;
	}

	100% {
		right: 0.5em;
		opacity: 0.8;
	}
}

@media screen and (max-width: 768px) {
	.button__arrow::after {
		width: 20px;
	}
}


/* ===============================================
header
=============================================== */

.header__top-reserveArea {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	height: 100%;
}

.header__top-reserveArea li:nth-child(4) {
	margin-left: 1px;
}

.header__top-reserveArea.h-sp-fixed {
	display: none;
	grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 768px) {
	.header__top-reserveArea.h-sp-fixed {
		display: grid;
	}
}

@media screen and (max-width: 768px) {
	.header__top-reserveArea.h-sp-fixed .header__top-reserveLink {
		padding: 0.8em 0.8em 0.8em min(10vw, 2.5em);
		line-height: 1.2;
		background-position: 20% center;
	}
}

.header__top-reserveArea.h-sp-fixed .header__top-reserveLink.web {
	background-size: 2em;
}

.header__top-reserveArea.h-sp-fixed .header__top-reserveLink.line {
	background-size: 2em;
}

.header__top-reserveArea.h-sp-fixed .header__top-reserveLink.tel {
	background-size: 1.5em;
}

@media screen and (max-width: 425px) {
	.header__top-reserveArea.h-sp-fixed .header__top-reserveLink {
		padding: 0.8em 0.5em 0.8em 2em;
	}

	.header__top-reserveArea.h-sp-fixed .header__top-reserveLink.web {
		background-size: 1.5em;
		background-position: 9% center;
	}

	.header__top-reserveArea.h-sp-fixed .header__top-reserveLink.line {
		background-size: 1.5em;
		background-position: 15% center;
	}

	.header__top-reserveArea.h-sp-fixed .header__top-reserveLink.tel {
		background-size: 1.2em;
		background-position: 12% center;
	}
}

@media screen and (max-width: 768px) {
	.header__top-reserveArea.header__top-bar {
		grid-template-columns: 1fr;
		height: 100%;
	}
}

@media screen and (max-width: 768px) {
	.header__top-reserveArea.header__top-bar li:not(:last-child) {
		display: none;
	}
}

.header__top-reserveArea-spFixed {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 5;
}

.header__top-reserveArea-spFixed.h-button-hidden {
	visibility: hidden;
	opacity: 0;
}

.header__top-reserveLink {
	display: grid;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-line-pack: center;
	align-content: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 0.3em;
	width: 100%;
	height: 100%;
	text-align: center;
}

@media (hover: hover) and (pointer: fine) {
	.header__top-reserveLink:hover {
		opacity: 0.75;
		-webkit-transition: opacity 0.2s ease-in-out;
		transition: opacity 0.2s ease-in-out;
	}
}

.header__top-reserveLink:not(.menu) {
	padding: 3.2em 0.8em 0.3em;
}

.header__top-reserveLink.web {
	background: url(../img/icon-web_reserve.svg) no-repeat center 0.7em/2.4em #0099ff;
}

.header__top-reserveLink.line {
	background: url(../img/icon-line_reserve.svg) no-repeat center 0.6em/2.5em #66cc66;
}

.header__top-reserveLink.tel {
	background: url(../img/icon-tel_reserve.svg) no-repeat center 0.3em/2em #2253b2;
}

.header__top-reserveLink.menu {
	background-color: #182a52;
	position: relative;
	z-index: 50;
}

@media screen and (max-width: 768px) {
	.header__top-reserveLink.menu {
		padding-top: 0.3em;
	}
}

@media screen and (max-width: 425px) {
	.header__top-reserveLink.menu {
		height: 4.125em;
	}
}

.header__top-reserveLink.menu span {
	display: block;
	-webkit-transition: all 0.4s;
	transition: all 0.4s;
}

.header__top-reserveLink.menu[aria-expanded=true] {
	background-color: #666666;
}

.header__top-reserveLink.menu[aria-expanded=true] span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}

@media screen and (max-width: 768px) {
	.header__top-reserveLink.menu[aria-expanded=true] span:nth-of-type(1) {
		-webkit-transform: translateY(8px) rotate(-45deg);
		transform: translateY(8px) rotate(-45deg);
	}
}

.header__top-reserveLink.menu[aria-expanded=true] span:nth-of-type(2) {
	opacity: 0;
}

.header__top-reserveLink.menu[aria-expanded=true] span:nth-of-type(3) {
	-webkit-transform: translateY(-9px) rotate(45deg);
	transform: translateY(-9px) rotate(45deg);
}

@media screen and (max-width: 768px) {
	.header__top-reserveLink.menu[aria-expanded=true] span:nth-of-type(3) {
		-webkit-transform: translateY(-7px) rotate(45deg);
		transform: translateY(-7px) rotate(45deg);
	}
}

.header__top-reserveIcon {
	display: block;
	width: 80%;
	margin-inline: auto;
}

.header__top-reserveText {
	font-size: clamp(11px, 0.42vw, 16px);
	font-weight: 700;
	color: #fff;
}

.header__top-menuLine {
	height: 0.3em;
	background-color: #fff;
}

@media screen and (max-width: 768px) {
	.header__top-menuLine {
		height: 0.15em;
	}
}

.header__top-menuText {
	font-size: clamp(14px, 1.07vw, 16px);
	font-weight: 700;
	color: #fff;
	font-family: "Oswald", sans-serif;
}


/* ===============================================
nav
=============================================== */
.modal__linkArea-line .modal__linkList-topText {
	color: #66cc66;
}

.modal__linkArea-line .modal__linkListButton {
	background-color: #66cc66;
}

.modal__linkArea-tel .modal__linkListButton {
	background-color: #182a52;
}

.modal__linkList-topText {
	font-size: clamp(18px, 2.6vw, 20px);
}

.modal__linkList:not(:last-child) {
	border-bottom: 1px dotted #333333;
}

.modal__linkListImage {
	width: min(70%, 260px);
	display: block;
}

.modal__linkListButton {
	font-size: clamp(18px, 2.6vw, 20px);
	font-weight: 700;
	color: #ffffff;
	margin-inline: auto;
	text-align: center;
	padding: 0.8em 0.5em;
	display: block;
	width: min(90%, 300px);
}

.modal-telIcon {
	padding-left: 1.5em;
	background: url(../images/common/icon-tel_reserve.svg) no-repeat left center/contain;
}

.remodal-is-initialized:has(.modal__linkArea) {
	height: min(600px, 68%);
	border-radius: 2em;
}

.remodal-is-initialized:has(.modal__linkArea)::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 20px solid transparent;
	border-left: 20px solid transparent;
	border-top: 40px solid #fff;
	border-bottom: 0;
	position: absolute;
	bottom: -40px;
}

.remodal-is-initialized:has(.modal__linkArea):has(.modal__linkArea-line)::after {
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}

.remodal-is-initialized:has(.modal__linkArea):has(.modal__linkArea-tel)::after {
	right: 10%;
}

.remodal-close {
	top: 10px;
	right: 10px;
}

.modal__linkWrap {
	height: 100%;
	overflow-y: scroll;
	position: relative;
}

.remodal-overlay {
	z-index: 3;
}

.remodal-wrapper {
	z-index: 4;
}

/* ===============================================
  menu
  =============================================== */
.menu__wrap {
	background-color: #182a52;
	width: 100vw;
	height: 100vh;
	min-height: 100vh;
	padding: 3.125em 0 4.75em 0;
	position: relative;
	display: grid;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 2.5em 0;
	z-index: 20;
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
	overflow-x: hidden;
	position: absolute;
	top: 0;
}

.menu__wrap.open {
	position: fixed;
	top: 0;
	left: 0;
	-webkit-transform: translateX(0);
	transform: translateX(0);
	-webkit-transition: -webkit-transform 0.5s;
	transition: -webkit-transform 0.5s;
	transition: transform 0.5s;
	transition: transform 0.5s, -webkit-transform 0.5s;
}

.menu__wrap a,
.menu__wrap .menu__linktext {
	color: #fff;
	font-weight: 700;
}

@media screen and (max-width: 768px) {
	.menu__wrap {
		height: 100svh;
		padding-top: 1em;
		overflow-y: scroll;
	}
}

.menu__linktext {
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.menu__inner {
	margin-inline: auto;
	width: 1420px;
	max-width: 92vw;
	display: grid;
	padding-right: 4%;
	grid-template-columns: 23% 71%;
	gap: 2em 0;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

@media screen and (max-width: 1024px) {
	.menu__inner {
		grid-template-columns: 1fr;
	}
}

@media screen and (max-width: 768px) {
	.menu__inner {
		grid-template-columns: 1fr;
		gap: 1em;
		-ms-flex-line-pack: start;
		align-content: flex-start;
		padding-right: 0;
		height: 100%;
		padding-top: 10vh;
	}
}

.menu__listArea {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: auto 1fr;
	-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: 4em 5%;
}

@media screen and (max-width: 768px) {
	.menu__listArea {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		gap: 0.5em;
	}
}

.menu__buttonListArea {
	display: grid;
	gap: 1em;
}

@media screen and (max-width: 1024px) {
	.menu__buttonListArea {
		grid-template-columns: repeat(4, 1fr);
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
}

.menu__buttonListArea .buttonList a {
	border: none;
}

.menu__buttonListArea .buttonList:has(.web) a {
	background-color: #0099ff;
}

.menu__buttonListArea li:nth-child(2) a {
	background-color: #0099ff;
}

.menu__buttonListArea .buttonList:has(.line) a {
	background-color: #66cc66;
}

.menu__buttonListArea li:nth-child(3) a {
	background-color: #66cc66;
}

.menu__buttonListArea .buttonList:has(.tel) a {
	background-color: #2253b2;
}

.menu__buttonListArea li:nth-child(4) a {
	background-color: #2253b2;
}

@media screen and (max-width: 1024px) {
	.menu__buttonListArea .l-spN {
		display: none;
	}
}

@media screen and (max-width: 768px) {
	.menu__buttonListArea {
		gap: 0.5em 0.2em;
		grid-template-columns: repeat(3, 1fr);
	}

	.menu__buttonListArea .buttonList a {
		padding: 0.8em 0.2em;
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
	}
}

@media screen and (max-width: 425px) {
	.menu__buttonListArea .buttonList a {
		font-size: 12px;
	}
}

@media screen and (max-width: 320px) {
	.menu__buttonListArea .buttonList a {
		font-size: 10px;
	}
}

.menu__logo {
	margin-bottom: 1.5em;
}

@media screen and (max-width: 1024px) {
	.menu__logo {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 768px) {
	.menu__logo {
		grid-column: 1/4;
	}
}

.menu__logoLink {
	background: url(../img/menu_logo.png) no-repeat 0 center/contain;
	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;
	width: 100%;
	font-family: "Oswald", sans-serif;
	font-size: clamp(18px, 1.47vw, 22px);
	text-align: center;
	padding-left: 8.5vw;
	height: 10vw;
}

@media screen and (max-width: 768px) {
	.menu__logoLink {
		width: -webkit-fit-content;
		width: -moz-fit-content;
		width: fit-content;
		padding-left: 17vw;
		height: 15vw;
	}
}

.menu__treatmentListArea,
.menu__clinicListArea,
.menu__otherListArea {
	display: grid;
	gap: clamp(12px, 1.33vw, 20px);
}

.menu__treatmentListArea>.title,
.menu__clinicListArea>.title,
.menu__otherListArea>.title {
	font-size: clamp(18px, 1.47vw, 22px);
}

.menu__treatmentListArea>.title .button__arrow::after,
.menu__clinicListArea>.title .button__arrow::after,
.menu__otherListArea>.title .button__arrow::after {
	right: -2.5em;
}

.menu__treatmentListArea>.item,
.menu__clinicListArea>.item,
.menu__otherListArea>.item {
	font-size: clamp(16px, 1.2vw, 18px);
}

.menu__treatmentListArea>.item a,
.menu__clinicListArea>.item a,
.menu__otherListArea>.item a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	gap: 0.4em;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
}

.menu__treatmentListArea>.item a::before,
.menu__clinicListArea>.item a::before,
.menu__otherListArea>.item a::before {
	content: "";
	display: block;
	width: 4px;
	height: 0.75em;
	background-color: #0099ff;
}

.menu__treatmentListArea>.women a::before,
.menu__clinicListArea>.women a::before,
.menu__otherListArea>.women a::before {
	background-color: #ed8a76;
}

@media screen and (max-width: 768px) {
	.menu__otherListArea {
		grid-template-columns: repeat(2, 1fr);
		margin-top: 1em;
	}
}

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

	.menu__treatmentListArea,
	.menu__listAreaOpen {
		display: none;
		pointer-events: none;
		padding: 1em;
	}
}

.menu__treatmentListArea.open-link,
.menu__listAreaOpen.open-link {
	display: block;
	pointer-events: initial;
}

.menu__boxListArea {
	margin-inline: auto;
	width: min(92%, 1780px);
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 2%;
}

.menu__boxListArea li {
	width: 18%;
}

.menu__listWrap:nth-child(1),
.menu__listWrap:nth-child(2) {
	grid-row: 1/3;
}

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

	.menu__listWrap:nth-child(1),
	.menu__listWrap:nth-child(2) {
		grid-row: auto;
	}
}

.menu__listWrap:nth-child(3) {
	margin-bottom: 1.5em;
}

@media screen and (max-width: 768px) {
	.menu__listWrap:nth-child(3) {
		margin-bottom: 0;
	}
}

@media screen and (max-width: 768px) {
	.menu__listWrap {
		border: 1px solid #fff;
	}
}

.menu__listTitle {
	font-size: clamp(16px, 1.47vw, 22px);
	color: #fff;
	font-weight: 700;
	position: relative;
}

.menu__listTitle button {
	padding: 1em;
	display: block;
	text-align: left;
	width: 100%;
}

@media screen and (max-width: 320px) {
	.menu__listTitle button {
		padding-right: 2em;
	}
}

.menu__listTitle::before,
.menu__listTitle::after {
	content: "";
	display: block;
	width: 1.5em;
	height: 2px;
	background-color: #fff;
	position: absolute;
	top: 50%;
	right: 1em;
	z-index: -1;
}

.menu__listTitle::before {
	-webkit-transform: translate(0, -50%);
	transform: translate(0, -50%);
}

.menu__listTitle::after {
	-webkit-transform: translate(0, -50%) rotate(90deg);
	transform: translate(0, -50%) rotate(90deg);
	-webkit-transition: -webkit-transform linear 0.3s;
	transition: -webkit-transform linear 0.3s;
	transition: transform linear 0.3s;
	transition: transform linear 0.3s, -webkit-transform linear 0.3s;
}

.menu__listTitle.close-buttom::after {
	-webkit-transform: translate(0, -50%) rotate(0);
	transform: translate(0, -50%) rotate(0);
	-webkit-transition: -webkit-transform linear 0.3s;
	transition: -webkit-transform linear 0.3s;
	transition: transform linear 0.3s;
	transition: transform linear 0.3s, -webkit-transform linear 0.3s;
}

.menu__listTitle a {
	display: block;
}

.menu__boxList {
	display: block;
	height: 100%;
	padding: 1em;
	background-color: #2f53ac;
}

@media screen and (max-width: 768px) {
	.menu__boxList {
		padding: 0.5em;
	}
}

.menu__boxListImageArea {
	display: grid;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: 1em;
	height: 100%;
}

.menu__boxListTitle {
	font-size: clamp(12px, 1.07vw, 16px);
	text-align: center;
	display: grid;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 100%;
}

.menu__closeButtonWrap {
	position: absolute;
	top: 0;
	right: 0;
}

.menu__closeButton {
	display: block;
	width: clamp(60px, 8.4vw, 100px);
	height: clamp(60px, 8.4vw, 100px);
	background-color: #666666;
}

.menu__closeButtonLine {
	display: inline-block;
	vertical-align: middle;
	background-color: #fff;
	line-height: 1;
	width: 2.8em;
	height: 0.3em;
	position: relative;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu__closeButtonLine::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: inherit;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}

.menu__treatmentButton .menu__treatmentButtonText {
	display: block;
	padding: 0 3.5em 0 1em;
	font-size: clamp(12px, 1.33vw, 20px);
	background-color: #fff;
	color: #182a52;
	text-align: center;
	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;
	min-height: clamp(60px, 5.47vw, 82px);
}

@media screen and (max-width: 768px) {
	.menu__treatmentButton .menu__treatmentButtonText {
		padding: 1.2em 0.2em;
	}
}

@media screen and (max-width: 425px) {
	.menu__treatmentButton .menu__treatmentButtonText {
		padding-right: 1.8em;
	}
}

@media screen and (max-width: 320px) {
	.menu__treatmentButton .menu__treatmentButtonText {
		font-size: 14px;
	}
}

.menu__treatmentButton .menu__treatmentButtonText.button__arrow::after {
	background-image: url(../img/arrow-blue.svg);
}

@media screen and (max-width: 425px) {
	.menu__treatmentButton .menu__treatmentButtonText.button__arrow::after {
		right: 4%;
	}
}

.menu__pcTreatmentButtonArea {
	display: grid;
	gap: clamp(12px, 1.33vw, 20px);
}

/*-----------SPハンバーガー-----------*/
.menu__spTreatmentButtonArea {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 0.2em;
}

@media screen and (max-width: 320px) {
	.menu__spTreatmentButtonArea {
		grid-template-columns: 1fr;
	}
}

.menu__pcLinkButton {
	display: block;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	padding-right: 2.8em;
	font-size: clamp(16px, 1.2vw, 18px);
	line-height: 1.5;
}

.menu__pcLinkButton.button__arrow::after {
	right: 0;
}

/* ===============================================
footer
=============================================== */
.footer__copyRight {
	background-color: #333333;
	padding: 0.5em 0;
}

.footer__copyRight-text {
	text-align: center;
	font-family: "Oswald", sans-serif;
	color: #fff;
	font-weight: 200;
	font-size: clamp(14px, 1.07vw, 16px);
}


/* page */
.cost__list-group:not(:last-child) {
	margin-bottom: 2em;
}

.cost__list-group:not(:last-child) {
	margin-bottom: 2em;
}

.cost__list-item:not(:last-child) {
	margin-bottom: 0.8em;
}

.cost__list-line {
	display: grid;
	grid-template-columns: 1fr 17% 34%;
	gap: 5px;
}

.cost__list-line>* {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-start;
	padding-top: 0.8em;
	padding-bottom: 0.8em;
	padding-left: 1.2em;
	padding-right: 1.2em;
	font-weight: 700;
	color: #666666;
}

.cost__list-line-blue>* {
	background-color: #f2faff;
}

.cost__list-line-gray>* {
	background-color: #f2f2f2;
}

.cost__list-line-ttl {
	font-size: clamp(16px, 1.6vw, 24px);
}

.cost__list-line-ttl-note {
	font-size: clamp(14px, 1.07vw, 16px);
	font-weight: 500;
	line-height: 1.5;
	text-indent: -1em;
	padding-left: 1em;
}

.cost__list-line-ttl-sub {
	font-weight: 400;
	padding-left: 2em;
}

.cost__list-line-amount {
	font-size: clamp(14px, 1.33vw, 20px);
}

.cost__list-line-money {
	align-items: baseline;
	justify-content: flex-end;
	font-size: clamp(14px, 1.07vw, 16px);
}

.cost__list-line-money-num {
	font-size: clamp(20px, 3.33vw, 50px);
	font-family: "Oswald", sans-serif;
}

.cost__list-line-money-yen {
	font-size: clamp(16px, 1.6vw, 24px);
}

.cost__list-note {
	font-size: 14px;
	padding-top: 0.8em;
}

.clinicList-location-wrap {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	gap: clamp(12px, 1.6vw, 24px);
}

@media screen and (max-width:1024px) {
	.clinicList-location-wrap {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media screen and (max-width:768px) {
	.clinicList-location-wrap {
		grid-template-columns: 1fr;
	}
}

.clinicLocationBox {
	border-bottom: clamp(5px, 0.67vw, 10px) solid #182a52;
	border-left: clamp(5px, 0.67vw, 10px) solid #182a52;
	border-right: clamp(5px, 0.67vw, 10px) solid #182a52;
}

.clinicLocation-titleArea {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-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;
}

.clinicLocationBox-titleArea {
	background-color: #182a52;
	padding: 0.5em 0.3em;
}

.clinicLocation-title {
	display: block;
	max-width: 280px;
	width: 90%;
}

.clinicList-clinicGuid .clinicLocation-imageFloor img {
	aspect-ratio: 38 / 21;
}

.clinicLocationBox-detailArea {
	padding: 1em 2.5% 2em;
}

.clinicLocationBox-detailListArea {
	display: grid;
	gap: 0.5em;
	-ms-flex-line-pack: start;
	align-content: flex-start;
}

.clinicLocationBox-detailList {
	display: grid;
	grid-template-columns: 2em 4em 1fr;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	font-size: clamp(14px, 1.07vw, 16px);
}

.clinicLocationBox-detailListIcon {
	width: 2.4em;
	padding-right: 45%;
}

.clinicLocationBox-detailListTitle {
	color: #666666;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.clinicLocationBox-detailListTitle::after {
	content: ":";
	display: block;
	width: 1em;
	height: 100%;
	padding-bottom: 0.2em;
}

.clinicLocationBox-detailListData {
	font-weight: 700;
	line-height: 1.4;
}

.clinicData-tel {
	color: #ff9900;
	font-size: clamp(20px, 1.6vw, 24px);
	font-family: "Oswald", sans-serif;
	display: inline-block;
	margin-top: -0.25em;
	padding-bottom: 0.1em;
}

.clinicLocation-link {
	color: #182a52;
	background-color: #fff;
	padding-left: 1em;
	border-radius: 1.2em;
	text-align: left;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 2.3em;
	opacity: 1;
	-webkit-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}

.clinicLocation-link.mapButton {
	background-color: #182a52;
	color: #fff;
}

.clinicLocation-link {
	grid-column: 3;
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	margin-top: clamp(5px, 1.33vw, 20px);
	margin-bottom: clamp(10px, 1.33vw, 20px);
}

.clinicList-clinicGuid .mapButton {
	margin-bottom: clamp(10px, 1.33vw, 20px);
}

.clinicLocation-link .c-viewMore {
	font-size: clamp(14px, 1vw, 15px);
	font-weight: 700;
	display: inline-block;
}

.clinicLocation-link.mapButton .button__arrow {
	padding-right: 4.5em;
}

.clinicLocation-link.blueButton {
	background-color: #0099ff;
	color: #fff;
}

.clinicLocation-link.blueButton .button__arrow {
	padding-right: 4.8em;
}


/* eremax_trial */
#eremax-trial .ttl-pkg {
	font-size: clamp(32px, 3vw, 60px);
	font-weight: 700;
	text-align: center;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-bottom: 0.4em;
	margin-bottom: clamp(30px, 4vw, 60px);
	justify-content: center;
	position: relative;
	padding-bottom: 1.5em;
}

#eremax-trial .ttl-pkg::after {
	content: "";
	position: absolute;
	background: url(../img/eremax-pkg.png) no-repeat center center / contain;
	width: 1em;
	height: 1.5em;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

#eremax-trial .product__new-img {
	display: block;
	margin-bottom: 10%;
	position: relative;
}

#eremax-trial .product__new-img::after {
	position: absolute;
	content: "";
	background: url(../img/eremax_pkg_light.png) no-repeat center center / contain;
	width: 16%;
	height: 53%;
	right: 5%;
	bottom: -27%;
}

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

	#eremax-trial h1,
	#eremax-trial h1 img,
	#eremax-trial .eremax-banner,
	#eremax-trial .eremax-banner img,
	#eremax-trial .original-img,
	#eremax-trial .original-img img {
		aspect-ratio: 6 / 2;
	}

	#eremax-trial .product__new-img,
	#eremax-trial .product__new-img img {
		aspect-ratio: 7 / 3;
	}
}

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

	#eremax-trial h1,
	#eremax-trial h1 img,
	#eremax-trial .eremax-banner,
	#eremax-trial .eremax-banner img,
	#eremax-trial .original-img,
	#eremax-trial .original-img img {
		aspect-ratio: 7 / 3;
	}

	#eremax-trial .product__new-img,
	#eremax-trial .product__new-img img {
		aspect-ratio: 8 / 4;
	}

	#eremax-trial .original-img,
	#eremax-trial .original-img img {
		aspect-ratio: 5 / 2;
	}
}

.eremax-banner-container {
	position: relative;
}

.eremax-banner-arrow {
	position: absolute;
	display: block;
	width: fit-content;
	padding-right: 3.5em;
	font-family: 'Yu Mincho', 'YuMincho', serif;
	font-size: 1.5vw;
	color: #FFF;
	bottom: 7%;
	left: 50%;
	transform: translateX(-50%);
}

@media screen and (max-width:1024px) {
	.eremax-banner-arrow {
		padding-right: 4em;
		font-size: 1.8vw;
		bottom: 4%;
	}
}

@media screen and (max-width:768px) {
	.eremax-banner-arrow {
		padding-right: 3em;
		font-size: 2.5vw;
	}
}

@media screen and (max-width:425px) {
	.eremax-banner-arrow {
		font-size: 3.5vw;
	}
}

@media screen and (max-width:320px) {
	.eremax-banner-arrow {
		padding-right: 3.2em;
		font-size: 3.8vw;
	}
}

#eremax-trial .eremax-product ul {
	display: flex;
	width: 70%;
	justify-content: center;
	margin: 0 auto;
	gap: 5%;
}

@media screen and (max-width:768px) {
	#eremax-trial .eremax-product ul {
		display: flex;
		width: 100%;
	}
}

#eremax-trial .eremax-product ul li {
	width: 30%;
}

#eremax-trial .product__txt {
	font-size: clamp(16px, 2vw, 30px);
	font-weight: 700;
	text-align: center;
	line-height: 1.6;
	margin-top: 3%;
	margin-bottom: 3%;
}

#eremax-trial .eremax-recommend {
	padding-top: 8.4%;
	padding-bottom: 7%;
}

#eremax-trial .eremax-recommend__wrapper {
	display: block;
	width: fit-content;
	margin-left: 20%;
}

@media screen and (max-width:768px) {
	#eremax-trial .eremax-recommend__wrapper {
		margin-left: 0;
	}
}

#eremax-trial .eremax-recommend__container {
	display: flex;
	align-items: center;
}

@media screen and (max-width:425px) {
	#eremax-trial .eremax-recommend__container {
		display: block;
	}
}

#eremax-trial .eremax-recommend__img {
	display: block;
	width: 25%;
	margin-right: 5%;
}

@media screen and (max-width:768px) {
	#eremax-trial .eremax-recommend__img {
		display: block;
		width: 40%;
		margin-right: 5%;
	}
}

@media screen and (max-width:425px) {
	#eremax-trial .eremax-recommend__img {
		margin: 0 auto;
		margin-bottom: 10%;
	}
}

#eremax-trial .eremax-recommend__container li {
	font-size: clamp(16px, 2.67vw, 28px);
	font-weight: 700;
	position: relative;
	padding-left: 2em;
}

#eremax-trial .eremax-recommend__container li::before {
	content: "";
	background: url(../img/eremax-check.png) no-repeat center center / contain;
	position: absolute;
	width: 1.5em;
	height: 1.5em;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}

#eremax-trial .eremax-recommend__container li:not(:last-of-type) {
	margin-bottom: 25px;
}

#eremax-trial .about {
	background: #e6e6e6;
	padding-top: 5%;
	padding-bottom: 8%;
}

#eremax-trial .about h2 {
	display: block;
	width: 30%;
	margin: 0 auto 6%;
}

#eremax-trial .about li {
	display: block;
	border-radius: 20px;
	overflow: hidden;
	background: #000;
}

#eremax-trial .about li:nth-of-type(1) {
	margin-bottom: 3%;
}

#eremax-trial .about li figure {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

@media screen and (max-width:768px) {
	#eremax-trial .about li figure {
		display: block;
	}
}

#eremax-trial .about li figure figcaption {
	display: block;
	font-size: clamp(16px, 2.67vw, 24px);
	color: #FFF;
	padding: 8% 8% 0 0;
	text-align: justify;
	font-feature-settings: "palt";
	line-height: 1.8;
}

@media screen and (max-width:768px) {
	#eremax-trial .about li figure figcaption {
		padding: 0 3% 3% 3%;
	}
}

#eremax-trial .about li .about-img {
	display: block;
	padding: 8%;
}

@media screen and (max-width:768px) {
	#eremax-trial .about li .about-img {
		padding: 3%;
		width: 70%;
		margin: 0 auto;
	}
}

#eremax-trial .eremax-features {
	display: block;
	background: url(../img/eremax-features-bg.jpg) no-repeat center center / cover;
	padding-top: 6.7%;
	padding-bottom: 10.3%;
}

@media screen and (max-width:425px) {
	#eremax-trial .eremax-features {
		background-position-x: 94%;
	}
}

#eremax-trial .eremax-features-ttl {
	display: block;
	width: 20%;
	margin: 0 auto 6.3%;
}

@media screen and (max-width:768px) {
	#eremax-trial .eremax-features-ttl {
		width: 30%;
	}
}

#eremax-trial .eremax-features ul {
	display: block;
	margin: 0 auto;
	width: fit-content;
}

#eremax-trial .eremax-features ul li {
	font-size: clamp(16px, 2.67vw, 26px);
	font-weight: 700;
	color: #FFF;
}

#eremax-trial .eremax-features ul li:not(:last-of-type) {
	margin-bottom: 3%;
}

#eremax-trial .demonstration .tadalafil {
	display: block;
	background: url(../img/eremax-tadalafil-bg.jpg) no-repeat center center / cover;
	padding-top: 6.3%;
	padding-bottom: 6%;
}

@media screen and (max-width:425px) {
	#eremax-trial .demonstration .tadalafil {
		padding-top: 13%;
		background-color: rgba(255, 255, 255, 0.4);
		background-blend-mode: lighten;
	}
}

#eremax-trial .tadalafil-container {
	display: block;
	width: 70%;
}

@media screen and (max-width:425px) {
	#eremax-trial .tadalafil-container {
		display: block;
		width: 100%;
	}
}

#eremax-trial .tadalafil-ttl {
	font-size: clamp(16px, 2.67vw, 37px);
	font-weight: 700;
	margin-bottom: 3%;
}

@media screen and (max-width:425px) {
	#eremax-trial .tadalafil-ttl {
		text-align: center;
	}
}

#eremax-trial .tadalafil-sub-ttl {
	width: 88%;
	margin-bottom: 5%;
}

@media screen and (max-width:425px) {
	#eremax-trial .tadalafil-sub-ttl {
		width: 100%;
	}
}

#eremax-trial .tadalafil-graph {
	width: 88%;
	margin-bottom: 5%;
}

@media screen and (max-width:425px) {
	#eremax-trial .tadalafil-graph {
		width: 100%;
	}
}


#eremax-trial .tadalafil-txt {
	font-size: clamp(16px, 2.67vw, 24px);
	line-height: 2;
}

#eremax-trial .tongkat-ali {
	display: block;
	background: url(../img/eremax-tongkat-ali-bg.jpg) no-repeat center center / cover;
	padding-bottom: 5.3%;
}

@media screen and (max-width:425px) {
	#eremax-trial .tongkat-ali {
		background-color: rgba(255, 255, 255, 0.4);
		background-blend-mode: lighten;
	}
}

#eremax-trial .tongkat-ali-container {
	display: block;
	width: 57%;
	margin-left: auto;
	margin-right: 0;
}

@media screen and (max-width:425px) {
	#eremax-trial .tongkat-ali-container {
		width: 100%;
		padding-top: 15%;
	}
}

#eremax-trial .tongkat-ali-ttl {
	font-size: clamp(16px, 2.67vw, 37px);
	font-weight: 700;
	margin-bottom: 3%;
}

@media screen and (max-width:425px) {
	#eremax-trial .tongkat-ali-ttl {
		text-align: center;
	}
}

#eremax-trial .tongkat-ali-sub-ttl {
	width: 64%;
	margin-bottom: 5%;
}

@media screen and (max-width:425px) {
	#eremax-trial .tongkat-ali-sub-ttl {
		width: 80%;
		margin: 0 auto 5%;
	}
}

#eremax-trial .tongkat-ali-graph {
	width: 66%;
	margin-bottom: 5%;
	margin-left: 11%;
}

@media screen and (max-width:425px) {
	#eremax-trial .tongkat-ali-graph {
		margin-left: 0;
		width: 100%;
	}
}

#eremax-trial .tongkat-ali-txt {
	font-size: clamp(16px, 2.67vw, 24px);
	line-height: 2;
}

#eremax-trial .slump {
	display: block;
	background: url(../img/eremax-slump-bg.png) no-repeat center center / cover;
	padding-bottom: 20%;
}

@media screen and (max-width:425px) {
	#eremax-trial .slump {
		background: url(../img/eremax-slump-bg-sp.png) no-repeat center center / cover;
		padding-bottom: 32%;
	}
}

#eremax-trial .slump .slump-container {
	background: #FFF;
	border-radius: 20px;
	padding: 5%;
}

#eremax-trial .slump-ttl {
	display: block;
	width: fit-content;
	font-size: clamp(20px, 2.67vw, 40px);
	font-weight: 700;
	margin: 0 auto 5%;
	color: #c20009;
}

#eremax-trial .slump-graph {
	display: block;
	width: 60%;
	margin: 0 auto 5%;
}

@media screen and (max-width:425px) {
	#eremax-trial .slump-graph {
		width: 100%;
	}
}

#eremax-trial .slump-txt {
	font-size: clamp(16px, 2.67vw, 24px);
	line-height: 2;
	margin-bottom: 5%;
}

#eremax-trial .slump ul {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1em 1em;
}

@media screen and (max-width:768px) {
	#eremax-trial .slump ul {
		gap: 0.5em 0.5em;
	}
}

@media screen and (max-width:425px) {
	#eremax-trial .slump ul {
		grid-template-columns: 1fr;
	}
}

#eremax-trial .doctor {
	margin-bottom: clamp(50px, 9.33vw, 109px);
}

#eremax-trial .doctor figure {
	display: block;
	width: 70%;
	margin: 0 auto;
}

@media screen and (max-width:768px) {
	#eremax-trial .doctor figure {
		width: 100%;
	}
}

#eremax-trial .doctor .doctor__greeting-img {
	padding: 0 10%;
	border-bottom: solid 1px #000;
	width: 100%;
	margin-bottom: 0;
	position: relative;
}

#eremax-trial .doctor .doctor__greeting-img::before {
	content: "";
	background: url(../img/eremax-doctors-left.png) no-repeat center center / contain;
	position: absolute;
	width: 74%;
	height: 186%;
	left: -56%;
	top: -77%;
}

@media screen and (max-width:1440px) {
	#eremax-trial .doctor .doctor__greeting-img::before {
		width: 43%;
		height: 116%;
		left: -26%;
		top: -67%;
	}
}

@media screen and (max-width:768px) {
	#eremax-trial .doctor .doctor__greeting-img::before {
		width: 28%;
		height: 76%;
		left: -2%;
		top: -58%;
	}
}

#eremax-trial .doctor .doctor__greeting-img::after {
	content: "";
	background: url(../img/eremax-doctors-right.png) no-repeat center center / contain;
	position: absolute;
	width: 55%;
	height: 94%;
	right: -31%;
	bottom: -80%;
	z-index: -1;
}

@media screen and (max-width:1440px) {
	#eremax-trial .doctor .doctor__greeting-img::after {
		width: 55%;
		height: 84%;
		right: -27%;
		bottom: -80%;
		z-index: -1;
	}
}

@media screen and (max-width:768px) {
	#eremax-trial .doctor .doctor__greeting-img::after {
		width: 35%;
		height: 60%;
		right: 0%;
		bottom: -141%;
	}
}

#eremax-trial .doctor .doctor__ttl {
	font-size: clamp(16px, 2.67vw, 20px);
	font-weight: 700;
	display: block;
	width: fit-content;
	margin: 2% auto 3%;
}

#eremax-trial .doctor .doctor__txt {
	font-size: clamp(16px, 2.67vw, 20px);
	line-height: 2;
}

#eremax-trial .free__advice-content {
	display: block;
	background: #666;
	padding: 3.8% 0;
}

#eremax-trial .advice-content__container {
	display: flex;
	align-items: center;
}

@media screen and (max-width:768px) {
	#eremax-trial .advice-content__container {
		display: block;
	}
}

#eremax-trial .eremax-free-advice-img {
	display: block;
	width: 60%;
	margin-right: 3%;
}

@media screen and (max-width:768px) {
	#eremax-trial .eremax-free-advice-img {
		width: 80%;
		margin: 0 auto 2%;
	}
}

#eremax-trial .free__advice-content-txt {
	font-size: clamp(16px, 2.67vw, 24px);
	display: block;
	width: 40%;
	color: #FFF;
}

@media screen and (max-width:768px) {
	#eremax-trial .free__advice-content-txt {
		width: 100%;
	}
}

#eremax-trial .free__advice-content-txt p:nth-of-type(1) {
	font-size: clamp(16px, 2.67vw, 29px);
	font-weight: 700;
	margin-bottom: 3%;
}

@media screen and (max-width:768px) {
	#eremax-trial .free__advice-content-txt p:nth-of-type(1) {
		margin-bottom: 1%;
		text-align: center;
	}
}

#eremax-trial .menshealth-features {
	display: block;
	background: url(../img/menshealth-features-bg.jpg) no-repeat center center / cover;
	padding-top: 6%;
	padding-bottom: 7.2%;
}

#eremax-trial .menshealth-features .features__ttl-img {
	display: block;
	width: 100%;
}

@media screen and (max-width:768px) {
	#eremax-trial .menshealth-features .features__ttl-img {
		display: block;
		width: 55%;
		margin: 0 auto;
	}
}

#eremax-trial .menshealth-features ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2em;
}

@media screen and (max-width:768px) {
	#eremax-trial .menshealth-features ul {
		grid-template-columns: repeat(1, 1fr);
	}
}

#eremax-trial .menshealth-features ul li {
	background: #333;
	border-radius: 20px;
	opacity: 0.7;
}

#eremax-trial .menshealth-features ul li p:nth-of-type(2) {
	font-size: clamp(16px, 2.67vw, 24px);
	color: #FFF;
	line-height: 1.8;
	padding: 0 7% 7% 7%;
	text-align: justify;
}

#eremax-trial .eremax-flow {
	background: #FFF;
	padding-top: 9.7%;
	padding-bottom: 7.6%;
}

#eremax-trial .eremax-flow-list {
	display: flex;
	justify-content: space-between;
	margin-bottom: 6.8%;
}

@media screen and (max-width:768px) {
	#eremax-trial .eremax-flow-list {
		display: block;
	}
}

#eremax-trial .eremax-flow-list li {
	display: block;
	width: 27%;
	background: #000;
	padding: 2%;
	position: relative;
}

@media screen and (max-width:768px) {
	#eremax-trial .eremax-flow-list li {
		width: 45%;
		margin: 0 auto;
	}

	#eremax-trial .eremax-flow-list li:not(:last-of-type) {
		margin-bottom: 15%;
	}
}

@media screen and (max-width:425px) {
	#eremax-trial .eremax-flow-list li {
		width: 80%;
	}
}

#eremax-trial .eremax-flow-list li:not(:last-of-type)::after {
	content: "";
	position: absolute;
	background: url(../img/eremax-triangle.png) no-repeat center center / contain;
	width: 50%;
	height: 35%;
	top: 50%;
	right: -43%;
	transform: translateY(-50%);
}

@media screen and (max-width:768px) {
	#eremax-trial .eremax-flow-list li:not(:last-of-type)::after {
		background: url(../img/eremax-triangle-under.png) no-repeat center center / contain;
		width: 30%;
		height: 15%;
		top: 109%;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media screen and (max-width:425px) {
	#eremax-trial .eremax-flow-list li:not(:last-of-type)::after {
		width: 20%;
		height: 15%;
		top: 101%;
		left: 50%;
		transform: translateX(-50%);
	}
}

#eremax-trial .eremax-flow-number {
	display: block;
	width: fit-content;
	border-bottom: solid 1px #FFF;
	padding-bottom: 2%;
}

#eremax-trial .eremax-flow-ttl {
	display: block;
	width: fit-content;
	font-size: clamp(16px, 2.67vw, 29px);
	font-weight: 700;
	color: #FFF;
	margin-top: 3%;
	margin-bottom: 3%;
}

#eremax-trial .eremax-money {
	font-size: clamp(16px, 2.67vw, 30px);
	font-weight: 700;
}

#eremax-trial .eremax-money-small {
	font-size: clamp(16px, 2.67vw, 24px);
}

@media screen and (max-width:768px) {
	#eremax-trial .eremax-money-small {
		font-size: clamp(14px, 2.2vw, 24px);
	}
}

#eremax-trial .cost__list-group .cost__list-line {
	display: grid;
	grid-template-columns: 34% 18% 47%;
}

@media screen and (max-width:425px) {
	#eremax-trial .cost__list-group .cost__list-line>* {
		padding-left: 0.5em;
		padding-right: 0.5em;
	}
}

#eremax-trial .cost__list-group .cost__list-line .cost__list-line-ttl {
	font-size: clamp(16px, 2.5vw, 24px);
}

@media screen and (max-width:768px) {
	#eremax-trial .cost__list-group .cost__list-line-ttl {
		grid-column: inherit;
	}
}

#eremax-trial .cost__list-group .cost__list-line .cost__list-line-amount {
	font-size: clamp(14px, 2.5vw, 20px);
}

#eremax-trial .cost__list-group .cost__list-line .cost__list-line-money {
	font-size: clamp(14px, 1.07vw, 16px);
	justify-content: start;
}

#eremax-trial .cost__list-group .cost__list-line:nth-of-type(1),
#eremax-trial .cost__list-group .cost__list-line:nth-of-type(2) {
	margin-bottom: 5px;
}

#eremax-trial .cost__list-group .cost__list-line-gray:nth-of-type(1) .cost__list-line-ttl,
#eremax-trial .cost__list-group .cost__list-line-gray:nth-of-type(1) .cost__list-line-amount {
	color: #FFF;
	background: #999;
}

#eremax-trial .eremax-caution {
	padding: 9% 0;
}

#eremax-trial .eremax-caution .eremax-caution__container {
	display: flex;
}

#eremax-trial .eremax-caution .eremax-caution__container p {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #FFF;
	font-size: clamp(16px, 2.67vw, 29px);
	font-weight: 700;
	background: #000;
	width: 25%;
}

#eremax-trial .eremax-caution .eremax-caution__container ul {
	background: #333;
	padding: 4%;
	width: 75%;
}

#eremax-trial .eremax-caution .eremax-caution__container ul li {
	font-size: clamp(16px, 2.67vw, 24px);
	color: #FFF;
	line-height: 1.5;
	padding-left: 1em;
	text-indent: -1em;
	font-feature-settings: "palt";
	position: relative;
}

#eremax-trial .eremax-caution .eremax-caution__container ul li:not(:last-of-type) {
	margin-bottom: 0.5em;
}

#eremax-trial .eremax-caution .eremax-caution__container ul li::before {
	content: "●";
	color: #FFF;
}

#eremax-trial .eremax-qa {
	padding: 6.7%;
	background-color: #c20009;
}

#eremax-trial .eremax-qa .ttl-pkg {
	color: #FFF;
}

#eremax-trial .eremax-qa__container:not(:last-of-type) {
	margin-bottom: 2%;
}

#eremax-trial .eremax-qa .menu__listTitle {
	color: #000;
	font-size: clamp(16px, 2.67vw, 30px);
	font-weight: 700;
	padding: 0.5em 0em 0.5em 2.5em;
	background: #FFF;
	position: relative;
}
@media screen and (max-width:320px) {
	#eremax-trial .eremax-qa .menu__listTitle {
		padding: 0.5em 0em 0.5em 2em;
	}
}

#eremax-trial .eremax-qa .menu__listTitle::before {
	transform: translate(0, -50%);
}

#eremax-trial .eremax-qa .menu__listTitle::after {
	transform: translate(0, -50%) rotate(90deg);
	transition: transform linear .3s;
}

#eremax-trial .eremax-qa .menu__listTitle.close-button::after {
	transform: translate(0, -50%) rotate(0);
	transition: transform linear .3s;
}

#eremax-trial .eremax-qa .menu__listTitle::before,
#eremax-trial .eremax-qa .menu__listTitle::after {
	width: 1em;
	height: 3px;
	background-color: #808080;
	right: 1em;
	z-index: 1;
}

#eremax-trial .eremax-qa dt span::before {
	content: "";
	position: absolute;
	background: url(../img/eremax-q.png) no-repeat center center / contain;
	width: 1.5em;
	height: 1em;
	top: 50%;
	left: 1.5%;
	transform: translateY(-50%);
}

@media screen and (max-width:768px) {
	#eremax-trial .eremax-qa dt span::before {
		left: 2.5%;
	}
}

#eremax-trial .eremax-qa .menu__listTitle button {
	padding: 0;
}


#eremax-trial .eremax-qa dd {
	color: #000;
	font-size: clamp(16px, 2.67vw, 24px);
	line-height: 1.5;
	padding: 1em 2em 1em 3em;
	background: #e6e6e6;
	position: relative;
}

#eremax-trial .eremax-qa dd span::before {
	content: "";
	position: absolute;
	background: url(../img/eremax-a.png) no-repeat center center / contain;
	width: 1.5em;
	height: 1em;
	top: 1.3em;
	left: 1.5%;
}

@media screen and (max-width:768px) {
	#eremax-trial .eremax-qa dd span::before {
		left: 2.5%;
	}
}

#eremax-trial .eremax-qa .menu__listAreaOpen {
	display: none;
	pointer-events: none;
}

#eremax-trial .eremax-qa .menu__listAreaOpen.open-link {
	display: block;
	pointer-events: initial;
}

#eremax-trial .clinic-list {
	padding-top: 9.7%;
	padding-bottom: 11.4%;
}