@charset "UTF-8";


/* 画像リスト --------------------------------------------------- */

.PhotoList li {
width: 48%;
margin-right: 4%;
margin-bottom: 30px;
}

.PhotoList li:nth-child(2n) {
margin-right: 0;
}

.PhotoList li .Photo {
margin-bottom: 10px;
}

.PhotoList li .Photo img {
width: 100%;
height: auto;
}

.PhotoList li .Lead {
margin-bottom: 0;
line-height: 1.6em;
}

/* 定義リスト --------------------------------------------------- */

.DLHori {
border-top: 1px solid #d3d3d3;
}

.DLHori dl {
border-bottom: 1px solid #d3d3d3;
}

.DLHori dt,
.DLHori dd {
padding: 10px 15px;
vertical-align: middle;
}

.DLHori dt {
background: #f4f4f4;
}

.DLHori dd {
background: #fff;
}

/* 改行 --------------------------------------------------- */

/* PCのみ表示 */
.PC {
    display:inline;
}

/* SPのみ表示 */
.SP {
    display:none;
}

@media only screen and (max-width:767px){

    .PC {
        display:none;
    }

    .SP {
        display:inline;
    }

}




/* ■ トップページ ==================================================================================== */


/* ==================================================
   TOP
================================================== */

.top-main {
    overflow: hidden;
    background-color: #fff;
}


/* ==================================================
   ファーストビュー
================================================== */

.top-hero {
    position: relative;
    width: 100%;
    height: calc(100svh - 110px);
    min-height: 0;
    background-color: #111;
    overflow: hidden;
}

.top-hero-image {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
}

.top-hero-image::after {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, .56) 0%,
            rgba(0, 0, 0, .28) 42%,
            rgba(0, 0, 0, .05) 72%,
            rgba(0, 0, 0, 0) 100%
        );
}

.top-hero-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.top-hero-content {
    display: flex;
    position: relative;
    z-index: 2;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
    margin: 0;
    padding-right: 40px;
    padding-left: clamp(40px, 4vw, 80px);
    box-sizing: border-box;
    color: #fff;
}

.top-hero-en {
    margin: 0 0 28px;
    font-family: var(--font-en);
    font-size: 15px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .22em;
}

.top-hero-title {
    margin: 0;
    color: #fff;
    font-size: clamp(42px, 4.4vw, 72px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .08em;
}

.top-hero-lead {
    margin: 28px 0 0;
    font-size: 20px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .12em;
}


/* ==================================================
   共通見出し
================================================== */

.top-section-heading {
    margin: 0;
}

/* .top-section-en {
    margin: 0 0 16px;
    color: var(--color-main);
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .2em;
}

.top-section-title {
    margin: 0;
    color: #222;
    font-family: var(--font-mincho);
    font-size: clamp(30px, 3vw, 44px);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: .08em;
} */


/* ==================================================
   共通テキストリンクボタン
================================================== */

.button-more {
    display: inline-flex;
    position: relative;
    align-items: center;
    min-width: 250px;
    padding: 18px 54px 18px 0;
    border-bottom: 1px solid #222;
    color: #222;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .08em;
    text-decoration: none;
    transition:
    background-color .25s ease,
    border-color .25s ease,
    color .25s ease;
}

.button-more::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 34px;
    height: 1px;
    background-color: currentColor;
    transform: translateY(-50%);
    transition: width .35s ease;
}

.button-more::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
}

@media (hover: hover) {

    .button-more:hover {
        color: var(--color-main);
        border-color: var(--color-main);
    }

    .button-more:hover::before {
        width: 42px;
    }

}


/* ==================================================
   下層ページへのリンク
================================================== */

/* .top-navigation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background-color: #111;
}

.top-navigation-item {
    display: block;
    position: relative;
    min-height: 520px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
}

.top-navigation-item + .top-navigation-item {
    border-left: 1px solid rgba(255, 255, 255, .3);
}

.top-navigation-image {
    position: absolute;
    inset: 0;
}

.top-navigation-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, .08) 20%,
            rgba(0, 0, 0, .62) 100%
        );
    transition: background-color .4s ease;
}

.top-navigation-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s ease;
}

.top-navigation-content {
    position: absolute;
    z-index: 2;
    right: 40px;
    bottom: 42px;
    left: 40px;
}

.top-navigation-en {
    display: block;
    font-family: var(--font-en);
    font-size: 25px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: .12em;
}

.top-navigation-ja {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, .8);
    font-family: var(--font-mincho);
    font-size: 14px;
    letter-spacing: .08em;
}

.top-navigation-content::after {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    margin-top: 28px;
    background-color: #fff;
    transition: width .35s ease;
}

@media (hover: hover) {

    .top-navigation-item:hover .top-navigation-image img {
        transform: scale(1.04);
    }

    .top-navigation-item:hover .top-navigation-image::after {
        background-color: rgba(0, 0, 0, .1);
    }

    .top-navigation-item:hover .top-navigation-content::after {
        width: 68px;
    }

} */


/* ==================================================
   FAST PASS / ONLINE SHOP
================================================== */

.top-service {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(1200px, calc(100% - 80px));
    margin: 80px auto 0 auto;
    border-top: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
    background-color: #fff;
}

.top-service-item {
    display: grid;
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    gap: 12px 30px;
    min-width: 0;
    padding: 34px clamp(30px, 5vw, 80px);
    box-sizing: border-box;
    color: #222;
    text-decoration: none;
    transition:
        background-color .35s ease,
        color .35s ease;
}

.top-service-item + .top-service-item {
    border-left: 1px solid var(--color-gold);
}

.top-service-en {
    grid-column: 1;
    grid-row: 1;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .18em;
    color: var(--color-gold);
}

.top-service-title {
    grid-column: 1;
    grid-row: 2;
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .07em;
    white-space: nowrap;
}

.top-service-arrow {
    position: absolute;
    top: 50%;
    right: 28px;
    width: 30px;
    height: 1px;
    background-color: currentColor;
    transform: translateY(-50%);
    transition:
    background-color .25s ease;
}

.top-service-arrow::after {
    content: "";
    position: absolute;
    top: -4px;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
    transition:
        border-color .25s ease;
}

@media (hover: hover) {

    .top-service-item:hover {
        background-color: var(--color-gold);
        border-color: var(--color-gold);
        color: #fff;
    }

    .top-service-item:hover .top-service-en {
        color: #fff;
    }

    .top-service-item:hover + .top-service-item {
        border-left-color: #9b7a3d;
    }

    .top-service-item:hover {
        text-decoration: none;
    }

}

.top-service-item:focus-visible {
    z-index: 1;
    outline: 2px solid var(--color-main);
    outline-offset: -2px;
}

/* FASTPASSが1件のみの場合 */
.top-service-single {
    display: block;
    border-top: 0;
    border-bottom: 0;
}

.top-service-single .top-service-item {
    width: min(600px, 100%);
    margin: 0 auto;
    border-top: 1px solid var(--color-gold);
    border-bottom: 1px solid var(--color-gold);
}

@media only screen and (max-width: 767px) {

    .top-service-arrow {
        right: 20px;
        width: 25px;
    }

    .top-service-single .top-service-item {
        width: 100%;
    }

}


/* ==========================================
   CONCEPT
========================================== */

.top-concept {
    padding: 100px 0 50px;
    background-color: #fff;
}

.top-concept-inner {
    width: min(920px, calc(100% - 80px));
    margin: 0 auto;
    text-align: center;
}

.top-concept-label {
    margin: 0 0 24px;
    color: var(--color-gold);
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.3em;
}

.top-concept-title {
    margin: 0;
    font-size: clamp(32px, 2.5vw, 40px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.08em;
}

.top-concept-text {
    max-width: 820px;
    margin: 42px auto 0;
    font-size: clamp(16px, 1.6vw, 18px);
    font-weight: 400;
    line-height: 2.25;
    letter-spacing: 0.055em;
}


/* ==========================================
   SP
========================================== */

@media only screen and (max-width: 767px) {

    .top-concept {
        padding: 50px 0;
    }

    .top-concept-inner {
        width: calc(100% - 40px);
    }

    .top-concept-label {
        margin-bottom: 20px;
        font-size: 12px;
        letter-spacing: 0.28em;
    }

    .top-concept-title {
        font-size: clamp(24px, 7vw, 28px);
        line-height: 1.55;
        letter-spacing: 0.04em;
        white-space: nowrap;
    }

    .top-concept-text {
        max-width: none;
        margin-top: 34px;
        font-size: 15px;
        line-height: 2.15;
        letter-spacing: 0.035em;
        text-align: left;
    }

}

/* ==================================================
   タブレット
================================================== */

@media only screen and (max-width: 1024px) {

    /*
     * タブレットでもヘッダーを除いた画面全体を使用します。
     * 82vhなどには変更しません。
     */

    .top-hero {
        height: calc(100svh - 60px);
        min-height: 0;
    }

    .top-hero-content {
        width: calc(100% - 80px);
    }

    .top-hero-title {
        font-size: clamp(38px, 5.4vw, 58px);
    }

    .top-hero-lead {
        font-size: 17px;
    }

    /* 下層ページへのリンク */

    .top-navigation-item {
        min-height: 420px;
    }

    .top-navigation-content {
        right: 28px;
        bottom: 32px;
        left: 28px;
    }

}


/* ==================================================
   SP
================================================== */

@media only screen and (max-width: 767px) {

    /* ファーストビュー */

    .top-hero {
        height: calc(100svh - 60px);
        min-height: 0;
    }

    .top-hero-image::after {
        background:
            linear-gradient(
                180deg,
                rgba(0, 0, 0, .02) 15%,
                rgba(0, 0, 0, .10) 45%,
                rgba(0, 0, 0, .72) 100%
            );
    }

    .top-hero-image img {
        object-position: center center;
    }

    /* .top-hero-content {
        justify-content: flex-end;
        width: calc(100% - 50px);
        padding-bottom: calc(50px + env(safe-area-inset-bottom));
        box-sizing: border-box;
    } */

    .top-hero-content {
        justify-content: flex-end;
        width: 100%;
        padding: 0 25px calc(35px + env(safe-area-inset-bottom));
        box-sizing: border-box;
    }

    .top-hero-en {
        margin-bottom: 15px;
        font-size: 11px;
        letter-spacing: .18em;
    }

    .top-hero-title {
        width: 100%;
        max-width: none;
        font-size: clamp(32px, 8vw, 38px);
        line-height: 1.5;
        letter-spacing: .06em;
    }

    .top-hero-lead {
        margin-top: 16px;
        font-size: 14px;
        line-height: 1.9;
        letter-spacing: .08em;
        white-space: normal;
    }


    /* 共通見出し */

    /* .top-section-en {
        margin-bottom: 12px;
        font-size: 10px;
        letter-spacing: .18em;
    }

    .top-section-title {
        font-size: 27px;
        line-height: 1.55;
        letter-spacing: .06em;
    } */

    /* 下層ページへのリンク */

    /* .top-navigation {
        display: block;
    }

    .top-navigation-item {
        min-height: 280px;
    }

    .top-navigation-item + .top-navigation-item {
        border-top: 1px solid rgba(255, 255, 255, .3);
        border-left: 0;
    }

    .top-navigation-content {
        right: 22px;
        bottom: 25px;
        left: 22px;
    }

    .top-navigation-en {
        font-size: 21px;
    }

    .top-navigation-ja {
        margin-top: 7px;
        font-size: 11px;
    }

    .top-navigation-content::after {
        margin-top: 19px;
    } */


    /* FAST PASS / ONLINE SHOP */

    .top-service {
        display: block;
        width: 100%;
        margin: 30px 0;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .top-service-item {
    gap: 8px 20px;
    padding: 22px 20px;
    }

    .top-service-item + .top-service-item {
    border-top: 1px solid #d8d0c6;
    border-left: 0;
    }

    .top-service-en {
    font-size: 9px;
    }

    .top-service-title {
    font-size: 18px;
    }

    .top-service-arrow {
    font-size: 21px;
    }

}




/* ■ 海老丸らーめんとは（ABOUT）===================================================================== */

/* ==================================================
   下層ページ共通セクション
================================================== */

.section-block {
    margin-bottom: 100px;
}

.section-block-inner {
    position: relative;
}

.section-block-inner::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    margin-bottom: 34px;
    background-color: var(--color-line);
}

.section-block-heading {
    margin: 0 0 40px;
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.04em;
}

.section-block-lead {
    margin: 40px 0 15px 0;
    color: #c65f36;
    font-family: "Noto Serif JP", serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: 0.06em;
}

.section-block-body {
    max-width: 1040px;
}

.section-block-body p {
    margin: 15px 0 0;
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.03em;
}

.section-block-body strong {
    font-weight: 700;
}


/* ==================================================
   CHEF MASA
================================================== */

.section-block-chef .section-block-body{
    display:grid;
    grid-template-columns:minmax(0,1fr) 320px;
    gap:60px;
    align-items:start;
    max-width:none;
}

.section-block-text{
    min-width:0;
}

.section-block-media img{
    display:block;
    width:100%;
    height:auto;
}


/* ==================================================
   SP
================================================== */

@media only screen and (max-width: 767px) {

    /* --------------------------------
       共通セクション
    -------------------------------- */

    .section-block {
        margin-bottom: 70px;
    }

    .section-block-inner::before {
        margin-bottom: 26px;
    }

    .section-block-heading {
        margin-bottom: 28px;
        font-size: 30px;
    }

    .section-block-lead {
        margin-top: 24px;
        font-size: 18px;
        line-height: 1.8;
    }

    .section-block-body {
        max-width: none;
    }

    .section-block-body p {
        margin-top: 14px;
        font-size: 14px;
        line-height: 2;
    }


    /* --------------------------------
       画像付きセクション
    -------------------------------- */

    .section-block-chef .section-block-body{
        display:block;
    }

    .section-block-media{
        margin-top:32px;
    }

    .section-block-media img{
        width:100%;
        max-width:360px;
        margin:0 auto;
    }

}




/* ■ お品書き（MENU）==================================================================================== */

/* ==================================================
   共通設定
================================================== */

.menu-content {
    padding: 0 20px 100px;
}

.menu-content-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category {
    margin-top: 120px;
}

.menu-category-first {
    margin-top: 100px;
}

/* ==================================================
   大見出し
================================================== */

.menu-category-header {
    margin-bottom: 64px;
    text-align: center;
}

.menu-category-en {
    margin: 0 0 12px;
    color: var(--color-gold);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .3em;
}

.menu-category-title {
    margin: 0;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.5;
}

.menu-category-line {
    display: block;
    width: 48px;
    height: 1px;
    margin: 20px auto 0;
    background-color: var(--color-gold);
}


/* ==================================================
   小見出し
================================================== */

.menu-subsection {
    margin-top: 90px;
}

.menu-subheading {
    margin-bottom: 36px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-line);
}

.menu-subheading-title {
    margin: 0;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .12em;
}

.menu-subheading--small {
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom-color: #cbbdaa;
}

.menu-subheading--small .menu-subheading-title {
    font-size: 24px;
    letter-spacing: .08em;
}


/* ==================================================
   カード
================================================== */

.menu-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 24px;
}

.menu-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    border: 1px solid #ddd4c8;
    background-color: #fff;
}

.menu-card-image {
    width: 100%;
    overflow: hidden;
}

.menu-card-image img {
    display: block;
    width: 100%;
    height: auto;
}

.menu-card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-width: 0;
    padding: 22px 20px 24px;
}

.menu-card-name {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.6;
    letter-spacing: .04em;
}

.menu-card-description {
    flex: 1 1 auto;
    margin: 12px 0 0;
    color: #55504a;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: .02em;
}

.menu-card-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    margin: 18px 0 0;
    line-height: 1;
}

.menu-card-price .price-label {
    margin-right: 6px;
    font-size: 14px;
}

.menu-card-price .price-label::after {
    content: "：";
}

.menu-card-price .price-number {
    color: #9c1f1f;
    font-family: var(--font-en);
    font-size: 46px;
    font-weight: 500;
    line-height: 1;
}

.menu-card-price .price-yen {
    margin-left: 4px;
    font-size: 14px;
    line-height: 1.5;
}

.menu-card--text .menu-card-body {
    min-height: 210px;
}

.menu-card--horizontal {
    display: grid;
    grid-template-columns: 35% 65%;
}

.menu-card--horizontal .menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-card--horizontal .menu-card-body {
    padding: 30px;
}

.menu-card-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
}

.menu-card-head .menu-card-price {
    flex: 0 0 auto;
    margin-top: 0;
}

.menu-card-list {
    margin-top: 28px;
}

.menu-card-list-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 20px;
    padding: 14px 0;
}

.menu-card-list-item:not(:last-child) {
    border-bottom: 1px solid #ebe5dd;
}

.menu-card-list-name,
.menu-card-list-price {
    margin: 0;
    line-height: 1.7;
}

.menu-card-list-name {
    flex: 1 1 auto;
    min-width: 0;
    font-size: 18px;
}

.menu-card-list-price {
    display: flex;
    align-items: baseline;
    flex: 0 0 auto;
    white-space: nowrap;
}

.menu-card-list-price .price-number {
    color: #9c1f1f;
    font-family: var(--font-en);
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
}

.menu-card-list-price .price-yen {
    margin-left: 4px;
    font-size: 12px;
    line-height: 1.5;
}


/* ==================================================
   リスト
================================================== */

.menu-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 70px;
}

.menu-column {
    min-width: 0;
}

.menu-list-section {
    margin-top: 70px;
}

.menu-list-section:first-child {
    margin-top: 0;
}

.menu-list {
    width: 100%;
}

.menu-list-item {
    padding: 21px 0;
    border-bottom: 1px solid #ebe5dd;
}

.menu-list-item:first-child {
    padding-top: 0;
}

.menu-list-main {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.menu-list-name {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
}

.menu-list-description {
    margin: 8px 0 0;
    font-size: 14px;
    line-height: 1.9;
}

.menu-list-price {
    display: flex;
    align-items: baseline;
    flex: 0 0 auto;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

.menu-list-price .price-label {
    font-size: 11px;
    line-height: 1.5;
}

.menu-list-price .price-label::after {
    content: "：";
}

.menu-list-price .price-number {
    color: #9c1f1f;
    font-family: var(--font-en);
    font-size: 34px;
    font-weight: 500;
    line-height: 1;
}

.menu-list-price .price-yen {
    margin-left: 4px;
    font-size: 12px;
    line-height: 1.5;
}

.menu-list-item--detail .menu-list-description {
    margin-top: 10px;
}

/* .menu-list-price-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 24px;
    margin-top: 16px;
} */


/* ==================================================
   料理写真
================================================== */

.menu-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.menu-photo-item {
    margin: 0;
}

.menu-photo-image {
    overflow: hidden;
    aspect-ratio: 3 / 2;
    background-color: #f4f1ec;
}

.menu-photo-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-photo-caption {
    margin-top: 12px;
    font-size: 18px;
    line-height: 1.6;
    text-align: center;
}


/* ==================================================
   バッジ
================================================== */

.menu-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 7px;
    padding: 4px 10px;
    border-radius: 999px;
    background-color: #8e2c25;
    color: #fff;
    font-size: 12px;
    line-height: 1;
    vertical-align: middle;
    transform: translateY(-2px);
}


/* ==================================================
   注意事項
================================================== */

.menu-notes {
    margin-top: 80px;
    padding-top: 24px;
    font-size: 14px;
    line-height: 1.9;
}

.menu-notes p {
    margin: 0;
}


/* ==================================================
   タブレット
================================================== */

@media only screen and (max-width: 1024px) {

    .menu-category-first {
        margin-top: 80px;
    }

    .menu-category-header {
        margin-bottom: 54px;
    }

    .menu-subsection {
        margin-top: 75px;
    }

    .menu-card-grid {
        gap: 20px;
    }

    .menu-card-name {
        font-size: 18px;
    }

    .menu-card-price .price-number {
        font-size: 40px;
    }

    .menu-card--horizontal {
        grid-template-columns: 40% 60%;
    }

    .menu-card--horizontal .menu-card-body {
        padding: 26px;
    }

    .menu-card-list-name {
        font-size: 16px;
    }

    .menu-card-list-price .price-number {
        font-size: 28px;
    }

    .menu-columns {
        gap: 40px;
    }

    .menu-list-main {
        gap: 16px;
    }

    .menu-list-name {
        font-size: 17px;
    }

    .menu-list-price .price-number {
        font-size: 27px;
    }

}


/* ==================================================
   SP
================================================== */

@media only screen and (max-width: 767px) {

    .menu-content {
        padding-bottom: 30px;
    }

    .menu-category,
    .menu-category-first {
        margin-top: 80px;
    }

    .menu-category-header {
        margin-bottom: 42px;
    }

    .menu-category-en {
        margin-bottom: 10px;
        font-size: 10px;
        letter-spacing: .26em;
    }

    .menu-category-title {
        font-size: 28px;
    }

    .menu-category-line {
        width: 40px;
        margin-top: 16px;
    }

    .menu-subsection {
        margin-top: 65px;
    }

    .menu-subheading {
        margin-bottom: 24px;
        padding-bottom: 14px;
    }

    .menu-subheading-title {
        font-size: 25px;
    }

    .menu-subheading--small {
        margin-bottom: 18px;
        padding-bottom: 12px;
    }

    .menu-subheading--small .menu-subheading-title {
        font-size: 21px;
    }

    .menu-card-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .menu-card-image {
        aspect-ratio: 16 / 10;
    }

    .menu-card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .menu-card-body {
        padding: 24px 20px 26px;
    }

    .menu-card-name {
        font-size: 18px;
    }

    .menu-card-description {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.9;
    }

    .menu-card-price {
        margin-top: 18px;
    }

    .menu-card-price .price-number {
        font-size: 36px;
    }

    .menu-card-price .price-yen {
        font-size: 13px;
    }

    .menu-card-price .price-label {
        margin-right: 5px;
        font-size: 12px;
    }

    .menu-card--text .menu-card-body {
        min-height: 0;
    }

    .menu-card--horizontal {
        display: block;
    }

    .menu-card--horizontal .menu-card-body {
        padding: 24px 20px 26px;
    }

    .menu-card-head {
        display: block;
    }

    .menu-card-head .menu-card-price {
        margin-top: 12px;
    }

    .menu-card-list {
        margin-top: 22px;
    }

    .menu-card-list-item {
        gap: 12px;
        padding: 12px 0;
    }

    .menu-card-list-name {
        font-size: 16px;
    }

    .menu-card-list-price .price-number {
        font-size: 27px;
    }

    .menu-card-list-price .price-yen {
        font-size: 11px;
    }

    .menu-columns {
        display: block;
    }

    .menu-column + .menu-column {
        margin-top: 15px;
    }

    .menu-list-section {
        margin-top: 15px;
    }

    .menu-list-section + .menu-list-section {
        margin-top: 45px;
    }

    .menu-column + .menu-column .menu-list-section:first-child {
        margin-top: 45px;
    }

    .menu-list-item {
        padding: 17px 0;
    }

    .menu-list-main {
        gap: 12px;
    }

    .menu-list-name {
        font-size: 16px;
        line-height: 1.6;
    }

    .menu-list-price .price-number {
        font-size: 27px;
    }

    .menu-list-price .price-label,
    .menu-list-price .price-yen {
        font-size: 10px;
    }

    .menu-list-description {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.8;
    }

    /* .menu-list-price-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, max-content));
        gap: 10px 18px;
        margin-top: 14px;
    } */

    .menu-photo-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 30px;
    }

    .menu-photo-caption {
        margin-top: 10px;
        font-size: 16px;
    }

    .menu-badge {
        margin-left: 5px;
        padding: 3px 8px;
        font-size: 9px;
    }

    .menu-notes {
        margin-top: 60px;
        font-size: 12px;
    }

}


/* ==================================================
   ワイン価格（横並びテスト）
================================================== */

.menu-list-item--wine{

    padding-top:26px;
    padding-bottom:28px;

}

.menu-list-item--wine:first-child{

    padding-top:0;

}

.menu-list-item--wine .menu-list-description{

    margin-top:10px;

}


/* ------------------------------
価格
------------------------------ */

.wine-price-inline{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:28px;
    margin-top:18px;
}

.wine-price-inline-item{
    display:flex;
    align-items:baseline;
}

.wine-price-inline-item:not(:last-child)::after{
    content:"｜";
    margin-left:28px;
    color:#cfc6ba;
}

.wine-price-inline-label{
    margin-right:8px;
    color:#666;
    font-size:13px;
    letter-spacing:.05em;
}

.wine-price-inline-value{
    display:flex;
    align-items:baseline;

}

.wine-price-inline-value .price-number{
    color:#9c1f1f;
    font-family:var(--font-en);
    font-size:34px;
    line-height:1;
}

.wine-price-inline-value .price-yen{
    margin-left:2px;
    font-size:13px;

}

@media only screen and (max-width: 767px) {

    .wine-price-inline {
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 6px;
        margin-top: 14px;
        padding-top: 12px;
    }

    .wine-price-inline-item {
        flex: 0 1 auto;
        min-width: 0;
        white-space: nowrap;
    }

    .wine-price-inline-item:not(:last-child)::after {
        content: "｜";
        margin-left: 6px;
        color: #cfc6ba;
    }

    .wine-price-inline-label {
        margin-right: 3px;
        font-size: 9px;
        letter-spacing: 0;
    }

    .wine-price-inline-value .price-number {
        font-size: clamp(18px, 5.8vw, 24px);
    }

    .wine-price-inline-value .price-yen {
        margin-left: 1px;
        font-size: 9px;
    }

}








/* ■ 使用例 ==================================================================================== */


#PageSample .PhotoIn img {
float: left;
margin: 0 15px 10px 0;
width: 300px;
height: auto;
}



/* ■ お店案内（ACCESS）==================================================================================== */


/* ==================================================
   共通設定
================================================== */

.access-content {
    padding: 0 0 30px;
}

.access-content .l-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ==================================================
   共通見出し
================================================== */

.section-heading {
    margin-bottom: 50px;
    text-align: center;
}

.section-heading-en {
    margin: 0 0 12px;
    color: var(--color-gold);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .3em;
}

.section-heading-title {
    margin: 0;
    font-size: 34px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .08em;
}

.section-heading-line {
    display: block;
    width: 48px;
    height: 1px;
    margin: 20px auto 0;
    background-color: var(--color-gold);
}


/* ==================================================
   店舗情報
================================================== */

.access-information {
    max-width: 1000px;
    margin: 0 auto;
}

.access-information-table {
    border-top: 1px solid var(--color-gray);
}

.access-information-row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    border-bottom: 1px solid var(--color-gray);
}

.access-information-label {
    display: flex;
    align-items: flex-start;
    margin: 0;
    padding: 30px;
    border-right: 1px solid var(--color-gray);
    background-color: #fff;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: .08em;
}

.access-information-value {
    min-width: 0;
    padding: 30px 36px;
    font-size: 16px;
    line-height: 2;
}

.access-information-value p {
    margin: 0;
}

.access-information-sub {
    margin-top: 12px !important;
}

.access-information-note {
    margin-top: 8px !important;
    color: #666;
    font-size: 13px;
    line-height: 1.8;
}

.access-tel {
    color: inherit;
    font-family: var(--font-en);
    font-size: 22px;
    letter-spacing: .05em;
    text-decoration: none;
}

.access-tel:hover {
    color: #9c1f1f;
    text-decoration: none;
}


/* ==================================================
   営業時間
================================================== */

.access-business-hours {
    display: grid;
    gap: 10px;
}

.access-business-hours-row {
    display: flex;
    align-items: baseline;
    gap: 24px;
}

.access-business-hours-day {
    flex: 0 0 72px;
    font-weight: 600;
}

.access-business-hours-time {
    flex: 1 1 auto;
    min-width: 0;
    font-family: var(--font-en);
    font-size: 21px;
    font-weight: 500;
    line-height: 1.7;
}

.access-business-hours-time small {
    margin-left: 4px;
    font-family: var(--font-jp);
    font-size: 13px;
    font-weight: 400;
}

.access-business-hours-separator {
    margin: 0 5px;
}


/* ==================================================
   Googleマップ
================================================== */

.access-map {
    max-width: 1000px;
    margin: 120px auto 0;
}

.access-map-frame {
    position: relative;
    width: 100%;
    overflow: hidden;
    aspect-ratio: 16 / 8;
}

.access-map-frame iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.access-map-link-wrap {
    margin-top: 22px;
}

.access-map-link {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #9c1f1f;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .04em;
    text-decoration: none;
}

.access-map-link:hover {
    text-decoration: none;
}

.access-map-link-arrow {
    position: relative;
    width: 30px;
    height: 1px;
    background-color: currentColor;
    transition: width .2s ease;
}

.access-map-link-arrow::after {
    content: "";
    position: absolute;
    top: -4px;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.access-map-link:hover .access-map-link-arrow {
    width: 38px;
}


/* ==================================================
   タブレット
================================================== */

@media only screen and (max-width: 1024px) {

    .access-content {
        padding-top: 80px;
    }

    .access-information-row {
        grid-template-columns: 190px minmax(0, 1fr);
    }

    .access-information-label {
        padding: 28px 24px;
    }

    .access-information-value {
        padding: 28px 30px;
    }

    .access-map {
        margin-top: 100px;
    }

}


/* ==================================================
   SP
================================================== */

@media only screen and (max-width: 767px) {

    .access-content {
        padding: 0 0 30px;
    }

    .section-heading {
        margin-bottom: 36px;
    }

    .section-heading-en {
        margin-bottom: 10px;
        font-size: 10px;
        letter-spacing: .26em;
    }

    .section-heading-title {
        font-size: 27px;
    }

    .section-heading-line {
        width: 40px;
        margin-top: 16px;
    }


    /* 店舗情報 */

    .access-information-table {
        border-top: 1px solid #ddd4c8;
    }

    .access-information-row {
        display: block;
        padding: 20px 0 22px;
        border-bottom: 1px solid #ddd4c8;
    }

    .access-information-label {
        display: block;
        margin: 0 0 8px;
        padding: 0;
        border: 0;
        background-color: transparent;
        color: #9c1f1f;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.6;
        letter-spacing: .12em;
    }

    .access-information-value {
        padding: 0;
        font-size: 14px;
        line-height: 1.9;
    }

    .access-information-sub {
        margin-top: 10px !important;
    }

    .access-information-note {
        margin-top: 8px !important;
        font-size: 12px;
    }

    .access-tel {
        font-size: 20px;
    }


    /* 営業時間 */

    .access-business-hours {
        gap: 14px;
    }

    .access-business-hours-row {
        display: block;
    }

    .access-business-hours-day {
        display: block;
        margin-bottom: 4px;
        font-size: 14px;
    }

    .access-business-hours-time {
        display: block;
        font-size: 20px;
        line-height: 1.6;
    }

    .access-business-hours-time small {
        margin-left: 2px;
        font-size: 11px;
    }

    .access-business-hours-separator {
        display: none;
    }


    /* Googleマップ */

    .access-map {
        margin-top: 80px;
    }

    .access-map-frame {
        aspect-ratio: 4 / 5;
    }

    .access-map-link-wrap {
        margin-top: 18px;
    }

    .access-map-link {
        gap: 10px;
        font-size: 13px;
    }

    .access-map-link-arrow {
        width: 24px;
    }

}




/* ■ よくある質問（FAQ）==================================================================================== */


/* ==================================================
   共通設定
================================================== */

.faq-content {
    padding: 0 20px;
}

.faq-content-inner {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-content-inner a {
    text-decoration-line: underline;
}


/* ==================================================
   カテゴリ
================================================== */

.faq-category {
    margin-top: 110px;
}

.faq-category:first-of-type {
    margin-top: 0;
}

.faq-category-header {
    margin-bottom: 54px;
    text-align: center;
}

.faq-category-en {
    margin: 0 0 12px;
    color: var(--color-gold);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .28em;
}

.faq-category-title {
    margin: 0;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .08em;
}

.faq-category-line {
    display: block;
    width: 46px;
    height: 1px;
    margin: 18px auto 0;
    background-color: var(--color-gold);
}


/* ==================================================
   FAQリスト
================================================== */

.faq-list {
    border-top: 1px solid var(--color-gray);
}

.faq-item {
    padding: 38px 0 42px;
    border-bottom: 1px solid var(--color-gray);
}


/* --------------------------------------------------
   質問
-------------------------------------------------- */

.faq-question {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
    margin: 0;
}

.faq-number{
    display:block;
    color:var(--color-gold);
    font-family:var(--font-en);
    font-size:28px;
    font-weight:500;
    line-height:1;
    letter-spacing:.08em;
}

.faq-question-text {
    font-size: 21px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: .03em;
}


/* --------------------------------------------------
   回答
-------------------------------------------------- */

.faq-answer {
    position: relative;
    margin-top: 22px;
    padding-left: 88px;
}

.faq-answer::before{
    content:"A";
    position:absolute;
    left:0;
    color:#9c1f1f;
    font-family:var(--font-en);
    font-size:30px;
    font-weight:500;
    line-height:1;
}

.faq-answer p {
    margin: 0;
    font-size: 16px;
    line-height: 2;
    letter-spacing: .025em;
}

.faq-answer strong {
    font-weight: 600;
}


/* ==================================================
   補足リスト
================================================== */

.faq-detail-list {
    margin: 14px 0 0;
    padding: 0;
}

.faq-detail-list li {
    position: relative;
    margin-top: 7px;
    padding-left: 16px;
    color: #514b45;
    font-size: 14px;
    line-height: 1.9;
}

.faq-detail-list li:first-child {
    margin-top: 0;
}

.faq-detail-list li::before {
    content: "";
    position: absolute;
    top: .9em;
    left: 1px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #a67c52;
}


/* ==================================================
   FAQリンクボタン
================================================== */

.faq-link-wrap {
    margin-top: 24px !important;
}

.faq-link {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    min-width: 280px;
    min-height: 58px;
    padding: 14px 20px 14px 24px;
    border: 1px solid #a67c52;
    background-color: #fff;
    color: #8e2c25;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .05em;
    text-decoration: none;
    transition:
        background-color .25s ease,
        border-color .25s ease,
        color .25s ease;
}

.faq-link:link,
.faq-link:visited {
    color: #8e2c25;
    text-decoration: none;
}

.faq-link:hover,
.faq-link:active {
    border-color: #a67c52;
    background-color: #a67c52;
    color: #fff;
    text-decoration: none;
}

.faq-link-arrow {
    position: relative;
    flex: 0 0 auto;
    width: 30px;
    height: 1px;
    background-color: currentColor;
}

.faq-link-arrow::after {
    content: "";
    position: absolute;
    top: -4px;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}


/* ==================================================
   店舗情報
================================================== */

.faq-information {
    margin-top: 24px;
    padding: 22px 24px;
    background-color: #faf7f2;
}

.faq-information-title {
    margin-bottom: 8px !important;
    font-size: 15px !important;
    font-weight: 600;
}


/* ==================================================
   タブレット
================================================== */

@media only screen and (max-width: 1024px) {

    .faq-content-inner {
        max-width: 900px;
    }

    .faq-category {
        margin-top: 90px;
    }

}


/* ==================================================
   SP
================================================== */

@media only screen and (max-width: 767px) {

    .faq-content {
        padding: 0 20px;
    }

    .faq-category {
        margin-top: 80px;
    }

    .faq-category-header {
        margin-bottom: 38px;
    }

    .faq-category-en {
        margin-bottom: 10px;
        font-size: 10px;
        letter-spacing: .24em;
    }

    .faq-category-title {
        font-size: 25px;
        line-height: 1.6;
    }

    .faq-category-line {
        width: 40px;
        margin-top: 15px;
    }

    .faq-item {
        padding: 28px 0 31px;
    }

    .faq-question {
        display: block;
    }

    .faq-number {
        display: block;
        margin-bottom: 9px;
        padding-top: 0;
        font-size: 20px;
    }

    .faq-question-text {
        display: block;
        font-size: 16px;
        line-height: 1.75;
    }

    .faq-answer {
        margin-top: 20px;
        padding-left: 30px;
    }

    .faq-answer::before {
        left: 0;
        font-size: 20px;
    }

    .faq-answer p {
        font-size: 13px;
        line-height: 2;
    }

    .faq-detail-list {
        margin-top: 12px;
    }

    .faq-detail-list li {
        margin-top: 6px;
        font-size: 12px;
        line-height: 1.9;
    }

    .faq-link-wrap {
        margin-top: 20px !important;
    }

    .faq-link {
        width: 90%;
        min-width: 0;
        min-height: 54px;
        padding: 13px 16px;
        font-size: 13px;
    }

    .faq-link-arrow {
        width: 24px;
    }

    .faq-information {
        margin-top: 20px;
        padding: 18px 17px;
    }

    .faq-information-title {
        font-size: 14px !important;
    }

}



/* ■ お問い合わせ（CONTACT）==================================================================================== */


/* ==================================================
   共通設定
================================================== */

.contact-content {
    padding: 80px 0 120px;
}

.contact-content .l-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


/* ==================================================
   ページ見出し
================================================== */

.contact-heading {
    margin-bottom: 55px;
    text-align: center;
}

.contact-heading-en {
    margin: 0 0 12px;
    color: var(--color-gold);
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: .3em;
}

.contact-heading-title {
    margin: 0;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: .08em;
}

.contact-heading-line {
    display: block;
    width: 48px;
    height: 1px;
    margin: 22px auto 0;
    background-color: var(--color-gold);
}


/* ==================================================
   ご案内
================================================== */

.contact-introduction {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-introduction-lead {
    margin: 0;
    font-size: 19px;
    font-weight: 500;
    line-height: 2;
    letter-spacing: .06em;
}

.contact-introduction-text {
    margin: 20px 0 0;
    font-size: 14px;
    line-height: 2;
}


/* ==================================================
   お問い合わせフォーム
================================================== */

.contact-form-section {
    max-width: 900px;
    margin: 50px auto 0;
}

.contact-form {
    padding: 0;
    border-top: 1px solid var(--color-gray);
}

.contact-form-item {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    border-bottom: 1px solid var(--color-gray);
}

.contact-form-label {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin: 0;
    padding: 34px 28px;
    border-right: 1px solid var(--color-gray);
    background-color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.8;
    letter-spacing: .04em;
}

.contact-form-label-text {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
}

.contact-form-required {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 22px;
    margin-top: 3px;
    padding: 2px 7px;
    background-color: #9c1f1f;
    color: #fff;
    font-size: 10px;
    font-weight: 500;
    line-height: 1.4;
    letter-spacing: .04em;
}

.contact-form-field {
    min-width: 0;
    padding: 28px 34px 30px;
}


/* ==================================================
   入力欄
================================================== */

.contact-form-input,
.contact-form-textarea {
    width: 100%;
    border: 1px solid #cfc7bc;
    border-radius: 0;
    background-color: #fff;
    color: #222;
    font-family: var(--font-jp);
    font-size: 16px;
    line-height: 1.7;
    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background-color .2s ease;
}

.contact-form-input {
    height: 54px;
    padding: 10px 16px;
}

.contact-form-input--medium {
    max-width: 360px;
}

.contact-form-textarea {
    min-height: 260px;
    padding: 15px 16px;
    resize: vertical;
}

.contact-form-input::placeholder,
.contact-form-textarea::placeholder {
    color: #aaa;
}

.contact-form-input:hover,
.contact-form-textarea:hover {
    border-color: #a99b89;
}

.contact-form-input:focus,
.contact-form-textarea:focus {
    border-color: #9c1f1f;
    outline: 0;
    box-shadow: 0 0 0 2px rgba(156, 31, 31, .08);
}

.contact-form-note {
    margin: 10px 0;
    color: #777;
    font-size: 13px;
    line-height: 1.7;
}

/* ==================================================
   送信ボタン
================================================== */

.contact-form-submit {
    margin-top: 46px;
    text-align: center;
}

.contact-submit-button {
    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    min-height: 68px;
    padding: 16px 70px 16px 40px;
    overflow: hidden;
    border: 1px solid #9c1f1f;
    border-radius: 0;
    background-color: #9c1f1f;
    color: #fff;
    font-family: var(--font-jp);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: .08em;
    cursor: pointer;
    appearance: none;
    transition:
        background-color .25s ease,
        color .25s ease;
}

.contact-submit-button:hover {
    background-color: #fff;
    color: #9c1f1f;
}

.contact-submit-button-text {
    position: relative;
    z-index: 1;
}

.contact-submit-button-arrow {
    position: absolute;
    top: 50%;
    right: 30px;
    width: 30px;
    height: 1px;
    background-color: currentColor;
    transform: translateY(-50%);
    transition: width .2s ease;
}

.contact-submit-button-arrow::after {
    content: "";
    position: absolute;
    top: -4px;
    right: 0;
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.contact-submit-button:hover .contact-submit-button-arrow {
    width: 38px;
}


/* ==================================================
   タブレット
================================================== */

@media only screen and (max-width: 1024px) {

    .contact-content {
        padding-top: 90px;
    }

    .contact-form-section {
        max-width: 900px;
    }

    .contact-form-item {
        grid-template-columns: 250px minmax(0, 1fr);
    }

    .contact-form-label {
        padding: 30px 22px;
        font-size: 15px;
        letter-spacing: .03em;
    }

    .contact-form-label-text {
        white-space: nowrap;
    }

    .contact-form-field {
        padding: 25px 28px 27px;
    }

}


/* ==================================================
   SP
================================================== */

@media only screen and (max-width: 767px) {

    .contact-content {
        padding: 65px 0 50px;
    }


    /* ページ見出し */

    .contact-heading {
        margin-bottom: 38px;
    }

    .contact-heading-en {
        margin-bottom: 10px;
        font-size: 10px;
        letter-spacing: .26em;
    }

    .contact-heading-title {
        font-size: 30px;
    }

    .contact-heading-line {
        width: 40px;
        margin-top: 17px;
    }

    /* ご案内 */

    .contact-introduction {
        text-align: left;
    }

    .contact-introduction-lead {
        font-size: 16px;
        line-height: 1.9;
    }

    .contact-introduction-text {
        margin-top: 17px;
        font-size: 13px;
        line-height: 1.9;
    }

    /* フォーム */

    .contact-form-section {
        margin-top: 30px;
    }

    .contact-form-item {
        display: block;
        padding: 21px 0 24px;
    }

.contact-form-label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    padding: 0;
    border-right: 0;
    background-color: transparent;
    font-size: 14px;
    line-height: 1.6;
}

.contact-form-required {
    min-width: 38px;
    min-height: 20px;
    margin-top: 0;
    font-size: 9px;
}

    .contact-form-field {
        padding: 0;
    }

    .contact-form-input {
        height: 52px;
        padding: 10px 13px;
        font-size: 16px;
    }

    .contact-form-input--medium {
        max-width: none;
    }

    .contact-form-textarea {
        min-height: 220px;
        padding: 13px;
        font-size: 16px;
    }

    .contact-form-note {
        margin: 7px 0;
        font-size: 11px;
    }

    /* 送信ボタン */

    .contact-form-submit {
        margin-top: 34px;
    }

    .contact-submit-button {
        max-width: none;
        min-height: 60px;
        padding: 14px 58px 14px 28px;
        font-size: 14px;
    }

    .contact-submit-button-arrow {
        right: 23px;
        width: 25px;
    }

}

/* ==================================================
   フォームエラー
================================================== */

/* フォーム上部のエラー案内 */

.contact-form-error-summary {
    margin-bottom: 32px;
    padding: 20px 24px;
    border: 1px solid #b3261e;
    background-color: #fff7f6;
    color: #9c1f1f;
}

.contact-form-error-summary-title {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.7;
    letter-spacing: .04em;
}

.contact-form-error-summary-text {
    margin: 5px 0 0;
    font-size: 13px;
    line-height: 1.8;
}


/* 各項目のエラーメッセージ */

.contact-form-error {
    display: none;
    margin: 9px 0 0;
    color: #b3261e;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
}


/* エラー時のみメッセージを表示 */

.contact-form-item.is-error .contact-form-error {
    display: block;
}


/* エラー時の入力欄 */

.contact-form-item.is-error .contact-form-input,
.contact-form-item.is-error .contact-form-textarea {
    border-color: #b3261e;
    background-color: #fffafa;
}


/* エラー入力欄のフォーカス */

.contact-form-item.is-error .contact-form-input:focus,
.contact-form-item.is-error .contact-form-textarea:focus {
    border-color: #b3261e;
    box-shadow: 0 0 0 2px rgba(179, 38, 30, .1);
}


/* エラー時の見出し */

.contact-form-item.is-error .contact-form-label-text {
    color: #9c1f1f;
}

.u-visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ==================================================
   SP
================================================== */

@media only screen and (max-width: 767px) {

.contact-form-error-summary {
    margin-bottom: 24px;
    padding: 16px 18px;
}

.contact-form-error-summary-title {
    font-size: 14px;
}

.contact-form-error-summary-text {
    margin-top: 4px;
    font-size: 11px;
}

.contact-form-error {
    margin-top: 7px;
    font-size: 11px;
    line-height: 1.7;
}

}


/* --------------------------------
   お問い合わせ入力画面ボタン
-------------------------------- */

.contact-form-submit--input .contact-submit-button {
    display: block;
    position: relative;
    margin: 0 auto;
    padding: 0;
}

.contact-form-submit--input .contact-submit-button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    text-align: center;
}

.contact-form-submit--input .contact-submit-button-arrow {
    position: absolute;
    top: 50%;
    right: 30px;
    margin: 0;
    transform: translateY(-50%);
}

@media only screen and (max-width: 767px) {

    .contact-form-submit--input .contact-submit-button-arrow {
        right: 23px;
    }

}


/* --------------------------------
   お問い合わせ確認画面
-------------------------------- */

.contact-confirm-text {
    margin: 0;
    color: var(--color-black);
    font-size: 16px;
    line-height: 1.8;
    overflow-wrap: anywhere;
}

.contact-confirm-text--message {
    white-space: normal;
}


/* ボタンエリア
-------------------------------- */

.contact-form-submit--confirm {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 20px;
}

/* 送信フォーム */
.contact-confirm-form {
    width: 280px;
    margin: 0;
}

/* 修正・送信ボタン共通 */
.contact-form-submit--confirm .contact-submit-button {
    display: block;
    position: relative;
    width: 280px;
    min-height: 72px;
    padding: 0;
    box-sizing: border-box;
}

/* テキストをボタン全体の中央に固定 */
.contact-form-submit--confirm .contact-submit-button-text {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    white-space: nowrap;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* 矢印はテキストの位置に影響させず右端へ配置 */
.contact-confirm-form .contact-submit-button-arrow {
    position: absolute;
    top: 50%;
    right: 32px;
    margin: 0;
    transform: translateY(-50%);
}

/* 修正ボタン */
.contact-submit-button--back {
    border: 1px solid #d5d5d5;
    background-color: #f5f5f5;
    color: #444;
    text-decoration: none;
}

.contact-submit-button--back:hover {
    border-color: #bbb;
    background-color: #ececec;
    color: #222;
    text-decoration: none;
}


/* SP
-------------------------------- */

@media only screen and (max-width: 767px) {

    .contact-form-submit--confirm {
        flex-direction: column;
        gap: 12px;
    }

    /* 送信ボタンを上 */
    .contact-confirm-form {
        order: 1;
        width: 100%;
    }

    /* 修正ボタンを下 */
    .contact-submit-button--back {
        order: 2;
    }

    .contact-form-submit--confirm .contact-submit-button {
        width: 100%;
        min-height: 64px;
    }

    .contact-confirm-form .contact-submit-button-arrow {
        right: 24px;
    }

}