@charset "utf-8";

    /* http://meyerweb.com/eric/tools/css/reset/ v2.0_custom | 20160518 License: none (public domain) */
    html {
        overflow-y: scroll;
        overflow-x: hidden;
        font-size: 62.5%;
        -webkit-text-size-adjust: 100%;
        text-size-adjust: 100%;
        margin: 0 !important;
        padding: 0;
        border: 0;
        vertical-align: top;
    }

    body {
        color: #221e1f;
        font-family: '游明朝', YuMincho, 'ヒラギノ明朝 ProN W3', 'Hiragino Mincho ProN', 'HG明朝E', 'ＭＳ Ｐ明朝', 'ＭＳ 明朝', serif;
        word-wrap: break-word;
        word-break: break-word;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;

    }



    body,
    div,
    span,
    applet,
    object,
    iframe,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    blockquote,
    pre,
    a,
    abbr,
    acronym,
    address,
    big,
    cite,
    code,
    del,
    dfn,
    em,
    img,
    ins,
    kbd,
    q,
    s,
    samp,
    small,
    strike,
    strong,
    sub,
    tt,
    var,
    b,
    u,
    i,
    center,
    dl,
    dt,
    dd,
    ol,
    ul,
    li,
    fieldset,
    form,
    label,
    legend,
    table,
    caption,
    tbody,
    tfoot,
    thead,
    tr,
    th,
    td,
    article,
    aside,
    canvas,
    details,
    embed,
    figure,
    figcaption,
    footer,
    header,
    hgroup,
    menu,
    nav,
    output,
    ruby,
    section,
    summary,
    time,
    mark,
    audio,
    video {
        margin: 0;
        padding: 0;
        border: 0;
        font-size: 100%;
        vertical-align: top;
    }

    * {
        box-sizing: border-box;
        /* font-feature-settings : "palt";
        letter-spacing:0.1em; */
    }

    /* HTML5 display-role reset for older browsers */
    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    menu,
    nav,
    section {
        display: block;
    }

    body {
        font-size: 1.6rem;
        line-height: 1.5;
        overflow-x: hidden;
        line-height: 1;
    }

    ol,
    ul {
        list-style: none;
    }





    table {
        border-collapse: collapse;
        border-spacing: 0;
    }



    a {
        text-decoration: none;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    a img {
        -webkit-transition: opacity .3s;
        transition: opacity .3s;
    }

    a.hover {
        opacity: .6;
    }




    img {
        display: block;
        vertical-align: top;
    }



    .header {
        position: absolute;
        z-index: 1;
        height: 60px;
        background: rgba(255, 255, 255, .2);
        backdrop-filter: blur(10px);
        /* 背景ぼかし */
        -webkit-backdrop-filter: blur(10px);
        /* Safari対応 */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        /* ちょっと影を落とす */

        width: 100%;
        -webkit-transition: all .5s;
        transition: all .5s;
        top: -60px;
    }

    .header.js-header-show {
        top: 0;
    }

    .header__logo {
        height: 60px;
        /* PC用ヘッダーの高さ */
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .header__logo img {
        height: 40px;
        width: auto;
        object-fit: contain;
    }

    .header__gnav-wrap {
        -webkit-animation: menuHidden .5s alternate;
        animation: menuHidden .5s alternate;
        display: none;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, .1);
        backdrop-filter: blur(15px) saturate(180%);
        -webkit-backdrop-filter: blur(15px) saturate(180%);
        position: fixed;
        z-index: 2;
        top: 0;
    }

    .header__gnav-mask {
        content: '';
        display: block;
        width: 100%;
        height: 100dvh;
        position: fixed;
        top: 0;
    }


    .js-menu-display-block .header__gnav-wrap {
        display: block;
        overflow: hidden;

    }

    .js-menu-on .header__gnav-wrap {
        -webkit-animation: menuShow .5s alternate;
        animation: menuShow .5s alternate;
    }

    .header__gnav {
        width: 400px;
        padding: 60px 0 25px;
        margin: 0 auto;
    }

    .header__gnav__list {
        margin-bottom: 12px;
    }

    .header__gnav__link {
        display: block;
        position: relative;
        color: #F5F7FA;
        font-size: 28px;
        font-weight: bold;
        text-shadow: 0 4px 8px rgba(0, 0, 0, .4);
    }

    .header__gnav__link.hover {
        opacity: 1;
    }

    .header__gnav__link.hover {
        opacity: 1;
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .header__gnav__thumbnail-wrap {
        width: 210px;
        height: 80px;
        overflow: hidden;
    }


    .header__gnav__text {
        font-family: 'sabon';
        position: absolute;
        left: 50%;
        /* 左端から50%の位置 */
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        /* X軸とY軸の両方で中央揃え */
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        color: #fff;
        letter-spacing: .1em;
        white-space: nowrap;
        text-align: center;
        /* テキスト自体も中央揃え */
        width: 100%;
    }

    .header__gnav-wrap__other-links {
        width: 400px;
        margin: 0 auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        height: 26px;
        margin-bottom: 45px;
    }




    .header__menu-button {
        position: absolute;
        left: 0;
        top: 0;
        width: 160px;
        height: 60px;
    }

    .header__menu-button.disabled {
        opacity: .5;
        pointer-events: none;
    }

    .header__menu-button span {
        position: absolute;
        display: block;
        top: 50%;
        left: 30px;
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        transform: translate(0, -50%);
        width: 34px;
        height: 2px;
        background: #fff;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .header__menu-button span:before,
    .header__menu-button span:after {
        -webkit-transition: all .3s;
        transition: all .3s;
        content: '';
        height: 2px;
        position: absolute;
        display: block;
        background: #fff;
    }

    .header__menu-button span:before {
        width: 34px;
        top: -10px;
    }

    .header__menu-button span:after {
        width: 34px;
        bottom: -10px;
    }

    /* ---------- Burger morph ---------- */
    /* 既存の .header__menu-button span ～ のブロックの代わり／追加 */

    .header__menu-button span,
    .header__menu-button span::before,
    .header__menu-button span::after {
        transition: transform .45s cubic-bezier(.4, 0, .2, 1),
            opacity .3s ease;
    }

    body.js-menu-on .header__menu-button span {
        background: transparent;
        /* 真ん中の線を透明に */
        opacity: 0;
        /* フェードアウト */
    }

    body.js-menu-on .header__menu-button span::before {
        transform: translateY(0) rotate(45deg);
    }

    body.js-menu-on .header__menu-button span::after {
        transform: translateY(0) rotate(-45deg);
    }

    body.js-menu-on .header__menu-button span::before,
    body.js-menu-on .header__menu-button span::after {
        width: 34px;
        /* 3 本とも同じ長さに */
    }

    body.js-menu-on .header {
        height: 100vh;
        background: rgba(255, 255, 255, .1);

    }

    .header__menu-button p {
        font-size: 15px;
        line-height: 60px;
        font-weight: bold;
        position: absolute;
        left: 76px;
        color: #fff;
    }

    .header__menu-button:hover {
        opacity: 1;
    }

    .header__menu-button.hover {
        opacity: 1;
    }



    .header__menu-close {
        position: fixed;
        left: 17px;
        top: 0;
        width: 60px;
        height: 60px;
        cursor: pointer;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .header__menu-close:hover {
        opacity: .5;
    }

    .header__menu-close span {
        position: absolute;
        display: block;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        width: 35px;
        height: 0;
        background: #fff;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .header__menu-close span:before,
    .header__menu-close span:after {
        -webkit-transition: all .3s;
        transition: all .3s;
        content: '';
        height: 2px;
        width: 35px;
        position: absolute;
        display: block;
        background: #fff;
    }

    .header__menu-close span:before {
        -webkit-transform: rotate(-35deg);
        -ms-transform: rotate(-35deg);
        transform: rotate(-35deg);
    }

    .header__menu-close span:after {
        -webkit-transform: rotate(35deg);
        -ms-transform: rotate(35deg);
        transform: rotate(35deg);
    }

    .header__buttons {
        position: fixed;
        right: 20px;
        top: 17px;
        z-index: 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    a.header__buttons__link {
        color: #fff;
        padding-left: 30px;
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 25px 25px;
        line-height: 25px;
        font-size: 15px;
        display: block;
        font-weight: bold;
        letter-spacing: .1em;
    }





    .footer {
        position: fixed;
        z-index: 0;
    }

    .footer__sns-links {
        width: 5px;
        position: fixed;
        right: 22px;
        bottom: 25px;
    }

    .footer__sns-link {
        width: 5px;
        margin-bottom: 20px;
        display: block;
    }

    .footer__sns-link:last-child {
        margin-bottom: 0;
    }

    .footer__sns-icon {
        width: 100%;
    }

    .footer__copy-wrap {
        position: fixed;
        left: 35px;
        bottom: 25px;
    }

    .footer__copy {
        font-size: 12px;
        color: #fff;
        font-weight: bold;
        line-height: 2em;
        display: inline-block;
        letter-spacing: .05em;
    }

    a.footer__corks-link {
        color: #fff;
        font-size: 13px;
        font-weight: bold;
        letter-spacing: .1em;
        margin-left: 25px;
        position: relative;
        padding-left: 7px;
        line-height: 20px;
        color: #fff;
        display: inline-block;
    }

    a.footer__corks-link:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        display: block;
        border: solid 2px transparent;
        border-left: solid 3px #fff;
    }

    .footer__next-link {
        position: fixed;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 25px;
        width: 40px;
        height: 20px;
    }

    .footer__next-link__image {
        -webkit-transition: all .5s;
        transition: all .5s;
        width: 40px;
        height: 20px;
        width: 38px;
        height: auto;
    }

    .footer__next-link__link.inversion .footer__next-link__image {
        -webkit-transform: scaleY(-1);
        -ms-transform: scaleY(-1);
        transform: scaleY(-1);
        filter: FlipV;
        -ms-filter: 'FlipV';
    }

    .section {
        font-size: 1.4rem;
        line-height: 1.7em;
        height: 100dvh;
        position: relative;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center center;
    }

    .section:before {
        content: '';
        display: block;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, .5);
        position: absolute;
    }

    .section--index {
        background-image: url(../images/top_image1.webp);
    }

    .section--index:before {
        background: rgba(0, 0, 0, .3);
    }

    .section--about {
        background-image: url(../images/top_image2.webp);
    }

    .section--about:before {
        background: rgba(0, 0, 0, .3);
    }

    .section--company {
        background-image: url(../images/top_image3.webp);
    }

    .section--company:before {
        background: rgba(0, 0, 0, .3);
    }

    .section--products {
        background-image: url(../images/top_image4.webp);
    }

    .section--products:before {
        background: rgba(0, 0, 0, .6);
    }

    .section--member {
        background-image: url(../images/top_image5.webp);
    }

    .section--member:before {
        background: rgba(0, 0, 0, .5);
    }

    .section--access {
        background-image: url(../images/top_image6.webp);
    }

    .section--access:before {
        background: rgba(0, 0, 0, .3);
    }

    .section__inner {
        position: absolute;
        max-width: 984px;
        width: 90%;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .section__contents {
        color: #fff;
        text-align: center;
        font-size: 20px;
        line-height: 1.8em;
        color: #fff;
        letter-spacing: .05em;
        position: relative;
    }



    .logo,
    .section--index__menu,
    #fp-nav,
    .header__buttons,
    .footer__copy-wrap {
        opacity: 0;
    }

    body.is-load .logo {
        -webkit-animation: fadeIn .5s alternate;
        animation: fadeIn .5s alternate;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-delay: 1s;
        animation-delay: 1s;
    }

    body.is-load .section--index__menu,

    body.is-load #fp-nav {
        -webkit-animation: fadeIn .5s alternate;
        animation: fadeIn .5s alternate;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-delay: 1.5s;
        animation-delay: 1.5s;
    }

    body.is-load .header__buttons,
    body.is-load .footer__copy-wrap {
        -webkit-animation: fadeIn .5s alternate;
        animation: fadeIn .5s alternate;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
        -webkit-animation-delay: 2s;
        animation-delay: 2s;
    }

    .sabon,
    .header__menu-button p,
    a.header__buttons__link,
    .footer__copy,
    a.footer__corks-link,
    .modal-data__title,
    .modal-data__step-image__text,
    .section-title,
    .logo__sub-text,
    .section--index__menu__li .section--index__menu__link,
    .section__contents__access__title,
    .form__button__input {
        font-family: 'sabon';
    }




    .modal-title {
        text-align: center;
        font-size: 2.4rem;
        margin: 30px;
        color: #fff;
    }

    /* ========= モーダル全体 ========= */
    .section__contents__modal {
        position: fixed;
        inset: 0;
        z-index: 10000;
        display: flex;
        /* <- これだけでOK */
        justify-content: center;
        /* flex は is-open で付ける */
        align-items: center;

        visibility: hidden;
        /* ↓ モーション用に隠す */
        opacity: 0;
        transition:
            opacity .10s ease,
            visibility 0s .10s;


    }

    /* 開いた時だけ flex で中央寄せ */
    .section__contents__modal.is-open {
        visibility: visible;
        opacity: 1;
        transition: opacity .10s ease;
    }

    /* ========= マスク ========= */
    .modal-mask {
        position: fixed;
        inset: 0;
        background: rgba(107, 107, 107, 0.4);
        backdrop-filter: blur(12px);
        /* マスク自体も軽くぼかすと奥行き感UP */
        -webkit-backdrop-filter: blur(12px);
        cursor: pointer;
        z-index: -1;
        opacity: 0;
        transition: opacity .10s ease .10s;
    }

    /* ========= ダイアログ本体 ========= */
    .modal-dialog {
        color: #fff;
        position: relative;
        text-shadow:
            0 0 8px rgba(0, 0, 0, .6),
            0 0 18px rgba(0, 0, 0, .4);

        width: 100%;
        max-height: 100dvh;
        overflow-y: auto;

        /* ガラス感のキモ */
        background: rgba(156, 156, 156, 0.2);
        /* 薄いホワイト */
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(12px);


    }


    /* ========= 背景固定を止める用 ========= */
    body.modal-open {
        overflow: hidden;
    }

    /* ============ × ボタン ============ */
    .modal-close {
        position: absolute;
        top: 20px;
        /* 位置はお好みで */
        right: 20px;
        width: 42px;
        height: 42px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    /* バツ印を CSS で描く */
    .modal-close::before,
    .modal-close::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 32px;
        height: 2px;
        background: #fff;
        transform-origin: center;
    }

    .modal-close::before {
        transform: translate(-50%, -50%) rotate(45deg);
    }

    .modal-close::after {
        transform: translate(-50%, -50%) rotate(-45deg);
    }

    .modal-content .section__contents__modal {
        display: block;

        color: #fff;
    }



    .section__contents__modal.is-open {
        visibility: visible;
        opacity: 1;
        transition: opacity .10s ease;
        opacity: 1;
    }

    /* =========================================
   2) モーダル本体（.modal-dialog）を拡大表示
   ========================================= */
    .modal-dialog {
        opacity: 0;
        transform: scale(.9) translateY(24px);
        transition: opacity .2s ease,
            transform .2s cubic-bezier(.22, .61, .36, 1);
    }

    .section__contents__modal.is-open .modal-dialog {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

    .modal-mask {
        opacity: 1;
    }






    input[type='submit'],
    input[type='button'],
    button {
        border-radius: 0;
        -webkit-box-sizing: content-box;
        -webkit-appearance: button;
        -moz-appearance: button;
        appearance: button;
        border: none;
        box-sizing: border-box;
        cursor: pointer;
    }

    input[type='submit']::-webkit-search-decoration,
    input[type='button']::-webkit-search-decoration,
    button::-webkit-search-decoration {
        display: none;
    }

    input[type='submit']::focus,
    input[type='button']::focus,
    button::focus {
        outline-offset: -2px;
    }

    .section__contents__button-wrap {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 617px;
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        bottom: 0;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    /* ▼プライスボタンを非表示 */
    /*.section__contents__button-wrap { display:-webkit-box; display:-ms-flexbox; display:flex; width:308px; position:relative; left:50%; -webkit-transform:translateX(-50%); -ms-transform:translateX(-50%); transform:translateX(-50%); bottom:0; -webkit-box-pack:justify; -ms-flex-pack:justify; justify-content:space-between;}*/
    .section__contents__button-wrap--center {
        position: relative;
        -webkit-box-pack: unset;
        -ms-flex-pack: unset;
        justify-content: unset;
        width: 360px;
        width: 0 auto;
        top: 30px;
    }

    .section__contents__button-wrap--center img {
        width: 14px;
        display: inline-block;
        vertical-align: initial;
        margin-right: 20px;
    }

    .section__contents__button-wrap--center .section__contents__button {
        width: 100%;
    }

    .section__contents__button {
        border: 1px solid #fff;

        text-align: center;
        color: #fff;
        /* 幅はautoにして、左右paddingで大きく見せる */
        width: auto;
        padding: 15px 30px;
        /* 上下15px, 左右30px */
        font-size: 22px;
        line-height: 1.4;
        /* 適宜調整 */

    }

    .section__contents__button.hover {
        opacity: 1;
        background: rgba(255, 255, 255, .5);
    }



    .section-title {
        font-size: 80px;
        font-weight: bold;
        text-align: center;
        letter-spacing: .1em;
        color: #fff;
        line-height: 1em;
        margin-bottom: 10vh;
        white-space: nowrap;
        opacity: 0;

    }

    .section-title.is-visible {
        animation: fadeIn 0.5s forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }


    .section--access .section-title {
        margin-bottom: 40px;
    }

    .section__contents__text {
        text-shadow: 0 0 0 white;
        padding-bottom: 10vh;
    }



    .logo {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);


        padding-bottom: 130px;
        width: clamp(280px, 60vw, 900px);
        /* 画面60%を基準に 280-900px の間で可変 */
    }

    .logo__logo {
        width: 100%;
    }

    .logo__logo img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
        /* 左右のマージンを自動で中央揃え */
        display: block;
        /* インライン要素をブロック要素に変更 */
    }





    .section--index__menu {
        position: absolute;
        bottom: 20vh;
        text-align: center;
        width: 90%;
        left: 5%;
    }

    .section--index__menu__ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        text-align: center;
        margin: 0 auto;
        max-width: 1000px;
        flex-wrap: wrap;


    }

    .section--index__menu__li {
        padding: 0;
    }

    .section--index__menu__li .section--index__menu__link {
        vertical-align: bottom;
        color: #fff;
        font-size: 22px;
        letter-spacing: .1em;
        font-weight: bold;
        white-space: nowrap;
        text-align: center;
        vertical-align: bottom;
    }

    .section--index__menu__ul2 {
        display: table;
        margin: 0 auto;
    }

    .section--index__menu__ul2 .section--index__menu__li2 {
        display: table-cell;
        padding: 35px 60px 0 60px;
    }

    .section--index__menu__ul2 .section--index__menu__li2 a {
        color: #fff;
        font-size: 18px;
        font-family: 'sabon';
        font-weight: bold;
        letter-spacing: 2px;
    }

    .section--index__sns-icon {
        width: 60px;
        /* 好きなサイズに調整 */
        height: auto;
        display: inline-block;
        margin: 0px 20px;
    }

    .section--access .section__contents__access:before {
        content: '';
        display: block;
        width: 100vw;
        height: 106%;
        background: #b58e49;
        opacity: .5;
        position: absolute;
        top: -3%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }


    .mainform-wrap {
        overflow: auto;
    }


    .header--mailform {
        top: 0;
        position: relative;
    }

    /* 背景用コンテナ（必要に応じて） */
    .background-container {
        width: 100%;
        height: auto;
        /* 背景画像を使う場合は以下を指定
    background: url('background.jpg') no-repeat center center/cover; 
    */
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 20px;
    }

    /* フォームを覆う半透明パネル */
    .form-container {
        /* うっすら白いパネル */
        background: rgba(255, 255, 255, .55);


        /* 枠と影で浮かせる */
        border: 1px solid rgba(255, 255, 255, .35);
        box-shadow: 0 8px 32px rgba(0, 0, 0, .35);

        padding: 40px 30px 10px 30px;
        max-width: 1200px;
        /* 横幅を広めにして2カラムレイアウトを見やすく */
        width: 100%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        color: #000;
        /* 文字色を黒に */
    }

    /* 入力欄にもガラス調を合わせる（任意）*/
    .form-input input,
    .form-input select,
    .form-input textarea {
        background: #ffffff;
        /* 100% 白 */
        color: #000;
        /* テキストは黒 */
        border: 1px solid rgba(0, 0, 0, .25);
        /* うっすら枠線 */
        box-shadow: 0 0 4px rgba(0, 0, 0, .08) inset;
    }

    .form-input input::placeholder,
    .form-input textarea::placeholder {
        color: #999;
    }

    /* フォーカス時（クリックした時）の枠を強調する場合は任意で */
    .form-input input:focus,
    .form-input select:focus,
    .form-input textarea:focus {
        outline: none;
        /* デフォルト枠を消す */
        border: 1px solid #2684ff;
        /* 好きな色で強調 */
        box-shadow: 0 0 0 3px rgba(38, 132, 255, .25);
    }

    /* 送信ボタンはそのままでも良いが、影を付けて馴染ませても OK */
    .submit-group button[type="submit"] {
        box-shadow: 0 4px 12px rgba(0, 0, 0, .25);
    }


    /* 個々のフォーム要素グループ（ラベル＋入力欄） */
    .form-group {
        display: flex;
        /* 横並びにする */
        align-items: center;
        /* 縦方向の揃え */
        margin-bottom: 20px;
    }

    /* 左側のラベル部分 */
    .form-label {
        color: #fff;
        text-shadow: 0 0 5px rgba(0, 0, 0, 0.75);
        width: 30%;
        /* ラベル側の幅を調整 */
        font-weight: bold;
        padding-right: 10px;
        /* 右側との余白 */
        text-align: left;
        /* テキストを左揃えに */
    }

    /* 右側の入力部分 */
    .form-input {
        width: 70%;
        display: flex;
        /* 入力欄と必須表示を横並びにしたい場合 */
        align-items: center;
        position: relative;
    }

    /* 入力要素のデフォルト設定 */
    .form-input input[type="text"],
    .form-input input[type="email"],
    .form-input input[type="tel"],
    .form-input select,
    .form-input textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 1rem;
    }

    /* テキストエリアのリサイズ */
    .form-input textarea {
        resize: vertical;
    }


    /* 送信ボタンだけ幅を調整 */
    .submit-group {
        display: flex;
        justify-content: center;
        /* ここで中央寄せにする */
        margin-top: 40px;
    }

    /* 送信ボタン */
    .submit-group button[type="submit"] {
        width: auto;
        /* 必要に応じて自動サイズ */
        padding: 12px 120px;
        background-color: #f05a5b;
        color: #fff;
        font-size: 1rem;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        /* トランジションなども付ける場合 */
        transition: background-color 0.3s ease;
    }

    .submit-group button[type="submit"]:hover {
        background-color: #d84f50;
    }

    /* ------------------------------
    モバイル版(スマホ・タブレット)のレイアウト調整
    max-width: 768px あたりが一例
    ------------------------------ */
    @media screen and (max-width: 768px) {

        /* 背景コンテナのパディングを少し減らす */
        .background-container {
            padding: 10px;
            align-items: flex-start;
            /* 中央寄せをやめて上から配置も可 */
        }

        /* フォームコンテナの幅とパディングを調整 */
        .form-container {
            max-width: 100%;

            padding: 20px 15px;
            /* モバイルで見やすいように少しコンパクトに */
        }

        /* フォーム要素は1カラム(縦並び)に */
        .form-group {
            display: block;
            margin-bottom: 0px;
        }

        /* ラベルと入力欄をブロック要素に */
        .form-label {
            width: 100%;
            margin-bottom: 6px;
            /* ラベル下に少し余白 */
            text-align: left;
            /* 左寄せのまま */
            /* font-size: 0.9rem; などでテキストサイズ調整も可 */
        }

        .form-input {
            width: 100%;
            display: block;
            /* 横並びを解除して1列に */
            align-items: flex-start;
        }

        /* 入力欄も幅100%のままでOK */
        .form-input input[type="text"],
        .form-input input[type="email"],
        .form-input input[type="tel"],
        .form-input select,
        .form-input textarea {
            width: 100%;
            /* font-size: 0.9rem; などでやや小さめにしてもOK */
        }

        /* 送信ボタンのサイズも若干コンパクトにする例 */
        .submit-group {
            margin-top: 10px;
        }

        .submit-group button[type="submit"] {
            padding: 12px 60px;
            /* 横幅を少し狭め */
            font-size: 0.9rem;
        }
    }

    /**
    * fullPage 2.6.0
    * https://github.com/alvarotrigo/fullPage.js
    * MIT licensed
    *
    * Copyright (C) 2013 alvarotrigo.com - A project by Alvaro Trigo
    */
    html,
    body {
        margin: 0;
        padding: 0;
        overflow: hidden;
        /*Avoid flicker on slides transitions for mobile phones #336 */
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    }

    #superContainer {
        height: 100%;
        position: relative;
        /* Touch detection for Windows 8 */
        -ms-touch-action: none;
        /* IE 11 on Windows Phone 8.1*/
        touch-action: none;
    }

    .fp-section {
        position: relative;
        /* Safari<=5 Android<=3 */
        /* <=28 */
        box-sizing: border-box;
    }

    .fp-slide {
        float: left;
    }

    .fp-slide,
    .fp-slidesContainer {
        height: 100%;
        display: block;
    }

    .fp-slides {
        z-index: 1;
        height: 100%;
        overflow: hidden;
        position: relative;
        -webkit-transition: all .3s ease-out;
        /* Safari<=6 Android<=4.3 */
        transition: all .3s ease-out;
    }

    .fp-section.fp-table,
    .fp-slide.fp-table {
        display: table;
        table-layout: fixed;
        width: 100%;
    }

    .fp-tableCell {
        display: table-cell;
        vertical-align: top;
        width: 100%;
        height: 100%;
    }

    .fp-slidesContainer {
        float: left;
        position: relative;
    }

    .fp-controlArrow {
        position: absolute;
        z-index: 4;
        top: 50%;
        cursor: pointer;
        width: 0;
        height: 0;
        border-style: solid;
        margin-top: -38px;
        -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .fp-controlArrow.fp-prev {
        left: 15px;
        width: 0;
        border-width: 38.5px 34px 38.5px 0;
        border-color: transparent #fff transparent transparent;
    }

    .fp-controlArrow.fp-next {
        right: 15px;
        border-width: 38.5px 0 38.5px 34px;
        border-color: transparent transparent transparent #fff;
    }

    .fp-scrollable {
        overflow: scroll;
    }

    .fp-notransition {
        -webkit-transition: none !important;
        transition: none !important;
    }

    #fp-nav {
        position: fixed;
        z-index: 100;
        top: 50%;
        -webkit-transform: translate(0, -50%, 0);
        -ms-transform: translate(0, -50%, 0);
        transform: translate(0, -50%, 0);
        width: 52px;
        height: 266px;
        background-size: 52px 266px;
        z-index: 0;
    }

    #fp-nav ul {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    #fp-nav.right {
        right: 5px;
    }

    #fp-nav.left {
        left: 17px;
    }



    #fp-nav ul li .fp-tooltip {
        position: absolute;
        top: -2px;
        color: #fff;
        font-size: 14px;
        font-family: arial, helvetica, sans-serif;
        white-space: nowrap;
        max-width: 220px;
        overflow: hidden;
        display: block;
        opacity: 0;
        width: 0;
    }

    #fp-nav ul li:hover .fp-tooltip,
    #fp-nav.fp-show-active a.active+.fp-tooltip {
        -webkit-transition: opacity .2s ease-in;
        transition: opacity .2s ease-in;
        width: auto;
        opacity: 1;
    }

    #fp-nav ul li .fp-tooltip.right {
        right: 20px;
    }

    #fp-nav ul li .fp-tooltip.left {
        left: 20px;
    }



    .modal-description {
        opacity: 1;
        width: 100%;
        color: #fff;
        font-size: 13px;
        text-align: right !important;
        margin-top: 15px;
        position: absolute;
        line-height: 1.8em;
        text-shadow: 0 0 0 white;
        -webkit-animation: descriptionShow .5s alternate;
        animation: descriptionShow .5s alternate;
    }

    .section__contents__modal {

        /* flexアイテム間の隙間を埋めて、最下部に配置させる */
        margin-top: auto;

        /* テキストを中央寄せ */
        text-align: left;
        font-size: 3rem;
        /* 大きめ文字 */
        line-height: 1.5;
    }

    /**
   
    /* モーダル内の製品一覧全体を調整 */
    .modal-products {
        /* ① 親を中央 1000px に固定 */
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 60px;
        /* アイテム間隔 */
        padding: 20px;
    }

    .modal-products__item {
        /* ② 画像と文章を横並び */
        display: flex;
        align-items: center;
        gap: 40px;
    }

    /* 最後の要素には余白をつけない */
    .modal-products__item:last-child {
        margin-bottom: 0;
    }

    .modal-products__img-wrap {
        flex: none;
        width: 500px;
        /* 横幅固定 */
        aspect-ratio: 7/4;
        /* ★ 高さも比率で揃える */
        border-radius: 12px;
        overflow: hidden;
    }

    .modal-products__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* 端をトリミングしてでも枠いっぱい埋める */
        object-position: center;
    }

    /* テキスト部分 */
    .modal-products__text-wrap {
        flex: 1;
        /* 残りの領域を使う */
    }

    .modal-products__text-wrap h3 {
        font-size: 3rem;
        margin-bottom: 12px;
        letter-spacing: .05em;
    }

    .modal-products__text-wrap p {
        font-size: 1.4rem;
        line-height: 1.6;
        /* 必要があればさらに文字サイズや色を微調整 */
    }

    .modal-product-name h3 {
        text-align: center;
        font-size: 3.8rem;

        color: #fff;
    }

    .modal-product-name p {
        text-align: center;
        font-size: 2.2rem;
        margin: 10px 0 30px 0;
        color: #fff;
    }

    .divider {
        border: none;
        border-top: 2px solid rgba(255, 255, 255, 0.4);
        width: 60%;
    }



    /* モーダル全体の基本スタイル */
    #modal-member .modal-member {
        padding: 20px;
        color: #fff;
        /* 背景が暗い場合などに合わせて調整 */
        max-width: 1000px;
        /* 必要なら横幅制限 */
        margin: 0 auto;
        /* 水平中央寄せ */
        display: flex;
        flex-direction: column;
        /* 縦に並べる => 子要素が多い場合は下に続く */
        gap: 40px;
        /* 各メンバー間の間隔 */
    }

    /* 各メンバー（写真＋テキスト）を横並び */
    #modal-member .modal-member__item {
        display: flex;
        align-items: center;
        /* 垂直方向中央合わせ */
        /* 背景や角丸などつけたい場合はここで 
        background: rgba(255,255,255,0.1);
        border-radius: 12px;
    */
    }

    /* 画像ブロック */
    #modal-member .modal-member__img-wrap {
        width: 100%;
        margin: 10px;
        border-radius: 12px;
        overflow: hidden;
        /* 角丸から画像がはみ出さないようにする */
    }

    #modal-member .modal-member__img-wrap img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
        /* 必要に応じてトリミング */
    }

    /* テキストブロック */
    #modal-member .modal-member__text-wrap {
        width: 100%;
        padding: 0px 0px 0px 10px;
        /* 画像40% + テキスト60%で全体100% */
    }

    /* タイトル部分: 名前（日本語）+ 英語表記 */
    #modal-member .modal-member__text-wrap h3 {
        font-size: 2.4rem;
        /* 大きめに */
        margin-bottom: 6px;
        line-height: 1.3;
        font-weight: bold;
    }

    #modal-member .member-name-en {
        font-size: 1.4rem;
        margin-left: 10px;
        /* 少し余白 */
        font-weight: normal;
    }

    #modal-member .member-name-ja {
        font-size: 1.6rem;
        margin-bottom: 10px;
        letter-spacing: .05em;
    }

    #modal-member .member-profile {
        font-size: 1.4rem;
        line-height: 1.7;
    }




    /* モーダル全体のラッパ */
    .modal-company {
        padding: 20px;
        /* モーダル内部の余白 */
        color: #fff;
        /* 文字色を白 */
        max-width: 1000px;
        /* 横幅上限 */
        margin: 0 auto;
        /* 中央寄せ */
    }

    /* タイトル */
    .modal-company__title {
        font-size: 3.2rem;
        margin-bottom: 20px;
        font-weight: bold;
        text-align: center;
        /* 必要ならcenterなどに変更 */
    }

    /* 画像＋テキストを横並びにする枠 */
    .modal-company__item {
        display: flex;
        align-items: center;
        /* 垂直方向中央合わせ */
        /* 必要に応じて背景色や角丸指定も可
        background-color: rgba(255,255,255,0.1);
        border-radius: 12px;
    */
    }

    /* 画像部分 */
    .modal-company__img-wrap {
        width: 50%;
        height: 400px;
        margin-right: 20px;
        border-radius: 12px;
        overflow: hidden;
        display: flex;
        /* Flexbox でコンテンツを中央揃え */
        align-items: center;
        justify-content: center;
    }

    .modal-company__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        border-radius: 12px;


        /* 必要に応じてトリミング */
    }

    /* テキスト部分 */
    .modal-company__text-wrap {
        width: 60%;
        /* 画像が40% + テキスト60% */
    }

    .modal-company__subtitle {
        font-size: 3.7rem;
        font-weight: bold;
        margin-bottom: 16px;
    }

    .modal-company__message {
        font-size: 1.6rem;
        line-height: 1.7;
        margin-bottom: 50px;
        /* 下のプロフィールとの隙間 */

    }

    .modal-company__profile {
        font-size: 1.6rem;
        line-height: 1.7;
        text-align: center;
    }

    .modal-company__name {
        font-size: 3.6rem;
        line-height: 1.7;
        text-align: center;
    }

    .modal-company-works {
        max-width: 1200px;
        margin: 30px auto;
        padding: 20px;
        position: relative;
    }

    .office-visuals {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 30px;
    }

    .office-card {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 8px;
        flex: 1 1 320px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
        margin-bottom: 30px;
    }

    .office-card img {
        width: 100%;
        height: auto;
        display: block;
        transition: transform 0.4s ease;
    }

    .office-caption {
        position: absolute;
        bottom: 0;
        width: 100%;
        padding: 16px;
        background: rgba(0, 0, 0, 0.6);
        color: #fff;
        font-size: 1.6rem;
        font-weight: bold;
        text-align: left;
        opacity: 0;
        transform: translateY(20%);
        transition: all 0.3s ease;
    }

    /* ===== Hover時に拡大 + キャプション表示 ===== */
    .office-card:hover img {
        transform: scale(1.05);
    }

    .office-card:hover .office-caption {
        opacity: 1;
        transform: translateY(0);
    }





    .modal-company-works__title {
        font-size: 3.8rem;
        font-weight: bold;
        margin: 60px 30px 10px 30px;
        text-align: center;
        color: #fff;
    }

    .works-description {
        text-align: center;
        color: #fff;
        font-size: 2.2rem;
        margin-bottom: 30px;
        line-height: 1.5;
    }

    .company-gallery {
        margin-top: 30px;
    }

    .company-gallery h4 {
        font-size: 1em;
        margin-bottom: 10px;
    }

    @media screen and (max-width: 768px) {
        .company-gallery h4 {
            font-size: 2.4rem;
            /* お好みで 1.6rem などに調整 */
            margin-bottom: 8px;
            /* 余白も少し詰めたい場合 */
        }
    }


    /* ① ギャラリー全体 --------------------------------------------- */
    .gallery-row {
        display: grid;
        gap: 24px;

        /* 左 2 列は伸縮、右 1 列は固定 300px */
        grid-template-columns: repeat(2, minmax(240px, 1fr)) 300px;

        /* ★各行を同じ高さ (=1fr) にする */
        grid-auto-rows: 1fr;
    }

    /* ② 共通サムネ (横長) ------------------------------------------- */
    .gallery-item {
        overflow: hidden;
        border-radius: 8px;

        /* 行の高さを決める比率。4:3 (お好みで) */
        aspect-ratio: 4 / 3;
    }

    /* ③ 縦長サムネ -------------------------------------------------- */
    .gallery-item--tall {
        grid-column: 3;
        /* 右列固定 */
        grid-row: span 2;
        /* 2 行分ぶち抜き → 高さは自動で 2 倍 */
        aspect-ratio: auto;
        /* 行高から自動決定 */
    }

    /* ④ 画像共通：引き延ばさずに枠いっぱい埋める -------------------- */
    .gallery-item img,
    .gallery-item--tall img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* 足りない辺だけトリミング */
    }

    /* === 正方形専用スタイル ==================================== */
    .gallery-item--square {
        /* 枠を 1:1 に固定 */
        aspect-ratio: 1 / 1;
        overflow: hidden;
        /* はみ出しトリミング */
    }

    .gallery-item--square img {
        /* 枠いっぱいにフィット */
        width: 100%;
        height: 100%;
        object-fit: cover;
    }




    /* レスポンシブ（スマホ等）で縦並び */
    @media screen and (max-width: 768px) {
        .modal-company__item {
            flex-direction: column;
            /* 縦に並べる */
            align-items: flex-start;
        }

        .modal-company__img-wrap {
            width: 100%;
            max-width: none;
            height: auto;
            /* ← 高さ固定を解除 */
            aspect-ratio: auto;
            /* ← もしPC側で指定していたら打消し */
            overflow: visible;
            /* ← はみ出し防止のため cover 用の切り抜きを解除 */
            margin-right: 0;
            margin-bottom: 20px;
        }

        /* 画像は横幅100%、高さは自動。切り抜かない */
        .modal-company__img-wrap img {
            display: block;
            width: 100%;
            height: auto !important;
            /* ← 100%などが当たっていたら打消し */
            object-fit: contain !important;
            /* ← cover が効いていたら打消し */
            border-radius: 12px; 
        }

        .modal-company__text-wrap {
            width: 100%;
        }

        .modal-company__title {
            font-size: 2.8rem;
            text-align: center;
            margin: 10px 0px 20px 0px;
        }

        .modal-company__subtitle {
            font-size: 2.4rem;
        }

        .modal-company__message,
        .modal-company__profile {
            font-size: 1.4rem;
            text-align: left;
        }

        .modal-company__name {
            font-size: 2.4rem;
            text-align: left;
        }

        .modal-company-works__title {
            font-size: 2.4rem;
            margin: 40px 20px 10px 20px;
        }

        .works-description {
            font-size: 1.6rem;
            margin: 20px 10px 40px 10px;
            padding: 0 10px;
        }

        .gallery-row {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .gallery-item,
        .gallery-item--tall {
            grid-column: auto;
            grid-row: auto;
            aspect-ratio: auto;
        }

        .gallery-item img,
        .gallery-item--tall img {
            width: 100%;
            height: auto;
            object-fit: contain;
        }

        .modal-product-name h3 {
            font-size: 2rem;
            text-align: center;
            margin-top: 30px;
            color: #fff;
        }

        .divider {
            margin: 10px auto;
            width: 50%;
            border: 0;
            height: 1px;

        }
    }

    /* モーダル全体のコンテナ */
    .modal-about {

        /* ① 親を中央 1000px に固定 */
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        gap: 60px;
        /* アイテム間隔 */
        padding: 20px;
    }

    /* 大見出し（サービス内容） */
    .modal-about__title {
        font-size: 2.4rem;
        text-align: center;
        margin-bottom: 40px;
        font-weight: bold;
    }

    /* 画像＋テキストを1セットにしたブロック */
    .modal-about__item {
        display: flex;
        /* 横並び */
        align-items: center;
        /* 垂直方向の中央寄せ */
        margin-bottom: 40px;
        /* 下余白 */
        gap: 40px;

    }

    /* 最後の要素には余白を不要にする場合 */
    .modal-about__item:last-child {
        margin-bottom: 0;
    }

    /* 画像部分 */
    .modal-about__img-wrap {
        flex: none;
        width: 500px;
        /* 横幅固定 */
        aspect-ratio: 7/4;
        /* ★ 高さも比率で揃える */
        border-radius: 12px;
        overflow: hidden;
    }

    .modal-about__img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* 端をトリミングしてでも枠いっぱい埋める */
        object-position: center;
    }

    /* テキスト部分 */
    .modal-about__text-wrap {
        flex: 1;
        /* 残りの幅をテキストに */
    }

    .modal-about__text-wrap h4 {
        font-size: 2.4rem;
        margin-bottom: 10px;
        font-weight: bold;
    }

    .modal-about__text-wrap p {
        font-size: 1.8rem;
        line-height: 1.6;
    }

    /* 画面幅が狭いときは縦並び */
    @media screen and (max-width: 768px) {
        .modal-about__item {
            flex-direction: column;
            align-items: flex-start;
        }

        .modal-about__img-wrap {
            width: 100%;
            max-width: 100%;
            margin-right: 0;
            margin-bottom: 20px;
            /* テキストとの隙間 */
        }

        .modal-about__text-wrap {
            width: 100%;
        }

        .modal-about__title {
            font-size: 2rem;
        }

        .modal-about__text-wrap h4 {
            font-size: 1.8rem;
        }

        .modal-about__text-wrap p {
            font-size: 1.3rem;
        }
    }

    #modal-company-overview {
        color: #333;
    }

    #modal-company-overview .modal-close {
        z-index: 20;
        /* iframe より大きければ何でも可 */
    }

    .modal-company-overview {
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
        position: relative;

    }

    /* タイトル部分 */
    .modal-company-overview__title {
        font-size: 3.8rem;
        font-weight: 500;
        margin-bottom: 30px;
        text-align: center;
        color: #fff;
    }

    /* プロフィールコンテナ */
    .company-profile-container {
        padding: 0px;
    }

    /* グリッドレイアウトを縦に変更 */
    .profile-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    /* 各プロフィール項目 */
    .profile-item {

        border: 1px solid #fff;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
        padding: 20px;
        display: flex;
        flex-direction: row;
        /* 横並びに変更 */
    }

    /* ラベル部分 */
    .profile-label {
        font-weight: bold;
        width: 30%;
        /* 横幅を30%に固定 */
        font-size: 1.6rem;
        color: #fff;
    }

    /* 値部分 */
    .profile-value {
        font-size: 1.6rem;
        width: 70%;
        padding: 0 10px;
        color: #fff;
    }

    /* 所在地ブロック */
    .location-block {
        display: flex;
        flex-direction: column;
    }

    /* オフィス名 */
    .office-name {
        font-weight: bold;
        margin-bottom: 10px;
        font-size: 1.6rem;
    }

    /* 住所テキスト */
    .address-text {
        margin-bottom: 15px;
        line-height: 1.5;
    }

    /* 地図コンテナ */
    .map-container {
        width: 100%;
        overflow: hidden;

        margin-top: 5px;
    }

    /* スマホサイズの調整 */
    @media (max-width: 768px) {
        .profile-item {


            border: 1px solid #fff;
            padding: 5px;
            display: flex;
            flex-direction: column;
            margin-bottom: 0;
        }

        .profile-value {
            font-size: 1.2rem;
            color: #fff;
            width: 100%;
            padding: 0px 5px 0px 5px;
        }

        .profile-label {
            font-weight: bold;
            font-size: 1.2rem;
            color: #fff;
            padding: 0px 5px 0px 5px;
            width: 100%;
        }

        .profile-label {
            margin-bottom: 5px;
        }

        .modal-company-overview__title {
            font-size: 2.8rem;

        }

    }




    @media screen and (max-width: 750px) {
        .section__contents__text {

            font-size: 1.8rem;
            line-height: 35px;
            padding: 0vh 10px 5vh 10px;

        }

        .section__contents__text br {
            display: none;
        }


    }



    /* タブレットサイズ */
    @media screen and (min-width:751px) and (max-width:1200px) {
        .section--index__menu__ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            text-align: center;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            margin: 0 auto;
            row-gap: 20px;
        }





        .section--index__menu__li {
            padding: 0 9px;

            /* 0.8rem → 8px */
            column-gap: 24px;
            margin-bottom: 13px;

        }

        .section--index__menu__li .section--index__menu__link {
            font-size: 26px;
        }
    }


    @media screen and (max-width: 750px) {
        * {
            font-size: 1.6rem;
        }





        .header {
            height: 45px;
            top: -45px;
        }

        .header__logo {
            width: 160px;
            height: 21.83px;
            margin: 12px auto;
        }

        .header__gnav {
            width: 287px;
            padding: 50px 0 15px;
        }

        .header__gnav__list {
            margin-bottom: 8px;
        }

        .header__gnav__link {
            font-size: 19px;
        }

        .header__gnav__thumbnail-wrap {
            width: 145px;
            height: 62px;
            overflow: hidden;
        }

        .header__gnav__thumbnail {
            width: 145px;
            height: 62px;
        }

        .header__gnav__text {
            left: 10px;
            /* モバイルでは元の左寄せスタイルに戻す */
            -webkit-transform: translateY(-50%);
            /* Y軸のみの変換に戻す */
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            width: auto;
            /* 幅を自動に戻す */
            text-align: left;
            /* テキストを左揃えに戻す */
        }

        .header__gnav-wrap__other-links {
            width: 287px;
            height: 24px;
            margin-bottom: 45px;
        }


        .header__menu-button {
            left: 5px;
            width: 45px;
            height: 45px;
        }

        .header__menu-button span {
            left: 10px;
            width: 25px;
        }

        .header__menu-button span:before {
            width: 25px;
        }

        .header__menu-button span:after {
            width: 25px;
        }

        .header__menu-button p {
            display: none;
        }

        .header__menu-button:hover {
            opacity: 1;
        }

        .header__menu-button.hover {
            opacity: 1;
        }



        .header__menu-close {
            left: 5px;
            top: 0;
            width: 45px;
            height: 45px;
        }

        .header__menu-close span {
            width: 25px;
            margin-top: -1px;
        }

        .header__menu-close span:before,
        .header__menu-close span:after {
            height: 2px;
            width: 25px;
        }

        .header__menu-close span:before {
            -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
        }

        .header__menu-close span:after {
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

        .header__buttons {
            right: 7px;
            top: 5px;
        }

        .header__buttons__item {
            width: 40px;
            height: 100%;
            overflow: hidden;
            padding-left: 0;
            white-space: nowrap;
        }

        a.header__buttons__link {
            background-size: 30px auto;
            background-position: 5px center;
            line-height: 35px;
            padding-left: 40px;
        }

        .footer__sns-links {
            display: none;
        }

        .footer__copy-wrap {
            left: 15px;
            bottom: 5px;
            width: 92%;
            pointer-events: none;
            -webkit-transition: opacity .5s;
            transition: opacity .5s;
            opacity: 0;
        }

        .footer__copy-wrap.js-show {
            pointer-events: auto;
            opacity: 1;
        }

        .footer__copy {
            font-size: 11px;
        }

        a.footer__corks-link {
            float: right;
        }

        .section:before {
            content: '';
            display: block;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, .3);
            position: absolute;
        }

        .section--about {
            background-image: url(../images/top_image2.webp);
        }

        .section--about:before {
            background: rgba(0, 0, 0, .3);
        }

        .section--company {
            background-image: url(../images/top_image3.webp);
        }

        .section--company:before {
            background: rgba(0, 0, 0, .3);
        }





        .section--access {
            background-image: url(../images/top_image6.webp);
        }

        .section--access:before {
            background: rgba(0, 0, 0, .35);
        }

        .section__inner {
            width: 100%;
        }

        .section__contents {
            font-size: 13px;
            line-height: 1.7em;
            letter-spacing: 0;
            color: #fff;
        }

        body.is-load .footer__copy-wrap {
            -webkit-animation: unset;
            animation: unset;
        }

        body.is-load .footer__copy-wrap.is-show {
            -webkit-animation: fadeIn .5s alternate;
            animation: fadeIn .5s alternate;
            -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
            -webkit-animation-delay: 2s;
            animation-delay: 2s;
        }


        .modal-products {
            display: flex;
            flex-direction: column;
            /* アイテム間隔 */

        }



        /* モーダル内のコンテンツレイアウト改善 */
        .modal-member__item,
        .modal-about__item,
        .modal-products__item,
        .modal-company__item {
            flex-direction: column;
            align-items: center;
            margin-bottom: 30px;
            gap: 0px;
        }

        .modal-products__img-wrap {
            aspect-ratio: 7/4;
            /* 高さは比率で自動 */
            border-radius: 12px;
            overflow: hidden;

            /* 中央揃えのポイント ▶ */
            margin: 0 auto 20px;
            /* 左右 auto で中央配置・下に余白 */
        }

        .modal-products__img-wrap,
        .modal-products__text-wrap {
            width: 95%;
            /* 画像と同値にするだけ！ */
        }

        .modal-products__text-wrap h3 {
            font-size: 2.5rem;
            margin-bottom: 5px;
            letter-spacing: .05em;
        }



        .modal-products__img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* 端をトリミングしてでも枠いっぱい埋める */
            object-position: center;
        }

        .modal-product-name h3 {
            text-align: center;

            margin: 20px 0 15px 0;
            color: #fff;
        }

        .modal-product-name p {
            text-align: center;
            font-size: 1.4rem;
            margin: 20px 25px 10px 25px;
            color: #fff;
        }

        .divider {
            border: none;
            border-top: 2px solid rgba(255, 255, 255, 0.4);
            width: 85%;
        }

        .modal-data__title {
            font-size: 30px;
            line-height: 50px;
        }

        .modal-data__title__sub {
            font-size: 15px;
            display: block;
            margin-left: 0;
            line-height: 2em;
            position: relative;
            top: -8px;
        }

        .modal-data__bottom-text-small {
            font-size: 11px;
            padding: 1em 0;
            line-height: 1.8em;
        }

        .modal-data__border-block-wrap {
            max-height: calc(100dvh - 200px);
            border-top: 2px solid #fff;
            border-bottom: 2px solid #fff;
        }

        .modal-data__dl-list {
            padding: 10px 0 10px;
            font-size: 13px;
        }

        .modal-data__dl-list__dt {
            width: auto;
            margin-bottom: 5px;
            display: inline-block;
            padding-left: 0;
            padding-bottom: 0;
            float: none;
            clear: none;
            line-height: 1.5em;
            border-bottom: 1px solid #fff;
        }

        .modal-data__dl-list__dd {
            border-left: none;
            margin-left: 0;
            padding-left: 0;
            margin-bottom: 15px;
            line-height: 1.5em;
        }

        .modal-data__bottom-text-large {
            font-size: 11px;
            padding: 1em 0;
            line-height: 1.8em;
            text-align: center;
        }

        .modal-data__border-arrow-block-wrap {
            max-height: calc(100dvh - 220px);
            border-top: 2px solid #fff;
            border-bottom: 2px solid #fff;
        }

        .modal-data__border-arrow-block {
            display: block;
            margin-bottom: 27px;
            padding: 0;
        }

        .modal-data__border-arrow-block:after {
            border-left: solid 8px transparent;
            border-right: solid 8px transparent;
            border-top: solid 7px #fff;
            margin-left: -8px;
            bottom: -19px;
        }

        .modal-data__step-image {
            padding: 0;
            width: 100%;
            display: block;
            border-right: none;
        }











        .section__contents__button-wrap {
            display: flex;
            /* blockからflexに変更 */
            flex-direction: column;
            /* 縦並びに */
            width: 100%;
            /* 幅を画面幅に合わせて調整 */
            gap: 15px;
            /* ボタン間の隙間 */
        }

        .section__contents__button-wrap--center {
            display: flex;
            flex-direction: column;
            width: 90%;
            max-width: 300px;
        }

        .section__contents__button-wrap--center img {
            margin-right: 10px;
        }

        .section__contents__button-wrap--center .section__contents__button {
            width: 100%;
        }

        .section__contents__button {
            display: block;
            /* インラインからブロック要素に */

            margin: 0px 80px 0px 80px;
            /* マージンをリセット */
            padding: 12px 10px;
            /* 上下左右のパディングを調整 */
            font-size: 16px;
            line-height: 1.4;
            text-align: center;
            box-sizing: border-box;
            white-space: nowrap;
            /* テキストを折り返さない */
        }

        .section-title {
            font-size: 36px;
            margin-bottom: 10vh;
            opacity: 0;

        }

        .section-title.is-visible {
            animation: fadeIn 0.5s forwards;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }



        .section--access .section-title {
            margin-bottom: 15px;
        }



    }



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

        /* ロゴ全体を中央に表示 */
        .logo {
            position: absolute;
            top: 40%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: clamp(400px, 80vw, 1440px);



            padding-bottom: 0;
        }

        .logo__logo {
            width: 100%;
            height: auto;
        }

        .logo__logo img {
            width: 100%;

            height: auto;
            object-fit: contain;
            object-position: center;
        }

        .logo__sub-text {
            font-size: 18px;
            margin-top: 15px;
            text-align: center;
            width: 100%;
        }
    }


    @media screen and (max-width: 750px) {
        .section--index__menu__ul2 .section--index__menu__li2 {
            padding: 3px 9px 0 9px;
        }

        .section--index__menu__ul2 .section--index__menu__li2 a {
            font-size: 16px;
        }



        .section--index__menu {
            bottom: 200px;
            width: 100%;
            left: 0;
        }

        .section--index__menu__ul {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            -webkit-box-pack: center;
            -ms-flex-pack: center;
            justify-content: center;
            text-align: center;
            -ms-flex-wrap: wrap;
            flex-wrap: wrap;
            margin: 0 auto;
        }

        .section--index__menu__li {
            padding: 0 9px;
            margin-bottom: 13px;
        }

        .section--index__menu__li .section--index__menu__link {
            font-size: 16px;
        }

        .section--index__sns-links {
            position: absolute;
            display: flex;
            padding: 20px;
            width: 100%;
            left: 0;
            height: auto;
            justify-content: center;

            z-index: 10;
        }

        .section--index__sns-link {
            width: 50px;
            margin: 0 10px;
            display: block;
        }

        .section--index__sns-link:last-child {
            margin-bottom: 0;
        }

        .section--index__sns-icon {
            width: 100%;
            height: auto;
            margin: 0px;
        }


        .section--access .section__contents__access:before {
            content: '';
            display: block;
            width: 100vw;
            height: 100%;
            top: 0;
        }

        .section__contents__access {
            display: block;
            padding: 5px 0 15px;
            margin-bottom: -15px;
        }

        .section__contents__access__title {
            font-size: 20px;
            border-bottom: 1px solid #fff;
            line-height: 1.8em;
            margin-bottom: 20px;
            font-weight: bold;
            padding-bottom: 5px;
        }

        .section__contents__access__info {
            position: relative;
            width: auto;
            margin-right: 0;
            margin: 0 15px;
        }

        .section__contents__access__info-dt {
            margin-bottom: 7px;
            font-size: 13px;
            line-height: 1.53846154em;
        }

        .section__contents__access__info-dd {
            margin-left: 100px;
            margin-bottom: 7px;
            font-size: 13px;
            line-height: 1.53846154em;
            letter-spacing: .05rem;
        }

        .section__contents__access__info-dd a {
            color: #fff;
        }

        .section__contents__access__info-dd__text-small {
            font-size: 13px;
        }

        .section__contents__access__map {
            margin: 30px 15px 0;
            position: relative;
            width: auto;
            line-height: 2em;
        }

        .section__contents__access__map .section__contents__access__title {
            display: none;
        }

        .section__contents__access__map__img {
            display: none;
        }

        .section__contents__access__map-link {
            font-size: 13px;
            text-decoration: underline;
        }

        .header--mailform {
            top: 0;
        }





        .section__inner--mailform {
            width: 345px;
            margin: 0 auto;
            position: relative;
            top: 0;
            left: 0;
            -webkit-transform: unset;
            -ms-transform: unset;
            transform: unset;
        }

        .mailform__text {
            font-size: 11px;
            line-height: 1.9em;
            margin-bottom: 15px;
        }








        .form__input {
            background: #e5e5e5;
            width: 305px;
            border: none;
            margin: 0;
            padding: 0;
            letter-spacing: .05em;
        }

        .form__input--text {
            line-height: 30px;
            padding: 0 10px;
            font-size: 12px;
        }

        .form__input--textarea {
            height: 125px;
            font-size: 12px;
            max-width: 305px;
            min-width: 305px;
            max-height: 300px;
            padding: 7px 10px;
        }

        .form__button-wrap {
            white-space: nowrap;
        }

        .form__button {
            margin: 0 12px;
            width: 125px;
        }

        .form__button__input {
            width: 125px;
            line-height: 40px;
            color: #fff;
            font-weight: bold;
            font-size: 13px;
        }

        .form__button__input--arrow-l:before {
            width: 11px;
        }

        .form__button__input--arrow-r:after {
            width: 11px;
        }



        .section__inner--mailform-finish {
            min-height: 300px;
        }

        .form__finish__title {
            font-size: 15px;
            padding: 10px;
            margin-bottom: 10px;
        }

        .form__finish__text {
            font-size: 11px;
            margin-bottom: 30px;
            line-height: 1.8em;
        }

        .form__td--confirm {
            padding-top: 11px;
            font-size: 11px;
        }

        .footer--mailform {
            position: static;
            padding-top: 25px;
        }

        .footer__copy-wrap--mailform {
            width: 100%;
            opacity: 1;
            text-align: center;
            padding-bottom: 25px;
        }

        #fp-nav {
            display: none;
        }









        .modal-description {
            font-size: 10px;
            margin-top: 10px;
        }

        .section__modal-button {
            display: inline;
            padding: 15px 40px;
            background: rgba(0, 0, 0, 0.7);
            color: #fff;
            text-decoration: none;
            margin-top: 30px;
            transition: all 0.3s ease;
            font-size: 1.6rem;
            border: 1px solid #fff;
        }

        .section__modal-button:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #000;
        }

        .modal-title {
            text-align: center;

            margin: 30px 0 20px 0;
            color: #fff;
        }


    }

    @media screen and (max-width: 750px) {
        .section__modal-button {
            padding: 12px 30px;
            font-size: 1.4rem;
        }
    }

    @-webkit-keyframes menuShow {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes menuShow {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @-webkit-keyframes menuHidden {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes menuHidden {
        0% {
            opacity: 1;
        }

        100% {
            opacity: 0;
        }
    }

    @-webkit-keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes fadeIn {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @-webkit-keyframes descriptionShow {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes descriptionShow {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }

    /* === NFC モーダル専用の上書き =================================== */
    #modal-products-nfc .modal-products {
        /* flex → 3 列グリッドに変更 */
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        /* 列・行のすき間（お好みで） */
        max-width: 1200px;
    }

    /* 各カードは縦積みに戻す（横並びを解除） */
    #modal-products-nfc .modal-products__item {
        display: block;
    }

    /* 画像枠は列幅いっぱいにフィットさせる */
    #modal-products-nfc .modal-products__img-wrap {
        width: 100%;
        aspect-ratio: 7 / 4;
        /* 正方形にしたいなら 1 / 1 などへ変更可 */
    }

    /* NFC だけ商品名テキストを消す */
    #modal-products-nfc .modal-products__text-wrap {
        display: none;
    }

    /* 画面が狭い時は自動で 2 → 1 列に崩す（任意） */
    @media (max-width: 768px) {
        #modal-products-nfc .modal-products {
            grid-template-columns: repeat(2, 1fr);
        }

        #modal-products-nfc .modal-products__item {
            padding: 8px;
            margin-bottom: 0px;
        }
    }

    @media (max-width: 480px) {
        #modal-products-nfc .modal-products {
            grid-template-columns: 1fr;
        }

        #modal-products-nfc .modal-products__item {
            padding: 8px;
            margin-bottom: 0px;
        }
    }



    #modal-products-interior .brand-logo--kumi {
        display: block;
        margin: 12px auto 0px;
        /* 中央寄せ */
        width: clamp(160px, 22vw, 300px);
        object-fit: contain;
    }

    #modal-products-interior .modal-product-name .modal-product-name__heading {
        font-size: 3.1rem;
    }

    #modal-products-interior .modal-product-name p {
        max-width: 1000px;
        text-align: left;
        /* 文字は左揃えのまま */
        margin: 10px auto 30px;
        /* ← 段落ブロックを中央寄せ */
        padding: 0 24px;
    }

    /* 区切り線とのバランス微調整（任意） */
    #modal-products-interior .modal-product-name .divider {
        margin: 8px auto 40px;
        opacity: .6;
    }

    #modal-products-interior .kumi-title__logo {
        filter: brightness(1.2);
    }

    /* スマホ時は縦積みにして中央揃え（好みで） */
    @media (max-width: 480px) {
        #modal-products-interior .brand-logo--kumi {
            flex-direction: column;
            gap: 6px;
        }

        #modal-products-interior .modal-product-name__heading {
            height: 100px;
        }
    }

    #modal-products-nfc .modal-product-name .divider {
        margin: 8px auto 40px;
        opacity: .6;
    }

    /* 既存のベース指定 ------------------- */
    html,
    body {
        /* 古い設定など */
    }

    .section {
        height: 100vh;
        /* ← 既存コード(残っていてもOK) */
    }

    /* フォールバック系 ------------------- */
    /* 新ブラウザ向け */
    .section {
        min-height: 100dvh;
    }

    /* dvh未対応ブラウザ向け */
    @supports not (height: 100dvh) {
        .section {
            min-height: 100vh;
        }
    }

    /* iOS Safari用の補完 */
    html,
    body {
        height: -webkit-fill-available;
    }

    .section {
        min-height: -webkit-fill-available;
    }