/*
Theme Name: Golf Bag Station
Author: 
Version: 1.0
*/

@charset "utf-8";
 :root {
    --header-height: 0px;
    --top-inner-height: 0px;
    --black-color: #272d34;
    --light-blue-color: #0082E2;
    --blue-color: #004AA1;
    --yellow-color: #1f7a3a;
    --error-color: #f21717;
    --header-black-color: #272d34;
    --header-white-color: #ffffff;
}

html,
body {
    font-family:
        "Hiragino Kaku Gothic ProN",
        "Hiragino Sans",
        "Yu Gothic",
        "Yu Gothic UI",
        "Meiryo",
        "Noto Sans JP",
        sans-serif;

    font-synthesis-weight: none;
    font-synthesis-style: none;
    scroll-behavior: smooth;
    font-size: 16px;

    font-feature-settings: "palt", "kern";
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

a {
    transition: all .3s ease;
}

.en {
    font-family: "Zilla Slab", serif;
}

.gothic {
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
}

@media screen and (min-width: 900px) {
    a:hover {
        opacity: .7;
    }
}

.l-wrapper {
    width: 100%;
    height: auto;
    padding-left: 40px;
    padding-right: 40px;
}

.l-inner {
    max-width: 1240px;
    width: 100%;
    height: auto;
    margin: auto;
}

.pc-only {
    display: block !important;
}

.sp-only {
    display: none !important;
}

.pc-only-flex {
    display: flex !important;
}

.sp-only-flex {
    display: none !important;
}

@media screen and (max-width: 900px) {
    .l-wrapper {
        padding-left: 20px;
        padding-right: 20px;
    }
    .l-inner {
        max-width: 600px;
    }
    .pc-only {
        display: none !important;
    }
    .sp-only {
        display: block !important;
    }
    .pc-only-flex {
        display: none !important;
    }
    .sp-only-flex {
        display: flex !important;
    }
}

body {
    color: var(--black-color);
    background-color: #fff;
    &.active {
        overflow: hidden;
    }
}

.background-texture {
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

header {
    z-index: 99;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    padding-top: 50px;
    padding-bottom: 30px;
    background-color: var(--header-white-color);
    transition: all .3s ease;
}

header .header-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
}

header .header-top {
    transition: all .3s ease;
    width: 130px;
    height: auto;
}

header svg {
    width: 100%;
    height: auto;
    object-fit: contain;
}

header svg path {
    transition: all .3s ease;
    fill: var(--header-black-color);
}

header .sp-menu-area {
    display: contents;
}

header .menu-btn {
    display: none;
}

header .sp-menu {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .header-sp-menu {
    display: flex;
    align-items: center;
    gap: clamp(1.125rem, -4.169rem + 9.41vw, 3.125rem);
}

header .header-link {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--header-black-color);
}

header .header-cta {
    max-width: 227px;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    a {
        display: block;
        width: 100%;
        height: 100%;
        text-align: center;
        padding: 20px;
    }
}

@media screen and (max-width: 900px) {
    header {
        padding: 20px 15px 35px 15px;
        border-bottom: 2px solid var(--header-black-color);
    }
    header .header-container {
        flex-direction: row;
        justify-content: space-between;
    }
    header .header-top {
        transform: translateY(8px);
        width: 130px;
    }
    header .sp-menu-area {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    header .sp-menu-area #headerMenuBtn {
        z-index: 9999;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 41px;
        height: 22px;
        cursor: pointer;
        transition: all .3s ease;
        transform: scale(0.8);
        margin-top: -10px;
    }
    header .sp-menu-area #headerMenuBtn::before {
        content: 'MENU';
        position: absolute;
        bottom: -6px;
        left: 50%;
        transform: translate(-50%, 100%);
        font-size: 14px;
        font-weight: 700;
        font-family: "hiragino-kaku-gothic-pron", sans-serif;
        opacity: 1;
        transition: all .3s ease;
        color: var(--yellow-color);
    }
    header .sp-menu-area #headerMenuBtn.active::before {
        content: 'CLOSE';
    }
    header .sp-menu-area #headerMenuBtn span {
        position: absolute;
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--yellow-color);
        border-radius: 5rem;
        transition: all .3s ease;
    }
    header .sp-menu-area #headerMenuBtn span:nth-of-type(1) {
        top: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }
    header .sp-menu-area #headerMenuBtn span:nth-of-type(2) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    header .sp-menu-area #headerMenuBtn span:nth-of-type(3) {
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0);
    }
    header .sp-menu-area #headerMenuBtn.active {
        position: relative;
    }
    header .sp-menu-area #headerMenuBtn.active span {
        z-index: 2;
    }
    header .sp-menu-area #headerMenuBtn.active span:nth-of-type(1) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
    }
    header .sp-menu-area #headerMenuBtn.active span:nth-of-type(2) {
        opacity: 0;
    }
    header .sp-menu-area #headerMenuBtn.active span:nth-of-type(3) {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(-45deg);
    }
    header .sp-menu-area .sp-menu {
        opacity: 0;
        pointer-events: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - (var(--header-height)));
        background: #fff;
        padding: 60px 20px;
        flex-direction: column-reverse;
        gap: 50px;
        justify-content: start;
        transition: all .3s ease;
    }
    header .sp-menu-area .sp-menu.active {
        opacity: 1;
        pointer-events: all;
    }
    header .sp-menu-area .sp-menu nav .header-sp-menu {
        display: flex;
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }
    header .sp-menu-area .sp-menu nav .header-sp-menu li {
        width: 100%;
        height: auto;
        text-align: center;
    }
    header .sp-menu-area .sp-menu nav .header-sp-menu li a {
        font-size: 20px;
        font-weight: 500;
        line-height: 1.6;
        color: var(--black-color);
    }
    header .sp-menu-area .sp-menu .header-cta {
        width: 100%;
        background-color: var(--yellow-color);
        color: #fff;
    }
}

header.active {
    --header-black-color: #fff;
    --header-white-color: #272d34;
}



/* service */

.service {
    margin-top: calc(-1 * (var(--header-height)));
    padding-top: calc(1 * (var(--header-height)) + 60px);
    padding-bottom: 80px;
}

.service .heading, .benefits .heading, .price .heading, .flow .heading, .voice .heading, .faq .heading, .company .heading, .contact .heading {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column-reverse;
    gap: 5px;
}

.service .heading .heading-title, .benefits .heading .heading-title, .price .heading .heading-title, .flow .heading .heading-title, .voice .heading .heading-title, .faq .heading .heading-title, .company .heading .heading-title, .contact .heading .heading-title {
    font-size: 44px;
    line-height: 1.5;
    font-weight: 700;
    text-align: center;
}

.service .heading .heading-sub, .benefits .heading .heading-sub, .price .heading .heading-sub, .flow .heading .heading-sub, .voice .heading .heading-sub, .faq .heading .heading-sub, .company .heading .heading-sub, .contact .heading .heading-sub {
    color: var(--yellow-color);
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    text-align: center;
}

.service .desc {
    margin: 50px auto 0;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.6;
    font-weight: bold;
    max-width: 500px;
    text-align: center;

    background: linear-gradient(
    180deg,
    #f6f88c,
    #e4ed63
);
box-shadow: 0 6px 20px rgba(0,0,0,0.08);

    padding: 25px 40px;
    border-radius: 10px;

    position: relative;
}
.service .desc::after {
    content: "";

    position: absolute;
    left: 50%;
    transform: translateX(-50%);

    bottom: -18px;

    width: 0;
    height: 0;

    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 18px solid #e6ee6a;
}

.service .service-list {
    margin: 60px auto 0;
    width: 70%;
    height: auto;
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom:50px;
}

.service .service-list .fl-item {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service .service-list .fl-item .poin-img {
    max-width: 117px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.service .service-list .fl-item .label {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
}

.service .service-list .fl-item .label .number {
    color: var(--yellow-color);
    font-size: 25px;
}

.service .service-list .fl-item .description {
    margin-top: 30px;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
}

@media screen and (max-width: 900px) {
    .service {
        padding-top: calc(1 * (var(--header-height)) + 60px);
        padding-bottom: 60px;
    }
    .service .heading .heading-title {
        font-size: 26px;
    }
    .service .heading .heading-sub {
        font-size: 16px;
    }
    .service .desc {
        margin-top: 20px;
        font-size: 16px;
    }
    .service .service-list {
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
    }
    .service .service-list .fl-item {
        width: 100%;
    }
    .service .service-list .fl-item .poin-img {
        max-width: 117px;
    }
    .service .service-list .fl-item .label {
        margin-top: 20px;
    }
    .service .service-list .fl-item .description {
        margin-top: 20px;
        font-size: 16px;
    }
}


/* flow */

.flow {
    margin-top: calc(-1 * (var(--header-height)) + 70px);
    padding-top: calc(1 * (var(--header-height)) + 80px);
    padding-bottom: 80px;
}

.flow .desc {
    margin-top: 50px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.flow .flow-list {
    margin-top: 80px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
}

.flow .flow-item {
    position: relative;
    margin-top: 80px;
    width: 15%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flow .flow-item.arrow::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -57%;
    width: 65px;
    height: 18px;
    background: url("./img/arrow.png") no-repeat center / contain;
}

.flow .flow-img {
    max-width: 150px;
    width: 100%;
    height: auto;
}

.flow .label {
    margin-top: 25px;
    font-size: 20px;
    font-weight:bold;
    text-align: center;
    line-height: 1.2;
    display: flex;
    flex-direction: column;   /* ← 縦並びにする */
    align-items: center;      /* ← 中央揃え */
    gap: 8px;
}

.flow .label .number {
    font-size: 28px;          /* ← 数字を少し大きくすると美しい */
    font-weight: 700;
    color: var(--yellow-color);
}

.flow .description {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.6;
}

@media screen and (max-width: 900px) {
    .flow {
        margin-top: calc(-1 * (var(--header-height)));
        padding-top: calc(1 * (var(--header-height)) + 60px);
        padding-bottom: 60px;
    }
    .flow .heading .heading-title {
        font-size: 26px;
    }
    .flow .heading .heading-sub {
        font-size: 16px;
    }
    .flow .desc {
        margin-top: 20px;
        font-size: 16px;
    }
    .flow .flow-list {
        margin-top: 30px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 120px;
        width:100%;
    }
    .flow .flow-item {
        margin-top: 0;
        width: 85%;
        width: 100%;
    }
    .flow .flow-item.arrow::before {
        top: auto;
        bottom: -40px;
        right: 50%;
        transform: translate(50%, 100%) rotate(90deg);
    }
    .flow .flow-img {
        max-width: 150px;
    }
    .flow .label {
        margin-top: 15px;
        font-size: 20px;
        gap: 6px;
    }
    .flow .description {
        margin-top: 15px;
        width: 100%;
    }
}


/* voice */

.voice {
    margin-top: calc(-1 * (var(--header-height)));
    padding-top: calc(1 * (var(--header-height)) + 80px);
    padding-bottom: 80px;
}

.voice .desc {
    margin-top: 50px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.voice .voice-area {
    width: 100%;
    height: auto;
    margin-top: 60px;
}

@media screen and (max-width: 900px) {
    .voice {
        padding-top: calc(1 * (var(--header-height)) + 60px);
        padding-bottom: 60px;
    }
    .voice .heading .heading-title {
        font-size: 26px;
    }
    .voice .heading .heading-sub {
        font-size: 16px;
    }
    .voice .desc {
        margin-top: 20px;
        font-size: 16px;
    }
    .voice .voice-area {
        margin-top: 30px;
    }
}


/* faq */

.faq {
    margin-top: calc(-1 * (var(--header-height)));
    padding-top: calc(1 * (var(--header-height)) + 80px);
    padding-bottom: 80px;
}

.faq .desc {
    margin-top: 50px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}

.faq-list {
    margin:0 auto;
    margin-top: 60px;
    width: 70%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;

}

.faq-list .faq-itme {
    width: 100%;
    height: auto;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, .15);
    border-radius: 10px;
}

.faq-list .question {
    width: 100%;
    height: auto;
    padding: 29px;
    font-size: 22px;
    line-height: 1.6;
    font-weight: 700;
    display: flex;
    align-items: start;
    gap: 10px;
    cursor: pointer;
}

.faq-list .question .q {
    display: flex;
    color: var(--yellow-color);
    font-size: 22px;
}

.faq-list .answer {
    width: 100%;
    height: 0;
    overflow: hidden;
    background-color:#f3f7f1;
    transition: all .6s ease;
}

.faq-list .answer-txt {
    font-size: 20px;
    line-height: 1.6;
    font-weight: 300;
    padding: 15px 29px;
    opacity: 0;
    transition: all .6s ease;
}

.faq-list .answer.active .answer-txt {
    opacity: 1;
}
.faq-list a {
    color: var(--yellow-color);
    text-decoration: underline;
}

@media screen and (max-width: 900px) {
    .faq {
        margin-top: calc(-1 * (var(--header-height)));
        padding-top: calc(1 * (var(--header-height)) + 60px);
        padding-bottom: 60px;
    }
    .faq .heading .heading-title {
        font-size: 26px;
    }
    .faq .heading .heading-sub {
        font-size: 16px;
    }
    .faq .desc {
        margin-top: 20px;
        font-size: 16px;
    }
    .faq-list {
        margin-top: 30px;
        gap: 25px;
        width: 100%;
    }
    .faq-list .faq-itme {
        box-shadow: 3px 6px 10px rgba(0, 0, 0, .08);
    }
    .faq-list .question {
        padding: 15px;
        font-size: 20px;
        gap: 7px;
    }
    .faq-list .question .q {
        font-size: 20px;
    }
    .faq-list .answer-txt {
        font-size: 16px;
        padding: 15px;
    }
    .faq-list .answer.active .answer-txt {
        opacity: 1;
    }
}


/* company */

.company {
    margin-top: calc(-1 * (var(--header-height)));
    padding-top: calc(1 * (var(--header-height)) + 80px);
    padding-bottom: 80px;
}

.company .content {
    margin-top: 60px;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-between;
    align-items: start;
}

.company .company-img {
    width: 37%;
    height: auto;
    object-fit: contain;
}

.company .company-detail {
    width: 60%;
    height: auto;
    object-fit: contain;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.company .company-detail .company-item {
    width: 100%;
    display: flex;
    align-items: start;
    font-size: 18px;
    line-height: 1.6;
}

.company .company-detail .label {
    width: 28%;
}

.company .company-detail dd {
    width: 72%;
}

.company .company-detail dd img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 900px) {
    .company {
        padding-top: calc(1 * (var(--header-height)) + 60px);
        padding-bottom: 60px;
    }
    .company .heading .heading-title {
        font-size: 26px;
    }
    .company .heading .heading-sub {
        font-size: 16px;
    }
    .company .content {
        margin-top: 30px;
        flex-direction: column-reverse;
        gap: 25px;
    }
    .company .company-img {
        width: 80%;
    }
    .company .company-detail {
        width: 100%;
        gap: 15px;
    }
    .company .company-detail .company-item {
        flex-direction: column;
    }
    .company .company-detail .label {
        width: 100%;
        font-weight: 700;
    }
    .company .company-detail dd {
        width: 100%;
        font-size: 16px;
    }
    .company .company-detail dd img {
        width: 100%;
        height: auto;
    }
}


/* contact */

.contact {
    margin-top: calc(-1 * (var(--header-height)) + 70px);
    padding-top: calc(1 * (var(--header-height)) + 80px);
    padding-bottom: 80px;
}

.contact .desc {
    margin-top: 50px;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
}


/* フォーム枠 */

.form-wrapper {
    margin-top: 60px;
    width: 100%;
}

@media screen and (max-width: 900px) {
    .contact {
        margin-top: calc(-1 * (var(--header-height)));
        padding-top: calc(1 * (var(--header-height)) + 60px);
        padding-bottom: 60px;
    }
    .contact .heading .heading-title {
        font-size: 26px;
    }
    .contact .heading .heading-sub {
        font-size: 16px;
    }
    .contact .desc {
        margin-top: 20px;
        font-size: 16px;
    }
    /* フォーム枠 */
    .form-wrapper {
        margin-top: 30px;
        width: 100%;
    }
}


/* 2カラムグリッド（モバイル1列 → lgで2列） */

.grid {
    display: grid;
    grid-template-columns: 1fr;
    /* grid-cols-1 */
    gap: 1.5rem;
    /* gap-6 */
}

@media (min-width: 1024px) {
    /* lg */
    .grid {
        grid-template-columns: 1fr 1fr;
        /* lg:grid-cols-2 */
    }
}

.left-col {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.right-col {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-field {
    position: relative;
}


/* 共通：インプット系 */

.input,
.select,
.textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #b1b6bb;
    background-color: #f0f2f8;
    border-radius: 2px;
    color: #374151;
    box-sizing: border-box;
    font-size: 18px;
}


/* placeholder 色 */

.input::placeholder,
.textarea::placeholder {
    color: var(--black-color);
}

.select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: var(--black-color);
    cursor: pointer;
}

.select-wrap {
    position: relative;
}

.select-icon {
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    color: var(--black-color);
}

.chevron {
    width: 1rem;
    height: 1rem;
    fill: currentColor;
}


/* テキストエリア */

.textarea {
    min-height: 100px!important;
    resize: vertical;
}


/* 送信ボタン */

.button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--yellow-color);
    color: #fff;
    border: none;
    border-radius: 100px;
    font-weight: 600;
    font-size:16px;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background-color 150ms ease-in-out;
}

.button:hover {
    background: #374151;
    /* hover:bg-gray-700 */
}

.other-contact {
    margin-top: 40px;
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.other-contact .line-btn {
    width: 180px;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.other-contact .qr {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.other-contact .id {
    color: #00b300;
    font-size: 18px;
    font-weight: 700;
}

.other-contact .tel-btn {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 15px;
}

.other-contact .number {
    font-size: 33px;
    font-weight: 700;
}

.other-contact .name {
    font-size: 18px;
    font-weight: 500;
}

@media screen and (max-width: 900px) {
    /* 2カラムグリッド（モバイル1列 → lgで2列） */
    .grid {
        gap: 1.5rem;
    }
    .left-col {
        gap: 1.5rem;
    }
    .right-col {
        gap: 1.5rem;
    }
    /* 共通：インプット系 */
    .input,
    .select,
    .textarea {
        font-size: 16px;
    }
   
    .button {
        font-size: 18px;
    }
    .other-contact {
        margin-top: 30px;
        gap: 15px;
    }
    .other-contact .line-btn {
        width: 100px;
        gap: 10px;
    }
    .other-contact .id {
        font-size: 16px;
    }
    .other-contact .tel-btn {
        gap: 10px;
    }
    .other-contact .number {
        font-size: 24px;
    }
    .other-contact .name {
        font-size: 16px;
    }
}

footer {
    padding-bottom: 30px;
    width: 100%;
    height: auto;
}

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

footer .copywrite {
    font-size: 13px;
}

footer .legal-link {
    font-size: 15px;
}


/* pp */

.page-policy {
    padding-top: calc((var(--header-height)) + 30px);
    padding-bottom: 90px;
}

.page-policy .heading-area .txt {
    z-index: 5;
    position: relative;
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.page-policy .heading-area .txt .heading {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
    width: auto;
    height: auto;
}

.page-policy .heading-area .txt .heading-en {
    font-family: var(--fut-font);
    font-size: clamp(1.688rem, 1.219rem + 0.83vw, 1.813rem);
    font-weight: 300;
    line-height: 1;
}

.page-policy .policy-area {
    width: 100%;
    height: auto;
    padding-top: 60px;
    padding-bottom: 90px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.page-policy .policy-area .policy-box {
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-policy .policy-area .policy-box .policy-heading {
    line-height: 1.4;
    font-size: var(--heading-font);
}

.page-policy .policy-area .policy-box .policy-description {
    line-height: 1.6;
    font-size: var(--sub-font);
}

.page-policy .policy-area .policy-box .policy-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.page-policy .policy-area .policy-box .policy-list .policy-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    line-height: 1.6;
}

.page-policy .policy-area .policy-box .policy-list .policy-item .list-heading {
    font-size: var(--h3-font);
    font-weight: 700;
}

.page-policy .policy-area .policy-box .policy-list .policy-item .list-direction {
    font-size: var(--sub-font);
    font-weight: 500;
}

.page-policy .policy-area .policy-bottom {
    line-height: 1.6;
    font-size: var(--sub-font);
}

@media screen and (max-width: 1024px) {
    .page-policy {
        padding-top: calc((var(--header-height)) + 30px);
        padding-bottom: 30px;
    }
    .page-policy .heading-area .txt {
        align-items: start;
    }
    .page-policy .heading-area .txt .heading {
        width: auto;
    }
    .page-policy .heading-area .txt .heading-en {
        font-size: clamp(1.5rem, 1.139rem + 1.54vw, 1.813rem);
    }
}

@media screen and (max-width: 600px) {
    .page-policy .heading-area .txt {
        width: 100%;
        justify-content: start;
        align-items: start;
    }
    .page-policy .heading-area .txt .heading-en {
        font-size: clamp(1.5rem, 1.139rem + 1.54vw, 1.813rem);
    }
    .page-policy .policy-area {
        padding-top: 30px;
        padding-bottom: 60px;
        gap: 30px;
    }
    .page-policy .policy-area .policy-box {
        gap: 20px;
    }
    .page-policy .policy-area .policy-box .policy-list {
        gap: 15px;
    }
    .page-policy .policy-area .policy-box .policy-list .policy-item {
        gap: 6px;
    }
}


/* Contact Form 7のデフォルトスタイルをリセット */

.wpcf7 p {
    display: inline;
}

.wpcf7-form-control-wrap,
.wpcf7-checkbox {
    display: contents;
}

.wpcf7-not-valid-tip {
    width: 100%;
    font-size: 15px !important;
}

.wpcf7-spinner {
    display: inline;
}





/* golf bag station用追加*/

/* ========== Golf Bag Station Header Override ========== */
header .sp-menu-area {
  display: none;
}
@media screen and (max-width: 900px) {
  header .sp-menu-area {
    display: block;
  }
}

.site-header {
  padding-top: 18px;
  padding-bottom: 18px;
}

header .header-container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
}

.header-brand img {
  display: block;
  height: auto;
  width: auto;
}

.global-nav__list {
  display: flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
}

.global-nav__list a {
  font-size: 16px;
  font-weight: 700;
  color: var(--header-black-color);
  padding: 10px 0;
}

.header-cta {
  width: auto;
  max-width: none;
}

.header-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  color: #fff;
  background: #1f7a3a; /* 近いグリーン。後で微調整OK */
}



@media screen and (max-width: 900px) {
  .site-header {
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .header-brand img {
    height: 30px;
  }

  .sp-drawer {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.08);
    padding: 16px 20px 22px;
    z-index: 98;
  }

  body.active .sp-drawer {
    display: block;
  }

  .sp-drawer__list {
    display: grid;
    gap: 10px;
  }

  .sp-drawer__list a {
    display: block;
    padding: 12px 0;
    font-weight: 700;
    color: var(--header-black-color);
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
}



/* ===== MV ===== */

.mv {
  padding-top: var(--header-height);
  padding-bottom: 80px;
  width: 100%;
  height: auto;
  margin-top: 20px;
}

/* mv-contentをレイヤーの基準にする */
.mv .mv-content {
  position: relative;
  width: 100%;
  height: auto;
}

/* 画像 */
.mv .mv-img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}


/* テキスト＆ボタンをまとめて配置（ここが肝） */
.mv .mv-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;

  /* 縦方向：中央寄せ（必要なら center→flex-start など変更） */
  justify-content: center;

  /* 横方向：左寄せ */
  align-items: flex-start;

  /* 左余白（PCの見た目を作る） */
  padding: 0 60px;

  /* 要素間の間隔 */
  gap: 18px;

  /* 暗幕より上に */
  z-index: 1;
}

/* メインコピー */
.mv .mv-copy {
  margin: 0;
  color: #fff;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
  text-shadow:
    0 3px 6px rgba(0,0,0,0.45),
    0 6px 16px rgba(0,0,0,0.35);
}

/* サブコピー */
.mv .mv-sub {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  text-shadow:
    0 3px 6px rgba(0,0,0,0.45),
    0 6px 16px rgba(0,0,0,0.35);
}

/* ボタン */
.mv .mv-btn {
  margin-top: 6px;
}

.btn-primary {
  display: inline-block;
  background: #1f7a3a;
  color: #fff;
  padding: 18px 80px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
}

/* ===== Responsive ===== */

@media screen and (max-width: 900px) {
  .mv {
    padding-bottom: 0px;
  }
  .mv .mv-img {
    height: 500px;  /* 好みで調整。600pxでも可 */
    object-fit: cover;
    object-position: right center;  /* トリミング位置。右寄りにするなら right center */
  }



  /* スマホは暗幕を少し強めてもOK（不要なら消してOK） */
  .mv .mv-content::after {
    background: linear-gradient(
      180deg,
      rgba(0,0,0,0.45) 0%,
      rgba(0,0,0,0.15) 60%,
      rgba(0,0,0,0.00) 100%
    );
  }

  /* スマホは余白を縮めて文字も小さく */
  .mv .mv-overlay {
    padding: 20px 18px;
    justify-content: flex-end;  /* flex-end → flex-start */
    gap: 12px;
  }

  .mv .mv-copy {
    font-size: 22px;
    line-height: 1.35;
  }

  .mv .mv-sub {
    font-size: 14px;
    line-height: 1.6;
  }

  .btn-primary {
    padding: 14px 40px;
  }
}



/* SP以外ではドロワーを非表示 */
@media screen and (min-width: 901px) {
  .sp-drawer {
    display: none !important;
  }
}

/* SP: デフォルト非表示、activeで表示 */
@media screen and (max-width: 900px) {
  .sp-drawer {
    display: none;
  }

  body.active .sp-drawer {
    display: block;
  }
}







.solution {
  padding: 60px 0;
}

/* 背景の薄いグリーン + 角丸 */
.solution .solution-box {
    margin:0 auto;
  background: #eef4ee;
  border-radius: 10px;
  padding: 40px 50px;
  width: 80%;
}

/* 上段：ロゴ画像 + テキスト（が解決します。） */
.solution .solution-head {
  display: flex;
  flex-direction: column;  /* ←これ追加 */
  align-items: center;
  gap: 0px;
  margin-bottom: 30px;
}

.solution .solution-logo {
  width: 360px;   /* 画像に合わせて調整 */
  max-width: 70%;
  height: auto;
  display: block;
}

.solution .solution-title {
  font-size: 34px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  display: block!important;
}

/* 下段：左にロゴ、右に文章 */
.solution .solution-body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.solution .solution-left {
  flex: 0 0 360px; /* 左の箱幅 */
  display: flex;
  justify-content: center;
}

.solution .partner-logo {
  width: 100%;
  max-width: 360px;
  height: auto;
  display: block;
  background: #fff;        /* 画像が白背景前提なら */
  border-radius: 8px;       /* ほんの少し丸める */
  padding: 18px;
}

.solution .solution-right {
  flex: 1;
  max-width: 520px;
}

.solution .solution-text {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.8;
}
.solution .solution-text strong {
  font-size:26px;
  line-height:1.45;
  font-weight: bold;
  color: var(--yellow-color);
}

.solution .solution-text:last-child {
  margin-bottom: 0;
}

/* SP */
@media screen and (max-width: 900px) {
  .solution .solution-box {
    padding: 26px 20px;
    border-radius: 14px;
    width: 100%;;
  }

  .solution .solution-head {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
  }

  .solution .solution-logo {
    width: 320px;
    max-width: 90%;
  }

  .solution .solution-title {
    font-size: 26px;
  }

  .solution .solution-body {
    flex-direction: column;
    gap: 18px;
  }

  .solution .solution-left {
    flex: none;
    width: 100%;
  }

  .solution .partner-logo {
    max-width: 320px;
  }

  .solution .solution-right {
    max-width: 100%;
  }

  .solution .solution-text {
    font-size: 16px;
    line-height: 1.7;
  }
}




/* ===============================
   BENEFITS
================================= */

.benefits {
  margin-top: calc(-1 * (var(--header-height)));
  padding-top: calc(1 * (var(--header-height)) + 60px);
  padding-bottom: 80px;
}

/* 2カラムグリッド */
.benefits .benefits-list {
  margin: 60px auto 0;
  width: 60%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 70px;
}

/* 1つの特典：縦積み */
.benefits .benefit-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 横長画像 */
.benefits .benefit-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  overflow: hidden;
}

.benefits .benefit-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* テキスト側 */
.benefits .benefit-content {
  flex: 1;
}

.benefits .benefit-title {
  margin: 0 0 15px;
  font-size: 22px;
  font-weight: 700;
}

.benefits .benefit-text {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
}

.benefits .benefit-note {
  font-size: 13px;
  color: #666;
}

/* ===============================
   SP
================================= */

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

  .benefits .benefits-list {
    grid-template-columns: 1fr;
    gap: 40px;
     width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .benefits .benefit-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .benefits .benefit-media {
    flex: none;
  }

  .benefits .benefit-media img {

  }

  .benefits .benefit-title {
    font-size: 18px;
  }

  .benefits .benefit-text {
    font-size: 15px;
  }
}






/* ===============================
  PRICE
================================= */

.price {
    margin-top: calc(-1 * (var(--header-height)));
    padding-top: calc(1 * (var(--header-height)) + 60px);
    padding-bottom: 80px;
}


.pricing-card {
  max-width: 640px;
  margin: 60px auto 0;
  text-align: center;
}

.pricing-badge {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  padding: 5px 18px;
  border-radius: 999px;
  background: #eef4ee;
  color: var(--yellow-color);
  margin-bottom: 1.25rem;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  margin-bottom: 0.5rem;
}

.pricing-number {
  font-size: 72px;
  font-weight:bold;
  color: var(--yellow-color);
  line-height: 1;
}

.pricing-unit {
  font-size: 22px;
  font-weight: 700;
  color: #888;
}

.pricing-desc {
  font-size: 16px;
  color: #888;
  margin-bottom: 2.5rem;
}

.pricing-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  text-align: left;
}

.pricing-include-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #eef4ee;
  border-radius: 10px;
}

.pricing-check {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 50%;
  background: #fff;
  position: relative;
  display: block;
}

.pricing-check::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 3px;
  width: 5px;
  height: 9px;
  border: 2px solid var(--yellow-color);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.pricing-include-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--black-color);
  margin-bottom: 3px;
}

.pricing-include-sub {
  display: block;
  font-size: 13px;
  color: #666;
}

@media screen and (max-width: 900px) {
  .pricing-card {
    margin-top: 40px;
  }

  .pricing-number {
    font-size: 56px;
  }

  .pricing-unit {
    font-size: 18px;
  }

  .pricing-includes {
    grid-template-columns: 1fr;
  }
}


