@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kosugi&family=Kosugi+Maru&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&display=swap');
@font-face {
  font-family: "number";
  src: url("../fonts/number-font.ttf") format("truetype");
}
@font-face {
  font-family: "kadomaru";
  src: url("../fonts/kadomaru.ttf") format("truetype");
}


/*========================================================
    変数
==========================================================*/
/* フォント */
:root {
    /* --font-ja-gothic: "Zen Kaku Gothic New", sans-serif; */
    --font-ja-mincho: ;
    --font-en-gothic: "Lato", sans-serif;
    --font-en-mincho: "Crimson Text", serif;
    --font-ja-gothic02: "Kosugi Maru", sans-serif;

    --font-ja-kadomaru: "kadomaru", sans-serif;
    --font--number: "number", sans-serif;
}

/* カラー */
:root {
    --design-color01: #d75428;
    --design-color02: #ffb900;
    --design-color03: #014f90;
    --design-color04: #f5f8fc;
    --design-color05: #00a6e1;
    --gradient-color01: linear-gradient(90deg,rgba(255, 185, 0, 1) 0%, rgba(215, 84, 40, 1) 100%);
    --gradient-color02: linear-gradient(0deg,rgba(255, 185, 0, 1) 0%, rgba(215, 84, 40, 1) 100%);

    --font-color01: #2a2a2a;
    --font-color02: #606060;
    --font-color03: #b7b7b7;
}


/*========================================================
    表示・非表示
==========================================================*/
@media (min-width: 960px) { /* PC */
    .is_tab {
        display: none;
    }
    .is_sp {
        display: none;
    }
    .is_tab-sp {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 959px) { /* TAB */
    .is_pc {
        display: none;
    }
    .is_sp {
        display: none;
    }
}

@media (max-width: 767px) { /* SP */
    .is_pc {
        display: none;
    }
    .is_tab {
        display: none;
    }
    .is_pc-tab {
        display: none;
    }
}


/*========================================================
    基本設定
==========================================================*/
* {
    margin: 0;
    padding: 0;
    background-color: transparent;
}
body {
    overflow-x: hidden;
}
html {
    font-family: var(--font-en-gothic);

    @media (min-width: 768px) {
        scroll-padding-top: clamp(7.5rem, 8.33vw, 10rem);
    }
    @media (max-width: 767px) {
        scroll-padding-top: 77px;
    }
}
main {
    margin-top: clamp(7.5rem, 8.33vw, 10rem);

    @media (max-width: 767px) {
        margin-top: 77px;
    }
}

a {
    display: block;
    transition: all .3s;
    color: inherit;
    text-decoration: none;

    &:hover {
        cursor: pointer;
    }
}

button {
    padding: 0;
    border: none;
    outline: none;
}

ul {
    padding: 0;
}

li {
    list-style-type: none;
}



/*========================================================
    共通パーツ
==========================================================*/
.long {
    transform: scale(0.7, 1);
    transform-origin: top left;
}

.section-title {
    font-family: var(--font-en-gothic);
    font-weight: 700;
    text-align: center;
    font-size: clamp(1.75rem, 1.25rem + 0.83vw, 2.25rem);
    color: var(--font-color02);
    position: relative;
    letter-spacing: 0.12em;

    &::before {
        position: absolute;
        content: "";
        top: -1em;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 4px;
        background: var(--gradient-color01);
    }

    .en {
        display: block;
        font-size: clamp(0.75rem, 0.5rem + 0.42vw, 1rem);
        color: var(--font-color03);
        margin-top: 1em;

        @media (max-width: 767px) {
            font-size: 12px;
        }
    }
}

.section-title.type02 {
    text-align: left;

    &::before {
        display: none;
    }

    .en {
        display: flex;
        align-items: center;
        color: var(--font-color03);
        padding-left: 3.43em;
        position: relative;

        &::before {
            position: absolute;
            content: "";
            left: 0;
            display: block;
            width: 30px;
            height: 4px;
            background: var(--gradient-color01);
        }
        @media (max-width: 767px) {
            padding-left: 5em;
        }
    }
}

.page-link {
    width: clamp(14.375rem, 11.25rem + 5.21vw, 17.5rem);
    height: 60px;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.875rem, 0.811rem + 0.26vw, 1.125rem);
    color: #fff;
    letter-spacing: 0.12em;
    position: relative;
    transition: all 0.3s;

    @media (max-width: 767px) {
        width: 200px;
        height: 50px;
    }

    span {
        position: relative;

        &::before {
            position: absolute;
            content: "";
            top: 50%;
            right: -1.5em;
            transform: translateY(-50%);
            width: 0.7em;
            height: 10px;
            background: url(../img/asset/arrow02.png) no-repeat center center / contain;
            transition: all 0.3s;
        }

        @media (max-width: 340px) {
            &::before {
                right: -1em;
            }
        }
    }

    &:hover {
        opacity: 0.7;

        span::before {
            right: -2em;
        }
    }
}

.Page-title {
    display: flex;
    align-items: center;
    height: clamp(10.625rem, 7.5rem + 5.21vw, 13.75rem);
    padding-left: 17vw;
    background-color: var(--design-color04);
    font-size: clamp(1.625rem, 1.313rem + 0.52vw, 1.938rem);
    letter-spacing: 0.1em;
    color: var(--font-color02);

    @media (max-width: 767px) {
        font-size: 16px;
        padding-left: 34px;
        height: 90px;
        margin-bottom: 30px;
    }

    .en {
        font-size: 10px;
        color: var(--design-color01);
        margin-left: 3em;
    }
}

.breadcrumb {
    width: min(90%, 1411px);
    margin: 1em auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 143px;

    @media (max-width: 767px) {
        display: none;
    }

    li {
        margin-right: 1em;
        position: relative;

        &:not(:last-of-type):before {
            position: absolute;
            content: "";
            top: 50%;
            right: -0.8em;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: url(../img/asset/asset06.png) no-repeat center center / contain;
        }

        a {
            font-size: clamp(0.625rem, 0.5rem + 0.21vw, 0.75rem);
            color: #c0c0c0;
            padding: 0 1em;
            position: relative;

            &.active {
                color: #5c5c5c;
            }
        }
    }
}


.region-list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 16px;

    @media (max-width: 767px) {
        order: 4;
        width: 90%;
        margin: 0 auto;
        padding: 40px 0 40px;
        border-top: 1px solid #c6c6c6;
        border-bottom: 1px solid #c6c6c6;
        justify-content: center;
    }

    .region-list__item {
        font-size: clamp(0.875rem, 0.563rem + 0.52vw, 1.188rem);
        padding-right: 1em;
        position: relative;
        flex-grow: 1;

        &::before {
            position: absolute;
            content: "";
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            width: 1px;
            height: 0.8em;
            background-color: #919191;
        }

        &:nth-last-child(1) {
            flex-grow: 0;
        }
        &:nth-last-child(2) {
            flex-grow: 0;
        }

        &.is-last {
            padding-right: 0;

            &::before {
                display: none;
            }
        }

        @media (max-width: 1200px) {
            flex-grow: 0;
        }
        @media (max-width: 767px) {
            font-size: 18px;
        }
        @media (max-width: 767px) {
            font-size: 16px;
        }
    }
}

.flatpickr-calendar {
    @media (max-width: 767px) {
        width: min(95%, 300px);
        margin: 0 auto;

        .flatpickr-rContainer {
            width: 100%;
        }

        .flatpickr-weekdays,
        .flatpickr-days {
            width: 100%;

            .dayContainer {
                width: 100%;
            }
        }

    }
}




.sub-Page {
    background-color: #f8f6f3;
}

.is_w1199 {
    display: none;

    @media (max-width: 1199px) {
        display: block;
    }
}
.is_no1200 {
    @media (max-width: 1199px) {
        display: none;
    }
}
.is_w340 {
    display: none;

    @media (max-width: 340px) {
        display: block;
    }
}

.is_no340 {
    @media (max-width: 340px) {
        display: none;
    }
}

/*========================================================
    お知らせ　共通
==========================================================*/
.news-container {

    .news-list__item {
        height: 100px;
        border-bottom: 1px solid var(--font-color03);

        @media (max-width: 767px) {
            height: 90px;
        }

        a {
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 25px;
            position: relative;
            transition: all 0.3s;

            &::before {
                position: absolute;
                content: "";
                top: 50%;
                right: 25px;
                transform: translateY(-50%);
                display: block;
                background: url(../img/asset/arrow04.png) no-repeat center center / contain;
                width: 13.7px;
                height: 11.8px;
            }

            &:hover {
                background-color: rgba(0, 0, 0, 0.03);
            }

            @media (max-width: 767px) {
                flex-direction: column;
                align-items: baseline;
                justify-content: center;
                gap: 3px;

                &::before {
                    right: 10px;
                }
            }
        }

    }
    .category {
        height: 2.25em;
        width: 137px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 12px;
        color: var(--design-color01);
        border: 1px solid var(--design-color01);

        @media (max-width: 767px) {
            font-size: 7px;
            width: 65px;
        }
    }

    .date {
        font-size: 14px;
        margin-left: 2em;

        @media (max-width: 767px) {
            font-size: 9px;
            margin: 0;
        }
    }

    .tit {
        font-size: clamp(1.125rem, 0.938rem + 0.31vw, 1.313rem);
        margin-left: 1.3em;
        font-weight: 500;
        line-height: 1.2em;

        @media (max-width: 767px) {
            font-size: 14px;
            margin: 0;
        }
    }
}

/*========================================================
    ヘッダー
==========================================================*/
.header-wrap {
    width: 100vw;
    height: clamp(7.5rem, 8.33vw, 10rem);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 clamp(2.5rem, -12.083rem + 19.44vw, 11.25rem) 0 clamp(2.5rem, -12.083rem + 19.44vw, 11.25rem);
    background-color: #fff;
    box-shadow: 0px 7px 10px 0px rgba(0, 0, 0, 0.2);
    z-index: 999;

    &::before {
        position: absolute;
        content: "";
        left: 0;
        top: 0;
        width: 100%;
        height:  clamp(7.5rem, 8.33vw, 10rem);
        border-radius: 0 0 50px 50px;
        z-index: -1;
        transition: all 0.3s;
        opacity: 0;
    }

    &.--open:has(.gnav__menu__item.product.--active) {
        &::before {
            background-color: #ffbc40;
        }
        .contact a {
            background: #fff !important;
            color: #ffbc40 !important;
        }
    }
    &.--open:has(.gnav__menu__item.gaitour.--active) {
        &::before {
            background-color: #6b93d0;
        }
        .contact a {
            background: #fff !important;
            color: #6b93d0 !important;
        }
    }
    &.--open:has(.gnav__menu__item.reform.--active) {
        &::before {
            background-color: #41b375;
        }
        .contact a {
            background: #fff !important;
            color: #41b375 !important;
        }
    }
    &.--open:has(.gnav__menu__item.company.--active) {
        &::before {
            background-color: #ff9a78;
        }
        .contact a {
            background: #fff !important;
            color: #ff9a78!important;
        }
    }
    &.--open:has(.gnav__menu__item.news.--active) {
        &::before {
            background-color: #af9ccd;
        }
        .contact a {
            background: #fff !important;
            color: #af9ccd !important;
        }
    }
    &.--open:has(.gnav__menu__item.faq.--active) {
        &::before {
            background-color: #bdcaf0;
        }
        .contact a {
            background: #fff !important;
            color: #bdcaf0 !important;
        }
    }

    @media (max-width: 767px) {
        padding: 0 13px;
        height: 77px;
    }

    .icon {
        width: 45px;

        &.close {
            opacity: 0;
            display: none;
        }
    }

    .logo_sp {
        width: 46vw;
        margin-bottom: 50px;
        position: relative;
        z-index: 99;

        &::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(../img/logo_white.png) no-repeat center center / contain;
            opacity: 0;
            transition: all 0.3s;
            z-index: -1;
        }
        .is_close {
            transition: all 0.3s;
        }
    }

    .logo {
        width: min(19%, 275px);
        position: relative;

        &::before {
            position: absolute;
            content: "";
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url(../img/logo_white.png) no-repeat center center / contain;
            opacity: 0;
            transition: all 0.3s;
            z-index: -1;
        }

        @media (max-width: 767px) {
            width: min(46vw, 214px);
        }

        .is_close {
            transition: all 0.3s;
        }
    }
}

/* ナビゲーション */
.nav-area {
    width: 75%;
    height: 100%;
    position: relative;

    @media (min-width: 1200px) {
        display: flex;
        align-items: center;
        justify-content: right;
    }

    @media (max-width: 1199px) {
        opacity: 0;
        pointer-events: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        padding: 50px;
        overflow-y: auto;
        background-color: #fff;
        transition: all 0.3s;
    }
    @media (max-width: 767px) {
        padding: 44px 30px;
    }

    .gnav {
        flex-grow: 1;

        .gnav__wrap {

            .gnav__menu {
                display: flex;
                align-items: center;
                justify-content: space-between;

                @media (max-width: 1199px) {
                    display: block;
                }
            }

            .gnav__menu__item {

                @media (max-width: 1199px) {
                    position: relative;
                    border-bottom: 2px solid #dfdfdf;

                    &:first-of-type {
                        border-top: 2px solid #dfdfdf;
                    }
                }

                >.sp_accordion {
                    width: 100%;
                    font-size: clamp(0.938rem, 0.417rem + 0.69vw, 1.25rem);
                    font-weight: 500;
                    letter-spacing: 0.04em;
                    border-radius: 100vh;
                    padding: 5px 10px;
                    position: relative;
                    transition: all 0.3s;
                    text-align: left;

                    &:hover {
                        cursor: pointer;
                    }

                    @media (max-width: 1199px) {
                        color: #5a5a5a;
                        padding: 1.5em 0;

                        &::before {
                            position: absolute;
                            content: "";
                            top: 50%;
                            right: 6px;
                            transform: translateY(-50%);
                            width: 2px;
                            height: 14px;
                            background-color: #5a5a5a;
                            transition: all 0.3s;
                            transform-origin: center center;
                        }
                        &::after {
                            position: absolute;
                            content: "";
                            top: 50%;
                            right: 0;
                            transform: translateY(-50%);
                            height: 2px;
                            width: 14px;
                            background-color: #5a5a5a;
                        }

                        &.active::before {
                            transform: translateY(-50%) rotate(-90deg);
                        }
                    }
                    @media (max-width: 767px) {
                        padding: 1em 0;
                    }
                }
            }
            .contact {
                border: none !important;

                @media (max-width: 1199px) {
                    margin-top: 30px;
                }

                a {
                    color: #fff;
                    padding: 0.8em 2em;
                    border-radius: 100vh;
                    background: var(--gradient-color01);

                    @media (max-width: 1199px) {
                        width: fit-content;
                        margin: 0 auto;
                    }
                }
            }
        }
    }
}

/*  詳細ナビ
==========================================================*/

.detail {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s;
    opacity: 0;
    pointer-events: none;

    @media (max-width: 1199px) {
        position: relative;
        display: none;
        opacity: 1;
        padding-bottom: 50px;
        padding-left: 20px;
        pointer-events: auto;
    }
    @media (max-width: 767px) {
        padding-left: 10px;
    }

    .tit {
        position: relative;
        font-family: var(--font-ja-kadomaru);
        font-size: clamp(1.563rem, 1.042rem + 0.69vw, 1.875rem);
        font-weight: 500;
        letter-spacing: 0.15em;
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
        padding: 10px 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        opacity: 0;
        color: #fff;

        @media (max-width: 1199px) {
            padding: 0;
            opacity: 1;
            border: none;
        }
        @media (max-width: 767px) {
            font-size: 18px;
        }

        span {
            display: block;
            border-radius: 100vh;
            padding: 5px 0 5px 10px;

            &:hover {

            }

        }

        &:hover {
            opacity: 1;
            span {
                    background: linear-gradient(to right,
                        rgba(255, 255, 255, 0.2) 0%,
                        rgba(255, 255, 255, 0.2) 30%,
                        rgba(255, 255, 255, 0.05) 100%
                    );

            }
        }
    }

    .detail-list {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(4, 1fr);
        grid-auto-flow: column;
        gap: 10px;
        margin-top: 40px;

        @media (max-width: 1199px) {
            display: block;
        }
        @media (max-width: 767px) {
            margin-top: 20px;
        }

        >.detail-list__item {
            transform: translateY(10px);
            transition: opacity 0.3s ease, transform 0.3s ease;
            opacity: 0;

            @media (max-width: 1199px) {
                opacity: 1;

                &+& {
                    margin-top: 6px;
                }
            }

            >a {
                position: relative;
                font-size: clamp(1rem, 0.792rem + 0.28vw, 1.125rem);
                border-radius: 100vh;
                padding: 5px 0 5px 2em;
                transition: all 0.3s;
                color: #fff;
    
                &::before {
                    position: absolute;
                    content: "";
                    left: 0;
                    top: 30%;
                    background: url(../img/asset/arrow09.png) no-repeat center center / contain;
                    width: 1em;
                    height: 0.7em;
                    transition: all  0.2s;
                }

                &:hover {
                    background: linear-gradient(to right,
                        rgba(255, 255, 255, 0.2) 0%,
                        rgba(255, 255, 255, 0.2) 30%,
                        rgba(255, 255, 255, 0.05) 100%
                    );
                    &::before {
                        left: 5px;
                        transform: scale(1.1);
                    }
                }

                @media (max-width: 767px) {
                    font-size: 14px;
                }
            }
        }
    }
}

.detail.gaitour {
    .detail-list {
        display: flex;
        justify-content: space-between;

        @media (max-width: 1199px) {
            display: block;
        }

        >.detail-list__item {
            flex-grow: 1;
            padding-left: 0;

            >a {
                padding-left: 1em;

                &::before {
                    display: none;
                }
            }
        }

        .detail-subList {
            margin-left: 2em;

            &.type02 {
                display: grid;
                grid-template-rows: repeat(4, 1fr);
                grid-auto-flow: column;

                @media (max-width: 1199px) {
                    display: block;
                }
            }

            .detail__subList__item a {
                font-size: 14px;
                padding: 5px 0 5px 2em;
                border-radius: 100vh;
                transition: all 0.3s;
                color: #fff;
                position: relative;

                &::before {
                    position: absolute;
                    content: "";
                    left: 0;
                    top: 30%;
                    background: url(../img/asset/arrow09.png) no-repeat center center / contain;
                    width: 1em;
                    height: 0.7em;
                    transition: all  0.3s;
                }

                &:hover {
                    &::before {
                        left: 5px;
                        transform: scale(1.1);
                    }
                }
                @media (max-width: 1199px) {
                    font-size: 12px;
                }
            }
        }
    }
}

/* ヘッダーが開いたとき */
.header-wrap.--open  {
    &::before {
        height: clamp(26.25rem, 17.917rem + 11.11vw, 31.25rem);
        opacity: 1;
    }

    .logo {
        &::before {
            opacity: 1;
        }
        .is_close {
            opacity: 0;
        }
    }

    .gnav__menu__item {
        &.--active {
            @media (min-width: 1200px) {
                .sp_accordion {
                    background-color: rgba(255, 255, 255, 0.2);
                }
            }
            .tit {
                opacity: 1;
                transform: translateY(0);
            }
            .detail {
                opacity: 1;
                pointer-events: auto;

                .detail-list__item {
                    opacity: 1;
                    transform: translateY(0);
                }
            }
        }

        .sp_accordion {
            color: #fff;
        }

        .detail-list a {

            &:hover {
                background: linear-gradient(to right,
                    rgba(255, 255, 255, 0.2) 0%,   /* 左端：白20%透明 */
                    rgba(255, 255, 255, 0.2) 40%,
                    rgba(255, 255, 255, 0.05) 100%    /* 右端：完全透明 */
                );
            }
        }
    }
}

/* 順番に遅延させる */
.gnav__menu__item.--active .detail-list__item:nth-child(1) {
  transition-delay: 0.1s;
}
.gnav__menu__item.--active .detail-list__item:nth-child(2) {
  transition-delay: 0.2s;
}
.gnav__menu__item.--active .detail-list__item:nth-child(3) {
  transition-delay: 0.3s;
}
.gnav__menu__item.--active .detail-list__item:nth-child(4) {
  transition-delay: 0.4s;
}
.gnav__menu__item.--active .detail-list__item:nth-child(5) {
  transition-delay: 0.5s;
}


/* 画面幅1199px以下 */
body:has(.nav-area.--open) {
    overflow-y: hidden !important;
}
.header-wrap:has(.nav-area.--open) {
    .icon.open {
        opacity: 0;
        display: none;
    }
    .icon.close {
        display: block;
        z-index: 999;
        opacity: 1;
    }
}



.nav-area {
    &.--open {
        opacity: 1;
        pointer-events: auto;
    }

    &.--open:has(.gnav__menu__item.product .sp_accordion.active) {
        background-color: #ffbc40;

        .contact a {
            background: #fff;
            color: #ffbc40;
        }
    }
    &.--open:has(.gnav__menu__item.gaitour .sp_accordion.active) {
        background-color: #6b93d0;

        .contact a {
            background: #fff;
            color: #6b93d0;
        }
    }
    &.--open:has(.gnav__menu__item.reform .sp_accordion.active) {
        background-color: #41b375;

        .contact a {
            background: #fff;
            color: #41b375;
        }
    }
    &.--open:has(.gnav__menu__item.company .sp_accordion.active) {
        background-color: #ff9a78;

        .contact a {
            background: #fff;
            color: #ff9a78;
        }
    }
    &.--open:has(.gnav__menu__item.news .sp_accordion.active) {
        background-color: #af9ccd;

        .contact a {
            background: #fff;
            color: #af9ccd;
        }
    }
    &.--open:has(.gnav__menu__item.faq .sp_accordion.active) {
        background-color: #bdcaf0;

        .contact a {
            background: #fff;
            color: #bdcaf0;
        }
    }

    &.--open:has(.sp_accordion.active) {
        background-color: var(--design-color02);

        .logo_sp {

            &::before {
                opacity: 1;
            }
            .is_close {
                opacity: 0;
            }
        }

        .gnav__menu__item {
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);

            &:first-of-type {
                border-top: 1px solid rgba(255, 255, 255, 0.5);
            }
        }
        .sp_accordion {
            color: #fff;

            &::after {
                background-color: #fff;
            }
            &::before {
                background-color: #fff;
            }
        }
        .contact a {
            background: #fff;
            color: var(--design-color02);
        }
    }
}


/*========================================================
    フッター
==========================================================*/
.footer-wrap {
    padding: 98px 0 117px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: clamp(1.875rem, -1.25rem + 6.51vw, 6.563rem);
    background-color: var(--font-color01);
    position: relative;

    @media (max-width: 767px) {
        padding: 60px 0 102px;
    }

    .footer__L {
        @media (max-width: 959px) {
            padding-left: 10px;
        }
        .logo {
            width: clamp(11.875rem, 5.813rem + 10.1vw, 17.938rem);

            @media (max-width: 767px) {
                width: 222px;
            }
        }

        .footer__info {
            margin: 70px 0 75px;
            width: clamp(15rem, 10.938rem + 6.77vw, 19.063rem);

            @media (max-width: 767px) {
                width: 84vw;
                margin: 38px 0 57px;
            }

            .title {
                display: block;
                font-family: var(--font-en-gothic);
                font-size: 18px;
                letter-spacing: 0.04em;
                color: var(--font-color03);
                padding-bottom: 5px;
                border-bottom: 1px solid var(--font-color03);
                margin-bottom: 1.3em;

                @media (max-width: 767px) {
                    font-size: 18px;
                }
            }

            .add {
                font-size: clamp(0.75rem, 0.563rem + 0.31vw, 0.938rem);
                letter-spacing: 0.04em;
                line-height: 1.2em;
                color: #fff;
                margin-bottom: 1em;

                @media (max-width: 767px) {
                    font-size: 17px;
                }
            }
            .info__item {
                display: flex;
                align-items: center;
                font-size: clamp(0.75rem, 0.563rem + 0.31vw, 0.938rem);
                letter-spacing: 0.04em;
                color: #fff;

                @media (max-width: 767px) {
                    font-size: 18px;
                }

                .label {
                    display: block;
                    font-size: 10px;
                    width: 1.5em;
                    margin-right: 2em;

                    @media (max-width: 767px) {
                        font-size: 11px;
                    }
                }
            }
        }

        .footer__contact {
            width: clamp(15rem, 10.417rem + 9.55vw, 21.875rem);

            @media (max-width: 767px) {
                width: 89vw;
                margin: 0 auto;
            }

            .tel {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 33px;
                margin-bottom: 18.5px;
                height: 72px;
                border-radius: 10px;
                border: 1px solid var(--font-color03);
                font-size: clamp(0.938rem, 0.563rem + 0.78vw, 1.5rem);
                letter-spacing: .04em;
                color: #fff;
                position: relative;

                &::before {
                    position: absolute;
                    content: "";
                    left: 0.5em;
                    top: 50%;
                    transform: translateY(-50%);
                    width: 10px;
                    height: 10px;
                    background: url(../img/asset/circle01.png) no-repeat center center / contain;
                    transition: all 0.3s;
                    transform-origin: center;
                }

                &:hover {
                    background-color: rgba(0, 0, 0, 0.5);
                }

                @media (max-width: 1199px) {
                    padding: 0 15px 0 25px;
                }
                @media (max-width: 767px) {
                    font-size: 24px;
                }
                @media (max-width: 340px) {
                    font-size: 17px;
                }

                .label {
                    display: flex;
                    flex-direction: column;
                    font-size: clamp(0.75rem, 0.625rem + 0.21vw, 0.875rem);
                    letter-spacing: .14em;

                    @media (max-width: 767px) {
                        font-size: 14px;
                        color: #b6b6b6;
                    }
                    @media (max-width: 340px) {
                        font-size: 12px;
                    }

                    .sub {
                        text-align: center;
                        font-size: 9px;
                    }
                }
            }

            .form {
                height: 72px;
                border-radius: 10px;
                text-align: center;
                color: #fff;
                font-size: 19px;
                background: var(--gradient-color01);
                position: relative;
                transition: all 0.3s;

                &::before {
                    position: absolute;
                    content: "";
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    border-radius: 10px;
                    background-color: rgba(0, 0, 0, 0.15);
                    transition: all 0.3s;
                    opacity: 0;
                }

                &:hover {
                    &::before {
                        opacity: 1;
                    }
                }

                @media (max-width: 767px) {
                    font-size: 17px;
                }

                span {
                    position: absolute;
                    display: block;
                    top: 50%;
                    left: 0;
                    right: 0;
                    text-align: center;
                    transform: translateY(-50%);
                }
            }
        }
    }

    .footer__R {
        .footer__nav {
            display: flex;
            align-items: flex-start;
            gap: 5rem;

            @media (max-width: 1440px) {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                grid-template-rows: repeat(2, 1fr);
                gap: 40px;
            }

            .footer__grid {
                display: contents;

                @media (max-width: 1440px) {
                    display: flex;
                    gap: 40px;

                    &.grid01 {
                        grid-column: span 2 / span 2;
                    }

                    &.grid02 {
                        grid-column: span 2 / span 2;
                        grid-column-start: 1;
                        grid-row-start: 2;
                        margin-top: 90px;
                    }

                    .grid03 {
                        grid-row: span 2 / span 2;
                        grid-column-start: 3;
                        grid-row-start: 1;
                    }
                }
                @media (max-width: 959px) {
                    gap: 25px;
                }
            }

            .footer__nav__item {
                font-size: clamp(0.875rem, 0.563rem + 0.52vw, 1.188rem);
                letter-spacing: .04em;
                color: #fff;
                position: relative;
            }

            .footer__sublist {
                position: absolute;
                top: 3em;
                left: 0.7em;
                font-size: clamp(0.75rem, 0.563rem + 0.31vw, 0.938rem);
                color: #696969;
                letter-spacing: .04em;
                margin-top: 0.5em;

                .sublist__item + .sublist__item {
                    margin-top: 0.8em;
                }

                a {
                    white-space: nowrap;

                    &:hover {
                        color: var(--font-color03);
                    }
                }
            }

            .footer__sublist__detailList {
                margin-left: 1em;

                .detailList__item + .detailList__item {
                    margin-top: 0.3em;
                }

                a {
                    font-size: clamp(0.688rem, 0.604rem + 0.17vw, 0.813rem);
                }
            }
        }
    }

    .footer__sns {
        position: absolute;
        right: 14vw;
        bottom: 175px;
        display: flex;
        align-items: center;
        gap: 15px;

        @media (max-width: 767px) {
            right: auto;
            bottom: 42px;
            left: 50%;
            transform: translateX(-50%);
        }

        .ig {
            width: 24px;
        }
        .fb {
            width: 28px;
        }
    }
}



/*========================================================
    コピーライト
==========================================================*/
.copyright {
    display: block;
    text-align: center;
    background-color: #ababab;
    padding: 5px 0;
    font-size: 11px;

    @media (max-width: 767px) {
        font-size: 9px;
    }
}


/*========================================================
    メインビジュアル
==========================================================*/
.mv-container {
    position: relative;

    @media (max-width: 767px) {
        display: flex;
        flex-direction: column-reverse;
    }

    .copy {
        position: absolute;
        /* top: 462.4px; */
        bottom: 10.6vw;
        left: 7vw;
        font-size: clamp(1.313rem, 0.771rem + 1.13vw, 2.125rem);
        letter-spacing: 0.12em;
        z-index: 2;

        @media (max-width: 767px) {
            text-align: center;
            position: static;
            font-size: 16px;
            padding: 23.5px 0 40px;

            .shift {
                margin-left: 0.5em;
            }
        }
    }

    .mv-wrap {
        width: 64.5%;
        margin: 0 0 0 auto;
        overflow: hidden;
        position: relative;

        @media (max-width: 767px) {
            width: 100%;
            margin: 0;
            padding-bottom: 17px;
        }

        .swiper-slide {
            background-color: #fff;
            transition: all 0.3s ease;
            position: relative;

            &::before {
                position: absolute;
                content: "";
                top: 0;
                left: 0;
                background-color: #fff;
                width: 100%;
                height: 100%;
                opacity: 0;
                transition: 0.2s;
            }

            &:hover {
                &::before {
                    opacity: 0.5;
                    transition: 0.3s ease-in-out;
                }
            }

            @media (max-width: 767px) {
                padding-left: 31vw;
                height: 160px;

                picture {
                    height: 100%;
                }

                img {
                    height: 100%;
                    object-fit: cover;
                }
            }
        }

        .service-title {
            font-size: clamp(3.125rem, 0.813rem + 3.85vw, 5.438rem);
            letter-spacing: 0.1em;
            margin-top: -0.5em;
            margin-left: 0.4em;
            line-height: 1;

            @media (max-width: 767px) {
                font-size: 23px;
                position: absolute;
                top: 30px;
                left: 1em;
            }

            .ja {
                display: flex;
                align-items: center;
                gap: 1em;
                margin-left: 1em;
                font-size: clamp(0.875rem, 0.438rem + 0.73vw, 1.313rem);
                letter-spacing: 0.12em;
                margin-top: 1em;
                font-weight: 500;
                letter-spacing: 0.12em;

                @media (max-width: 767px) {
                    font-size: 9px;
                    margin-left: 0;
                    line-height: 1.5em;
                    align-items: flex-start;
                }

                .num {
                    font-family: var(--font--number);
                    font-size: 18px;
                    letter-spacing: 0.03em;
                    color: #a5a5a5;

                    @media (max-width: 767px) {
                        font-size: 6px;
                        margin-top: 0.3em;
                    }
                }
            }
        }

        .mv-swiper__pagination-wrapper {
            position: absolute;
            bottom: 0;
            right: clamp(3vw, 7vw, 205px);
            z-index: 9;

            .swiper-pagination-bullet {
                margin: 0 1.2em;
                padding: 3px;
                font-family: var(--font--number);
                font-style: italic;
                font-size: clamp(0.563rem, 0.375rem + 0.31vw, 0.75rem);
                color: #b2b2b2;
                font-weight: 500;
                background: none;
                opacity: 1;
                transition: all 0.15s;

                @media (max-width: 767px) {
                    padding: 0;
                    font-size: 6px;
                    margin: 0 0.5em;
                }
            }
            .swiper-pagination-bullet-active {
                color: #000;
            }
        }
    }
}



/*========================================================
    トップニュース
==========================================================*/
.topNews-container {
    padding: 156px 0 172px;
    width: min(80%, 1155px);
    margin: 0 auto;

    @media (max-width: 767px) {
        padding: 0;
        width: 100vw;
    }

    .topNews-wrap {
        position: relative;
    }

    .topNews-swiper {
        height: clamp(6.25rem, 4.75rem + 2.5vw, 7.75rem);
        background-color: #f5f5f5;
        border-radius: 10px;
        overflow: hidden;

        @media (max-width: 767px) {
            border-radius: 0;
            height: 54px;
        }
    }

    .swiper-slide {
        display: flex;
        align-items: center;
        gap: 35px;
        padding-left: 45px;

        @media (max-width: 767px) {
            padding-left: 20px;
            gap: 20px;
        }
        @media (max-width: 767px) {
            padding-left: 10px;
            gap: 10px;
            width: calc(100% - 30px);
        }

        .category {
            font-size: clamp(0.625rem, 0.5rem + 0.21vw, 0.75rem);
            font-weight: 500;
            color: var(--design-color01);
            letter-spacing: 0.08em;
            padding: 5px 2em;
            border: 1px solid var(--design-color01);

            @media (max-width: 767px) {
                font-size: 7px;
                padding: 3px;
                white-space: nowrap;
            }
        }

        .date {
            font-size: clamp(0.625rem, 0.5rem + 0.21vw, 0.75rem);

            @media (max-width: 767px) {
                font-size: 8px;
            }
        }

        .tit {
            font-size: clamp(1.063rem, 0.813rem + 0.42vw, 1.313rem);
            font-weight: 500;
            letter-spacing: 0.06em;

            @media (max-width: 767px) {
                font-size: 10px;
            }
        }
    }

    .news-btns {
        position: absolute;
        content: "";
        top: 50%;
        right: 50px;
        transform: translateY(-50%);
        display: flex;
        flex-flow: column;
        width: 40px;
        height: 80%;
        z-index: 9;

        @media (max-width: 767px) {
            width: 25px;
            right: 5px;
        }

        .news-btn_prev,
        .news-btn_next {
            width: 100%;
            height: 50%;
            top: 0;
            left: 0;
            margin: 0;

            &:after {
                position: absolute;
                content: "";
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                background: url(../img/asset/arrow05.png) no-repeat center center / contain;
                width: 100%;
                aspect-ratio: 1 / 1;
                transition: all .2s;
            }

            &:hover {
                opacity: 0.7;
            }

            &.news-btn_next {
                top: auto;
                bottom: 0;

                &::after {
                    transform: translateY(-50%) scale(1, -1);
                }
            }
        }
    }
}


/*========================================================
    About
==========================================================*/
.about-container {
    padding-bottom: 207px;

    @media (max-width: 767px) {
        width: 88vw;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        padding: 17px  0 63px;
    }

    .section-title {
        width: min(80%, 1463px);
        margin: 0 auto;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);

        @media (max-width: 1440px) {
            position: static;
            transform: none;
        }
        @media (max-width: 767px) {
            width: 100%;
            order: 2;
        }

        .en {
            margin-bottom: 1em;

            @media (max-width: 767px) {
                margin-top: 0;
            }
        }
    }
    .about__inner {
        width: min(80%, 1463px);
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;

        @media (max-width: 767px) {
            display: contents;
        }

        .text-box {
            width: 44%;
            margin-top: 65px;

            @media (max-width: 1440px) {
                margin-top: 20px;
            }
            @media (max-width: 767px) {
                order: 3;
                width: 100%;
            }

            .txt {
                font-size: clamp(0.875rem, 0.563rem + 0.52vw, 1.188rem);
                line-height: 2;

                @media (max-width: 767px) {
                    font-size: 14px;
                }
            }

            .page-link {
                margin-top: 70px;

                @media (max-width: 767px) {
                    margin: 47px auto 0;
                }
            }
        }

        .img-wrap {
            display: grid;
            gap: 27px 35px;

            @media (max-width: 767px) {
                width: 100%;
                order: 1;
                gap: 12px 18px;
            }

            .img01 {
                grid-row: span 2 / span 2;
                display: flex;
                flex-direction: column;
                justify-content: center;
                width: clamp(10rem, 2.813rem + 11.98vw, 17.188rem);

                @media (max-width: 767px) {
                    width: 100%;
                }
            }
            .img02 {
                margin-left: 10px;
                width: clamp(10.625rem, -0.313rem + 18.23vw, 21.563rem);

                @media (max-width: 767px) {
                    width: 100%;
                }
            }
            .img03 {
                grid-column-start: 2;
                width: clamp(10.938rem, 6.563rem + 7.29vw, 15.313rem);

                @media (max-width: 767px) {
                    width: 75%;
                }
            }
        }
    }
}


/*========================================================
    service
==========================================================*/
.service-container {
    padding: 160px 0 225px;
    background-color: #e6e0d5;

    @media (max-width: 767px) {
        padding: 106px 0;
    }

    .section-title .en {
        color: #fff;
    }

    .service__inner {
        width: min(90%, 1230px);
        margin: 130px auto 0;

        @media (max-width: 1500px) {
            margin-top: 70px;
        }
        @media (max-width: 767px) {
            width: 85%;
            margin-top: 57px;
        }
        @media (max-width: 340px) {
            width: 87%;
        }
    }

    .service-wrap {
        padding: 50px 50px 53px;
        background-color: #fff;

        & + & {
            margin-top: 40px;
        }

        @media (max-width: 767px) {
            padding: 30px 0;
            display: flex;
            flex-direction: column;

            .page-link {
                order: 5;
                margin: 23px auto 0;
            }
        }

        .inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;

            @media (max-width: 767px) {
                display: contents;
            }

            .text-box {
                @media (max-width: 767px) {
                    display: contents;
                }
                .service-title {
                    font-family: var(--font-ja-kadomaru);
                    font-size: clamp(1.563rem, 0.813rem + 1.25vw, 2.313rem);
                    font-weight: 500;
                    letter-spacing: 0.12em;
                    color: var(--font-color02);
                    padding-left: 1em;
                    position: relative;

                    &::before {
                        position: absolute;
                        content:  "";
                        top: 50%;
                        left: 0.5em;
                        transform: translate(-0.25em, -50%);
                        background: url(../img/asset/circle01.png) no-repeat center center / contain;
                        width: 0.46em;
                        height: 0.46em;
                    }

                    @media (max-width: 767px) {
                        margin-left: 1em;
                        margin-bottom: 30px;
                    }
                    @media (max-width: 767px) {
                        font-size: 20px;
                    }
                }

                .txt {
                    margin: 2.2em 0 1.8em;
                    font-size: clamp(0.813rem, 0.625rem + 0.31vw, 1rem);
                    letter-spacing: 0.12em;
                    line-height: 1.8em;

                    @media (max-width: 767px) {
                        width: 82%;
                        margin: 0 auto;
                        font-size: 15px;
                        order: 3;
                        padding: 33px 0 35px;
                    }
                }
            }

            .img {
                width: clamp(24.375rem, 12.75rem + 19.38vw, 36rem);

                @media (max-width: 767px) {
                    width: 100%;
                    order: 2;
                }
            }
        }

        .products {
            margin-top: 50px;
            border-top: 1px solid #c7c7c7;

            @media (min-width: 768px) {
                &.type02 {
                    width: fit-content;
                }
            }


            @media (max-width: 767px) {
                width: 82%;
                margin: 0 auto;
                order: 4;
                border-bottom: 1px solid #c7c7c7;
                padding: 10px 0 10px 5px;
            }
        }
        .products__list {
            display: flex;
            align-items: center;

            @media (max-width: 767px) {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        .products__item {
            flex-grow: 1;
            text-align: center;
            position: relative;

            @media (min-width: 768px) {
                &:nth-of-type(n+2) {
                    &::before {
                        position: absolute;
                        content: "";
                        top: 50%;
                        left: 0;
                        transform: translateY(-50%);
                        width: 1px;
                        height: 10px;
                        background-color: #c7c7c7;
                    }
                }
            }
            @media (max-width: 767px) {
                width: 100%;
                text-align: left;
            }


            a {
                padding: 1em 0;
                font-size: clamp(0.75rem, 0.5rem + 0.42vw, 1rem);

                @media (min-width: 768px) {
                    &.type02 {
                        padding: 1em 2.5em 1em 2em;
                    }
                }


                @media (max-width: 767px) {
                    font-size: 14px;
                    padding: 0.5em 0;
                }

                span {
                    color: var(--font-color02);
                    position: relative;
                    transition: all 0.3s;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 50%;
                        right: -1em;
                        transform: translateY(-50%);
                        background: url(../img/asset/arrow03.png) no-repeat center center / contain;
                        width: 7.6px;
                        height: 5.6px;
                        transition: all 0.3s;
                    }
                }

                &:hover {
                    span {
                        color: var(--design-color01);
                    }
                }
            }
        }

        &.recommend {
            background-color: #f4f8fb;

            .service-title {
                display: flex;
                align-items: center;
                padding-left: 0 !important;

                &::before {
                    display: none;
                }

                @media (max-width: 767px) {
                    display: block;

                    &::before {
                        top: 30% !important;
                    }
                }

                .logo_gaitour {
                    display: block;
                    width: clamp(14.375rem, 12.5rem + 3.13vw, 16.25rem);

                    @media (max-width: 767px) {
                        width: 180px;
                    }
                }

                .sub {
                    font-size: clamp(0.625rem, 0.375rem + 0.42vw, 0.875rem);
                    padding: 0.5em 1em;
                    border-radius: 100vh;
                    border: 1px solid var(--font-color01);
                    margin-left: 1em;

                    @media (max-width: 767px) {
                        font-size: 9px;
                        margin-left: 0;
                    }
                }
            }

            .product-name {
                color: #1e1e1e;
                margin-top: 1em;
                font-size: clamp(1.313rem, 0.688rem + 1.04vw, 1.938rem);
                letter-spacing: 0.12em;
                color: var(--design-color03);

                @media (max-width: 767px) {
                    order: 3;
                    font-size: 19px;
                    width: fit-content;
                    margin: 1em auto 0;
                }
                @media (max-width: 767px) {
                    font-size: 17px;
                }
            }
        }
    }
}


/*========================================================
    対応可能地域
==========================================================*/
.region-container {
    background-color: #f4f8fb;

    @media (max-width: 767px) {
        padding: 80px 0 46px;
    }
    .region__inner {
        display: flex;
        align-items: center;
        justify-content: center;

        @media (max-width: 767px) {
            flex-direction: column;
        }

        .map-img {
            width: 46%;

            @media (max-width: 767px) {
                width: 100%;
                order: 2;
            }
        }

        .text-box {
            width: 34%;
            margin-left: 52px;

            @media (max-width: 767px) {
                display: contents;
            }

            .region-title {
                font-size: clamp(1.438rem, 0.563rem + 1.46vw, 2.313rem);
                letter-spacing: 0.12em;
                color: #5f5f5f;

                @media (max-width: 767px) {
                    order: 1;
                    font-size: 29px;
                    margin-bottom: 30px;
                    width: 100%;
                    text-align: center;
                }
            }

            .sub {
                display: block;
                margin-top: 3em;
                padding-left: 2em;
                padding-bottom: 1em;
                border-bottom: 1px solid var(--font-color03);
                font-size: clamp(0.813rem, 0.563rem + 0.42vw, 1.063rem);
                letter-spacing: 0.16em;
                color: var(--font-color01);
                position: relative;

                &::before {
                    position: absolute;
                    content: "";
                    top: 0.5em;
                    left: 1em;
                    transform: translate(-0.5em, -0.25em);
                    width: 12.6px;
                    height: 14.6px;
                    background: url(../img/asset/triangle01.png) no-repeat center center / contain;
                }

                @media (max-width: 767px) {
                    order: 3;
                    margin-top: 43px;
                    border: none;
                    font-size: 14px;

                    &::before {
                        top: 0.7em;
                        width: 9px;
                        height: 10px;
                    }
                }
            }

            .region-list {
                margin-top: 20px;
                display: flex;
                flex-wrap: wrap;
                justify-content: left;
                gap: 16px;

                @media (max-width: 767px) {
                    order: 4;
                    width: 90%;
                    margin: 0 auto;
                    padding: 40px 0 40px;
                    border-top: 1px solid #c6c6c6;
                    border-bottom: 1px solid #c6c6c6;
                    justify-content: center;
                }

                .region-list__item {
                    font-size: clamp(0.875rem, 0.563rem + 0.52vw, 1.188rem);
                    padding-right: 1em;
                    position: relative;
                    flex-grow: 1;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 50%;
                        right: 0;
                        transform: translateY(-50%);
                        width: 1px;
                        height: 0.8em;
                        background-color: #919191;
                    }

                    &:nth-last-child(1) {
                        flex-grow: 0;
                    }
                    &:nth-last-child(2) {
                        flex-grow: 0;
                    }

                    &.is-last::before {
                        display: none;
                    }

                    @media (max-width: 1200px) {
                        flex-grow: 0;
                    }
                    @media (max-width: 767px) {
                        font-size: 18px;
                    }
                    @media (max-width: 767px) {
                        font-size: 16px;
                    }
                }
            }
        }
    }
}


/*========================================================
    User Voice
==========================================================*/
.voice-container {
    padding: 180px 0 217px;
    background-color: #e6e0d5;

    @media (max-width: 767px) {
        padding: 70px 0 116px;
    }

    .voice__inner {
        display: flex;
        align-items: flex-end;
        justify-content: center;
        gap: 90px;

        @media (max-width: 767px) {
            width: 82vw;
            margin: 0 auto;
            flex-direction: column;
        }

        .section-title {
            font-size: clamp(0.875rem, 0.438rem + 0.73vw, 1.313rem);
            color: var(--font-color02);
            letter-spacing: 0.12em;
            margin-bottom: 50px;

            &::before {
                display: none;
            }

            .en {
                font-size: clamp(1.875rem, 1.438rem + 0.73vw, 2.313rem);
                color: var(--font-color03);
                margin: 0;
            }
        }
    }

    .text-box {
        width: 33%;
        position: relative;

        @media (max-width: 1200px) {
            width: 38%;
        }
        @media (max-width: 767px) {
            width: 100%;
        }

        .Preparation {
            text-align: center;
            font-size: 25px;
            font-weight: 500;
            letter-spacing: 0.125em;
            line-height: 1.3em;

            @media (max-width: 767px) {
                font-size: 19px;
            }
        }

        .voice-list {
            height: clamp(19.375rem, 15rem + 7.29vw, 23.75rem);
            border-radius: 39px;
            background-color: #fff;
            overflow: hidden;

            @media (max-width: 767px) {
                height: auto;
            }

            .voice-swiper {
                height: 100%;
            }

            .swiper-slide {
                background-color: #fff;
                display: flex;
                flex-direction: column;
                justify-content: space-between;
                position: relative;
                padding: 87px 46px 45px;

                &::before {
                    position: absolute;
                    content: "";
                    top: 55%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 87%;
                    height: 1px;
                    background-color: var(--font-color03);
                }

                @media (max-width: 1200px) {
                    padding: 45px 46px 45px;
                }
                @media (max-width: 767px) {
                    justify-content: flex-start;
                    padding: 30px;

                    &::before {
                        display: none;
                    }
                }

                .txt {
                    width: 80%;
                    margin: 0 auto;
                    letter-spacing: 0.1em;
                    line-height: 1.8em;
                    font-size: clamp(0.813rem, 0.625rem + 0.31vw, 1rem);

                    @media (max-width: 1440px) {
                        width: 100%;
                    }
                    @media (max-width: 767px) {
                        font-size: 16px;
                    }
                }

                .user {
                    margin: 0 auto 0 calc(100% - 75%);
                    padding-top: 27px;
                    display: flex;
                    align-items: center;

                    @media (max-width: 1200px) {
                        margin:0 auto 0 calc(100% - 90%);
                    }
                    @media (max-width: 767px) {
                        display: none;
                    }

                    .user__icon {
                        width: clamp(3.75rem, 2.25rem + 2.5vw, 5.25rem);
                        aspect-ratio: 1 / 1;
                        border-radius: 50%;
                        overflow: hidden;

                        img {
                            object-fit: cover;
                            object-position: center center;
                        }
                    }
                    .user__name {
                        font-size: clamp(0.938rem, 0.625rem + 0.52vw, 1.25rem);
                        margin-left: 1em;

                        @media (max-width: 767px) {
                            font-size: 16px;
                        }
                    }
                }
            }
        }
        .voice-swiper__pagination {
            position: absolute;
            left: 50%;
            bottom: -33px;
            transform: translateX(-50%);
            text-align: center;

            .swiper-pagination-bullet {
                background-color: #c9c9c9;
                opacity: 1;
            }
            .swiper-pagination-bullet.swiper-pagination-bullet-active {
                background-color: var(--font-color02);
            }
        }
    }

    .ig {
        width: 30%;
        position: relative;

        @media (max-width: 1200px) {
            width: 38%;
        }
        @media (max-width: 767px) {
            width: 100%;
        }

        .ig-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            grid-template-rows: repeat(3, auto);
            gap: clamp(0.625rem, -0.5rem + 1.88vw, 1.75rem);

            .ig-post {
                aspect-ratio: 1 / 1;
                border-radius: 18px;
                overflow: hidden;

                @media (max-width: 1200px) {
                    border-radius: 10px;
                }

                a {
                    object-fit: cover;
                    object-position: center;

                    &:hover {
                        opacity: 0.7;
                    }
                }

                img {
                    object-fit: cover;
                    object-position: center;
                }
            }
        }
        .ig-profile__link {
            position: absolute;
            bottom: -3.27em;
            left: 50%;
            transform: translateX(-50%);
        }
        .ig-profile__id {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: clamp(1rem, 0.625rem + 0.63vw, 1.375rem);
            letter-spacing: 0.1em;
            color: #383838;

            @media (max-width: 1200px) {
                bottom: -2.67em;
            }

            .ig-icon {
                width: 1.1em;
            }
        }
    }
}



/*========================================================
    トップページお知らせ
==========================================================*/
.news_topPage-container {
    padding: 18vw 0 21vw;

    @media (max-width: 767px) {
        padding: 103px 0 170px;
    }

    .news-wrap {
        width: min(78%, 1098px);
        margin: 6.9vw auto 0;

        @media (max-width: 767px) {
            width: 85%;
        }

        .page-link {
            margin: 65px auto 0;
        }
    }
}


/*========================================================
    バナー
==========================================================*/
.banner-container {
    padding: 123px 0 233px;
    position: relative;

    @media (max-width: 767px) {
        padding: 50px 0 130px;
    }

    .line {
        display: block;
        width: 67.4vw;
        height: 1px;
        background-color: var(--font-color03);
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);

        &::before {
            position: absolute;
            content: "";
            top: 1px;
            left: 0;
            width: 38px;
            height: 9.5px;
            border-radius: 0 0 5px 5px;
            background-color: var(--design-color01);
        }

        @media (max-width: 767px) {
            width: 85%;
        }
    }

    .banner__inner {
        width: min(80%, 1000px);
        margin: 0 auto;

        @media (max-width: 767px) {
            width: 90%;
        }

        .banner {
            display: flex;
            align-items: center;
            border-radius: 18px;
            overflow: hidden;
            background-color: #e6e0d5;
            transition: all 0.3s;

            &+& {
                margin-top: 43px;
            }

            @media (min-width: 960px) {
                height: 320px;
            }
            @media (max-width: 767px) {
                flex-direction: column;
            }

            .img {
                width: 46%;
                height: 100%;

                @media (max-width: 767px) {
                    width: 100%;
                    height: 215px;
                }

                picture, img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    object-position: center;
                }
            }

            .text-box {
                width: 41%;
                margin: 0 auto;

                @media (max-width: 767px) {
                    width: 87%;
                    margin: 0 auto;
                    padding: 40px 0 36px;
                }

                .banner-name {
                    font-size: clamp(1.438rem, 0.75rem + 1.15vw, 2.125rem);
                    letter-spacing: 0.12em;
                }

                .txt {
                    font-size: 14px;
                    letter-spacing: 0.12em;
                    line-height: 1.8em;
                    margin: 2em 0 2.9em;

                    @media (max-width: 1200px) {
                        margin: 1.4em 0 1.9em;
                    }

                    @media (max-width: 767px) {
                        margin: 40px 0 25px;
                    }
                }
            }

            &.type02 {
                /* width: 100%; */
                height: auto;
                display: block;
                background-color: transparent;
                border-radius: 0;
                /* aspect-ratio: 1000 / 173; */

                .img {
                    width: 100%;

                    @media (max-width: 767px) {
                        picture, img {
                            width: 100%;
                            height: auto;
                            object-fit: cover;
                            object-position: center;
                        }
                    }
                }
            }

            .page-link {
                @media (max-width: 767px) {
                    margin: 0 auto;
                }
            }

            &:hover {
                opacity: 0.7;

                .page-link {
                    opacity: 0.7;

                    span::before {
                        right: -2em;
                    }
                }
            }
        }
    }
}


/*========================================================
    contact
==========================================================*/
.contact-container {
    padding: 124px 0;
    position: relative;

    &::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url(../img/top/jpg_png/contact_Bg.png) no-repeat center center / cover;
        z-index: -1;
    }

    @media (max-width: 767px) {
        padding: 70px 0 140px;

        &::before {
            background: url(../img/top/jpg_png/contact_Bg_sp.jpg) no-repeat center center / cover;
        }
    }

    .contact__inner {
        width: min(86.7%, 1466px);
        margin: 0 auto;
        padding: 147px 133px;
        background-color: #fff;

        @media (max-width: 1200px) {
            padding: 90px 73px;
        }
        @media (max-width: 767px) {
            padding: 82px 20px 30px;
        }

        .contact__list {
            margin-top: clamp(4.063rem, 2.25rem + 3.02vw, 5.875rem);
            height: 170px;
            display: flex;
            border: 1px solid #8c8c8c;

            @media (max-width: 767px) {
                flex-direction: column;
                height: auto;
                border: none;
                gap: 17px;
            }

            a {
                height: 100%;
                width: calc(100% / 3);
                display: flex;
                align-items: center;
                justify-content: center;
                flex-direction: column;
                text-align: center;
                transition: all 0.2s;

                @media (max-width: 767px) {
                    width: 100%;
                    padding: 25px 0 25px;
                    border: 1px solid #8b8b8b;
                }

                .contact__name {
                    font-size: clamp(0.938rem, 0.688rem + 0.42vw, 1.188rem);
                    letter-spacing: 0.12em;
                    color: #1e1e1e;
                    transition: all 0.2s;

                    @media (max-width: 767px) {
                        order: 2;
                        font-size: 17px;
                    }
                    @media (max-width: 340px) {
                        font-size: 15px;
                    }
                }

                .img {
                    filter: brightness(0) saturate(100%) invert(9%) sepia(9%) saturate(4%) hue-rotate(332deg) brightness(91%) contrast(81%);
                    transition: all 0.2s;

                    img {
                        width: 100%;
                    }
                }

                &:hover {
                    .contact__name {
                        color: var(--design-color01);
                    }
                    .img {
                        filter: none;
                    }
                }
            }

            .form {
                flex-grow: 1;

                .img {
                    width: 48px;
                    margin: 0 auto 10px;
                }

                &:hover .img  {
                    filter: none;
                }
            }

            .tel {
                flex-grow: 1;
                border-left: 1px solid #8c8c8c;

                .tel__num {
                    font-size: clamp(1.313rem, 0.5rem + 1.35vw, 2.125rem);
                    letter-spacing: 0.06em;
                    color: #1e1e1e;
                    transition: all 0.2s;
                    display: flex;
                    align-items: center;

                    @media (max-width: 767px) {
                        display: contents;

                        span:not(.img) {
                            order: 4;
                            font-size: 34px;
                        }
                    }
                    @media (max-width: 340px) {
                        span:not(.img) {
                            font-size: 28px;
                        }
                    }

                    .img {
                        width: clamp(1.063rem, 0.438rem + 1.04vw, 1.688rem);
                        margin-right: 15px;

                        &.sos {
                            width: clamp(1.563rem, 0.75rem + 1.35vw, 2.375rem);
                        }

                        @media (max-width: 767px) {
                            order: 1;
                            margin: 0 0 10px;
                            width: 53px;

                            &.sos {
                                width: 65px;
                            }
                        }
                    }
                }

                .sub {
                    display: block;
                    text-align: center;
                    font-size: 13px;
                    color: #767676;
                    transition: all 0.2s;

                    @media (max-width: 767px) {
                        order: 5;
                        font-size: 14px;

                        &.sos {
                            order: 2;
                            font-size: 13px;
                        }
                    }
                }

                &:hover {
                    .tel__num {
                        color: var(--design-color01);
                    }
                    .sub {
                        color: var(--design-color01);
                    }
                }
            }
        }
    }
}



/*========================================================
    会社概要ページ
==========================================================*/

.info-container {
    padding-bottom: 16vw;

    @media (max-width: 767px) {
        padding-bottom: 180px;
    }
}
.info-wrap {
    width: min(90%, 1411px);
    margin: 0 auto;
    display: flex;

    @media (max-width: 767px) {
        width: 95%;
    }

    &+& {
        margin-top: 15vw;

        @media (max-width: 767px) {
            margin-top: 120px;
        }
    }

    @media (max-width: 767px) {
        flex-direction: column;
    }

    .sub-title {
        font-size: clamp(1.375rem, 1.263rem + 0.46vw, 1.813rem);
        color: var(--design-color01);
        display: flex;
        flex-direction: column;
        width: 14%;
        font-weight: 600;
        letter-spacing: 0.12em;

        @media (max-width: 767px) {
            width: 100%;
            flex-direction: row;
            align-items: center;
        }

        .num {
            width: fit-content;
            font-size: clamp(0.625rem, 0.5rem + 0.21vw, 0.75rem);
            letter-spacing: 0.08em;
            margin-bottom: 2em;
            padding-top: 1em;
            border-top: 1px solid var(--design-color01);

            @media (max-width: 767px) {
                margin: 0;
                border-top: none;
                border-left: 1px solid var(--design-color01);
                padding-top: 0;
                padding-left: 1em;
                margin-right: 2em;
            }
        }
    }

    .greetings {
        width: 86%;
        display: flex;
        align-items: center;
        flex-grow: 1;

        @media (max-width: 767px) {
            width: 100%;
            flex-direction: column;
            margin-top: 30px;
        }

        .img {
            width: min(45%, 550px);

            @media (max-width: 767px) {
                width: 70%;
                margin: 0 auto;
            }
        }
        .txt {
            width: min(45%, 560px);
            flex-grow: 1;
            font-size: clamp(0.875rem, 0.625rem + 0.42vw, 1.125rem);
            line-height: 2;
            letter-spacing: 0.12em;
            padding-left: 60px;

            @media (max-width: 767px) {
                width: 90%;
                padding: 0;
                margin-top: 20px;
            }
        }
    }

    .profile {
        width: 86%;

        @media (max-width: 767px) {
            width: 100%;
            margin-top: 50px;
        }

        .profile__item {
            display: flex;
            flex-wrap: wrap;


            .profile__term {
                font-size: clamp(0.875rem, 0.563rem + 0.52vw, 1.188rem);
                letter-spacing: 0.075em;
                padding: 30px 0;
                width: 14%;
                color: #5c5c5c;
                font-weight: 500;

                @media (max-width: 767px) {
                    width: 30%;
                    padding: 10px 0;
                    font-size: 13px;
                }
            }

            .profile__desc {
                position: relative;
                padding: 30px 0 30px 1em;
                width: 84%;
                font-size: clamp(0.875rem, 0.563rem + 0.52vw, 1.188rem);
                letter-spacing: 0.04em;
                line-height: 1.73em;
                color: #5c5c5c;

                &::before {
                    position: absolute;
                    content: "";
                    top: 0;
                    left: 0;
                    width: 1px;
                    height: 100%;
                    background-color: #b6b6b6;
                }

                @media (max-width: 767px) {
                    width: 70%;
                    padding: 10px 0 10px 1em;
                    font-size: 12px;

                    
                    li {
                        line-height: 1.5em;
                    }
                }
                
                li {
                    position: relative;
                    padding-left: 1em;
                    line-height: 1.5em;
                    
                    &::before {
                        position: absolute;
                        content: "";
                        top: 0.6em;
                        left: 0.3em;
                        width: 2px;
                        height: 2px;
                        border-radius: 50%;
                        background-color: #000;
                    }

                    & + & {
                        margin-top: 8px;
                    }
                }
            }

            &:first-of-type .profile__term,
            &:first-of-type .profile__desc {
                padding-top: 0;
            }

            .map {
                width: max(65%, 400px);
                aspect-ratio: 317 / 172;
                margin-top: 10px;

                @media (max-width: 767px) {
                    width: 100%;
                }
            }
        }
    }
}


/*========================================================
    プライバシーポリシー
==========================================================*/
.policy-container {
    padding-bottom: 17vw;

    @media (max-width: 767px) {
        padding: 80px 0 150px;
    }

    .policy-title {
        text-align: center;
        font-size: 21px;
        letter-spacing: 0.12em;
        line-height: 1.6em;
        color: #5f5f5f;

        @media (max-width: 767px) {
            font-size: 15px;
        }
    }

    .line {
        display: block;
        width: min(90%, 1805px);
        margin: 0 auto;
        height: 1px;
        background-color: #b6b6b6;
        margin-top: 55px;
    }

    .policy__inner {
        width: min(70%, 900px);
        margin: 0 auto;
        /* transform: translateX(7%); */
        padding-top: 110px;

        @media (max-width: 1200px) {
            transform: none;
        }
        @media (max-width: 767px) {
            width: 85%;
        }

        .policy-list {

            .policy__item {
                letter-spacing: 0.12em;
                padding-left: 3em;
                position: relative;

                &+& {
                    margin-top: 70px;

                    @media (max-width: 767px) {
                        margin-top: 40px;
                    }
                }

                @media (max-width: 767px) {
                    padding-left: 2em;
                }

                .policy__term {
                    font-size: 21px;

                    @media (max-width: 767px) {
                        font-size: 18px;
                    }

                    .num {
                        position: absolute;
                        left: -0;
                    }
                }

                .txt {
                    font-size: 17px;
                    letter-spacing: 0.12em;
                    margin-top: 1em;

                    @media (max-width: 767px) {
                        font-size: 13px;
                    }
                }
            }
        }
    }
}


/*========================================================
    ガイトール
==========================================================*/
.gaitour-list {
    display: flex;
    justify-content: center;
    padding-bottom: 10vw;
    gap: 26px;

    @media (max-width: 767px) {
        flex-direction: column;
        width: 79vw;
        margin: 0 auto;
        padding-bottom: 65px;
    }

    .gaitour-list__item {
        width: min(20%, 285px);
        padding: clamp(1.25rem, 0.188rem + 1.77vw, 2.313rem) clamp(0.938rem, 1.56vw, 1.875rem) 24px clamp(1.25rem, -0.313rem + 2.6vw, 2.813rem);
        border-radius: 20px 20px 0 0;
        border-top: 1px solid #a6a6a6;
        border-right: 1px solid #a6a6a6;
        border-left: 1px solid #a6a6a6;

        &:hover {
            background-color: #b1f0ff47;

            .arrow {
                transform: translateX(7px);
            }
        }

        @media (max-width: 767px) {
            width: 100%;
            display: flex;
            align-items: center;
            padding: 20px 26px 15px 30px;
        }
    }

    .img {
        width: 100px;

        @media (max-width: 767px) {
            width: 50px;
        }
    }
    .tit {
        font-size: clamp(0.875rem, 0.542rem + 0.69vw, 1.375rem);
        color: #1e1e1e;
        letter-spacing: 0.12em;
        margin-top: 10px;

        @media (max-width: 767px) {
            font-size: 14px;
            margin-left: 1em;
        }
    }
    .more {
        font-family: var(--font-en-gothic);
        font-size: 16px;
        color: var(--design-color05);
        margin-top: 26px;
        display: flex;
        align-items: center;
        justify-content: right;

        @media (max-width: 767px) {
            margin: 0 0 0 auto;
            font-size: 10px;

        }

        .arrow {
            width: 1.75em;
            margin-left: 1em;
            transition: all 0.3s;
        }
    }
}
.gaitour-title {
    text-align: center;
    font-size: clamp(1.563rem, 1.188rem + 0.63vw, 1.938rem);
    letter-spacing: 0.12em;
    font-weight: 600;

    @media (max-width: 767px) {
        font-size: 22px;
        line-height: 1.95em;
        text-align: left;
        width: fit-content;
        margin: 0 auto;
    }
    @media (max-width: 340px) {
        font-size: 20px;
    }
}

.gaitour-warranty {
    width: min(85%, 870px);
    margin: 65px auto 0;
    padding: 25px 0;
    border-radius: 10px;
    border: 1px solid #a6a6a6;

    @media (max-width: 767px) {
        width: 100%;
        margin-top: 40px;
    }

    .txt {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: clamp(1.25rem, 1rem + 0.42vw, 1.5rem);
        letter-spacing: 0.1em;

        @media (max-width: 767px) {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            grid-template-rows: repeat(2, 1fr);
            align-items: center;
            justify-content: center;
            font-size: 19px;

            .main {
                grid-column: span 2 / span 2;
                width: fit-content;
                margin: 0 auto;
                text-align: center;
            }
            .sub {
                grid-row-start: 2;
                margin-left: 1.5em;
            }
        }
        @media (max-width: 340px) {
            font-size: 17px;
        }

        .em {
            font-size: clamp(1.188rem, 0.938rem + 0.42vw, 1.438rem);
            color: red;
            display: flex;
            align-items: center;

            @media (max-width: 767px) {
                grid-row-start: 2;
                justify-content: right;
                margin-right: -1.5em;
            }

            .num {
                width: clamp(2.313rem, 1.688rem + 1.04vw, 2.938rem);
                margin: 0 7px 0 5px;

                @media (max-width: 767px) {
                    width: 47px;
                }
                @media (max-width: 340px) {
                    width: 40px;
                }
            }
        }
    }

    .page-link {
        width: 402px;
        margin: 20px auto 0;

        @media (max-width: 767px) {
            width: 273px;
            height: 65px;

            span {
                font-size: 15px;
            }
        }
        @media (max-width: 340px) {
            width: 220px;

            span {
                font-size: 13px;
            }
        }
    }
}

.subheading {
    font-size: 27px;
    letter-spacing: 0.12em;
    padding-left: 25px;
    position: relative;

    &::before {
        position: absolute;
        content: "";
        top: 50%;
        left: 0;
        transform: translateY(-50%);
        width: 4.6px;
        height: 24px;
        background-color: var(--design-color05);
    }

    @media (max-width: 767px) {
        font-size: 22px;
        font-weight: 400;
        padding-left: 15px;

        &::before {
            width: 3px;
            height: 19px;
            top: 0.3em;
            transform: translateY(0);
        }
    }
    @media (max-width: 340px) {
        font-size: 19px;
    }
}




/*========================================================
    ガイトールについて
==========================================================*/
.gaitour-top-container {
    padding-bottom: 20vw;

    .feature-wrap {

        .logo_gaitour {
            width: fit-content;
            margin: 0 auto 60px;

            @media (max-width: 767px) {
                width: 70%;
            }
        }
        
        >.headeline {
            width: fit-content;
            margin: 130px auto 0;
            font-size: clamp(1.125rem, 0.938rem + 0.31vw, 1.313rem);
            color: var(--design-color05);
            letter-spacing: 0.12em;
            padding: 1em 2em;
            border: 1px solid var(--design-color05);

            @media (max-width: 767px) {
                margin-top: 78px;
                padding: 1em;
            }
            @media (max-width: 340px) {
                font-size: 16px;
            }
        }

        .feature-list {
            width: min(85%, 1156px);
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            padding: 56px 0;

            @media (max-width: 767px) {
                flex-wrap: wrap;
                width: 95vw;
                row-gap: 40px;
            }

            .feature-list__item {

                @media (max-width: 767px) {
                    width: 50%;
                }
                .img {
                    width: 76%;
                    margin: 0 auto;
                }
                .txt {
                    margin-top: 1em;
                    font-size: clamp(0.75rem, 0.375rem + 0.63vw, 1.125rem);
                    color: var(--design-color05);
                    text-align: center;
                    line-height: 1.5em;
                    letter-spacing: 0;

                    @media (max-width: 767px) {
                        font-size: 11px;
                    }
                    @media (max-width: 340px) {
                        font-size: 10px;
                    }
                }
            }
        }
    }

    .recommend-wrap {
        width: min(80%, 1146px);
        margin: 0 auto;
        background-color: var(--design-color05);
        padding: 70px clamp(1.625rem, -1.5rem + 5.21vw, 4.75rem) 95px clamp(2.125rem, -1.5rem + 6.04vw, 5.75rem);
        display: flex;
        flex-direction: column;
        justify-content: center;

        @media (max-width: 767px) {
            width: 100vw;
            padding: 50px 15px 70px;
        }
        @media (max-width: 340px) {
            padding: 50px 8px 70px;
        }

        .headline {
            font-size: 26px;
            letter-spacing: 0.04em;
            line-height: 1.76em;
            color: #fff;

            @media (max-width: 767px) {
                font-size: 17px;
                white-space: nowrap;
            }
        }

        .inner {
            margin-top: 40px;

            .recommend-list {
                display: flex;
                flex-wrap: wrap;
                gap: 15px 20px;

                .recommend-list__item {
                    display: flex;
                    align-items: center;
                    gap: 10px;
                    font-size: clamp(0.75rem, 0.438rem + 0.52vw, 1.063rem);
                    color: var(--design-color05);
                    padding: 1em 1.5em;
                    flex-grow: 1;
                    background-color: #fff;
                    border-radius: 100vh;

                    &:last-child,
                    &:nth-last-child(2) {
                        flex-grow: 0;

                        @media (max-width: 767px) {
                            flex-grow: 1;
                        }
                    }

                    @media (max-width: 767px) {
                        align-items: flex-start;
                        font-size: 13px;
                    }

                    .check {
                        width: 22px;

                        @media (max-width: 767px) {
                            width: 19px;
                            margin-top: 2px;
                        }
                    }
                }
            }
        }
    }

    .gaitour__select {
        padding: 10vw 0 7.3vw;

        @media (max-width: 767px) {
            padding: 75px 0 56px;
        }

        .gaitour__select__inner {
            width: min(70%, 1135px);
            margin: 0 auto;
            display: flex;
            gap: 50px;

            @media (max-width: 767px) {
                flex-direction: column;
                width: 84vw;
                gap: 30px;
            }

            .select__btn {
                height: clamp(5.938rem, 3.438rem + 4.17vw, 8.438rem);
                width: 50%;
                border-radius: 10px;
                border: 1px solid #a6a6a6;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

                @media (max-width: 767px) {
                    width: 100%;
                }

                .sub {
                    font-size: clamp(0.688rem, 0.25rem + 0.73vw, 1.125rem);
                    letter-spacing: 0.16em;
                    color: var(--design-color05);
                    display: block;
                }
                .tit {
                    width: fit-content;
                    font-size: clamp(1.25rem, 0.688rem + 0.94vw, 1.813rem);
                    letter-spacing: 0.12em;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 50%;
                        right: -1.5em;
                        transform: translateY(-50%) rotate(90deg);
                        width: 1em;
                        height: 1em;
                        background: url(../img/asset/arrow07.png) no-repeat center center / contain;
                        transition: all 0.3s;
                    }
                }

                &:hover {
                    background-color: #cfedfd;
                    .tit::before {
                        transform: translateY(-40%) rotate(90deg);
                    }
                }
            }
        }
    }
}

.about-gaitour {
    padding: 92.5px 0 0;

    &+& {
        margin-top: 153px;

        @media (max-width: 767px) {
            margin-top: 40px;
        }
    }

    @media (max-width: 767px) {
        padding-top: 56px;
    }

    .tit-sub {
        display: block;
        width: min(95%, 1170px);
        margin: 0 auto 10px;
        font-size: clamp(0.813rem, 0.5rem + 0.52vw, 1.125rem);
        letter-spacing: 0.16em;
        color: var(--design-color05);
        /* transform: translateX(-45px); */

        @media (max-width: 767px) {
            width: 81vw;
            font-size: 16px;
        }
        @media (max-width: 767px) {
            font-size: 14px;
        }
    }

    .block {
        width: min(95%, 1170px);
        margin: 0 auto;

        @media (max-width: 767px) {
            width: 81vw;
        }
        @media (max-width: 340px) {
            width: 86vw;
        }

        &+& {
            margin-top: 290px;

            @media (max-width: 767px) {
                margin-top: 70px;
            }
        }

        .inner {
            padding-left: 45px;

            @media (max-width: 767px) {
                padding-left: 0;
            }
        }
    }

    .block01 {
        .block__wrap {
            margin-top: 40px;
            display: flex;
            align-items: center;

            @media (max-width: 767px) {
                flex-direction: column-reverse;
            }

            .text-box {
                width: 50%;

                @media (max-width: 767px) {
                    width: 100%;
                }

                .em {
                    font-size: clamp(1.625rem, 1.313rem + 0.52vw, 1.938rem);
                    letter-spacing: 0.12em;
                    font-weight: 500;
                    line-height: 1.5em;
                    color: var(--design-color03);

                    @media (max-width: 767px) {
                        font-size: 20px;
                        margin-top: 42px;
                    }
                }

                .txt {
                    margin-top: 35px;
                    font-size: clamp(0.813rem, 0.688rem + 0.21vw, 0.938rem);
                    letter-spacing: 0.12em;
                    line-height: 1.875em;

                    @media (max-width: 767px) {
                        font-size: 16px;
                    }
                }
            }

            .img {
                width: 36%;
                margin: 0 auto;

                @media (max-width: 767px) {
                    width: 100%;
                }
            }
        }

        .diff-point {
            margin-top: 86px;
            border-radius: 20px;
            border: 2px solid #a6a6a6;
            overflow: hidden;

            @media (max-width: 767px) {
                margin-top: 60px;
            }

            .tit {
                padding: 1em;
                background-color: #a6a6a6;
                font-size: clamp(1.25rem, 0.688rem + 0.94vw, 1.813rem);
                letter-spacing: 0.12em;
                color: #fff;
                text-align: center;

                @media (max-width: 767px) {
                    text-align: left;

                    span {
                        width: fit-content;
                        display: block;
                        margin: 0 auto;
                        text-align: left;
                    }
                }
            }

            .diff__inner {
                padding: 40px 80px 65px 53px;

                @media (max-width: 767px) {
                    padding: 34px 16px 68px;
                }

                .point-wrap + .point-wrap {
                    margin-top: 53px;
                }

                .name {
                    font-size: 15px;
                    letter-spacing: 0.06em;
                    padding-left: 1.5em;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 50%;
                        left: 0;
                        transform: translateY(-50%);
                        width: 0.73em;
                        height: 0.73em;
                        background-color: #000;
                    }
                }

                .point__inner {
                    margin-top: 32px;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;

                    @media (max-width: 767px) {
                        flex-direction: column;
                    }

                    .diff01 {
                        width: 41%;
                        margin: 0 auto;

                        @media (max-width: 767px) {
                            width: 100%;
                        }
                    }
                    .diff02 {
                        width: 23%;
                        margin: 0 auto;

                        @media (max-width: 767px) {
                            width: 60%;
                        }
                    }

                    .txt {
                        width: 50%;
                        font-size: clamp(0.813rem, 0.625rem + 0.31vw, 1rem);
                        letter-spacing: 0.12em;
                        line-height: 1.875em;

                        @media (max-width: 767px) {
                            width: 90%;
                            font-size: 16px;
                            margin-top: 30px;
                        }
                    }
                }
            }
        }
    }

    .block02 {
        .sp_subtit {
            font-size: 19px;
            padding-left: 0.5em;

            @media (max-width: 767px) {
                font-size: 17px;
            }
        }
        .inner {
            width: clamp(55.625rem, 23.125rem + 54.17vw, 88.125rem);
            display: flex;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 767px) {
                width: 100%;
                flex-direction: column;
            }

            .txt {
                width: 40%;
                font-size: clamp(0.813rem, 0.625rem + 0.31vw, 1rem);
                margin-top: 40px;
                line-height: 1.875em;

                @media (max-width: 767px) {
                    width: 95%;
                    margin: 42px auto 0;
                    font-size: 16px;
                }
            }
            .img {
                width: 60%;
                padding-left: 45px;

                @media (max-width: 767px) {
                    width: 110%;
                    padding-left: 0;
                    margin-top: 20px;
                }
            }
        }

        .diagram {
            padding-top: 240px;
            width: min(100%, 1220px);
            margin-inline: auto;

            @media (max-width: 767px) {
                padding-top: 90px;
            }

            .diagram__inner {
                &+& {
                    margin-top: 214px;

                    @media (max-width: 767px) {
                        margin-top: 70px;
                    }
                }
                .subtitle {
                    font-size: clamp(1rem, 0.873rem + 0.52vw, 1.5rem);
                    letter-spacing: 0.12em;
                    padding-left: 1.5em;
                    position: relative;
                    font-weight: 400;
                    line-height: 1.25em;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 0.5em;
                        left: 0;
                        width: 11px;
                        height: 11px;
                        background-color: #000;
                    }

                    @media (max-width: 767px) {
                        padding-left: 1em;

                        &::before {
                            top: 0.4em;
                            width: 8px;
                            height: 8px;
                        }
                    }
                }

                .img {
                    margin: 68px auto 0;

                    @media (max-width: 767px) {
                        margin-top: 40px;
                    }
                }
                .diagram-img01 {
                    width: min(100%, 727px);
                }
                .diagram-img02 {
                    width: min(100%, 650px);
                    margin-top: 90px;
                    position: relative;

                    @media (max-width: 767px) {
                        margin-top: 30px;
                    }

                    .note {
                        position: absolute;
                        top: 50%;
                        right: -50%;
                        transform: translateY(-50%);
                        width: 267px;
                        margin: 0;

                        @media (max-width: 767px) {
                            position: relative;
                            top: 20px;
                            left: 50%;
                            right: auto;
                            transform: translateX(-50%);
                            width: 150px;
                        }
                    }
                }
                .diagram-img03 {
                    width: min(100%, 650px);
                    position: relative;
                }
                .diagram-img04 {
                    width: min(100%, 908px);
                }
            }
        }
    }

    .block03 {
        width: min(90%, 1170px);

        @media (max-width: 767px) {
            width: 92vw;
            display: flex;
            flex-direction: column;
        }

        .block03__inner {
            display: flex;
            align-items: flex-start;

            @media (max-width: 767px) {
                display: contents;
            }

            >.text-box {
                width: 46%;

                @media (max-width: 1440px) {
                    width: 52%;
                }
                @media (max-width: 767px) {
                    display: contents;
                }

                .subheading {
                    transform: translateX(-25px);

                    @media (max-width: 767px) {
                        transform: translateX(0);
                        order: 1;
                        margin: 0 auto;
                    }
                }

                .txt {
                    margin-top: 60px;
                    line-height: 1.875em;

                    @media (max-width: 767px) {
                        order: 3;
                        width: 81vw;
                        margin: 30px auto 0;
                    }
                }
            }
            .img {
                width: 26%;
                margin-left: 165px;

                @media (max-width: 767px) {
                    width: 65%;
                    margin: 42px auto 0;
                    order: 2;
                }
            }
        }

        >.img {
            width: clamp(55rem, 30.625rem + 40.63vw, 79.375rem);
            transform: translateX(-25px);
            margin-top: 76px;

            @media (max-width: 1440px) {
                transform: translate(0);
            }
        }

        .project-list {
            width: 100%;
            margin: 0 auto;
            position: relative;
            order: 4;
            margin-top: 60px;

            &::before {
                position: absolute;
                content: "";
                top: 0;
                left: 2.32px;
                width: 33px;
                height: 98%;
                background-color: #cdcdce;
                border-radius: 100vh;
            }
            &::after {
                position: absolute;
                content: "";
                top: 70px;
                left: 16px;
                width: 6px;
                height: 80%;
                background-color: var(--design-color05);
                border-radius: 100vh;
            }

            @media (max-width: 340px) {
                &::before {
                    width: 25px;
                }
                &::after {
                    left: 13px;
                }
            }

            .project-list__item {
                display: flex;
                align-items: center;
                justify-content: space-between;
                padding: 0 14px 0 76px;
                position: relative;
                height: 171px;

                &::before {
                    position: absolute;
                    content: "";
                    right: 0;
                    bottom: 0;
                    width: calc(100% - 55px);
                    height: 6px;
                    border-radius: 100vh;
                    background-color: var(--design-color05);
                }
                &::after {
                    position: absolute;
                    content: "";
                    top: 50%;
                    left: 0;
                    transform: translateY(-50%);
                    width: 38px;
                    height: 38px;
                    border-radius: 50%;
                    background-color: var(--design-color05);
                }

                &:nth-of-type(1) {
                    height: 140px;
                    padding-top: 14px;
                    padding-bottom: 50px;
                }

                @media (max-width: 340px) {
                    padding-left: 55px;

                    &::after {
                        width: 30px;
                        height: 30px;
                    }
                }
                .project-img {
                    width: 16%;
                }
                .text-box {
                    width: 84%;
                    padding-left: 1em;

                    .project-name {
                        font-size: 16px;
                        letter-spacing: 0.005em;
                        padding-bottom: 10px;
                        color: #3e3a39;
                        border-bottom: 1px solid #3e3a39;
                        white-space: nowrap;
                        text-align: center;

                        &.type02 {
                            text-align: left;
                            padding-left: 0.5em;
                        }

                        @media (max-width:340px) {
                            font-size: 14px;
                        }
                        .sub {
                            display: block;
                            font-size: 12px;

                            @media (max-width: 340px) {
                                font-size: 10px;
                            }
                        }
                    }

                    .txt {
                        width: fit-content;
                        margin: 0 auto;
                        font-size: 12px;
                        letter-spacing: 0.08em;
                        padding-top: 1.3em;
                        white-space: nowrap;

                        &.long {
                            transform: scale(0.8, 1);
                        }

                        @media (max-width: 767px) {
                            font-size: 10px;

                            &.long {
                                transform: scale(0.7, 1);
                            }
                        }
                    }
                }
            }
        }
    }

    .block04 {

    }

    .block05 {

        @media (max-width: 767px) {
            width: 93vw;

            .subheading {
                width: 81vw;
                transform: translateX(25px);
            }
        }

        .txt {
            font-size: 16px;
            letter-spacing: 0.12em;
            line-height: 1.875em;
            margin: 42px 0 46px;

            @media (max-width: 767px) {
                width: 81vw;
                margin: 30px auto 0;
            }
        }
        .img-wrap {
            display: flex;
            align-items: flex-start;
            gap: 38px;

            @media (max-width: 767px) {
                flex-direction: column;
                margin-top: 40px;
                gap: 10px;
            }

            .img {
                width: 443px;

                @media (max-width: 767px) {
                    width: 100%;
                }
            }
        }
    }

    .block06 {

        @media (max-width: 767px) {
            width: 92vw;
        }
        .inner {
            display: flex;
            align-items: flex-start;

            @media (max-width: 767px) {
                flex-direction: column;
            }

            .subheading {
                transform: translateX(-25px);

                @media (max-width: 767px) {
                    transform: translateX(0);
                }
            }

            .text-box {
                width: 50%;

                @media (max-width: 767px) {
                    width: 81vw;
                    margin: 0 auto;

                    .subheading {
                        white-space: nowrap;
                    }
                }

                .txt {
                    margin-top: 42px;
                    font-size: 16px;
                    letter-spacing: 0.12em;
                    line-height: 1.875em;
                }
            }
            .img {
                width: 50%;
                padding-left: 47px;

                @media (max-width: 767px) {
                    width: 100%;
                    padding-left: 0;
                    margin-top: 30px;
                }
            }
        }
    }
}

.kuuhaku {
    height: 500px;
}


/*========================================================
    ガイトール保証期間
==========================================================*/
.warranty-container {
    padding-bottom: 372px;

    @media (max-width: 767px) {
        padding-bottom: 180px;
    }

    .inner {
        width: min(90%, 1223px);
        margin: 145px auto 0;

        @media (max-width: 767px) {
            margin-top: 50px;

            .gaitour-warranty {
                margin-top: 40px;
            }
        }
    }

    .block {
        margin-top: 140px;

        &+& {
            margin-top: 110px;
        }

        @media (max-width: 767px) {
            margin-top: 80px;
        }
        .title {
            display: block;
            padding: 10px 0 10px 48px;
            background-color: var(--design-color05);
            font-size: 23px;
            color: #fff;
            margin-bottom: 1.5em;

            @media (max-width: 767px) {
                font-size: 17px;
                padding: 8px 0 8px 20px;
            }
        }

    }
    .block01 {
        >.txt {
            font-size: 18px;
            line-height: 1.88em;

            @media (max-width: 767px) {
                font-size: 15px;
            }
        }
    }
    .block02 {
        .paid-list {
            margin-left: 20px;

            @media (max-width: 767px) {
                margin-left: 0;
            }

            .paid-list__item {
                display: flex;
                align-items: flex-start;
                gap: 1.5em;
                font-size: 19px;
                letter-spacing: 0.12em;

                &+& {
                    margin-top: 10px;
                }

                @media (max-width: 767px) {
                    gap: 0.5em;
                    font-size: 15px;
                }

                .num {
                    padding-right: 0.3em;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 50%;
                        right: 0;
                        transform: translateY(-50%);
                        width: 6px;
                        height: 15px;
                        background: url(../img/gaitour_warranty/jpg_png/paid__deco.png) no-repeat center center /contain;
                    }

                    @media (max-width: 767px) {
                        padding-right: 0.5em;
                    }
                }
            }
        }
    }

    .block03 {
        .img {
            width: max(65%);

            @media (max-width: 767px) {
                width: 100%;
            }
        }
    }
}

/*========================================================
    ガイトールサービス
==========================================================*/
.gaitour-service-container {
    padding-bottom: 290px;

    @media (max-width: 767px) {
        padding-bottom: 180px;
    }

    .block {
        width: min(95%, 1227px);
        margin: 0 auto;

        &+& {
            margin-top: 250px;

            @media (max-width: 767px) {
                margin-top: 150px;
            }
        }
    }
}

.gaitour_service {
    .block01 {
        .inner {
            margin-top: 70px;
            padding-left: 92px;

            @media (max-width: 959px) {
                padding-left: 0;
            }

            .usually {
                display: flex;
                align-items: center;
                border-bottom: 1px solid #a6a6a6;
                font-size: clamp(1.063rem, 0.975rem + 0.44vw, 1.5rem);

                .tit {
                    padding: 0 21px 10px;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        bottom: -1.5px;
                        left: 0;
                        width: 100%;
                        height: 3px;
                        background-color: #00ab50;
                    }

                    @media (max-width: 767px) {
                        padding: 0 10px 10px;
                    }
                }
                .time {
                    padding-bottom: 10px;
                    margin-left: 4em;

                    @media (max-width: 767px) {
                        margin-left: 1em;
                    }
                }
            }
            .sos {
                max-width: 676px;
                height: 64px;
                display: flex;
                align-items: center;
                font-size: clamp(1.063rem, 0.975rem + 0.44vw, 1.5rem);
                border: 1px solid #a6a6a6;
                margin-top: 70px;

                &+& {
                    margin-top: 20px;
                }

                @media (max-width: 767px) {
                    flex-direction: column;
                    height: auto;

                    .txt {
                        text-align: center;
                        margin-top: 10px;
                        height: 50px;
                        line-height: 50px;
                    }
                }

                .tit {
                    width: 240px;
                    height: 100%;
                    text-align: center;
                    line-height: 64px;
                    background-color: #f6f500;
                    margin-right: 2em;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 50%;
                        right: -13px;
                        transform: translateY(-50%);
                        width: 15px;
                        height: 16px;
                        background: #f6f500;
                        clip-path: polygon(0 0, 100% 50%, 0 100%);
                    }

                    @media (max-width: 767px) {
                        width: 100%;
                        height: 50px;
                        line-height: 50px;
                        text-align: center;
                        margin-right: 0;
                        padding-left: 0;

                        &::before {
                            top: 98%;
                            left: 50%;
                            right: auto;
                            transform: translateX(-50%) rotate(90deg);
                        }
                    }
                }
            }
        }
    }

    .block02 {
        .txt {
            max-width: 537px;
            font-size: 16px;
            letter-spacing: 0.12em;
            line-height: 1.75em;
            margin-top: 50px;
            margin-left: 25px;

            @media (max-width: 767px) {
                width: 90%;
                margin: 30px auto 0;
                font-size: 14px;
            }
        }

        .point-wrap {
            width: fit-content;
            margin-top: 50px;
            margin-left: 25px;
            padding: 35px 66px 35px 38px;
            border-radius: 10px;
            border: 1px solid #a6a6a6;

            @media (max-width: 959px) {
                padding: 25px 46px 25px 38px;
            }
            @media (max-width: 767px) {
                padding: 15px 10px;
                margin-left: 0;
            }

            .point-wrap__inner + .point-wrap__inner {
                margin-top: 20px;
            }

            .point-tit {
                padding-left: 20px;
                font-size: clamp(1.063rem, 1.038rem + 0.13vw, 1.188rem);
                letter-spacing: 0.12em;
                position: relative;

                &::before {
                    position: absolute;
                    content: "";
                    top: 0.4em;
                    left: 6.5px;
                    display: inline-block;
                    width: 7px;
                    height: 7px;
                    border-radius: 50%;
                    background: #a6a6a6;
                }
            }
            .point-txt {
                font-size: clamp(0.813rem, 0.787rem + 0.13vw, 0.938rem);
                color: #606060;
                letter-spacing: 0.12em;
                padding-left: 20px;
            }

        }

        .sub-block {
            font-size: clamp(1.125rem, 1.05rem + 0.38vw, 1.5rem);
            letter-spacing: 0.12em;
            max-width: 720px;
            margin-top: 70px;

            .tit {
                padding-bottom: 0.5em;
                position: relative;
                display: block;
                padding-left: 5px;

                &::before {
                    content: "";
                    display: inline-block;
                    width: 12px;
                    height: 14px;
                    background: var(--design-color05);
                    clip-path: polygon(0 0, 100% 50%, 0 100%);
                    margin-right: 1em;
                }

                &::after {
                    position: absolute;
                    left: 0;
                    bottom: 0;
                    content: "";
                    display: block;
                    width: 100%;
                    height: 1px;
                    background-image: repeating-linear-gradient(
                        90deg,
                        #a6a6a6 0 4px,   /* 黒が4px */
                        transparent 4px 8px  /* 空白が4px */
                    );
                }
            }


            .region-list {
                max-width: 720px;
                margin-top: 42px;

                @media (max-width: 767px) {
                    width: 100%;
                    padding-top: 0;
                    border: none;
                    gap: 10px;
                }
            }

        }
        .note {
            margin-top: 50px;
            font-size: 15px;
            padding-left: 1.5em;
            position: relative;

            &::before {
                position: absolute;
                content: "";
                top: 0.4em;
                left: 0;
                width: 9px;
                height: 9px;
                background-color: #000;
                
            }
            @media (max-width: 767px) {
                padding-left: 1em;
                width: fit-content;
                margin:  30px auto 0;
                font-style: 14px;

                &::before {
                    width: 8px;
                    height: 8px;
                }
            }
        }
    }

    .block03 {
        .block03__inner + .block03__inner {
            margin-top: 127px;
        }

        .table-title {
            display: block;
            font-size: clamp(1rem, 0.938rem + 0.31vw, 1.313rem);
            letter-spacing: 0.12em;
            padding: 6px 0 6px 36px;
            background-color: #efefef;

            @media (max-width: 767px) {
                padding-left: 20px;
            }
        }

        .table-container {
            max-width: 1052px;
            margin-left: 25px;
            margin-top: 40px;

            @media (max-width: 959px) {
                margin-left: 0;
            }
            .sub-txt {
                display: block;
                font-size: clamp(0.563rem, 0.5rem + 0.31vw, 0.875rem);
                line-height: 1.75em;
                margin-left: 36px;

                @media (max-width: 767px) {
                    margin-left: 0;
                }
            }
        }
        .table-wrap__inner {
            width: calc(100% - 36px);
            border-collapse: collapse;
            margin-left: 36px;
            margin-top: 38px;
            margin-bottom: 20px;

            @media (max-width: 767px) {
                margin-left: 0;
            }

            th, td {
                border: 1px solid #a6a6a6;
                padding: 10px;
                font-size: clamp(1.125rem, 1rem + 0.26vw, 1.313rem);
                letter-spacing: 0.12em;
                text-align: center;
                @media (max-width: 767px) {
                    font-size: clamp(0.813rem, 0.589rem + 1.12vw, 1.125rem);
                    white-space: nowrap;
                }
            }    

            .circle {
                font-weight: 700;
                color: #00AEEF;
                font-size: 16px;

                &::before {
                    content: "";
                    width: 22px;
                    height: 22px;
                    display: block;
                    margin: 0 auto;
                    border-radius: 50%;
                    border: 3px solid var(--design-color05);
                }
            }
            .filter-name {
                padding-left: 2em;
                text-align: left;
                font-weight: 500;

                @media (max-width: 959px) {
                    padding-left: 1em;
                }
            }
        }
        .filter-system {
            display: flex;
            align-items: center;
            border-radius: 10px;
            border: 1px solid var(--design-color05);
            max-width: 668px;
            height: 60px;
            overflow: hidden;
            margin-left: 130px;
            margin-top: 36px;

            &+& {
                margin-top: 16px;
            }

            @media (max-width: 959px) {
                margin-left: 0;
                width: 90%;
                margin: 40px auto 0;
            }

            .filter-name {
                width: 42%;
                height: 100%;
                line-height: 60px;
                display: flex;
                align-items: flex-end;
                justify-content: center;
                gap: 1em;
                font-size: 27px;
                color: #fff;
                background-color: var(--design-color05);
                letter-spacing: 0.12em;

                @media (max-width: 767px) {
                    font-size: 17px;
                    gap: 0.6em;
                }

                .year {
                    font-size: 19px;
                    transform: translateY(5px);

                    @media (max-width: 767px) {
                        font-size: 12px;
                    }
                }
            }
            .yen {
                display: block;
                flex-grow: 1;
                text-align: center;
                font-size: 26px;
                letter-spacing: 0.1em;

                @media (max-width: 767px) {
                    font-size: 17px;
                }
            }
        }
    }

    .block04 {
        .txt {
            font-size: 24px;
            letter-spacing: 0.12em;
            text-align: center;
            margin-top: 48px;

            @media (max-width: 767px) {
                font-size: 16px;
            }

            .sub {
                display: block;
                font-size: 17px;
                color: #1e1e1e;

                @media (max-width: 767px) {
                    font-size: 12px;
                    margin-top: 10px;
                }
            }
        }

        .price {
            margin-top: 51px;
            margin-left: 68px;
            display: flex;
            align-items: center;
            max-width: 1044px;
            height: clamp(4.375rem, 3.042rem + 2.78vw, 6.375rem);
            border: 1px solid var(--design-color05);
            border-radius: 20px;
            overflow: hidden;

            @media (max-width: 959px) {
                margin-left: 0;
            }
            @media (max-width: 767px) {
                border-radius: 10px;
                width: 90%;
                margin: 40px auto 0;
            }

            .tit {
                width: 34%;
                height: 100%;
                font-size: clamp(1.25rem, 0.792rem + 0.95vw, 1.938rem);
                color: #fff;
                background-color: var(--design-color05);
                display: flex;
                align-items: center;
                justify-content: center;

                @media (max-width: 767px) {
                    line-height: 1em;
                    font-size: 16px;
                    width: 40%;
                }
            }
            .yen {
                flex-grow: 1;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: clamp(1.25rem, 0.792rem + 0.95vw, 1.938rem);

                @media (max-width: 767px) {
                    flex-direction: column;
                    font-size: 14px;
                }

                .sub {
                    font-size: 18px;
                    color: var(--font-color02);
                    margin-left: 1em;

                    @media (max-width: 767px) {
                        font-size: 12px;
                        margin-left: 0;
                    }
                }
            }
        }

        .inner {
            width: min(90%, 934px);
            margin: 65px auto 0;
        }

        .block04__table {
            border-collapse: collapse;
            width: 100%;
            border: 1px solid #a6a6a6;

            .title {
                background-color: #e3e3e3;
                text-align: center;
                font-size: clamp(1.375rem, 1.063rem + 0.52vw, 1.688rem);
                letter-spacing: 0.12em;
                padding: 25px 0;
                font-weight: 400;

                @media (max-width: 1200px) {
                    padding: 15px 0;
                }
                @media (max-width: 767px) {
                    font-size: 17px;
                }
            }

            .num {
                text-align: center;
                padding-left: 0;

                @media (max-width: 767px) {
                    padding: 7px 10px;
                }
            }

            td {
                border: 1px solid #a6a6a6;
                padding: 25px 0 25px 1.5em;
                font-size: clamp(1.125rem, 0.75rem + 0.63vw, 1.5rem);

                &.first {
                    border-top: none;
                }

                @media (max-width: 1200px) {
                    padding: 15px 0 15px 1.5em;
                }
                @media (max-width: 767px) {
                    padding: 7px 0 7px 1.5em;
                    font-size: 14px;
                }
            }
        }

        .note {
            font-size: 14px;
            text-align: right;
            margin-top: 0.7em;

            @media (max-width: 767px) {
                font-size: 10px;
            }
        }
    }

    .block05 {
        max-width: min(1400px);

        @media (max-width: 767px) {
            .inner {
                display: flex;
                justify-content: center;
                margin-top: 40px;
            }
        }

        >.txt {
            font-size: clamp(1.063rem, 0.975rem + 0.44vw, 1.5rem);
            text-align: center;

            @media (max-width: 767px) {
                padding-bottom: 2px;
                border-bottom: 2px solid var(--design-color05);
            }
        }
        .arrow {
            width: 94%;
            display: block;
            margin-top: 27px;
            padding: 5px;
            font-size: 26px;
            color: var(--design-color03);
            letter-spacing: 0.2em;
            text-align: center;
            background-color: #ffffbb;
            position: relative;

            &::after {
                position: absolute;
                content: "";
                top: 50%;
                right: 0;
                transform: translate(50%, -50%);
                width: 140px;
                height: 100px;
                background-color: #ffffbb;
                clip-path: polygon(0 0, 100% 50%, 0 100%);
            }

            @media (max-width: 767px) {
                font-size: 21px;
                width: 30px;
                writing-mode: vertical-rl;
                -ms-writing-mode: tb-rl;
                text-orientation: upright;
                padding: 0;
                margin: 0 0 50px;

                &::after {
                    top: auto;
                    left: 50%;
                    bottom: 0;
                    right: auto;
                    transform: translate(-50%, 50%) rotate(90deg);
                    width: 100px;
                    height: 60px;
                }
            }
        }

        .step-wrap {
            margin-top: 55px;
            display: flex;
            align-items: flex-start;

            @media (max-width: 767px) {
                flex-direction: column;
                justify-content: center;
                width: 70%;
                margin-top: 0;
                margin-left: 40px;
            }

            .step__item {
                width: 20%;

                &:not(:first-of-type) {
                    margin-left: clamp(0.563rem, 0.94vw, 1.125rem);
                    padding-left: clamp(1.563rem, 0.625rem + 1.56vw, 2.5rem);
                    position: relative;
    
                    &::before {
                        position: absolute;
                        content: "";
                        top: 50%;
                        left: 0;
                        transform: translateY(-50%);
                        width: 18px;
                        height: 28px;
                        clip-path: polygon(0 0, 100% 50%, 0 100%);
                        background-color: var(--design-color05);
                    }

                    @media (max-width: 767px) {
                        margin-left: 0;
                        padding-left: 0;
                        padding-top: 30px;
                        margin-top: 5px;

                        &::before {
                            top: 0;
                            left: 50%;
                            transform: translateX(-50%) rotate(90deg);
                        }
                    }

                    .step__inner {
                        padding-bottom: 20px;
                    }
                }

                @media (max-width: 767px) {
                    width: 100%;
                }
                .step__inner {
                    border-radius: 10px;
                    border: 3px solid var(--design-color05);
                    overflow: hidden;
                }

                .step__name {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    height: 53px;
                    background-color: #bae2f5;
                    font-size: clamp(0.875rem, 0.438rem + 0.73vw, 1.313rem);
                    letter-spacing: 0.09em;

                    .num {
                        margin-right: 5px;
                        font-size: clamp(0.563rem, 0.375rem + 0.31vw, 0.75rem);
                        color: #bae2f5;
                        text-align: center;
                        line-height: 20px;
                        width: 20px;
                        aspect-ratio: 1 / 1;
                        border-radius: 50%;
                        background-color: #000;
                    }
                }

                .txt {
                    width: 82%;
                    margin: 18px auto 0;
                    font-size: clamp(0.75rem, 0.625rem + 0.21vw, 0.875rem);
                    letter-spacing: 0.12em;

                    @media (max-width: 767px) {
                        width: 85%;
                    }
                }

                .btn {
                    width: max(85%, 120px);
                    height: 34px;
                    text-align: center;
                    font-size: clamp(0.563rem, 0.438rem + 0.26vw, 0.75rem);
                    line-height: 34px;
                    background: var(--gradient-color01);
                    border-radius: 5px;
                    margin: 20px auto 15px;
                    color: #fff;
                    transition: all 0.3s;

                    &:hover {
                        opacity: 0.8;
                    }

                    @media (max-width: 767px) {
                        font-size: 13px;
                    }
                }
            }
        }
    }
}


/*========================================================
    ガイトール　水の現状
==========================================================*/
.prologue-container {
    padding-bottom: 300px;

    @media (max-width: 767px) {
        padding-bottom: 180px;
    }

    .block {
        width: min(80%, 1276px);
        margin: 0 auto;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 110px;

        &+& {
            margin-top: 214px;

            @media (max-width: 767px) {
                margin-top: 120px;
            }
        }

        @media (max-width: 959px) {
            flex-direction: column;
            gap: 40px;
        }

        .text-box {
            width: 69%;

            @media (max-width: 959px) {
                width: 100%;
                display: contents;
            }

            .txt {
                margin-top: 57px;
                font-size: 16px;
                line-height: 1.8em;

                @media (max-width: 959px) {
                    order: 3;
                    margin-top: 0;
                }
                @media (max-width: 767px) {
                    font-size: 14px;
                }
            }
        }
        .img {
            width: 31%;

            @media (max-width: 959px) {
                order: 2;
                width: 80%;
                margin: 0 auto;
            }
        }
    }
}


/*========================================================
    ガイトールFAQ
==========================================================*/
.gaitour_FAQ__container {
    padding-bottom: 13vw;
}
.FAQ__inner {
    width: min(90%, 1015px);
    margin: 0 auto;

    .FAQ__item {
        border-radius: 5px;
        background-color: #f4f4f4;

        &+& {
            margin-top: 26px;
        }

        &.gaitour {
            background-color: #fff;
        }
    }

    .question__wrap {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 21px;
        padding: 19px 23px 23px 33px;
        cursor: pointer;

        @media (max-width: 767px) {
            padding: 10px 14px 10px 16px;
            font-size: 15px;
        }

        .icon {
            width: 34px;

            @media (max-width: 767px) {
                width: 25px;
            }
        }
        .toggle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--font-color01);
            border: 5px solid #f2f6fa;
            margin: 0 0 0 auto;
            position: relative;

            &::before {
                position: absolute;
                content: "";
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                width: 1.8px;
                height: 14px;
                background-color: #fff;
                transition: all 0.3s;
                transform-origin: center center;
            }
            &::after {
                position: absolute;
                content: "";
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                height: 1.8px;
                width: 14px;
                background-color: #fff;
            }

            @media (max-width: 767px) {
                width: 30px;
                height: 30px;

                &::before {
                    width: 1px;
                    height: 10px;
                }
                &::after {
                    width: 10px;
                    height: 1px;
                }
            }
        }
    }

    .answer__wrap {
        padding: 0 23px 23px;

        @media (max-width: 767px) {
            padding: 0 10px 18px;
        }
    }

    .answer__wrap__inner {
        padding: 28px 29px 37px 20px;
        border-radius: 5px;
        background-color: #fff;
        display: flex;
        align-items: flex-start;
        gap: 10px;

        &.gaitour {
            background-color: #cfedfd;
        }

        @media (max-width: 767px) {
            padding: 21px 10px 30px 10px;
        }

        .icon {
            width: 27px;

            @media (max-width: 767px) {
                width: 20px;
            }
        }

        .answer__txt {
            width: calc(100% - 37px);
            font-size: 17px;
            line-height: 1.7em;

            @media (max-width: 767px) {
                font-size: 15px;
            }

            .add {
                margin-top: 30px;
                text-align: center;
                color: var(--design-color01);
            }
        }
        .answer-list {
            margin-top: 30px;
            position: relative;

            &.type02 {
                margin-top: 0;
            }

            &.detail-list {
                margin-left: 20px;
                margin-top: 10px;

                .img {
                    width: max(50%);
                }
            }

            @media (max-width: 767px) {
                margin-top: 10px;
            }

            .answer-list__item {
                font-size: 19px;
                display: flex;
                /* align-items: center; */
                align-items: flex-start;

                &:nth-of-type(n+2) {
                    margin-top: 10px;

                    @media (max-width: 767px) {
                        margin-top: 5px;
                    }
                }

                &.type02 {
                    display: block;

                    .txt {
                        margin-left: 1em;
                        font-size: 17px;
                    }
                }

                @media (max-width: 767px) {
                    font-size: 14px;
                }

                .num {
                    display: inline;
                    font-size: 21px;
                    padding-right: 0.5em;
                    margin-right: 10px;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 50%;
                        right: 0;
                        transform: translateY(-50%);
                        width: 5px;
                        height: 20px;
                        background: url(../img/gaitour_FAQ/answer__deco.png) no-repeat center center / contain;
                    }

                    @media (max-width: 767px) {
                        font-size: 15px;

                        &::before {
                            width: 4px;
                            height: 17px;
                        }
                    }
                }
            }

            .add {
                display: block;
            }
            .tit {
                font-size: 21px;
                font-weight: 500;

                @media (max-width: 767px) {
                    font-size: 15px;
                }
            }
        }

        .answer-box {
            margin-top: 30px;

            &+& {
                margin-top: 50px;

                @media (max-width: 767px) {
                    margin-top: 30px;
                }
            }

            .tit {
                font-size: clamp(1rem, 0.92rem + 0.33vw, 1.313rem);
            }

            .order {
                &+& {
                    margin-top: 50px;

                    @media (max-width: 767px) {
                        margin-top: 30px;
                    }
                }

                .add {
                    font-size: clamp(0.75rem, 0.67rem + 0.33vw, 1.063rem);
                    line-height: 1.3em;

                    @media (max-width: 767px) {
                        text-align: left;
                    }
                }
            }

            .answer-list__item.add {
                margin-top: 20px;
            }

            .detail-list {
                margin-left: 1em;
                margin-top: 20px;

                @media (max-width: 767px) {
                    margin-top: 0;
                }

                .detail-liat__item + .detail-liat__item {
                    margin-top: 10px;

                    @media (max-width: 767px) {
                        margin-top: 5px;
                    }
                }
            }
        }

        .tel {
            display: flex;
            align-items: center;
            margin-top: 30px;

            @media (max-width: 767px) {
                flex-direction: column;
            }

            .txt {
                padding-right: 2em;
                position: relative;

                &::before {
                    position: absolute;
                    content: "";
                    top: 50%;
                    right: 0;
                    transform: translateY(-50%);
                    width: 14px;
                    height: 10px;
                    background: url(../img/asset/arrow02.png) no-repeat center center /contain;
                    filter: brightness(0) saturate(100%) invert(14%) sepia(0%) saturate(1934%) hue-rotate(315deg) brightness(108%) contrast(98%);
                }

                @media (max-width: 767px) {
                    padding-right: 1.5em;

                    &::before {
                        transform: translateY(-50%) rotate(90deg);
                        height: 7px;
                    }
                }
            }

            >.sub {
                font-weight: 600;
                font-size: 20px;
                letter-spacing: 0.12em;
                color: var(--design-color01);
                margin-left: 1em;
                display: flex;
                align-items: center;
                gap: 1em;

                &:hover {
                    opacity: 0.7;
                }

                @media (max-width: 767px) {
                    margin: 0;
                    font-size: 12px;
                }
            }

            .tel-num {
                font-family: var(--font-en-gothic);
                font-size: 28px;
                color: #1e1e1e;
                letter-spacing: 0.04em;
                border-bottom: 1px solid var(--design-color01);
                font-weight: 600;
                position: relative;

                @media (max-width: 767px) {
                    font-size: 18px;
                }

                .sub {
                    position: absolute;
                    top: 100%;
                    left: 50%;
                    transform: translateX(-50%);
                    font-size: 12px;
                    font-weight: 400;
                    color: #767676;

                    @media (max-width: 767px) {
                        font-size: 9px;
                    }
                }
            }
        }
    }
}

.FAQ__inner .answer__wrap {
    display: none;
}

.FAQ__inner .question__wrap.active {
    .toggle::before {
        transform:  translate(-50%, -50%) rotate(-90deg);
    }
}


/*========================================================
    お問い合せ
==========================================================*/
.contact-form__container {
    padding: 113px 0 268px;

    @media (max-width: 767px) {
        padding: 63px 0 198px;
    }

    .contact__inner {
        width: min(80%, 1050px);
        margin: 0 auto;

        .contact-form {
            width: 100%;

        }
        .txt {
            text-align: center;
            font-size: 14px;
            letter-spacing: 0.12em;
            margin-top: 124px;
            margin-bottom: 30px;

            @media (max-width: 767px) {
                margin-top: 75px;
            }
        }

        .attention {
            text-align: center;
            font-size: 14px;
            letter-spacing: 0.12em;
            color: #e40111;
            margin-top: 64px;
        }
    }
    .contact__table {
        width: 100%;

        .contact__item {
            display: flex;
            align-items: flex-start;

            &+& {
                margin-top: 50px;
            }

            @media (max-width: 767px) {
                flex-direction: column;
            }

            .wpcf7-list-item {
                display: block;

                &+& {
                    margin-top: 0.8em;
                }
            }
        }
        .contact__item__name {
            width: 30%;
            font-size: 18px;
            letter-spacing: 0.12em;
            color: #4d4d4d;
            display: flex;
            align-items: center;

            @media (max-width: 767px) {
                width: 100%;
                font-size: 16px;
            }

            .must {
                font-size: 11px;
                color: #fff;
                padding: 2px 3px;
                background-color: #e40111;
                margin-left: 0.5em;
                
                @media (max-width: 767px) {
                    font-size: 9px;
                }
            }
        }
        .contact__item__body {
            width: 70%;
            font-size: 16px;

            @media (max-width: 767px) {
                width: 100%;
                margin-top: 20px;
                font-size: 14px;
            }

            label {
                display: block;

                &+& {
                    margin-top: 0.8em;
                }

                input {
                    position: relative;
                }

                input[type="radio"] {
                    appearance: none;
                    border: 1px solid #4d4d4d;
                    border-radius: 50%;
                    height: 14px;
                    width: 14px;
                    margin: 0;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        background: var(--gradient-color01);
                        border-radius: 50%;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        transform-origin: center center;
                        height: 8px;
                        width: 8px;
                        opacity: 0;
                        transition: all 0.2s;
                    }

                    &:checked::before {
                        opacity: 1;
                    }
                }
            }

            .form-txt {
                background-color: #f4f4f4;
                font-size: 16px;
                border: none;
                height: 3.4em;
                width: 100%;
                padding: 0 1em;

                &.textarea {
                    height: 347px;
                    padding: 1em;

                    @media (max-width: 767px) {
                        height: 140px;
                    }
                }

                &:focus-visible {
                    outline: 2px solid var(--design-color01);
                }

                @media (max-width: 767px) {
                    font-size: 14px;
                }
            }

            .wpcf7-list-item-label {
                font-size: 17px;
                letter-spacing: 0.12em;
                color: #4d4d4d;

                @media (max-width: 767px) {
                    font-size: 14px;
                }
            }

            .date-edit {
                position: relative;

                &::before {
                    position: absolute;
                    content: "";
                    top: 50%;
                    left: 14em;
                    transform:  translateY(-50%);
                    background: url(../img/asset/arrow08.png) no-repeat center center / cover;
                    transform-origin: center center;
                    width: 9.7px;
                    height: 7px;
                    z-index: 2;
                }
                &.selected::before {
                    content: none;
                }

                .form-txt {
                    cursor: pointer;
                    display: flex;
                }
            }
        }
    }

    .submit-btn {
        display: block;
        width: 300px;
        height: 63px;
        margin:  auto;
        background-color: black;
        color: white;
        border: 1px solid #333;
        cursor: pointer;

        @media (max-width: 767px) {
            width: 170px;
            height: 45px;
        }
    }
    .submit-btn[disabled] {
        cursor: not-allowed;  /* ✖カーソル */
        opacity: 0.5;         /* 無効感を出す */
    }
}
/* カレンダーの中 */
.clear-btn {
    padding: 2px 5px;
    border-radius: 5px;
    background: color-mix(in srgb, var(--design-color02) 60%, transparent);
    transition: all 0.2s;
    cursor: pointer;

    &:hover {
        transform: translate(1px, 1px);
    }
}

.flatpickr-monthDropdown-month {
    font-size: 14px;
}

/* 問い合わせ完了テキスト */
.wpcf7-response-output {
    text-align: center;
}


/*========================================================
    おしらせ、広報誌　共通
==========================================================*/
.news__inner {
    width: min(95%, 1440px);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 265px;

    @media (max-width: 767px) {
        display: block;
        padding-bottom: 190px;
    }

    .title-wrap {
        .title, .tit {
            font-size: clamp(1.563rem, 1.467rem + 0.39vw, 1.938rem);
            font-family: var(--font-en-gothic);
            letter-spacing: 0.1em;
        }
    }
    .category-wrap {
        width: clamp(11.875rem, 8.958rem + 6.08vw, 16.25rem);
        padding: 53px 0 64px;
        border-radius: 100vh;
        background-color: #f4f4f4;
        position: sticky;
        top: clamp(8.125rem, 6.042rem + 4.34vw, 11.25rem);
    
        @media (max-width: 767px) {
            width: 75%;
            margin: 0 auto;
            padding: 30px 0 40px;
            position: static;
            border-radius: 0;
        }
        @media (max-width: 340px) {
            width: 70%;
        }
    
        .tit {
            margin-left: 0.5em;
            display: block;
            text-align: center;
            font-size: clamp(1.125rem, 0.917rem + 0.43vw, 1.438rem);
            letter-spacing: 0.1em;
            color: var(--font-color02);
        }
        .category-list {
            margin: 50px auto 0;
            width: fit-content;
    
            @media (max-width: 959px) {
                margin-top: 30px;
            }
    
            .category-list__item {
    
                &+& {
                    margin-top: 0.6em;
                }
                a {
                    font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
                    color: #a2a2a2;
                    letter-spacing: 0.1em;
                    padding-left: 1em;
                    margin-left: 1em;
                    position: relative;
                    transition: all 0.2s;

                    &::after {
                        position: absolute;
                        content: "";
                        top: 50%;
                        left: -0.6em;
                        transform: translateY(-50%) scale(0);
                        width: 10px;
                        height: 10px;
                        border-radius: 50%;
                        background: var(--gradient-color01);
                        transition: all 0.3s;
                        z-index: 2;
                    }
    
                    &:hover {
                        color: color-mix(in srgb, var(--design-color01) 65%, #fff 35%);
    
                        &::after {
                            transform: translateY(-50%) scale(1);
                        }
                    }
                }
    
                &.all a {
                    font-size: clamp(1.063rem, 0.979rem + 0.17vw, 1.188rem);
                    color: var(--font-color02);
                    margin-left: 0;
    
                    &::before {
                        position: absolute;
                        content: "";
                        top: 50%;
                        left: 0.4em;
                        transform: translateY(-50%);
                        transform-origin: center center;
                        width: 4.7px;
                        height: 4.7px;
                        border-radius: 50%;
                        background-color: var(--font-color02);
                        transition: all 0.3s;
                        z-index: 1;
                    }
                    &::after {
                        top: 50%;
                        left: 0.25em;
                        transform: translateY(-50%) scale(0);
                    }
                    &:hover {
                        color: color-mix(in srgb, var(--design-color01) 65%, #fff 35%);

                        &::after {
                            transform: translateY(-50%);
                        }
                    }
                }
    
                &.active a {
                    color: var(--design-color01);
    
                    &::after {
                        transform: translateY(-50%) scale(1);
                    }
                }
            }
        }
    }

    .__Right {
        width: 76%;

        @media (max-width: 959px) {
            width: 70%;
        }
        @media (max-width: 767px) {
            width: 100%;
            padding-top: 80px;
        }
    }
}


/*========================================================
    たんぽぽ広報誌
==========================================================*/
.magazine-container {

    .__Right {
        .main-txt {
            width: fit-content;
            font-size: 17px;
            letter-spacing: 0.1em;
            line-height: 1.88em;
            text-align: center;
            margin-left: 135px;

            @media (max-width: 767px) {
                font-size: 15px;
                margin: 0 auto;
            }
        }

        .title-wrap {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 116px;
            margin-top: 146px;

            @media (max-width: 1450px) {
                gap: 60px;
            }

            @media (max-width: 959px) {
                flex-direction: column;
                align-items: flex-start;
                gap: 30px;
            }
            @media (max-width: 767px) {
                margin-top: 80px;
            }

            .year-select {
                flex-grow: 1;
                display: flex;
                align-items: flex-end;
                /* justify-content: space-between; */
                gap: 10px;

                @media (max-width: 959px) {
                    width: 100%;
                    justify-content: left;
                    gap: 5px;
                }

                .year__item {
                    border-top: 1px solid var(--font-color02);
                    border-right: 1px solid var(--font-color02);
                    border-left: 1px solid var(--font-color02);
                    transition: all 0.3s;

                    &:has(a:hover) {
                        border-top: 1px solid #c75528;
                        border-right: 1px solid #c75528;
                        border-left: 1px solid #c75528;

                        a {
                            color: #c75528;
                        }
                    }

                    a {
                        padding: 10px 17px 7px;
                        font-size: 14px;
                        letter-spacing: 0.1em;
                        color: var(--font-color02);
                        transition: all 0.3s;

                        @media (max-width: 959px) {
                            padding: 10px 7px 7px;
                            font-size: 12px;
                        }
                        @media (max-width: 767px) {
                            padding: 7px 3px;
                        }
                    }
                }
            }
        }

        .backnumber-wrap {
            margin-top: 93px;

            .backnumber-wrap__item{
                padding-top: 20px;

                @media (max-width: 767px) {
                    padding-top: 10px;
                }

                &+& {
                    margin-top: 110px;

                    @media (max-width: 767px) {
                        margin-top: 80px;
                    }
                }

                .year {
                    display: block;
                    font-size: 19px;
                    color: var(--font-color02);
                    letter-spacing: 0.1em;
                    padding-bottom: 0.8em;
                    border-bottom: 1px solid #c6c6c6;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        left: 0;
                        bottom: -10px;
                        width: 38px;
                        height: 10px;
                        border-radius: 0 0 5px 5px;
                        background-color: var(--design-color01);
                    }
                }

                .backnumber-wrap__item_inner {
                    padding: 62px 30px 0 38px;
                    display: grid;
                    grid-template-columns: repeat(4, 1fr);
                    row-gap: 30px;

                    @media (max-width: 767px) {
                        padding: 62px 0 0 0;
                        grid-template-columns: repeat(3, 1fr);
                        row-gap: 10px;
                    }

                    .__link {
                        font-size: clamp(0.75rem, 0.638rem + 0.56vw, 1.313rem);
                        text-align: center;
                        padding: 15px 0;
                        position: relative;

                        &::before {
                            position: absolute;
                            content: "";
                            top: 50%;
                            right: 0;
                            transform: translateY(-50%);
                            width: 0.5px;
                            height: 16px;
                            background-color: #909090;
                        }

                        &:last-of-type::before {
                            display: none;
                        }

                        &.is-last::before {
                            display: none;
                        }

                        &:hover {
                            color: var(--font-color02);
                        }

                        @media (max-width: 767px) {
                            padding: 5px 0;
                        }
                    }
                }

                &.hidden-content {
                    display: none;
                }
            }
        }
        .show-btn {
            all: unset; /* ボタンのデフォルトスタイルを全解除 */
            display: block;
            color: #000;
            width: 316px;
            margin: 170px auto 0;
            padding: 1em 0;
            text-align: center;
            border: 1px solid #a6a6a6;
            cursor: pointer;
            transition: all 0.3s;

            @media (max-width: 767px) {
                width: 75%;
                margin: 80px auto 0;
            }

            .txt {
                display: inline-flex;
                align-items: center;
                font-size: clamp(0.875rem, 0.795rem + 0.33vw, 1.188rem);
                color: #000;

                &::after {
                    position: static;
                    display: inline-block;
                    content: "";
                    width: 12px;
                    height: 9.7px;
                    margin-left: 5px;
                    background: url(../img/asset/arrow02.png) no-repeat center center / contain;
                    filter: brightness(0) saturate(100%) invert(46%) sepia(0%) saturate(1300%) hue-rotate(152deg) brightness(79%) contrast(89%);
                    transform: rotate(90deg);
                    transition: all 0.3s;
                }
            }
        }
    }
}


.pdf-embed {
    width: min(100%, 800px);
    aspect-ratio: 5 / 8;

    embed {
        width: 100%;
        height: 100%;
    }
}

/*========================================================
    お知らせ
==========================================================*/
.notis-wrap {
    .title-wrap {
        @media (max-width: 767px) {
            width: 89.5%;
            margin: 0 auto;
        }
        .title {
            font-size: clamp(1.25rem, 1.059rem + 0.78vw, 2rem);
        }
    }

    .news-list {
        margin-top: 60px;

        @media (max-width: 767px) {
            width: 89.5%;
            margin: 30px auto 0;

            a {
                padding: 0 15px;
            }
        }

    }

    .news-pagenation {
        margin-top: 131px;

        @media (max-width: 767px) {
            margin-top: 80px;
        }

        .pagenation-wrap {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;

            .pagenation a {
                font-size: 27px;
                padding: 3px;
                color: #afafaf;
                transition: all 0.3s;

                &:hover {
                    opacity: 0.7;
                }

                @media (max-width: 767px) {
                    font-size: 18px;
                }
            }
            .active a {
                color: #1e1e1e;
                font-weight: 500;
            }
        }
    }
}



/*========================================================
    お知らせ個別
==========================================================*/
.single-wrap {
    @media (max-width: 767px) {
        width: 90%;
        margin: 0 auto;
        display: flex;
        flex-direction: column-reverse;
        gap: 70px;
    }

    .tit {
        font-size: clamp(1.25rem, 1.027rem + 0.92vw, 2.125rem);
        margin-top: 25px;
        margin-left: 0;
    }
    .date {
        margin-top: 20px;
        margin-left: 0;
    }
    .category {
        width: fit-content;
        padding: 5px;

        @media (max-width: 767px) {
            font-size: 10px;
        }
    }
    .txt {
        font-size: 16px;
        letter-spacing: 0.04em;
        line-height: 2em;
        margin-top: 65px;

        @media (max-width: 767px) {
            font-size: 14px;
            width: 85%;
            margin: 40px auto 0;
        }
    }
    .page-link {
        margin-top: 136px;
        margin-left: 250px;

        @media (max-width: 767px) {
            margin: 80px auto 0;
        }
    }
}


/*========================================================
    リフォーム・機器の販売　共通
==========================================================*/
.reform-container,
.product-container {
    h3.em {
        font-size: clamp(1.25rem, 1.083rem + 0.35vw, 1.5rem);
        letter-spacing: 0.06em;
        line-height: 1.54em;
    }

    .facilities {
        border-radius: 20px;
        border: 1px solid #d0d0d0;
        padding-bottom: 56px;
        box-shadow:
        0 0 8px rgba(0, 0, 0, 0.15),
        inset 0 0 8px rgba(0, 0, 0, 0.15);

        @media (max-width: 767px) {
            padding-bottom: 30px;
        }

        .facilities-name {
            border-radius: 20px 20px 0 0;
            padding: 1em 0;
            background-color: #d0d0d0;
            font-size: 27px;
            letter-spacing: 0.18em;
            font-weight: 500;
            text-align: center;
            margin-bottom: 18px;

            @media (max-width: 959px) {
                padding: 0.4em 0;
            }
            @media (max-width: 767px) {
                font-size: clamp(1.375rem, 1.052rem + 1.33vw, 1.688rem);
            }
        }
        .img {
            margin-bottom: 33px;

            @media (min-width: 960px) {
                
                picture, img {
                    height: 100%;
                    width: auto;
                    object-fit: contain;
                    object-position: center center;
                    margin: 0 auto;
                }
            }

        }
    }

    .content-wrap__inner {
        display: flex;
        gap: 11px;

        .content {
            width: calc(100% / 3);

            .circle {
                width: 100%;
                aspect-ratio: 1 / 1;
                border-radius: 50%;
                background-color: #f7ed62;
                outline: 11px solid #f7ffa5;
                outline-offset: -11px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;

                @media (max-width: 767px) {
                    outline: 7px solid #f7ffa5;
                    outline-offset: -7px;
                }

                .main {
                    font-family: var(--font-en-mincho);
                    font-size: clamp(3rem, 2.167rem + 1.74vw, 4.25rem);
                    font-weight: 600;
                    line-height: 1;

                    @media (max-width: 767px) {
                        font-size: 32px;
                    }
                }
                .unit {
                    font-family: var(--font-en-mincho);
                    font-size: 22px;
                    line-height: 1;
                    margin-top: -7px;

                    @media (max-width: 767px) {
                        font-size: 18px;
                    }
                }
            }

            .txt {
                text-align: center;
                font-size: clamp(0.813rem, 0.604rem + 0.43vw, 1.125rem);
                line-height: 1.3em;
                margin-top: 16px;
            }

            span {
                color: #fff;
                line-height: 1.1;

                @media (max-width: 767px) {
                    line-height: 1.25em;
                }

                &.sub {
                    font-size: clamp(0.938rem, 0.646rem + 0.61vw, 1.375rem);

                    @media (max-width: 767px) {
                        font-size: 10px;
                    }
                }
                &.midd {
                    font-size: clamp(1.25rem, 1.083rem + 0.35vw, 1.5rem);

                    @media (max-width: 767px) {
                        font-size: 13px;
                    }
                }
                &.em {
                    font-size: clamp(1.375rem, 1.167rem + 0.43vw, 1.688rem);

                    @media (max-width: 767px) {
                        font-size: 15px;
                    }
                }
            }
        }
    }


}
.reform-select,
.product-select {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 71.6px;

    @media (max-width: 767px) {
        margin-top: 40px;
    }

    .reform-select__item,
    .product-select__item {
        position: relative;

        &:nth-of-type(n+2) {

            &::before {
                position: absolute;
                content: "";
                top: 50%;
                left: 0;
                transform: translateY(-50%);
                width: 1px;
                height: 10px;
                background-color: #c6c6c6;
            }
        }

        a {
            padding: 5px 2em;
            font-size: clamp(0.625rem, 0.498rem + 0.52vw, 1.125rem);
            letter-spacing: 0.12em;
            color: var(--font-color02);
            transition: all 0.3s;

            @media (max-width: 767px) {
                padding: 5px 2em 5px 1em;
            }

            span {
                position: relative;

                &::after {
                    position: absolute;
                    content: "";
                    top: 50%;
                    right: -1em;
                    transform: translateY(-50%);
                    width: 7.6px;
                    height: 5px;
                    background: url(../img/asset/arrow03.png) no-repeat center center / contain;
                    transition: all 0.3s;
                }
            }

            &:hover {
                color: var(--design-color01);

                span::after {
                    transform: translateY(-10%);
                }
            }
        }
        &.product-select__item a {
            font-size: clamp(0.75rem, 0.654rem + 0.39vw, 1.125rem);
        }
    }
}

.reform-title,
.product-title {
    font-size: 27px;
    letter-spacing: 0.12em;
    position: relative;

    &::before {
        position: absolute;
        content: "";
        top: 50%;
        left: -1em;
        transform: translateY(-50%);
        width: 4.6px;
        height: 24px;
        background: var(--gradient-color02);
    }

    @media (max-width: 767px) {
        font-size: 22px;
        margin-left: 1em;
    }
}


/*========================================================
    リフォーム
==========================================================*/
.reform-container {
    padding-bottom: 250px;

    .block {
        &+& {
            margin-top: 400px;

            @media (max-width: 767px) {
                margin-top: 150px;
            }
        }

        .content-wrap {
            .note {
                display: block;
                width: fit-content;
                margin: 20px auto 0;
                font-size: clamp(0.875rem, 0.667rem + 0.43vw, 1.188rem);
                color: #fff;
                padding: 5px 2em;
                border-radius: 100vh;
                background-color: #000;

                @media (max-width: 767px) {
                    padding: 5px 1em;
                }
            }
        }
    }

    .block01 {
        width: min(95%, 1375px);
        margin: 175px auto 0;

        @media (max-width: 959px) {
            margin: 115px auto 0;
        }
        @media (max-width: 767px) {
            margin: 80px auto 0;
        }

        .__inner01 {
            width: min(95%, 1035px);
            margin: 0 auto;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;

            @media (max-width: 767px) {
                display: block;
            }

            .text-box {
                width: 48%;

                @media (max-width: 767px) {
                    width: 100%;
                }

                .em {
                    margin-top: 55px;

                    @media (max-width: 767px) {
                        font-size: 17px;
                    }
                }
                .txt {
                    font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
                    letter-spacing: 0.12em;
                    line-height: 1.875em;
                    margin-top: 1em;

                    @media (max-width: 959px) {
                        margin-top: 30px;
                    }

                    @media (max-width: 767px) {
                        line-height: 1.6em;
                    }
                }
            }

            .img {
                width: 38%;

                @media (max-width: 959px) {
                    width: 50%;
                }
                @media (max-width: 767px) {
                    width: 80%;
                    margin: 50px auto 0;
                }
            }
        }
        .__inner02 {
            width: min(90%, 975px);
            margin: 120px auto 0;
            display: flex;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 767px) {
                display: block;
                margin: 70px auto 0;
            }

            .__inner02_L {
                width: 54%;

                @media (max-width: 767px) {
                    width: 100%;
                }

                .txt {
                    font-size: clamp(1.188rem, 0.979rem + 0.43vw, 1.5rem);
                    text-align: center;
                    margin-bottom: 18px;

                    @media (max-width: 767px) {
                        font-size: clamp(0.938rem, 0.759rem + 0.89vw, 1.188rem);
                    }
                }
            }
            .__inner02_R {
                width: 38%;

                @media (max-width: 959px) {
                    width: 43%;
                }
                @media (max-width: 767px) {
                    width: 100%;
                    margin-top: 40px;
                }

                .culc-box {
                    padding: 27px 55.6px;
                    border: 1px solid #5ed0d0;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    gap: 15px;

                    @media (max-width: 959px) {
                        padding: 27px 25px;
                    }
                    @media (max-width: 767px) {
                        padding: 18px;
                        gap: 0;
                    }

                    .txt {
                        font-size: 21px;
                        font-weight: 500;
                        letter-spacing: 0.06em;
                        color: #5ed0d0;

                        @media (max-width: 767px) {
                            font-size: clamp(1.063rem, 0.884rem + 0.89vw, 1.313rem);
                        }
                    }
                    .culc {
                        font-size: 37px;
                        letter-spacing: 0.06em;
                        font-weight: 700;

                        @media (max-width: 767px) {
                            font-size: clamp(1.875rem, 1.763rem + 0.46vw, 2.313rem);
                        }

                        .num {
                            font-size: 1.2em;
                        }

                        .unit {
                            font-family: var(--font-en-mincho);
                            font-size: 22px;
                            font-weight: 700;
                            letter-spacing: 0.06em;
                        }
                    }
                }
            }
        }

        .__inner03 {
            margin-top: 72px;
            display: flex;
            gap: 30px;

            @media (max-width: 959px) {
                display: block;
            }
            
            .facilities {
                width: calc(100% / 3);

                @media (max-width: 959px) {
                    width: 70%;
                    margin: 0 auto;

                    &+& {
                        margin-top: 20px;
                    }
                }
                @media (max-width: 767px) {
                    width: 80%;
                }
            }

            .img {
                width: auto;

                @media (min-width: 960px) {
                    height: 228px;
                }

                @media (max-width: 959px) {
                    width: 80%;
                    margin-inline: auto;
                }
            }
            .txt {
                margin-top: 20px;
                font-size: 21px;
                letter-spacing: 0.04em;
                color: #d5151f;
                line-height: 1.4em;
                width: fit-content;
                margin: 0 auto;

                @media (max-width: 767px) {
                    font-size: clamp(0.938rem, 0.614rem + 1.33vw, 1.25rem);
                }
            }
        }
    }

    .block02 {
        .reform-title {
            width: min(80%, 1045px);
            margin: 0 auto;
        }
        .__inner01 {
            width: min(80%, 1045px);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 767px) {
                display: block;
            }

            .text-box {
                width: 37%;

                @media (max-width: 959px) {
                    width: 46%;
                }
                @media (max-width: 767px) {
                    width: 100%;
                }

                .em {
                    margin-top: 63px;

                    @media (max-width: 767px) {
                        font-size: 17px;
                        margin-top: 50px;
                    }
                }
                .point-wrap {
                    margin-top: 64px;
                    display: flex;
                    gap: 20px;

                    @media (max-width: 959px) {
                        margin-top: 30px;
                    }
                    @media (max-width: 767px) {
                        margin-top: 20px;
                    }

                    .point {
                        width: calc(100% / 3);
                        aspect-ratio: 1 / 1;
                        border-radius: 50%;
                        border: 1px solid #fa5200;
                        display: flex;
                        flex-direction: column;
                        justify-content: center;

                        .txt {
                            color: #fa5200;
                            text-align: center;
                            font-size: clamp(0.875rem, 0.827rem + 0.2vw, 1.063rem);
                            letter-spacing: 0.18em;
                            line-height: 1.23em;
                        }
                    }
                }
            }

            .img {
                width: 46%;

                @media (max-width: 767px) {
                    width: 100%;
                    margin-top: 40px;
                }
            }
        }

        .__inner02 {
            width: min(90%, 1153px);
            margin: 50px auto 0;
            display: flex;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 767px) {
                display: block;
            }

            .img01 {
                width: 44%;

                @media (max-width: 767px) {
                    width: 100%;
                }
            }
            .img02 {
                width: 50%;

                @media (max-width: 767px) {
                    width: 100%;
                }
            }
        }
        .__inner03 {
            width: min(95%, 1375px);
            margin: 88px auto 0;
            display: flex;
            gap: 30px;

            @media (max-width: 959px) {
                display: block;
                width: 80%;
            }

            .facilities {
                width: calc(100% / 3);
                padding-bottom: 18px;

                &.faci01 {
                    .img {
                        height: 230px;

                        @media (max-width: 767px) {
                            width: 70%;
                            height: auto;
                            margin-inline: auto;
                        }

                        @media (min-width: 768px) {
                            picture, img {
                                width: auto;
                                height: 100%;
                                object-fit: cover;
                                margin: 0 auto;
                            }
                        }
                    }
                }
                &.faci02 {

                    .img {
                        width: 53%;
                        margin: 0 auto 20px;
                    }
                }
                &.faci03 {
                    .img {
                        width: 82%;
                        margin-inline: auto;
                    }
                }

                @media (max-width: 959px) {
                    width: 70%;
                    margin: 0 auto;

                    &+& {
                        margin-top: 20px;
                    }
                }
                @media (max-width: 767px) {
                    width: 100%;
                }

                .txt {
                    font-size: 15px;
                    letter-spacing: 0.12em;
                    line-height: 1.56em;
                    width: 85%;
                    margin: 0 auto;

                    @media (max-width: 767px) {
                        font-size: 13px;
                    }
                }
            }
        }
    }

    .block03 {
        .__inner01 {
            width: min(80%, 1132px);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 767px) {
                display: block;
            }

            .text-box {
                width: 43.8%;

                @media (max-width: 767px) {
                    width: 100%;
                }

                .txt {
                    margin-top: 66px;
                    font-size: clamp(1.25rem, 1.083rem + 0.35vw, 1.5rem);
                    letter-spacing: 0.06em;
                    line-height: 1.54em;

                    @media (max-width: 767px) {
                        margin-top: 45px;
                        font-size: 17px;
                    }
                }
                .content-wrap {
                    margin-top: 42px;

                    @media (max-width: 767px) {
                        margin-top: 20px;
                    }
                }
                .content-wrap__inner {
                    justify-content: right;
                    gap: 13px;

                    @media (max-width: 959px) {
                        justify-content: center;
                    }
                }
                .note {
                    margin-top: 21px;
                    margin-right: 0;

                    @media (max-width: 767px) {
                        margin-top: 10px;
                        margin-inline: auto;
                    }
                }
            }
            .img {
                width: 49%;

                @media (max-width: 767px) {
                    width: 70%;
                    margin: 30px auto 0;
                }
            }
        }

        .__inner02 {
            width: min(70%, 816px);
            margin: 52px auto 0;

            @media (max-width: 767px) {
                margin: 80px auto 0;
                width: 80%;
            }

            .facilities + .facilities {
                margin-top: 46px;
            }
            .faci01 {
                padding-bottom: 84px;
                
                @media (max-width: 767px) {
                    padding-bottom: 30px;
                }

                .img {
                    width: 92%;
                    margin-inline: auto;
                }
                .txt {
                    width: 92%;
                    margin-inline: auto;
                }
            }
            .faci02 {
                padding-bottom: 43px;
            }
            .faci02__inner {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                width: 93%;
                margin: 0 auto;
                
                @media (max-width: 767px) {
                    display: block;
                }

                .img {
                    width: 47%;
                    margin-bottom: 0;

                    @media (max-width: 767px) {
                        width: 100%;
                    }
                }
                .text-box {
                    width: 51.7%;

                    @media (max-width: 767px) {
                        width: 100%;
                        margin-top: 5px;
                    }

                    .txt {
                        margin-top: 60px;
                        padding-left: 1em;

                        @media (max-width: 959px) {
                            margin-top: 30px;
                        }
                    }
                }
            }
            .txt {
                font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
                letter-spacing: 0.12em;
                line-height: 1.56em;

                @media (max-width: 767px) {
                    font-size: 13px;
                }
            }
        }
    }

    .block04 {
        .__inner01 {
            width: min(85%, 1046px);
            margin: 0 auto;
            display: flex;
            align-items: flex-start;
            justify-content: space-between;

            @media (max-width: 767px) {
                display: block;
            }

            .text-box {
                width: 47%;

                @media (max-width: 767px) {
                    width: 100%;
                }

                .em {
                    margin-top: 120px;

                    @media (max-width: 959px) {
                        margin-top: 40px;
                    }
                    @media (max-width: 767px) {
                        font-size: 17px;
                    }
                }
                .txt {
                    margin-top: 1em;
                    font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
                    letter-spacing: 0.12em;

                    @media (max-width: 767px) {
                        font-size: 14px;
                    }
                }
            }
            .img {
                width: 47%;

                @media (max-width: 767px) {
                    width: 100%;
                    margin-top: 20px;
                }
            }
        }

        .__inner02 {
            width: min(95%, 1141px);
            margin: 154px auto 0;

            @media (max-width: 767px) {
                width: 80%;
            }

            .facilities {
                padding-bottom: 55px;

                .facilities-name {
                    margin-bottom: 48px;
                }
            }

            .content-wrap__inner {
                width: 80%;
                margin: 0 auto;
                gap: 21px;

                @media (max-width: 959px) {
                    width: 90%;
                    gap: 10px;
                }
                @media (max-width: 767px) {
                    flex-direction: column;
                    width: 95%;
                    gap: 0;
                }
            }

            .content {
                width: calc(100% / 5);

                @media (max-width: 767px) {
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    &+& {
                        margin-top: 8px;
                    }
                }

                .circle {
                    background-color: #349734;
                    outline: 11px solid #a9d481;
                    width: 95%;
                    margin: 0 auto;

                    @media (max-width: 767px) {
                        width: 35%;
                        margin: 0;
                        outline: 7px solid #a9d481;
                    }
                }
                .txt {
                    color: #349734;

                    @media (max-width: 767px) {
                        width: 53%;
                    }
                }
            }

            .img {
                width: 55%;
                margin: 62px auto 0;

                @media (max-width: 767px) {
                    width: 80%;
                    margin: 30px auto 0;
                }
            }
        }

        .__inner03 {
            width: min(85%, 1000px);
            margin: 112px auto 0;
            display: flex;
            align-items: flex-end;
            justify-content: space-between;

            @media (max-width: 959px) {
                display: block;
            }
        }
        .text-box {
            width: 50%;

            @media (max-width: 959px) {
                width: 100%;
                display: flex;
                flex-direction: column;
            }

            .tit {
                font-size: 24px;
                letter-spacing: 0.06em;
                margin-bottom: 20px;
                text-align: center;

                @media (max-width: 767px) {
                    font-size: clamp(1.188rem, 0.864rem + 1.33vw, 1.5rem);
                }
            }
        }
        .type-wrap {
            border-radius: 7px;
            background-color: #f5f8fc;
            padding: 20px 0 22px 33px;

            @media (max-width: 767px) {
                padding: 10px 0 10px 15px;
            }

            &+& {
                margin-top: 25px;
            }

            @media (max-width: 959px) {
                &.main {
                    order: 4;
                }
            }

            .type-name {
                font-size: 21px;
                letter-spacing: 0.04em;
                color: #d5151f;

                @media (max-width: 767px) {
                    font-size: clamp(1.125rem, 0.931rem + 0.8vw, 1.313rem);
                }
            }
            .txt {
                font-size: 17px;
                letter-spacing: 0.12em;
                line-height: 1.76em;
                margin-top: 10px;

                @media (max-width: 767px) {
                    font-size: clamp(0.875rem, 0.681rem + 0.8vw, 1.063rem);
                }
            }
        }

        .type__R {
            width: 43%;
            background-color: transparent;
            padding: 0;
            margin-bottom: 24px;

            @media (max-width: 959px) {
                width: 100%;
                display: flex;
                justify-content: center;
                gap: 40px;
                margin-top: 50px;

                .img {
                    width: 60%;
                }
            }

            @media (max-width: 767px) {
                display: block;

                .img {
                    width: 80%;
                    margin: 0 auto;
                }
            }

            .type-name {
                text-align: center;
                margin-bottom: 22px;
            }
        }
    }
}


/*========================================================
    機器の販売、設置
==========================================================*/
.product-container .function-list {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px 13px;

    @media (max-width: 767px) {
        gap: 10px 8px;
        justify-content: center;
    }

    .function-list__item {
        width: 153px;
        height: 78px;
        border: 1px solid #00428c;
        display: flex;
        align-items: center;
        justify-content: center;

        @media (max-width: 767px) {
            width: 130px;
            height: 60px;
        }

        .txt {
            font-size: 19px;
            letter-spacing: 0.04em;
            line-height: 1.26em;
            color: #00428c;
            text-align: center;

            @media (max-width: 767px) {
                font-size: 16px;
            }
        }
    }
}

.product-container {
    padding-bottom: 280px;

    .product-select {
        @media (max-width: 767px) {
            flex-wrap: wrap;
        }
    }

    .block + .block {
        margin-top: 150px;
    }

    .block01 {
        width: min(90%, 1200px);
        margin: 0 auto;
        padding-top: 140px;

        .__inner01 {
            display: flex;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 767px) {
                display: block;
            }

            .text-box {
                width: 47%;

                @media (max-width: 767px) {
                    width: 100%;
                    margin: 0 auto;
                }

                .em {
                    margin-top: 67px;

                    @media (max-width: 767px) {
                        margin-top: 40px;
                    }
                }
                .txt {
                    margin-top: 47px;
                    font-size: clamp(0.875rem, 0.792rem + 0.17vw, 1rem);
                    letter-spacing: 0.12em;
                    line-height: 1.875em;

                    @media (max-width: 767px) {
                        width: 90%;
                        margin: 30px auto 0;
                    }
                }
            }
            .img {
                width: 46.5%;

                @media (max-width: 767px) {
                    width: 100%;
                    margin-top: 20px;
                }
            }
        }
        .__inner02 {
            margin-top: 70px;
            display: flex;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 767px) {
                display: block;
            }

            .img {
                width: 46%;

                @media (max-width: 767px) {
                    width: 100%;
                }
            }
            .text-box {
                width: 50%;

                @media (max-width: 767px) {
                    width: 100%;
                }

                .gas-point-list {
                    @media (max-width: 767px) {
                        margin-top: 40px;
                    }

                    .gas-point-list__item {
                        font-size: clamp(0.875rem, 0.795rem + 0.33vw, 1.188rem);
                        padding: 1em 2em;
                        border-radius: 6.3px;
                        background-color: #f5f8fc;

                        &+& {
                            margin-top: 16px;

                            @media (max-width: 767px) {
                                margin-top: 5px;
                            }
                        }

                        @media (max-width: 767px) {
                            padding: 0.5em 1em;
                        }
                    }
                }
            }
        }
    }

    .block03 {
        width: min(85%, 1141px);
        margin: 0 auto;

        .__inner01 {
            .inner {
                display: flex;
                align-items: flex-end;
                justify-content: space-between;
                padding-right: 70px;

                @media (max-width: 767px) {
                    display: block;
                    padding-right: 0;
                }

                .text-box {
                    width: 45%;

                    @media (max-width: 767px) {
                        width: 100%;
                    }
    
                    .gas-logo {
                        width: 170px;
                        margin-top: 65px;
                    }
                    .em {
                        margin-top: 20px;
                    }
                    .txt {
                        margin-top: 33px;
                        font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                        letter-spacing: 0.12em;
                        line-height: 1.875em; 
                    }
                }
    
                .img {
                    width: 33.2%;

                    @media (max-width: 767px) {
                        margin-top: 20px;
                        width: 100%;
                    }
                }
            }    
        }
        .__inner02 {
            margin-top: 75px;

            .content-wrap {
                width: 80%;
                margin: 0 auto;

                @media (max-width: 767px) {
                    width: 100%;
                }

                .content-wrap__inner {
                    gap: 26px;

                    @media (max-width: 767px) {
                        display: block;
                    }
                }

                .content {
                    width: calc(100% / 5);

                    @media (max-width: 767px) {
                        width: 100%;
                        display: flex;
                        align-items: center;
                        justify-content: center;

                        &+& {
                            margin-top: 8px;
                        }
                    }

                    .circle {
                        background-color: #349734;
                        outline: 9px solid #a9d481;
                        outline-offset: -9px;

                        @media (max-width: 767px) {
                            width: 35%;
                            outline: 7px solid #a9d481;
                            outline-offset: -7px;
                        }
                    }

                    .txt {
                        color: #349734;

                        @media (max-width: 767px) {
                            width: 40%;
                            white-space: nowrap;
                        }
                    }
                }
            }

            .text-box {
                width: 85.5%;
                margin: 70px auto 0;

                @media (max-width: 767px) {
                    margin-top: 40px;
                }

                .tit {
                    text-align: center;
                    font-size: clamp(1.125rem, 1.029rem + 0.39vw, 1.5rem);
                    letter-spacing: 0.04em;
                    color: #d5151f;
                }
                .txt {
                    margin-top: 24px;
                    font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                    letter-spacing: 0.12em;
                    line-height: 1.875em;
                }
            }
        }
    }

    .block04 {
        width: min(90%, 1030px);
        margin: 0 auto;

        .__inner01 {
            display: flex;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 767px) {
                display: block;
            }

            .text-box {
                width: 48%;

                @media (max-width: 767px) {
                    width: 100%;
                    margin-top: 30px;
                }

                .txt {
                    margin-top: 30px;
                    font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                    letter-spacing: 0.12em;
                    line-height: 1.875em;

                    @media (max-width: 767px) {
                        margin-top: 10px;
                    }
                }
            }
            .img {
                width: 42%;

                @media (max-width: 767px) {
                    margin-top: 20px;
                    width: 100%;
                }
            }
        }
        .__inner02 {
            margin-top: 50px;
            @media (max-width: 767px) {
                margin-top: 60px;
            }
            .em {
                padding-left: 1em;
                position: relative;

                &::before {
                    position: absolute;
                    content: "";
                    top: 0.5em;
                    left: 0;
                    width: 11.6px;
                    height: 11.6px;
                    background-color: #000;
                }
            }
            .img {
                width: 80%;
                margin: 30px auto 0;

                @media (max-width: 767px) {
                    width: 100%;
                }
            }
        }
        .__inner03 {
            margin-top: 67px;

            .facilities-name {
                margin-bottom: 48px;
            }

            .content-wrap {
                width: 89%;
                margin: 0 auto;

                @media (max-width: 767px) {
                    width: 100%;
                }

                .content-wrap__inner {
                    @media (max-width: 959px) {
                        width: 90%;
                        gap: 10px;
                    }
                    @media (max-width: 767px) {
                        flex-direction: column;
                        width: 100%;
                        gap: 0;
                    }
                    .content {
                        @media (max-width: 767px) {
                            width: 100%;
                            display: flex;
                            align-items: center;
                            justify-content: center;

                            &+& {
                                margin-top: 8px;
                            }
                        }
                    }

                    .circle {
                        width: min(72%, 158px);
                        margin: 0 auto;
                        background-color: #ca6766;
                        outline: 9px solid #fdca97;
                        outline-offset: -9px;

                        @media (max-width: 767px) {
                            width: 35%;
                            margin: 0;
                        }
                    }
                    .txt {
                        color: #ca6766;

                        @media (max-width: 767px) {
                            width: 55%;
                            display: flex;
                            align-items: center;
                            justify-content: center;
                            margin-top: 0;
                        }
                    }
                }
            }
            .note {
                display: block;
                text-align: right;
                color: red;
                font-size: 14px;
                letter-spacing: 0.12em;
                margin-top: 10px;

                @media (max-width: 767px) {
                    font-size: 9px;
                    width: fit-content;
                    text-align: left;
                    margin: 10px 0 0 auto;
                }
            }
        }
        .__inner04 {
            margin-top: 45px;

            .em {
                padding-left: 1em;
                position: relative;

                &::before {
                    position: absolute;
                    content: "";
                    top: 0.5em;
                    left: 0;
                    width: 11.6px;
                    height: 11.6px;
                    background-color: #000;
                }
            }

        }
    }
    .block05 {
        width: min(90%, 1170px);
        margin: 0 auto;

        .__inner01 {
            display: flex;
            align-items: center;
            justify-content: space-between;

            @media (max-width: 767px) {
                display: block;
            }

            .text-box {
                width: 46%;

                @media (max-width: 767px) {
                    width: 100%;
                    margin-top: 30px;
                }

                .txt {
                    margin-top: 40px;
                    font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                    letter-spacing: 0.12em;
                    line-height: 1.875em;

                    @media (max-width: 767px) {
                        margin-top: 10px;
                    }
                }
            }
            .img {
                width: 33.6%;

                @media (max-width: 767px) {
                    width: 80%;
                    margin: 20px auto 0;
                }
            }
        }
        .__inner02 {
            margin-top: 86px;
            display: flex;
            flex-wrap: wrap;
            gap: 87px 54px;

            @media (max-width: 767px) {
                display: block;
            }

            .box {
                max-width: 555px;

                @media (max-width: 767px) {
                    &+& {
                        margin-top: 40px;
                    }
                }

                .tit {
                    text-align: center;
                    font-size: clamp(1.25rem, 1.17rem + 0.33vw, 1.563rem);
                    letter-spacing: 0.1em;
                    color: #fff;
                    padding: 5px 0;
                    border-radius: 100vh;
                    background-color: #00428c;
                }
                .headline {
                    text-align: center;
                    font-size: clamp(1.063rem, 0.999rem + 0.26vw, 1.313rem);
                    letter-spacing: 0.12em;
                    color: #00428c;
                    margin-top: 20px;
                }
                .img {
                    margin-top: 27px;
                }
                .txt {
                    margin-top: 27px;
                    font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                    letter-spacing: 0.12em;
                    line-height: 1.875em;
                }
            }
        }
    }

    .other-txt {
        width: min(90%, 1170px);
        margin: 150px auto 70px;
        padding: 5px 0;
        text-align: center;
        font-size: 17px;
        background-color: #e0e0e0;

    }


    .block06 {
        width: min(85%, 1100px);
        margin: 0 auto;

        .product-title {
            margin-bottom: 20px;
        }

        .ih-wrap,
        .cooker-wrap,
        .bath-dryer-wrap {
            .__inner01 {
                display: flex;
                align-items: center;
                justify-content: space-between;

                @media (max-width: 767px) {
                    display: block;
                }

                .text-box {
                    width: 47%;

                    @media (max-width: 767px) {
                        width: 95%;
                        margin: 0 auto;
                    }

                    .em {
                        margin-top: 67px;

                        @media (max-width: 767px) {
                            margin-top: 40px;
                        }
                    }

                    .txt {
                        margin-top: 30px;
                        font-size: clamp(0.875rem, 0.843rem + 0.13vw, 1rem);
                        letter-spacing: 0.12em;
                        line-height: 1.875em;

                        @media (max-width: 767px) {
                            margin-top: 20px;
                        }
                    }
                }
                .img {
                    width: 48%;

                    @media (max-width: 767px) {
                        width: 100%;
                        margin-top: 20px;
                    }
                }
            }
        }

        .cooker-wrap {
            margin-top: 280px;
            @media (max-width: 767px) {
                margin-top: 150px;
            }

            .__inner02 {
                width: 80%;
                margin: 0 auto;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 45px;

                @media (max-width: 767px) {
                    width: 100%;
                    display: block;
                    margin-top: 60px;

                    .img {
                        width: 50%;
                        margin: 0 auto;
                    }
                    .function-list {
                        margin-top: 20px;
                    }
                }
            }

            .__inner03 {
                margin-top: 144px;

                .em {
                    padding-left: 1em;
                    position: relative;
                    margin-bottom: 60px;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 0.5em;
                        left: 0;
                        width: 11.6px;
                        height: 11.6px;
                        background-color: #000;
                    }
                }

                .comparison {
                    width: 85%;
                    margin: 0 auto;
                    display: flex;
                    align-items: center;
                    justify-content: space-between;

                    &+& {
                        margin-top: 60px;
                    }

                    @media (max-width: 767px) {
                        width: 100%;
                        display: block;
                    }

                    .img {
                        width: 40%;

                        @media (max-width: 767px) {
                            width: 80%;
                            margin: 0 auto;
                        }
                    }
                    .text-box {
                        width: 53%;

                        @media (max-width: 767px) {
                            width: 100%;
                            margin-top: 30px;
                        }

                        .tit {
                            display: block;
                            width: fit-content;
                            margin: 0 auto;
                            padding: 12px 23px;
                            border: 1px solid #000;
                        }
                        .txt {
                            margin-top: 30px;
                            font-size: 16px;
                            line-height: 1.875em;
                        }
                    }
                }
                .note {
                    margin-top: 86px;
                    padding-left: 1em;
                    font-size: 14px;
                    line-height: 1.3em;
                    position: relative;

                    &::before {
                        position: absolute;
                        content: "";
                        top: 0.45em;
                        left: 0;
                        width: 6.3px;
                        height: 6.3px;
                        background-color: #bfc0c0;
                    }

                    @media (max-width: 767px) {
                        margin-top: 50px;
                        font-size: 12px;
                    }

                    &+& {
                        margin-top: 1em;
                    }
                }
            }
        }
        .bath-dryer-wrap {
            margin-top: 240px;
        }
    }
}