@charset "utf-8";

/*
 * style.css
 *
 *  version --- 1.0
 *  updated --- 2026/02/23
 */

/* !root
---------------------------------------------------------- */

:root {
    --default_font: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    --Roboto_Slab: "Roboto Slab", serif;
    --Shippori_Antique: "Shippori Antique", sans-serif;
    --Yuji_Boku: "Yuji Boku", serif;

    --beige: #DEC0A1;
    --black: #0C0602;
    --green: #2F7216;
    --white: #ffffff;
    --fb: #4267B2;
    --line: #00B900;
    --linear-gradient: linear-gradient(90deg, rgba(222, 192, 161, 0) 0%, #DEC0A1 50%, rgba(222, 192, 161, 0) 100%);


}

/* !HTML5 elements
---------------------------------------------------------- */
header,
footer,
nav,
section,
aside,
article {
    display: block;
}

/* !Reseting
---------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

fieldset {
    border: none;
}

ul,
ol,
li {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

table {
    border-collapse: collapse;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}

select::-ms-expand {
    display: none;
}

input[type=radio]::-ms-check,
input[type=checkbox]::-ms-check {
    display: none;
}

select,
input[type=radio],
input[type=checkbox],
input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=reset],
input[type=button],
input[type=submit],
textarea {
    appearance: none;
    border-radius: 0;
    font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}

input[type=text]::-ms-clear,
input[type=tel]::-ms-clear,
input[type=number]::-ms-clear {
    display: none;
}

input[type=reset],
input[type=button],
input[type=submit] {
    font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
    cursor: pointer;
}

*,
*:before,
*::after {
    box-sizing: border-box;
}

/* !Clearfix
---------------------------------------------------------- */
.clearfix {
    display: block;
    min-height: 1%;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}

* html .clearfix {
    height: 1%;
}

/* !Layout
---------------------------------------------------------- */
html {
    overflow-y: scroll;
    font-size: 62.5%;
}

html.no-move {
    overflow: hidden;
}

/*** タブレット 768x ~ 1200px***/
@media screen and (min-width: 768px) and (max-width: 1280px) {
    html {
        font-size: calc(100vw / 128);
    }
}

/*** スマホ 320px ~ 767px***/
@media screen and (max-width: 767px) {
    html {
        font-size: 62.5%;
    }
}

body {
    font-family: var(--default_font);
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    line-height: 1.5;
    font-weight: normal;
    color: var(--beige);
    background: var(--black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* !Base Fonts -------------------------------------------------------------- */
a {
    color: var(--beige);
    text-decoration: none;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    a {
        transition: all 0.5s;
    }

    a:hover {
        text-decoration: underline;
    }

    .h-opacity {
        transition: opacity 0.5s ease-out;
    }

    .h-opacity:hover {
        opacity: .7;
        text-decoration: none;
    }

    a[href^="tel:"] {
        /*cursor: default;
        pointer-events:none;*/
    }

    a[href^="tel:"]:hover {
        text-decoration: none;
    }
}

.hover {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 1.5em;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    .h-hover .hover__item {
        transition: transform .3s ease-out;
    }

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

    .h-hover:hover .hover__item {
        transform: translateY(-100%);
    }
}

.is-hide {
    display: none;
}

.fw-medium {
    font-weight: 500 !important;
}

.ff-default {
    font-family: var(--default_font);
}

@media screen and (min-width: 768px) {
    .is-sp {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .is-pc {
        display: none;
    }
}


/* !wrapper
---------------------------------------------------------- */
body:not(.home) #wrapper {
    padding-top: 10.8rem;
}

/*** sp ***/
@media screen and (max-width: 767px) {
    body:not(.home) #wrapper {
        padding-top: 7.4rem;
    }
}

/* !header
---------------------------------------------------------- */
#header {
    position: fixed;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 999;
}


.header-inner {
    width: 100%;
    padding: 2.8rem 4rem 2.8rem 3.2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.header-logo {
    width: 10rem;
    font-size: 1px;
    line-height: 1;
}

.header-logo img {
    width: 100%;
}

.header-links {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2.8rem;
}

.btn-menu {
    display: none;
}

/*** sp ***/
@media screen and (max-width: 767px) {
    #header {
        transition: background .5s ease;
    }

    html.no-move #header {
        background: var(--black);
    }

    .header-inner {
        padding: 1.6rem;
        align-items: center;
    }

    .header-logo {
        width: 8rem;
    }

    .header-links {
        gap: 2.4rem;
    }

    .btn-menu {
        display: flex;
        width: 3.1rem;
        height: 1.6rem;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: .5rem;
    }

    .btn-menu .btn-menu__line {
        width: 100%;
        height: .2rem;
        background: var(--beige);
        transition: all .5s ease;
    }

    .btn-menu.is-active .btn-menu__line:nth-child(1) {
        transform: translateY(.7rem) rotate(30deg);
    }

    .btn-menu.is-active .btn-menu__line:nth-child(2) {
        opacity: 0;
    }

    .btn-menu.is-active .btn-menu__line:nth-child(3) {
        transform: translateY(-.7rem) rotate(-30deg);
    }
}

/* !global navigation
---------------------------------------------------------- */
#g-navi {}

#g-navi ul {
    display: flex;
    align-items: center;
    gap: 2.4rem;
}

#g-navi ul li {
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: .08em;
    font-family: var(--Roboto_Slab);
    font-weight: bold;
}

/*** sp ***/
@media screen and (max-width: 767px) {
    #g-navi {
        position: fixed;
        left: 0;
        top: 7rem;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        height: calc(100dvh - 7rem);
        background: var(--black);
        padding: 6rem 1.6rem;
        visibility: hidden;
        opacity: 0;
        pointer-events: none;
        transition: opacity .5s ease, visibility .5s ease;
    }

    #g-navi.is-open {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }

    #g-navi ul {
        display: block;
    }

    #g-navi ul li {
        position: relative;
    }

    #g-navi ul li:after {
        width: 100%;
        height: .1rem;
        background: var(--linear-gradient);
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 2;
        content: '';
    }

    #g-navi ul li:first-child:before {
        width: 100%;
        height: .1rem;
        background: var(--linear-gradient);
        position: absolute;
        left: 0;
        top: 0;
        z-index: 2;
        content: '';
    }

    #g-navi ul li a {
        display: block;
        text-align: center;
        padding: 2rem 0;
    }
}

/* !main Visual
---------------------------------------------------------- */
#main-visual {
    width: 100%;
    height: 100vh;
    min-height: 64rem;
    max-height: 80rem;
    background: url(../img/top/kv_bg_pc.jpg) center center no-repeat;
    background-size: cover;
    position: relative;
}

#main-visual .main-visual__copy {
    font-size: 3.2rem;
    line-height: 1.8;
    letter-spacing: .24em;
    font-family: var(--Shippori_Antique);
    font-weight: 400;
    position: absolute;
    left: 6.8%;
    top: 23.75%;
}

#main-visual .main-visual__text {
    font-size: 1px;
    line-height: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
}

#main-visual .main-visual__text img {
    width: 100%;
}

/*** sp ***/
@media screen and (max-width: 767px) {
    #main-visual {
        max-height: 114.3rem;
        background: url(../img/top/kv_bg_sp.jpg) center top no-repeat;
        background-size: cover;
    }

    #main-visual .main-visual__copy {
        font-size: 2rem;
        left: 0;
        top: 11.2rem;
        width: 100%;
        padding: 0 1.6rem;
    }
}


/* !teaser
---------------------------------------------------------- */
#teaser {
    width: 100%;
    height: 24rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

#teaser .teaser-heading {
    font-size: 4rem;
    font-weight: bold;
    letter-spacing: .08em;
    line-height: 1;
    font-family: var(--Roboto_Slab);
}

/*** sp ***/
@media screen and (max-width: 767px) {
    #teaser {
        height: 15rem;
    }

    #teaser .teaser-heading {
        font-size: 2.4rem;
    }
}

/* !contents
---------------------------------------------------------- */
#contents {
    width: 100%;
}

.inner {
    width: 100%;
    max-width: 128rem;
    padding: 0 2rem;
    margin: 0 auto;
}

/*** sp ***/
@media screen and (max-width: 767px) {
    .inner {
        padding: 0 1.6rem;
    }
}

/* !footer
---------------------------------------------------------- */
#footer {
    width: 100%;
    position: relative;
    background: url(../img/common/footer_pc.jpg) center top no-repeat;
    background-size: cover;
}

.footer-inner {
    width: 100%;
    height: 80rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-booking {
    text-align: center;
}

.footer-booking .footer-booking__heading {
    font-size: 4rem;
    line-height: 1;
    font-family: var(--Roboto_Slab);
    font-weight: bold;
    margin-bottom: 3.2rem;
    letter-spacing: .01em;
}

.footer-booking .footer-booking__text {
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: .04em;
    margin-bottom: 4.8rem;
}

.footer-booking .footer-booking__tel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    font-family: var(--Roboto_Slab);
}

.footer-booking .footer-booking__tel .footer-booking__tel--title {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: .04em;
}

.footer-booking .footer-booking__tel .footer-booking__tel--title span {
    display: block;
    font-size: 2.2rem;
}

.footer-booking .footer-booking__tel .footer-booking__tel--number {
    font-size: 7rem;
    line-height: 1;
    font-weight: bold;
    letter-spacing: .01em;
}

#copyright {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 3.5rem;
    text-align: center;
    z-index: 2;
    font-size: 1.4rem;
    line-height: 1;
    font-weight: bold;
    font-family: var(--Roboto_Slab);
    letter-spacing: .01em;
}

/*** sp ***/
@media screen and (max-width: 767px) {
    #footer {
        background-image: url(../img/common/footer_sp.jpg);
    }

    .footer-inner {
        height: 76.2rem;
    }

    .footer-booking .footer-booking__heading {
        font-size: 2.4rem;
        margin-bottom: 2rem;
    }

    .footer-booking .footer-booking__text {
        font-size: 1.4rem;
        margin-bottom: 4rem;
    }

    .footer-booking .footer-booking__tel {
        gap: 1.2rem;
    }

    .footer-booking .footer-booking__tel .footer-booking__tel--title {
        font-size: 1.3rem;
    }

    .footer-booking .footer-booking__tel .footer-booking__tel--title span {
        font-size: 1.2rem;
    }

    .footer-booking .footer-booking__tel .footer-booking__tel--number {
        font-size: 2.8rem;
    }

    #copyright {
        bottom: 2.4rem;
        font-size: 1.2rem;
    }
}


/* !button
---------------------------------------------------------- */

.btn-links {
    display: inline-block;
    padding: 1.6rem;
    width: 100%;
    max-width: 27.8rem;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: .04em;
    color: var(--white);
    background: var(--green);
    text-align: center;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    .btn-links:hover {
        opacity: .7;
        text-decoration: none;
    }
}

/*** sp ***/
@media screen and (max-width: 767px) {
    .btn-links {
        max-width: 26rem;
        font-size: 1.4rem;
    }
}

/* !links
---------------------------------------------------------- */
.txt-links {
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: .08em;
    font-family: var(--Roboto_Slab);
    font-weight: bold;
    color: var(--green);
    padding-right: 2.8rem;
    position: relative;
}

.txt-links:after {
    position: absolute;
    right: .7rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    content: '';
    background: var(--green);
    width: 1.1rem;
    height: .5rem;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/*** sp ***/
@media screen and (max-width: 767px) {
    .txt-links {
        font-size: 1.4rem;
        padding-right: 2.4rem;
    }

    .txt-links:after {
        right: .583rem;
        width: .917rem;
        height: .417rem;
    }
}

/* !heading
---------------------------------------------------------- */

.heading-large {
    text-align: center;
    font-size: 4rem;
    line-height: 1;
    letter-spacing: .08em;
    font-family: var(--Roboto_Slab);
    font-weight: bold;
    margin-bottom: 8rem;
}

/*** sp ***/
@media screen and (max-width: 767px) {
    .heading-large {
        font-size: 2.4rem;
        margin-bottom: 6.4rem;
    }
}

/* !404
---------------------------------------------------------- */
.notfound-wrap {
    padding: 12rem 0;
}

.notfound-heading {
    text-align: center;
    margin-bottom: 4.8rem;
    font-size: 1.8rem;
    line-height: 1.5;
    font-weight: 500;
}

.notfound-heading span {
    display: block;
    font-family: var(--Roboto_Slab);
    font-size: 10rem;
    line-height: 1;
    letter-spacing: .01em;
    font-weight: bold;
    margin-bottom: 1.6rem;
}

.notfound-text {
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: .04em;
}

.notfound-links {
    margin-top: 6.4rem;
    text-align: center;
}

/*** sp ***/
@media screen and (max-width: 767px) {
    .notfound-wrap {
        padding: 8rem 0 6.4rem;
    }

    .notfound-heading {
        font-size: 1.4rem;
    }

    .notfound-heading span {
        font-size: 4.8rem;
        margin-bottom: 1.2rem;
    }

    .notfound-text {
        text-align: left;
        font-size: 1.4rem;
    }
}


/* !POST
---------------------------------------------------------- */
.post-wrap {
    padding-bottom: 12rem;
}

.post-contents {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8rem;
}

.post-contents .post-main {
    width: calc(100% - 31.6rem);
}

.post-contents .post-side {
    width: 23.6rem;
}

.post-side .post-side__item+.post-side__item {
    margin-top: 6.4rem;
}

.post-side .post-side-title {
    font-size: 2rem;
    line-height: 1;
    font-family: var(--Roboto_Slab);
    letter-spacing: .08em;
    margin-bottom: 2.4rem;
    font-weight: bold;
}

.post-side .post-category-list li {
    border-bottom: .1rem dashed rgba(222, 192, 161, .2);
}

.post-side .post-category-list li:first-child {
    border-top: .1rem dashed rgba(222, 192, 161, .2);
}

.post-side .post-category-list li a {
    display: block;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: .04em;
    padding: 1.2rem 0;
}

.post-side .post-keywords-list {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: .8rem;
}

.post-side .post-keywords-list a {
    font-size: 1.4rem;
    line-height: 2rem;
    padding: .2rem .8rem;
    background: rgba(222, 192, 161, 0.15);
    border-radius: .1rem;
}

.post-side .post-category-select {
    text-align: right;
}

.post-side .post-category-select select {
    border: 0;
    width: auto;
    background: url(../img/common/icon_select.svg) right center no-repeat;
    background-size: 1.4rem auto;
    height: 2.1rem;
    font-size: 1.4rem;
    line-height: 1.5;
    color: var(--beige);
    outline: 0;
    padding-right: 2.2rem;
    text-align: right;
}

.post-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.8rem 2.4rem;
}

.post-list .post-block {
    display: block;
}

.post-list .post-block .post-image {
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    aspect-ratio: 146 / 97;
}

.post-list .post-block .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.post-list .post-block .post-image:before {
    width: 100%;
    height: 7rem;
    background: linear-gradient(180deg, rgba(12, 6, 2, 0) 0%, #0C0602 100%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 2;
    content: '';
}

.post-list .post-block .post-keywords {
    display: flex;
    margin-top: 2rem;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: .8rem;
}

.post-list .post-block .post-keywords .post-keywords__item {
    font-size: 1.4rem;
    line-height: 2rem;
    padding: .2rem .8rem;
    background: rgba(222, 192, 161, 0.15);
    border-radius: .1rem;
}

.post-list .post-block .post-title {
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: .04em;
    font-weight: 500;
    display: block;
    margin-top: 1.7rem;
}

.post-list .post-block .post-date {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: .04em;
    font-family: var(--Roboto_Slab);
    font-weight: bold;
    display: block;
    margin-top: 1.7rem;
}

/*** hover ***/
@media screen and (min-width: 960px) {
    .post-list .post-block:hover {
        text-decoration: none;
    }

    .post-list .post-block:hover .post-image img {
        transform: scale(1.05);
    }

    .post-list .post-block:hover .post-title {
        text-decoration: underline;
    }

    .post-side .post-keywords-list a:hover {
        text-decoration: none;
        background: var(--beige);
        color: var(--black);
    }
}

/*** pc ***/
@media screen and (min-width: 768px) {
    .post-side .post-side__item {
        display: block !important;
    }
}

/*** sp ***/
@media screen and (max-width: 767px) {
    .post-wrap {
        padding-bottom: 6.5rem;
    }

    .post-contents {
        display: block;
    }

    .post-contents .post-main {
        width: 100%;
    }

    .post-contents .post-side {
        width: calc(100% + 3.2rem);
        margin: 0 -1.6rem 5rem;
    }

    .post-contents .post-side .post-side-target {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0 1.6rem;
    }

    .post-contents .post-side .post-side-target__list {
        display: flex;
        flex-wrap: nowrap;
        gap: .8rem;
        width: fit-content;
    }

    .post-contents .post-side .post-side-target__list li {
        word-break: keep-all;
        white-space: nowrap;
    }

    .post-contents .post-side .post-side-target__list li a {
        font-size: 1.4rem;
        line-height: 1.8;
        letter-spacing: .04em;
        font-weight: 500;
        position: relative;
        border: .1rem solid var(--beige);
        padding: .4rem 2.9rem;
        display: block;
        font-family: var(--Roboto_Slab);
    }

    .post-contents .post-side .post-side-target__list li a.is-active {
        background: var(--beige);
        color: var(--black);
    }

    .post-side .post-side__item {
        padding: 3.2rem 1.6rem 0;
    }

    .post-side .post-side__item:not(.is-active) {
        display: none;
    }

    .post-side .post-side__item+.post-side__item {
        margin: 0;
    }

    .post-side .post-side-title {
        display: none;
    }

    .post-side .post-keywords-list a.is-active {
        background: var(--beige);
        color: var(--black);
    }

    .post-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 4.8rem 1.6rem;
    }

    .post-list .post-block .post-image {
        aspect-ratio: 82 / 55;
    }

    .post-list .post-block .post-keywords {
        gap: .4rem;
    }

    .post-list .post-block .post-keywords .post-keywords__item {
        font-size: 1rem;
    }

    .post-list .post-block .post-title {
        font-size: 1.2rem;
    }

    .post-list .post-block .post-date {
        font-size: 1.1rem;
    }
}


.wp-pagenavi {
    text-align: center;
    width: 100%;
    margin-top: 12rem;
}

.wp-pagenavi a,
.wp-pagenavi span {
    width: 4.8rem;
    height: 4.8rem;
    border: 0;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0 .2rem;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.5;
    border-radius: 100%;
}

.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
    color: transparent;
    position: relative;
    width: 3.6rem;
    height: 3.6rem;
}

.wp-pagenavi a.previouspostslink {
    margin: 0 3rem 0 0;
}

.wp-pagenavi a.nextpostslink {
    margin: 0 0 0 3rem;
}

.wp-pagenavi a.previouspostslink::before,
.wp-pagenavi a.nextpostslink::before {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    width: 1.65rem;
    height: .75rem;
    background: var(--green);
    clip-path: polygon(0 0, 100% 50%, 0 100%);
    content: "";
}

.wp-pagenavi a.previouspostslink::before {
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.wp-pagenavi span.current {
    background: var(--green);
    color: var(--black);
}

.wp-pagenavi a.first,
.wp-pagenavi a.last,
.wp-pagenavi span.pages {
    display: none;
}

/*** hover ***/
@media screen and (min-width: 960px) {

    .wp-pagenavi a.previouspostslink:hover,
    .wp-pagenavi a.nextpostslink:hover {
        opacity: .7;
    }
}

/*** sp ***/
@media screen and (max-width: 767px) {
    .wp-pagenavi {
        margin-top: 6.4rem;
    }

    .wp-pagenavi a,
    .wp-pagenavi span {
        width: 3.9rem;
        height: 3.9rem;
        font-size: 1.6rem;
    }

    .wp-pagenavi a.previouspostslink,
    .wp-pagenavi a.nextpostslink {
        width: 2.8rem;
        height: 2.8rem;
    }

    .wp-pagenavi a.previouspostslink {
        margin-right: 2rem;
    }

    .wp-pagenavi a.nextpostslink {
        margin-left: 2rem;
    }

    .wp-pagenavi a.previouspostslink::before,
    .wp-pagenavi a.nextpostslink::before {
        width: 1.283rem;
        height: .583rem;
    }
}

.post-detail {
    padding: 8rem 0 12rem;
}


.post-section {
    width: 100%;
    max-width: 81.8rem;
    margin: 0 auto;
}

.post-head {
    margin-bottom: 4.8rem;
}

.post-head .post-keywords {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: .8rem;
    margin-bottom: 1.4rem;
}

.post-head .post-keywords .post-keywords__item {
    font-size: 1.4rem;
    line-height: 2rem;
    padding: .2rem .8rem;
    background: rgba(222, 192, 161, 0.15);
    border-radius: .1rem;
}

.post-head .post-title {
    font-size: 2.4rem;
    line-height: 1.8;
    letter-spacing: .04em;
    font-weight: 500;
    display: block;
}

.post-head .post-date {
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: .04em;
    font-family: var(--Roboto_Slab);
    font-weight: bold;
    display: block;
    margin-top: 1.4rem;
}

.post-body {
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: .04em;
}

.post-body .wp-block-group+.wp-block-group {
    margin-top: 8rem;
}

.post-body h2 {
    margin-bottom: 2.4rem;
    border-left: .4rem solid var(--beige);
    padding-left: 1.6rem;
    font-size: 2.8rem;
    line-height: 1.5;
    letter-spacing: .04em;
    font-weight: 500;
}

.post-body h3 {
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: .04em;
    font-weight: 500;
    margin-bottom: 1.6rem;
}

.post-body p,
.post-body figure,
.post-body table {
    margin-bottom: 6.4rem;
    width: 100%;
}

.post-body p a:not(.btn-links) {
    text-decoration: underline;
    color: var(--green);
}

.post-body figure {
    text-align: center;
}

.post-body figure figcaption {
    text-align: center;
    margin-top: 1.6rem;
    font-size: 1.4rem;
    line-height: 1.5;
    display: block;
}

.post-body table th,
.post-body table td {
    border-top: .1rem solid var(--beige);
    border-bottom: .1rem solid var(--beige);
    padding: 2.4rem 0;
}

.post-body table th {
    font-weight: normal;
    width: 19rem;
    padding-right: 1rem;
    text-align: left;
}

/* --- Gutenberg Block Editor --- */
.post-body>h2 {
    margin-top: 8rem;
}

.post-body .wp-block-buttons {
    margin-bottom: 6.4rem;
    text-align: center;
}

.wp-block-buttons>.wp-block-button {
    width: 100%;
}

.post-body .wp-block-button__link {
    display: inline-block;
    padding: 1.6rem;
    width: 100%;
    max-width: 27.8rem;
    font-size: 1.6rem;
    line-height: 1.5;
    letter-spacing: .04em;
    color: var(--white);
    background: var(--green);
    text-align: center;
    text-decoration: none;
    border-radius: 0;
}

.post-body figure.wp-block-table {
    text-align: left;
}

.post-body figure.wp-block-table table {
    margin-bottom: 0;
}

.post-body .wp-block-table td:first-child {
    font-weight: normal;
    width: 19rem;
    padding-right: 1rem;
    text-align: left;
}

.post-body .wp-block-table td {
    border-left: none;
    border-right: none;
}

.post-related {
    padding-top: 16rem;
    margin-top: 16rem;
    position: relative;
}

.post-related:before {
    width: 100%;
    height: .1rem;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(222, 192, 161, 0) 0%, #DEC0A1 50%, rgba(222, 192, 161, 0) 100%);
}

.post-sns {
    margin-top: 8rem;
}

.post-sns ul {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.4rem;
}

.post-sns li {
    width: calc((100% - 4.8rem) / 3);
}

.post-sns li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 6.5rem;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: .04em;
    font-weight: bold;
    gap: .8rem;
}

.post-sns li a.sns-x {
    background: var(--white);
    color: var(--black);
}

.post-sns li a.sns-x:before {
    width: 1.6rem;
    height: 1.6rem;
    content: '';
    background: url(../img/post_detail/icon_x.svg) center center no-repeat;
    background-size: 100% auto;
}

.post-sns li a.sns-fb {
    background: var(--fb);
    color: var(--white);
}

.post-sns li a.sns-fb:before {
    width: 1.6rem;
    height: 1.6rem;
    content: '';
    background: url(../img/post_detail/icon_facebook.svg) center center no-repeat;
    background-size: 100% auto;
}

.post-sns li a.sns-line {
    background: var(--line);
    color: var(--white);
}

.post-sns li a.sns-line:before {
    width: 1.6rem;
    height: 1.6rem;
    content: '';
    background: url(../img/post_detail/icon_line.svg) center center no-repeat;
    background-size: 100% auto;
}

.post-ctrl {
    position: relative;
    text-align: center;
    margin-top: 8rem;
    width: 100%;
}

.post-ctrl .post-ctrl__back {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 23.6rem;
    height: 5.3rem;
    border: .1rem solid var(--beige);
    font-size: 1.6rem;
    line-height: 1.8;
    letter-spacing: .04em;
}

.post-ctrl .post-ctrl__prev,
.post-ctrl .post-ctrl__next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    font-size: 2rem;
    line-height: 1.5;
    letter-spacing: .04em;
    font-family: var(--Roboto_Slab);
    color: var(--green);
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.7rem;
    height: 3.6rem;
    padding: 0 1rem;
}

.post-ctrl .post-ctrl__prev {
    left: 0;
}

.post-ctrl .post-ctrl__prev:before {
    width: 1.65rem;
    height: .75rem;
    background: var(--green);
    content: '';
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
}

.post-ctrl .post-ctrl__next {
    right: 0;
}

.post-ctrl .post-ctrl__next:after {
    width: 1.65rem;
    height: .75rem;
    background: var(--green);
    content: '';
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/*** hover ***/
@media screen and (min-width: 960px) {

    .post-ctrl .post-ctrl__back:hover,
    .post-sns li a:hover {
        text-decoration: none;
        opacity: .7;
    }

    .post-body p a:not(.btn-links):hover {
        text-decoration: none;
    }

    .post-body .wp-block-button__link:hover {
        opacity: .7;
        text-decoration: none;
    }
}

/*** sp ***/
@media screen and (max-width: 767px) {
    .post-detail {
        padding: 3.2rem 0 6.4rem;
    }

    .post-head {
        margin-bottom: 3.2rem;
    }

    .post-head .post-keywords .post-keywords__item {
        font-size: 1.2rem;
    }

    .post-head .post-title {
        font-size: 2rem;
    }

    .post-head .post-date {
        font-size: 1.2rem;
    }

    .post-body {
        font-size: 1.4rem;
    }

    .post-body h2 {
        font-size: 2rem;
    }

    .post-body h3 {
        font-size: 1.8rem;
    }

    .post-body figure figcaption {
        font-size: 1.2rem;
    }

    .post-body table th {
        width: 12.4rem;
    }

    .post-body .wp-block-button__link {
        max-width: 26rem;
        font-size: 1.4rem;
    }

    .post-body .wp-block-table td:first-child {
        width: 12.4rem;
    }

    .post-related {
        padding-top: 12rem;
        margin-top: 12rem;
    }

    .post-sns {
        margin-top: 10rem;
    }

    .post-sns ul {
        flex-direction: column;
        gap: 1.6rem;
    }

    .post-sns li {
        width: 100%;
    }

    .post-sns li a {
        height: 5.7rem;
    }

    .post-ctrl {
        padding-top: 5.2rem;
    }

    .post-ctrl .post-ctrl__back {
        width: 22.2rem;
        height: 4.9rem;
        font-size: 1.4rem;
    }

    .post-ctrl .post-ctrl__prev,
    .post-ctrl .post-ctrl__next {
        top: 0;
        transform: translateY(0);
        font-size: 1.4rem;
        gap: 1.5rem;
        height: 2.8rem;
        padding: 0 .817rem;
    }

    .post-ctrl .post-ctrl__prev:before,
    .post-ctrl .post-ctrl__next:after {
        width: 1.283rem;
        height: .583rem;
    }
}


/* !HOME
---------------------------------------------------------- */
.top-post {
    padding: 14rem 0 16rem;
}

.top-post .top-post__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4.8rem;
}

.top-post .top-post__head .heading-large {
    margin-bottom: 0;
}

.top-concept {
    width: 100%;
    padding-bottom: 20rem;
}

.top-concept__box {
    position: sticky;
    left: 0;
    top: 0;
    width: 100%;
    height: 80rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: .04em;
    font-weight: 500;
    text-align: center;
}

.top-concept__box .heading-large {
    margin-bottom: 6.4rem;
}

.top-concept__box p+p {
    margin-top: 2em;
}

.top-concept .top-concept__image {
    width: 100%;
    height: 156rem;
    position: relative;
    overflow: hidden;
    margin-top: -80rem;
}

.top-concept .concept-image01 {
    position: absolute;
    width: 28.7rem;
    font-size: 1px;
    line-height: 1;
    top: 0;
    left: 50%;
    margin-left: -72rem;
    z-index: 2;
}

.top-concept .concept-image02 {
    position: absolute;
    width: 29rem;
    font-size: 1px;
    line-height: 1;
    top: 6.9rem;
    right: 50%;
    margin-right: -51.2rem;
    z-index: 2;
}

.top-concept .concept-image03 {
    position: absolute;
    width: 18.7rem;
    font-size: 1px;
    line-height: 1;
    top: 33.9rem;
    left: 50%;
    margin-left: -40.9rem;
    z-index: 2;
}

.top-concept .concept-image04 {
    position: absolute;
    width: 39.1rem;
    font-size: 1px;
    line-height: 1;
    top: 46.2rem;
    right: 50%;
    margin-right: -72rem;
    z-index: 2;
}

.top-concept .concept-image05 {
    position: absolute;
    width: 28.7rem;
    font-size: 1px;
    line-height: 1;
    top: 64.5rem;
    left: 50%;
    margin-left: -72rem;
    z-index: 2;
}

.top-concept .concept-image06 {
    position: absolute;
    width: 29rem;
    font-size: 1px;
    line-height: 1;
    top: 82.6rem;
    right: 50%;
    margin-right: -19.7rem;
    z-index: 2;
}

.top-concept .concept-image07 {
    position: absolute;
    width: 18.7rem;
    font-size: 1px;
    line-height: 1;
    top: 101rem;
    right: 50%;
    margin-right: -62rem;
    z-index: 2;
}

.top-concept .concept-image08 {
    position: absolute;
    width: 29.2rem;
    font-size: 1px;
    line-height: 1;
    top: 116.4rem;
    left: 50%;
    margin-left: -62rem;
    z-index: 2;
}

.top-thoughts {
    width: 100%;
    max-width: 144rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    background: var(--black);
    position: relative;
    z-index: 3;
}

.top-thoughts .top-thoughts__image {
    width: 49.7rem;
    font-size: 1px;
    line-height: 1;
}

.top-thoughts .top-thoughts__box {
    padding: 0 10rem;
    width: calc(100% - 49.7rem);
}

.top-thoughts .top-thoughts__box .heading-large {
    margin-bottom: 6.4rem;
    text-align: left;
}

.top-thoughts .top-thoughts-text {
    display: flex;
    align-items: flex-start;
    gap: 6.5rem;
}

.top-thoughts .top-thoughts-text .top-thoughts-text__item {
    width: calc((100% - 6.5rem) / 2);
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: .04em;
    font-weight: 500;
}

.top-thoughts .top-thoughts-text .top-thoughts-text__item p+p {
    margin-top: 4rem;
}

.top-bg {
    position: relative;
    padding-bottom: 16rem;
    width: 100%;
}

.top-bg:before {
    width: 100%;
    height: 100vh;
    background: url(../img/top/bg_lighting.jpg) center top no-repeat;
    background-size: cover;
    content: '';
    display: block;
    position: sticky;
    left: 0;
    top: 0;
    z-index: 1;
}

.top-bg__inner {
    position: relative;
    z-index: 2;
    margin-top: -100vh;
}

.top-gallery {
    padding: 20rem 0 0;
}

.top-gallery .top-gallery__heading {
    margin-bottom: 6.4rem;
    text-align: center;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: .04em;
}

.top-gallery .heading-large {
    margin-bottom: 2.4rem;
}

.top-gallery .top-gallery__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.4rem;
}

.top-gallery .top-gallery__list .gallery-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 53rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-radius: 2.4rem 2.4rem 0 2.4rem;
    box-shadow: 0 .4rem 2rem 0 rgba(0, 0, 0, 0.25);
    background: #0C0602;
}

.top-gallery .top-gallery__list .gallery-block:before {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    background-position: center center;
    background-repeat: repeat;
    background-size: 30rem auto;
    content: '';
    opacity: .3;

}

.top-gallery .top-gallery__list .ptn-straight:before {
    background-image: url(../img/top/ptn_straight.png);
}

.top-gallery .top-gallery__list .ptn-skeleton:before {
    background-image: url(../img/top/ptn_skeleton.png);
    background-size: 20rem auto;
    opacity: .8;
}

.top-gallery .top-gallery__list .ptn-wave:before {
    background-image: url(../img/top/ptn_wave.png);
}

.top-gallery .top-gallery__list .gallery-block:after {
    content: 'VIEW MORE';
    position: absolute;
    right: 2rem;
    bottom: 1.6rem;
    z-index: 3;
    padding-right: 1.674rem;
    background: url(../img/common/icon_toggle.svg) right center no-repeat;
    background-size: 1.34rem auto;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: .08em;
    font-family: var(--Roboto_Slab);
    color: var(--green);
    font-weight: bold;
}

.top-gallery .top-gallery__list .gallery-block .gallery-block__title {
    position: relative;
    z-index: 2;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: var(--Yuji_Boku);
    font-size: 4.8rem;
    font-weight: 400;
    letter-spacing: .3em;
    transition: opacity .5s ease;
}

/*** hover ***/
@media screen and (min-width: 960px) {

    .top-gallery .top-gallery__list .gallery-block:hover {
        text-decoration: none;
    }

    .top-gallery .top-gallery__list .gallery-block:hover .gallery-block__title {
        opacity: .7;
    }
}

.top-staff {
    padding: 16rem 0 0;
}

.top-staff .heading-large {
    margin-bottom: 10rem;
}

.top-staff .top-staff__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.4rem;
}

.top-staff .top-staff__list .staff-block {
    display: block;
    position: relative;
    width: 100%;
    height: 50rem;
    border-radius: 2.4rem 2.4rem 0 2.4rem;
    overflow: hidden;
    background: #0C0602;
}

.top-staff .top-staff__list .staff-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: block;
    transition: transform .5s ease;
}

.top-staff .top-staff__list .staff-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-staff .top-staff__list .staff-name {
    position: absolute;
    right: 0;
    top: 0;
    padding: 3.2rem 2.4rem;
    z-index: 2;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
}

.top-staff .top-staff__list .staff-name .staff-name__post {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    letter-spacing: .24em;
}

.top-staff .top-staff__list .staff-name .staff-name__name {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: .13em;
}

.top-staff .top-staff__list .staff-instagram {
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 2rem 2.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 500;
}

.top-staff .top-staff__list .staff-instagram:after {
    width: 3.2rem;
    height: 3.2rem;
    background: url(../img/top/icon_instagram.svg) center center no-repeat;
    background-size: 100% auto;
    content: '';
}

/*** hover ***/
@media screen and (min-width: 960px) {

    .top-staff .top-staff__list .staff-block:hover {
        text-decoration: none;
    }

    .top-staff .top-staff__list .staff-block:hover .staff-image {
        transform: scale(1.05);
    }
}

.top-access {
    padding: 24rem 0 0;
    position: relative;
    z-index: 2;
}

.top-access:before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(12, 6, 2, 0) 0%, #0C0602 100%);
    content: '';
}

.top-access .top-access__inner {
    display: flex;
    align-items: flex-start;
}

.top-access .heading-large {
    width: 28.5rem;
}

.top-access .top-access__list {
    width: calc(100% - 28.5rem);
}

.top-access .top-access__list li+li {
    margin-top: 2.4rem;
}

.top-access .top-access__list .access-block {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 47.3rem;
    position: relative;
    overflow: hidden;
    z-index: 2;
    border-radius: 2.4rem 2.4rem 0 2.4rem;
    background: #0C0602;
}

.top-access .top-access__list .access-block:before {
    width: 100%;
    height: 12.2rem;
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    content: '';
    background: linear-gradient(180deg, rgba(12, 6, 2, 0) 0%, #0C0602 100%);
}

.top-access .top-access__list .access-block:after {
    content: 'VIEW MORE';
    position: absolute;
    right: 3.2rem;
    bottom: 3.2rem;
    z-index: 3;
    padding-right: 1.674rem;
    background: url(../img/common/icon_toggle.svg) right center no-repeat;
    background-size: 1.34rem auto;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: .08em;
    font-weight: bold;
    font-family: var(--Roboto_Slab);
    color: var(--green);
}

.top-access .top-access__list .access-image {
    width: 100%;
    height: 100%;
    display: block;
    transition: transform .5s ease;
}

.top-access .top-access__list .access-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-access .top-access__list .access-box {
    position: absolute;
    left: 3.2rem;
    bottom: 3.2rem;
    z-index: 2;
    width: 100%;
    padding-right: 15rem;
    display: block;
}

.top-access .top-access__list .access-box .access-box__name {
    display: block;
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: .1em;
    font-family: var(--Roboto_Slab);
    font-weight: bold;
}

.top-access .top-access__list .access-box .access-box__tel {
    display: block;
    margin-top: 1.2rem;
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: .1em;
    font-family: var(--Roboto_Slab);
    font-weight: bold;
}

/*** hover ***/
@media screen and (min-width: 960px) {

    .top-access .top-access__list .access-block:hover {
        text-decoration: none;
    }

    .top-access .top-access__list .access-block:hover .access-image {
        transform: scale(1.05);
    }
}

/*** sp ***/
@media screen and (max-width: 767px) {
    .top-post {
        padding: 12.136rem 0 16.3rem;
    }

    .top-post .post-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 4.8rem;
    }

    .top-concept {
        padding-bottom: 16rem;
    }

    .top-concept__box {
        height: 100vh;
        min-height: 66.7rem;
        font-size: 1.4rem;
        background: rgba(12, 6, 2, 0.6);
        z-index: 3;
    }

    .top-concept__box .heading-large {
        margin-bottom: 4.8rem;
    }

    .top-concept .top-concept__image {
        height: 158.7rem;
        margin-top: -100vh;
    }

    .top-concept .concept-image01 {
        width: 26.9rem;
        left: 0;
        margin-left: 0;
    }

    .top-concept .concept-image02 {
        width: 18.1rem;
        top: 24.7rem;
        right: 0;
        margin-right: 0;
    }

    .top-concept .concept-image03 {
        width: 10.6rem;
        top: 36.8rem;
        left: 0;
        margin-left: 0;
    }

    .top-concept .concept-image04 {
        width: 19.6rem;
        top: 45.5rem;
        right: 0;
        margin-right: 0;
    }

    .top-concept .concept-image05 {
        width: 26.9rem;
        top: 65rem;
        left: 1.6rem;
        margin-left: 0;
    }

    .top-concept .concept-image06 {
        width: 19.5rem;
        top: 92.7rem;
        right: url;
        margin-right: 0;
        left: 0;
    }

    .top-concept .concept-image07 {
        width: 10.6rem;
        top: 104rem;
        right: 0;
        margin-right: 0;
    }

    .top-concept .concept-image08 {
        width: 28.5rem;
        top: 115.7rem;
        left: 1.6rem;
        margin-left: 0;
    }

    .top-thoughts {
        display: block;
        padding: 26rem 0 0;
    }

    .top-thoughts .top-thoughts__image {
        width: 100%;
        position: absolute;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .top-thoughts .top-thoughts__image:after {
        width: 100%;
        height: 21.6rem;
        position: absolute;
        left: 0;
        bottom: 0;
        z-index: 2;
        content: '';
        background: linear-gradient(180deg, rgba(12, 6, 2, 0) 0%, #0C0602 100%);
    }

    .top-thoughts .top-thoughts__box {
        padding: 0 1.6rem;
        width: 100%;
        position: relative;
        z-index: 2;
    }

    .top-thoughts .top-thoughts__box .heading-large {
        margin-bottom: 2.4rem;
        text-align: left;
    }

    .top-thoughts .top-thoughts-text {
        flex-wrap: wrap;
        gap: 3.2rem;
    }

    .top-thoughts .top-thoughts-text .top-thoughts-text__item {
        width: 100%;
        font-size: 1.4rem;
    }

    .top-thoughts .top-thoughts-text .top-thoughts-text__item p+p {
        margin-top: 3.2rem;
    }

    .top-bg {
        padding-bottom: 6.4rem;
    }

    .top-bg:before {
        background-position: left top;
    }

    .top-gallery {
        padding: 12rem 0 0;
    }

    .top-gallery .top-gallery__heading {
        margin-bottom: 4.8rem;
    }

    .top-gallery .top-gallery__list {
        grid-template-columns: repeat(1, 1fr);
        gap: 1.6rem;
    }

    .top-gallery .top-gallery__list .gallery-block {
        height: 45.676rem;
    }

    .top-gallery .top-gallery__list .gallery-block:before {
        opacity: .5;

    }

    .top-gallery .top-gallery__list .ptn-skeleton:before {
        opacity: 1;
    }

    .top-gallery .top-gallery__list .gallery-block:after {
        right: 2.4rem;
        bottom: 2rem;
        padding-right: 1.6rem;
        background-size: 1.2rem auto;
        font-size: 1.2rem;
    }

    .top-gallery .top-gallery__list .gallery-block .gallery-block__title {
        font-size: 4rem;
    }

    .top-staff {
        padding: 12rem 0 0;
    }

    .top-staff .heading-large {
        margin-bottom: 4.8rem;
    }

    .top-staff .top-staff__list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.6rem;
    }

    .top-staff .top-staff__list .staff-block {
        height: 26.977rem;
    }

    .top-staff .top-staff__list .staff-name {
        padding: 1.2rem 1.6rem;
    }

    .top-staff .top-staff__list .staff-name .staff-name__post {
        font-size: 1rem;
    }

    .top-staff .top-staff__list .staff-name .staff-name__name {
        font-size: 1.6rem;
    }

    .top-staff .top-staff__list .staff-instagram {
        padding: 1.2rem 1.6rem;
        gap: .8rem;
        font-size: 1rem;
    }

    .top-staff .top-staff__list .staff-instagram:after {
        width: 1.6rem;
        height: 1.6rem;
    }

    .top-access {
        padding: 12rem 0 0;
    }

    .top-access .top-access__inner {
        display: block;
    }

    .top-access .heading-large {
        width: 100%;
        margin-bottom: 4.8rem;
    }

    .top-access .top-access__list {
        width: 100%;
    }

    .top-access .top-access__list li+li {
        margin-top: 1.6rem;
    }

    .top-access .top-access__list .access-block {
        height: 34.3rem;
    }

    .top-access .top-access__list .access-block:before {
        height: 11.8rem;
    }

    .top-access .top-access__list .access-block:after {
        right: 1.6rem;
        bottom: 1.6rem;
        padding-right: 1.6rem;
        background-size: 1.2rem auto;
        font-size: 1.2rem;
    }

    .top-access .top-access__list .access-box {
        left: 1.6rem;
        bottom: 5.4rem;
        padding-right: 0;
    }

    .top-access .top-access__list .access-box .access-box__name {
        font-size: 2rem;
    }

    .top-access .top-access__list .access-box .access-box__tel {
        font-size: 1.6rem;
    }
}

.popup-wrap {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 9999;
    background: var(--black);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .5s ease, visibility .5s ease;
}

.popup-wrap.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.popup-wrap .popup-close {
    width: 5.6rem;
    height: 5.6rem;
    position: fixed;
    right: 4rem;
    top: 4rem;
    z-index: 5;
    cursor: pointer;
    background: url(../img/top/icon_close.svg) center center no-repeat;
    background-size: 100% auto;
    border-radius: 100%;
}

.popup-wrap .popup-box {
    width: 100%;
    height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.popup-wrap .popup-gallery {
    width: 100%;
    position: relative;
    z-index: 2;
}

.popup-wrap .popup-gallery:before {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    content: '';
}

.popup-wrap#straight .popup-gallery:before {
    background: url(../img/top/ptn_straight.png) center center repeat;
    background-size: 30rem auto;
    opacity: .25;
}

.popup-wrap#skeleton .popup-gallery:before {
    background: url(../img/top/ptn_skeleton.png) center center repeat;
    background-size: 20rem auto;
    opacity: .8;
}

.popup-wrap#wave .popup-gallery:before {
    background: url(../img/top/ptn_wave.png) center center repeat;
    background-size: 30rem auto;
    opacity: .25;
}

.popup-wrap .popup-gallery .popup-gallery__head {
    padding: 10rem 13rem 6.4rem;
    border-bottom: .1rem solid var(--beige);
    font-size: 1.6rem;
    line-height: 2;
    font-weight: 500;
    letter-spacing: .04em;
    display: flex;
    align-items: flex-start;
    margin-bottom: 6.4rem;
}

.popup-wrap .popup-gallery .popup-gallery__head .gallery-heading {
    min-width: 16.4rem;
    font-size: 4.8rem;
    line-height: 1.5;
    font-family: var(--Yuji_Boku);
    font-weight: 400;
}

.popup-wrap .popup-gallery .gallery-item {
    padding-bottom: 12rem;
    display: flex;
    align-items: center;
    gap: 6.4rem;
}

.popup-wrap .popup-gallery .gallery-item .gallery-item__image {
    width: 36rem;
}

.popup-wrap .popup-gallery .gallery-item .gallery-item__image img {
    width: 100%;
}

.popup-wrap .popup-gallery .gallery-item .gallery-item__box {
    width: calc(100% - 42.4rem);
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: .04em;
    font-weight: 500;
}

.popup-wrap .popup-gallery .gallery-item .gallery-title {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .04em;
    margin-bottom: 1.6rem;
}

.popup-wrap .popup-gallery .gallery-item .gallery-box p+p {
    margin-top: 2em;
}

.popup-wrap .popup-gallery .gallery-products {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    margin-top: 2em;
}

.popup-wrap .popup-gallery .gallery-products span {
    font-size: 1.4rem;
    line-height: 2rem;
    padding: .2rem .8rem;
    background: rgba(222, 192, 161, 0.15);
    border-radius: .1rem;
}

.popup-access {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-access .popup-access__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    content: '';
    opacity: .1;
}

.popup-access .popup-access__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-access .popup-access__image {
    width: 41.667%;
    height: 100%;
    overflow: hidden;
}

.popup-access .popup-access__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popup-access .popup-access__box {
    width: 58.333%;
    padding: 0 4rem;
}

.popup-access .access-info {
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
}

.popup-access .access-info .access-info__item {
    border-bottom: .1rem solid var(--beige);
    padding: 1.6rem 0;
    font-size: 1.4rem;
    line-height: 1.5;
    letter-spacing: .04em;
    display: flex;
    align-items: flex-start;
}

.popup-access .access-info .access-info__item:first-child {
    border-top: .1rem solid var(--beige);
}

.popup-access .access-info .access-info__item dt {
    width: 12rem;
    padding: 0 1.6rem;
    text-align: left;
    font-weight: 400;
}

.popup-access .access-info .access-info__item dd {
    flex-grow: 1;
}

.popup-access .access-info .access-info__item p+p {
    margin-top: .8rem;
}

.popup-access .access-info .access-info__item a {
    color: var(--green);
    text-decoration: underline;
}

/*** sp ***/
@media screen and (max-width: 767px) {

    .popup-wrap .popup-close {
        width: 4.2rem;
        height: 4.2rem;
        right: 1.6rem;
        top: 1.6rem;
    }

    .popup-wrap .popup-gallery:before {
        background-size: 15rem auto;
    }

    .popup-wrap .popup-gallery .popup-gallery__head {
        padding: 4.8rem 0 6.4rem;
        display: block;
    }

    .popup-wrap .popup-gallery .popup-gallery__head .gallery-heading {
        min-width: unset;
        font-size: 2.8rem;
        margin-bottom: 1.6rem;
    }

    .popup-wrap .popup-gallery .gallery-item {
        padding-bottom: 6.4rem;
        display: block;
    }

    .popup-wrap .popup-gallery .gallery-item .gallery-item__image {
        width: 24.7rem;
        margin: 0 auto 2.4rem;
    }

    .popup-wrap .popup-gallery .gallery-item .gallery-item__box {
        width: 100%;
        font-size: 1.4rem;
    }

    .popup-wrap .popup-gallery .gallery-item .gallery-title {
        font-size: 1.8rem;
        margin-bottom: .8rem;
    }

    .popup-wrap .popup-gallery .popup-gallery__body {
        padding-bottom: 8rem;
    }

    .popup-wrap .popup-gallery .gallery-products span {
        font-size: 1.2rem;
    }

    .popup-access {
        display: block;
    }

    .popup-access .popup-access__bg {
        display: none;
    }

    .popup-access .popup-access__image {
        width: 100%;
        height: auto;
    }

    .popup-access .popup-access__box {
        padding: 8rem 1.6rem;
        width: 100%;
    }
}

.top-history {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: nowrap;
}

.top-history .top-history__item {
    width: fit-content;
    height: 100vh;
    position: relative;
}

.top-history .history-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: var(--black);
}

.top-history .history-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .2;
}

.top-history .history-home {
    width: 100vw;
    padding: 12.7rem 0;
    font-size: 1.4rem;
    line-height: 2;
    letter-spacing: .04em;
    font-weight: 500;
    position: relative;
    z-index: 2;
}


.top-history .history-home .heading-large {
    margin-bottom: 4rem;
    text-align: left;
}

.top-history .history-item {
    width: 100vw;
    min-width: 144rem;
    height: 100%;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-history .history-item__image {
    width: 41.667%;
    height: 100%;
    overflow: hidden;
}

.top-history .history-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-history .history-item__box {
    width: 58.333%;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: .04em;
    font-weight: 500;
}

.top-history .history-item__box .heading-large {
    text-align: left;
    margin-bottom: 2.4rem;
}

.top-history .history-body {
    width: 100%;
    max-width: 60.8rem;
    margin: 0 auto;
}

.top-history .history-contents {
    display: flex;
    align-items: flex-start;
    gap: 4.8rem;
}

.top-history .history-contents .history-contents__item {
    flex: 1;
    min-width: 0;
}

.top-history .history-contents .history-contents__item p+p {
    margin-top: 4rem;
}


/*** sp ***/
@media screen and (max-width: 767px) {
    .top-history .history-home {
        width: 100vw;
        padding: 10rem 0 18rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        align-items: flex-start;
        height: 100%;
    }


    .top-history .history-home .heading-large {
        margin-bottom: 3.2rem;
    }

    .top-history .history-item {
        min-width: 300vw;
        height: 100%;
        position: relative;
        z-index: 2;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-history .history-item__image {
        width: 100vw;
    }

    .top-history .history-item__image img {
        object-position: left center;
    }

    .top-history .history-item__box {
        width: calc(100% - 100vw);
        font-size: 1.4rem;
        line-height: 2;
        letter-spacing: .04em;
        font-weight: 500;
    }

    .top-history .history-body {
        width: 100%;
        max-width: 60.8rem;
        margin: 0 auto;
    }

    .top-history .history-item__box .heading-large {
        text-align: left;
        margin-bottom: 2.4rem;
    }

    .top-history .history-contents {
        display: flex;
        align-items: flex-start;
        gap: 4.8rem;
    }

    .top-history .history-contents .history-contents__item {
        flex: 1;
        min-width: 0;
    }

    .top-history .history-contents .history-contents__item p+p {
        margin-top: 4rem;
    }
}

.top-scroll {
    position: relative;
}

.top-scroll-box {
    width: 100%;
    overflow: hidden;
    margin-top: -100vh;
}

.top-scroll-bar {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 3;
}

.top-scroll-bar .top-scroll-bar__inner {
    width: 40rem;
    height: 2rem;
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    bottom: 5rem;
    z-index: 3;
}

.top-scroll-bar .top-scroll-bar__inner .scroll-left-bar {
    width: 100%;
    height: .1rem;
    background: linear-gradient(90deg, #1A3F0C 0%, #2F7216 50%, #44A51F 100%);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.top-scroll-bar .top-scroll-bar__inner .scroll-right-bar {
    width: 100%;
    height: .1rem;
    background: linear-gradient(90deg, #1A3F0C 0%, #2F7216 50%, #44A51F 100%);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.top-scroll-bar .top-scroll-bar__inner .scroll-year {
    width: 20%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
}

.top-scroll-bar .top-scroll-bar__inner .scroll-year .scroll-year__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.top-scroll-bar .top-scroll-bar__inner .scroll-year .scroll-year__text li {
    width: 100%;
    min-height: 100%;
    font-size: 2rem;
    line-height: 1;
    font-weight: bold;
    font-family: var(--Roboto_Slab);
    color: var(--green);
    text-align: center;
}

.top-scroll-bar .txt-scroll {
    position: absolute;
    right: 7.8rem;
    bottom: 4.6rem;
    z-index: 2;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.8;
    letter-spacing: .08em;
    color: var(--green);
    padding-right: 4.2rem;
    background: url(../img/top/icon_scroll.svg) right center no-repeat;
    background-size: 3.8rem auto;
    font-family: var(--Roboto_Slab);
}

/*** sp ***/
@media screen and (max-width: 767px) {
    .top-scroll-bar .top-scroll-bar__inner {
        width: 24rem;
        height: 1.6rem;
        bottom: 4.2rem;
    }

    .top-scroll-bar .top-scroll-bar__inner .scroll-year .scroll-year__text li {
        font-size: 1.6rem;
    }

    .top-scroll-bar .txt-scroll {
        display: none;
    }
}