/* ===== Review slider (Slick) ===== */
.js-review-slider { position: relative; }
.js-review-slider { overflow-x: auto; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; padding: 0 10%; }
.js-review-slider::-webkit-scrollbar { display: none; }
.review-track { display: flex; align-items: stretch; gap: 16px; }
.js-review-slider .review-slide { flex: 0 0 80%; scroll-snap-align: center; opacity: .45; transition: opacity .25s ease, transform .25s ease; }
.js-review-slider .review-slide:is(:hover, :focus) { opacity: 1; transform: translateY(-2px); }
.js-review-slider .review-slide.is-center { opacity: 1 !important; transform: none; }

.js-review-slider .review-item { 
    background: #fff; 
    border-radius: 10px; 
    box-shadow: 0 8px 20px rgba(0,0,0,.08); 
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
}
.js-review-slider .review-item img { width: 100%; height: auto; display: block; }
.js-review-slider .review-item p { 
    padding: 16px; 
    line-height: 1.8; 
}

/* optional nav/dots would go here if needed */

@media (max-width: 768px){
  .js-review-slider .slick-slide { padding: 0 6px; }
}
/* Noto Sans JP */
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/NotoSansJP-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/NotoSansJP-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/NotoSansJP-Bold.woff') format('woff');
}

/* Noto Sans CJK JP */
@font-face {
    font-family: 'Noto Sans CJK JP';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/NotoSansCJKjp-Regular.woff') format('woff');
}

/* Poppins */
@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/Poppins-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/Poppins-Medium.woff') format('woff');
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/Poppins-SemiBold.woff') format('woff');
}

/* Shippori Mincho */
@font-face {
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ShipporiMincho-Regular.woff') format('woff');
}

@font-face {
    font-family: 'Shippori Mincho';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/ShipporiMincho-Medium.woff') format('woff');
}

/* Zen Kaku Gothic New */
@font-face {
    font-family: 'Zen Kaku Gothic New';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/ZenKakuGothicNew-Regular.woff') format('woff');
}

/* ------------------------------
ヘッダー
------------------------------ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.1); /* 半透明の白を追加 */
    backdrop-filter: blur(5px); /* ぼかし効果を追加（オプション） */
}
.header__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    width: 120px;
}

.header__logo img {
    width: 100%;
    height: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: right;
    width: 85%;
}

.header__nav-list {
    display: flex;
    gap: 5%;
    width: 45%;
}

.header__nav-item a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    color: #3B2208;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.44px;
}

.header__nav-item a:hover {
    color: #666;
}

.header__nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 55%;
    gap: 1rem;
}

.header__line-btn {
    display: flex;
    justify-content: center;
    width: 23%;
    padding: 0.5rem 0;
    border-radius: 30px;
    border: 1.5px solid #3B2208;
    text-decoration: none;
    transition: opacity 0.3s;
    color: #3B2208;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.24px;
    white-space: nowrap;
}
.header__line-btn:first-of-type{
    background: none;
    display: flex;
    justify-content: center;
    width: 23%;
    padding: 0.5rem 0;
    border-radius: 30px;
    border: 1.5px solid #3B2208;
    text-decoration: none;
    transition: opacity 0.3s;
    color: #3B2208;
    font-family: Poppins;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.24px;
    white-space: nowrap;
}

.header__line-btn:hover {
    opacity: 0.8;
}
.header__line-btn._hpb-btn{
    width: 50%;
    border: 1px solid #690026;
    background: #9F1547;
    color: #FFF;
}






.header__instagram-btn {
    width: 40px;
    height: 40px;
    color: #333;
    text-decoration: none;
    transition: color 0.3s;
}

.header__instagram-btn:hover {
    color: #E1306C;
}

.header__hamburger {
    display: none;
    width: 30px;
    height: 24px;
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}

.header__hamburger span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #333;
    transition: all 0.3s;
    position: absolute;
}

.header__hamburger span:nth-child(1) {
    top: 0;
}

.header__hamburger span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.header__hamburger span:nth-child(3) {
    bottom: 0;
}

.header__hamburger.is-active span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    z-index: 2;
}

.header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
    z-index: 2;
}

.header__nav.is-active {
    display: block;
}


/* ------------------------------
共通
------------------------------ */
main{
    overflow-x: hidden;
}
section{
    padding: 128px 0;
}
section.mv{
    padding: 0;
}
._title-before{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #3B2208;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.44px;
    margin-bottom: 24px;
}
._title-before::before{
    content: '';
    background-image: url(../img/dot.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 12px;
    height: 12px;
    display: block;
}

/* ------------------------------
fixed-btn
------------------------------ */
/* 追従ボタンのスタイル */
.fixed-btn {
    position: fixed;
    width: 200px;
    aspect-ratio: 1/1;
    bottom: 60px;
    right: 2%;
    z-index: 1000;
    display: none; /* 初期状態では非表示 */
}

.fixed-button.active {
    display: block;
}

.fixed-button img {
    width: 46px; /* ボタンのサイズを調整 */
    height: auto;
}

.fixed-button-close {
    position: absolute;
    width: 46px;
    aspect-ratio: 1/1;
    top: 2%;
    right: 2%;
    transform: translate(50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.fixed-button-close img {
    width: 32px;
    height: 32px;
}

/* ポップアップのスタイル */
.popup {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-content {
    position: relative;
    background-color: #fff;
    width: 60%;
    padding: 20px;
    border-radius: 10px;
}

.popup-close {
    position: absolute;
    top: calc(2% + 20px);
    right: calc(2% + 20px);
    transform: translate(50%, -50%);
    background: url('assets/img/close.webp') no-repeat center center;
    background-size: cover;
    width: 30px;
    height: 30px;
    border: none;
    cursor: pointer;
}

.popup-close img {
    width: 32px;
    height: 32px;
}

/* ------------------------------
mv
------------------------------ */
.mv {
    width: 100vw;
    height: 920px;
    background-image: url(../img/mv.webp);
    background-size: cover;
    background-position: center;
    position: relative;
}
.mv-inner {
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: left;
}
.mv-inner > span{
    color: #3B2208;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.44px;
}
.mv-text{
    background: rgba(59, 34, 8, 0.31);
    background-blend-mode: multiply;
    padding: 8px 32px;
    width: fit-content;
    margin-bottom: 28px;
}
.mv-text span{
    color: #fff;
    font-family: "Noto Sans JP";
    font-size: 26px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.mv h1{
    color: #3B2208;
    font-family: "Shippori Mincho";
    font-size: 40.91px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 2.864px;
    margin-bottom: 12px;
}
.mv > span{
    color: #3B2208;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.44px;
}

.mv-banner-slider {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
    border-radius: 20px;
}

.mv-banner-slider__track {
    display: flex;
    transition: transform 0.6s ease;
}

.mv-banner-slider__item {
    flex: 0 0 100%;
}

.mv-banner-slider__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.mv-banner-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(59, 34, 8, 0.5);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.mv-banner-slider__nav--prev {
    left: 16px;
}

.mv-banner-slider__nav--next {
    right: 16px;
}

.mv-banner-slider__nav::before {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

.mv-banner-slider__nav--prev::before {
    transform: rotate(-135deg);
}

.mv-banner-slider__nav--next::before {
    transform: rotate(45deg);
}

.mv-banner-slider__nav:disabled,
.mv-banner-slider.is-single .mv-banner-slider__nav {
    opacity: 0;
    pointer-events: none;
}

.mv-banner-slider__dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.mv-banner-slider__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background 0.3s ease;
}

.mv-banner-slider__dot.is-active {
    background: #FFFFFF;
}

.mv-banner-slider__empty {
    color: #3B2208;
    font-size: 14px;
}


/* ------------------------------
about
------------------------------ */
section.about{
    width: 100%;
    padding-bottom: 0;
    background: #F8F5F1;
}
.about-inner{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: start;
    padding-bottom: 84px;
    position: relative;
}
.about-inner::after{
    display: none;
}
.about-title_layout{
    width: fit-content;
    margin-top: 30px;
    margin-right: 48px;
}
.about-main h2{
    color: #3B2208;
    font-family: "Shippori Mincho";
    font-size: 40.91px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%; /* 73.639px */
    letter-spacing: 2.864px;
    margin-bottom: 12px;
}
.about-main p{
    color: #3B2208;
    font-family: "Noto Sans JP";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 64px;
}
.about-flex{
    display: flex;
    align-items: start;
    justify-content: space-between;
}
.about-flex ol{
    width: 55%;
    list-style-type: none;
    counter-reset: cnt 0;
}
.about-flex ol li{
    display: flex;
    align-items: start;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    margin-bottom: 28px;
}
.about-flex ol li::before {
    counter-increment: cnt 1;
    content: counter(cnt,decimal-leading-zero);
    padding-right: 16px;
    color: #6DAFCA;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.44px;
}
.about-flex img{
    width: 45%;
    border-radius: 16px;
}


/* ------------------------------
issue
------------------------------ */
section.issue{
    width: 100%;
    padding:104px 0 0;
    background: #F8F5F1;
    position: relative;
    text-align: center;
}
section.issue::before{
    content: '';
    position: absolute;
    background-color: #817066;
    width: 1px;
    height: 40px;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
}
section.issue::after{
    content: '';
    position: absolute;
    background-color: #817066;
    width: 80%;
    height: 1px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.issue h2{
    color: #3B2208;
    font-family: "Shippori Mincho";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%; /* 73.639px */
    letter-spacing: 2.864px;
}
.issue img{
    width: 50%;
    max-width: 430px;
    margin: 20px auto 0;
}




/* ------------------------------
benefit
------------------------------ */
section.benefit{
    width: 100%;
    padding: 114px 0 40px;
    background: #fff;
    text-align: center;
    position: relative;
}
section.benefit::before{
    content: '';
    position: absolute;
    display: block;
    background-color: #F8F5F1;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    width: 100%;
    height: 72px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}
.benefit h2{
    color: #3B2208;
    font-family: "Shippori Mincho";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%; /* 73.639px */
    letter-spacing: 2.864px;
    margin-bottom: 24px;
}
.benefit-list{
    text-align: left;
    width: 60%;
    max-width: 800px;
    margin: 0 auto;
}
.benefit-item{
    display: flex;
    flex-direction: column;
    margin-bottom: 4px;
}
.benefit-item h3{
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
    display: flex;
    align-items: center;
}
.benefit-item h3::before{
    content: '';
    background-image: url(../img/dot.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 16px;
    height: 16px;
    display: block;
    margin-right: 4px;
}
.benefit-item p{
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}



/* ------------------------------
bf
------------------------------ */
section.bf{
    width: 100%;
    padding-bottom: 0;
    background: #F8F5F1;
}
.bf-inner{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}
.bf h2{
    color: #3B2208;
    font-family: "Shippori Mincho";
    font-size: 40.91px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%; /* 73.639px */
    letter-spacing: 2.864px;
    text-align: center;
}
.bf-inner > p{
    color: #3B2208;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}
.bf-flex{
    width: 100%;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2%;
    margin-top:40px ;
    margin-bottom: 88px;
}
.bf-left{
    width: 55%;
}
.bf-list{
    margin-bottom: 40px;
}
.bf-item{
    display: flex;
    align-items: center;
    justify-content: left;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    margin-bottom: 4px;
}
._bold{
    font-weight: 700;
    width: fit-content;
}
.bf-item::before{
    content: '';
    background-image: url(../img/dot.webp);
    background-size: cover;
    background-position: center;
    width: 16px;
    height: 16px;
    display: block;
    margin-right: 4px;
}
.bf-flex-item{
    display: flex;
    gap: 4%;
}
.bf-flex-item img{
    width: 48%;
}
.bf-right{
    width: 43%;
}
.bf-right ._attention{
    color: #3B2208;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 16px;
}
.bf-banner{
    width: 100%;
    margin-top: 128px;
    margin-bottom: 0;
}
.banner-inner{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    display: block;
}
.banner-inner img{
    width: 100%;
}



/* ------------------------------
slider-section
------------------------------ */
section.slider-section{
    width: 100%;
    padding-bottom: 80px;
    background: #F8F5F1;
}

/* スライダーコンテナ */
.slider-container {
    position: relative;
    width: 100%;
    z-index: 1;
}

/* スライダー */
.slider {
    width: 100%;
    height: 348px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.slider-track {
    display: flex;
    width: calc(279px * 12); /* スライド数に応じて調整 */
    height: 100%;
}

.slide {
    width: 279px;
    height: 100%;
    flex-shrink: 0;
    margin-right: 38px;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 19px;
}

/* スライダーコントロールボタン */
.slider-controls {
    width: 300px;
    position: absolute;
    bottom: 0;
    left: 50%;
    /* right: 0; */
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 10px;
    border: none;
    border-radius: 50%;
    color: #3B2208;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    z-index: 11;
    position: relative;
    background: none;
}

.slider-btn:hover {
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

/* インジケーター */
.slider-indicators {
    width: 280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    position: relative;
    z-index: 10;
}

.indicator {
    width: 6px;
    aspect-ratio: 1/1;
    border: none;
    border-radius: 50%;
    background: rgba(59, 34, 8, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 11;
    padding: 0;
}

.indicator.active {
    background: #3B2208;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(59, 34, 8, 0.6);
}



/* ------------------------------
precaution
------------------------------ */
section.precaution{
    width: 100%;
    padding-bottom: 0;
    background: #F8F5F1;
}
.precaution-inner{
    width: 80%;
    max-width: 1080px;
    padding: 58px 0;
    box-sizing: border-box;
    margin: 0 auto;
    text-align: center;
    background: #EFEAE4;
}
.precaution-inner h2{
    color: #3B2208;
    font-family: "Shippori Mincho";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%; /* 73.639px */
    letter-spacing: 2.864px;
    margin-bottom: 32px;
}
.precaution-inner > p{
    width: 60%;
    margin: 0 auto;
    text-align: left;
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 30.6px */
}
.precaution-inner > p:first-of-type{
    margin-bottom: 32px;
}
.precaution-list{
    width: 60%;
    margin: 0 auto;
    text-align: left;
    list-style: disc;
    padding-left: 40px;
}
.precaution-list li{
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%; /* 30.6px */
}
.precaution-inner ._attention{
    margin-bottom: 32px;
}




/* ------------------------------
flow
------------------------------ */
section.flow{
    width: 100%;
    padding:64px 0 70px;
    background: #F8F5F1;
    overflow: hidden;
}
.flow-grid{
    width: 80%;
    margin-bottom: 64px;
}
.flow-inner{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
    padding-bottom:40px ;
}
.flow-inner h2{
    color: #3B2208;
    font-family: "Shippori Mincho";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%; /* 73.639px */
    letter-spacing: 2.864px;
    text-align: center;
    margin-bottom: 32px;
}
.flow-grid{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    height: 256px;
    gap: 2%;
    margin-bottom: 64px;
}
.flow-item{
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 24px 16px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}
.f-item-text{
    padding-left: 10px;
}
.f-item-text h3{
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}
.f-item-text span{
    color: #6DAFCA;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.44px;
}
.flow-flex{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.flow-flex img{
    width: 40%;
}
.flow-flex img:last-child{
    width: 20%;
    margin-right: 12px;
    padding-bottom: 16px;
}
.flow-slide .f-item-text{
    margin-bottom: 16px;
}
.flow-slide p{
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}
.flow-slide ._attention{
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}
/* フローアイテムのスタイル */
.flow-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.flow-item:hover {
    background-color: #f8f8f8;
}

.flow-item.active {
    background-color: #f8f8f8;
}

/* スライダーのスタイル */
.flow-slider {
    width: 100%;
    height: 324px;
    position: relative;
    margin-top: 40px;
}
.flow-slide {
    width: 100%;
    position: absolute;
    left: 100%;
    opacity: 0;
    transition: all 1s ease;
    padding: 64px 80px;
    background: #fff;
    box-sizing: border-box;
    filter: blur(20px);
}
.flow-slide.active {
    left: 0;
    opacity: 1;
    filter: none;
}
.f-slide-flex{
    display: flex;
    align-items: start;
    justify-content: left;
    gap: 10%;
    margin-top: 8px;
}
/* ------------------------------
staff
------------------------------ */
section.staff{
    width: 100%;
    padding: 70px 0 180px;
    text-align: center;
    background: #F8F5F1;
}
.staff ._title-before{
    justify-content: center;
}
.staff h2{
    color: #3B2208;
    font-family: "Shippori Mincho";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%; /* 73.639px */
    letter-spacing: 2.864px;
}
.staff-content{
    width: 70%;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-top: 58px;
}
.staff-info{
    text-align: left;
    width: 50%;
}
.staff-content > img{
    width: 40%;
}
.staff-name{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 30px;
}
.staff-name p, .staff-name span{
    width: fit-content;
    white-space: nowrap;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}
.staff-name span{
    color: rgba(59, 34, 8, 0.31);
}
.staff-text{
    width: 100%;
    padding: 40px 0 30px;
    border-bottom: 1px solid #C0C0C0;
    margin-bottom: 40px;
}
.staff-text p, .staff-detail p{
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}

/* ------------------------------
faq
------------------------------ */
section.faq{
    width: 100%;
    padding-top: 0;
    background: #F8F5F1;
}
.faq-inner{
    width: 70%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.faq-inner h2{
    color: #3B2208;
    font-family: "Shippori Mincho";
    font-size: 40px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%; /* 73.639px */
    letter-spacing: 2.864px;
}
.faq-nav{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8%;
    margin-top:38px ;
    margin-bottom: 72px;
}
.f-nav-item{
    width: fit-content;
    text-align: center;
    padding-bottom: 18px;
    position: relative;
}
.f-nav-item::before{
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: #C0C0C0;
    position: absolute;
    left: 0;
    bottom: 11px;
}
.f-nav-item::after{
    content: '';
    display: block;
    background-image: url(../img/triangle.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 8px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left : 50%;
    transform: translateX(-50%);
}
.f-nav-item p{
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}
.faq-item{
    margin-bottom: 24px;
}
.faq-q, .faq-a{
    display: flex;
    justify-content: left;
    align-items: start;
    text-align: left;
    gap: 20px;
}
.faq-q{
    padding-bottom: 14px;
    border-bottom: 1px solid #C0C0C0;
    position: relative;
}
.faq-a{
    padding-top: 32px;
    margin-left: 36px;
    display: none;
}
.faq-q p, .faq-a p{
    line-height: 180%;
}
.faq-q::before{
    content: 'Q';
    color: #6DAFCA;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.44px;
}
.faq-a::before{
    content: 'A';
    color: #BE252D;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.44px;
}
.faq-q::after{
    content: '+';
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 17px;
    font-style: normal;
    font-weight: 300;
    line-height: 180%;
    position: absolute;
    right: 2%;
    top:calc(50% - 8px);
    transform: translateY(-50%);
}



/* ------------------------------
access
------------------------------ */
section.access{
    width: 100%;
    padding: 72px 0 104px;
    background: #4A4845;
    text-align: center;
}
.access ._title-before{
    color: #F8F5F1;
}
.access h2{
    margin-bottom: 28px;
    color: #F8F5F1;
    font-family: "Shippori Mincho";
    font-size: 40.91px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%; /* 73.639px */
    letter-spacing: 2.864px;
}
.access p{
    color: #F8F5F1;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.access-content{
    width: 90%;
    height: 408px;
    margin: 0 auto 48px;
}
.access-content iframe{
    width: 100%;
    height: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}


/* ------------------------------
notation
------------------------------ */
section.notation{
    width: 100%;
    padding: 160px 0 104px;
    background: #F8F5F1;
    text-align: left;
}
.notation__inner{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}
.notation__title{
    color: #151515;
    margin-bottom: 32px;
}
.notation__inner table{
    width: 100%;
    word-break: break-all;
    word-wrap: break-all;
}
.notation__inner tr{
    position: relative;
    line-height: 150%;
}
.notation__inner tr::before {
    content: '';
    display: block;
    width: 100%;
    height: 1px; /* 少し太めに */
    background:
    linear-gradient(
        to right,
        rgba(129, 112, 102, 0.5) 25%,
        rgba(129, 112, 102, 0.3) 25%,
        rgba(129, 112, 102, 0.3) 100%,
        transparent
    );
    position: absolute;
    bottom: 0;
}
.notation__inner th{
    width: 25%;
    padding-left: 8px;
}
.notation__inner td{
    padding: 32px 0 32px 8px;
}

/* ------------------------------
footer
------------------------------ */
footer{
    width: 100%;
    background: #4A4845;
    padding-top: 40px;
}
.footer-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
    max-width: 840px;
    margin: 0 auto;
}
.footer-logo{
    width: 160px;
}
.footer-nav{
    width: calc(100% - 328px);
    max-width: 315px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    row-gap: 64px;
    margin-left: 40px;
}
.footer-nav a{
    color: #F8F5F1;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.44px;
    text-decoration: none;
}
.footer-insta{
    width: 168px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
}
.footer-insta img{
    width: 30%;
}
.footer-insta p{
    color: #F8F5F1;
    font-family: Poppins;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.44px;
}
.footer-bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 68px auto;
}
.footer-bottom a{
    color: #F8F5F1;
    font-family: "Noto Sans JP";
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
._copyright{
    text-align: center;
    color: #F8F5F1;
    font-family: Poppins;
    font-size: 13px;
    font-style: normal;
    font-weight: 275;
    line-height: normal;
    padding-bottom: 24px;
}





/* 追加スタイル 250630 */
.slide-price{
    width: 90%;
    margin: 0 auto 24px;
}
._btn{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 54px;
    border-radius: 27px;
    border: 1px solid #3B2208;
    background: rgba(248, 245, 241, 0.51);
    text-decoration: none;
    box-sizing: border-box;
    margin-top: 24px;
}
._btn::after{
    content: '';
    display: block;
    width: 7.5px;
    height: 16px;
    background-image: url(../img/btn-arrow.webp);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
}
._btn p{
    color: #3B2208;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 5.256px;
}
._btn._color-btn{
    border: none;
    border-radius: 27px;
    background: #817066;
    background-blend-mode: multiply;
    margin-top: 16px;
}
._btn._color-btn::after{
    background-image: url(../img/btn-arrow-white.webp);
}
._btn._color-btn p{
    color: #FFF;
}
._btn._blue-btn{
    border: none;
    border-radius: 27px;
    background: #6DAFCA;
    background-blend-mode: multiply;
    max-width: 380px;
    margin-left:auto;
    margin-right: auto;
}
._btn._blue-btn::after{
    display: none;
}
._btn._blue-btn p{
    color: #FFF;
    font-size: 20px;
}

.review{
    background: #F8F5F1;
    padding-bottom: 120px;
}
.review-inner{
    width: 80%;
    max-width: 1080px;
    margin: 0 auto;
}
.review-layout{
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 4%;
    row-gap: 80px;
    width: 100vw;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.review-item{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 16px;
    width: 98%;
    padding: 24px 32px;
    box-sizing: border-box;
    background: #fff;
    border-radius: 9px;
}
.review-item img{
    width: 80%;
}
.review-item p{
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}
.review-inner > .review-item-text{
    background: #fff;
    padding: 32px 80px;
    box-sizing: border-box;
    margin-bottom: 56px;
}


.pc-only{
    display: block;
}
.sp-only{
    display: none;
}
.sp-only._btn{
    display: none;
}
a[href^="flow-#slide"] {
    pointer-events: none;
}




@media (max-width: 1180px) {
.header__logo{
    width: 80px;
}
.header__hamburger {
    display: block;
}

.header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width:calc(100% - 4rem) ;
    height: 100vh;
    background-color: #fff;
    flex-direction: column;
    padding: 2rem;
    transition: right 0.3s;
}

.header__nav.is-active {
    right: 0;
}

.header__nav-list {
    flex-direction: column;
    align-items: center;
    width: 100%;
    margin-bottom: 16px;
    row-gap: 24px;
}

.header__nav-buttons {
    flex-direction: column;
    width: calc(100% - 4rem);
    margin: 0 auto;
}

.header__line-btn {
    width: 100%;
    text-align: center;
}
}


@media (max-width: 900px) {
    
    .slider {
        height: 250px;
    }

    .slider-track {
        width: calc(200px * 12);
    }

    .slide {
        width: 200px;
        margin-right: 20px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-controls {
        padding: 0 15px;
    }

    /* 共通 */
    section {
        padding: 64px 0;
    }

    /* 見出し */
    h2, .mv h1 {
        font-size: 32px;
        letter-spacing: 2px;
    }

    /* タイトル前の装飾 */
    ._title-before {
        font-size: 14px;
        letter-spacing: 1px;
    }

    /* 本文 */
    p, li, .benefit-item p, .precaution-list li, .staff-text p, .staff-detail p {
        font-size: 14px;
        line-height: 1.7;
    }

    /* MVエリア */
    .mv {
        height: 600px;
        background-position: 60% 50%;
    }
    .mv-inner{
        width: 90%;
        top: 50%;
    }
    .mv-text{
        padding: 4px 16px;
    }
    .mv-text span {
        font-size: 20px;
    }

    /* About */
    .about-flex ol li {
        font-size: 14px;
    }
    .about-flex ol li::before {
        font-size: 14px;
    }

    /* Benefit */
    .benefit-item h3 {
        font-size: 15px;
    }

    /* スタッフ */
    .staff-name p, .staff-name span {
        font-size: 14px;
    }

    /* FAQ */
    .f-nav-item p {
        font-size: 14px;
    }
    .faq-q::before, .faq-a::before {
        font-size: 14px;
    }

    /* フッター */
    .footer-nav a {
        font-size: 14px;
    }
    .footer-insta p {
        font-size: 14px;
    }
    .footer-bottom a {
        font-size: 12px;
    }
       /* about */
       .about-title_layout{
        margin-right: 0;
    }
    .about-main h2{
        text-align: center;
    }
    .about-inner{
        width: 90%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    .about-flex{
        flex-direction: column;
        align-items: center;
    }
    .about-flex ol{
        display: flex;
        flex-direction: column;
        align-items: start;
        width: 100%;
        text-align: left;
    }
    .about-flex ol li{
        margin-bottom: 8px;
    }
    .about-flex img{
        width: 100%;
    }
    .issue img{
        width: 90%;
    }

    .benefit-list{
        width: 90%;
    }
    .benefit-item{
        margin-bottom: 8px;
    }

    .bf-inner{
        width: 90%;
    }
    .bf-flex{
        flex-direction: column;
        width: 100%;
        margin-bottom: 40px;
    }
    .bf-left{
        width: 100%;
    }
    .bf-right{
        width: 100%;
    }
    .bf-item{
        flex-direction: column;
        align-items: start;
    }
    .bf-item::before{
        display: none;
    }
    .bf-banner{
        margin-top: 40px;
        margin-bottom: 0;
    }

    .precaution-inner{
        width: 90%;
    }
    .precaution-inner > p{
        width: 90%;
    }
    .precaution-list{
        width: 80%;
    }

    section.flow{
        padding-bottom: 0;
    }
    .flow-inner{
        width: 90%;
        padding-bottom: 0;
    }
    .flow-grid{
        width: 100%;
        grid-template-columns: 1fr;
        grid-template-rows: 1fr 1fr 1fr 1fr;
        row-gap: 20px;
        height: auto;
    }
    .flow-flex img{
        width: 20%;
    }
    .flow-slider{
        height: 400px;
    }
    .flow-slide{
        padding: 24px;
        height: 100%;
        overflow-y: auto;
    }
    .f-slide-flex{
        flex-direction: column;
    }

    section.staff{
        padding-bottom: 10px;
    }
    .staff-content{
        width: 80%;
        flex-direction: column-reverse;
        row-gap: 16px;
    }
    .staff-content > img{
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    .staff-info{
        width: 100%;
    }
    .staff-text{
        padding: 20px 0 16px;
        margin-bottom: 20px;
    }

    .faq-inner{
        width: 90%;
    }
    .faq-nav{
        align-items: flex-end;
    }

    .access p{
        width: 90%;
        margin: 0 auto;
    }

    .footer-flex{
        flex-direction: column;
    }
    .footer-nav{
        width: 100%;
        margin: 40px 0 40px 0;
        text-align: center;
        row-gap: 20px;

    }
    .review{
        padding-bottom: 0;
    }
    .review-inner{
        width: 90%;
    }
    .review-layout{
        display: grid;
        grid-template-columns: 1fr;
        row-gap: 24px;
    }
    .review-item{
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 16px;
        width: 98%;
        padding: 24px 32px;
        box-sizing: border-box;
        background: #fff;
        border-radius: 9px;
    }
    .review-item img{
        width: 100%;
    }
    .review-item p{
        color: #000;
        font-family: "Noto Sans JP";
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 180%;
    }
}

/* スマホ表示時のアンカーリンク用スタイル */
@media (max-width: 768px) {
    .fixed-btn {
        display: none;
    }

    .popup {
        display: flex; /* SP版でポップアップを表示 */
    }
    .flow-item {
        position: relative;
    }
    
    .flow-item[href] {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .header__nav-buttons{
        width: 100%;
    }
    .header__line-btn:first-of-type{
        width: 100%;
    }
    .header__line-btn._hpb-btn{
        width: 100%;
    }

    /* アンカーリンクのオフセット調整 */
    #flow-slide {
        scroll-margin-top: 80px; /* ヘッダーの高さに応じて調整 */
    }

    .notation__inner tr{
        display: flex;
        flex-direction: column;
        align-items: start;
        margin-bottom: 24px;
    }
    .notation__inner td{
        padding: 16px 0 24px 0 ;
        width: 100%;
        white-space: wrap;
    }
    .notation__inner th{
        width: 100%;
        padding-left: 0;
    }
}

@media (min-width: 769px) {
    .fixed-btn {
        display: block; /* PC版で追従ボタンを表示 */
    }
}

@media (max-width: 500px) {
    a[href^="flow-#slide"] {
        pointer-events: block;
    }
    .pc-only{
        display: none;
    }
    .sp-only{
        display: block;
    }
    .sp-only._btn{
        display: flex;
    }
    .slider {
        height: 180px;
    }

    section.slider-section{
        padding-top: 40px;
    }
    .slider-track {
        width: calc(150px * 12);
    }

    .slide {
        width: 150px;
        margin-right: 15px;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-controls {
        padding: 0 10px;
    }

    .indicator {
        width: 10px;
        height: 10px;
    }

    /* 見出し */
    .mv h1 {
        font-size: 24px;
        letter-spacing: 1.5px;
    }
    h2{
        font-size: 20px !important;
    }

    /* 本文 */
    p, li, .benefit-item p, .precaution-list li, .staff-text p, .staff-detail p {
        font-size: 16px;
        line-height: 1.6;
    }

    /* MVエリア */
    .mv {
        height: 85vh;
    }
    .mv-inner{
        top:55%;
    }
    .mv-text{
        margin-bottom: 16px;
    }
    .mv-text span {
        font-size: 14px;
    }

    /* その他の要素 */
    ._title-before {
        font-size: 13px;
    }
    .benefit-item h3 {
        font-size: 14px;
    }
    .footer-nav a {
        font-size: 13px;
    }
    .footer-bottom a {
        font-size: 11px;
    }



}

/* 既存のスタイルに追加 */
.faq-list {
    display: none;
}

.faq-list.active {
    display: block;
}

.f-nav-item {
    cursor: pointer;
    transition: opacity 0.3s;
}

.f-nav-item.active::before {
    background: #6DAFCA;
    height: 2px;
}

.faq-q {
    cursor: pointer;
}

.faq-a {
    display: none;
}

/* ヘッダーの基本スタイル */
header {
    transition: transform 0.3s ease;
}

/* スクロール時のスタイル */
header.header--scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* 非表示時のスタイル */
header.header--hidden {
    transform: translateY(-100%);
}

/* 2511 */
.review-item-text h3{
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
}
.review-item-text h3 span{
    color: #000;
    font-family: "Noto Sans JP";
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
}
.review-item-title{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.review-item-title-name{
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 16px;
}

.js-review-slider .review-item-title-name img{
    width: 80px;
    aspect-ratio: 1/1;
}
.review-item-text{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.review-item-star img{
    max-width: 200px;
}
.js-review-slider .review-item-star img{
    max-width: 200px;
}
.review-item-review{
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    align-items: center;
    gap: 16px;
}
.review-item-review li{
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.review-item-review li::after{
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    background: #C0C0C0;
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
}
.review-item-review li p{
    color: #000;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
}
.review-item-review li:last-of-type::after{
    display: none;
}
.review ._blue{
    color: #6DAFCA;
    text-align: center;
    font-family: Poppins;
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 180%;
}
.review-item-text ._blue{
    font-size: 24px;
}