* {
    font-family: "Zen Maru Gothic", "Gothic";
    /* text-decoration: none; */
    list-style: none;
    padding: 0;
    margin: 0;
    color: #653827;
    transition: 0.2s;
    scroll-behavior: smooth;
    /* border: red dotted;  */
}

.zen-maru-gothic-light {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 300;
    font-style: normal;
}

.zen-maru-gothic-regular {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 400;
    font-style: normal;
}

.zen-maru-gothic-medium {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    font-style: normal;
}

.zen-maru-gothic-bold {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 700;
    font-style: normal;
}

.zen-maru-gothic-black {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 900;
    font-style: normal;
}


h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 3rem;
    font-weight: bold;
}

h3 {
    font-size: 1.5rem;
    font-weight: bold;
}

h4 {
    font-size: 1rem;
    font-weight: bold;
}

p {
    font-size: 0.875rem;
}

body {
    background-color: #fff;
    /* 基本の背景色 */
    background-image: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
        /* ベース色 */
        url(../images/noise.png);
    /* ノイズ画像 */
    background-repeat: repeat;
    /* 繰り返し */
    background-size: 200px;
    /* ノイズパターンのサイズ調整 */
}

/* ここからヘッダー */

.headerWrapper {
    padding-bottom: 56px;
    background-color: #E3A76C;
    border-radius: 48px;
}

.titleContainer {
    text-align: center;
    background-color: #E3A76C;
    padding: 60px 0;
    border-bottom: #653827 6px dashed;

}

.titleImg {
    display: inline-block;
    text-align: center;
    width: 2.8rem;
}

/* ここからナビ */

.contentsWrapper {
    margin: 64px 11vw 0px 11vw;
}

.btnConteiner {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 64px;
}

li {
    background-clip: padding-box;
    background-color: #F8EED4;
    border: 8px solid rgba(248, 238, 212, 0.5);
    border-radius: 40px;
    margin-right: 1.25vw;
    /* margin-bottom: 20px; */
}

li a {
    text-decoration: none;
    font-weight: bold;
    line-height: 40px;
    display: inline-block;
    font-size: 0.875rem;
    ;
    padding: 0 2.083vw;
}

/* li:hover {
    background-color: #E3A76C;
    border: 8px solid rgba(227, 167, 108, 0.6);
} */

li:hover a {
    color: #e29c56;
}

.SELFli {
    background-color: #E3A76C;
    border: 8px solid rgba(227, 167, 108, 0.6);

}

.SELFli a {
    color: #ffffff;
}

.SELFli:hover a {
    color: #fff;
}


/* ここからアーティクル (モーダルリンク)*/

.articleWrapper {
    display: grid;
    grid-template-columns: 22vw 22vw 22vw;
    grid-template-rows: auto;
    justify-content: space-between;
    margin-bottom: 136px;
}

article {
    margin-bottom: 64px;
}

article p {
    line-height: 2.5;
}

article img {
    width: 22vw;
    height: 22vw;
    border-radius: 20px;
    /* border: rgba(255, 255, 255, 0.6) 8px solid; */
}

/* article img:hover {
    transform: scale(1.05);
    opacity: 0.8;
} */

article:hover {
    h4,
    p {
        color: #e29c56;
    }

    img {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

article h4 {
    margin-top: 16px;
}

.url i {
    color: #e29c56;
}

.url {
    color: #e29c56;
}

.url:hover {
        text-decoration: none;
}

/* ここからモーダルラップ1 */
.modal-1__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-1__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-1__open-label,
.modal-1__close-label {
    cursor: pointer;
}

article h4:hover {
    color: #e29c56;
}

.modal-1 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-1__open-input:checked+label+input+.modal-1 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-1__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-1__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-1__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-1__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}

/* 中身 */

.detailWrapper {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: 1fr;
}


.detailContainer1Fixed {
    position: fixed;
    width: 34%;
}

.detailContainer1Fixed h5 {
    margin-top: 2.5vw;
    margin-bottom: 1vw;
    line-height: 2.6em;
    width: 9.1em;
    border-radius: 1.3em;
    background-color: #653827;
    color: #fff;
    font-weight: normal;
    text-align: center;
}

.detailContainer1Fixed h4 {
    margin-bottom: 1vw;
}

.detailContainer1Fixed p {
    line-height: 1.8;
}

.worksType {
    font-size: 1rem;
    font-weight: bold;
    margin-top: 1.67vw;
    padding-bottom: 0.4167vw;
    border-bottom: #653827 1px dashed;
    margin-bottom: 1.67vw;
}

.date {
    font-size: 0.9375rem;
}

.detailContainer2 img {
    width: 100%;
    margin-bottom: 3.35vw;
}

/* 背景のグレー */
.modal-1__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-1-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-1__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-1__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-1__content-wrap {
        width: 90vw;
    }

    .modal-1__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}


/* ここからモーダル２ */
/* ここからモーダルラップ */
.modal-2__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-2__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-2__open-label,
.modal-2__close-label {
    cursor: pointer;
}


.modal-2 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-2__open-input:checked+label+input+.modal-2 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-2__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-2__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-2__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-2__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-2__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-2-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-1__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-1__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-1__content-wrap {
        width: 90vw;
    }

    .modal-1__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}



/* ここからモーダル3 */
/* ここからモーダルラップ */
.modal-3__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-3__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-3__open-label,
.modal-3__close-label {
    cursor: pointer;
}


.modal-3 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-3__open-input:checked+label+input+.modal-3 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-3__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-3__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-3__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-3__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-3__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-3-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-3__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-3__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-3__content-wrap {
        width: 90vw;
    }

    .modal-3__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル4 */
/* ここからモーダルラップ */
.modal-4__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-4__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-4__open-label,
.modal-4__close-label {
    cursor: pointer;
}


.modal-4 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-4__open-input:checked+label+input+.modal-4 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-4__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-4__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-4__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-4__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-4__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-4-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-4__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-4__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-4__content-wrap {
        width: 90vw;
    }

    .modal-4__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル5 */
/* ここからモーダルラップ */
.modal-5__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-5__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-5__open-label,
.modal-5__close-label {
    cursor: pointer;
}


.modal-5 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-5__open-input:checked+label+input+.modal-5 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-5__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-5__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-5__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-5__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-5__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-5-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-5__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-5__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-5__content-wrap {
        width: 90vw;
    }

    .modal-5__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル6 */
/* ここからモーダルラップ */
.modal-6__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-6__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-6__open-label,
.modal-6__close-label {
    cursor: pointer;
}


.modal-6 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-6__open-input:checked+label+input+.modal-6 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-6__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-6__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-6__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-6__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-6__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-6-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-6__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-6__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-6__content-wrap {
        width: 90vw;
    }

    .modal-6__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル7 */
/* ここからモーダルラップ */
.modal-7__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-7__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-7__open-label,
.modal-7__close-label {
    cursor: pointer;
}


.modal-7 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-7__open-input:checked+label+input+.modal-7 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-7__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-7__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-7__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-7__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-7__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-7-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-7__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-7__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-7__content-wrap {
        width: 90vw;
    }

    .modal-7__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル8 */
/* ここからモーダルラップ */
.modal-8__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-8__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-8__open-label,
.modal-8__close-label {
    cursor: pointer;
}


.modal-8 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-8__open-input:checked+label+input+.modal-8 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-8__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-8__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-8__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-8__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-8__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-8-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-8__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-8__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-8__content-wrap {
        width: 90vw;
    }

    .modal-8__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル9 */
/* ここからモーダルラップ */
.modal-9__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-9__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-9__open-label,
.modal-9__close-label {
    cursor: pointer;
}


.modal-9 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-9__open-input:checked+label+input+.modal-9 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-9__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-9__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-9__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-9__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-9__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-9-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-9__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-9__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-9__content-wrap {
        width: 90vw;
    }

    .modal-9__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル10 */
/* ここからモーダルラップ */
.modal-10__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-10__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-10__open-label,
.modal-10__close-label {
    cursor: pointer;
}


.modal-10 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-10__open-input:checked+label+input+.modal-10 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-10__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-10__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-10__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-10__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-10__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-10-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-10__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-10__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-10__content-wrap {
        width: 90vw;
    }

    .modal-10__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル11 */
/* ここからモーダルラップ */
.modal-11__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-11__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-11__open-label,
.modal-11__close-label {
    cursor: pointer;
}


.modal-11 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-11__open-input:checked+label+input+.modal-11 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-11__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-11__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-11__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-11__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-11__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-11-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-11__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-11__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-11__content-wrap {
        width: 90vw;
    }

    .modal-11__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル12 */
/* ここからモーダルラップ */
.modal-12__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-12__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-12__open-label,
.modal-12__close-label {
    cursor: pointer;
}


.modal-12 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-12__open-input:checked+label+input+.modal-12 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-12__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-12__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-12__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-12__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-12__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-12-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-12__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-12__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-12__content-wrap {
        width: 90vw;
    }

    .modal-12__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル13 */
/* ここからモーダルラップ */
.modal-13__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-13__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-13__open-label,
.modal-13__close-label {
    cursor: pointer;
}


.modal-13 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-13__open-input:checked+label+input+.modal-13 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-13__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-13__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-13__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-13__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-13__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-13-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-13__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-13__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-13__content-wrap {
        width: 90vw;
    }

    .modal-13__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル14 */
/* ここからモーダルラップ */
.modal-14__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-14__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-14__open-label,
.modal-14__close-label {
    cursor: pointer;
}


.modal-14 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-14__open-input:checked+label+input+.modal-14 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-14__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-14__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-14__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-14__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-14__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-14-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-14__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-14__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-14__content-wrap {
        width: 90vw;
    }

    .modal-14__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル15 */
/* ここからモーダルラップ */
.modal-15__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-15__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-15__open-label,
.modal-15__close-label {
    cursor: pointer;
}


.modal-15 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-15__open-input:checked+label+input+.modal-15 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-15__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-15__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-15__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-15__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-15__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-15-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-15__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-15__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-15__content-wrap {
        width: 90vw;
    }

    .modal-15__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル16 */
/* ここからモーダルラップ */
.modal-16__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-16__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-16__open-label,
.modal-16__close-label {
    cursor: pointer;
}


.modal-16 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-16__open-input:checked+label+input+.modal-16 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-16__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-16__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-16__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-16__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-16__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-16-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-16__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-16__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-16__content-wrap {
        width: 90vw;
    }

    .modal-16__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル17 */
/* ここからモーダルラップ */
.modal-17__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-17__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-17__open-label,
.modal-17__close-label {
    cursor: pointer;
}


.modal-17 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-17__open-input:checked+label+input+.modal-17 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-17__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-17__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-17__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-17__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-17__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-17-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-17__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-17__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-17__content-wrap {
        width: 90vw;
    }

    .modal-17__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル18 */
/* ここからモーダルラップ */
.modal-18__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-18__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-18__open-label,
.modal-18__close-label {
    cursor: pointer;
}


.modal-18 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-18__open-input:checked+label+input+.modal-18 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-18__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-18__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-18__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-18__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-18__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-18-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-18__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-18__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-18__content-wrap {
        width: 90vw;
    }

    .modal-18__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからモーダル19 */
/* ここからモーダルラップ */
.modal-19__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-19__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-19__open-label,
.modal-19__close-label {
    cursor: pointer;
}


.modal-19 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-19__open-input:checked+label+input+.modal-19 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-19__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-19__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-19__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-19__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-19__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-19-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-19__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-19__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-19__content-wrap {
        width: 90vw;
    }

    .modal-19__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}



/* ここからモーダル20 */
/* ここからモーダルラップ */
.modal-20__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-20__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-20__open-label,
.modal-20__close-label {
    cursor: pointer;
}


.modal-20 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-20__open-input:checked+label+input+.modal-20 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-20__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-20__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-20__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-20__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-20__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-20-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-20__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-20__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-20__content-wrap {
        width: 90vw;
    }

    .modal-20__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}


/* ここからモーダル21 */
/* ここからモーダルラップ */
.modal-21__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-21__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-21__open-label,
.modal-21__close-label {
    cursor: pointer;
}


.modal-21 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-21__open-input:checked+label+input+.modal-21 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-21__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-21__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-21__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-21__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-21__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-21-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-21__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-21__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-21__content-wrap {
        width: 90vw;
    }

    .modal-21__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}


/* ここからモーダル22 */
/* ここからモーダルラップ */
.modal-22__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-22__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-22__open-label,
.modal-22__close-label {
    cursor: pointer;
}


.modal-22 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-22__open-input:checked+label+input+.modal-22 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-22__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-22__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-22__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-22__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-22__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-22-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-22__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-22__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-22__content-wrap {
        width: 90vw;
    }

    .modal-22__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}


/* ここからモーダル23 */
/* ここからモーダルラップ */
.modal-23__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-23__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-23__open-label,
.modal-23__close-label {
    cursor: pointer;
}


.modal-23 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-23__open-input:checked+label+input+.modal-23 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-23__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-23__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-23__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-23__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-23__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-23-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-23__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-23__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-23__content-wrap {
        width: 90vw;
    }

    .modal-23__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}


/* ここからモーダル24 */
/* ここからモーダルラップ */
.modal-24__wrap {
    display: inline-block;
}

/* 元々のラジオボタン消す */
.modal-24__wrap input {
    display: none;
}

/* カーソルの指 */
.modal-24__open-label,
.modal-24__close-label {
    cursor: pointer;
}


.modal-24 {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    /* クリック前非表示↓ */
    display: none;
}

.modal-24__open-input:checked+label+input+.modal-24 {
    display: block;
    /* ゆっくり表示↓ */
    animation: modal-1-animation .6s;
}

/* モーダルの位置など表示 */
.modal-24__content-wrap {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    /* max-width: 650px; */
    padding: 40px 0;
    padding-top: 64px;
    background-color: #fefefe;
    z-index: 2;
    border-radius: 40px;
}

/* 閉じるボタン */
.modal-24__close-label {
    background-color: #653827;
    color: #fff;
    /* border: 2px solid #fff; */
    border-radius: 100%;
    width: 56px;
    height: 56px;
    line-height: 56px;
    cursor: pointer;
    text-align: center;
    display: table-cell;
    position: fixed;
    right: 50%;
    bottom: 20px;
    z-index: 99999;
    font-size: 1.8em;
    font-weight: bold;
}

.modal-24__close-label:hover {
    background-color: #E3A76C;
    color: #653827;
}

/* モーダル内文章 */
.modal-24__content {
    max-height: 75vh;
    overflow-y: auto;
    padding: 0 45px;
}


/* 背景のグレー */
.modal-24__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .45);
    z-index: 1;
}

/* ？いじらない */
@keyframes modal-24-animation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* メディアクエリ */
@media only screen and (max-width: 520px) {
    .modal-24__open-label {
        max-width: 90%;
        padding: .94em 2.1em .94em 2.6em;
    }

    .modal-24__close-label {
        top: -17px;
        right: -4%;
    }

    .modal-24__content-wrap {
        width: 90vw;
    }

    .modal-24__content {
        padding: 33px 21px 35px;
        max-width: 100%;
    }
}

/* ここからフッター1 */

footer {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
}

.FTbackhead {
    height: 9.16vw;
    width: 100%;
    background-color: #fff;
    /* 基本の背景色 */
    background-image: linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)),
        /* ベース色 */
        url(../images/noise.png);
    /* ノイズ画像 */
    background-repeat: repeat;
    /* 繰り返し */
    background-size: 200px;
    /* ノイズパターンのサイズ調整 */
}

.footerContainer1 {
    text-align: center;
}

.FTsiteTitleContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E3A76C;
}

.FTsiteTitleContainer img {
    height: 10vw;
}

.FTsiteTitleContainer h1 {
    font-size: 2.75rem;
}

.FTsiteTitleContainer {
    font-size: 1rem;
}

.snsContainer {
    background-color: #E3A76C;
    padding-top: 40px;
}

.FTinstagram i {
    font-size: 1.5rem;
    background-color: #ffffff;
    border-radius: 100%;
    height: 56px;
    width: 56px;
    line-height: 56px;
    margin: 0 20px;
}

.FTmail i {
    font-size: 1.25rem;
    background-color: #ffffff;
    border-radius: 100%;
    height: 56px;
    width: 56px;
    line-height: 56px;
    padding-right: 0.2vw;
    margin: 0 20px;
}

.FTinstagram i:hover {
    background-color: #653827;
    color: #F8EED4;
}

.FTtwitter i:hover {
    background-color: #653827;
    color: #F8EED4;
}

.FTmail i:hover {
    background-color: #653827;
    color: #F8EED4;
}

/* ここからフッター２ */

.footerContainer2 {
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    background-color: #E3A76C;
}

.footerContainer2 p {
    font-size: 0.8rem;
    font-weight: 500;
    padding-bottom: 48px;
}