@charset "UTF-8";

/************************************
font-family
************************************/
@import url('https://fonts.googleapis.com/css2?family=LINE+Seed+JP:wght@100;400;700;800&family=Manrope:wght@200..800&display=swap');

/************************************
base
************************************/
html,body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	-webkit-text-size-adjust: 100%;
  	text-size-adjust: 100%;
}
html{
	/* scroll-behavior: smooth; */
	scroll-padding-top: 100px;
}
html.nav_open{
	scroll-behavior: auto;
	scroll-padding-top: 0;
	overflow: hidden;
	height: 100%;
	overscroll-behavior: none;
}
body {
	font-family: "Manrope", "LINE Seed JP", sans-serif;
	font-size: 16px;
	line-height: 1.8;
  	letter-spacing: 0.05em;
	color: #131213;
	background: #fff;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
* {
	-webkit-font-smoothing: antialiased;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
a {
	text-decoration: none;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	-o-transition: all 0.3s;
	transition: all  0.3s;
	color:#131213;
}
img,
svg {
	vertical-align: bottom;
	width: 100%;
	height: auto;
}

h1,h2,h3 {
	line-height: 1.4;
}
h1 {
	font-size: 48px;
}
h2 {
	font-size: 40px;
}
h3 {
	font-size: 32px;
}

@media (max-width: 768px) {
	body {
		font-size: 14px;
	}

	h1 {
		font-size: 32px;
	}
	h2 {
		font-size: 24px;
	}
	h3 {
		font-size: 20px;
	}

}

.inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
}

.desktop {
	display: block;
}
.mobile {
	display: none;
}
.grecaptcha-badge{
    visibility: hidden;
}

@media (max-width: 768px) {
	.desktop {
	display: none;
    }
    .mobile {
        display: block;
    }
    .hidden-sp {
            display: none !important;
        }
}


/** flex関係 **/
.flex{
	display: flex;
}
.flex_content_between{
	justify-content: space-between;
}
.flex_content_start{
	justify-content: flex-start;
}
.flex_content_end{
	justify-content: flex-end;
}
.flex_content_center{
	justify-content: center;
}
.flex_align_center{
	align-items: center;
}
.flex_align_stretch{
	align-items: stretch;
}
.flex_align_start{
	align-items: flex-start;
}
.flex_align_end {
	align-items: flex-end;
}
.flex_wrap{
	flex-wrap: wrap;
}
.flex_reverse{
	flex-flow: row-reverse;
}


/************************************
header
************************************/
/* =========================================
   ヘッダー全体（共通の入れ物）
   ========================================= */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background-color: transparent;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.header_inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 0;
    transition: padding 0.3s ease;
}

.logo {
    font-size: 1rem;
    width: 200px;
    position: relative;
}

/* ロゴ：白／カラーの出し分け（初期は白のみ表示） */
.logo-img--color { display: none; }
.logo-img--white { display: block; }



@media (max-width: 768px) {
	.header_inner {
		padding: 12px 0;
	}
    .logo {
		width: 120px;
	}
}



/* =========================================
   スクロール時の見た目（.is-scrolled）
   ========================================= */
.header.is-scrolled {
	position: fixed;
	top: 0;
    /* background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); */
}

.header.is-scrolled .header_inner {
    padding: 12px 0;
}
.header.is-scrolled .logo-img--white {
	display: none;
}
.header.is-scrolled .logo-img--color {
	display: block;
}

/* スクロール時はハンバーガーの線をグレーに */
.header.is-scrolled .nav-trigger-line {
    background-color: #A5B8C9;
}


/* =========================================
   header_cta（お問い合わせページ等のヘッダー用）
   ========================================= */
@media (min-width: 769px) {
   /* ▼ 1. 電話番号ブロックの調整 ▼ */
    .contact_tel {
        background: rgba(255, 255, 255, 0.2);
        border-radius: 42px;
        padding: 0 20px;     /* 上下のpaddingを無くし、heightで高さを制御 */
        height: 64px;        /* ★ ボタンと同じ高さに強制統一 */
        color: #fff;
        font-weight: 600;
        text-align: center;
        text-decoration: none; /* ★aタグの下線を消す */
        width: 260px;
        box-sizing: border-box;
        transition: background-color 0.3s ease; /* ★背景色の変更を滑らかにする */
    }

    /* ★ホバー時に背景色のopacity（透明度）を0.5に変更 */
    .contact_tel:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .contact_tel img {
        width: 24px;
    }
    .contact_tel div {
        width: calc(100% - 30px);
        line-height: 1.2;
    }

    /* ▼ 内側をspanに変更したため、クラス名に合わせて調整 ▼ */
    .contact_tel div .tel-number {
        display: block;
        color: #fff;
        font-size: 22px;
        text-align: center;
        text-shadow: 2px 2px 7px rgba(0,0,0,0.12);
    }

    .contact_tel div .tel-note {
        display: block;
        font-size: 10px;
        text-shadow: 2px 2px 4px rgba(0,0,0,0.12);
    }

    /* ▼ ポイント：スクロール時はPCでもheader_ctaを隠す ▼ */
    .header.is-scrolled .header_cta {
        display: none;
    }

    /* ▼ 2. 予約ボタン側の調整 ▼ */
    .btn-wrapper.header-btn-wrapper {
        width: 260px;
    }

    .header-btn-wrapper .btn {
        height: 64px;        /* ★ 電話番号と同じ高さに強制統一 */
        min-height: auto;    /* 共通CSSのmin-heightを打ち消す */
        padding: 0 16px;     /* 上下paddingを0にし、flexの自動中央揃えに任せる */
        box-shadow: 0 4px 10px rgba(27, 44, 69, 0.1);
        transition: opacity 0.3s ease;
        box-sizing: border-box;
    }

    /* ▼ ホバー時はシンプルに透過させるだけ ▼ */
    .header-btn-wrapper .btn:hover,
    .header-btn-wrapper .btn:focus-visible,
    .header-btn-wrapper .btn.is-hovering {
        opacity: 0.8;
        transform: none;
        box-shadow: 0 4px 10px rgba(27, 44, 69, 0.1);
    }

    /* ボタンの後光（before）が広がる動きも止める */
    .header-btn-wrapper .btn:hover::before,
    .header-btn-wrapper .btn:focus-visible::before,
    .header-btn-wrapper .btn.is-hovering::before {
        opacity: 1;
        filter: blur(9px);
        transform: none;
    }

    /* バッジの調整 */
    .header-btn-wrapper .btn-badge {
        top: -12px;
        font-size: 11px;
        padding: 4px 12px;
        min-width: auto;
        min-height: auto;
    }

    /* 横の電話アイコンの存在感に負けないよう、ボタン内のアイコンを少し大きく */
    .header-btn-wrapper .btn-icon {
        width: 18px;
        flex-basis: 18px;
    }

    /* 電話番号のテキスト感に負けないよう、ボタンの文字を少し大きく */
    .header-btn-wrapper .btn-label {
        font-size: 16px!important;
        height: auto!important;
        line-height: 1!important;
        overflow: visible;
    }
    .header-btn-wrapper .btn-label span {
        font-size: 10px;
    }
}

/* =========================================
   ハンバーガーボタン：PC/SP・トップ/スクロールで出し分け
   ========================================= */
.nav-trigger {
    display: none; /* デフォルト非表示。必要な条件でだけ出す */
    justify-content: center;
    align-items: center;
    position: relative;
    width: 32px;
    height: 32px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin-left: 8px;
    z-index: 100;
}

/* SP：トップ・スクロール問わず常に表示 */
@media (max-width: 768px) {
    .nav-trigger { display: flex; }
}

/* PC：スクロール時のみ表示 */
@media (min-width: 769px) {
    .header.is-scrolled .nav-trigger {
        display: flex;
    }
}

.nav-trigger-line {
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: #fff; /* トップ時(SP)は白文字背景なので白線 */
    transition: all 0.3s ease;
}
.nav-trigger-line:nth-child(1) { transform: translateY(-6px); }
.nav-trigger-line:nth-child(2) { transform: translateY(6px); }

.nav-trigger.is-active .nav-trigger-line {
    background-color: #A5B8C9;
}
.nav-trigger.is-active .nav-trigger-line:nth-child(1) {
    transform: translateY(0) rotate(45deg);
}
.nav-trigger.is-active .nav-trigger-line:nth-child(2) {
    transform: translateY(0) rotate(-45deg);
}

/* =========================================
   展開メニュー（sp-nav）※ PC/SP共通でそのまま流用
   ========================================= */
.sp-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(19, 18, 19, 0.6);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 90;
}
.sp-nav.is-active {
    opacity: 1;
    visibility: visible;
}

.sp-nav__inner {
    background-color: #fff;
    width: 90%;
    margin: 0 0 0 auto;
    padding: 80px 40px;
    border-radius: 16px 0 0 16px;
    transform: translateX(100vw);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.sp-nav.is-active .sp-nav__inner {
    transform: translateX(0);
}

.sp-nav__list {
    margin-bottom: 24px;
    text-align: center;
}
.sp-nav__list a {
    display: block;
    padding: 10px 0;
    font-size: 18px;
    font-weight: bold;
}

.sp-nav__list a:hover {
    color: #19BDB2;
}

.sp-nav__cta {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 32px;
}
.sp-nav__cta-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}
.sp-nav__cta-item .btn-wrapper { width: 100%; }
.sp-nav__cta-text {
    font-size: 11px;
    font-weight: bold;
    color: #19BDB2;
    margin: 8px 0 0;
    text-align: center;
}

@media (max-width: 768px) {
    .sp-nav__inner {
        padding: 58px 40px;
    }
    .sp-nav__list a {
        padding: 8px 0;
    }
}

/* =========================================
   Footer
========================================= */
.footer {
    background-color: #fff;
    padding: 80px 0 40px;
}

.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

/* ▼ 左側：情報エリア ▼ */
.footer__logo {
    display: block;
    width: 200px;
    margin-bottom: 24px;
}

.footer__logo img {
    width: 100%;
    height: auto;
}

.footer__address {
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
}

/* ▼ 右側：ナビゲーションエリア ▼ */
.footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__list a {
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer__list a:hover {
    color: #19BDB2;
}

/* ▼ コピーライト ▼ */
.footer__bottom {
    display: flex;
    justify-content: flex-start;
}

.footer__copy {
    font-size: 12px;
    font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 40px;
    }

    .footer__content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        margin-bottom: 48px;
    }

    /* 情報エリア（ロゴ＋住所） */
    .footer__info {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer__logo {
        width: 150px;
        margin: 0 auto 16px;
    }

    .footer__address {
        font-size: 13px;
    }

    /* ナビゲーションメニュー */
    .footer__list {
        align-items: center;
        gap: 16px;
        text-align: center;
    }

    /* コピーライト */
    .footer__bottom {
        justify-content: center;
    }

    .footer__copy {
        font-size: 11px;
    }

}


/************************************
form共通
************************************/
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="date"],
input[type="number"],
input[type="file"],
select,
textarea {
  border: 1px solid #E2E1E1;
  border-radius: 4px;
  padding: 20px 15px;
  width: 100%;
  font-size: 16px;
  background: #fff;
}
input[type="file"],
select {
	cursor: pointer;
}
input[type="text"]:placeholder-shown,
input[type="email"]:placeholder-shown,
input[type="tel"]:placeholder-shown,
input[type="password"]:placeholder-shown,
input[type="search"]:placeholder-shown,
input[type="date"]:placeholder-shown,
input[type="number"]:placeholder-shown,
select:placeholder-shown,
textarea:placeholder-shown {

}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
input[type="number"]:focus,
select:focus,
textarea:focus {
	border-color: #A5BDD2;
	box-shadow: 0 2px 20px rgba(112,143,170,0.18);
}

button[type="submit"] {
	display: block;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	background: #19BDB2;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	padding: 20px 5%;
	border: 2px solid #19BDB2;
	border-radius: 4px;
	transition: .3s;
}
button[type="submit"].back {
	background: #fff;
	color: #101112;
	font-weight: normal;
	border: 2px solid #DDEAF8;
	margin-top: 10px;
}
button[type="submit"]:hover {
	background: #fff;
	color: #19BDB2;
}
button[type="submit"].back:hover {
	color: #19BDB2;
	border: 2px solid #19BDB2;
}

/** フォームチェックボックス関連 **/
.radio_input,
.checkbox_input {
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
	display: none;
}
label.label_style,
label.radio_label_style {
	position: relative;
	cursor: pointer;
	display: block;
	border: 1px solid #DDEAF8;
	border-radius: 4px;
	padding: 15px 15px 15px 45px;
	font-size: 16px;
	color: rgba(27,51,69,0.5);
	margin-bottom: 10px;
}
label.label_style::before,
label.label_style::after {
	content: "";
	display: block;
	position: absolute;
}
label.label_style::before {
	background: #fff;
	border-radius: 4px;
	width: 16px;
	height: 16px;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	border: 1px solid #DDEAF8;
}
label.label_style::after {
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	height: 5px;
	width: 8px;
	top: 35%;
	left: 22px;
	transform: rotate(-45deg) translateY(-50%);
	display: none;
}

label.radio_label_style::before,
label.radio_label_style::after {
	position: absolute;
  content: '';
  display: block;
  border-radius: 50%;
}
label.radio_label_style::before {
	width: 16px;
  height: 16px;
  background: #fff;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  border: 1px solid #DDEAF8;
}
label.radio_label_style::after {
	width: 6px;
  height: 6px;
  background: #fff;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.checkbox_input:checked+.label_style,
.radio_input:checked+.radio_label_style {
	background: #fff;
	color: #1B3345;
	font-weight: bold;
}
.checkbox_input:checked+.label_style::before {
	background: #1B3345;
	border: 1px solid #DDEAF8;
}
.checkbox_input:checked+.label_style::after {
	display: block;
}
label.label_style:hover,
label.radio_label_style:hover {
	background: #DDEAF8!important;
}
label.radio_label_style::before,
label.radio_label_style::after {
  position: absolute;
  content: '';
  display: block;
  border-radius: 50%;
}
label.radio_label_style::before {
  width: 16px;
  height: 16px;
  background: #fff;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  border: 1px solid #DDEAF8;
}
label.radio_label_style::after {
  width: 6px;
  height: 6px;
  background: #fff;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}
.radio_input:checked+.radio_label_style::before {
  background: #1B3345;
  border: none;
}

/* ファイルアップロードエリアのスタイル */
.file-upload-area {
	display: block;
	border: 2px solid #DDEAF8;
	border-radius: 8px;
	padding: 30px;
	text-align: center;
	background-color: #fff;
	cursor: pointer;
	transition: background-color 0.2s ease-in-out;
}
.file-upload-area:hover {
	background-color: #DDEAF8;
}
/* アイコン */
.upload-icon {
	width: 32px;
	height: 32px;
	margin: 0 auto 15px;
}
/* テキスト */
.upload-text {
	margin: 0 0 5px 0;
	font-size: 14px;
}
.upload-limit {
	font-size: 12px;
	color: rgba(27,51,69,0.5);
	margin: 0;
}

/* 実際のinput[type=file]を非表示にする */
.hidden-file-input {
	display: none;
}






@media (max-width: 768px) {



	/************************************
	footer
	************************************/
	.footer-inner{
		width: 95%;
		margin: 40px auto;
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.footer-copy {
		margin-bottom: 24px;
	}
	.footer-nav-link {
		margin: 0 10px;
	}
	.footer-graphic {
		margin-bottom: -4px;
	}



	/************************************
	form関連
	************************************/

	input[type="text"],
	input[type="email"],
	input[type="tel"],
	input[type="password"],
	input[type="date"],
	input[type="number"],
	input[type="file"],
	select,
	textarea {
	padding: 15px 10px;
	font-size: 16px;
	}

	/** フォームチェックボックス関連 **/
	label.label_style,
	label.radio_label_style {
		font-size: 16px;
	}


}