/* ==============================
 Reset & Base
 ============================== */

/* ブラウザデフォルト余白を削除・ボックスサイズ統一 */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

/* HTML・body 基本設定 */
html, body {
	height: 100%;
	line-height: 2;
	color: #000;
	background: #fff;
	font-family: "Zen Maru Gothic","游ゴシック体","Yu Gothic","ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","メイリオ",Meiryo,sans-serif;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
	overflow-x: hidden;
}
html {
	font-size: 18px;
}
@media screen and (max-width: 768px) {
	html {
		font-size: 14px;
	}
}

/* タイトル系の余白・スタイルを無効化 */
h1, h2, h3, h4, h5, h6 {
	margin: 0;
	font-weight: 700;
	font-size: inherit;
	line-height: 1.3;
}

/* 段落・リストの余白リセット */
p, ul, ol, dl {
	margin: 0;
	padding: 0;
}

/* リストマーカーを非表示 */
ul, ol {
	list-style: none;
}

/* strong, emの装飾を標準化 */
strong, em {
	font-weight: inherit;
	font-style: normal;
}

/* テーブルリセット */
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* 画像・動画の基本設定 */
img, video {
	max-width: 100%;
	height: auto;
	display: block;
}

/* リンク */
a {
	color: inherit;
	text-decoration: none;
	transition: opacity .4s ease;
}
a:hover {
	opacity: .7;
}

/* フォーム要素リセット */
input, button, textarea, select {
	font: inherit;
	color: inherit;
	background: none;
	border: none;
	outline: none;
	appearance: none;
}

/* ボタンのクリック時カーソル */
button {
	cursor: pointer;
}


/*------------------------------------
改行
------------------------------------*/
.br-sp {
	display: none;
}
@media screen and (max-width: 768px) {
	.br-pc {
		display: none;
	}
	.br-sp {
		display: inline-block;
	}
}


/*------------------------------------
.container
------------------------------------*/
section .container {
	width: calc(100% - 7.29vw); /*140px*/
	margin: auto;
}
@media screen and (max-width: 768px) {}


/*------------------------------------
.data
------------------------------------*/
.data dl {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	padding: 20px 0;
}
.data dl:not(:last-child) {
	border-bottom: 1px solid #ddd;
}
.data dt {
	flex: 1 1 180px;
	min-width: 0;
	font-weight: 700;
	white-space: nowrap;
}
.data dd {
	flex: 1 1 570px;
	min-width: 0;
	word-break: break-word;
}
@media screen and (max-width: 768px) {
	.data dl {
		padding: 10px 0;
	}
}


/*--------------------------------------------------------------------------
ヘッダー
--------------------------------------------------------------------------*/
header {
	position: relative;
	z-index: 1;
}
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 40px;
	height: 100px;
	margin: 0 170px 0 3.65vw; /*70px*/
}
.header__inner .flex {
	display: flex;
	align-items: center;
	gap: 20px;
}
.header__left {
	gap: 30px;
}
.logo {
	display: block;
	max-width: 260px;
	width: 100%;
}
.header__left .desc {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.4;
}
.info .tel {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	flex-shrink: 0;
	font-size: 1.5625vw; /*30px*/
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1;
	color: #ff5a89;
	white-space: nowrap;
}
.info .tel img {
	width: 52px;
	height: 40px;
}
.info .btn {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ff5a89;
	border-radius: 27px;
	height: 54px;
	font-size: 0.9375vw; /*18px*/
	font-weight: 700;
	line-height: 1;
	color: #fff;
	white-space: nowrap;
	padding: 0 20px;
}
@media screen and (max-width: 1300px) {
	.header__inner {
		margin-right: 8.85vw;
	}
	.header__left .desc {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	.header__inner {
		height: 70px;
	}
	.logo {
		max-width: 180px;
	}
	.header__right {
		display: none !important;
	}
	.info .tel {
		font-size: 7.16vw; /*55px*/
	}
	.info .tel img {
		width: 39px;
		height: 30px;
	}
	.info .btn {
		font-size: 3.91vw; /*30px*/
	}
}

/* ── ハンバーガーボタン ───────────────── */
.hamburger-btn {
	position: fixed;
	top: 15px;
	right: 3.65vw; /*70px*/
	width: 70px;
	height: 70px;
	border-radius: 50%;
	border: none;
	padding: 0;
	background: #ff5a89;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	z-index: 1003;
	transition: background 0.25s ease, transform 0.15s ease;
}
.hamburger-btn__inner {
	position: relative;
	width: 32px;
	height: 18px;
}
.hamburger-btn__line {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	border-radius: 99px;
	background: #fff;
	transition: transform 0.25s ease, top 0.25s ease, bottom 0.25s ease, opacity 0.2s ease;
}
.hamburger-btn__line--top {
	top: 0;
}
.hamburger-btn__line--middle {
	top: 8px;
}
.hamburger-btn__line--bottom {
	bottom: 0;
}
@media screen and (max-width: 768px) {
	.hamburger-btn {
		top: 10px;
		width: 50px;
		height: 50px;
	}
	.hamburger-btn__inner {
		width: 24px;
		height: 16px;
	}
	.hamburger-btn__line--middle {
		top: 7px;
	}
}

/* 開いているときの「×」状態 */
.hamburger-btn.is-open .hamburger-btn__line--top {
	top: 8px;
	transform: rotate(45deg);
}
.hamburger-btn.is-open .hamburger-btn__line--middle {
	opacity: 0;
}
.hamburger-btn.is-open .hamburger-btn__line--bottom {
	bottom: 8px;
	transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
	.hamburger-btn.is-open .hamburger-btn__line--top {
		top: 7px;
	}
	.hamburger-btn.is-open .hamburger-btn__line--bottom {
		bottom: 7px;
	}
}

/* ── オーバーレイ ───────────────── */
.overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.45); /* 後ろを暗くする */
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s ease, visibility 0.25s ease;
	z-index: 1000;
}
.overlay.is-active {
	opacity: 1;
	visibility: visible;
}

/* ── メニュー本体（右からスライドイン） ───────────────── */
.side-menu {
	position: fixed;
	top: 0;
	right: 0;
	width: min(80%, 320px);
	height: 100vh;
	background: #fff;
	transform: translateX(100%);
	transition: transform 0.25s ease;
	z-index: 1002;
	display: flex;
	flex-direction: column;
	padding: 120px 50px 50px;
	overflow-y: hidden;
}
.side-menu.is-open {
	transform: translateX(0);
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}
.side-menu__nav {
	margin-bottom: 50px;
}
.side-menu__nav .blank {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
}
.side-menu__nav .blank::after {
	content: "";
	background-image: url("../images/blank.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 14px;
	height: 10px;
}
.side-menu .info {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin-bottom: 30px;
}
.side-menu__sns a {
	display: block;
	width: 46px;
	height: 46px;
}
@media screen and (max-width: 768px) {
	.side-menu {
		padding: 80px 32px 32px;
	}
}


/*--------------------------------------------------------------------------
フッター
--------------------------------------------------------------------------*/
footer {
	background-color: #ffdde0;
}
footer .container {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 190px;
	max-width: 1260px;
	width: calc(100% - 7.29vw);
	margin: auto;
	padding: 80px 0;
}
@media screen and (max-width: 768px) {
	footer .container {
		gap: 30px;
		width: calc(100% - 18.23vw);
		padding: 50px 0;
	}
}

/*.footer-left*/
.footer-left {
	flex: 1 1 440px;
	min-width: 0;
}
.footer-left .logo {
	margin-bottom: 15px;
}
.footer-left .desc {
	font-size: 14px;
	line-height: 1.4;
	margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
	.footer-left {
		flex: 1;
	}
	.footer-left .desc {
		font-size: 12px;
		margin-bottom: 20px;
	}
}

/*.footer-right*/
.footer-right {
	display: flex;
	flex-wrap: wrap;
	gap: 90px;
	flex: 1 1 630px;
	min-width: 0;
}
.footer-right .half {
	width: calc((100% - 90px) / 2);
}
.footer-right .blank {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 8px;
}
.footer-right .blank::after {
	content: "";
	background-image: url("../images/blank.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 14px;
	height: 10px;
}
.footer-right .sns a {
	display: block;
	width: 46px;
	height: 46px;
}
.footer-right p {
	font-size: 16px;
	margin-top: 10px;
}
@media screen and (max-width: 768px) {
	.footer-right {
		gap: 20px;
	}
	.footer-right .half {
		width: 100%;
	}
	.footer-right .sns a {
		width: 36px;
		height: 36px;
	}
	.footer-right p {
		font-size: 12px;
		margin-top: 5px;
	}
}

/*.copyright*/
footer .copyright {
	background-color: #fff;
	font-size: 16px;
	line-height: 1;
	text-align: center;
	padding: 30px 0;
}
@media screen and (max-width: 768px) {
	footer .copyright {
		font-size: 12px;
	}
}


/*------------------------------------
.consult
------------------------------------*/
.consult {
	position: relative;
	background-color: #f1f1f1;
	text-align: center;
	padding: 100px 0;
	z-index: 0;
}
.consult .stt {
	margin-bottom: 15px;
}
.consult p {
	font-size: 22px;
	margin-bottom: 40px;
}
.consult__btn {
	max-width: 430px;
	margin: auto;
}
.consult__btn .illust {
	display: flex;
	justify-content: center;
	position: relative;
	background-image: url("../images/illust.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 240px;
	height: 50px;
	font-size: 22px;
	font-weight: 700;
	line-height: 1;
	margin: 0 auto -20px;
	padding-top: 8px;
	z-index: 1;
}
.consult__btn a {
	display: flex;
	align-items: center;
	gap: 25px;
	position: relative;
	background-color: #ff5a89;
	border-radius: 50px;
	max-width: 430px;
	width: 100%;
	height: 100px;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: .05em;
	line-height: 1;
	color: #fff;
	padding-left: 45px;
}
.consult__btn a::before,
.consult__btn a::after {
	content: "";
	position: absolute;
}
.consult__btn a::before {
	right: 25px;
	background-color: #fff;
	border-radius: 50%;
	width: 50px;
	height: 50px;
}
.consult__btn a::after {
	right: 42px;
	background-image: url("../images/arrow_pk.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	width: 15px;
	height: 15px;
}
.consult__btn img {
	width: 52px;
	height: 40px;
}
@media screen and (max-width: 768px) {
	.consult {
		padding: 50px 0;
	}
	.consult p {
		font-size: 14px;
		text-align: left;
		margin-bottom: 10px;
	}
	.consult__btn .illust {
		width: 200px;
		height: 42px;
		font-size: 16px;
		margin-bottom: -15px;
	}
	.consult__btn a {
		gap: 10px;
		max-width: 80vw;
		height: 16vw;
		font-size: 7.16vw; /*55px*/
		margin: auto;
		padding-left: 5.86vw; /*45px*/
	}
	.consult__btn img {
		width: 39px;
		height: 30px;
	}
	.consult__btn a::before {
		right: 3.26vw; /*25px*/
		width: 6.51vw; /*50px*/
		height: 6.51vw; /*50px*/
	}
	.consult__btn a::after {
		right: 5.47vw; /*42px*/
		width: 1.95vw; /*15px*/
		height: 1.95vw; /*15px*/
	}
}
