/* ===============================================
   基本設定
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-black: #0a0a0a;
    --color-dark-gray: #1a1a1a;
    --color-gray: #2a2a2a;
    --color-light-gray: #666666;
    --color-lighter-gray: #999999;
    --color-sky-blue: #13918b;
    --color-sky-blue-light: #a8daec;
    --color-white: #ffffff;
    --font-primary: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, sans-serif;
    --font-secondary: 'Cinzel', 'Times New Roman', serif;
}
/*Lenis*/
html.lenis {
  height: auto;
}

body {
  overscroll-behavior: none;
  scroll-behavior: auto;
}

/* 初期状態：フェードイン前 */
body {
  opacity: 0;
  transition: opacity 2s ease-in-out;
}
body.home {
	opacity: 1;
}

/* 表示時 */
body.fade-in {
  opacity: 1;
}

/* 遷移時 */
body.fade-out {
  opacity: 0;
  transition: opacity 0.4s ease;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.8;
    overflow-x: hidden;
}

img{
	max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* ===============================================
   ローディング画面
   =============================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 50%, var(--color-black) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 2s ease, visibility 2s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

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

.counter {
    font-size: 30px;
    font-weight: 300;
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, var(--color-white) 0%, var(--color-sky-blue) 50%, var(--color-white) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2s ease-in-out infinite;
    letter-spacing: 0.1em;
}

@keyframes shimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.loading-message {
    font-size: 18px;
    letter-spacing: 0.3em;
    margin-top: 40px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 2s;
}

.logo-animation {
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 2.5s;
}

.logo-animation img {
    max-width: 300px;
    height: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===============================================
   ヘッダー
   =============================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0) 100%);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 20px 40px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}
.home .header-logo{
	opacity: 0;
	transition: 1.4s;
}
.home .header.scrolled .header-logo{
	opacity: 1;
}
.header-logo img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.header-nav ul {
    display: flex;
    gap: 50px;
    list-style: none;
}

.header-nav a {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.2em;
    font-weight: 300;
    position: relative;
    transition: color 0.3s ease;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-sky-blue);
    transition: width 0.3s ease;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--color-sky-blue);
}

.header-nav a:hover::after,
.header-nav a.active::after {
    width: 100%;
}

@media (max-width: 768px) {
    .header {
        padding: 20px;
    }
	.header.scrolled{
		padding: 6px 40px;
	}
    .header-logo img {
        height: 40px;
    }
    .header.scrolled .header-logo img {
        height: 30px;
    }
    .header-nav ul {
        gap: 20px;
    }
    
    .header-nav a {
        font-size: 12px;
    }
}
@media (max-width: 640px) {
	.header{
		display: block;
	}
	.home .header-logo{
		opacity: 1;
	}
	.header-logo{
		text-align: center;
	}
    .header-logo img {
        height: 60px;
        margin-bottom: 20px;
    }
    .header.scrolled .header-logo img {
        margin-bottom: 0;
    }
	.header-nav ul{
		justify-content: center;
	}
}

/* ===============================================
   ヒーローセクション
   =============================================== */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}
.hero-bg .bg-img{
    width: 50%;
    height: 100%;
    background: url('../images/top-bg.jpg') center/cover no-repeat;
    will-change: transform;
	z-index: 1;
	position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #252525 0%, #696969 25%, #1c1c1c 50%, #464646 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradientMove 18s ease infinite;
    z-index: 1;
}
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.7) 0%, rgba(26, 26, 26, 0.5) 100%);
	opacity: 0;/*不要な場合は非表示*/
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
	width: 50%;
	margin-left: auto;
	padding: 10%;
}

.hero-title {
    font-size: 80px;
    font-weight: 300;
    font-family: var(--font-secondary);
    letter-spacing: 0.3em;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease forwards 3.5s;
    opacity: 0;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.5em;
    animation: fadeInUp 1s ease forwards 4s;
    opacity: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeIn 1s ease forwards 4.5s;
    opacity: 0;
}

.scroll-indicator span {
    display: block;
    font-size: 12px;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: var(--color-white);
    margin: 0 auto;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% {
        transform: scaleY(0);
        transform-origin: top;
    }
    50% {
        transform: scaleY(1);
        transform-origin: top;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
}
@media (max-width: 640px) {
	.hero-bg .bg-img{
		width: 100%;
	}
	.hero-content{
		opacity: 0;
	}
}

@media (max-width: 640px) {
	.hero-section {
		height: 80vh;
	}
}

/* ===============================================
   パララックスコンテナ
   =============================================== */
.parallax-container {
    position: relative;
    overflow: hidden;
}

/* ===============================================
   セクションタイトル
   =============================================== */
.section-title,.section-title h2 {
    font-size: 48px;
    font-weight: 300;
    font-family: var(--font-secondary);
    letter-spacing: 0.3em;
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: var(--color-sky-blue);
    margin: 30px auto 0;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
        margin-bottom: 60px;
    }
}

/* ===============================================
   コンセプトセクション
   =============================================== */
.concept-section {
    padding: 150px 0;
    position: relative;
}

.concept-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-black) 0%, var(--color-dark-gray) 100%);
	background: url("../images/concept-bg.png") no-repeat right bottom/contain;
}

.concept-content {
    position: relative;
    z-index: 10;
}
.concept-content .section-title{
	text-align: left;
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}
.concept-content .section-title::after{
	display: none;
}
.concept-content .section-title img{
	max-width: 340px;
}
.concept-content .concept-text img{
	width: 480px;
	display: block;
	margin-right: auto;
}
.concept-text {
    text-align: center;
    font-size: 18px;
    line-height: 2.5;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.concept-text p {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .concept-section {
        padding: 100px 0;
    }
    
    .concept-text {
        font-size: 16px;
    }
}

/* ===============================================
   メニューナビゲーション
   =============================================== */
.menu-navigation {
    padding: 150px 0;
    background: var(--color-black);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.menu-card {
    position: relative;
    overflow: hidden;
    background: var(--color-dark-gray);
    transition: transform 0.3s ease;
}

.menu-card:hover {
    transform: translateY(-10px);
}

.menu-card-link {
    display: block;
    text-decoration: none;
    color: var(--color-white);
}

.menu-card-image {
    position: relative;
    height: 400px;
    overflow: hidden;
}

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

.menu-card:hover .menu-card-image img {
    transform: scale(1.1);
}

.menu-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.8) 100%);
}

.menu-card-content {
    padding: 40px 30px;
}

.menu-card-title {
    font-size: 32px;
    font-weight: 300;
    font-family: var(--font-secondary);
    letter-spacing: 0.2em;
    margin-bottom: 20px;
}

.menu-card-text {
    font-size: 13px;
    font-weight: 300;
    line-height: 2;
    color: var(--color-lighter-gray);
    margin-bottom: 30px;
}

.menu-card-arrow {
    font-size: 24px;
    color: var(--color-sky-blue);
    transition: transform 0.3s ease;
}

.menu-card:hover .menu-card-arrow {
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .menu-card-image {
        height: 300px;
    }
}

/* ===============================================
   ギャラリーセクション
   =============================================== */
.gallery-section {
    padding: 150px 0;
    background: var(--color-dark-gray);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: pointer;
}

.gallery-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.3s ease;
    filter: grayscale(30%);
}

.gallery-item:hover .gallery-thumbnail {
    transform: scale(1.1);
    filter: grayscale(0%);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

/* ===============================================
   モーダル
   =============================================== */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 50px;
    font-size: 50px;
    font-weight: 300;
    color: var(--color-white);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--color-sky-blue);
}

/* ===============================================
   ページヒーロー
   =============================================== */
.page-hero {
    height: 60vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    /*margin-top: 80px;*/
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    will-change: transform;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.6);
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-title {
    font-size: 32px;
    font-weight: 300;
    font-family: var(--font-secondary);
    letter-spacing: 0.3em;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .page-hero {
        height: 50vh;
    }
    
    .page-hero-content {
        position: absolute;
		bottom: 10px;
    }
}

/* ===============================================
   メッセージセクション
   =============================================== */
.message-section {
    padding: 150px 0;
    background: var(--color-black);
}

.message-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 80px;
}

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

.message-text {
    font-size: 16px;
    line-height: 2.2;
    font-weight: 300;
}

.message-text p {
    margin-bottom: 25px;
}

.message-signature {
    margin-top: 60px;
    font-size: 18px;
    font-family: var(--font-secondary);
    letter-spacing: 0.3em;
    text-align: right;
    color: var(--color-sky-blue);
}

@media (max-width: 768px) {
    .message-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* ===============================================
   プロフィールセクション
   =============================================== */
.profile-section {
    padding: 150px 0;
    background: var(--color-dark-gray);
}

.profile-name {
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 24px;
    font-family: var(--font-secondary);
    letter-spacing: 0.3em;
    color: var(--color-sky-blue);
    margin-bottom: 5px;
}

.profile-role {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-lighter-gray);
    margin-bottom: 40px;
}

.profile-description {
    font-size: 16px;
    line-height: 2.2;
    font-weight: 300;
}

.profile-description p {
    margin-bottom: 20px;
}

/* ===============================================
   経歴セクション
   =============================================== */
.history-section {
    padding: 150px 0;
    background: var(--color-black);
}

.history-timeline {
    max-width: 800px;
    margin: 80px auto 0;
}

.timeline-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--color-gray);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    font-size: 32px;
    font-family: var(--font-secondary);
    font-weight: 300;
    color: var(--color-sky-blue);
}

.timeline-content h4 {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 15px;
}

.timeline-content p {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-lighter-gray);
    line-height: 1.8;
}

.history-section .wp-block-group{
}
@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 100px 1fr;
        gap: 20px;
    }
    
    .timeline-year {
        font-size: 24px;
		margin-bottom: 0;
	}
}

/* ===============================================
   資格・実績セクション
   =============================================== */
.credentials-section {
    padding: 150px 0;
    background: var(--color-dark-gray);
}

.credentials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 900px;
    margin: 0 auto;
}

.credentials-box h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-sky-blue);
}

.credentials-box ul {
    list-style: none;
}

.credentials-box li {
    font-size: 16px;
    font-weight: 300;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-gray);
}

.credentials-box li::before {
    content: '・';
    color: var(--color-sky-blue);
    margin-right: 10px;
}

@media (max-width: 768px) {
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.about-bg-section{
	background: url(../images/about_bg.jpg) no-repeat center top / cover;
	background-attachment: fixed;
}
@media (max-width: 768px) {
	.about-bg-section{
		background: url(../images/about_bg.jpg) no-repeat center top / contain;
		background-attachment:inherit;
	}
}


/* ===============================================
   プランセクション
   =============================================== */
.plan-section {
    padding: 150px 0;
    background: var(--color-black);
}

.plan-intro {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-lighter-gray);
}

.plan-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.plan-box {
    background: var(--color-dark-gray);
    padding: 60px 40px;
    border: 1px solid var(--color-gray);
    transition: all 0.3s ease;
}

.plan-box:hover {
    transform: translateY(-10px);
    border-color: var(--color-sky-blue);
}

.plan-box.premium {
    background: linear-gradient(135deg, var(--color-dark-gray) 0%, var(--color-gray) 100%);
    border-color: var(--color-sky-blue);
}

.plan-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--color-gray);
}

.plan-name {
    font-size: 24px;
    font-family: var(--font-secondary);
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.plan-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-lighter-gray);
}

.plan-price {
    text-align: center;
    margin-bottom: 40px;
}

.price-amount {
    font-size: 48px;
    font-family: var(--font-secondary);
    font-weight: 300;
    color: var(--color-sky-blue);
}

.price-period {
    font-size: 16px;
    font-weight: 300;
    color: var(--color-lighter-gray);
}

.plan-features {
    list-style: none;
}

.plan-features li {
    font-size: 14px;
    font-weight: 300;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-gray);
}

.plan-features li::before {
    content: '✓';
    color: var(--color-sky-blue);
    margin-right: 10px;
}



@media (max-width: 768px) {
    .plan-content {
        grid-template-columns: 1fr;
    }
	.menu .lineup-section .wp-block-columns{
		max-width: 90%;
		margin: 0 auto;
	}
	.menu .lineup-section .wp-block-columns img{
		margin-bottom: 15px;
	}
}

/* ===============================================
   ラインナップセクション
   =============================================== */
.lineup-section {
    /*padding: 150px 0;*/
    background: var(--color-dark-gray);
}

.lineup-intro {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-lighter-gray);
    margin-bottom: 80px;
}

.lineup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.lineup-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.lineup-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.lineup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(20%);
    transition: transform 0.6s ease, filter 0.3s ease;
}

.lineup-item:hover .lineup-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.lineup-title {
    font-size: 24px;
    font-family: var(--font-secondary);
    font-weight: 300;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
}

.lineup-subtitle {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-lighter-gray);
    margin-bottom: 20px;
}

.lineup-description {
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 30px;
}

.lineup-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--color-gray);
}

.lineup-time {
    font-size: 14px;
    font-weight: 300;
    color: var(--color-lighter-gray);
}

.lineup-price {
    font-size: 24px;
    font-family: var(--font-secondary);
    font-weight: 300;
    color: var(--color-sky-blue);
}
.lineup-price table,.lineup-price table th,.lineup-price table td{
	border: none;
}
.lineup-price td{
	padding: 0!important;
	font-size: 24px;
    font-family: var(--font-secondary);
    font-weight: 300;
    color: var(--color-sky-blue);
}
.lineup-price td:first-child{
	font-size: 14px;
    font-weight: 300;
    color: var(--color-lighter-gray);
}

@media (max-width: 768px) {
    .lineup-grid {
        grid-template-columns: 1fr;
    }
    
    .lineup-item {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   注意事項セクション
   =============================================== */
.notes-section {
    padding: 100px 0;
    background: var(--color-black);
}

.notes-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: var(--color-dark-gray);
    border: 1px solid var(--color-gray);
}

.notes-content h3 {
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--color-sky-blue);
}

.notes-content ul {
    list-style: none;
}

.notes-content li {
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-gray);
}

.notes-content li::before {
    content: '※';
    color: var(--color-sky-blue);
    margin-right: 10px;
}

@media (max-width: 768px) {
	.notes-content ul {
		padding: 0;
	}
}


/* ===============================================
   お問い合わせ方法セクション
   =============================================== */
.contact-method-section {
    padding: 150px 0;
    background: var(--color-black);
}

.contact-intro {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    line-height: 2;
    margin-bottom: 80px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-box {
    background: var(--color-dark-gray);
    padding: 60px 40px;
    text-align: center;
    border: 1px solid var(--color-gray);
    transition: all 0.3s ease;
}

.contact-box:hover {
    transform: translateY(-10px);
    border-color: var(--color-sky-blue);
}

.contact-icon {
    margin-bottom: 30px;
    color: var(--color-sky-blue);
}

.contact-title {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
}

.contact-description {
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--color-lighter-gray);
    margin-bottom: 40px;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: transparent;
    border: 1px solid var(--color-sky-blue);
    color: var(--color-sky-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background: var(--color-sky-blue);
    color: var(--color-black);
}

.contact-phone-number {
    margin-bottom: 20px;
}

.contact-phone-number a {
    font-size: 32px;
    font-family: var(--font-secondary);
    font-weight: 300;
    color: var(--color-sky-blue);
    text-decoration: none;
    letter-spacing: 0.1em;
}

.contact-hours {
    font-size: 13px;
    font-weight: 300;
    color: var(--color-lighter-gray);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .contact-methods {
        grid-template-columns: 1fr;
    }
}

/* ===============================================
   FAQセクション
   =============================================== */
.faq-section {
    padding: 150px 0;
    background: var(--color-dark-gray);
}

.faq-intro {
    text-align: center;
    font-size: 16px;
    font-weight: 300;
    color: var(--color-lighter-gray);
    margin-bottom: 80px;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid var(--color-gray);
    background: var(--color-black);
}

.faq-question {
    width: 100%;
    padding: 30px 40px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 16px;
    font-weight: 300;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--color-sky-blue);
}

.faq-icon {
    font-size: 24px;
    color: var(--color-sky-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 40px 30px;
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--color-lighter-gray);
}

/* ==============================
   Yoast対応版　FAQ セクション全体
============================== */

.schema-faq {
    max-width: 900px;
    margin: 0 auto;
}

/* ==============================
   FAQ 1項目（元 .faq-item）
============================== */

.schema-faq-section {
    margin-bottom: 20px;
    border: 1px solid var(--color-gray);
    background: var(--color-black);
	padding: 30px 0;
}
@media (max-width: 768px) {
	.schema-faq-section {
		padding: 10px 0;
	}
}

/* ==============================
   質問ボタン（元 .faq-question）
============================== */

.schema-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;

    width: 100%;
    padding: 0 40px;

    background: transparent;
    border: none;

    color: var(--color-white);
    font-size: 16px;
    font-weight: 300;
    text-align: left;

    cursor: pointer;
    transition: all 0.3s ease;
}

/* hover時の色変更 */
.schema-faq-question:hover {
    color: var(--color-sky-blue);
}

/* ==============================
   ＋アイコン（疑似的に再現）
============================== */

.schema-faq-question::after {
    content: "+";
    font-size: 24px;
    color: var(--color-sky-blue);
    transition: transform 0.3s ease;
}

/* active時 回転 */
.schema-faq-section.active .schema-faq-question::after {
    transform: rotate(45deg);
}

/* ==============================
   回答エリア（元 .faq-answer）
============================== */

.schema-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
	margin-bottom: 0;
    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--color-lighter-gray);
	padding: 0 40px;
}

/* active時に開く */
.schema-faq-section.active .schema-faq-answer {
    max-height: 500px;
}

@media (max-width: 768px) {
	.schema-faq-answer {
		padding: 0 20px;
	}
}


/* ==============================
   回答テキスト（元 .faq-answer p）
============================== */

.schema-faq-answer p {
    padding: 0 40px 30px;
    margin: 0;

    font-size: 14px;
    font-weight: 300;
    line-height: 2;
    color: var(--color-lighter-gray);
}

@media (max-width: 768px) {
    .faq-question,.schema-faq-question {
        padding: 0 20px;
        font-size: 14px;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
    }
}

/* ===============================================
   アクセスセクション
   =============================================== */
.access-section {
    padding: 150px 0;
    background: var(--color-black);
}

.access-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.access-info {
    margin-bottom: 60px;
}

.access-info h3 {
    font-size: 24px;
    font-family: var(--font-secondary);
    font-weight: 300;
    letter-spacing: 0.3em;
    margin-bottom: 30px;
}

.access-info p {
    font-size: 14px;
    font-weight: 300;
    line-height: 2.2;
    color: var(--color-lighter-gray);
    margin-bottom: 10px;
}

.access-note p {
    font-size: 13px;
    font-weight: 300;
    color: var(--color-lighter-gray);
    margin-bottom: 10px;
}

.mono iframe{
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  transition: 0.4s;
	max-width: 100%;
}
.mono iframe:hover{
  filter: none;
  -webkit-filter: none;
}

/* ===============================================
   フッター
   =============================================== */
.footer {
    padding: 80px 0 30px;
    background: var(--color-dark-gray);
    border-top: 1px solid var(--color-gray);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 58px;
    width: auto;
}

.footer-info p {
    font-size: 13px;
    font-weight: 300;
    line-height: 2;
    color: var(--color-lighter-gray);
	margin-bottom: 0;
}

.footer-social {
	text-align: right;
}

.social-link {
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.1em;
    transition: color 0.3s ease;
    display: inline-block;
    border: 1px solid #666;
    padding: 0 10px;
    border-radius: 3px;
    margin: 3px;
}

.social-link:hover {
    color: var(--color-sky-blue);
	border-color:  var(--color-sky-blue);
}

.social-icons a{
	font-size: 24px;
    padding: 5px;
    color: #afafaf;
}
.social-icons a:hover{
	color: #fff;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--color-gray);
}

.footer-copyright p {
    font-size: 12px;
    font-weight: 300;
    color: var(--color-lighter-gray);
    letter-spacing: 0.1em;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-social {
        text-align: center;
    }
}

/*404*/
.not-found{
	text-align: center;
    margin-bottom: 50px;
}

/*Lightbox*/
.wp-lightbox-overlay .scrim{
	background-color: #383838!important;
}

/*管理画面*/
.wp-block-group.alignfull{
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
.wp-block-group.alignfull .wp-block-group__inner-container{
	max-width: 1120px;
    padding: 0 10px;
    margin: 0 auto;
}
.wp-block-column h3,
.wp-block-column p{
	max-width: 86%;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 768px) {
	.wp-block-media-text__media img{
		max-width: 86%!important;
		display: block;
		margin: 0 auto 15px!important;
	}
}
