:root {
    --main-color: #FF7701;
    --sub-color: #FFF000;
    --accent-color: #E5293D;
    --bg-color: #fff;
}
@font-face {
    font-family: "Noto Sans JP";
    font-display: swap;
    src: url("../fonts/NotoSansJP-VariableFont_wght.ttf") format("truetype");
}
/* @font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url("../fonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/fa-brands-400.woff2") format("woff2");
} */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    color: #000;
    background-color: var(--bg-color);
    font-family: 'Noto Sans JP', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
a {
    -webkit-text-decoration-color: inherit;
    text-decoration-color: inherit;
    color: inherit;
    transition: .3s;
}
a:hover {
    opacity: .8;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
video,
iframe {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/9;
}
sub {
    vertical-align: baseline;
    font-size: .8rem;
}
@media screen and (min-width: 781px) {
    .pc--hidden {display: none !important;}
}
@media screen and (max-width: 780px) {
    .sp--hidden {display: none !important;}
    sub {
        font-size: .7rem;
    }
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    border-top: 15px solid var(--main-color);
    background-color: var(--bg-color);
    z-index: 999;
}
#header .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 1440px;
    margin: 0 auto;
    padding: .6rem 3rem;
}
#header .site-logo {
    width: 50%;
    max-width: 500px;
}
#header .right-contents {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem;
    flex: 1;
}
#header .right-contents .line a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    padding: .6rem;
    background-color: #07B53B;
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 5px;
}
#header .right-contents .line a img {
    aspect-ratio: 1/1;
    width: 35px;
}
button.nav-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: .2rem;
    appearance: none;
    cursor: pointer;
    background-color: transparent;
    outline: none;
    box-shadow: none;
    aspect-ratio: 1/1;
    width: 40px;
    overflow: hidden;
    padding: 0;
    border: none;
}
button.nav-toggle span {
    display: inline-block;
    width: calc((100% - .4rem) / 3);
    aspect-ratio: 1/1;
    background: var(--main-color);
}
.hamburger-menu {
    width: 100vw;
    height: 0;
    background: var(--main-color);
    background: linear-gradient(180deg, var(--main-color) 0%, var(--sub-color) 100%);
    opacity: 0;
    visibility: hidden;
    /* transition: opacity .3s; */
}
body[data-menu="is-open"] .hamburger-menu {
    visibility: visible;
    opacity: 1;
    height: calc(100vh - 88px);
}
.hamburger-menu .hamburger-menu__inner {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 5rem 1rem;
    z-index: 2;
    max-height: calc(100vh - 3rem - 88px);
    overflow-y: auto;
}
.hamburger-menu .close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}
.hamburger-menu .close-btn::before,
.hamburger-menu .close-btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 3px;
    background-color: #fff;
    transform-origin: center;
}
.hamburger-menu .close-btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger-menu .close-btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.hamburger-menu .menu-image {
    position: absolute;
    bottom: 0;
    left: 0;
}
.hamburger-menu .menu {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}
.hamburger-menu .menu li {
    position: relative;
    list-style: none;
}
.hamburger-menu .menu li:not(:first-child) {
    margin-top: 3.2rem;
}
.hamburger-menu .menu li a {
    position: relative;
    display: inline-block;
    width: 100%;
    color: #fff;
    font-size: 1.5rem;
    letter-spacing: .5rem;
    font-weight: 700;
    border-bottom: 2px solid currentColor;
    padding-bottom: 1rem;
    text-decoration: none;
}
.hamburger-menu .menu li.menu-item-has-children > a .accordion-toggle {
    position: absolute;
    top: 50%;
    right: 1rem;
    display: inline-block;
    width: 1rem;
    height: 1rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(calc(-50% - .5rem)) rotate(45deg);
    transition: .3s;
}
.hamburger-menu .menu li.menu-item-has-children > a .accordion-toggle::after {
    content: "";
    width: 2.6rem;
    height: 2.6rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.hamburger-menu .menu li.menu-item-has-children.is-open > a .accordion-toggle {
    transform: translateY(-50%) rotate(-135deg);
}
.hamburger-menu .menu .sub-menu {
    display: none;
}
.hamburger-menu .menu .sub-menu li {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.3rem;
}
.hamburger-menu .menu .sub-menu li a {
    width: 55%;
    font-size: 1rem;
    letter-spacing: 0;
    padding-bottom: .4rem;
}
@media screen and (max-width: 780px) {
    #header .header__inner {
        padding: 1rem .8rem;
        gap: .8rem;
    }
    #header .right-contents .line a {
        font-size: .75rem;
        padding: .8rem .6rem;
        border-radius: 100px;
    }
    #header .right-contents .line a img {
        width: 25px;
    }
    body[data-menu="is-open"] .hamburger-menu {
        height: calc(100vh - 97px);
    }
    .hamburger-menu .menu li a {
        font-size: 1.2rem;
    }
}

#footer {
    margin-top: 13rem;
    border-bottom: 15px solid var(--main-color);
}
#footer .footer__inner {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 1rem 3rem;
}
#footer .site-logo {
    position: absolute;
    top: 50%;
    left: 3rem;
    transform: translateY(-50%);
    text-align: center;
}
#footer .site-logo img {
    width: 350px;
}
#footer .copyright {
    font-size: .75rem;
    color: #333;
    text-align: center;
}
#footer .copyright .site-name {
    margin-bottom: .5rem;
}
@media screen and (max-width: 780px) {
    #footer {
        margin-top: 8rem;
    }
    #footer .footer__inner {
        padding: 1rem;
    }
    #footer .site-logo {
        position: static;
        transform: none;
    }
    #footer .site-logo img {
        width: 100%;
    }
    #footer .copyright {
        margin-top: .8rem;
    }
}

.right-fixed {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}
.right-fixed a {
    width: 90px;
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    background: var(--main-color);
    background: linear-gradient(180deg, var(--main-color) 0%, var(--sub-color) 100%);
    writing-mode: vertical-rl;
    border-radius: 50px 0 0 50px;
    padding: 1.6rem 1.3rem;
    letter-spacing: .9rem;
    text-decoration: none;
    text-orientation: upright;
}
.right-fixed .arrow {
    position: relative;
    display: inline-block;
    aspect-ratio: 1/1;
    width: 50px;
    margin-top: .7rem;
    background-color: var(--main-color);
    border-radius: 50%;
}
.right-fixed .arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    aspect-ratio: 1 / 1;
    width: 28px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
    transform: translate(calc(-50% + 4px), -50%) rotate(90deg);
}
@media screen and (max-width: 780px) {
    .right-fixed a {
        width: 30px;
        font-size: 1.125rem;
        padding: 2rem .1rem;
        letter-spacing: .4rem;
    }
    .right-fixed .arrow {
        width: 24px;
    }
    .right-fixed .arrow::before {
        width: 12px;
        clip-path: polygon(50% 0, 100% 100%, 0 100%);
        transform: translate(calc(-50% + 2px), -50%) rotate(90deg);
    }
}

#main {
    margin-top: 105px;
}
#breadcrumb {
    max-width: 1440px;
    margin: 0 auto;
    padding: 3rem;
    color: #7D7C7C;
    font-size: .8rem;
}
#breadcrumb a {
    text-decoration: none;
}
body.home section:not(#fv) {
    margin-top: 9rem;
}
section .sec__inner {
    max-width: 1020px;
    margin: 0 auto;
    padding: 0 1rem;
}
.sec-title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 5rem;
}
.sec-title::before {
    content: "";
    display: inline-block;
    aspect-ratio: 1/1;
    width: 40px;
    border: 3px solid var(--main-color);
    border-radius: 50%;
    margin-right: .8rem;
}
.sub-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 1.4rem;
}
@media screen and (max-width: 780px) {
    #breadcrumb {
        padding: 1rem .8rem;
        font-size: .7rem;
    }
    #main {
        margin-top: 91px;
    }
    body.home section:not(#fv) {
        margin-top: 5rem;
    }
    .sec-title {
        font-size: 1.9rem;
        margin-bottom: 2rem;
    }
    .sec-title::before {
        width: 32px;
    }
    .sub-title {
        font-size: 1.5rem;
        text-align: center;
    }
}

.more-btn {
    position: relative;
    text-align: right;
    margin-top: 2rem;
}
.more-btn > * {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    font-size: .75rem;
    font-weight: 700;
    padding: 0 2.5rem 0 1.3rem;
    text-decoration: none;
}
.more-btn > *::before {
    position: absolute;
    bottom: -.5rem;
    left: 0;
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
}
.more-btn > *::after {
    position: absolute;
    bottom: 0;
    content: "";
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: var(--main-color);
    transform: skewY(30deg) translateX(3px);
    right: 4px;
}

.back-btn {
    position: relative;
    text-align: center;
    margin-top: 8rem;
}
.back-btn a {
    position: relative;
    display: inline-block;
    color: var(--main-color);
    font-size: .75rem;
    font-weight: 700;
    padding: 0 1.3rem 0 2.5rem;
    text-decoration: none;
}
.back-btn a::before {
    position: absolute;
    bottom: -.5rem;
    left: 0;
    content: "";
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
}
.back-btn a::after {
    position: absolute;
    bottom: 0;
    content: "";
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: var(--main-color);
    transform: skewY(-30deg) translateX(-3px);
    left: 4px;
}

.purchase a {
    position: relative;
    display: inline-block;
    width: 400px;
    box-shadow: 4px 4px 3px 0px rgb(0 0 0 / .4);
    border-radius: 10px;
    padding: 1.2rem 2rem;
    font-size: 1.5rem;
}
.purchase a::before {
    content: "";
    width: calc(100% - .8rem);
    height: calc(100% - .8rem);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 6px solid #fff;
    border-radius: 10px;
}
@media screen and (max-width: 780px) {
    .purchase a {
        width: 90%;
        font-size: 1.25rem;
    }
}

#fv {
    position: relative;
    margin-bottom: 120px;
}
#fv img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
#fv .scroll {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: .3rem;
    position: absolute;
    bottom: -120px;
    left: 50%;
    height: 120px;
    color: var(--main-color);
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: .2rem;
}
#fv .scroll::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 100%;
    background-color: var(--main-color);
}
#fv .scroll::after {
    position: absolute;
    bottom: 0;
    content: "";
    display: inline-block;
    width: 1px;
    height: 20px;
    background-color: var(--main-color);
    transform: skew(-22deg) translateX(4px);
}
@media screen and (max-width: 780px) {
    #fv {
        margin-bottom: 0;
    }
}

.tour-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    list-style: none;
}
.tour-list .tour-item > a {
    display: flex;
    gap: 3rem;
    text-decoration: none;
}
.tour-list .tour-item .thumb {
    position: relative;
    aspect-ratio: 1/1;
    width: calc(100% / 2 - 1.5rem)
}
.tour-list .tour-item[data-status="wait"] .thumb::before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "キャンセル待ち";
    width: 60%;
    min-width: 280px;
    color: #000;
    background-color: #fff;
    font-size: 2rem;
    font-weight: 700;
    padding: .4rem 1.8rem;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    text-align: center;
}
.tour-list .tour-item[data-status="ended"] .thumb::before {
    position: absolute;
    top: 50%;
    left: 50%;
    content: "終了";
    width: 60%;
    min-width: 280px;
    color: #fff;
    background-color: #000;
    font-size: 2rem;
    font-weight: 700;
    padding: .4rem 1.8rem;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    text-align: center;
}
.tour-list .tour-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 4px 4px 3px 0px rgb(0 0 0 / .4);
}
.tour-list .tour-info {
    width: calc(100% / 2 - 1.5rem)
}
.tour-list .tour-item .announcement {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    background-color: var(--main-color);
    padding: .6rem;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 1.8rem;
}
.tour-list .tour-item .tour-title {
    font-size: 2rem;
    font-weight: 500;
    line-height: 2.3rem;
    padding-bottom: .8rem;
    padding-left: 1rem;
    border-bottom: 3px solid var(--main-color);
}
.tour-list .tour-item .free-text {
    margin-top: 1.8rem;
    line-height: 1.8rem;
}
.tour-list .tour-item .tour-detail {
    margin-top: 1.8rem;
}
.tour-list .tour-item .tour-detail dl {
    margin-bottom: .8rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.tour-list .tour-item .tour-detail dt {
    flex-shrink: 0;
    padding: .2rem;
    width: 6rem;
    color: #fff;
    text-align: center;
    background-color: var(--main-color);
    border-radius: 10px;
    font-weight: 700;
}
@media screen and (max-width: 780px) {
    .tour-list .tour-item > a {
        flex-direction: column;
        gap: 1.6rem;
    }
    .tour-list .tour-item .thumb {
        width: 100%;
    }
    .tour-list .tour-info {
        width: 100%;
    }
    .tour-list .tour-item .announcement {
        font-size: 1.5rem;
        margin-bottom: 1.6rem;
    }
    .tour-list .tour-item .tour-title {
        text-align: center;
        font-size: 1.5rem;
        padding-left: 0;
    }
    .tour-list .tour-item[data-status="wait"] .thumb::before {
        font-size: 1.5rem;
        min-width: unset;
    }
    .tour-list .tour-item[data-status="ended"] .thumb::before {
        font-size: 1.5rem;
        min-width: unset;
    }
}

.post-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    list-style: none;
    margin-bottom: 3.8rem;
    letter-spacing: .03rem;
}
.post-list .post-item {
    position: relative;
    width: calc((100% - 6rem) / 3);
    box-shadow: 4px 4px 3px 0px rgb(0 0 0 / .4);
}
.post-list .post-item a {
    text-decoration: none;
}
.post-list .post-item .thumb {
    aspect-ratio: 3/2;
    width: 100%;
}
.post-list .post-item .thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.post-list .post-item .post-info {
    padding: 1rem 1rem 4rem;
}
.post-list .post-item .post-excerpt {
    text-align: justify;
    font-size: 0.9375rem;
    margin-top: 1.5rem;
}
.post-list[data-type="card-type-1"] .post-item .post-title {
    padding-left: .3rem;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    border-left: 5px solid var(--main-color);
}
.post-list[data-type="card-type-1"] .post-item .more-btn {
    position: absolute;
    right: 1rem;
    bottom: 1.5rem;
    margin-top: 0;
}
.post-list[data-type="card-type-2"] .post-item .post-info {
    padding: 1rem 1rem 2rem;
}
.post-list[data-type="card-type-2"] .post-item .post-title {
    font-size: 1rem;
    margin-top: 1rem;
}
.post-list[data-type="card-type-2"] .post-item time {
    font-size: .75rem;
}
.post-list[data-type="card-type-2"] .post-item .post-excerpt {
    margin-top: 1rem;
}
@media screen and (max-width: 780px) {
    .post-list {
        flex-direction: column;
    }
    .post-list .post-item {
        width: 100%;
    }
}

.pagination__container {
    margin-top: 6rem;
}
.pagination__container .nav-links {
    display: flex;
    justify-content: center;
    gap: .7rem;
}
.pagination__container .nav-links > * {
    text-decoration: none;
    border-bottom: 2px solid transparent;
    padding: .1rem .2rem;
    font-size: 1.2rem;
}
.pagination__container .nav-links .current {
    border-bottom-color: var(--main-color);
}

#post-single .post-date {
    font-size: .9rem;
}
#post-single .post-title {
    padding-left: .6rem;
    font-size: 2.3rem;
    font-weight: 600;
    line-height: 1.5;
    border-left: 8px solid var(--main-color);
    margin-top: 1rem;
}
#post-single .post-thumb {
    margin-top: 1.5rem;
}
#post-single .post-contents {
    margin-top: 2.3rem;
}
#post-single .post-contents > * {
    margin-top: 2rem;
}
@media screen and (max-width: 780px) {
    #post-single .post-title {
        font-size: 1.34rem;
        border-left-width: 6px;
    }
}

.has-white-color {
    color: #fff;
}
.has-black-color {
    color: #000;
}
.has-main-color-color {
    color: var(--main-color);
}
.has-sub-color-color {
    color: var(--sub-color);
}
.has-accent-color-color {
    color: var(--accent-color);
}

.has-s-font-size {
    font-size: .75rem;
}
.has-m-font-size {
    font-size: .875rem;
}
.has-l-font-size {
    font-size: 1.5rem;
}
.has-xl-font-size {
    font-size: 2rem;
}
@media screen and (max-width: 780px) {
    .has-l-font-size {
        font-size: 1.2rem;
    }
    .has-xl-font-size {
        font-size: 1.4rem;
    }
}

#post-single .post-contents ul {
    margin-left: 1rem;
}
#post-single .post-contents li:not(:first-child) {
    margin-top: 1.2rem;
}
#post-single .post-contents .wp-block-table {
    margin: 1rem 0;
}
#post-single .post-contents .wp-block-table td,
#post-single .post-contents .wp-block-table th {
    border-color: var(--main-color);
    vertical-align: top;
}
#post-single .post-contents .wp-block-table thead {
    border-bottom: none;
}
#post-single .post-contents .wp-block-table thead th {
    color: #fff;
    background-color: var(--main-color);
    border-color: #fff;
    font-weight: 700;
}


#post-single .post-contents .wp-block-image {
    margin-top: 2rem;
}

#post-single .post-contents .wp-block-group p {
    margin-top: 1rem;
}

#post-single .post-contents .wp-block-snow-monkey-blocks-box {
    padding: .6rem 1rem;
}
#post-single .post-contents .wp-block-snow-monkey-blocks-box p {
    margin-top: 0;
}

#post-single .post-contents h3.wp-block-heading {
    position: relative;
    font-size: 2rem;
    padding-bottom: 1rem;
    margin-bottom: 3rem;
}
#post-single .post-contents h3.wp-block-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 100%;
    max-width: 500px;
    height: 3px;
    background-color: var(--main-color);
}
#post-single .post-contents .wp-block-heading.design-none {
    padding-bottom: 0;
}
#post-single .post-contents .wp-block-heading.design-none::after {
    content: none;
}
#post-single .post-contents .wp-block-heading.design-circle {
    border: 3px solid var(--main-color);
    border-radius: 100px;
    padding: 2.4rem 2rem;
}
#post-single .post-contents .wp-block-heading.design-circle:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    bottom: auto;
    display: block;
    width: calc(100% - 1.2rem);
    height: calc(100% - 1.2rem);
    border: 3px solid var(--main-color);
    background-color: transparent;
    border-radius: 100px;
    transform: translate(-50%, -50%);
}
#post-single .post-contents .wp-block-heading.design-circle:after {
    content: "";
    top: 50%;
    left: 50%;
    bottom: auto;
    max-width: 100%;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    border: 3px solid var(--main-color);
    background-color: transparent;
    border-radius: 100px;
    transform: translate(-50%, -50%);
}
#post-single .post-contents .wp-block-heading .wp-font-awesome-icon {
    margin-right: .8rem;
    vertical-align: middle;
}
#post-single .post-contents .wp-block-heading.design-side-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding-bottom: 0;
}
#post-single .post-contents .wp-block-heading.design-side-bar::after {
    content: none;
}
@media screen and (max-width: 780px) {
    #post-single .post-contents h3.wp-block-heading {
        font-size: 1.25rem;
        margin-bottom: 2rem;
    }
    #post-single .post-contents .wp-block-heading.design-side-bar {
        display: flex;
        gap: .2rem;
        font-size: 1rem;
    }
    #post-single .post-contents .wp-block-heading.design-side-bar img {
        width: 28px !important;
    }
}


#post-single .post-contents .wp-block-snow-monkey-blocks-information {
    margin-bottom: 2.6rem;
}
#post-single .post-contents .wp-block-snow-monkey-blocks-information-item {
    overflow: visible;
}
#post-single .post-contents .wp-block-snow-monkey-blocks-information-item .c-row {
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 1rem;
    margin: 0;
}
#post-single .post-contents .wp-block-snow-monkey-blocks-information-item .c-row__col {
    flex: unset;
    margin-bottom: 0;
    padding-right: 0;
    padding-left: 0;
    width: auto;
}
#post-single .post-contents .wp-block-snow-monkey-blocks-information-item .c-row__col:last-child {
    width: 100%;
    max-width: 100%;
    flex: 1;
}
#post-single .post-contents .wp-block-snow-monkey-blocks-information-item .smb-information__item__label {
    flex-shrink: 0;
    padding: 0 .2rem;
    width: 7.3rem;
    color: #fff;
    text-align: center;
    background-color: var(--main-color);
    border-radius: 10px;
    font-weight: 700;
    line-height: 2;
}
#post-single .post-contents .wp-block-snow-monkey-blocks-information-item .smb-information__item__body {
    line-height: 2;
}
#post-single .post-contents .wp-block-snow-monkey-blocks-information-item p {
    margin-top: 0;
}
@media screen and (max-width: 780px) {
    #post-single .post-contents .wp-block-snow-monkey-blocks-information {
        margin-bottom: 1.5rem;
    }
    #post-single .post-contents .wp-block-snow-monkey-blocks-information-item .c-row {
        flex-direction: column;
        gap: .4rem;
    }
}

#post-single .post-contents #point .point-icon p {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    aspect-ratio: 1/1;
    width: 100%;
    border-radius: 50%;
    padding: .5rem;
    border: 3px solid var(--main-color);
}
#post-single .post-contents #point .point-icon .wp-block-image {
    margin-top: 0;
    text-align: center;
}
#post-single .post-contents #point .point-icon .wp-block-snow-monkey-blocks-flex {
    gap: 1.5rem;
}
@media screen and (max-width: 780px) {
    #post-single .post-contents #point .point-icon .wp-block-snow-monkey-blocks-flex {
        flex-direction: row-reverse;
    }
    #post-single .post-contents #point .point-icon .wp-block-snow-monkey-blocks-flex p {
        width: 60%;
    }
    #post-single .post-contents #point .point-icon .wp-block-image {
        width: 40%;
    }
}


#post-single .post-contents #schedule .wp-block-table {
    font-size: .9rem;
}
#post-single .post-contents #schedule .wp-block-table thead th:nth-child(1) {
    width: 80px;
}
#post-single .post-contents #schedule .wp-block-table thead th:nth-child(2) {
    width: 80px;
}
#post-single .post-contents #schedule .wp-block-table thead th:nth-child(3) {
    width: 80px;
}
#post-single .post-contents #schedule .wp-block-table thead th:nth-child(4) {
    width: 100px;
}
#post-single .post-contents #schedule .wp-block-table thead th:nth-child(5) {
    width: auto;
}
#post-single .post-contents #schedule .wp-block-table thead th:nth-child(6) {
    width: 80px;
}
#post-single .post-contents #schedule .wp-block-snow-monkey-blocks-information-item .smb-information__item__label {
    width: 10rem;
}
@media screen and (max-width: 780px) {
    #post-single .post-contents #schedule .wp-block-table::before {
        content: "スクロールしてご覧いただけます";
        display: block;
        margin-bottom: 1rem;
        font-size: .875rem;
    }
    #post-single .post-contents #schedule .wp-block-table th, #schedule .wp-block-table td {
        white-space: nowrap;
        min-width: 90px;
    }
}

.veltra .wp-block-snow-monkey-blocks-box {
    margin-top: 1.5rem;
    padding: 0 !important;
}
.veltra .wp-block-snow-monkey-blocks-box .wp-block-columns {
    border-bottom: 1px solid #000;
}
.veltra .wp-block-snow-monkey-blocks-box .wp-block-column {
    align-items: center;
    padding: .8rem;
}
.veltra .wp-block-snow-monkey-blocks-box .wp-block-column:first-child {
    border-right: 1px solid #000;
}
.veltra .wp-block-snow-monkey-blocks-box ul {
    padding: .8rem;
}
.veltra .wp-block-snow-monkey-blocks-box .wp-block-image {
    margin-top: 0 !important;
}
@media screen and (max-width: 780px) {
    .veltra .wp-block-snow-monkey-blocks-box .wp-block-columns {
        gap: 0;
    }
    .veltra .wp-block-snow-monkey-blocks-box .wp-block-column:first-child {
        border-bottom: 1px solid #000;
    }
    .veltra .wp-block-snow-monkey-blocks-box .wp-block-image {
        text-align: center;
    }
}

@media screen and (max-width: 780px) {
    #post-single .post-contents #event-overview .wp-block-columns {
        gap: 0;
    }
}

@media screen and (max-width: 780px) {
    #post-single .post-contents #tour-overview  .wp-block-columns {
        gap: 0;
    }
}

#post-single .post-contents #faq .wp-block-snow-monkey-blocks-accordion-item {
    margin-bottom: 2rem;
    border: 3px solid var(--main-color);
}
#post-single .post-contents #faq .wp-block-snow-monkey-blocks-accordion .smb-accordion__item__title {
    padding: 1rem 2rem;
}
#post-single .post-contents #faq .wp-block-snow-monkey-blocks-accordion .smb-accordion__item__title::before {
    content: "Q";
    aspect-ratio: 1/1;
    width: 26px;
    border-radius: 50%;
    color: var(--main-color);
    background-color: #fff;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    line-height: 1;
}
#post-single .post-contents #faq .wp-block-snow-monkey-blocks-accordion .smb-accordion__item__body {
    padding: 1rem 2rem 1rem 4.6rem;
}
#post-single .post-contents #faq .wp-block-snow-monkey-blocks-accordion .smb-accordion__item__body::before {
    position: absolute;
    top: 1rem;
    left: 2rem;
    content: "A";
    aspect-ratio: 1/1;
    width: 26px;
    border-radius: 50%;
    color: #fff;
    background-color: var(--main-color);
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
    line-height: 1;
}
#post-single .post-contents #faq .wp-block-snow-monkey-blocks-accordion .smb-accordion__item__body p {
    padding: 0;
}
#post-single .post-contents #faq .wp-block-snow-monkey-blocks-accordion .smb-accordion__item__body p:first-child {
    margin-top: 0;
}
@media screen and (max-width: 780px) {
    #post-single .post-contents #faq .wp-block-snow-monkey-blocks-accordion .smb-accordion__item__title {
        padding: .8rem .8rem;
    }
    #post-single .post-contents #faq .wp-block-snow-monkey-blocks-accordion .smb-accordion__item__body {
        padding: .8rem .8rem .8rem 3.4rem;
    }
    #post-single .post-contents #faq .wp-block-snow-monkey-blocks-accordion .smb-accordion__item__body:before {
        top: .8rem;
        left: .8rem;
    }
}

#post-single .post-contents #entry .wp-block-snow-monkey-blocks-information {
    margin-top: 1rem;
    margin-bottom: 1rem !important;
}
#post-single .post-contents #entry .wp-block-snow-monkey-blocks-information ~ ul {
    margin-left: 2rem;
}
@media screen and (max-width: 780px) {
    #post-single .post-contents #entry .wp-block-snow-monkey-blocks-information-item .c-row {
        flex-direction: row;
        gap: 1.3rem;
    }
}

@media screen and (min-width: 781px) {
    #post-single .post-contents .wp-block-snow-monkey-blocks-tabs.pc-normal .smb-tabs__tabs {
        display: none;
    }
    #post-single .post-contents .wp-block-snow-monkey-blocks-tabs.pc-normal .smb-tab-panel {
        border: none !important;
    }
    #post-single .post-contents .wp-block-snow-monkey-blocks-tabs.pc-normal .smb-tab-panel[aria-hidden=true] {
        position: static !important;
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        border: none;
    }
}
@media screen and (max-width: 780px) {
    #post-single .post-contents .wp-block-snow-monkey-blocks-tabs[data-orientation=horizontal]>.smb-tabs__tabs {
        gap: .3rem;
    }
    #post-single .post-contents .wp-block-snow-monkey-blocks-tabs .smb-tabs__tab {
        border-color: var(--main-color);
        padding: .8rem .5rem !important;
        font-size: .75rem;
    }
    #post-single .post-contents .wp-block-snow-monkey-blocks-tabs[data-orientation=horizontal]>.smb-tabs__tabs .smb-tabs__tab[aria-selected=true] {
        border-bottom: none;
        font-weight: 700;
    }
    #post-single .post-contents .wp-block-snow-monkey-blocks-tabs .smb-tab-panel {
        border-color: var(--main-color);
    }
}




.wpcf7 dt::before {
    content: "任意";
    color: #fff;
    border-radius: 3px;
    padding: 0.2rem 0.8rem;
    margin-right: 0.8rem;
    background-color: #999999;
    font-size: 0.8rem;
}
.wpcf7 .req dt::before {
    content: "必須";
    background-color: #c40812;
}
.wpcf7 .confirm dt::before {
    content: none;
}
.wpcf7 .wpcf7-spinner {
    display: none !important;
}
.wpcf7 .wpcf7-not-valid-tip {
    font-weight: 400;
}
.wpcf7 form .wpcf7-response-output {
    border: none;
    color: #c40812;
    text-align: center;
}
.wpcf7 .wpcf7-turnstile {
    text-align: center;
    margin-bottom: 0.8rem;
}
.wpcf7 dl {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.2rem;
}
.wpcf7 dt {
    position: relative;
    width: 100%;
    color: #000;
    font-weight: 400;
}
.wpcf7 .confirm dt {
    border-left: 6px solid var(--main-color);
    padding-left: 0.4rem;
}
.wpcf7 dd {
    position: relative;
    width: 100%;
    background-color: #fff;
    border-radius: 3px;
}
.wpcf7 .confirm dd {
    border-left: 6px solid transparent;
    padding-left: 0.4rem;
}
.wpcf7 .wpcf7-form-control-wrap[data-name*="acceptance"],
.wpcf7 .wpcf7-form-control-wrap[data-name*="file"] {
    display: block;
    margin: 0.4rem 0;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder {
    color: #D9D9D9;
}
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="url"],
.wpcf7 input[type="date"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    font-size: 16px;
    padding: 0.4rem;
    appearance: none;
    background-color: #fff;
    border: 1px solid #000;
    border-radius: 3px;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="url"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 input[type="number"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: rgb(0 0 0 / 0.9);
    box-shadow: none;
    outline: none;
}
.wpcf7 textarea {
    min-height: 4rem;
    min-width: 100%;
    max-width: 100%;
}
.wpcf7 select::-ms-expand {
    display: none;
}
.wpcf7 select {
    background-image: url("data:image/svg+xml,%3Csvg fill='none' stroke='%23000' stroke-width='2' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.8rem center;
    background-size: 1rem;
    padding-right: 2.5rem;
}
.wpcf7 input[type="number"]::-webkit-inner-spin-button,
.wpcf7 input[type="number"]::-webkit-outer-spin-button {
    opacity: 1;
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
    min-width: 100px;
    margin: 0.7rem 1rem 0.7rem 0;
}
.wpcf7 input[type="radio"] {
    display: none;
}
.wpcf7 .wpcf7-radio .wpcf7-list-item {
    margin: 0 1.8rem 0.8rem 0;
}
.wpcf7 .wpcf7-radio .wpcf7-list-item:last-child {
    margin: 0 0 0.8rem 0;
}
.wpcf7 input[type="radio"]+span {
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin: 0;
    padding-left: 1.5rem;
}
.wpcf7 input[type="radio"]+span::before {
    content: "";
    display: block;
    aspect-ratio: 1 / 1;
    width: 1rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #fff;
    border-radius: 50%;
    border: 1px solid rgb(0 0 0 / 0.4);
}
.wpcf7 input[type="radio"]+span::after {
    content: "";
    aspect-ratio: 1/1;
    width: .6rem;
    position: absolute;
    top: 50%;
    left: 3px;
    padding: 2px;
    background: #2078d1;
    border-radius: 50%;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(-50%);
    transition: 0.3s;
}
.wpcf7 input[type="radio"]:checked+span::after {
    opacity: 1;
}
.wpcf7 input[type="radio"]:checked+span::before {
    border-color: #2078d1;
}
.wpcf7 input[type="checkbox"] {
    display: none;
}
.wpcf7 input[type="checkbox"]+span {
    cursor: pointer;
    display: inline-block;
    margin: 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--main-font-color);
}
.wpcf7 input[type="checkbox"]+span::before {
    content: "";
    display: block;
    aspect-ratio: 1 / 1;
    width: 1rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid rgb(0 0 0 / 0.4);
    border-radius: 50%;
}
.wpcf7 input[type="checkbox"]:checked+span::before {
    border-color: #2078d1;
}
.wpcf7 input[type="checkbox"]+span::after {
    content: "";
    aspect-ratio: 1/1;
    width: .6rem;
    position: absolute;
    top: 50%;
    left: 3px;
    padding: 2px;
    background: #2078d1;
    border-radius: 50%;
    border: 1px solid transparent;
    opacity: 0;
    transform: translateY(-50%);
    transition: 0.3s;
}
.wpcf7 input[type="checkbox"]:checked+span::after {
    opacity: 1;
}
.wpcf7 .submit {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-align: center;
}
.wpcf7 input[type="submit"],
.wpcf7 .wpcf7-previous {
    color: #fff;
    display: inline-block;
    width: 80%;
    max-width: 350px;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
    padding: 1rem 3rem;
    appearance: none;
    background: var(--main-color);
    border: none;
    border-radius: 0;
    cursor: pointer;
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 input[type="submit"]:focus,
.wpcf7 .wpcf7-previous:hover,
.wpcf7 .wpcf7-previous:focus {
    outline: none;
    opacity: 0.7;
}
@media (hover: hover) {
    .wpcf7 input[type="submit"],
    .wpcf7 .wpcf7-previous {
        transition: 0.3s;
    }
    .wpcf7 input[type="submit"]:hover,
    .wpcf7 .wpcf7-previous:hover {
        opacity: 0.7;
    }
}
.wpcf7 input[type="submit"]:disabled,
.wpcf7 .wpcf7-previous:disabled {
    color: graytext;
    border: 1px solid graytext;
    opacity: 0.6;
}
.wpcf7 input[type="submit"]::-moz-focus-inner,
.wpcf7 .wpcf7-previous::-moz-focus-inner {
    border: none;
    padding: 0;
}
.wpcf7 .wpcf7-previous {
    width: auto;
    background-color: #999999;
}
@media screen and (max-width: 780px) {
    .wpcf7 dt::before {
        padding: 0.2rem 0.6rem;
        font-size: 0.73rem;
    }
    .wpcf7 {
        margin: 2rem 0;
    }
    .wpcf7 dl {
        gap: 0.6rem;
        margin-bottom: 2rem;
        font-size: 0.9rem;
    }
    .wpcf7 dt {
        width: 100%;
        justify-content: flex-start;
    }
    .wpcf7 dd {
        width: 100%;
    }
    .wpcf7 .wpcf7-checkbox .wpcf7-list-item {
        min-width: unset;
        margin: 0.7rem 1.2rem 0.7rem 0;
    }
    .wpcf7 input[type="submit"],
    .wpcf7 .wpcf7-previous {
        font-size: 1rem;
        padding: 0.6rem 2rem;
    }
}