/*
Theme Name: サブスクサイトテーマ(居酒屋v1)
Author: SUBSCSITE @ M,M
Description: 居酒屋サイトのオリジナルWordPressテーマです。
Version: 2.3
*/

/* ==============================================
common
============================================== */

:root {
    /* ------ color ------ */
    --color-primary: #B22222;
    --color-primary-dark: #8F1717;
    /* ------ color-secondary ------ */
    --color-text: #2F2F2F;
    --color-background: #FFFDF8;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-gray: #DDDDDD;
    /* ------ typography ------ */
    --font-ja: "Noto Sans JP", sans-serif;
    --font-en: "Poppins", sans-serif;
    --fs-body: 16px;
    --fs-heading-ja: 42px;
    --fs-subtitle-en: 15px;
    --fs-heading-ja-sp: 32px;
    --fs-subtitle-en-sp: 14px;
    --lh-default: 1.5em;
    /* ------ layout ------ */
    --section-margin-pc: 120px;
    --section-margin-sp: 60px;
    --section-max-width: 1200px;
    --section-padding-pc: 0 8%;
    --section-padding-sp: 0 8%;
    --section-bg-padding-pc: 120px 0;
    --section-bg-padding-sp: 60px 0;
    /* ------ border, shadow, etc. ------ */
    --border-default: 1px solid var(--color-gray);
    /* ------ animation & transition ------ */
    --transition-default: all 0.3s ease;
}

body {
    font-family: var(--font-ja);
    font-size: var(--fs-body);
    line-height: 2em;
    font-weight: 500;
    color: var(--color-text);
    background-color: var(--color-background);
}

@media screen and (max-width: 768px) {
    body {
        line-height: 1.8em;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-ja);
    line-height: var(--lh-default);
    font-weight: bold;
    text-transform: uppercase;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-default);
}

a:hover {
    color: var(--color-primary-dark);
    text-decoration: none;
}

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

.p-margin {
    margin-block-start: 0;
    margin-block-end: 0;
}

/* ------ layout ------ */

.container {
    width: 100%;
    margin-top: var(--section-margin-pc);
    padding: var(--section-padding-pc);
    overflow: hidden;
}

.wrap {
    max-width: var(--section-max-width);
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .container {
        margin-top: var(--section-margin-sp);
        padding: var(--section-padding-sp);
    }
}

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

.but-primary a {
    position: relative;
    background-color: var(--color-primary);
    transition: var(--transition-default);
    display: block;
    width: 100%;
    max-width: 300px;
    padding: 18px 30px;
    color: var(--color-white);
    font-size: 16px;
    border-radius: 100px;
    font-weight: bold;
    text-align: center;
}

.fa-position-right {
    position: absolute;
    top: calc(50% - .5em);
    right: 1.5rem;
    font-size: 0.9em;
}

.but-primary a:hover {
    background-color: var(--color-primary-dark);
}

.but-primary--center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fa-position-left {
    position: absolute;
    top: calc(50% - .5em);
    left: 1.5rem;
    font-size: 0.9em;
}

@media screen and (max-width: 768px) {
    .but-primary a {
        width: 240px;
        padding: 18px 30px;
        font-size: 15px;
    }
}

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

.sec-heading {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.5em;
}

.sec-heading.sec-heading--left {
    align-items: flex-start;
}

.sec-heading__subttl {
    font-family: var(--font-en);
    font-size: var(--fs-subtitle-en);
    font-weight: 600;
    line-height: 1;
    color: var(--color-primary);
    text-transform: uppercase;
}

.sec-heading__ttl {
    font-size: var(--fs-heading-ja);
    line-height: var(--lh-default);
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .sec-heading__subttl {
        font-size: var(--fs-subtitle-en-sp);
    }

    .sec-heading__ttl {
        font-size: var(--fs-heading-ja-sp);
    }
}

/* ------ fadein ------ */

@keyframes fade-in-bottom {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.js-fade-in.is-active {
    animation: fade-in-bottom 0.6s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.js-fade-in {
    opacity: 0;
}

/* ------ floating ------ */

.floating {
    width: 200px;
    height: 80px;
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.floating__link {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    gap: 6px;
    padding: 0 20px;
}

.floating__link:hover {
    background-color: var(--color-primary-dark);
}

.floating__sub {
    font-family: var(--font-en);
    font-size: 12px;
    line-height: 1;
}

.floating__ttl {
    font-size: 16px;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .floating {
        width: 100%;
        height: 50px;
    }

    .floating__link {
        flex-direction: row;
        gap: 12px;
    }

    .floating__sub {
        font-size: 10px;
    }

    .floating__ttl {
        font-size: 14px;
    }
}

/* ------ anchor ------ */
html {
    scroll-padding-top: 100px;
}


/* ==============================================
header
============================================== */

.header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    transition: .3s;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 30px;
    height: 80px;
}

.header-logo {
    display: block;
    width: 200px;
}

.header-nav__list {
    display: flex;
    gap: 24px;
}

.header-nav__list a:hover {
    color: var(--color-primary);
}

.hamburger-menu {
    display: none;
}

@media screen and (max-width: 768px) {
    .header__inner {
        padding: 0px 20px 0 16px;
        height: 60px;
    }

    .header-logo {
        width: 130px;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 1.5rem;
        height: 1.3rem;
        background: transparent;
        border: none;
        cursor: pointer;
        position: relative;
        z-index: 100;
    }

    .hamburger-menu__line {
        display: block;
        width: 100%;
        height: 2px;
        background-color: var(--color-primary);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--color-background);
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
        z-index: 90;
    }

    .header-nav__list {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    /* ------ hamburger-open ------ */

    .header-nav.is-open {
        transform: translateX(0);
    }

    .hamburger-menu.is-open .hamburger-menu__line:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .hamburger-menu.is-open .hamburger-menu__line:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .header-nav.is-open a {
        color: var(--color-text);
        font-size: 20px;
    }

    .header-nav.is-open .header-nav__list {
        padding: 42px;
    }
}

/* ------ pc-header color change ------ */

.header-nav__link {
    color: var(--color-white);
    white-space: nowrap;
}

.header.scrolled {
    background-color: var(--color-white);
}

.header.scrolled .header-nav__link:hover {
    color: var(--color-primary);
}

@media (min-width: 768px) {
    .header.scrolled .header-nav__link {
        color: var(--color-text);
    }
}

/* ==============================================
footer
============================================== */

.footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 15px;
}

.container.footer {
    padding: 120px 8%;
}

.footer a {
    color: var(--color-white);
}

.footer__inner {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3%;
}

.footer-logo {
    display: block;
    width: 220px;
}

.footer-address {
    margin-top: 30px;
}

.footer-address p {
    line-height: 1.6em;
}

.footer-sns {
    margin-top: 20px;
    display: flex;
    gap: 8px;
}

.footer-sns__link {
    width: 1.2em;
    height: 1.2em;
    display: inline-block;
}

.footer-sns__link:hover {
    filter: brightness(0.8);
}

.footer-sns__icon {
    width: 100%;
    height: 100%;
}

.footer-nav__list {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 30px;
}

.footer-nav__link {
    white-space: nowrap;
}

.copyright {
    font-size: 12px;
    text-align: right;
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .container.footer {
        padding: 80px 8%;
    }

    .footer__inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-date, .footer-nav {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-nav {
        margin-top: 30px;
    }

    .footer-nav__list {
        width: 50%;
    }

    .copyright {
        margin-top: 30px;
    }

    .footer-nav__list {
        flex-direction: column;
        gap: 10px;
    }
}

/* ==============================================
page-header
============================================== */

.pg-hd-container {
    padding: 120px 8%;
    color: var(--color-white);
}

.pg-hd-container__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.pg-hd-container__ttl {
    font-size: 48px;
}

.breadcrumbs-list {
    list-style: none;
    display: flex;
    gap: 1em;
    font-size: 14px;
    margin-top: 0.8em;
    font-weight: 500;
    text-transform: uppercase;
}

.breadcrumbs-list i {
    margin-right: 1em;
    font-size: 0.8em;
}

.breadcrumbs-item a {
    color: var(--color-white);
}

.breadcrumbs-item a:hover {
    color: var(--color-primary);
}

@media screen and (max-width: 768px) {
    .pg-hd-container {
        padding: 82px 8% 38px 8%;
    }

    .pg-hd-container__ttl {
        font-size: 26px;
    }

    .breadcrumbs-list {
        font-size: 12px;
        margin-top: 0.5em;
    }
}

/* ==============================================
top page
============================================== */

/* ------ swiper ------ */

.swiper-slide img {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* ------ FV area ------ */

.fv-copy {
    color: var(--color-white);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1.4em;
    text-align: center;
    padding: 0 8%;
    z-index: 2;
}

.fv-copy h2 {
    font-size: clamp(1.5rem, 1.091rem + 2.05vw, 2.625rem);
}

.fv-copy p {
    font-style: var(--fs-subtitle-en);
    font-size: 15px;
}

@media screen and (max-width: 768px) {
    .swiper-slide img {
        height: 96vh;
    }

    .fv-copy {
        align-items: flex-start;
        gap: 1em;
        text-align: left;
    }

    .fv-copy p {
        font-size: 13px;
    }
}

/* ------ news area ------ */

.news-container__inner {
    display: flex;
    gap: 10%;
}

.news-container__side {
    flex: 1;
    max-width: 280px;
}

.news-container__main {
    flex: auto;
}

.news-but {
    margin-top: 60px;
}

.news-list a {
    color: var(--color-text);
}

.news-list a:hover {
    color: var(--color-primary);
}

.news-item a {
    display: block;
    padding: 32px 0;
    box-sizing: border-box;
    border-bottom: var(--border-default);
}

.news-item:first-of-type a {
    border-top: var(--border-default);
}

.news-item__date {
    font-size: 15px;
    color: var(--color-primary);
    line-height: 1;
    font-family: var(--font-en);
}

.news-item__title {
    font-size: 16px;
    font-weight: bold;
    margin-top: 0.5em;
}

.news-but--sp {
    display: none;
}

@media screen and (max-width: 768px) {
    .news-but {
        display: none;
    }

    .news-but.news-but--sp {
        display: flex;
    }

    .news-container__inner {
        flex-direction: column;
        gap: 30px;
    }

    .news-item a {
        padding: 30px 0;
    }

    .news-but {
        margin-top: 36px;
    }
}

/* ------ about area ------ */

.about-container__inner {
    display: flex;
    gap: 10%;
}

.about-left {
    width: 45%;
}

.about-right {
    width: 55%;
}

.about-img-1 img, .about-img-2 img {
    aspect-ratio: 1/1;
}

.about-img-1 img {
    width: 36%;
    margin-right: -5%;
}

.about-img-2 img {
    width: 56%;
}

.about-img-1 {
    display: flex;
    justify-content: flex-end;
}

.about-img-2 {
    margin-top: -16%;
}

.about-text {
    margin-top: 60px;
}

.about-text p {
    margin-bottom: 1em;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-heading {
    margin-left: 12%;
}

.about-img-3 img {
    aspect-ratio: 5/4;
    width: 100%;
}

.about-img-3 {
    margin-top: 130px;
}

.about-heading .sec-heading__ttl {
    margin-top: 20px;
}

@media screen and (max-width: 768px) {
    .about-container__inner {
        flex-direction: column-reverse;
        gap: 0;
    }

    .about-heading {
        margin-left: 0;
    }

    .about-left, .about-right {
        width: 100%;
    }

    .about-img-3 {
        margin-top: 40px;
    }

    .about-img-3 img {
        width: 96%;
        margin-left: -10%;
    }

    .about-img-1 {
        margin-top: -12%;
    }

    .about-img-2 {
        margin-top: -5%;
    }

    .about-img-2 img {
        width: 62%;
    }

    .about-heading .sec-heading__ttl {
        margin-top: 10px;
    }

    .about-text {
        margin-top: 36px;
    }
}

/* ------ slider area ------ */

.slider {
    display: flex;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    overflow: hidden;
}

.slider__list {
    display: flex;
    list-style: none;
    animation: loop-slide--right 80s infinite linear 1s both;
}

.slider__item {
    width: calc(100vw / 2);
    max-width: 650px;
    margin-right: 0.6%;
}

.slider__item>img {
    width: 100%;
    vertical-align: top;
}

@keyframes loop-slide--right {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

@media screen and (max-width:768px) {
    .slider__item {
        width: calc(100vw / 1.4);
    }
}

/* ------ concept area ------ */

.concept-container {
    padding: var(--section-bg-padding-pc);
    padding-right: 8%;
    padding-left: 8%;
    background-color: var(--color-primary);
    color: var(--color-white);
}

.concept-container p {
    color: var(--color-white);
}

.concept-item {
    display: flex;
    align-items: center;
    flex-direction: row;
    gap: 8%;
    margin-top: 100px;
}

.concept-item--reverse {
    flex-direction: row-reverse;
}

.concept-item__contents, .concept-item__thumb {
    width: 50%;
    position: relative;
}

.concept-item__subttl {
    font-family: var(--font-en);
    font-size: var(--fs-subtitle-en);
    font-weight: 600;
    line-height: 1;
    color: var(--color-white);
    text-transform: uppercase;
}

.concept-item__ttl {
    font-size: 28px;
    line-height: var(--lh-default);
    font-weight: bold;
    margin-top: 0.5em;
}

.concept-item__txt {
    margin-top: 2em;
}

.concept-item__num {
    font-size: clamp(2rem, -0.455rem + 12.27vw, 8.75rem);
    font-family: var(--font-en);
    font-weight: bold;
    position: absolute;
    bottom: 1%;
    right: -5%;
    z-index: 3;
}

.concept-item__thumb img {
    aspect-ratio: 5/4;
}

@media screen and (max-width: 768px) {
    .concept-container {
        padding: var(--section-bg-padding-sp);
        padding-right: 8%;
        padding-left: 8%;
    }


    .concept-item {
        flex-direction: column-reverse;
        gap: 36px;
    }

    .concept-item__contents, .concept-item__thumb {
        width: 100%;
    }

    .concept-item {
        margin-top: 40px;
    }

    .concept-item__ttl {
        font-size: 22px;
    }

    .concept-item__subttl {
        font-size: 13px;
    }

    .concept-item__txt {
        margin-top: 1em;
    }

    .concept-item__num {
        font-size: 16vw;
        right: -4%;
    }
}

/* ------ contents area ------ */

.contents-container {
    padding-top: 120px;
    color: var(--color-white);
    position: relative;
}

.container.contents-container {
    margin-top: 0;
}

.contents-container::before {
    content: "";
    height: 80%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--color-text);
    display: block;
    z-index: -1;
}

.contents-container p {
    color: var(--color-white);
}

.contents-list {
    display: flex;
    gap: 20px;
    flex-direction: row;
    justify-content: space-between;
}

.contents-card {
    aspect-ratio: 1/1;
    width: 32%;
    overflow: hidden;
    color: var(--color-white);
    position: relative;
}

.contents-card a {
    color: var(--color-white);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.contents-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: var(--bg-image);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    transition: var(--transition-default);
    z-index: -1;
    filter: brightness(50%);
}

.contents-card:hover::before {
    filter: brightness(70%);
}

.contents-card:hover a {
    color: var(--color-white);
}

.contents-card__subttl {
    font-family: var(--font-en);
    font-size: var(--fs-subtitle-en);
    font-weight: 600;
    line-height: 1;
    color: var(--color-white);
    text-transform: uppercase;
}

.contents-card__ttl {
    font-size: 28px;
    line-height: var(--lh-default);
    font-weight: bold;
    margin-top: 0.3em;
}

.contents-list {
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .contents-container {
        padding-top: 60px;
        color: var(--color-white);
        position: relative;
    }

    .contents-list {
        flex-direction: column;
        gap: 20px
    }

    .contents-card {
        aspect-ratio: 16/9;
        width: 100%;
    }

    .contents-list {
        margin-top: 40px;
    }

    .contents-card__subttl {
        font-size: 13px;
    }

    .contents-card__ttl {
        font-size: 24px;
    }
}

/* ------ blog area ------ */

.blog-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
}

.blog-item {
    width: calc((100% - 64px)/3);
}

.blog-item__link {
    display: flex;
    flex-direction: column;
    gap: 20px;
    color: var(--color-text);
}

.blog-item__title {
    font-size: 16px;
}

.blog-item__time {
    font-size: 12px;
    color: var(--color-primary);
    margin-top: 0.8em;
    line-height: var(--lh-default);
    font-family: var(--font-en);
}

.blog-item__time i {
    margin-right: 0.3em;
}

.blog-item__thumb {
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 1px solid var(--color-border);
}

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

.blog-item:hover img {
    filter: brightness(0.9);
    transition: .4s;
}

.blog-list {
    margin-top: 50px;
}

.blog-but {
    margin-top: 50px;
}

@media screen and (max-width: 768px) {
    .blog-list {
        flex-direction: column;
        gap: 30px;
    }

    .blog-item {
        width: 100%;
    }

    .blog-list {
        margin-top: 40px;
    }

    .blog-but {
        margin-top: 40px;
    }
}

/* ==============================================
news page
============================================== */

.news-archive-container__inner.wrap {
    max-width: 1000px;
}

/* ------ pagination ------ */

.pagination {
    margin-top: 50px;
}

.pagination__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 6px;
    list-style-type: none;
    padding: 0;
    font-family: var(--font-en);
    font-size: 15px;
}

.pagination__list a,
.pagination__list .current {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 2.8em;
    height: 2.8em;
    border-radius: 100px;
    background-color: #f2f2f2;
    color: var(--color-primary);
}

.pagination__list i {
    font-size: 0.7em;
}

.pagination__list a:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.pagination__list a:not(:hover) {
    text-decoration: none;
}

.pagination__list .current {
    background-color: var(--color-primary);
    color: #fff;
    pointer-events: none;
}

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

    .pagination__list {
        gap: 0 4px;
        font-size: 13px;
    }
}

/* ==============================================
menu page
============================================== */

/* ------ message ------ */

.message-container__inner {
    display: flex;
    gap: 8%;
    align-items: top;
}

.message-textarea {
    width: 55%;
}

.message-img {
    width: 45%;
}

.message-img img {
    aspect-ratio: 1/1;
}

.message-txt {
    margin-top: 36px;
}

.message-txt p {
    margin-bottom: 1em;
}

.message-txt p:last-child {
    margin-bottom: 0;
}

.message-name {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    text-align: right;
    gap: 0;
    list-style: var(--lh-default);
}

.message-name__shop-name {
    color: var(--color-primary);
    font-size: 15px;
}

.message-name__name {
    font-size: 24px;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .message-container__inner {
        flex-direction: column;
    }

    .message-img, .message-textarea {
        width: 100%;
    }

    .message-img {
        margin-top: 36px;
    }

    .message-txt {
        margin-top: 30px;
    }

    .message-name {
        margin-top: 16px;
    }

    .message-name__shop-name {
        font-size: 13px;
    }

    .message-name__name {
        font-size: 20px;
    }
}

/* ------ menu-img ------ */

.menu-img__inner {
    margin-top: 50px;
}

.menu-list {
    display: flex;
    justify-content: flex-start;
    gap: 60px 40px;
    flex-wrap: wrap;
}

.menu-item {
    width: calc((100% - 80px)/3);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-item__textarea {
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: var(--lh-default);
}

.menu-item__ttl {
    font-size: 18px;
}

.menu-item__price {
    font-size: 14px;
}

.menu-item__txt {
    font-size: 12px;
    color: var(--color-text);
    opacity: 0.8;
    line-height: 1.5;
}

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

    .menu-list {
        gap: 36px 0;
        flex-direction: column;
    }

    .menu-item {
        width: 100%;
        gap: 20px;
    }

    .menu-item__ttl {
        font-size: 16px;
    }
}

/* ------ menu-2col ------ */

.menu-2col {
    margin-top: 50px;
}

.menu-heading__ttl {
    font-size: 24px;
    border-left: 5px solid var(--color-primary);
    padding-left: 0.8em;
}

.menu-2col-list {
    margin-top: 10px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 40px;
    flex-direction: row;
}

.menu-2col-item {
    width: calc((100% - 40px)/2);
    padding: 24px 0;
    border-bottom: 1px solid var(--color-gray);
}

.menu-2col__heading {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.menu-2col__ttl, .menu-2col__price {
    font-size: 16px;
    line-height: var(--lh-default);
}

.menu-2col__ttl {
    width: calc(100% - 100px);
}

.menu-2col__price {
    width: 100px;
    text-align: right;
}

.menu-2col__txt {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.5;
    margin-top: 0.8em;
}

@media screen and (max-width: 768px) {
    .menu-heading__ttl {
        font-size: 20px;
        border-left: 4px solid var(--color-primary);
        padding-left: 0.6em;
    }

    .menu-2col {
        margin-top: 40px;
    }

    .menu-2col-list {
        gap: 0;
        flex-direction: column;
    }

    .menu-2col-item {
        width: 100%;
        padding: 20px 0;
    }

    .menu-2col__ttl, .menu-2col__price {
        font-size: 15px;
    }
}

/* ------ menu-1col ------ */

.menu-1col {
    margin-top: 50px;
}

.menu-1col-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.menu-1col-item {
    width: 100%;
    padding: 24px 0;
    border-bottom: 1px solid var(--color-gray);
}

.menu-1col__heading {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.menu-1col__ttl, .menu-1col__price {
    font-size: 16px;
    line-height: var(--lh-default);
}

.menu-1col__ttl {
    width: calc(100% - 100px);
}

.menu-1col__price {
    width: 100px;
    text-align: right;
}

.menu-1col__txt {
    font-size: 12px;
    opacity: 0.8;
    line-height: 1.5;
    margin-top: 0.8em;
}

@media screen and (max-width: 768px) {
    .menu-1col {
        margin-top: 40px;
    }

    .menu-1col-item {
        padding: 20px 0;
    }

    .menu-1col__ttl, .menu-1col__price {
        font-size: 15px;
    }
}

/* ==============================================
info page
============================================== */

/* ------ contact ------ */

.contact-heading__ttl {
    background-color: var(--color-text);
    color: var(--color-white);
    font-size: 16px;
    padding: 10px 20px;
}

.contact-container__inner.wrap {
    max-width: 1000px;
}

.contact-tel__tel {
    margin-top: 40px;
    font-family: var(--font-en);
}

.contact-tel__tel p {
    font-size: 20px;
}

.contact-tel__tel a {
    font-size: 42px;
    color: var(--color-text);
    line-height: 1;
    letter-spacing: -0.05em;
}

.contact-tel__time, .contact-tel__attention {
    font-size: 12px;
    line-height: var(--lh-default);
}

.contact-tel__time {
    margin-top: 0.5em;
}

.contact-tel__time span {
    background-color: var(--color-primary);
    border-radius: 5px;
    color: var(--color-white);
    font-size: 11px;
    padding: 2px 5px 3px 5px;
    margin-right: 0.5em;
}

.contact-heading--sns {
    margin-top: 50px;
}

.contact-but__list {
    display: flex;
    width: 100%;
    gap: 20px;
    justify-content: space-between;
    margin-top: 40px;
}

.contact-but__item {
    width: 36%;
}

.contact-but__item.but-primary a {
    max-width: 100%;
}

@media screen and (max-width: 768px) {
    .contact-heading__ttl {
        font-size: 15px;
        padding: 8px 12px;
    }

    .contact-tel__tel {
        margin-top: 24px;
    }

    .contact-tel__tel p {
        font-size: 15px;
    }

    .contact-tel__tel a {
        font-size: 36px;
    }

    .contact-heading--sns {
        margin-top: 36px;
    }

    .contact-but__list {
        gap: 10px;
        margin-top: 30px;
        flex-direction: column;
    }

    .contact-but__item {
        width: 100%;
    }

    .contact-but__item.but-primary a {
        width: 100%;
    }
}

/* ------ information ------ */

.info-contaier__inner.wrap {
    max-width: 1000px;
}

.info-contaier__inner {
    background: var(--color-white);
    padding: 80px;
}

.info-date {
    margin-top: 30px;
}

.info-date__item {
    display: flex;
    padding: 28px 0;
    border-bottom: 1px solid var(--color-gray);
    line-height: var(--lh-default);
}

.info-date__item a {
    color: var(--color-text);
}

.info-date__ttl {
    flex-basis: 200px;
}

.info-date__map {
    margin-top: 50px;
}

.info-date__map iframe {
    width: 100%;
    aspect-ratio: 16/9;
}

@media screen and (max-width: 768px) {
    .info-contaier__inner {
        padding: 36px 26px;
    }

    .info-date {
        margin-top: 0;
    }

    .info-date__item {
        flex-direction: column;
        gap: 0.6em;
    }

    .info-date__ttl {
        flex-basis: auto;
    }

    .info-date__map {
        margin-top: 30px;
    }

    .info-date__map iframe {
        aspect-ratio: 4/3;
    }

}

/* ------ FAQ ------ */

.faq-containe__inner.wrap {
    max-width: 1000px;
}

.faq-contents {
    margin-top: 50px;
    line-height: var(--lh-default);
}

.faq-contents {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.question__ttl {
    display: flex;
    align-items: flex-start;
    background: var(--color-primary);
    padding: 24px 24px;
    border-radius: 5px;
    width: 100%;
    color: var(--color-white);
    pointer-events: painted;
    text-align: left;
    line-height: var(--lh-default);
}

.question__ttl-icon, .question__txt-icon {
    flex-basis: 40px;
    flex-shrink: 0;
    text-align: left;
    font-family: var(--font-en);
    font-size: 24px;
    line-height: 1.1;
}

.question__txt {
    display: flex;
    align-items: flex-start;
    padding: 0 24px;
    width: 100%;
    opacity: 0;
    transition: .3s;
    line-height: 0;
    overflow: hidden;
    height: 0;
}

.question__txt.is-open {
    opacity: 1;
    height: auto;
    padding: 24px 24px;
    line-height: var(--lh-default);
}



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

    .question__ttl {
        padding: 16px 12px;
    }

    .question__ttl-icon, .question__txt-icon {
        flex-basis: 28px;
        font-size: 20px;
    }

    .question__txt {
        padding: 0 12px;
    }

    .question__txt.is-open {
        padding: 12px 12px;
    }
}

/* ==============================================
post page
============================================== */

.post-container__inner.wrap {
    max-width: 1000px;
    padding: 90px;
    background-color: var(--color-white);
    display: flex;
    flex-direction: column;
    gap: 2em;
}

.post-head__ttl {
    font-size: 32px;
}

.post-head__info {
    font-family: var(--font-en);
    color: var(--color-primary);
    font-size: 13px;
    margin-top: 0.5em;
    display: block;
}

.post-head {
    padding-bottom: 2em;
    border-bottom: var(--border-default);
}

.post-main__inner {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}

.post-main__inner ul {
    list-style: inside;
}

.post-but {
    display: flex;
    justify-content: center;
    margin-top: 1em;
}

@media screen and (max-width: 768px) {
    .post-container__inner.wrap {
        padding: 36px 26px;
    }

    .post-head__ttl {
        font-size: 24px;
    }

    .post-head__info {
        font-size: 12px;
        margin-top: 0.8em;
    }

    .post-head {
        padding-bottom: 1em;
    }
}

/* ==============================================
404 page
============================================== */

.p-404__ttl {
    font-size: 32px;
}

.p-404__txt {
    margin-top: 1em;
}

@media screen and (max-width: 768px) {
    .p-404__ttl {
        font-size: 24px;
    }
}