@charset "UTF-8";

/*
Theme Name: dokigawabase
Theme URI: https://www.dokigawabase.com
Description: DOKIGAWA BASE default theme for WordPress.
Author: LIVSERVER, Inc.
Author URI: https://www.livserver.com
Version: 1.0

*/
/*=================================
	#common
=================================*/
/* =========================================
   CSS変数（配色・フォント）
   文字色 #0C304A
   ========================================= */
:root {
    --color-main: #1A2D4A;
    /* --font-base: 'Noto Serif JP', serif; */
    --font-base: "Arial","メイリオ", Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
}

html {
    box-sizing: border-box;
	overflow: auto;
		-webkit-text-size-adjust: 100%;
		font-size: 16px;
		/* scroll-behavior: smooth; */
}

body {
    margin: 0;
    padding-top: 120px;
    font-family: var(--font-base);
    color: var(--color-main);
    line-height: 1.8;
    background-color: #fff;
    overflow-x: hidden;
}

*, *::before, *::after {
    box-sizing: inherit;
}

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

h1, h2, h3, h4, p {
    margin: 0;
    padding: 0;
}

button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

* {
 -webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	 box-sizing: border-box;
}
a {
	color: #2196F3;
	text-decoration: none;
    transition: 0.3s;
}
img {
	width: auto\9;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
	border: 0;
	-ms-interpolation-mode: bicubic;
}
.clear {
	clear: both;
}
p {
		display: block;
		margin: 0;
		padding: 0;
		text-align: justify;
}
ol {
	list-style-type: decimal;
}
strong { font-weight: bold; }
em { font-style: italic; }

blockquote.wp-embedded-content {
	display: none;
}
iframe.wp-embedded-content {
	position: relative !important;
	width: 100%;
	max-height: 120px;
}

.aligncenter {
		display: block;
		margin: 0 auto;
		text-align: center;
}
.alignright { float: right; }
.alignleft { float: left; }
 
img[class*="wp-image-"] {
		height: auto;
		max-width: 100%;
		margin: 8px auto;	
}
img[class*="attachment-"] {
		height: auto;
		max-width: 100%;
}
.clearfix {
		overflow: hidden;
		zoom: 1;
}
.clearfix:after {
		content: ""
		display: block;
		clear: both;
}
.wp-pagenavi {
		margin-top: 32px;
		text-align: center;
}
.wp-pagenavi span.current {
		color: #fff;
		border-radius: 4px;
		background: #002A59;
}
.wp-pagenavi a,
.wp-pagenavi span {
		display: inline-block;
		padding: 0.5em 0.7em 0.45em;
		color: #002A59;
		text-decoration: none;
		/* border: 1px solid #002A59; */
		border-radius: 4px;
		background: #f8f9fa;
		transition: all 0.3s ease;
}
.wp-pagenavi a:hover {
		color: #fff;
		background: #002A59;
}
.wp-pagenavi .pagination {
		display: block;
}
.wp-pagenavi .pagination ul {
		margin: 0;
		padding: 0;
		list-style: none;
		display: flex;
		justify-content: center;
		align-items: center;
}
.wp-pagenavi .pagination ul > li {
		margin-right: 4px;
}
.wp-pagenavi .pagination ul > li:last-child {
		margin-right: 0;
}
img,canvas,iframe,video,svg{max-width:100%}.overflow-container{overflow-y:scroll}.aspect-ratio{height:0;padding-top:56.25%;position:relative}.aspect-ratio--object{bottom:0;height:100%;left:0;position:absolute;right:0;top:0;width:100%;z-index:100}
/*記事・カテゴリ中の画像を要素内に収める*/
.article img,
.category-description img,
.wp-caption,
.hover-image{
  max-width:100%;
  height:auto;
}
blockquote {
    position:relative;
    border-top: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
	margin: 32px 0;
    padding: 0px 32px;
}
blockquote p {
	color: #666;
	font-size: 14px !important;
	font-style: italic;
}
blockquote:before{
    position:absolute;
	border-radius: 0 0 32px 0;
    background-color:#FFFFFF;
    color:#aaa;
    font-family: bootstrap-icons !important;
    content:'\F6B0';
    line-height:1;
    text-align:center;
    top: -20px;
    left: -10px;
    padding: 10px;
    font-size: 24px;
}
blockquote:after{
    position:absolute;
    right: -10px;
    bottom: -20px;
	border-radius: 0 0 32px 0;
    background-color:#FFFFFF;
    padding: 10px;
    color:#aaa;
    font-family: bootstrap-icons !important;
    content:'\F6B0';
    line-height: 1;
    text-align: center;
    font-size: 24px;
	transform: scale(-1, -1);
}
blockquote cite {
    display: block;
	margin: 16px 0;
    font-size: 13px;
    text-align: right;
    color: #666;
}
.pagination-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 0;
    position: relative;
    font-size: 16px;
    background: #fff; /* #ECEFF1; */
}

.pagination-block span,
.pagination-block a {
    display: block;
    width: auto;
    margin: 4px;
    padding: 12px 16px;
    color: #111;
    border-radius: 4px;
	border: 1px solid #111;
    background-color: #fff;
    text-decoration: none;
    text-align: center;
    line-height: 16px;
}

/* ページ番号 */
.pagination-block .pager {
    width: auto;
}

/* ホバー時 & 現在のページ */
.pagination-block a:hover,
.pagination-block .current  {
    color: #111;
    background-color: #f8f9fa;
	border: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

/* 前へ */
.pagination-block a.prev {
    margin-right: 16px;
}
/* 次へ */
.pagination-block a.next {
    margin-left: 16px;
}
/* 最初へ */
.pagination-block a.first {}
/* 最後へ */
.pagination-block a.last {}

/* Page x / y */
.pagination-block span.page_num {
    display: none;
}
/* .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */
/************************************
** WordPress Misc
************************************/
img.alignleft,
.wp-caption.alignleft {
  float: left;
  margin-right: 10px;
  margin-bottom: 10px;
}
img.alignright,
.wp-caption.alignright {
  float: right;
  margin-left: 10px;
  margin-bottom: 10px;
}


.wp-caption {
	margin: 16px auto;
  padding-top: 0; /* default 4px; */
  color: #607D8B;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #f0f0f0;
  text-align: center;
}

.wp-caption-text,
.gallery-caption {
  margin: 8px 0 !important;
  color: #546E7A;
  font-size: 80%;
  text-align: center;
}

.wp-caption img {
  margin: 0;
  padding: 0;
  border: 0 none;
}

.wp-caption-dd {
  margin: 0;
  padding: 0 4px 5px;
  font-size: 11px;
  line-height: 17px;
}

img.alignright {
    display: inline-block;
    margin: 0 0 1em 1.5em;
}
.youtube-block {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.youtube-block iframe{
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
	border-radius: 12px;
}
figure {
    margin: 0;
    padding: 0;
}
/*-------------------------
	ブログカード
-------------------------*/
a.tmt-blog-card {
	display: table;
	margin: 32px 0;
	border-radius: 4px;
	border: 1px solid #ddd;
		background: #fff;
	display: block;
	padding: 16px;
	position: relative;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition: 0.3s ease-in-out;
	-o-transition: 0.3s ease-in-out;
	transition: 0.3s ease-in-out;
	width: 100%;
	text-decoration: none;
}
	a.tmt-blog-card::after {
		background: #f8f9fa;
		border-radius: 0;
		color: #222;
		content: '詳しく見る';
		font-size: 14px;
		display: block;
		padding: 8px 16px;
		position: absolute;
		bottom: 10px;
		right: 20px;
	}
	a.tmt-blog-card:hover {
		box-shadow: none;
		text-decoration: none;
	}
	.tmt-blog-card-title {
		font-size: 18px;
		font-weight: 600;
		color: #222;
		padding-bottom: 5px;
	}
	.tmt-blog-card-thumbnail {
		/* flex: 1; */
		display: table-cell;
		vertical-align: middle;
		width: 20%;
		margin-right: 15px;
		padding-top: 5px;
	}
		.tmt-blog-card-thumbnail img {
			width: 100%;
		}
	.tmt-blog-card-content {
		display: table-cell;
		vertical-align: middle;
		width: 80%;
		flex: 2.5;
		padding: 0 16px;
	}
	.tmt-blog-card-excerpt {
		color: #222;
		font-size: 13px;
		padding-bottom: 15px;
	}
	.tmt-blog-card-site {
		color: #aaa;
		font-size: 11px;
		padding-left: 5px;
	}
		.tmt-blog-card-site img {
			margin-right: 5px;
			vertical-align: bottom;
			width: 20px;
		}
@media (max-width: 980px) {
	.tmt-blog-card-excerpt {
		border: none;
	}
}
@media (max-width: 640px) {
	a.tmt-blog-card {
		padding: 10px 10px 20px 10px;
	}
	a.tmt-blog-card::before {
		font-size: 11px;
		padding: 2.5px 8px;
		top: -15px;
		left: 10px;
	}
	a.tmt-blog-card::after {
		font-size: 12px;
		padding: 2px 13px;
		right: 10px;
	}
	.tmt-blog-card-thumbnail {
		margin-right: 10px;
		padding-top: 10px;
	}
	.tmt-blog-card-title {
		font-size: 16px;
	}
	.tmt-blog-card-excerpt {
		display: none;
	}
}
.search-box {
	width: 300px;
}
.search-box input {
	border: none;
	border-radius: 8px 0 0 8px;
	border: 1px solid #ddd;
	border-right: none;
	background: #fff;
	box-shadow: none !important;
}
.search-box button {
	box-shadow: none;
	border-radius: 0 8px 8px 0;
	border: 1px solid #ddd;
	border-left: none;
	background: #fff;
}
.search-box button:hover {
	border: 1px solid #ddd;
	border-left: none;
	background: #f8f9fa;
}
.search-box button:hover i {
	color: #111;
}
.search-box button i {
	color: #111;
	font-size: 14px;
}
.sticky-top-sidebar {
	position: sticky;
	top: 16px;
	z-index: 1020;
}
.slick-slide a:focus { outline: none;}
.ui-widget-header {
	color: #111;
	background: #fff;
}
.ui-state-default, .ui-widget-content .ui-state-default {
	border: none;
	background: #f8f9fa;
}
.ui-state-highlight, .ui-widget-content .ui-state-highlight, .ui-widget-header .ui-state-highlight {
	background: #FFF8E1;
}
.link-btn-block {
	margin: 32px 0;
	text-align: center;
}
/* =========================================
   表示切り替え用クラス (PC / SP)
   ========================================= */

/* デフォルトではスマホ用を非表示、PC用を表示 */
.is-sp {
    display: none !important;
}

/* 768px以下の時（スマホ・タブレットの一部） */
@media screen and (max-width: 768px) {
    .is-pc {
        display: none !important;
    }
    
    .is-sp {
        display: block !important;
    }
}
/*=================================
	#keyframe
=================================*/
.slideUp {
		animation-name: slideUp;
		animation-duration: 1s;
		animation-timing-function: ease;
}

.fadein{
	animation: fadeIn 0.2s ease 0s 1 normal;
}

.fadeout{
	animation: fadeOut 1s ease 0s 1 normal;
}
@keyframes slideUp {
		0% {
				transform: translateY(16px);
		}
		100% {
				transform: translateY(0px);
		}
}

@keyframes fadeIn {
	0% {opacity: 0.5}
	100% {opacity: 1}
}

@keyframes fadeOut {
	0% {opacity: 1}
	100% {opacity: 0}
}

.bound {
  animation: bound 3s infinite;
}
 
@keyframes bound {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-15px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-5px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}

.swing {
		animation: swing 3s .45s;
}

@keyframes swing {
		0%,100% { 
				-webkit-transform-origin: bottom center; 
		}
		10% { -webkit-transform: rotate(-15deg); }  
		20% { -webkit-transform: rotate(10deg); }
		30% { -webkit-transform: rotate(-5deg); }   
		40% { -webkit-transform: rotate(5deg); }    
		50% { -webkit-transform: rotate(-3deg); }

		60% { -webkit-transform: rotate(2deg); }
		70% { -webkit-transform: rotate(-2deg); }
		80% { -webkit-transform: rotate(1deg); }
		90% { -webkit-transform: rotate(-1deg); }
		100% { -webkit-transform: rotate(0deg); }
}

.swing-reverse {
		animation: swing-reverse 3s .45s;
}

@keyframes swing-reverse {
		0%,100% { 
				-webkit-transform-origin: top center; 
		}
		10% { -webkit-transform: rotate(-15deg); }  
		20% { -webkit-transform: rotate(10deg); }
		30% { -webkit-transform: rotate(-5deg); }   
		40% { -webkit-transform: rotate(5deg); }    
		50% { -webkit-transform: rotate(-3deg); }

		60% { -webkit-transform: rotate(2deg); }
		70% { -webkit-transform: rotate(-2deg); }
		80% { -webkit-transform: rotate(1deg); }
		90% { -webkit-transform: rotate(-1deg); }
		100% { -webkit-transform: rotate(0deg); }
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
/*=================================
	#animation
=================================*/
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.slide-up {
  transform: translateY(30px);
}

.slide-up.in-view {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-scale {
  transform: scale(0.85);
}

.fade-in-scale.in-view {
  opacity: 1;
  transform: scale(1);
}

.slide-down {
  transform: translateY(-30px);
}

.slide-down.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scene-card.horizontal-item,
.price-card.horizontal-item {
  opacity: 0; /* 最初は透明 */
  transform: translateX(-50px); /* 少し左にずらしておく */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* 個別の遅延時間を設定 */
.scene-card.item1.in-view,
.price-card.item1.in-view {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.2s; /* 最初の要素は少し遅らせる */
}

.scene-card.item2.in-view,
.price-card.item2.in-view {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.4s; /* 2番目の要素はさらに遅らせる */
}

.scene-card.item3.in-view,
.price-card.item3.in-view {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.6s; /* 3番目の要素はさらに遅らせる */
}

.scene-card.item4.in-view,
.price-card.item4.in-view {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.8s; /* 4番目の要素は最も遅らせる */
}
/*=================================
	#main
=================================*/
/* ヘッダー */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: absolute;
    width: 100%;
    box-sizing: border-box;
    z-index: 10;
}

.logo a {
    width: 80px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #222;
    font-weight: bold;
    font-size: 20px;
    letter-spacing: 0.2em;
    line-height: 1.5;
    transition: 0.3s;
}

.logo img {
    width: 80px;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.1em;
}

.btn-reserve {
    border: 1px solid #1A2D4A;
    padding: 10px 25px;
    color: #1A2D4A !important;
    transition: 0.3s;
}

.btn-reserve:hover {
    background: #1A2D4A;
    color: #fff !important;
}

/* メインビジュアル */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.5em;
    font-size: 2.5rem;
    margin: 0 auto;
}

.btn-main {
    display: inline-block;
    margin-top: 40px;
    padding: 15px 40px;
    background: #1A2D4A;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.2em;
}

/* コンセプトセクション */
.concept {
    padding: 100px 0;
    background-color: #F5F1E9; /* 生成り色 */
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.concept-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.concept-image img {
    width: 100%;
    filter: grayscale(20%);
}

.concept-text {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.concept-text h2 {
    font-size: 2rem;
}

/* フッター */
.site-footer {
    background: #1A2D4A;
    color: #fff;
    text-align: center;
    padding: 40px 0;
    font-size: 12px;
}

/* --- 通常時のヘッダー --- */
.main-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 40px;
    background: #fff;
    z-index: 100;
    /* ここではtransitionを指定しない（リロード時のガタつき防止） */
}

/* --- 固定状態のベース（画面外に待機） --- */
.main-header.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 40px; /* 固定時の高さ */
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);

    /* 1. 自身の高さ分、真上に隠す */
    transform: translateY(-100%);
    /* 2. transformの変化だけをアニメーション対象にする（斜め移動を防止） */
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: slideDown 0.4s ease-out;
}

/* --- 固定状態で出現している時 --- */
.main-header.is-show {
    /* 真下（元の位置）にスライドしてくる */
    transform: translateY(0);
}

/* ロゴ画像も固定時に小さくする場合 */
.main-header.is-fixed .logo img {
    height: 50px; /* 通常時より小さく調整 */
    width: auto;
    transition: height 0.3s;
}

.main-header.is-fixed .logo span {
    font-size: 14px; /* 通常時より小さく調整 */
    transition: height 0.3s;
}

/* 上からスライドしてくるアニメーション */
@keyframes slideDown {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* スマホ時のパディング調整 */
@media screen and (max-width: 768px) {
    .main-header, .main-header.is-fixed {
        padding: 10px 20px;
    }
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.header-tagline {
    font-size: 12px;
    margin-right: 20px;
}

.menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-btn span {
    display: block;
    width: 100%;
    height: 1px;
    background: var(--color-main);
}

/* マテリアルアイコンの基本設定 */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

.offcanvas-menu {
    position: fixed;
    top: 0;
    /* 100%（スマホ時）を基準に画面外へ配置 */
    right: -100%; 
    width: 100%;
    height: 100%;
    /* background-color: #1A2D4A; */
    background-color: rgba(26, 45, 74, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    padding: 40px;
}

/* メニューが開いた時の状態（JSでクラスを付与する場合を想定） */
/* JSで transform: translateX(-100%) などで制御している場合は、それに合わせて調整してください */
.offcanvas-menu.is-active {
    transform: translateX(-100%);
}

/* PCサイズ（769px以上）の時 */
@media screen and (min-width: 769px) {
    .offcanvas-menu {
        width: 30%; /* 画面の30%に設定 */
        right: -30%; /* PCの幅に合わせて初期位置を調整 */
    }
    
    .offcanvas-menu.is-active {
        transform: translateX(-100%);
    }
}

.offcanvas-header {
    text-align: right;
    margin-bottom: 40px;
}

.menu-close {
    font-size: 32px;
    /* color: var(--color-main); */
    color: #fff;
    transition: transform 0.3s;
}

.menu-close:hover {
    transform: rotate(90deg);
}

.offcanvas-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-body li {
    margin-bottom: 25px;
}

.offcanvas-body a {
    display: flex;
    align-items: center; /* アイコンと文字の垂直中央合わせ */
    gap: 15px;           /* アイコンと文字の間隔 */
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    /* color: var(--color-main); */
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s;
}

.offcanvas-body a:hover {
    opacity: 0.7;
}

/* アイコンのサイズと色調整 */
.offcanvas-body .material-symbols-outlined {
    font-size: 24px;
    /* color: var(--color-main); */
    color: #fff;
    /* 線の太さを少し細くして洗練させる（お好みで） */
    font-variation-settings: 'wght' 300; 
}

/* 背景オーバーレイ */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

.menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* メインセクション */
.hero-section {
    position: relative;
    padding: 0 60px; /* 左右に隙間 */
    display: flex;
    align-items: center;
}

/* 縦書きテキスト */
.side-text {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 13px;
    letter-spacing: 0.3em;
}

/* メインビジュアル容器 */
.hero-container {
    width: 100%;
    height: 80vh;
    border-radius: 20px; /* 角丸 */
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0,0,0,0.1); /* 薄いオーバーレイ */
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.hero-center-content {
    text-align: center;
}

.hero-title {
    font-size: clamp(30px, 5vw, 60px);
    letter-spacing: 0.3em;
    margin-top: 20px;
}

.hero-title.js-reveal {
    line-height: 1.5;
    /* 文字が重ならないように設定 */
    display: block; 
}

/* 分割された各文字のスタイル */
.hero-title.js-reveal .char {
    display: inline-block;
    opacity: 0;
    transform: translateX(-15px); /* 左から */
    filter: blur(5px);           /* ぼかしながら現れるとおしゃれ */
    animation: revealRight 0.6s ease-out forwards;
}

/* 改行タグなどはアニメーション対象外にする（念のため） */
.hero-title.js-reveal br {
    display: block;
}

@keyframes revealRight {
    0% {
        opacity: 0;
        transform: translateX(-15px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

.hero-bottom-text {
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 24px;
    font-weight: bold;
}

/* 右側固定ナビ */
.fixed-side-nav {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 10px;
    border: 2px solid #0C304A;
    z-index: 1000;
    overflow: hidden;
}

.fixed-side-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fixed-side-nav li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    text-decoration: none;
    color: #0C304A;
    font-size: 11px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    transition: background 0.3s;
}

.fixed-side-nav li:last-child a {
    border: none;
}

.fixed-side-nav .material-symbols-outlined {
    font-size: 24px;
    margin-bottom: 4px;
}

/* =========================================
   お知らせ
   ========================================= */
/* お知らせスライダーの外枠 */
.news-slider-wrapper {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px); /* グラスモフィズム効果 */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 15px 0;
    position: relative;
    z-index: 50;
}

.news-slider-inner {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* ラベル */
.news-slider-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a6d85;
    white-space: nowrap;
}

.label-text {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
}

/* ニュースコンテンツエリア（ここをスライドさせる） */
.news-slider-content {
    flex: 1;
    height: 24px; /* 1行分の高さに固定 */
    overflow: hidden;
    position: relative;
}

.news-ticker {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.news-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    display: flex;
    align-items: center;
    gap: 15px;
    pointer-events: none;
}

/* アクティブなニュースの表示 */
.news-item.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.news-item .news-date {
    font-size: 12px;
    color: #999;
    font-family: 'Montserrat', sans-serif;
}

.news-item .news-link {
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* 一覧を見るリンク */
.news-all-link a {
    display: flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    color: #1a6d85;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-bottom: 1px solid transparent;
    transition: all 0.3s;
}

.news-all-link a:hover {
    border-bottom-color: #1a6d85;
}

.news-all-link .material-symbols-outlined {
    font-size: 14px;
}

/* コンセプトセクション全体のスタイル */
.concept-section {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

/* テキストエリア */
.concept-text-area {
    margin-bottom: 60px;
}

.concept-title {
    font-size: 2.2rem;
    line-height: 1.5;
    letter-spacing: 0.2em;
    color: #0C304A; /* 画像の文字色に近い青 */
    margin-bottom: 30px;
    font-weight: 700;
}

.concept-description {
    font-size: 1rem;
    line-height: 2.5;
    letter-spacing: 0.1em;
    color: #333;
    text-align: center;
}

.concept-description p {
    margin-bottom: 0.5em;
}

/* ギャラリー（横並び） */
.concept-gallery {
    display: flex;
    gap: 15px;
    overflow: hidden; /* スクロールバーは隠す */
    white-space: nowrap;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw); /* コンテナを無視して画面幅いっぱいに */
    padding: 20px 0;
    padding-bottom: 32px;
}

/* スクロールバーを隠す設定（任意） */
.concept-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    flex: 0 0 500px; /* 横幅は500pxに固定 */
    aspect-ratio: 1280 / 853; /* 指定の比率を直接設定 */
    border-radius: 15px;
    overflow: hidden;
}

/* 中の画像が歪まないように調整 */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 比率を保ったまま枠いっぱいに表示 */
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* 丸ボタン */
.concept-action {
    display: flex;
    justify-content: center;
}

.btn-round {
    display: inline-block;
    background-color: #0C304A;
    color: #fff;
    padding: 18px 80px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.2em;
    transition: background-color 0.3s, opacity 0.3s;
}

.btn-round:hover {
    background-color: #14566a;
    opacity: 0.9;
}

/* =========================================
   シーン
   ========================================= */
.scene-section {
    padding: 100px 0;
    position: relative; /* 擬似要素の基準にする */
    overflow: hidden;    /* ボカシの境界線からはみ出さないようにする */
    color: #333;
}

/* 背景画像専用のレイヤー */
.scene-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/wp-content/themes/dokigawabase/img/scene_back.png') center center no-repeat;
    background-size: cover;
    
    /* ボカシの効果 */
    filter: blur(8px); 
    
    /* 白く被せる（オーバーレイ） */
    background-color: rgba(0,0,0,0.2); 
    background-blend-mode: overlay; /* 画像と白を馴染ませる */
    
    /* ボカシの縁が白く浮かないように少しだけ拡大 */
    transform: scale(1.1);
    z-index: 0;
}

/* 中のコンテンツが背景の下に隠れないようにする */
.scene-section .container {
    position: relative;
    z-index: 1;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-main-title {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.section-main-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: #fff;
}

.section-sub-title {
    color: #fff;
    font-size: 14px;
    text-align: center;
}

/* Scene Grid */
.scene-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 100px;
}

.scene-card {
    display: flex;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 rgba(0,0,0,0.3);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

/* .scene-card {
    display: flex;
    background: rgba(255, 255, 255, 0.7);
    
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    
    border: 1px solid rgba(255, 255, 255, 0.3);
    
    border-radius: 10px;
    box-shadow: 0 10px 30px 0 rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
} */

.scene-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.scene-image {
    flex: 0 0 45%;
}

.scene-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.scene-info {
    flex: 1;
    padding: 30px;
}

.scene-number {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.scene-number .icon {
    font-size: 40px;
    color: #1a6d85;
    opacity: 0.8;
}

.scene-number .text small {
    display: block;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #999;
}

.scene-number .text strong {
    font-size: 24px;
    font-family: 'Montserrat', sans-serif;
    color: #1a6d85;
}

.scene-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.4;
}

.scene-desc {
    font-size: 13px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

/* Features Area */
.features-area {
    max-width: 800px;
    margin: 0 auto;
}

.features-main-title {
    color: #fff;
    text-align: center;
    font-size: 24px;
    margin-bottom: 50px;
    letter-spacing: 0.05em;
}

.features-main-title span {
    /* color: #1a6d85; */
    color: #fff;
    font-size: 1.3em;
    font-family: 'Montserrat', sans-serif;
    margin: 0 5px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    background-color: #fff;
    border-bottom: 1px solid #eee;
    border-radius: 8px;
}

/* .feature-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px;
    
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    border: 1px solid rgba(255, 255, 255, 0.4);
    
    border-radius: 8px;
    margin-bottom: 10px;
} */

.feature-num {
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #d1e1e6;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon .material-symbols-outlined {
    font-size: 30px;
    color: #1a6d85;
}

.feature-text h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-text p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .scene-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 580px) {
    .scene-card {
        flex-direction: column;
    }
    .scene-image {
        height: 200px;
    }
    .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* =========================================
   料金プランと予約
   ========================================= */
.price-reservation-section {
    padding: 100px 0;
}

/* 料金グリッド */
.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* 5時間以上プランの強調スタイル */
.price-card.featured {
    border: 2px solid #001f33; /* 濃い紺色の枠線 */
}

.featured-badge-standard {
    background-color: #eee;
    color: #001f33;
    text-align: center;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.featured-badge {
    background-color: #001f33;
    color: #fff;
    text-align: center;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.price-card-inner {
    padding: 40px;
    flex: 1;
}

.price-head {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.price-icon {
    font-size: 48px !important;
    color: #333;
    opacity: 0.8;
}

.plan-label {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #333;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    color: #001f33;
}

.price-amount span {
    font-size: 24px;
    margin-left: 5px;
}

.price-body {
    text-align: center;
}

.price-body p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.price-note {
    text-align: right;
    max-width: 1000px;
    margin: 20px auto;
    font-size: 13px;
    color: #666;
}

/* お支払いセクション全体 */
.payment-info {
    margin-bottom: 60px;
    padding: 0;
}

.payment-card {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

/* 左側のアイコン・ロゴエリア */
.payment-visual {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-right: 40px;
    border-right: 1px solid #d1d8e0; /* 縦の仕切り線 */
}

.mobile-icon {
    font-size: 48px !important;
    color: #0C304A;
}

.paypay-logo {
    height: 50px; /* PayPayロゴのサイズ調整 */
    width: auto;
}

/* 右側のテキストエリア */
.payment-content {
    padding-left: 40px;
}

.payment-title {
    font-size: 20px;
    font-weight: bold;
    color: #0C304A;
    margin-bottom: 10px;
}

.payment-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin: 0;
}

/* スマホ対応：縦並びにする */
@media screen and (max-width: 768px) {
    .payment-card {
        flex-direction: column;
        padding: 30px 20px;
        text-align: center;
    }

    .payment-visual {
        padding-right: 0;
        padding-bottom: 20px;
        border-right: none;
        border-bottom: 1px solid #d1d8e0; /* 横の仕切り線に変更 */
        margin-bottom: 20px;
        width: 100%;
        justify-content: center;
    }

    .payment-content {
        padding-left: 0;
    }

    .payment-text br {
        display: none; /* スマホでは改行を解除して一行に */
    }
}

/* セクション全体のスタイル */
.time-section {
    margin-bottom: 60px;
    padding: 0;
    text-align: center;
}
.price-page .time-section {
    margin-bottom: 60px;
    padding: 0;
    text-align: center;
}

/* コンテンツエリア */
.time-content {
    max-width: 700px;
    margin: 0 auto;
}
.price-page .time-content {
    margin: 0 auto;
}

/* 各行のレイアウト */
.time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    border-bottom: 1px solid #E0E0E0; /* 画像のような細い線 */
}
.price-page .time-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    border-bottom: 1px solid #E0E0E0; /* 画像のような細い線 */
}

/* 最初の行の上にも線を付ける場合（画像に合わせる） */
.time-row:first-child {
    border-top: 1px solid #E0E0E0;
}

.time-label {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.time-value {
    font-size: 20px;
    color: #333;
    letter-spacing: 0.05em;
}

/* 注釈テキスト */
.time-note {
    font-size: 14px;
    color: #666;
    margin-top: 30px;
}

/* --- レスポンシブ対応 --- */
@media screen and (max-width: 560px) {
    .time-title {
        font-size: 24px;
    }

    .time-row {
        flex-direction: column; /* スマホ時は縦並びにして見やすく */
        gap: 10px;
        padding: 20px 0;
    }

    .time-label {
        font-size: 16px;
    }

    .time-value {
        font-size: 18px;
    }
}

/* 予約エリア */
.reservation-area {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    background-color: #f8fafd; /* 非常に薄い青灰色の背景 */
    padding: 60px;
    border-radius: 20px;
    align-items: center;
}

.reservation-info {
    text-align: center;
}

.res-main-icon {
    font-size: 50px !important;
    color: #333;
    margin-bottom: 15px;
}

.res-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.res-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #333;
}

.res-desc {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}

/* 予約システムの白いカード */
.reservation-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.res-card-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.res-icon-circle {
    width: 60px;
    height: 60px;
    background-color: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.res-icon-circle .material-symbols-outlined {
    font-size: 28px;
    color: #333;
}

.res-card-title small {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 2px;
}

.res-card-title h3 {
    font-size: 24px;
    font-weight: 700;
    color: #001f33;
}

.res-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
}

/* 予約ボタン */
.btn-reservation {
    display: flex;
    align-items: center;
    justify-content: center;
    /* gap: 15px; */
    background-color: #001f33;
    color: #fff;
    text-decoration: none;
    padding: 18px;
    border-radius: 8px;
    font-weight: 700;
    transition: background 0.3s;
}

.btn-reservation:hover {
    background-color: #1a6d85;
}

/* --- Responsive --- */
@media screen and (max-width: 960px) {
    .price-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .price-amount {
        font-size: 32px;
    }
    .reservation-area {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 40px;
    }
    .price-reservation-section {
        padding: 60px 0;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 480px) {
    .price-head {
        flex-direction: column;
        gap: 10px;
    }
    .price-amount {
        font-size: 24px;
    }
}

/* =========================================
   新着
   ========================================= */
.news-list-section {
    padding: 30px 0;
    background-color: #fff;
}

/* ヘッダー */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 32px;
    letter-spacing: 0.4em;
    color: #0C304A;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #999;
    text-align: center;
}

/* グリッドレイアウト（PC: 4列） */
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
    margin-bottom: 80px;
}

/* 記事カード */
.news-card a {
    text-decoration: none;
    display: block;
}

.card-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px; /* 前回の雰囲気に合わせた角丸 */
    aspect-ratio: 3 / 2;
    margin-bottom: 20px;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .card-image img {
    transform: scale(1.08); /* ホバー時のズーム */
}

/* カテゴリーバッジ */
.category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    font-size: 10px;
    letter-spacing: 0.1em;
    color: #0C304A;
    border-radius: 3px;
    font-weight: bold;
}

/* カードテキスト */
.post-date {
    display: block;
    font-size: 12px;
    color: #bbb;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

/* 日付とカテゴリのコンテナ */
.post-meta {
    display: flex;
    justify-content: space-between; /* 左右に振り分け */
    align-items: center;
    margin-bottom: 10px;
}

.post-date {
    font-size: 12px;
    color: #bbb;
    letter-spacing: 0.05em;
}

/* 日付の右端に表示するカテゴリ */
.post-category {
    font-size: 10px;
    color: #1a6d85; /* ブランドカラー */
    font-weight: 700;
    letter-spacing: 0.1em;
    border-left: 1px solid #eee; /* 左側に区切り線 */
    padding-left: 10px;
}

/* 画像上のバッジを調整（不要なら削除してください） */
.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    /* background-color: rgba(255, 255, 255, 0.9); */
    background: #feca1d;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: normal;
    color: #000;
    border-radius: 4px;
}

.post-title {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin-top: 5px;
    /* 2行制限 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* もっと見るボタン */
.news-footer {
    margin-bottom: 60px;
    text-align: center;
}

.btn-outline {
    display: inline-block;
    border: 1px solid #0C304A;
    color: #0C304A;
    padding: 15px 60px;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 0.2em;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #0C304A;
    color: #fff;
}

/* =========================================
   投稿詳細ページ (Single Post)
   ========================================= */
.single-main {
    padding-top: 64px; /* ヘッダーとの距離 */
    padding-bottom: 64px;
    background: #f8f9fa;
}

.single-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.entry-header {
    margin-bottom: 30px;
}

.entry-meta {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.entry-date {
    font-size: 14px;
    color: #999;
    letter-spacing: 0.1em;
}

.entry-category {
    font-size: 12px;
    font-weight: 700;
    color: #1a6d85;
    letter-spacing: 0.1em;
}

.entry-title {
    font-size: clamp(24px, 4vw, 24px);
    line-height: 1.5;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

/* アイキャッチ画像 */
.entry-eye-catch {
    margin-bottom: 30px;
}

.eye-catch-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
}

.eye-catch-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 記事本文のタイポグラフィ */
.entry-content {
    max-width: 800px; /* 読みやすい幅に制限 */
    margin: 0 auto;
    line-height: 2;
    color: #444;
    font-size: 16px;
}

.entry-content p {
    margin-bottom: 2.5em;
}

.entry-content h2 {
    font-size: 24px;
    color: #1a6d85;
    margin: 2em 0 1em;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.entry-content h3 {
    font-size: 20px;
    margin: 1.8em 0 0.8em;
}

.entry-content img {
    border-radius: 10px;
    margin: 1em 0;
}

.entry-content ul,
.entry-content ol {
    margin-bottom: 30px;
    padding-left: 30px;
}


.entry-content ul {
    list-style: disc;
}

/* 前後の記事ナビゲーション・モダン改修 */
.post-navigation {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #eee;
}

.nav-links {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.nav-previous, .nav-next {
    flex: 1; /* 左右均等の幅に */
    min-width: 0;
}

.nav-card {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #333;
    padding: 15px;
    border-radius: 15px;
    background-color: #fcfcfc;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-card:hover {
    background-color: #fff;
    border-color: #1a6d85;
    box-shadow: 0 10px 25px rgba(26, 109, 133, 0.08);
}

/* サムネイル */
.nav-thumb {
    flex: 0 0 80px; /* 画像サイズ固定 */
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
}

.nav-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nav-card:hover .nav-thumb img {
    transform: scale(1.1);
}

/* テキストエリア */
.nav-text {
    flex: 1;
    min-width: 0;
}

.nav-label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    color: #1a6d85;
    letter-spacing: 0.1em;
    margin-bottom: 5px;
}

.nav-label .material-symbols-outlined {
    font-size: 14px;
}

.nav-post-title {
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    margin: 0;
    /* 2行制限 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 次の記事はテキストを左、画像を右に（PC時） */
.nav-next .nav-card {
    text-align: right;
    justify-content: flex-end;
}

.nav-next .nav-label {
    justify-content: flex-end;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {
    .nav-links {
        flex-direction: column;
    }
    
    .nav-previous, .nav-next {
        width: 100%;
    }

    /* スマホでは画像とテキストの順序を統一（左画像、右テキスト） */
    .nav-next .nav-card {
        flex-direction: row;
        text-align: left;
    }
    .nav-next .nav-label {
        justify-content: flex-start;
    }
    .nav-next .nav-thumb {
        order: -1; /* 画像を左に持ってくる */
    }
}

/* サイドバー付きレイアウト設定 */
.single-layout-container {
    display: flex;
    justify-content: space-between;
    gap: 60px; /* カラム間の余白 */
    align-items: flex-start;
    padding: 60px;
    background: #fff;
    border-radius: 16px;
}

.main-column {
    flex: 1;
    min-width: 0; /* flex内の要素のはみ出し防止 */
}

/* サイドバーのデザイン */
#sidebar {
    width: 300px;
    position: sticky;
    top: 100px; /* スクロール追従（ヘッダー高さに合わせる） */
}

.sidebar-widget {
    margin-bottom: 50px;
}

.widget-title {
    font-size: 14px;
    letter-spacing: 0.2em;
    color: #1a6d85;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.widget-title .material-symbols-outlined {
    font-size: 18px;
}

/* カテゴリーリストの装飾 */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 15px;
    font-size: 14px;
    color: #333;
}

.category-list a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

.category-list a:hover {
    color: #1a6d85;
}

/* 件数の表示 ( ) の装飾 */
.category-list li span {
    font-size: 11px;
    color: #bbb;
    margin-left: 5px;
}

/* サイドバー・モダンカテゴリーリスト */
.category-modern-list {
    display: flex;
    flex-direction: column;
    gap: 8px; /* 項目間の絶妙な距離 */
}

.cat-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background-color: #f8f9fa; /* 非常に淡いグレー */
    border-radius: 12px;
    text-decoration: none;
    color: #444;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
}

/* ホバー時の装飾 */
/* .cat-item:hover {
    background-color: #1a6d85;
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(26, 109, 133, 0.15);
} */

.cat-name {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* 投稿件数のバッジ */
.cat-count {
    font-size: 10px;
    font-family: 'Montserrat', sans-serif; /* 数字を美しく見せるフォント */
    font-weight: 700;
    background-color: #fff;
    color: #1a6d85;
    padding: 2px 8px;
    border-radius: 20px;
    min-width: 28px;
    text-align: center;
    transition: all 0.4s;
    border: 1px solid rgba(26, 109, 133, 0.1);
}

/* ホバー時にバッジの色を反転 */
.cat-item:hover .cat-count {
    background-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    border-color: transparent;
}

/* ウィジェットタイトルの下線アニメーション（おまけ） */
.widget-title {
    position: relative;
    overflow: hidden;
}

.widget-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #1a6d85;
}

/* サイドバー・ウィジェット共通設定 */
.widget {
    margin-bottom: 50px;
}

/* --- 検索フォームのモダン化 --- */
.wp-block-search {
    position: relative;
}

.wp-block-search__inside-wrapper {
    display: flex;
    background-color: #f8f9fa; /* カテゴリーリストと同じ背景色 */
    border-radius: 50px; /* 完全に丸いフォルム */
    padding: 5px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.wp-block-search__inside-wrapper:focus-within {
    background-color: #fff;
    border-color: #1a6d85;
    box-shadow: 0 5px 15px rgba(26, 109, 133, 0.1);
}

.wp-block-search__input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    padding: 12px 20px !important;
    font-size: 14px;
    outline: none !important;
}

.wp-block-search__button {
    background-color: #1a6d85 !important;
    color: #fff !important;
    border-radius: 50px !important;
    padding: 10px 25px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    /* letter-spacing: 0.1em; */
    border: none !important;
    transition: opacity 0.3s !important;
}

.wp-block-search__button:hover {
    opacity: 0.9;
}

/* --- カテゴリーリストのモダン化 --- */
.wp-block-categories {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wp-block-categories li {
    position: relative;
}

.wp-block-categories li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background-color: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    color: #444;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ホバー時の挙動 */
.wp-block-categories li a:hover {
    background-color: #1a6d85;
    color: #fff;
    transform: translateX(5px);
}

/* リスト右側の装飾（矢印アイコンを擬似要素で追加） */
.wp-block-categories li a::after {
    content: "east"; /* Material Symbolsの矢印名 */
    font-family: 'Material Symbols Outlined';
    font-size: 16px;
    opacity: 0.3;
    transition: all 0.3s;
}

.wp-block-categories li a:hover::after {
    opacity: 1;
    transform: translateX(3px);
}

/* スクリーンリーダー用テキストの非表示 */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* レスポンシブ：スマホでは縦並び */
@media screen and (max-width: 1024px) {
    .single-layout-container {
        flex-direction: column;
        gap: 80px;
    }

    #sidebar {
        width: 100%;
        position: static;
    }

    .main-column {
        width: 100%;
    }
}

/* =========================================
   検索ページ
   ========================================= */

/* 検索結果ページ独自のスタイル */
.search-meta {
    font-size: 14px;
    color: #888;
    margin-top: 10px;
    letter-spacing: 0.05em;
}

/* 検索結果ゼロの場合のデザイン */
.no-results-content {
    text-align: center;
    padding: 100px 0;
    max-width: 500px;
    margin: 0 auto;
}

.warning-icon {
    font-size: 64px !important;
    color: #eee;
    margin-bottom: 20px;
}

.no-results-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.no-results-sub {
    font-size: 14px;
    color: #999;
    margin-bottom: 40px;
}

/* 再検索フォームの調整 */
.re-search-form {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
}

.re-search-form .wp-block-search__label {
    display: none;
}

/* 検索キーワードの強調（任意：投稿タイトル内のヒット箇所を装飾する場合） */
.archive-title em {
    font-style: normal;
    color: #1a6d85;
    background: linear-gradient(transparent 70%, rgba(26, 109, 133, 0.1) 0%);
}

/* =========================================
   記事本文内の共通見出しスタイル
   ========================================= */

/* 本文内の見出し共通設定 */
.entry-content h1, .page-content h1,
.entry-content h2, .page-content h2,
.entry-content h3, .page-content h3,
.entry-content h4, .page-content h4,
.entry-content h5, .page-content h5,
.entry-content h6, .page-content h6 {
    color: #333;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 20px; /* 上の要素との距離をしっかり取る */
    margin-bottom: 10px;
}

/* H1: 通常、本文内では使われませんが、念のため設定 */
.entry-content h1, .page-content h1 {
    font-size: 30px;
    text-align: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 20px;
}

/* H2: セクションの区切り */
.entry-content h2, .page-content h2 {
    font-size: 24px;
    color: var(--color-main);
    padding-left: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* H3: 中見出し */
.entry-content h3, .page-content h3 {
    font-size: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

/* H4: 小見出し */
.entry-content h4, .page-content h4 {
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.entry-content h4::before, .page-content h4::before {
    content: "";
    width: 8px;
    height: 8px;
    background-color: #1a6d85;
    border-radius: 50%;
}

/* H5: さらに小さい見出し */
.entry-content h5, .page-content h5 {
    font-size: 16px;
    color: #666;
    text-decoration: underline;
    text-underline-offset: 6px;
    text-decoration-color: #ddd;
}

/* H6: 補足的な見出し */
.entry-content h6, .page-content h6 {
    font-size: 14px;
    color: #888;
    text-transform: uppercase;
}

/* --- レスポンシブ --- */
@media screen and (max-width: 768px) {
    .entry-content h2, .page-content h2 {
        font-size: 20px;
    }
    .entry-content h3, .page-content h3 {
        font-size: 18px;
    }
    .entry-content h4, .page-content h4 {
        font-size: 16px;
    }
}

/* =========================================
   固定ページ (Static Page)
   ========================================= */
.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.page-main {
    padding: 60px 0;
    padding-top: 20px;
    background: #f8f9fa;
}

.page-article {
    margin: 0 auto;
    padding: 30px 0;
    max-width: 900px;
    border-radius: 12px;
    /* border: 1px solid #ddd; */
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.075);
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: clamp(28px, 5vw, 24px);
    letter-spacing: 0.2em;
    color: var(--color-main);
    font-weight: 700;
}

.page-title-underline {
    width: 40px;
    height: 2px;
    background-color: #1a6d85;
    margin: 20px auto 0;
}

/* ページ内コンテンツの装飾（single.phpと共有しつつ微調整） */
.page-content {
    max-width: 900px; /* 情報量が多い場合を想定し、singleより少し広く */
    margin: 0 auto;
    line-height: 2.2;
    color: #333;
}

/* .page-content h2::before {
    content: "";
    width: 4px;
    height: 1em;
    background-color: #1a6d85;
    border-radius: 2px;
} */

.page-content section {
    margin-bottom: 4em;
}

.page-content ul,
.page-content ol {
    margin: 0;
    padding: 0;
    padding-left: 15px;
}

/* =========================================
   カテゴリー・アーカイブページ (Category / Archive)
   ========================================= */
.archive-main {
    padding-top: 30px;
}

.archive-header {
    text-align: center;
    margin-bottom: 20px;
}

.archive-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: #1a6d85;
    margin-bottom: 15px;
    font-weight: 700;
}

.archive-title {
    font-size: clamp(28px, 5vw, 42px);
    letter-spacing: 0.1em;
    color: #333;
    margin-bottom: 20px;
}

.archive-description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    color: #888;
}

/* ページネーション */
.pagination {
    margin-top: 80px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid #eee;
    border-radius: 50%;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination .page-numbers.current {
    background-color: #1a6d85;
    color: #fff;
    border-color: #1a6d85;
}

.pagination .page-numbers:hover:not(.current) {
    background-color: #f9f9f9;
    border-color: #1a6d85;
}

.pagination .material-symbols-outlined {
    font-size: 20px;
}

.no-posts {
    text-align: center;
    padding: 100px 0;
    color: #999;
}

/* カラムブロックのベーススタイル */
.wp-block-columns {
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap; /* スマホ時に折り返すため */
    gap: 2em;        /* カラム間の余白（エディタ設定がない場合の予備） */
    margin-bottom: 1.5em;
}

.wp-block-column {
    flex-grow: 1;
    flex-basis: 0;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* スマホ時は縦一列にする */
@media (max-width: 781px) {
    .wp-block-columns {
        flex-direction: column;
    }
}

/* カバーブロック（背景画像付きセクション）のベース */
.wp-block-cover {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 20px;
}

/* =========================================
   固定ページ abouts
   ========================================= */
.abouts-page {
    line-height: 1.8;
    color: #333;
}

/* 共通セクションタイトル */
.abouts-page .section-title {
    font-size: 28px;
    text-align: center;
    color: #0C304A;
    margin-bottom: 20px;
}

.abouts-page .section-title-border {
    width: 40px;
    height: 2px;
    background: #0C304A;
    margin: 0 auto 60px;
}

/* セクション1: Hero */
.abouts-hero {
    background: #fff;
    padding-top: 60px;
    padding-bottom: 120px;
}

.abouts-hero-inner {
    display: flex;
    align-items: center;
}

.abouts-hero-text {
    flex: 1;
    padding: 0 30px;
     padding-right: 80px;
}

.abouts-hero-text .sub-label {
    display: block;
    font-weight: bold;
    color: #0C304A;
    margin-bottom: 20px;
    letter-spacing: 0.1em;
}

.abouts-hero-text .main-copy {
    font-size: 40px;
    line-height: 1.2;
    color: #0C304A;
    margin-bottom: 25px;
}

.abouts-hero-text .title-border {
    width: 60px;
    height: 1px;
    background: #333;
    margin-bottom: 30px;
}

.abouts-hero-image {
    flex: 1;
}

.abouts-hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* セクション2: Intro */
.abouts-intro {
    padding: 120px 0;
    background: #f8fafd;
}

.abouts-intro-flex {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-image, .intro-text {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 4px;
}

.intro-text h3 {
    font-size: 22px;
    color: #0C304A;
    margin-bottom: 20px;
}

/* セクション3: Features */
/* セクション全体の余白 */
.abouts-features {
    margin-bottom: 30px;
    padding: 0 20px; /* スマホ時の端の余白を確保 */
}

/* グリッドの設定（3つの場合） */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3カラムに変更 */
    gap: 40px;
    text-align: center;
    max-width: 900px; /* 3つのときは少し幅を絞るとバランスが良いです */
    margin: 0 auto;
}

/* アイコン自体のスタイル */
.feature-icon .material-symbols-outlined {
    font-size: 56px; /* アイコンの大きさ */
    color: #0C304A;  /* テーマカラーの紺色 */
    font-variation-settings:
        'FILL' 0,
        'wght' 300, /* 線の太さを細めにするとモダンで綺麗です */
        'GRAD' 0,
        'opsz' 48;
}

/* アイコンのコンテナ */
.feature-icon {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

/* レスポンシブ（スマホ時は縦並び） */
@media screen and (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

/* 各アイテムの調整 */
.abouts-page .feature-item {
    display: flex;
    flex-direction: column;
    align-items: center; /* アイコン、タイトル、テキストを中央揃え */
}

/* 見出し：太字にして少し文字間隔を広げる */
.feature-item h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #0C304A;
    letter-spacing: 0.05em;
}

/* テキスト：行間を少し広げ、マイルドな黒に */
.feature-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* --- レスポンシブ対応 --- */

/* タブレット時（2列ずつにする） */
@media screen and (max-width: 960px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

/* スマホ時（1列にする） */
@media screen and (max-width: 560px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .feature-item h4 {
        margin-bottom: 15px;
    }
}

/* セクション4: Message Banner */
.abouts-message-banner {
    height: 500px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* パララックス効果 */
    position: relative;
    margin-bottom: 100px;
}

.message-overlay {
    background: rgba(0, 0, 0, 0.4);
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: left;
}

.message-title {
    font-size: 40px;
    margin-bottom: 20px;
}

/* セクション5: CTA */
.abouts-cta {
    text-align: center;
    padding-bottom: 30px;
}

.cta-icon span {
    font-size: 48px;
    color: #0C304A;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 24px;
    margin-bottom: 10px;
}

.cta-text {
    text-align: center;
}

.cta-info {
    max-width: 500px;
    margin-top: 30px;
    display: inline-block; /* 中央揃えを維持しつつ幅を内容に合わせる */
    text-align: left;
    padding: 30px;
    background-color: #f8f9fa; /* 薄いグレーで少し目立たせる */
    border-radius: 8px;
}

.cta-address {
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.cta-map {
    margin: 0 -30px;
}

.cta-hours {
    padding-top: 15px;
}

.cta-hours-item {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 8px;
}

.cta-hours-item:last-child {
    margin-bottom: 0;
}

.cta-hours-label {
    font-size: 14px;
    color: #666;
}

.cta-hours-value {
    font-size: 15px;
    font-weight: bold;
    color: #333;
}

.cta-hours-info {
    margin-top: 15px;
    color: #666;
    font-size: 12px;
}

.cta-button-wrap {
    margin-top: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    background: #0C304A;
    color: #fff;
    padding: 15px 40px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.cta-button span {
    margin-left: 10px;
    font-size: 18px;
}

.cta-button:hover {
    opacity: 0.8;
}
@media screen and (max-width: 960px) {
    .abouts-hero {
        padding-top: 0;
        padding-bottom: 30px;
    }
    .abouts-intro {
        padding: 30px 0;
    }

    .abouts-hero-inner, .abouts-intro-flex {
        flex-direction: column;
    }
    
    .abouts-hero-text {
        padding: 0 20px;
        padding-top: 30px;
        order: 2;
    }
    
    .abouts-hero-image {
        order: 1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .abouts-hero-text .main-copy {
        font-size: 28px;
    }
    .abouts-message-banner {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 560px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .message-title {
        font-size: 28px;
    }
    .cta-info {
        padding: 15px;
    }
    .cta-map {
        margin: 0 -15px;
    }
}

/* =========================================
   固定ページ price
   ========================================= */
/* 共通設定 */
.price-page .container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.price-page .text-center { 
    text-align: center; 
}

/* ヒーローセクション */
.price-page .price-hero {
    background-color: #fff;
    margin-bottom: 60px;
}

.price-page .hero-flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.price-page .hero-text {
    flex: 1;
}

.price-page .hero-text .page-title {
    font-size: 2.4rem;
    color: #003366;
    margin-bottom: 20px;
    line-height: 1.3;
}

.price-page .hero-image {
    flex: 1;
}

.price-page .hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* セクション共通見出し */
.price-page .section-header {
    margin-bottom: 40px;
}

.price-page .section-title {
    font-size: 1.8rem;
    color: #003366;
    margin-bottom: 10px;
}

.price-page .title-underline {
    width: 40px;
    height: 2px;
    background-color: #003366;
    margin: 0 auto 20px;
}

.price-page .section-subtitle {
    color: #333;
    font-size: 0.95rem;
}

.price-page .price-section {
    padding: 30px 0;
}

/* 料金プランリスト */
.price-page .price-list {
    margin-bottom: 20px;
}

.price-page .price-item {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
}

.price-page .price-icon {
    width: 80px;
    height: 80px;
    background-color: #f0f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003366;
    flex-shrink: 0;
}

.price-page .price-icon .material-icons-outlined {
    font-size: 40px;
}

.price-page .price-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.price-page .price-info p {
    color: #666;
    line-height: 1.6;
}

.price-page .price-note {
    text-align: right;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 40px;
}

/* ご利用にあたって */
.price-page .usage-notes {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 4px;
    margin-bottom: 30px;
}

.price-page .usage-notes h3 {
    font-size: 1.1rem;
    color: #003366;
    margin-bottom: 15px;
}

.price-page .usage-notes ul {
    list-style: none;
    padding: 0;
}

.price-page .usage-notes li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 10px;
    color: #333;
    font-size: 0.95rem;
}

.price-page .usage-notes li::before {
    content: "・";
    position: absolute;
    left: 0;
}

/* お支払いカード */
.price-page .payment-card {
    display: flex;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.price-page .payment-card-content {
    flex: 1;
    padding: 40px;
}

.price-page .payment-method-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.price-page .payment-icon {
    width: 40px;
    height: 40px;
    border: 2px solid #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003366;
    font-weight: bold;
    flex-shrink: 0;
}

.price-page .payment-card-content h3 {
    font-size: 1.4rem;
    color: #333;
    margin: 0;
}

.price-page .payment-card-image {
    flex: 1;
}

.price-page .payment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* インフォバナー */
.price-page .info-banner {
    background-color: #f0f5f9;
    padding: 15px 30px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-page .info-banner .material-icons-outlined {
    color: #003366;
}

.price-page .info-banner p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .price-page .hero-flex, 
    .price-page .payment-card {
        flex-direction: column;
    }
    
    .price-page .hero-text {
        padding: 40px 0;
        text-align: center;
    }

    .price-page .price-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .price-page .payment-method-header {
        justify-content: center;
    }

    .price-page .payment-card-image {
        height: 200px;
    }
}

/* =========================================
   contacts
   ========================================= */

/* フォーム全体のコンテナ */
.contact-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 0;
}

/* 各入力項目のグループ */
.form-group {
    margin-bottom: 30px;
}

/* ラベルのスタイル */
.contact-form-wrapper label {
    display: block;
    font-weight: bold;
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

/* 「※必須」の文字だけ色を変える場合 */
.required {
    font-size: 12px;
    color: #e74c3c;
    vertical-align: middle;
    margin-left: 5px;
}

/* 入力フィールド共通（テキスト・メール・テキストエリア） */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-textarea {
    display: block;
    width: 100%;
    padding: 12px 15px;
    font-size: 16px; /* スマホでのズーム防止に16px推奨 */
    border: 1px solid #d1d8e0;
    border-radius: 4px;
    background-color: #fcfcfc;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    margin-top: 10px;
}

/* フォーカス時の色調整 */
.wpcf7-form-control:focus {
    border-color: #0C304A;
    box-shadow: 0 0 0 3px rgba(12, 48, 74, 0.1);
    outline: none;
}

/* テキストエリアの高さ */
.wpcf7-textarea {
    height: 180px;
}

/* 同意チェックボックスのエリア */
.form-acceptance {
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.wpcf7-acceptance .wpcf7-list-item {
    margin: 0;
}

/* 送信ボタンのカスタマイズ */
.form-submit {
    text-align: center;
}

.wpcf7-submit {
    display: inline-block;
    background-color: #0C304A;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    padding: 15px 80px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s, opacity 0.3s;
    -webkit-appearance: none; /* iOS対策 */
}

.wpcf7-submit:hover {
    background-color: #1a4a6e;
    opacity: 0.9;
}

/* バリデーションエラーメッセージのスタイル */
.wpcf7-not-valid-tip {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
}

.wpcf7-response-output {
    border-radius: 4px;
    margin: 20px 0 0 !important;
    padding: 15px !important;
    text-align: center;
}

/* レスポンシブ調整 */
@media screen and (max-width: 480px) {
    .wpcf7-submit {
        width: 100%;
        padding: 15px 0;
    }
}

/* 1. fieldset 自体の余計な装飾をリセット */
.wpcf7 fieldset {
    border: none;
    margin: 0;
    padding: 0;
    min-width: 0; /* ブラウザ規定の最小幅を解除 */
}

/* 3. それでも表示される場合の強制非表示設定 */
.contact-form-wrapper input[type="hidden"] {
    display: none !important;
    visibility: hidden !important;
    position: absolute !important; /* 万が一 display が効かない時も場所を取らせない */
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
}

/* 4. legend（もし fieldset 内にあれば）のスタイルもリセット */
.contact-form-wrapper legend {
    display: none; /* 基本的に不要な場合は非表示に */
}

/* レスポンスメッセージ全体の共通スタイル */
.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 15px 20px !important;
    border-radius: 4px !important;
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    border: 2px solid transparent !important; /* デフォルトの枠線を上書き */
}

/* 送信成功時（緑系） */
.wpcf7-mail-sent-ok {
    background-color: #e6f4ea !important;
    border-color: #57ab70 !important;
    color: #1e4620 !important;
}

/* 入力エラー・不備あり（赤・黄系） */
.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    background-color: #fdf2f2 !important;
    border-color: #e74c3c !important;
    color: #c0392b !important;
}

/* スパム判定などその他のエラー */
.wpcf7-aborted,
.wpcf7-spam-blocked {
    background-color: #fff4e5 !important;
    border-color: #ffa726 !important;
    color: #663c00 !important;
}

/* スクリーンリーダー用レスポンスエリアの調整 */
.screen-reader-response {
    position: absolute !important; /* 基本は画面外へ */
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
}

/* もしこのエリアを「上部のエラーまとめ」として表示させたい場合は
   上記の position: absolute などを消して、以下のスタイルを適用してください
*/
.screen-reader-response:active,
.screen-reader-response:focus,
.screen-reader-response[role="status"] {
    position: static !important;
    width: auto;
    height: auto;
    clip: auto;
    background: #fdf2f2;
    border: 1px solid #e74c3c;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.screen-reader-response ul {
    margin: 0;
    padding: 0;
    list-style: none;
    color: #c0392b;
    font-size: 14px;
}

.screen-reader-response ul li {
    margin-bottom: 5px;
}

/* 入力欄直下のエラーメッセージ */
.wpcf7-not-valid-tip {
    display: block;
    color: #e74c3c;
    font-size: 13px;
    font-weight: bold;
    margin-top: 5px;
    animation: fadeIn 0.3s ease; /* ふわっと出す */
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* エラーがある入力欄の枠線を赤くする */
.wpcf7-not-valid {
    border-color: #e74c3c !important;
    background-color: #fff9f9 !important;
}

#booking-package_calendarPage .symbolPanel,
#booking-package_calendarPage .numberInsteadOfSymbols {
    display: block !important;
}

/* =========================================
   booking package
   ========================================= */

/* フォーム全体のフォントとベース */
#booking-package {
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
}

/* 入力フィールド（text, email, tel, select, textarea） */
#booking-package input[type="text"],
#booking-package input[type="email"],
#booking-package input[type="tel"],
#booking-package input[type="number"],
#booking-package input[type="datetime-local"],
#booking-package select,
#booking-package textarea {
    width: 100%;
    padding: 12px 15px;
    margin: 8px 0 20px;
    border: 1px solid #ccc;
    border-radius: 6px;
    background-color: #fff;
    font-size: 16px; /* モバイルでの自動ズーム防止 */
    transition: border-color 0.3s, box-shadow 0.3s;
    box-sizing: border-box;
}

/* フォーカス時のスタイル */
#booking-package input:focus,
#booking-package select:focus,
#booking-package textarea:focus {
    outline: none;
    border-color: #0C304A; /* サイトのテーマカラー */
    box-shadow: 0 0 0 3px rgba(12, 48, 74, 0.1);
}

/* 予約するボタン（メインアクション） */
#booking-package .book_now_button {
    background-color: #0C304A !important; /* テーマカラー */
    color: #fff !important;
    padding: 15px 40px !important;
    font-size: 18px !important;
    font-weight: bold !important;
    border: none !important;
    border-radius: 50px !important; /* 丸みを持たせてモダンに */
    cursor: pointer !important;
    transition: background-color 0.3s, transform 0.2s !important;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(12, 48, 74, 0.2);
}

#booking-package .book_now_button:hover {
    background-color: #164a71 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 48, 74, 0.3);
}

/* 戻るボタン（サブアクション） */
#booking-package .return_form_button {
    background-color: #f4f4f4 !important;
    color: #666 !important;
    padding: 12px 30px !important;
    font-size: 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    margin-right: 10px;
}

#booking-package .return_form_button:hover {
    background-color: #e9e9e9 !important;
    color: #333 !important;
    border-color: #ccc !important;
}

/* ラベルのスタイル */
#booking-package label {
    font-weight: bold;
    margin-bottom: 5px;
    display: block;
    color: #0C304A;
}

/* チェックボックス・ラジオボタンの調整 */
#booking-package input[type="checkbox"],
#booking-package input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
}

/* エラーメッセージがある場合 */
#booking-package .s_error {
    color: #d9534f;
    font-size: 14px;
    margin-top: -15px;
    margin-bottom: 15px;
}

/* カレンダー選択画面などの「戻る」ボタン（さらに控えめなデザイン） */
#booking-package .return_button {
    background-color: transparent !important; /* 背景は抜いてスッキリ */
    color: #888 !important; /* 文字色は薄めに */
    padding: 6px 16px !important; /* 小さめのサイズ感 */
    font-size: 13px !important; /* 文字も少し小さく */
    font-weight: normal !important;
    border: 1px solid #ccc !important;
    border-radius: 4px !important; /* 角丸も少し控えめに */
    cursor: pointer !important;
    transition: all 0.2s ease-in-out !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#booking-package .return_button:hover {
    background-color: #f8f8f8 !important;
    color: #333 !important;
    border-color: #999 !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

/* ボタンが並んだ時の余白調整 */
#booking-package .return_button {
    margin: 5px 0;
}

/* =========================================
   breadcrumbs
   ========================================= */
.breadcrumbs {
    margin-bottom: 20px;
    font-size: 14px;
    color: #666;
}

/* リンクの色 */
.breadcrumbs a {
    color: #0C304A; /* サイトのテーマカラー */
    text-decoration: none;
    transition: color 0.2s;
}

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

/* 現在のページのスタイル（リンクにならない最後の文字） */
.breadcrumbs span[current] {
    color: #333;
    font-weight: bold;
}

/* =========================================
   フッター (Footer)
   ========================================= */

/* 背景画像セクション */
.footer-visual {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), 
                url('/wp-content/themes/dokigawabase/img/dummy_hero_image_v1.png') center/cover no-repeat;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    width: 60px; /* アイコンのサイズ */
    margin-bottom: 10px;
    border-radius: 16px;
}

.logo-text {
    font-size: 30px;
    letter-spacing: 0.5em;
    font-weight: bold;
    margin-left: 0.5em; /* 均等に見せるための調整 */
}

.footer-info {
    font-size: 14px;
    letter-spacing: 0.15em;
    line-height: 2;
}

.office-name {
    margin-bottom: 10px;
    font-weight: bold;
}

/* SNSアイコン */
.footer-sns {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.footer-sns a {
    color: #fff;
    font-size: 20px;
    transition: opacity 0.3s;
}

.footer-sns a:hover {
    opacity: 0.6;
}

/* 下部ナビゲーション */
.footer-bottom {
    background-color: #fff;
    padding: 50px 20px 30px;
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: #333;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #0C304A;
}

.copyright {
    text-align: center;
    font-size: 10px;
    color: #999;
    letter-spacing: 0.1em;
}

/* レスポンシブ */
@media screen and (max-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .single-layout-container {
        padding: 30px;
        border-radius: 16px;
    }
}
@media screen and (max-width: 768px) {
    .offcanvas-body a {
        font-size: 14px;
    }
    .hero-section {
        padding: 0 10px;
    }
    .pc-only {
        display: none;
    }
    .hero-container {
        height: 60vh;
        border-radius: 10px;
    }
    .hero-bottom-text {
        font-size: 16px;
        left: 20px;
        bottom: 20px;
    }
    .news-slider-inner {
        gap: 15px;
    }
    .news-slider-label .label-text {
        display: none; /* スマホではアイコンのみに */
    }
    .fixed-side-nav {
        right: 0;
        bottom: 0;
        top: auto;
        transform: none;
        width: 100%;
        border-radius: 0;
        /* すりガラスデザイン */
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: none;
        border-top: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    }

    .fixed-side-nav ul {
        display: flex; /* 横並びに変更 */
        justify-content: space-around;
        align-items: center;
    }

    .fixed-side-nav li {
        flex: 1;
    }

    .fixed-side-nav li a {
        padding: 10px 5px;
        border-bottom: none;
        border-right: 1px solid rgba(0,0,0,0.05);
        font-size: 10px;
    }

    .fixed-side-nav li:last-child a {
        border-right: none;
    }

    /* iPhoneのセーフエリア（ホームバー）対策 */
    .fixed-side-nav {
        padding-bottom: env(safe-area-inset-bottom);
    }
    .concept-section {
        padding: 60px 0;
    }

    .concept-title {
        font-size: 1.6rem;
    }

    .concept-description {
        font-size: 0.9rem;
        text-align: left;
        line-height: 2.0;
    }

    .gallery-item {
        flex: 0 0 250px; /* スマホでは少し小さく */
    }

    .btn-round {
        padding: 15px 60px;
        width: 80%; /* スマホではボタンを広げる */
    }
    .news-list-section {
        padding: 30px 0;
        padding-bottom: 0;
    }

    .news-grid {
        grid-template-columns: 1fr; /* 1列にして写真を大きく見せる */
        gap: 40px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 24px;
    }

    .post-title {
        font-size: 16px; /* スマホでは少し文字を大きく */
    }

    .single-main {
        padding-top: 16px;
    }

    .single-layout-container {
        padding: 16px;
        border-radius: 0;
    }
    
    .eye-catch-wrapper {
        border-radius: 10px;
    }
    
    .entry-content {
        font-size: 14px;
        padding: 0;
    }

    .page-main {
        padding: 20px;
    }

    .page-article {
        padding: 20px 0;
    }

    .page-title {
        padding: 0 20px;
        font-size: 24px;
    }
    
    .page-header {
        padding: 0;
    }

    .page-content {
        /* padding: 0; */
        font-size: 14px;
        line-height: 2.0;
    }

    .page-content h2 {
        font-size: 22px;
    }

    .archive-main {
        padding-top: 30px;
    }
    
    .archive-header {
        margin-bottom: 20px;
    }

    footer {
        padding-bottom: 75px;
    }

    .footer-visual {
        padding: 60px 20px;
    }

    .logo-text {
        font-size: 24px;
    }

    .footer-info {
        font-size: 12px;
    }

    .footer-nav ul {
        gap: 20px 30px; /* スマホで折り返した時の間隔 */
    }

    .footer-nav li {
        width: calc(50% - 15px); /* スマホでは2列に並べる */
        width: 100%;
        text-align: left;
    }
}