/* =================================================
共通
================================================= */

html {
	font-size: 10px;
	font-family: "kozuka-gothic-pr6n", sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 1.2;
	letter-spacing: .1em;
	box-sizing: border-box;
	scroll-behavior: smooth;
}

* {
	box-sizing: border-box;
}

body {
	line-height: 1.5;
	margin: 0;
	font-size: clamp(1.4rem, 1vw + 1rem, 1.8rem);
}

@media (max-width: 434px) {
	.pc-only {
		display: none !important;
	}
}

@media (min-width: 435px) {
	.sp-only {
		display: none !important;
	}
}

h1 {
	font-size: clamp(2.4rem, 2vw + 1.5rem, 3.6rem);
	line-height: 1.5;
	letter-spacing: 6px;
	margin: 10px 0;
}

h2 {
	width: 100%;
	font-size: clamp(2rem, 2vw + 1rem, 3rem);
	color: #FF8301;
	line-height: 1.2;
	letter-spacing: 6px;
	padding: 30px 0 20px 0;
	text-align: center;
	/* background-image: url(../img/2nd-title-bg.png);
	background-size: contain;
	background-repeat: no-repeat;
	aspect-ratio: 3.41/1; */
	display: flex;
	justify-content: center;
	align-items: center;
}

h3 {
	font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
}

h4 {
	margin: 10px auto;
	color: #00A658;
	font-weight: bold;
	text-align: center;
	font-size: 1.1em;
}

p {
	margin: 10px 0;
}

.tips {
	font-size: .5em;
}

section {
	margin: 0 auto 30px auto;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

section>* {
	width: 100%;
	/* max-width: 1200px; */
	margin: 0 auto;
}

a {
	text-decoration: none;
}

.breadcrumb {
	max-width: 960px;
	padding: 0;
	margin: 30px auto;
	display: flex;
	list-style: none;
	font-size: 14px;
}

.breadcrumb li {
	display: flex;
	align-items: center;
}

.breadcrumb li+li::before {
	content: "＞";
	margin: 0 8px;
	color: #666;
}

.breadcrumb a {
	text-decoration: none;
	color: #FF502E;
}

.flex {
	display: flex;
	justify-content: center;
	align-items: center;
}

.column {
	flex-direction: column;
	justify-content: flex-start;
}

.btn01 {
	padding: .75em 1.5em;
	background-color: #09DA78;
	font-weight: bold;
	transition: background-color .2s;
	color: #fff;
	border-radius: 9999px;
	text-align: center;
}

.btn01:hover {
	background-color: #FF6A00;
}

.btn02 {
	padding: .75em 1.5em;
	background-color: #FF6A00;
	font-weight: bold;
	transition: background-color .2s;
	color: #fff;
	border-radius: 9999px;
	text-align: center;
}

.btn02:hover {
	background-color: #FFB600;
}

.btn-link {
	width: 275px;
	height: 55px;
	font-size: 16px;
	font-weight: bold;
	color: #fff;
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.35s;
}

.btn-link:hover {
	opacity: .7;
}

.slime-btn {
	position: relative;
	width: 275px;
	height: 60px;
	border: none;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
}

.slime-btn svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.slime-btn path {
	transition: d 0.4s ease-in-out;
}

.slime-btn:hover path {
	d: path("M0,20 Q50,40 100,20 T200,20 V60 H0 Z");
}

.slime-btn span {
	position: relative;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	z-index: 1;
}

.btn-line {
	background-color: #00C62B;
}

.btn-contact {
	background-color: #FF6A00;
}

.highlight {
	background: linear-gradient(transparent 60%, #ffeb3b 60%);
}

.bg-deco-01 {
	position: absolute;
	background-image: url(../img/bg-deco-01.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 30%;
	max-width: 500px;
	min-width: 200px;
	aspect-ratio: 1.063/1;
	z-index: -2;
}

.bg-deco-02 {
	position: absolute;
	background-image: url(../img/bg-deco-02.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 30%;
	max-width: 400px;
	min-width: 200px;
	aspect-ratio: 0.840/1;
	right: 0;
	z-index: -2;
}

.bg-deco-03 {
	position: absolute;
	background-image: url(../img/bg-deco-03.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 30%;
	max-width: 500px;
	min-width: 300px;
	aspect-ratio: 1.121/1;
	left: 0;
	z-index: -2;
}

.bg-deco-04 {
	position: absolute;
	background-image: url(../img/bg-deco-04.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	aspect-ratio: 0.727/1;
	/* min-height: 1500px; */
	z-index: -2;
}

.bg-deco-05 {
	position: absolute;
	background-image: url(../img/bg-deco-05.png);
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	aspect-ratio: 0.873/1;
	/* min-height: 1000px; */
	max-height: 2500px;
	z-index: -2;
}


/* =================================================
index.html
================================================= */

header {
	width: 100%;
	/* aspect-ratio: 2.173/1; */
	padding: 20px 0;
	position: relative;
}

.top-header {
	min-height: 70vh;
	background-image: url(../img/header-bg.png);
	background-size: cover;
	background-position: center bottom;
}

.header-link {
	justify-content: flex-end;
	align-items: center;
	gap: 20px;
	background-color: #fff;
	width: 100%;
	/* max-width: 1480px; */
	height: 4em;
	position: absolute;
	top: 0;
	/* left: 50%;
	transform: translateX(-50%); */
	font-size: clamp(1.2rem, 1vw + 0.5rem, 1.8rem);
}

.header-link a:not(:last-child) {
	color: #000;
	font-weight: bold;
	transition: color .1s;
}

.header-link a:not(:last-child):hover {
	color: #FF6A00;
}

.header-link-title {
	width: 30%;
	max-width: 350px;
	min-width: 185px;
	position: absolute;
	left: 20px;
}

.header-link-title img {
	width: 100%;
}

.header-link-contact {
	height: 100%;
	padding: 0 20px;
	display: flex;
	align-items: center;
	border-radius: 0;
}

/* ========== バーガーメニュー ========== */
.drawer-hidden {
	display: none;
}

.drawer-open {
	background-color: rgba(206, 127, 96, 0.8);
	display: flex;
	right: 0px;
	top: 0px;
	height: 50px;
	width: 50px;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 1000;
	cursor: pointer;
}

/* バーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
	content: '';
	position: absolute;
	display: block;
	height: 0.3vh;
	width: 3vh;
	border-radius: 3px;
	background: #fff;
	transition: 0.3s;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
	bottom: 10px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
	top: 10px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked~.drawer-open span {
	background-color: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked~.drawer-open span::before {
	bottom: 0;
	transform: rotate(45deg);
}

#drawer-check:checked~.drawer-open span::after {
	top: 0;
	transform: rotate(-45deg);
}

/* ===== メニュー本体 ===== */
.nav {
	width: 100vw;
	flex-direction: column;
	align-items: flex-start;
	position: fixed;
	top: 50px;
	right: -100vw;
	background-color: rgba(255, 255, 255, 1);
	padding: 20px;
	font-weight: bold;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	transition: right .3s;
	z-index: 999;

}

.nav a {
	display: block;
	width: 100%;
	padding: 12px 0;
	font-size: 16px;
	color: #333;
	border-bottom: 1px solid #eee;
	text-decoration: none;
}

.nav a:last-child {
	border-bottom: none;
}

.nav a:hover {
	color: #09DA78;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked~nav {
	right: 0;
}

.drawer-overlay {
	display: none;
	/* 初期は非表示 */
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	z-index: 998;
	/* navより下に */
}

#drawer-check:checked~.drawer-overlay {
	display: block;
	/* メニュー表示時のみ表示 */
}

.header-link-title-sp img {
	width: 100%;
}


.header-content {
	justify-content: center;
	align-items: flex-start;
	position: relative;
	top: 100px;
	left: 20vw;
	width: 90%;
	max-width: 450px;
}

.header-sub,
.header-title {
	color: #fff;
	font-weight: bold;
	font-size: clamp(2rem, 2vw + 1rem, 3rem);
}

.header-title {
	font-size: clamp(2.4rem, 2vw + 1.5rem, 3.6rem);
}

.header-grid {
	display: grid;
	align-items: flex-end;
	grid-template-columns: repeat(auto-fit, minmax(100px, 115px));
	gap: 10px;
	width: 100%;
	margin: 10px 0;
}

.header-grid img {
	display: block;
	width: 100%;
}


.header-txt {
	color: #fff;
}

.header-deco {
	position: absolute;
	z-index: 1;
	right: 0;
	top: 30%;
	background-image: url(../img/header-deco.png);
	background-size: contain;
	width: 30%;
	min-width: 200px;
	max-width: 400px;
	aspect-ratio: 0.878/1;
}

.header-btn {
	position: relative;
	right: 0;
	align-self: flex-end;
	margin: 20px 0;
}


.fukidashi-nayami {
	margin-bottom: 60px;
	position: relative;
	max-width: 600px;
	flex-wrap: wrap;
}

.fukidashi-nayami img {
	height: 13vw;
	max-height: 65px;
	position: relative;
}

.fukidashi-nayami-01 {
	bottom: 20px;
	right: 30px;
}

.fukidashi-nayami-02 {
	bottom: 30px;
}

.fukidashi-nayami-03 {
	left: 20px;
	top: -10px;
}

.fukidashi-nayami-04 {
	left: 10px;
	bottom: 10px;
}

.fukidashi-nayami-05 {
	top: 10px;
}

.fukidashi-nayami-06 {
	top: -10px;
	left: 30px;
}

.fukidashi-nayami-07 {
	top: 30px;
	left: 10px;
}

.fukidashi-nayami-08 {
	top: 20px;
	left: 20px;
}

.fukidashi-nayami-text {
	text-align: center;
	font-size: clamp(2rem, 2vw + 1rem, 3rem);
	font-weight: bold;
}

.features {
	gap: 20px;
	max-width: 1000px;
	flex-wrap: wrap;
	align-items: stretch;
}

.features-item {
	border-radius: 20px;
	border: #FFB600 solid 2px;
	overflow: hidden;
	width: 27%;
	min-width: 295px;
	background-color: #fff;
	justify-content: space-between;
}

.features-item img,
.features-item p,
.features-item span {
	padding: 0 10px;
}

.features-item img {
	width: 60px;
	padding-top: 10px;
}

.features-item span {
	font-size: .8em;
}


.features-item-bg {
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	aspect-ratio: 1.989/1;
}

.features-item-01 {
	background-image: url(../img/features-item-01.png);
}

.features-item-02 {
	background-image: url(../img/features-item-02.png);
}

.features-item-03 {
	background-image: url(../img/features-item-03.png);
}

.our-vision {
	width: 96%;
	max-width: 650px;
	gap: 32px;
	margin-top: 32px;
}

.our-vision-item {
	gap: 16px;
}

.our-vision-ico {
	background-color: #FF7F0B;
	width: 20px;
	height: 20px;
	border-radius: 50%;
}

.our-vision-item p {
	font-size: 1.1em;
	font-weight: bold;
	margin: 0;
}

.plan {
	align-items: stretch;
	max-width: 930px;
	flex-wrap: wrap;
	gap: 15px;
}

.plan-item {
	width: 270px;
	gap: 16px;
	background-color: #fff;
	border: 1px solid #FFB600;
	border-radius: 20px;
	overflow: hidden;
	padding-bottom: 16px;
}

.plan-item-title {
	text-align: center;
	font-weight: bold;
	font-size: 1.2em;
	width: 100%;
	color: #fff;
	padding: .75em 1em;
	background-color: #ffb600;
}

.plan-item-sub {
	font-size: .75em;
	color: #FFB600;
}

.plan-item-price {
	font-weight: 900;
	font-size: 36px;
	text-align: center;
	line-height: .8;
	letter-spacing: 2px;
}

.plan-item-price small {
	font-size: .5em;
}

.paln-item-hr {
	background-color: #FFB600;
	width: 90%;
	height: .5px;
}

.plan-item-op {
	font-size: .85em;
}

.plan-tips {
	margin: 20px auto;
	width: 95%;
	max-width: 900px;
	text-align: right;
}

.plan-common {
	margin-top: 20px;
	width: 98%;
	max-width: 1000px;
	gap: 16px;
}

.plan-common h4,
.plan-system h4 {
	color: #FFB600;
}

.plan-common-items {
	gap: 20px;
	flex-wrap: wrap;
	align-items: flex-start;
}

.plan-common-item {
	width: 90px;
	gap: 5px;
}

.plan-common-item img {
	width: 98%;
	height: auto;
}

.plan-common-item span {
	font-size: .65em;
	text-align: center;
}

.plan-link {
	margin: 40px auto;
	gap: 20px;
	flex-wrap: wrap;
}

.plan-system {}

.plan-system-subt {
	font-size: .65em;
}

.plan-system-items {
	align-items: stretch;
	flex-wrap: wrap;
	margin: 30px 0;
	gap: 20px;
}

.plan-system-item {
	width: 250px;
	justify-content: flex-start;
}

.plan-system-img {
	width: 80px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	height: 85px;
}

.plan-system-01 {
	background-image: url(../img/plan-system_01.png);
}

.plan-system-02 {
	background-image: url(../img/plan-system_02.png);
}

.plan-system-03 {
	background-image: url(../img/plan-system_03.png);
}

.plan-system-04 {
	background-image: url(../img/plan-system_04.png);
}

.plan-system-item p {
	margin: 16px 0;
	font-weight: bold;
}

.plan-system-item span {
	font-size: .85em;
	text-align: center;
}

.plan-system-hr {
	background-color: #FF6D33;
	width: .5px;
}

.plan-system-btn {
	margin: 40px auto 0;
}

.flow {
	width: 85%;
	max-width: 1000px;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: stretch;
	gap: 20px 60px;
}

.flow-item {
	position: relative;
	align-items: flex-start;
	transform: translateX(20px);
}

.flow-item-num {
	position: absolute;
	left: -40px;
	font-size: 1.1em;
	font-weight: bold;
	text-align: center;
	width: 53px;
	height: 53px;
	color: #fff;
	background-color: #FFB600;
	border-radius: 50%;
}

.flow-imte-contents {
	padding: 16px 16px 16px 24px;
	box-sizing: border-box;
	background-color: #fff;
	max-width: 450px;
	border: 1px solid #FFB600;
}

.flow-imte-contents>* {
	text-align: left;
}

.flow-imte-contents h4 {
	margin-top: 0;
}

.qa {
	max-width: 1088px;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 20px;
}

.qa-item {
	width: 90%;
	max-width: 490px;
	padding: 16px;
	border: #979797 1px solid;
}

.qa-item h4 {
	text-align: left;
	padding: 0 0 .7em 0;
	color: #000;
}

.qa-item span {
	color: #979797;
}

.top-contact {
	gap: 10px;
}

.top-contact h4 {
	color: #FFB600;
	font-size: 1.75em;
	padding: 30px 0 0 0;
	margin: 0;
}

.top-contact h2 {
	color: #000;
	padding: 0;
	margin: 0;
}

.top-contact span {
	color: #979797;
	text-align: center;
}

.top-link {
	gap: 16px;
	flex-wrap: wrap;
}


footer {
	position: relative;
	margin: 80px auto 0 auto;
	width: 100%;
	max-width: 2000px;
}

.footer {
	width: 100%;
	justify-content: center;
	padding: 40px 20px;
	background-color: #FFF8ED;
}

.footer img {
	margin-bottom: 40px;
	width: 100%;
	max-width: 400px;
}

.footer-link {
	font-size: 14px;
	color: #000 !important;
	margin: 10px auto;
}

.footer-link a {
	text-decoration: none;
	color: black;
	display: inline-block;
	white-space: nowrap;
	text-align: center;
}

.footer-link a::after {
	content: "|";
	color: black;
	padding: .7em;
}

.footer-link a:last-child::after {
	content: "";
	padding-right: 0;
}

.footer-copyright {
	background-image: url(../img/footer-copyright-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	text-align: center;
	font-size: 12px;
	color: #fff;
	padding: 20px;
}

.contact-fix {
	position: fixed;
	bottom: 0px;
	top: auto;
	left: 0%;
	width: 100%;
	height: 50px;
	align-items: stretch;
	box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
	z-index: 1000;
}

.line-fix,
.mail-fix {
	padding: 15px;
	border-radius: 0px;
	text-align: center;
	box-shadow: none;
}

.line-fix {
	background-color: #74BF26;
}

.mail-fix {
	background-color: #EF6E26;
}

.line-fix img,
.mail-fix img {
	width: 80%;
	max-width: 200px;
}

.contact-fix a:hover {
	transform: none;
}



/* =================================================
second共通
================================================= */
.second-margin {
	margin-top: 60px;
}

/* =================================================
plan-common.html
================================================= */
.service-contents {
	max-width: 1500px;
	width: 95%;
}

.service-contents-flex {
	justify-content: center;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
	gap: 40px;
	margin-top: 40px;
}

.service-contents-items {
	gap: 10px;
	align-items: flex-start;
	width: 100%;
	max-width: 700px;
}

.service-contents-items-title {
	background-color: #FF8301;
	color: #fff;
	text-align: left;
	width: 16em;
	margin-bottom: 10px;
	padding-left: 5px;
	align-self: flex-start;
	font-size: 1.1em;
}

.service-contents-section {
	justify-content: flex-start;
	align-items: stretch;
	gap: 5px;
	width: 100%;
	font-size: .8em;
}

.service-contents-section-title {
	align-items: center;
	justify-content: flex-start;
	background-color: #FEDE76;
	width: 27%;
	padding-left: 5px;
}

.service-contents-section-text {
	justify-content: flex-end;
	align-items: flex-start;
	gap: 10px;
	width: 75%;
}

.service-contents-section-border {
	background-color: #FEDE76;
	height: .5px;
	width: 100%;
}



/* =================================================
plan-option.html
================================================= */

.service-contents-table {
	text-align: left;
	border: #ff8301 2px solid;
	border-collapse: collapse;
	width: 100%;
}

.service-contents-table thead {
	border-collapse: separate;
	background-color: rgba(255, 131, 1, .2);
}

.service-contents-table th, .service-contents-table td {
	padding: .5em 1em;
}


/* =================================================
services-flow.html
================================================= */
.services-flow {
	margin: 0 auto;
	max-width: 2000px;
}

.flow-intro {
	margin: 40px auto;
	width: 80%;
	max-width: 960px;
	gap: 20px;
}

.flow-intro-img01 {
	background-image: url(../img/services-flow_title.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	aspect-ratio: 3.775/1;
}

.flow-intro-img02 {
	background-image: url(../img/services-flow_img.png);
	background-repeat: no-repeat;
	background-size: contain;
	width: 100%;
	aspect-ratio: 1.5/1;
	margin-bottom: 40px;
}

.flow-intro-step {
	width: 100%;
	max-width: 700px;
	position: relative;

	display: flex;
	align-items: center;
	justify-content: center;

	border: #E6E6E6 2px solid;
	border-radius: 999px;

	padding: 20px 0;

	box-shadow: 7px 7px #cccccc;

	color: #000;

	transition: all .3s;
}

.flow-intro-step:hover {
	box-shadow: none;
	transform: translate(7px, 7px);
	/* border: none; */
	background-color: #dedede;
}

.flow-intro-step-icon {
	position: absolute;
	left: 20px;
	top: 25%;
}

.flow-intro-step-step {
	width: 100px;
	position: absolute;
	left: -25px;
	top: -40%;
}

.flow-intro-step span {
	font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
	font-weight: bold;
}

.flow-intro-tri {
	width: 50px;
	aspect-ratio: 1.325/1;
	background-image: url(../img/icon-tri.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.flow-detail {
	margin: 40px auto;
	margin-bottom: 0;
	width: 100%;
	height: auto;
	padding: 30px;
	padding-bottom: 0;
	gap: 40px;

	background: linear-gradient(to bottom, #FFF8ED 0% 80%, transparent 80% 100%), url('../img/gradation_bg.png');
	background-repeat: no-repeat;
	background-size: cover;
}

.flow-detail> :first-child {
	margin-top: 80px;
}

.flow-detail-step {
	width: 100%;
	max-width: 800px;
	height: auto;
	margin-bottom: 40px;
	display: flex;
	position: relative;
	flex-direction: column;
	align-items: center;
	gap: 10px;

	/* clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);   子要素まで切り取られてしまう*/
}

.flow-detail-step::before {
	/* 子要素が切り取られないように擬似要素で背景を再現*/
	content: "";
	position: absolute;
	inset: 0;
	background-color: #fff;
	box-shadow: 7px 7px #cccccc;
	clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
	z-index: 0;
}

.flow-detail-step>* {
	z-index: 1;
}

.flow-detail-step-icon {
	width: 100px;
	position: absolute;
	top: -50px;

}

.flow-detail-title {
	margin-top: 80px;
	margin-bottom: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 16px;
	color: #F15A24;
	font-weight: bold;
	font-size: clamp(2rem, 2vw + 1rem, 3rem);
	letter-spacing: .2em;
}

.flow-detail-title-icon {
	height: 40px;
}

.flow-detail-desc {
	max-width: 620px;
	text-align: left;
	padding: 100px 30px;
	padding-top: 0px;
	font-size: 18px;
	line-height: 1.7em;
}

.flow-detail-title02 {
	margin-bottom: 40px;
	width: 100%;
	max-width: 500px;
	background-image: url(../img/services-flow_title02.png);
	background-size: contain;
	background-position: contain;
	aspect-ratio: 3.067;
}

.flow-detail-text01 {
	margin-bottom: 60px;
	width: 100%;
	max-width: 600px;
	background-image: url(../img/services-flow_text01.png);
	background-size: contain;
	background-position: contain;
	aspect-ratio: 2.1;
}

.contact-text {
	margin: 40px auto;
	width: 95%;
	max-width: 600px;
	gap: 16px;
	font-size: clamp(2rem, 2vw + 1rem, 2.6rem);
	font-weight: bold;
	text-align: center;
}

.contact-text::before,
.contact-text::after {
	content: '';
	width: 60px;
	height: 3px;
	background: #000;
}

.contact-text::before {
	transform: rotate(45deg);
}

.contact-text::after {
	transform: rotate(135deg);
}

/* =================================================
規約
================================================= */
.term {
	padding: 0 1em;
	font-size: 16px;
	line-height: 1.7em;
	letter-spacing: .1em;
	font-family: "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", "SimSun", serif;
	max-width: 750px;
}

.term h1 {
	text-align: center;
	margin-bottom: 40px;
	padding-bottom: 40px;
	border-bottom: #D4145A 1px solid;
}

.term h3 {
	margin: 40px 0 20px 0;
}

.term-btn {
	margin: 60px auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 26px;
}

.term-btn a {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 999px;
	border: solid 1px #F95150;
	color: #F95150;
	background-color: #fff;
	transition: all .3s;
}

.term-btn a:hover {
	border: solid 1px #F95150;
	color: #fff;
	background-color: #F95150;
}



/* =================================================
お問い合わせフォーム
================================================= */

.contact {
	margin: 60px auto;
	width: 100%;
	max-width: 800px;
	font-size: 18px;
	padding: 16px;
}

.contact-title-logo {
	width: 100%;
	max-width: 650px;
	aspect-ratio: 7.757;
	margin: 0 auto;
	margin-bottom: 20px;
	background-image: url(../img/title-logo.png);
	background-repeat: no-repeat;
	background-size: contain;
}

.contact-border {
	width: 100%;
	margin: 30px auto;
	border-bottom: #c0c0c0 2px solid;
}

.contact h1 {
	color: #EF6E26;
}

.contact-explain {
	font-size: 18px;
	letter-spacing: .2em;
	line-height: 1.5;
	margin: 20px 0;
}

.contact-explain-img {
	width: 95%;
	max-width: 500px;
	aspect-ratio: 1.442/1;
	margin: 20px auto;
	background-image: url(../img/contact-explain.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.contact-form-bg {
	background-color: #fff8ed;
	padding: 18px;
}

.contact-input-bg {
	background-color: #fff;
	padding: 36px 18px;
}

.contact-form-title {
	font-size: 20px;
	margin-bottom: 18px;
}

.contact-form-explain {
	margin-bottom: 36px;
}

.contact label {
	font-weight: bold;
	display: block;
	margin-top: 30px;
}

.contact input,
.contact textarea,
.contact button {
	width: 100%;
	padding: 8px;
	margin-top: 5px;
	border: 3px solid #ccc;
	border-radius: 5px;
}

.contact input[type="email"],
.contact input[type="text"],
.contact textarea {
	background-color: #FFF8ED;
}

.contact button {
	display: block;
	width: 80%;
	max-width: 360px;
	margin: 40px auto;
	padding: 10px;
	background-color: #EF6E26;
	color: white;
	border: none;
	cursor: pointer;
	font-size: 22px;
	font-weight: bold;
}

.contact button:hover {
	background-color: #BF4A26;
}

input[type="checkbox"] {
	width: 20px;
	height: 20px;
	margin: 20px 0;
}

/* ラジオボタン隠し */
.radio-group input[type="radio"] {
	display: none;
}

/* ラベルにスタイルを適用 */
.radio-group label {
	display: block;
	padding: 10px 16px;
	margin: 16px 0 16px 0;
	border: 2px solid #ccc;
	border-radius: 5px;
	cursor: pointer;
	background-color: #fff;
	transition: background-color 0.3s ease, color 0.3s ease;
}

/* ラベルが選択されたときのスタイル */
.radio-group input[type="radio"]:checked+label {
	background-color: #EF6E26;
	color: #fff;
	border-color: #EF6E26;
}

.contact-agree {}

.contact-agree a {
	border-bottom: 1px solid #ccc;
	color: #EF6E26;
}

.thanks {
	margin: 60px auto;
	width: 100%;
	font-size: 18px;
}

.thanks h1,
.thanks p {
	text-align: center;
	margin-top: 30px;
}


/* =======================================================================
繰り返し横スライド
========================================================================== */

.slider {
	margin: 40px auto;
	overflow: hidden;
	width: 100%;
}

.slider.dragging {
	cursor: grabbing;
	/* ドラッグ中は掴むアイコン */
}

.slide-track {
	gap: 20px;
	transition: transform 0.2s ease;
	/* ドラッグ終了時にスムーズ */
}

.slide {
	cursor: grab;
	user-select: none;
	flex: 0 0 auto;
	/* 縮まない＆必要な幅を確保 */
	width: 100%;
	max-width: 400px;
	/* スライド1枚の幅を指定 */
}

.review-item-slide {
	width: 100%;
	list-style: none;
}

.review-item {
	width: 100%;
	aspect-ratio: 1.52/1;
	background-repeat: no-repeat;
	background-size: contain;
}

.review-item-01 {
	background-image: url(../img/slide-01.png);
}

.review-item-02 {
	background-image: url(../img/slide-02.png);
}

.review-item-03 {
	background-image: url(../img/slide-03.png);
}

.review-item-04 {
	background-image: url(../img/slide-04.png);
}



/* =================================================
メディアクエリ
================================================= */

@media (max-width: 1120px) {
	.flow {
		justify-content: center;
	}
}

@media (max-width: 767px) {
	.header-link-title {
		display: none;
	}

	.header-content {
		left: 10vw;
	}
}

@media (max-width: 560px) {
	.plan-system-hr {
		width: 80%;
		max-width: 300px;
		height: .5px;
	}
}

@media (max-width: 528px) {
	.header-grid {
		grid-template-columns: repeat(2, 115px);
	}
}

@media (max-width: 434px) {

	.header-content {
		top: 20px;
	}

	.fukidashi-nayami {
		margin-bottom: 0;
	}

	.fukidashi-nayami-01 {
		left: -50px;
		top: 0px;
		bottom: 0px;
	}

	.fukidashi-nayami-02 {
		left: 50px;
		top: 0px;
		bottom: 0px;
	}

	.fukidashi-nayami-03 {
		left: -20px;
		top: 0px;
		bottom: 0px;
	}

	.fukidashi-nayami-04 {
		left: 30px;
		top: 10px;
		bottom: 0px;
	}

	.fukidashi-nayami-05 {
		left: -50px;
		top: -10px;
	}

	.fukidashi-nayami-06 {
		top: -10px;
		left: 0px;
	}

	.fukidashi-nayami-07 {
		top: 0px;
		left: -70px;
	}

	.fukidashi-nayami-08 {
		top: -20px;
		left: 70px;
	}

	.plan-tips {
		text-align: center;
	}


	footer {
		margin-bottom: 49px;
	}

	.header-deco {
		top: 22%;
	}

}