

:root {
    --fcc-primary-blue: #1e4d8b;
    --fcc-accent-blue: #2d6cb5;
    --fcc-light-blue: #e8f1f8;
    --fcc-text-dark: #333333;
    --fcc-text-gray: #666666;
    --fcc-text-light: #999999;
    --fcc-border-gray: #e0e0e0;
    --fcc-bg-white: #ffffff;
    --fcc-bg-gray: #f8f9fa;
}

/* =========================
  bodyのpadding調整
========================= */
.l-contents__container.c-fluid-container.fuku__body {
    padding: 0;
}

.l-contents__container.c-fluid-container.fuku__body .l-contents__inner {
    padding-top: 0;
}
/* =========================
   ヘッダー画像
========================= */

.fcc-hero {
        max-width: 100vw;
    width: 100%;
    height: 335px;
   
}

.fcc-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}
/* ========== 一つ前に戻るエリア ========== */
.fcc-back-link {
    max-width: 1200px;
    margin: 25px auto 0;
    padding: 0 40px;
}

.fcc-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    color: #32648F;
    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: all .3s ease;
}

.fcc-back-link a:hover {
    transform: translateX(-4px);
    opacity: .7;
}

@media (max-width:768px){

    .fcc-back-link{
        padding:0 20px;
    }

}
/* ========== カテゴリエリア ========== */
.fcc-category-area {
    max-width: 100vw;
    background: var(--fcc-primary-blue) ;
    color: white ;
    text-align: center ;
    padding: 15px 0 ;
}

.fcc-category-name {
    font-weight: 600 ;
    letter-spacing: 1px ;
    text-align: left;
    padding-left: 40px;
    font-size: 12px;
}
 .fcc-category-name p a {
    text-decoration: none;
    color: #fff;
    font-size: 14px;;
 }

/* ========== メインコンテンツ ========== */
.fcc-main-content {
    max-width: 1200px ;
    margin: 0 auto ;
    padding: 20px 20px 60px;
}

.reform-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
     margin-bottom: 40px;
     border-bottom: 2px solid #32648F;
     padding-bottom: 8px;
gap: 10px;

}
.reform-title span {
    background-color: #32648F;
    color: #fff;
    padding:6px 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

.fcc-page-title {
    font-size: 32px;
    font-weight: bold;
    color: #32648F;
    line-height: 1.3;
   
    }

/* ========== アコーディオン ========== */
.fcc-accordion-section {
    background: var(--fcc-bg-white);
    border-radius: 8px;
    margin-bottom: 30px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.fcc-accordion-header {
    padding: 25px 30px;
    background: var(--fcc-light-blue);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.fcc-accordion-header {
    transition:
        background 0.3s ease,
        padding-left 0.3s ease;
}

.fcc-accordion-header.active {
    padding-left: 40px;
}
.fcc-accordion-header:hover {
    background: #d9e8f5;
}

.fcc-section-heading .fcc-accordion-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding:25px 30px ;
    background-color:#e8f1f8 ;
}
.fcc-section-heading .fcc-accordion-title-wrapper h2 {
    line-height: 1;
}
.fcc-accordion-title-en {
    font-size: 14px;
    color: var(--fcc-text-light);
    letter-spacing: 1px;
}

.fcc-accordion-title, .fcc-accordion-title h2 {
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
    color: var(--fcc-primary-blue);
}

.fcc-accordion-icon {
    font-size: 20px;
    color: var(--fcc-accent-blue);
    transition: transform 0.3s;
}

.fcc-accordion-header.active .fcc-accordion-icon {
    transform: rotate(180deg);
}

.fcc-accordion-content {
    max-height: 0;
    overflow: hidden;

    opacity: 0;

    transition:
        max-height 0.45s ease,
        opacity 0.25s ease;
}

.fcc-accordion-content.active {
    max-height: 2000px;
    opacity: 1;
}

.fcc-accordion-inner {
    padding: 30px;
}

.fcc-voice-text {
    font-size: 16px;
    line-height: 2;
  
    padding: 15px;
   
}

.fcc-no-data {
    text-align: center;
    padding: 40px;
    color: var(--fcc-text-light);
    font-style: italic;
}

/* ========== プロフィール ========== */
.fcc-profile-section {
    margin-bottom: 50px;
}

.fcc-profile-heading {
    font-size: 24px;
    font-weight: 700;
    color: #2f5f91;

    padding-bottom: 8px;
    margin-bottom: 24px;

    border-bottom: 2px solid #d7e5f3;
}

.fcc-profile-text-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fcc-profile-text-item {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.fcc-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 28px;
}

.fcc-profile-item {
    display: flex;
    align-items: center;

    background: #f5f5f5;

    border-radius: 8px;

    padding: 18px 20px;
}

.fcc-profile-label {
    font-weight: 700;
    margin-right: 12px;
    white-space: nowrap;
}

.fcc-profile-value {
    color: #333;
}
@media(max-width:1200px) {
.fcc-section-heading .fcc-accordion-title-wrapper {
    padding:  10px 15px;
    gap: 0;
}
.fcc-category-name h3 {
    font-size: 16px !important;
}

}
@media screen and (max-width: 768px) {

    .fcc-profile-grid {
        grid-template-columns: 1fr;
    }

    .fcc-profile-heading {
        font-size: 18px;
    }

}
/* ========== ビフォーアフター ========== */
.fcc-before-after-section {
    background: var(--fcc-bg-white);
    border-radius: 8px;
    margin-bottom: 30px;
border: 2px solid #E0F0FC;}

.fcc-section-title {
    font-size: 32px;
    font-weight: bold;
    color: var(--fcc-text-dark);
    margin-bottom: 30px;
    text-align: center;
}

/* PC用2列レイアウト */
.fcc-slider-wrapper {
    position: relative;
    padding: 40px;
}

.fcc-main-nav-btn {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--fcc-accent-blue);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(45,108,181,0.3);
}

.fcc-main-nav-btn:hover {
    background: var(--fcc-primary-blue);
    transform: translateY(-50%) scale(1.1);
}

.fcc-main-nav-btn.prev {
    left: -25px;
}

.fcc-main-nav-btn.next {
    right: -25px;
}

.fcc-slider-container {
    /* display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px; */
        display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.fcc-slider-column {
    max-width: 500px;
    width: 100%;
}

.fcc-slider-label {
    text-align: left;
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    padding:6px 10px;
    border-radius: 4px;
}

.fcc-slider-label.before {
    background: #fff4e6;
    color: #d97706;
}

.fcc-slider-label.after {
    background: #e6f7ff;
    color: #1890ff;
}

.fcc-main-slider {
    aspect-ratio: 4/3;
    background: #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s;
    position: relative;
}
.fcc-main-slider::after {
    content: "";
  position: absolute;
  bottom: 10px;
  right: 10px;

  width: 45px;
  height: 45px;

  background-image: url("../images/zoom-icon.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  z-index: 10;
    
}
.fcc-main-slider:hover {
    transform: scale(1.02);
}

.fcc-main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fcc-no-image {
    color: #999;
    font-size: 14px;
}
.fcc-discription {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.fcc-image-text {
    margin-bottom: 15px;
    min-height: 60px;
}

.fcc-room-name {
    background-color:#e8f1f8 ;
    font-weight: bold;
    color: var(--fcc-primary-blue);
    margin-bottom: 5px;
    padding: 5px 8px;
    border-radius: 8px;
}

.fcc-description {
    
    font-size: 14px;
    color: var(--fcc-text-gray);
    line-height: 1.6;
    padding: 5px;
}

.fcc-thumbnail-container {
    padding: 15px 0;
    border-top: 1px solid #1e4d8b;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
}

.fcc-thumbnail-slider {
    display: flex;
    gap: 10px;
}

.fcc-thumbnail {
    min-width: 100px;
    height: 80px;
    background: #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s;
    overflow: hidden;
}

.fcc-thumbnail:hover {
    border-color: var(--fcc-accent-blue);
}

.fcc-thumbnail.active {
    border-color: var(--fcc-accent-blue);
}

.fcc-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* スマホ用タブ */
.fcc-mobile-tabs {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 15px 0;
}

.fcc-mobile-tab {
    padding: 8px 15px;
    background: #f0f0f0;
    border: 2px solid #e0e0e0;
    text-align: center;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s;
}

.fcc-mobile-tab.active {
    background: var(--fcc-primary-blue);
    color: white;
    border-color: var(--fcc-primary-blue);
}
.fcc-mobile-tab.tab-b.active {
    background:#fff4e6;
    color: #d97706;
    border-color: var(--fcc-primary-blue);
}
.fcc-mobile-single-view {
    display: none;
}
/* ========== スライド促しtext ========== */
.slider-text{

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  margin: 10px 10px 0;

  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.03em;

  color: #666;
  background: rgba(255,255,255,0.9);
  border: 1px solid #e5e5e5;
  border-radius: 999px;

  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  backdrop-filter: blur(4px);

  animation: slideHint 2s ease-in-out infinite;
}

.slider-text::before{
  content: "⇄";
  font-size: 14px;
  color: #999;
}

@keyframes slideHint{
  0%,100%{
    transform: translateX(0);
  }
  50%{
    transform: translateX(4px);
  }
}
/* ========== CTA ========== */
.fcc-cta-section {
    background: linear-gradient(135deg, var(--fcc-primary-blue) 0%, var(--fcc-accent-blue) 100%);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.fcc-cta-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 15px;
}

.fcc-cta-text {
    font-size: 16px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.fcc-btn-area {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.fcc-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 260px;
    min-height: 64px;

    padding: 18px 32px;

    background: #fff;
    color: var(--fcc-primary-blue);

    font-size: 18px;
    font-weight: 700;
    text-align: center;
    text-decoration: none;

    border-radius: 999px;

    box-shadow: 0 4px 12px rgba(0,0,0,0.15);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        opacity 0.3s ease;
}

.fcc-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.2);
}

.fcc-cta-button.line {
    background: #06c755;
    color: #fff;
}

.fcc-cta-button.line:hover {
    opacity: 0.92;
}
/* ========== レスポンシブ ========== */
@media (max-width: 1200px) {
    .fcc-category-name {
        padding-left: 10px;
    }
    .fcc-main-content {
        padding: 20px 15px;
    }
    .reform-title span {
        font-size: 14px;
    }
    
    .fcc-page-title {
        font-size: 18px;
    
    }
    
    .fcc-accordion-header {
        padding: 20px;
    }
    
    .fcc-accordion-title {
        font-size: 18px;
    }
    
    .fcc-accordion-inner {
        padding: 20px;
    }
    
    .fcc-profile-grid {
        grid-template-columns: 1fr;
    }
    
    .fcc-before-after-section {
        padding:0 0 30px;
    }
    
    /* スマホ：タブ切り替え式 */
    .fcc-mobile-tabs {
        display: grid;
    }
    
    .fcc-mobile-single-view {
        display: block;
    }
    
    .fcc-slider-wrapper {
        display: none;
    }
    
    .fcc-slider-column {
        max-width: 100%;
        padding: 15px;
    }
    
    .fcc-slider-label {
        display: none;
    }
    
    .fcc-thumbnail {
        min-width: calc((100% - 20px) / 2);
        height: 100px;
    }
    
    .fcc-cta-section {
        padding: 40px 20px;
    }
    .fcc-cta-text {
        font-size: 14px;
    }
    
    .fcc-cta-title {
        font-size: 22px;
    }
    
    .fcc-cta-button {
        padding: 15px 40px;
        font-size: 16px;
    }
}
/* =========================
   ライトボックス
========================= */

#fcc-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
    transition: background 0.3s ease;
}

#fcc-lightbox.active {
    background: rgba(0,0,0,0.92);
}

.fcc-lightbox-content {
    transform: scale(0.8);
    opacity: 0;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

#fcc-lightbox.active .fcc-lightbox-content {
    transform: scale(1);
    opacity: 1;
}

.fcc-lightbox-content img {
    width: 80vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* 閉じるボタン */

.fcc-lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    line-height: 1;

    border: none;
    border-radius: 999px;

    background: rgba(255,255,255,0.15);
    color: white;

    font-size: 28px;
    font-weight: 300;

    cursor: pointer;

    backdrop-filter: blur(10px);

    transition: all 0.3s ease;

    z-index: 2;
}

.fcc-lightbox-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.08);
}
/* =========================
   footerロゴ
========================= */
.wp-block-column .footer-logo img {
    width: 320px !important;
}

