@charset "utf-8";
/* CSS Document */

@import url("https://use.typekit.net/aqc0hai.css");

/* ------------------------------

	画像版ナビゲーションリンク

------------------------------ */

/* ナビゲーション全体の背景 */
.nav-wrapper {
    width: 100%;
    background-image: url('../x_imgs/common/navigation-back.jpg'); /* 背景画像のパス */
    background-size: 100% auto; /* 横幅100%、高さは自動調整 */
    background-position: center;
    background-repeat: no-repeat;
    padding: 0; /* 余白を削除 */
    display: flex;
    justify-content: center;
    align-items: center;
	    margin: 0 auto;
    position: relative;
}

.nav-wrapper.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* PC版ナビゲーション */
.pc-nav {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto; /* 完全に中央配置 */
}

/* PC版ナビゲーション画像 */
.pc-nav img {
    width: 100%;
    height: auto;
    display: block; /* 画像下の余白を防ぐ */
}

/* PC版ナビゲーションのリンク配置（8分割） */
.nav-link {
    position: absolute;
    top: 0;
    bottom: 0;
    /* background: rgba(255, 0, 0, 0.2); /* 確認用（後で none に） */
	background: none;
}

/* 各リンクの幅と位置 */
.link1 { width: 12.5%; left: 0%; }
.link2 { width: 12.5%; left: 12.5%; }
.link3 { width: 12.5%; left: 25%; }
.link4 { width: 12.5%; left: 37.5%; }
.link5 { width: 12.5%; left: 50%; }
.link6 { width: 12.5%; left: 62.5%; }
.link7 { width: 12.5%; left: 75%; }
.link8 { width: 12.5%; left: 87.5%; }

/* スマホ版ナビゲーション */
.sp-nav {
    position: relative;
    width: 100%;
    display: none; /* 初期状態で非表示 */
}

/* スマホ版ナビゲーション画像 */
.sp-nav img {
    width: 100%; /* 画面幅にフィット */
    height: auto;
    display: block; /* 画像下の余白を防ぐ */
}

/* スマホ版ナビゲーションのリンク配置（4分割） */
.sp-link1 { width: 25%; left: 0%; }
.sp-link2 { width: 25%; left: 25%; }
.sp-link3 { width: 25%; left: 50%; }
.sp-link4 { width: 25%; left: 75%; }

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
    .pc-nav {
        display: none; /* PC版を非表示 */
    }
    .sp-nav {
        display: block; /* スマホ版を表示 */
    }
	.nav-wrapper.fixed {
		display: none;
		}
}


/* ------------------------------

	ナビゲーションメニュー（ＰＣ）

------------------------------ */

.navi-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(45deg, #deb51b, #fff6c5, #deb51b, #fff6c5);
}

.navi-wrapper.fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.navi-list {
    list-style: none;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
	max-width: 1200px;
    height: auto;
    background: transparent;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    /*box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.5);*/
}

.navi-list li {
    flex: 1 0 calc(100% / 6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    height: 60px;
	font-size:0.8rem;
    transition: background-color 0.7s ease;
	font-weight: bold;
	color: #000;
	text-shadow: 0px -1px 1px rgba(255,255,255,0.7);
}

.navi-list li.sp {
    flex: 1 0 calc(100% / 4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    height: 50px;
	font-size:0.7rem;
    transition: background-color 0.7s ease;
}

.navi-list li.ck {
	background: linear-gradient(145deg, #deb51b, #fff6c5, #deb51b, #fff6c5);
    color: #000;
	text-shadow: 0px -1px 1px rgba(255,255.255,0.7);
}

.navi-list li a {
    display: flex;
    flex-direction: row; /* 横並び */
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: inherit;
    box-sizing: border-box;
	transition: background-color 0.4s ease;
}

.navi-list li i {
    font-size: 1rem; /* アイコンのサイズ調整 */
	margin-right: 5px;
}

.navi-list li a:hover {
	background: linear-gradient(145deg, #deb51b, #fff6c5, #deb51b, #fff6c5);
    color: #000;
	text-shadow: 0px -1px 1px rgba(255,255.255,0.7);
    transition: background-color 0.4s ease;
}

.navi-list li p {
    margin: 0;
    margin-top: -5px;
}

.navi-list li:nth-child(8n) {
    border-right: none;
}

/* PC/SP 表示切替 */
.pcnone { display: none; }
@media (max-width: 768px) { .pcnone { display: block; } }
.spnone { display: block; }
@media (max-width: 768px) { .spnone { display: none; } }

/* ------------------------------

	パンくずリスト

------------------------------ */

#breadcrumb {
    width: 100%;
    max-width: 1280px;
    margin: 0px auto;
    padding: 10px 15px;
    overflow-x: auto;
    white-space: nowrap;

	font-size: 0.6rem;
	color:#E4C13B;
}

.archive #breadcrumb {
    padding: 0;
    background: transparent;
}

#breadcrumb ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
}

#breadcrumb li {
    display: inline;
    list-style: none;
    color: gray;
    margin-right: 4px;
    white-space: nowrap;
}

#breadcrumb li:last-child {
    margin-right: 0;
}

#breadcrumb li:after {
    padding: 0 6px;
    color: #E4C13B;
    font-family: FontAwesome;
    content: "\f0da";
}

#breadcrumb li:last-child:after {
    content: "";
}

#breadcrumb li a {
    text-decoration: none;
    color: #000;
    transition: color 0.3s ease;
}

#breadcrumb li:first-child a:before {
    padding-right: 4px;
    font-family: FontAwesome;
    font-weight: normal;
    content: "\f015";
}

#breadcrumb li a:hover {
    color: #E4C13B;
    text-decoration: none;
}

/* ------------------------------

	ハンバーガーメニュー

------------------------------ */

.hamburger-menu {
    position: fixed;
    top: 0;
    right: -5px;
    z-index: 10000;
}

.hamburger {
    font-size: 30px;
    margin: 5px;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    color: #B55B28;
    transition: color 0.5s, transform 0.3s, font-size 0.3s, letter-spacing 0.3s; /* スムーズな切り替え */
    padding: 0 5px 5px 0px;
    display: inline-block;
    line-height: 40px; /* 縦中央揃え */
    text-align: center;
    text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, -1px -1px 0 #fff;
    width: 40px; /* 幅を固定 */
    height: 40px; /* 高さを固定 */
    box-sizing: border-box; /* 内側の余白も含めて計算 */
    letter-spacing: 0; /* 文字間のスペースを初期化 */
}

.hamburger.open {
    transform: rotate(0deg) translateX(-10px); /* 左に5px移動 */
    letter-spacing: -1px; /* ×の見た目を自然に */
    font-size: 46px; /* ×のサイズを調整 */
	margin-right: -2px;
}

/* メニューコンテンツ */
.menu-content {
    position: fixed;
    top: 0;
	margin-top: -10px;
    right: -100%;
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: 0.5s;
    z-index: 999;
    padding-top: 60px;
    overflow-y: auto;
    background-image: url('../x_imgs/common/back-header.jpg'); /* 背景画像のパス */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

}

/* メディアクエリ */
@media (max-width: 599px) {
    .menu-content {
        right: -100%;
        width: 85%;
        opacity: 0.9;
        padding-top: 60px;
        overflow-y: auto;
    }
}

.menu-content p {
    width: 95%;
    margin: -35px auto 5px auto;
    text-align: center;
}

.menu-content p img {
    width: 50%;
    display: inline-block;
}

.menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0 auto 15px auto;
    width: 92%;
    z-index: 999;
}

.menu-content li a {
    display: block;
    width: 100%;
	margin-bottom: 4px;
    box-sizing: border-box;
    border: 1px #fff solid;
    padding: 18px 8px;
    text-decoration: none;
    font-size: 0.8rem;
    color: #fff;
	font-weight: bold;
	background: linear-gradient(45deg, #deb51b, #fff6c5, #deb51b, #fff6c5);
}

.menu-content ul::after {
    content: "";
    display: table;
    clear: both;
}

.menu-content ul li:nth-of-type(2n + 3) {
    clear: left;
}

/* サブメニュー */
.submenu {
    position: relative;
	margin-bottom: -15px;
}

.submenu i {
    font-size: 1rem; /* アイコンのサイズ調整 */
	margin-right: 5px;
}

.plus-icon {
    float: right;
    font-size: 1rem;
    margin-right: 10px;
    cursor: pointer;
}

ul .submenu-content {
    width: 95%;
    margin-left: auto;
    margin-right: 0;
}

.submenu-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0;
}

.submenu-content i {
    font-size: 1rem; /* アイコンのサイズ調整 */
	margin-right: 5px;
}

.submenu.open .submenu-content {
    max-height: 400px;
}

.submenu-content li a {
    padding: 15px 10px;
}

.submenu-content li a:hover {
    background-color: #fff;
    color: #9d887d;
}

/* コンテナ全体 */
.one_contents_wrapper {
    display: flex; /* 横並び */
    flex-wrap: wrap; /* 行を折り返し可能に */
    justify-content: space-between; /* 要素間に均等な間隔を確保 */
    margin: 0 auto;
    gap: 3px; /* 横と縦の間隔を2pxに設定 */
    width: 92%; /* コンテナ全体の幅 */
    box-sizing: border-box;
}

/* 個別のブロック */
.one_contents {
    display: block; /* ブロック要素に設定 */
    width: calc(50% - 3px); /* 横幅を計算 */
    margin-bottom: 4px; /* 下部マージンを設定 */
    box-sizing: border-box; /* パディングとボーダーを含む計算 */
    border: 1px #fff solid; /* 枠線 */
    text-align: left; /* 中央揃え */
    transition: background-color 0.3s, transform 0.3s; /* アニメーション */
    overflow: hidden; /* テキストがはみ出さないように */
}

.one_contents i {
    font-size: 1rem; /* アイコンのサイズ調整 */
	margin-right: 5px;
}

/* リンク全体を拡張 */
.one_contents a {
    display: flex; /* 全体をクリック可能にし、中央揃えを有効化 */
    align-items: center; /* 縦中央揃え */
    justify-content: left; /* 横中央揃え */
    width: 100%; /* 親の幅いっぱい */
    height: 100%; /* 親の高さいっぱい */
	padding: 18px 8px;
    text-decoration: none; /* アンダーラインを削除 */
    font-size: 0.8rem;
	font-weight: bold;
	background: #BCBB83;
    color: #fff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
}

/* オーバーレイ */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
}

body.no-scroll {
    overflow: hidden;
}

/* ------------------------------

	ページボトム固定リンク

------------------------------ */

/* ページトップ */
.page-top {
    position: fixed;
    width: 100%;
    bottom: 0;
background: linear-gradient(45deg, #deb51b, #fff6c5, #deb51b, #fff6c5);
    font-size: 100%;
    color: #000;
    opacity: 0.8;
    padding: 8px 11px;
    z-index: 1000;
    display: flex;
    flex-direction: column; /* 縦並びのレイアウトを維持 */
    align-items: center; /* 中央揃え */
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    visibility: hidden;
}

.top-block {
    width: 100%;
    text-align: center;
	padding: 0px 0px;
	color:#000;
	text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.7);
	font-size: 1.8rem;
}

/* 横並びにする要素をラップするdiv */
.horizontal-content {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.page-top img {
    height: 60px;
    cursor: pointer;
}

@media screen and (max-width: 768px) {
	.top-block {
		font-size: 1rem;
	}

    .page-top img {
        height: 30px;
        cursor: pointer;
    }
}


a.left-image {
    margin-left: 3px;
    border: 1px #ccc solid;
    padding: 5px;
/*    background: linear-gradient(45deg, #deb51b, #fff6c5, #deb51b, #fff6c5);*/
	background-image: url('../x_imgs/common/navigation-back.jpg'); /* 背景画像のパス */
	background-size: 100% 100%; /* 横幅・高さともに100%にフィット */
    background-position: center;
    color: #fff;
    width: 30%;
    box-sizing: border-box;
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    z-index: 2000;
}
a.center-image {
    margin-left: 3px;
    border: 1px #ccc solid;
    padding: 5px;
/*	background: linear-gradient(to bottom, var(--f-color) 0%, var(--s-color) 100%);*/
	background: linear-gradient(to bottom, #FEAD3C, #8B5A2B);
    color: #fff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    width: calc(100% - 70px);
	margin-right: 6px;
    box-sizing: border-box;
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    z-index: 2000;
}

a.right-image {
    margin-right: 3px;
    border: 2px solid #eee;
    padding: 5px;
/*    background: linear-gradient(45deg, #deb51b, #fff6c5, #deb51b, #fff6c5);*/
	background: linear-gradient(to bottom, #FEAD3C, #8B5A2B);
	background-size: 100% 100%; /* 横幅・高さともに100%にフィット */
    background-position: center;
    color: #fff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    width: 60px;
    box-sizing: border-box;
    font-size: 1.8rem;
    text-align: center;
    text-decoration: none;
    z-index: 2000;
}


/* 固定リンク */
.reserve-tel,
.reserve-line,
.reserve-link {
    position: fixed;
	right:10px;
    text-align: center;
    padding: 0;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    transform: translateY(100%);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    width: 55px;
    font-weight: bold;
}

.fixed-wrap {
    position: fixed;
    width: 400px;
    bottom: 10px;
    right: 1%;
    padding: 0px 10px 10px 10px;
	border-radius: 8px;
	border: 1px #ccc5b2 solid;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    flex-direction: column; /* 全体は縦並び */
    justify-content: space-around;
    align-items: center;
    gap: 10px; /* 各セクションの間隔 */
    background: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
	visibility: hidden;
}

@media screen and (max-width: 768px) {

	.fixed-wrap {
		position: fixed;
		width: calc(99% - 1%);
		bottom: 10px;
		left: 1%;
		padding: 0px 10px 10px 10px;
		border-radius: 8px;
		border: 1px #ccc5b2 solid;
		cursor: pointer;
		z-index: 1000;
		display: flex;
		flex-direction: column; /* 全体は縦並び */
		justify-content: space-around;
		align-items: center;
		gap: 10px; /* 各セクションの間隔 */
		background: #fff;
		transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
	}
}

.fixed-title {
    display: flex; /* 横並びに配置 */
    justify-content: space-between; /* 左右に分割 */
    align-items: center; /* 縦方向を中央揃え */
    width: 100%; /* コンテナ全体の幅を占有 */
    padding: 10px 10px 0px 10px; /* 上下左右の余白 */
    background-color: #fff; /* 背景色（任意） */
    font-size: 1rem; /* 文字サイズ */
    color: #000; /* 文字色 */
    box-sizing: border-box; /* パディングを含むサイズ計算 */
}

.fixed-title img{
	width:100%;
	}

.fixed-title-left {
    flex: 4; /* 左側を30%にする（3:7の比率を指定） */
    text-align: right; /* 右寄せ */
    font-weight: bold; /* 強調（任意） */
    padding-right: 5px;
}

.fixed-title-right {
    flex: 6; /* 右側を70%にする */
    text-align: left; /* 左寄せ */
    font-weight: bold; /* 強調（任意） */
    font-size: 1.5rem;
    color: #007BFF; /* 任意: 電話番号を目立たせる色 */
    padding-left: 5px;
}


.fixed-title-right span{
	font-size:0.8rem;
	color:#000;
	display: block;
	margin-bottom: -2px;
	}

.fixed-buttons {
    display: flex; /* 横並びにする */
    gap: 10px; /* ボタン間の余白 */
    width: 100%; /* 必要に応じて全幅に調整 */
    justify-content: space-around;
}

.fixed-Tel,
.fixed-Line,
.fixed-Reserve,
.fixed-X,
.fixed-Insta {
    flex: 1; /* 均等に幅を取る */
    max-width: 50%; /* 各要素の最大幅を50%に制限 */
    padding: 10px 20px;
    font-size: 0.8rem;
    display: flex;
    justify-content: center; /* テキストを中央揃え */
    align-items: center; /* 垂直方向中央揃え */
    box-sizing: border-box;
    text-align: center;
    background: #f0f0f0; /* 任意: ボタンの背景色 */
    border: 1px solid #ccc; /* 任意: ボタンの枠線 */
    border-radius: 5px; /* 任意: ボタンの角を丸くする */
}



.fixed-Tel {
    background-color: var(--base-color-tel);
    color: var(--font-color-tel);
}

.fixed-Line {
    background-color: var(--base-color-line);
    color: var(--font-color-line);
}

.fixed-Reserve {
    background-color: var(--base-color-reserve);
    color: var(--font-color-reserve);
}

.fixed-X {
    background-color: var(--base-color-x);
    color: var(--font-color-x);
}

.fixed-Insta {
    background-color: var(--base-color-insta);
    color: var(--font-color-insta);
}

.reserve-tel img,
.reserve-line img,
.reserve-link img{

	width:55px;
	height: auto;
	}

.reserve-tel {
    bottom: 60px;
}

.reserve-line {
    bottom: 120px;
}

.reserve-link {
    bottom: 180px;
}

/* ------------------------------

	LINE登録リンク

------------------------------ */

.line-wrap {
    position: fixed;
    bottom: 15px;
    z-index: 100000;
    width: 96%;
	margin: 0px auto;
    background: #fff;
	text-align: center;
    border: 1px #666 solid;
	border-radius: 8px;
    padding: 2px;
    box-sizing: border-box;
    transition: opacity 0.5s ease;
    /* フェードアウトのためのCSS */
    left: 50%;
    transform: translateX(-50%);
	}
	
.line-wrap .left{
	display: inline-block;
	width:100px;
	vertical-align: top;
	}

.line-wrap .left img{
	width:80px;
	height: auto;
	}

.line-wrap .right{
	display: inline-block;
	width: cals(100%-100px);
	text-align: left;
	font-size:16px;
	line-height: 20px;
	}

.line-wrap .right b{
	display: block;
	margin: 8px 0px;
	font-size:18px;
	}

.line-wrap .right a{
	display: inline-block;
	border: 1px #666 solid;
	padding: 6px;
	margin: 8px 3px 0px 0px;
	text-decoration: none;
	color:#000;
	background:#F9D1D2;
	}

.line-wrap .right a.gray{
	background: #eee;
	cursor: pointer;
	}
