/**
 * Front Page Styles - fdksajfa.png完全準拠
 *
 * @package NONKE_SPA
 * @since 1.0.0
 */

/* ==========================================================================
   色定義
   ========================================================================== */
:root {
    --color-green: #303c09;
    --color-yellow: #fff5b8;
    --color-bg-gray: #f4f4f4;
}

/* ==========================================================================
   ヒーローセクション（メインビジュアル）
   ========================================================================== */
.p-hero {
    position: relative;
    min-height: 500px; /* ボタン削除により高さを減らす */
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.p-hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.p-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.p-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.p-hero__content {
    padding: 60px 0; /* ボタン削除により余白を減らす */
}

.p-hero__title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: 0.1em;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.p-hero__subtitle {
    font-size: 20px;
    margin: 0 0 32px;
    opacity: 0.9;
}

.p-hero__schedule {
    margin-top: 24px;
    margin-bottom: 0;
}

.p-hero__hours,
.p-hero__special {
    font-size: 16px;
    margin: 0 0 8px;
    opacity: 0.95;
}

.p-hero__special {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-yellow);
    margin-top: 16px;
    margin-bottom: 0;
}

.p-hero__special i {
    margin-right: 8px;
}

/* メインビジュアル下固定バナー */
.p-heroBanner {
    padding: 0;
}

.p-heroBanner .l-container {
    padding: 0;
}

.p-heroBanner__inner {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* PC用バナー（デフォルトで表示） */
.p-heroBanner__pc {
    display: block;
}

/* SP用バナー（デフォルトで非表示） */
.p-heroBanner__sp {
    display: none;
}

.p-heroBanner__link {
    display: block;
    width: 100%;
}

.p-heroBanner__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .p-hero {
        height: 40vh;
        min-height: 300px;
    }
    
    .p-hero__content {
        padding: 40px 0;
    }
    
    .p-hero__title {
        font-size: 24px;
    }
    
    .p-hero__subtitle {
        font-size: 14px;
    }
    
    .p-hero__hours {
        font-size: 12px;
    }
    
    .p-hero__special {
        font-size: 16px;
    }
    
    .p-heroBanner {
        padding: 0;
    }
    
    .p-heroBanner__inner {
        max-width: 100%;
        margin: 0;
    }
    
    /* SP表示時はPC用を非表示、SP用を表示 */
    .p-heroBanner__pc {
        display: none;
    }
    
    .p-heroBanner__sp {
        display: block;
    }
    
    .p-heroBanner__link {
        display: block;
        width: 100%;
    }
    
    .p-heroBanner__image {
        border-radius: 0;
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

/* ==========================================================================
   メインビジュアル（旧）
   ========================================================================== */
.p-mainVisual {
    position: relative;
    min-height: 600px;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.p-mainVisual::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.p-mainVisual__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.p-mainVisual__content {
    padding: 80px 0;
}

.p-mainVisual__text {
    margin-bottom: 24px;
}

.p-mainVisual__lead {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 8px;
    letter-spacing: 0.1em;
}

.p-mainVisual__info {
    margin-bottom: 32px;
}

.p-mainVisual__hours,
.p-mainVisual__area {
    font-size: 14px;
    margin: 0 0 8px;
    opacity: 0.9;
}

.p-mainVisual__note {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-yellow);
    margin: 16px 0 0;
}

.p-mainVisual__btn {
    margin-top: 32px;
}

/* ==========================================================================
   ボタン
   ========================================================================== */
.c-button {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    border-radius: 30px;
    font-size: 16px;
}

.c-button--yellow {
    background: var(--color-yellow);
    color: #333;
    font-size: 16px;
    padding: 14px 36px;
    border-radius: 4px;
}

.c-button--yellow:hover {
    opacity: 0.8;
}

/* ==========================================================================
   セクション共通
   ========================================================================== */
section {
    padding: 60px 0;
}

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

.c-sectionHeader {
    text-align: center;
    margin-bottom: 40px;
}

.c-sectionTitle {
    font-size: 32px;
    font-weight: 700;
    color: #d9d9d9;
    margin: 0;
}

.c-sectionSubtitle {
    font-size: 14px;
    color: #999;
    font-family: 'Georgia', serif;
    font-style: italic;
    margin: 0;
}

/* ==========================================================================
   店長おすすめ
   ========================================================================== */
.p-recommend {
    padding: 0 0 80px;
}

.p-recommend__wrapper {
}

/* 切り替え表示エリア */
.p-recommend__featured {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.p-recommend__featuredItem {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    display: block;
    text-decoration: none;
}

.p-recommend__featuredItem.is-active {
    opacity: 1;
}

.p-recommend__featuredItem img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-recommend__featuredName {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 2行5列グリッド */
.p-recommend__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 8px;
}

.p-recommend__item {
    display: block;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.p-recommend__item:hover {
    transform: scale(1.05);
}

.p-recommend__photo {
    position: relative;
    padding-top: 133%;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 8px;
    margin-bottom: 10px;
}

.p-recommend__photo img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .p-recommend__nameは削除（使用しない） */

/* PC表示 - 左右レイアウト */
@media (min-width: 769px) {
    .p-recommend__wrapper {
        display: flex;
        gap: 20px;
        align-items: stretch;
        height: 350px;
    }
    
    .p-recommend__featured {
        flex: 0 0 280px;
        height: 100%;
        margin-bottom: 0;
    }
    
    .p-recommend__featuredName {
        font-size: 18px;
        padding: 12px;
    }
    
    .p-recommend__grid {
        flex: 1;
        height: 100%;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 8px;
    }
    
    .p-recommend__grid .p-recommend__item {
        height: 100%;
        display: block;
    }
    
    .p-recommend__grid .p-recommend__photo {
        height: 100%;
        width: 100%;
        padding-top: 0;
        margin-bottom: 0;
        position: relative;
    }
    
    .p-recommend__grid .p-recommend__photo img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* スタッフ一覧ボタン */
.p-recommend__more {
    text-align: center;
    margin-top: 40px;
}

/* SPレスポンシブ調整 */
@media (max-width: 768px) {
    .p-recommend {
        padding: 0 0 60px;
    }
    
    .p-recommend__featured {
        height: 300px;
        margin-bottom: 0;
    }
    
    .p-recommend__featuredName {
        font-size: 18px;
        padding: 15px;
    }
    
    .p-recommend__grid {
        grid-template-columns: repeat(5, 1fr);
        gap: 5px;
    }
}

/* ==========================================================================
   今日の出勤
   ========================================================================== */
.p-todayStaff {
}

.p-todayStaff__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.p-staffCard {
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
}

.p-staffCard__image {
    position: relative;
    padding-top: 133%;
    overflow: hidden;
    background: #f0f0f0;
}

.p-staffCard__image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-staffCard__body {
    padding: 16px;
    text-align: center;
}

.p-staffCard__name {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 4px;
}

.p-staffCard__label {
    font-size: 12px;
    color: #999;
    font-style: italic;
    margin: 0 0 16px;
}

.p-staffCard__meta {
    margin-bottom: 16px;
}

.p-staffCard__metaRow {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
}

.p-staffCard__metaRow span:first-child {
    color: #666;
}

.p-staffCard__metaRow span:last-child {
    font-weight: 700;
    color: #333;
}

.p-staffCard__button {
    display: block;
    width: 100%;
    background: var(--color-green);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.p-staffCard__button:hover {
    opacity: 0.8;
}

.p-todayStaff__nodata {
    text-align: center;
    font-size: 16px;
    color: #666;
    padding: 40px 0;
}

.p-todayStaff__more {
    text-align: center;
}

/* ==========================================================================
   コンセプト
   ========================================================================== */
.p-concept {
}

.p-concept__content {
    max-width: 1200px;
    margin: 0 auto;
}

/* 保証テキスト */
.p-concept__guarantee {
    text-align: center;
    margin-top: 30px;
}

.p-concept__guaranteeText {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
}

.p-concept__guaranteeLink {
    color: #fff5b8;
    text-decoration: underline;
    margin-left: 10px;
}

.p-concept__guaranteeLink:hover {
    color: #fff;
    text-decoration: underline;
}

.p-concept__guaranteeBr {
    display: none;
}

/* 動画スライドショー */
.p-concept__cards {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 50px;
    background: #000;
    border-radius: 8px;
}

.p-concept__videoTrack {
    display: flex;
    /* アニメーションはJavaScriptで制御 */
}

.p-concept__videoSlide {
    flex: 0 0 auto;
    width: 400px;
    height: 300px;
    position: relative;
    padding: 0 10px;
}

.p-concept__videoSlide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* 動画が設定されていない場合 */
.p-concept__noVideo {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.p-concept__noVideo p {
    color: #999;
    font-size: 16px;
}

.p-concept__note {
    margin-top: 24px;
    padding: 20px;
    background: var(--color-yellow);
    font-size: 14px;
    line-height: 1.8;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
    .p-concept__cards {
        margin-bottom: 40px;
    }
    
    .p-concept__more {
        margin-top: 20px;
    }
    
    .p-concept__videoSlide {
        width: 250px;
        height: 200px;
        padding: 0 5px;
    }
    
    .p-concept__noVideo {
        height: 200px;
    }
}

/* ==========================================================================
   料金表
   ========================================================================== */
.p-price {
}

.p-price__table {
    max-width: 600px;
    margin: 0 auto;
}

.c-table {
    width: 100%;
    margin-bottom: 32px;
    border-collapse: collapse;
}

.c-table th {
    background: var(--color-green);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 20px;
    text-align: left;
}

.c-table td {
    padding: 12px 20px;
    border-bottom: 1px solid #e0e0e0;
    font-size: 14px;
}

.c-table td:first-child {
    width: 70%;
}

.c-table td:last-child {
    text-align: right;
    font-weight: 700;
}

.c-table tr:last-child td {
    border-bottom: none;
}

/* ==========================================================================
   アクセス
   ========================================================================== */
.p-access {
    text-align: center;
}

.p-access__content {
    max-width: 600px;
    margin: 0 auto;
}

.p-access__list {
    margin: 0 0 24px;
}

.p-access__list dt {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px;
}

.p-access__list dd {
    font-size: 16px;
    color: #333;
    margin: 0;
}

/* ==========================================================================
   お知らせ
   ========================================================================== */
.p-news {
    background: rgba(255, 255, 255, 0.85);
    text-align: center;
}

.p-news__list {
    max-width: 800px;
    margin: 0 auto 32px;
}

.p-news__item {
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    text-align: left;
}

.p-news__item:last-child {
    border-bottom: none;
}

.p-news__date {
    display: inline-block;
    font-size: 12px;
    color: #666;
    margin-right: 16px;
    min-width: 100px;
}

.p-news__title {
    display: inline;
    font-size: 14px;
    font-weight: 400;
}

.p-news__title a {
    color: #333;
    text-decoration: none;
}

.p-news__title a:hover {
    text-decoration: underline;
}

.p-news__link {
    display: inline-flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-size: 14px;
}

.p-news__link i {
    margin-left: 8px;
    font-size: 12px;
}

.p-news__link:hover {
    text-decoration: underline;
}

/* ==========================================================================
   レスポンシブ（SP）
   ========================================================================== */
@media screen and (max-width: 768px) {
    /* メインビジュアル */
    .p-mainVisual {
        min-height: 500px;
    }
    
    .p-mainVisual__content {
        padding: 60px 0;
    }
    
    .p-mainVisual__lead {
        font-size: 20px;
    }
    
    .p-mainVisual__hours,
    .p-mainVisual__area {
        font-size: 12px;
    }
    
    .p-mainVisual__note {
        font-size: 16px;
    }
    
    /* セクション共通 */
    section {
        padding: 40px 0;
    }
    
    .c-sectionTitle {
        font-size: 24px;
    }
    
    .c-sectionHeader {
        margin-bottom: 20px;
    }
    
    /* スタッフグリッド */
    .p-todayStaff__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .p-todayStaff__more {
        margin-top: 20px;
    }
    
    .p-staffCard__body {
        padding: 12px;
    }
    
    .p-staffCard__name {
        font-size: 16px;
    }
    
    .p-staffCard__meta {
        margin-bottom: 12px;
    }
    
    .p-staffCard__metaRow {
        font-size: 12px;
    }
    
    /* コンセプト */
    .p-concept__content p {
        font-size: 14px;
    }
    
    .p-concept__guaranteeText {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .p-concept__guaranteeBr {
        display: block;
    }
    
    .p-concept__guaranteeLink {
        margin-left: 0;
        display: inline-block;
        margin-top: 5px;
    }
    
    .p-concept__note {
        font-size: 12px;
        padding: 16px;
    }
    
    /* 料金表 */
    .c-table th {
        font-size: 14px;
        padding: 10px 16px;
    }
    
    .c-table td {
        font-size: 12px;
        padding: 10px 16px;
    }
    
    /* アクセス */
    .p-access__list dt {
        font-size: 12px;
    }
    
    .p-access__list dd {
        font-size: 14px;
    }
    
    /* お知らせ */
    .p-news__item {
        padding: 12px 0;
    }
    
    .p-news__date {
        display: block;
        margin-bottom: 4px;
    }
}

@media screen and (max-width: 480px) {
    /* スタッフグリッド */
    .p-todayStaff__grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   フロントページ追加スタイル（front-page.phpから移行）
   ========================================================================== */

/* 今日の出勤（上書き） */
.p-todayStaff {
    margin-top: 0;
}

.p-todayStaff__more {
    text-align: center;
    margin-top: 40px;
}

/* ボタンスタイル */
.c-button--outline {
    background: transparent;
    border: 1px solid #d9d9d9;
    color: #d9d9d9;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
}

.c-button--outline:hover {
    background: #d9d9d9;
    color: #fff;
}

.c-button--white {
    background: #fff;
    color: #303c09;
    border: 2px solid #303c09;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
}

.c-button--white:hover {
    background: #303c09;
    color: #fff;
}

.c-button--green {
    background: #303c09;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
}

.c-button--green:hover {
    background: #4a5a0d;
}

/* コンセプト（上書き） */
.p-concept {
    padding: 0 0 80px;
}

.p-concept__more {
    text-align: center;
    margin-top: 40px;
}

.p-concept__more .c-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* 料金表（上書き） */
.p-price {
}

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

.p-price__simpleText {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff0000;
}

.p-price__more {
    margin-top: 40px;
}

@media (max-width: 768px) {
    .p-price__more {
        margin-top: 20px;
    }
}

/* お知らせ */
.p-notice {
    padding: 0 0 80px;
}

.p-notice__list {
    max-width: 800px;
    margin: 0 auto 40px;
    border-top: 1px solid #e0e0e0;
}

.p-notice__item {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid #e0e0e0;
}

.p-notice__link {
    display: flex;
    align-items: center;
    padding: 25px 0;
    color: #d9d9d9;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.p-notice__link:hover {
    background-color: rgba(248, 248, 248, 0.5);
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
}

.p-notice__date {
    flex-shrink: 0;
    width: 100px;
    font-size: 14px;
    color: #d9d9d9;
    font-weight: 500;
}

.p-notice__title {
    flex: 1;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    margin: 0;
    padding-left: 30px;
}

.p-notice__more {
    text-align: center;
}

@media (max-width: 768px) {
    .p-notice__more {
        margin-top: 20px;
    }
}

.p-notice__nodata {
    text-align: center;
    padding: 40px;
    color: #666;
}

/* バナースライダー */
.simple-banner-slider {
    width: calc(100% - 40px);
    max-width: 860px;
    margin: 20px auto 45px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.simple-banner-slider img {
    width: 100%;
    height: auto;
    display: block;
}

.simple-banner-slider .swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.simple-banner-slider .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: flex;
    transition-property: transform;
    box-sizing: content-box;
}

.simple-banner-slider .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: opacity;
}

.simple-banner-slider .swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.simple-banner-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
    margin: 0 4px;
}

.simple-banner-slider .swiper-pagination-bullet-active {
    background: #fff;
}

.simple-banner-slider .swiper-button-prev,
.simple-banner-slider .swiper-button-next {
    color: #fff;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-top: -20px;
    z-index: 10;
}

.simple-banner-slider .swiper-button-prev {
    left: 10px;
}

.simple-banner-slider .swiper-button-next {
    right: 10px;
}

.simple-banner-slider .swiper-button-prev:after,
.simple-banner-slider .swiper-button-next:after {
    font-size: 16px;
}

/* アクセス（上書き） */
.p-access {
    padding: 0 0 80px;
}

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

.p-access__info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.p-access__subtitle {
    font-size: 20px;
    font-weight: 700;
    color: #303c09;
    margin-bottom: 20px;
}

.p-access__area {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.p-access__note {
    font-size: 14px;
    color: #666;
}

.p-access__more {
    margin-top: 40px;
    text-align: center;
}

/* レスポンシブ（フロントページ追加分） */
@media (max-width: 768px) {
    .p-price__simpleText {
        font-size: 24px;
    }
    
    /* セクションのパディング調整 */
    .p-concept,
    .p-price,
    .p-access,
    .p-notice {
        padding: 30px 0;
    }
    
    .p-notice__link {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
    }
    
    .p-notice__link:hover {
        margin: 0 -16px;
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .p-notice__date {
        width: auto;
        margin-bottom: 8px;
        font-size: 13px;
    }
    
    .p-notice__title {
        padding-left: 0;
        font-size: 16px;
    }
    
    .simple-banner-slider {
        width: calc(100% - 30px);
        margin: 15px auto 45px;
    }
    
    .simple-banner-slider img {
        width: 100%;
        height: auto;
    }
    
    .simple-banner-slider .swiper-button-prev,
    .simple-banner-slider .swiper-button-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
    }
    
    .simple-banner-slider .swiper-button-prev:after,
    .simple-banner-slider .swiper-button-next:after {
        font-size: 12px;
    }
    
    .p-access {
        padding: 30px 0;
    }
    
    .p-access__info {
        padding: 30px 20px;
    }
    
    .p-access__more {
        margin-top: 20px;
    }
    
    .p-access__area {
        font-size: 20px;
    }
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.p-faq {
    padding: 0 0 80px;
}

.p-faq__list {
    max-width: 800px;
    margin: 0 auto;
}

.p-faq__item {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.p-faq__question,
.p-faq__answer {
    display: flex;
    align-items: flex-start;
    padding: 20px;
}

.p-faq__question {
    background: #303c09;
    border-bottom: 1px solid rgba(48, 60, 9, 0.4);
}

.p-faq__answer {
    background: #fff5b8;
}

.p-faq__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-right: 20px;
}

.p-faq__question .p-faq__icon {
    background: #fff;
    color: #303c09;
}

.p-faq__answer .p-faq__icon {
    background: #ff0000;
    color: #fff;
}

.p-faq__questionText,
.p-faq__answerText {
    flex: 1;
    font-size: 16px;
    line-height: 1.8;
    margin: 0;
    padding-top: 8px;
}

.p-faq__questionText {
    color: #fff;
    font-weight: 700;
}

.p-faq__answerText {
    color: #333;
}

.p-faq__more {
    text-align: center;
    margin-top: 40px;
}

.p-faq__more .c-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .p-faq {
        padding: 30px 0;
    }
    
    .p-faq__item {
        margin-bottom: 20px;
    }
    
    .p-faq__more {
        margin-top: 20px;
    }
    
    .p-faq__question,
    .p-faq__answer {
        padding: 15px;
    }
    
    .p-faq__icon {
        width: 32px;
        height: 32px;
        font-size: 14px;
        margin-right: 15px;
    }
    
    .p-faq__questionText,
    .p-faq__answerText {
        font-size: 14px;
        padding-top: 5px;
    }
}