@charset "UTF-8";

/*-------------------------------------------
共通部分
-------------------------------------------*/
:root {
	--txt-c: #0a162b; /* 文字の色 */
	--bg-c: #fff;
/* 	--bg-c2: #095960; */
	--bg-c2: #191970; /* 紺 */
 }
* {
	margin: 0;
	padding: 0;
 }

 html {
    font-size: 16px;
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGP明朝B, serif;
	color: var(--txt-c);
	font-style: normal;
	background-color: var(--bg-c);
    scroll-behavior: smooth;
   }
 body {
	font-size: 100%;
	padding-top: 80px;
 }
@media screen and (max-width: 768px) {
 body {
	padding-top: 60px;
 }
}
 li {
	list-style: none;
 }
 a {
	display: inline-block;
	transition: all 0.3s;
 }
 a:hover {
	opacity: 0.8;
	transition: color 0.3s ease;
 }

 img {
	width: 100%;
	height: auto;
	display: block;
 }

[id] {
  scroll-margin-top: 80px; /* 固定ヘッダーの高さ分に合わせる */
}

/* 要素が少ないとフッターが上がるのを防ぐ */
html, body {
    height: 100%;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.footer {
    margin-top: auto;
}
/* 要素が少ないとフッターが上がるのを防ぐ ここまで*/

/*-------------------------------------------
pc・sp切り替え
-------------------------------------------*/
 .pc-only {
	 display: block;
 }
 .sp-only {
	 display: none;
 }

@media screen and (max-width: 768px) {
	.pc-only {
		display: none;
	}
	.sp-only {
		display: block;
	}
}

/*-------------------------------------------
全てに適応される記述
-------------------------------------------*/
.inner {
	width: 100%;
    max-width: 1080px;
    margin-inline: auto;
    padding-inline: 15px;
}

.main__title,.section_title {
	font-size: 2rem;
	margin-bottom: 20px;
	position: relative;
}

@media screen and (max-width: 768px) {
	.main__title,.section_title {
		font-size: 1.6rem;	
	}
}

.tight-spacing {
	letter-spacing: -0.05em;
}

.mt-100 {
	margin-top: 100px;
}
/*-------------------------------------------
header
-------------------------------------------*/

.header {
    height: 80px;
    letter-spacing: 0.3px;
	position: fixed;
	top: 0;
	z-index: 999;
	width: 100%;
	background-color: #fff;
}

.header__inner {
	height: inherit;
	align-items: center;
	padding-top: 0;
	max-width: 1400px;
	margin-inline: auto;
}

.pc__header {
	display: flex;
    align-items: center;
	height: inherit;
	padding-inline: 20px;
}

.pc-nav {
	height: inherit;
}

.pc-nav ul {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	height: inherit;
	width: 100%;
	font-size: 1.2rem;
	font-weight: 600;
}
.pc-nav ul li {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* -----------------------------------  li間の縦線 */
.pc-nav ul li {
    position: relative; 
    display: inline-block; 
    padding: 10px 8px;
}

.pc-nav ul li:not(:last-child)::after {
    content: ""; 
    display: block;
    position: absolute;
    width: 1px; 
    height: 60%; 
    background-color: #cccccc; 
    top: 50%;
    right: 0;
    transform: translateY(-50%); 
}

.header__logo {
	    font-size: 1.5rem;
	color:var(--bg-c2);
	font-weight:bold;
}

.nav__link {
	height: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
    position: relative; 
    z-index: 2;
}

.nav__link:after {
    background-color: #293855;
    top: 46px;
    content: "";
    display: block;
    height: 5px;
    left: 0;
    opacity: 0;
    position: absolute;
    transition: all .35s 
ease-in-out;
    width: 100%;
}

.nav__link:hover:after {
     opacity: 1;
}

.nav__link.is_active {
    color: #ca9a50;
}
.nav__link.is_active:after {
    background-color: #ca9a50; /* 下線の色をゴールドに上書き */
    opacity: 1; /* 常時表示（ホバーしなくても表示） */
}

.sp__header {
	display: flex;
    align-items: center;
	height: inherit;
	padding-inline: 20px;
	justify-content: space-between;
}
.sp-nav {
	height: inherit;
}

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

/*-------------------------------------------
ハンバーガーメニュー
-------------------------------------------*/
.hamburger-menu {
	height: inherit;
    padding-top: 5px;
}
.hamburger-icon {
	display: inline-block;
	cursor: pointer;
	position: relative;
	width: 50px;
	height: auto;
	z-index: 1000;
 }
.hamburger-icon span {
	display: block;
	position: absolute;
	width: 50px;
	height: 2px;
	background-color: var(--txt-c);
	border-radius: 2px;
	transition: all 0.2s ease-in-out;
}
.hamburger-icon span:nth-child(1) {
	top: 0;
}
.hamburger-icon span:nth-child(2) {
	top: 14px;
}
/* ハンバーガーメニューが開かれたとき */
.hamburger-icon.active span:nth-child(1) {
	top: 10px;
	transform: rotate(30deg);
}

.hamburger-icon.active span:nth-child(2) {
	top: 10px;
	transform: rotate(-30deg);
}

.mobile-nav {
	position: fixed;
	top: 0;
	right: -220px; 
	width: 220px;
	height: 100vh; 
	background-color: #fff;
	transition: right 0.3s ease-in-out;
	place-content: center;
	transition: all 0.3s ease-in-out;
}
/* メニューが開かれたとき */
.mobile-nav.active {
	transform: translateX(-100%);
	transition: all 0.3s ease-in-out;
}
.mobile-nav.active ul {
	padding-inline: 10px;
} 
.mobile-nav.active li {
	width: 100%;
	border-bottom: 1px solid #ddd;
	padding-block: 20px;
} 

/*-------------------------------------------
footer
-------------------------------------------*/
.footer {
	background-color: var(--bg-c2);
	color: #fff;
	margin-top: 50px;
	padding-bottom: 80px;
}
.footer__inner {
	max-width: 610px;
    margin-inline: auto;
    padding-top: 50px;
	padding-bottom:  50px;
	display: flex;
    align-items: center;
    justify-content: space-around;
	gap:20px;
}
.footer__nav {
	height: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}
.footer__nav ul {
	height: inherit;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 16px;
}
.footer__nav ul li{
	height: inherit;
}

.footer__nav a:hover {
    text-decoration: underline;
}

.footer__logo {
	width: 150px;
	height: auto;
}
.footer__copy {
	text-align: center;
}

.icon-flex {
	display: flex;
	align-items: center;
}
.icon-flex span {
	padding-right: 5px; 
}

/* ----------------------------------------
   固定CTAフローティングバナーとTOPボタン
---------------------------------------- */

/* --- 1. 固定バナーコンテナ (PCでは非表示) --- */
#fixed-cta {
    position: fixed; 
    bottom: 0;      
    left: 0;
    width: 100%;
    z-index: 990;   
    background: #fff;
    padding: 10px; 
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* --- 2. ボタンのコンテナとレイアウト --- */
.cta-buttons {
    display: flex;
    gap: 8px; 
    width: 100%;
    max-width: 600px; 
    margin: 0 auto; 
}
.cta-buttons span {
    font-size: 0.85rem;
}
.cta-button {
    flex: 1; 
    display: flex;
    flex-direction: row; 
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    padding: 16px 0;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.cta-button i {
    margin-right: 6px;
    font-size: 1.1rem;
}

/* 電話相談 (赤茶色) */
.cta-button--tel {
    background-color: #a93226; 
}
.cta-button--tel:hover {
    background-color: #8c2a1f;
}
/* pc用　電話相談 */
.pc-only .cta-button--tel {
	background-color: transparent;
	color: #2d2d2d; 
	border-left: 5px solid #a93226; 
    border-radius: 0;
}
/* LINE相談 (緑色) */
.cta-button--line {
    background-color: #00b900; 
}
.cta-button--line:hover {
    background-color: #009900;
}

/* ご予約 (水色) */
.cta-button--reserve {
    background-color: #38c1da; 
}
.cta-button--reserve:hover {
    background-color: #2daabf;
}

/* 営業時間情報 */
.cta-info {
    text-align: center;
    font-size: .72rem;
    color: #666;
    margin-top: 10px;
}

/* --- 3. ページトップへ戻るボタン --- */
#page-top {
    position: fixed;
    right: 15px;
    z-index: 995;
    cursor: pointer;
    bottom: 30px;
}

#page-top a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: #333333; 
    color: #fff;
    text-decoration: none;
    border-radius: 8px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    font-size: 1.2rem;
}

#page-top a:hover {
    background-color: #555555;
}

/* モバイルでの位置調整 */
@media (max-width: 767px) {
    #page-top {
        right: 15px; 
        bottom: 110px; 
    }
}

