@charset "utf-8";

body {
    box-sizing: border-box;
    background-image: url(../img/bg.jpg);
    font-feature-settings: "palt";
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

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

:root {
    --blue: #0696C7;
    --yellow: #E3F589;
    --white: #f9f9f4;
    --black: #00050f;
    --deepblue: #025DA8;
    --grey: #c9cdd6;
    scroll-behavior: smooth;
}

@media screen and (max-width: 768px) {
    :root {
        font-size: clamp(10px, 2vw + 1rem, 14px);
    }
}

.inner {
    max-width: 1500px;
    margin: 0 auto;
}


/*///////////////////////////
スクロールバー
///////////////////////////*/

body {
    --sb-track-color: #c9cdd6;
    --sb-thumb-color: #025da8;
    --sb-size: 14px;
}

body::-webkit-scrollbar {
    width: var(--sb-size)
}

body::-webkit-scrollbar-track {
    background: var(--sb-track-color);
}

body::-webkit-scrollbar-thumb {
    background: var(--sb-thumb-color);
}

@supports not selector(::-webkit-scrollbar) {
    body {
        scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
    }
}

/*///////////////////////////
ヘッダー
///////////////////////////*/
.gnav-wrapper {
    display: none;
    position: fixed;
    padding: 8px 20px;
    color: var(--white);
    background-color: var(--deepblue);
    width: 100vw;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.gnav-list {
    display: flex;
    justify-content: flex-end;
    gap: 3rem;
    font-size: 9px;
    text-align: center;
    font-weight: 350;
    font-family: "Zen Kaku Gothic New", serif;
    margin-right: 30px;
}

span {
    display: flex;
    justify-content: center;
    font-size: 20px;
    font-family: "Josefin Sans", sans-serif;
    line-height: 1.1;
}

a:hover {
    color: var(--yellow);
}


.gnav-wrapper.visible {
    display: block;
}

@media screen and (max-width: 768px) {
    .gnav-list {
        justify-content: center;
        margin: 0;
        font-size: 7px;
    }

    .gnav-list a {
        pointer-events: none;
    }
}

/*///////////////////////////
グリッド
///////////////////////////*/
.boots-logo {
    background-color: var(--blue);
    color: var(--white);
    padding: 32px 10px;
    text-align: center;
    font-size: clamp(10px, .0286rem +2.5445vw, 20px);
    font-weight: bold;
    font-family: "henderson-sans-basic", sans-serif;
    font-weight: 700;
    line-height: 1.1;
}

.boots-logo::before {
    content: url("../img/boots.svg");
    display: block;
}

.grid {
    display: grid;
    grid-template-columns: 20% 20% auto 220px;
    grid-template-rows: 360px 200px;
    gap: 10px;
    background-color: #F5F4F2;
}

.item1 {
    grid-column: 1/2;
    grid-row: 1/2;
}

.item2 {
    grid-column: 2/4;
    grid-row: 1/2;
}

.item3 {
    grid-column: 4/5;
    grid-row: 1/3;
}

.item4 {
    grid-column: 1/3;
    grid-row: 2/3;
}

.item5 {
    grid-column: 3/4;
    grid-row: 2/3;
}

@media screen and (max-width: 768px) {
    .grid {
        grid-template-columns: 20% 20% auto;
        grid-template-rows: 360px 180px 180px;
    }

    .item1 {
        grid-column: 1/2;
        grid-row: 1/-1;
    }

    .item3 {
        grid-column: 2/4;
        grid-row: 3/4;
    }

    .item4 {
        grid-column: 2/3;
    }
}

.container {
    display: grid;
    grid-template-columns: 200px 30% 1fr 20%;
    grid-template-rows: 300px 30% 50%;
    gap: 10px;
    margin: 30px 0;
}

.container .item:nth-child(n+1):nth-child(-n+6) {
    background-color: burlywood;
}

.container .item:nth-child(1) {
    grid-column: 1/-1;
    grid-row: 1/2;
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.container .item:nth-child(2) {
    grid-column: 1;
    grid-row: 2/4;
    clip-path: ellipse(60% 40%);
}

.container .item:nth-child(4) {
    grid-column: 3/5;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.container .item:nth-child(5) {
    grid-column: 2/4;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/*///////////////////////////
アバウト
///////////////////////////*/
#about {
    margin: 40px 30px;
    padding: 70px 0;
}

.about {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

.about h2 {
    font-size: 28px;
    font-size: clamp(20px, 1vw + 1rem, 28px);
    font-weight: bold;
    color: var(--blue);
    word-break: keep-all;
}

@media screen and (max-width: 768px) {
    #about {
        margin: -10px 30px 0;
        padding: 70px 0;
    }

    .about {
        display: flex;
        flex-direction: column;
        gap: 150px
    }

    .about h2 {
        font-size: clamp(15px, 2vw + 1rem, 25px);
    }

    .about p {
        color: white;
        font-weight: 320;
        line-height: 1.8;
    }
}

/*///////////////////////////
リボン
///////////////////////////*/
.ribbon {
    font-size: 23px;
    font-weight: bold;
    color: var(--deepblue);
    margin: 20px 30px 0;
    font-family: "Zen Kaku Gothic New", serif;
}

.ribbon {
    --r: .8em;

    border-block: .5em solid #0000;
    padding-inline: .5em calc(var(--r) + .25em);
    line-height: 1.8;
    clip-path: polygon(100% 0, 0 0, 0 100%, 100% 100%, calc(100% - var(--r)) calc(100% - .25em), 100% 50%, calc(100% - var(--r)) .25em);
    background:
        var(--white) padding-box;
    width: fit-content;
}

/*///////////////////////////
共通タイトル
///////////////////////////*/
.title {
    margin-top: 100px;
    padding: 1rem;
    font-size: 40px;
    text-align: center;
    box-shadow: 0 -8px 8px 0 rgba(31, 38, 135, 0.5);
    color: var(--white);
    line-height: 1.2;
    font-family: "Josefin Sans", sans-serif;
    font-weight: bold;
}

.title span {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    color: var(--black);
    letter-spacing: .1;
    font-family: "Zen Kaku Gothic New", serif;
}

@media screen and (max-width: 768px) {
    .title {
        margin-top: 30px;
    }

    .title span {
        font-size: 12px;
        color: var(--grey);
        letter-spacing: .2;
    }
}

/*///////////////////////////
ツアー
///////////////////////////*/

#tour ul {
    display: flex;
    margin-inline: 30px;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 3px dotted rgba(249, 249, 243, .7);
}

#tour ul li {
    width: 35vw;
    padding: 15px 10px;
    background-color: rgba(6, 150, 198, .8);
    border: .7px solid var(--white);
    box-shadow:
        -1px -2px 1px rgba(255, 165, 0, 0.2),
        -1px 1px 2px rgba(255, 255, 0, 0.2),
        4px 4px 3px rgba(0, 255, 0, 0.1),
        5px 5px 4px rgba(0, 0, 255, 0.2),
        6px 6px 5px rgba(75, 0, 130, 0.1),
        7px 7px 6px rgba(238, 130, 238, 0.08),
        8px 8px 10px rgba(0, 191, 255, 0.1);
}

#tour .last {
    border-bottom: none;
}

.tour-category img {
    width: 100%;
    height: auto;
}

h4 {
    font-weight: 500;
    font-size: 16px;
    margin: .3rem 0 .5rem;
    color: var(--white);
    word-break: keep-all;
}

.tour-category p {
    font-weight: 400;
    background-color: rgba(255, 255, 255, .7);
    border-radius: 5px;
    padding: 0.5rem;
}

@media screen and (max-width: 768px) {
    #tour ul {
        display: flex;
        flex-direction: column;
    }

    #tour ul li {
        width: 100%;
        padding: 15px;
    }

    h4 {
        font-size: clamp(12px, 3vw + 1rem, 15px);
        margin: .3rem 0 .5rem;
        color: var(--white);
    }
}

/*///////////////////////////
アクセス
///////////////////////////*/
#Access {
    margin: 30px auto;
}

#Access .title {
    margin-bottom: 30px;
    border-top: 1px solid var(--grey);
}

#Access .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1em;
}

#Access .title span {
    color: var(--grey);
}

.map {
    position: relative;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.map iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-wrap {
    width: 70%;
    margin-left: 30px;
}

.Access {
    margin-right: 30px;
}

.Access .boots-logo {
    background-color: transparent;
    padding: 10px;
}

.Access li:nth-child(n+2):nth-child(-n+4) {
    color: var(--grey);
    font-weight: bold;
    border-bottom: 1px solid var(--blue);
    margin-top: 20px;
}

.Access span {
    font-weight: normal;
    color: var(--white);
}

@media screen and (max-width: 768px) {
    #Access .title {
        margin: 100px 0 0px;
        border-top: 1px solid var(--grey);
    }

    #Access .inner {
        flex-direction: column-reverse;
    }

    .map-wrap {
        width: 100%;
        margin: 0 30px;
    }

    .Access {
        margin-right: 0px;
    }

    .Access .boots-logo {
        display: none;
    }

    .Access li:nth-child(n+2):nth-child(-n+4) {
        margin-bottom: 10px;
        font-weight: 500;
    }
}


/*///////////////////////////
お問い合わせ
///////////////////////////*/
#contact {
    margin: 20px auto 0;
    background-color: var(--grey);
}

#contact .title {
    color: var(--deepblue);
    padding-top: 80px;
}

#contact p,
form {
    margin-inline: 20vw;
}

#contact p {
    font-size: 12px;
    padding: 50px 0;
}

form {
    display: flex;
    flex-direction: column;
}

.form-item {
    display: flex;
    flex-direction: column;
}

label {
    margin: 20px 0 10px;
}

input,
textarea {
    padding: .3rem;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--deepblue);
}

textarea {
    border: 1px solid var(--deepblue);
}

.form-btn {
    display: flex;
    justify-content: center;
    /* ボタンを水平方向に中央揃え */
}

.form-btn input {
    padding: 10px 0;
    background-color: var(--deepblue);
    width: 35%;
    color: white;
    border-bottom: none;
    text-align: center;
    margin: 40px 0;
}

/*///////////////////////////
フッター
///////////////////////////*/
footer {
    text-align: center;
    font-size: 10px;
    padding: 2em;
}