/* ================================
CSS MAP
概要：commonは全ページ共通スタイルの中でもレイアウトなどに大きく影響する箇所をまとめてます

1.ボタン指定
2.インラインの指定
3.HEADERのスタイル
4.FOOTERのスタイル
5.cssアニメーションの制御
================================ */
/* ================================
1.ボタン指定
================================ */

[id] {
  scroll-margin-top: 120px;
}

.btn-style {
    font-size: 16px;
    letter-spacing: 0.05em;
    line-height: 12px;
    padding: 16px 25px;
    border-radius: 1000000px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-style__yellow {
    background-color: #fdc02d;
    color: #2b2925;
    transition: 0.25s;
}

.btn-style__yellow:hover {
    background-color: #2b2925;
    color: #F7F1E9;
    transition: 0.25s;
}

.btn-style__gray {
    background-color: #dfdad2;
    color: #2b2925;
    transition: 0.25s;
}

.btn-style__gray:hover {
    background-color: #ea5317;
    color: #F7F1E9;
    transition: 0.25s;
}

.btn-style__black {
    background-color: #2b2925;
    color: #fffaf3;
    transition: 0.25s;
}

.btn-style__black:hover {
    background-color: #ea5317;
    color: #F7F1E9;
    transition: 0.25s;
}

span.btn-style__arrow {
    font-size: 20px;
}


@media screen and (max-width:640px) {
    a.btn-style {
        justify-content: center;
        font-size: 14px;
        padding: 16px 14px;
    }

    a.btn-style span.btn-style__arrow {
        display: none !important;
    }
}

/* ================================
2.インラインの指定
================================ */

/* 幅指定例 */

.w-1440 {
    max-width: 1440px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1440px) {
    .w-1440 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.w-1300 {
    max-width: 1300px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1300px) {
    .w-1300 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.w-1280 {
    max-width: 1280px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1280px) {
    .w-1280 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.w-1240 {
    max-width: 1240px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1240px) {
    .w-1240 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.w-1120 {
    max-width: 1120px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
@media screen and (max-width: 1120px) {
    .w-1120 {
        padding-left: 24px;
        padding-right: 24px;
    }
}



.w-1100 {
    max-width: 1100px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1100px) {
    .w-1100 {
        padding-left: 24px;
        padding-right: 24px;
    }
}


.w-1000 {
    max-width: 1000px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 1000px) {
    .w-1000 {
        padding-left: 24px;
        padding-right: 24px;
    }
}


.w-800 {
    max-width: 800px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 800px) {
    .w-800 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.w-850 {
    max-width: 850px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 850px) {
    .w-850 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

.w-610 {
    max-width: 610px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (max-width: 610px) {
    .w-610 {
        padding-left: 24px;
        padding-right: 24px;
    }
}

/* ================================
3.HEADERのスタイル
================================ */
header#header {
    background: #fffaf3;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100000000000000000;
    padding: 20px 35px 15px 52px;
}

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

.header__inner__logo-wrap {
    display: flex;
    gap: 26px;
}

ul.header__inner__logo-wrap__list-sns {
    display: flex;
    gap: 10px;
    align-items: center;
}

ul.header__inner__logo-wrap__list-sns li {
    width: 18px;
    height: 18px;
}

ul.header__inner__logo-wrap__list-sns li a {
    width: 18px;
    height: 18px;
    display: block;
}

ul.header__inner__logo-wrap__list-sns li a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.header__right {
    display: flex;
    align-items: center;
}

a.header__right-btn {
    height: auto;
    display: flex;
    align-items: center;
    background: #e65c2d;
    color: #fffaf3;
    padding: 13px 16px;
    position: relative;
    justify-content: center;
    gap: 10px;
    margin-right: 24px;
    transition: 0.25s;
}

a.header__right-btn:hover {
    background-color: #2b2925;
    transition: 0.25s;
}

a.header__right-btn::before {
    height: calc(100% - 10px);
    width: calc(100% - 10px);
    border: 1px solid #fffaf3;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    content: "";
    pointer-events: none;
}

a.header__right-btn img {
    width: 22px;
    height: 24px;
    object-fit: contain;
    display: block;
}

p.header__right-text {
    font-size: 14px;
    margin-right: 15px;
}

button.header__right-hamburger {
    width: 60px;
    height: auto;
    display: block;
}

@media screen and (max-width: 950px) {
    header#header {
        padding: 15px 18px;
        min-height: 70px;
        display: flex;
        align-items: center;
    }

    button.header__right-hamburger {
        width: 36px;
        height: auto;
        display: block;
    }

    .header__inner__logo-wrap {
        display: flex;
        gap: 26px;
        width: 154px;
    }

    ul.header__inner__logo-wrap__list-sns,
    p.header__right-text{
        display: none;
    }
    a.header__right-btn {
    height: auto;
    display: flex;
    align-items: center;
    background: #e65c2d;
    color: #fffaf3;
    padding: 10px 12px;
    position: relative;
    justify-content: center;
    gap: 6px;
    margin-right: 10px;
    font-size: 12px;
}

a.header__right-btn img {
    width: 14px;
    height: 14px;
    object-fit: contain;
    display: block;
}
a.header__right-btn span.sp{
    display: none !important;
}
a.header__right-btn{
        padding: 0px 17px;
        gap: 6px;
        margin-right: 10px;
        font-size: 12px;
        height: 32.8px;
}
}


/* ================================
4.FOOTERのスタイル
================================ */

footer.footer {
    background: #2B2925;
    color: #F7F1E9;
    position: relative;
    padding-top: 80px;
}

.footer-link ul.footer-link__list {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-link ul.footer-link__list a img{
    width: 100%;
    object-fit: contain;
}

.footer-nav__wrap.w-1300 {
    display: flex;
    justify-content: space-between;
    padding-bottom: 120px;
}

/* ナビゲーションカラム */
.footer-navigation_content {
    display: flex;
    width: calc((100% - 180px) / 4);
    flex-direction: column;
}

.footer-navigation_content h2 {
    font-size: 20px;
    line-height: 1.8;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}

.footer-navigation_content h2 span.border {
    position: absolute;
    bottom: -0.5px;
    width: 100%;
    content: "";
    left: 0;
    height: 1px;
    background: repeating-linear-gradient(to right,
            #fffaf3 0,
            #fffaf3 1px,
            transparent 1px,
            transparent 11px);
    border: none;
}

/* 同カラム内で2番目のh2用（PCのみ） */
.footer-navigation_content h2:nth-of-type(2) {
    margin-top: 35px;
}

.footer-navigation_content .footer__nav ul{
    display: flex;
    flex-direction: column;
    gap: 4px;
    line-height: 1.8;
}
.footer-navigation_content .footer__nav li a {
    transition: .25s;
    line-height: 1.8;
    font-size: 16px;
    display: block;
}

.footer-navigation_content .footer__nav li a:hover {
    color: #EA5317;
    transition: .25s;
}

/* サイトマップ行（背景共通） */
.footer-sitemap-link {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
    background-image: url(../images/top/top-footer-sitemap-bg.png);
    background-size: cover;
    background-position: center top;
    color: #2B2925;
}

.footer-sitemap-link__sns {
    position: absolute;
    display: flex;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    gap: 12px;
    margin-right: 24px;
}

.footer-sitemap-link__sns li {
    width: 22px;
    height: 22px;
}

.footer-sitemap-link__sns li img {
    width: 22px;
    height: 22px;
    object-fit: contain;
    object-position: center;
}

.footer-sitemap-link__cont {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #6A6A6A;
}

/* フッター上部ギザギザ */
.footer::after {
    content: "";
    position: absolute;
    left: 0;
    top: -4px;
    width: 100%;
    height: 5px;
    background-image: url(../images/footer/footer-bg.png);
    background-size: cover;
    background-position: left top;
    display: block;
    z-index: 10;
}

/* BACK TO TOP（ラーメン） */
footer.footer .back-top {
    position: absolute;
    text-align: right;
    z-index: 2;
    width: calc(100% - 17px);
    top: 0;
    left: 0;
    right: 17px;
}

footer.footer .back-top a {
    background: #2b2925;
    display: block;
    text-align: right;
    margin-left: auto;
    margin-right: 0;
    padding-bottom: 5px;
    letter-spacing: .1em;
    padding-top: 5px;
}

footer.footer .back-top::before {
    position: absolute;
    right: 0;
    bottom: 0;
    content: "";
    z-index: -1;
    background-image: url(../images/top/icon-rahmen.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    width: 100px;
    height: 156px;
    transform: translateY(100%);
    animation: ramen-lift-footer 4.8s ease-in-out infinite;
    transform-origin: bottom center;
}

@media (max-width: 640px) {

    /* 上部リンクの縦並び */
    .footer-link ul.footer-link__list {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 40px;
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-nav__wrap.w-1300 {
        display: flex;
        justify-content: space-between;
        padding-bottom: 20px;
        padding-left: 24px;
        padding-right: 24px;
        flex-direction: column;
    }

    .footer-navigation_content {
        width: 100%;
        flex-direction: column;
    }

    /* 見出し（SP） */
    .footer-navigation_content h2 {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 15px;
        margin-top: 0;
        position: relative;
        cursor: pointer;
        padding-right: 32px;
        /* ＋アイコン分の余白 */
    }

    /* SPでは2番目のh2の上マージンをリセット */
    .footer-navigation_content h2:nth-of-type(2) {
        margin-top: 0;
    }

    /* 1個目だけクリック不可 & ＋−非表示 */
    .footer-navigation_content:first-child h2 {
        pointer-events: none !important;
    }

    .footer-navigation_content:first-child h2::before,
    .footer-navigation_content:first-child h2::after {
        display: none;
    }

    /* ＋ / − アイコン（擬似要素） */
    .footer-navigation_content h2::before,
    .footer-navigation_content h2::after {
        content: "";
        position: absolute;
        right: 15px;
        bottom: 20px;
        width: 14px;
        height: 1px;
        background: #fffaf3;
        transition: transform .3s ease;
        transform: translateY(-50%);
    }

    /* 縦棒（＋の縦線） */
    .footer-navigation_content h2::before {
        transform: translateY(-50%) rotate(90deg);
    }

    /* is-open で ＋ → − に */
    .footer-navigation_content h2.is-open::before {
        transform: translateY(-50%) rotate(0deg);
    }

    /* アコーディオンで閉じておく */
    .footer-navigation_content:not(:first-child) .footer__nav {
        display: none;
    }

    .footer-navigation_content .footer__nav ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
        line-height: 1.8;
    }

    .footer-navigation_content .footer__nav li a {
        font-size: 14px;
    }

    /* 開いてるh2 / navの余白 */
    .footer-navigation_content h2.is-open {
        margin-bottom: 10px;
    }

    .footer-navigation_content .footer__nav.is-open-nav {
        margin-bottom: 30px;
    }

    .footer-navigation_content .footer__nav.first-nav {
        margin-bottom: 30px;
    }

    

    /* サイトマップ行（SP版） */
    .footer-sitemap-link {
        padding-top: 25px;
        padding-bottom: 25px;
        padding-left: 24px;
        padding-right: 24px;
        background-image: url(../images/top/top-footer-sitemap-bg-sp.png);
    }

    .footer-sitemap-link__cont {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 14px;
        flex-wrap: wrap;
    }

    .footer-sitemap-link__cont li {
        white-space: nowrap;
    }

    .footer-sitemap-link__cont li a {
        display: block;
        width: max-content;
    }

    /* 3つ目以降を強制改行 */
    .footer-sitemap-link__cont li:nth-child(2) {
        margin-right: calc(100% - 84px - 56px - 20px);
    }

    .footer-sitemap-link__sns {
        position: relative;
        display: flex;
        right: 0;
        top: 0;
        transform: none;
        gap: 12px;
        margin-right: 24px;
        margin-top: 30px;
    }

    /* ギザギザ非表示（SP） */
    .footer::after {
        display: none;
    }

    /* back-top（SP） */
    footer.footer .back-top a {
        padding-top: 15px;
        padding-bottom: 15px;
    }

    footer.footer .back-top::before {
        right: 0;
        bottom: 0;
        width: 100px;
        height: 156px;
        transform: translateY(100%);
        animation: ramen-lift-footer 4.8s ease-in-out infinite;
        transform-origin: bottom center;
    }
}




/* ======================================
5.cssアニメーションの制御
====================================== */

/*ラーメン上げ下げ1*/
@keyframes ramen-lift {
    0% {
        height: 150px;
        transform: translateY(0);
    }

    25% {
        height: 200px;
        transform: translateY(-4px);
    }

    50% {
        height: 150px;
        transform: translateY(0);
    }

    75% {
        height: 200px;
        transform: translateY(-4px);
    }

    100% {
        height: 150px;
        transform: translateY(0);
    }
}

/*ラーメン上げ下げ2*/
@keyframes ramen-lift-sp {
    0% {
        height: 450px;
        transform: translateY(0);
    }

    25% {
        height: 380px;
        transform: translateY(-4px);
    }

    50% {
        height: 450px;
        transform: translateY(0);
    }

    75% {
        height: 380px;
        transform: translateY(-4px);
    }

    100% {
        height: 450px;
        transform: translateY(0);
    }
}

/*ラーメン上げ下げ3*/
@keyframes ramen-lift-footer {
    0% {
        height: 100px;
        transform: translateY(0);
    }

    25% {
        height: 150px;
        transform: translateY(-4px);
    }

    50% {
        height: 100px;
        transform: translateY(0);
    }

    75% {
        height: 150px;
        transform: translateY(-4px);
    }

    100% {
        height: 100px;
        transform: translateY(0);
    }
}

/*市松模様*/
@keyframes ichimatsu-scroll-a {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-1726px);
    }
}

@keyframes ichimatsu-scroll-b {
    from {
        transform: translateX(1726px);
    }

    to {
        transform: translateX(0);
    }
}




/* ================================
6.headの
================================ */

.page-under-head {
    background-size: cover;
    background-position: bottom center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 3;
}

.page-under-head.ttl-vertical {
    padding-top: 210px;
    padding-bottom: 80px;
}

.page-under-head.ttl-horizon {
    padding-top: 170px;
    padding-bottom: 60px;
}

.page-under-head.head-orange{
    background-image: url(../images/common/common-head-bg-orange.png);
}
.page-under-head.head-white{
    background-image: url(../images/common/common-head-bg-white.png);
}
.page-under-head.head-yellow{
    background-image: url(../images/common/common-head-bg-yellow.png);
}
.page-under-head.head-black{
    background-image: url(../images/common/common-head-bg-bk.png);
}
.page-under-head.head-green{
    background-image: url(../images/common/common-head-bg-green.png);
}
.page-under-head.head-none{
    padding-bottom: 0px;
}

@media screen and (max-width:640px) {
    
.page-under-head.head-orange{
    background-image: url(../images/common/common-head-bg-orange-sp.png);
}
.page-under-head.head-white{
    background-image: url(../images/common/common-head-bg-white-sp.png);
}
.page-under-head.head-yellow{
    background-image: url(../images/common/common-head-bg-yellow-sp.png);
}
.page-under-head.head-black{
    background-image: url(../images/common/common-head-bg-bk-sp.png);
}
.page-under-head.head-green{
    background-image: url(../images/common/common-head-bg-green-sp.png);
}
}


/* 見出し全体コンテナ */
.top-ttl-main {
    position: relative;
    display: inline-block;
}

.page-head__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.ttl-vertical p.page-head__sub-text{
    margin-top: 60px;
    line-height: 1.8;
    letter-spacing: .05em;
    text-align: center;
}
.ttl-horizon p.page-head__sub-text{
    margin-top: 30px;
    line-height: 1.8;
    letter-spacing: .05em;
    text-align: center;
}

/* 日本語タイトル：縦書き */
.top-ttl-main .jp {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    line-height: 1.2;
    letter-spacing: -.1em;
}

.top-ttl-main .eng {
    position: absolute;
    top: 3px;
    left: 100%;
    transform: translateX(27px) translateY(0) rotate(90deg);
    transform-origin: left top;
    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.1em;
    color: #EA5317;
    white-space: nowrap;
}

/* 日本語タイトル：横書き */
.ttl-horizon .top-ttl-main{
    writing-mode: inherit !important;
    text-orientation: upright;
    display: flex;
    flex-direction: column;
    gap: 7px;
    justify-content: center;
    align-items: center;
}
.ttl-horizon .top-ttl-main .jp {
    font-family: "Noto Serif JP", serif;
    font-size: 50px;
    line-height: 0.85;
    letter-spacing: .2em;
    order: 2;
    writing-mode: inherit;
    text-orientation: inherit;
}
.ttl-horizon .top-ttl-main .eng {
    position: relative;
    top: 0;
    left: 0;
    transform: none;
    transform-origin: inherit;
    margin-bottom: 0;
}




section.page-under-head.head-orange .top-ttl-main .jp,
section.page-under-head.head-orange .top-ttl-main .eng,
.page-under-head.head-green .top-ttl-main .eng,
.page-under-head.head-green  .top-ttl-main .jp {
    color: #F7F1E9;
}
.page-under-head.head-orange p{
    color: #fffaf3;
    padding-left: 24px;
    padding-right: 24px;
}
.page-under-head.head-green p{
    color: #fffaf3;
}
.page-under-head.head-black p{
    color: #fffaf3;
}
section.page-under-head.head-white .top-ttl-main .jp {
    color: #2B2925;
}
section.page-under-head.head-white .top-ttl-main .jp {
    color: #2B2925;
}

section.page-under-head.page-news-head.head-green.ttl-horizon,
section.page-under-head.page-news-head.head-green .top-ttl-main .eng {
    color: #F7F1E9;
}
section.page-under-head.head-yellow{
    background-image: url(../images/common/common-head-bg-yellow.png);
}
section.page-under-head.head-black{
    background-image: url(../images/common/common-head-bg-bk.png);
}
section.page-under-head.head-green{
    background-image: url(../images/common/common-head-bg-green.png);
}
section.page-under-head.head-none{
    padding-bottom: 0px;
}


@media screen and (max-width:640px){
.top-ttl-main {
        display: inline-flex;
        flex-direction: row-reverse;
        align-items: center;
    }

.top-ttl-main .jp {
        font-size: 26px;
        line-height: 1.2;
        display: block;
        width: max-content;
    }

.top-ttl-main .eng {
        font-size: 10px;
        letter-spacing: 0.15em;
        transform: translateX(19px) translateY(0) rotate(90deg);
        display: block;
        width: max-content;
    }

.ttl-horizon .top-ttl-main .eng {
    font-size: 10px;
    letter-spacing: 0.15em;
    transform: none;
}

.ttl-horizon .top-ttl-main .eng {
    font-size: 10px;
    letter-spacing: 0.15em;
    transform: none;
}

.ttl-horizon .top-ttl-main .jp {
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    line-height: 0.85;
    letter-spacing: .2em;
    order: 2;
    writing-mode: inherit;
    text-orientation: inherit;
    
}

.page-under-head.ttl-horizon {
    padding-top: 90px;
    padding-bottom: 60px;
}
.page-under-head.head-orange p {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 12px;
    text-align: left;
}section.page-under-head.head-yellow{
    background-image: url(../images/common/common-head-bg-yellow-sp.png);
}
section.page-under-head.head-black{
    background-image: url(../images/common/common-head-bg-bk-sp.png);
}
section.page-under-head.head-green{
    background-image: url(../images/common/common-head-bg-green-sp.png);
}
}




section.page-thanks {
    padding-top: 120px;
    padding-bottom: 160px;
    background-image: url(../images/shop/archive-shop-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}

.page-thanks__inner.w-1000 h3 {
    font-size: 20px;
    text-align: center;
    margin-top: 40px;
    font-size: 24px;
    font-weight: 700;
    color: #8A7B65;
}

.page-thanks__inner.w-1000 p {
    font-size: 16px;
    line-height: 2;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
}

.btn-style.btn-style--black{
    background: #000;
    color: #fff;
    padding: 16px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    line-height: 12px;
    border-radius: 12000000px;
    display: block;
    margin: auto;
}
section.page-under-head.head-black .top-ttl-main .eng,
section.page-under-head.head-black .top-ttl-main .jp{
    color: #fff;
}

@media screen and (max-width:640px){
    section.page-thanks {
    padding-top: 110px;
    padding-bottom: 190px;
    background-image: url(../images/shop/archive-shop-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.page-thanks__inner.w-1000 h3 {
    font-size: 20px;
    text-align: center;
    margin-top:30px;
    font-size: 22px;
    font-weight: 700;
    color: #8A7B65;
}
.page-thanks__inner.w-1000 p {
    font-size: 14px;
    line-height: 2;
    margin-top: 10px;
    margin-bottom: 30px;
    text-align: center;
}
section.page-thanks picture {
    position: relative;
    width: calc(100% + 48px);
    display: block;
    left: -24px;
}

}

.breadcrumb__item {
    color: #827F7B; /* 通常 */
    font-size: 14px;
    line-height: 1.8;
}

.breadcrumb__item--current {
    color: #2B2925; /* 現在ページ */
}

.breadcrumb__sep {
    color: #827F7B;
    margin: 0 4px;
}
nav.breadcrumb{
    position: absolute;
    left: 80px;
    bottom: 25px;
    
}





.black .breadcrumb__item {
    color: #827F7B; /* 通常 */
}
.black .breadcrumb__item--current {
    color: #fff; /* 現在ページ */
}
.black .breadcrumb__sep {
    color: #fff;
}
@media screen and (max-width:640px) {

nav.breadcrumb{
    position: absolute;
    left: 24px;
    bottom: 110px;
    font-size: 12px;
    max-width: calc(100% - 48px);
}
   
.breadcrumb__item {
    font-size: 12px;
}
}

textarea {
  resize: none;
}




/* ================================
  ローディング
================================ */
.loading {
    position: fixed;
    inset: 0;
    background-color: #2B2925;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000000000000000000000000;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 2s ease;
}

.loading::before {
    position: fixed;
    left: 50%;
    top: 50%;
    width: calc(100% - 160px);
    height: calc(100% - 64px - 64px);
    border-radius: 15px;
    border: 1px solid #FFFAF3;
    transform: translate(-50%,-50%);
    content: "";
    display: block;
    pointer-events: none;
}

.loading.is-fadeout {
    opacity: 0;
    pointer-events: none; /* ローディングの当たり判定を消す → 下のコンテンツが触れる */
}

.loading.is-hidden {
    display: none;
}

.loading__inner {
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
}

.loading__label {
    font-size: 20px;
    letter-spacing: 0.2em;
    color: #FDC02D;
}

.loading__image {
    width: 340px;
    height: 340px;
    object-fit: contain;
}

.loading__counter {
    font-size: 16px;
    letter-spacing: 0.15em;
}

.loading__percent {
    display: inline-block;
    margin-left: 4px;
}

/* ================================
  ブラーオーバーレイ
================================ */
.loading__blur {
    position: fixed;
    inset: 0;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition-delay: .55s;
    transition: opacity 2s ease-in;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: lighten;   /* 乗算 */
}

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

/* ブラー表示（2秒間この状態のまま） */
.loading__blur.is-visible {
    opacity: .5;
}

.loading__label.sp{
    display: none;
}
@media screen and (max-width:640px) {
.loading__label.pc{
    display: none;
}
.loading__label.sp{
    display: block;
}
.loading::before {
    position: fixed;
    left: 50%;
    top: 50%;
    width: calc(100% - 24px - 24px);
    height: calc(100% - 30px - 30px);
    border-radius: 15px;
    border: 1px solid #FFFAF3;
    transform: translate(-50%,-50%);
    content: "";
    display: block;
    pointer-events: none;
}
.loading__image {
    width: 230px;
    height: 230px;
    object-fit: contain;
}
.loading__inner {
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 30px;
}
}

/* blur 表示と同時に中身をフェードアウトさせる */
.loading.fade-content .loading__inner {
    opacity: 0;
    transition: opacity 1.2s ease-in;
}

.loading.fade-content::before {
    opacity: 0;
    transition: opacity 1.2s ease-in;
}
.zip-box button.btn-zip-search.is-active {
    background: #ea5318;
}






/* ================================
Hamburger Menu（Footerベース）
================================ */

/* スクロール止め */
body.is-hm-open{
  overflow: hidden;
}

/* 全画面 fixed */
.hm{
  background: #2B2925;
  color: #F7F1E9;
  position: fixed;
  inset: 0;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .25s ease, visibility .25s ease;
}
.hm.is-open{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* 旧 footer の padding-top 相当 */
.hm__inner{
  position: relative;
  padding-top: 80px;
  height: 100%;
  overflow: auto;
}

/* BACK TO TOP（旧 footer.footer .back-top） */
.hm .hm__back-top {
  position: absolute;
  text-align: right;
  z-index: 2;
  width: calc(100% - 17px);
  top: 0;
  left: 0;
  right: 17px;
}

.hm .hm__back-top a {
  background: #2b2925;
  display: block;
  text-align: right;
  margin-left: auto;
  margin-right: 0;
  padding-bottom: 5px;
  letter-spacing: .1em;
  padding-top: 5px;
  color: #F7F1E9;
}

/* body */
.hm__body{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100%;
}

/* 上部リンク */
.hm-link ul.hm-link__list{
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.hm-link ul.hm-link__list a img{
  width: 100%;
  object-fit: contain;
}

/* nav wrap */
.hm-nav__wrap.w-1300{
  display: flex;
  justify-content: space-between;
  padding-bottom: 120px;
}

/* ナビカラム */
.hm-navigation_content{
  display: flex;
  width: calc((100% - 180px) / 4);
  flex-direction: column;
}

.hm-navigation_content h2{
  font-size: 20px;
  line-height: 1.8;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}

.hm-navigation_content h2 span.border{
  position: absolute;
  bottom: -0.5px;
  width: 100%;
  content: "";
  left: 0;
  height: 1px;
  background: repeating-linear-gradient(to right,
      #fffaf3 0,
      #fffaf3 1px,
      transparent 1px,
      transparent 11px);
  border: none;
}

/* 同カラム内で2番目のh2用（PCのみ） */
.hm-navigation_content h2:nth-of-type(2){
  margin-top: 35px;
}

.hm-navigation_content .hm__nav ul{
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.8;
}

.hm-navigation_content .hm__nav li a{
  transition: .25s;
  line-height: 1.8;
  font-size: 16px;
  display: block;
  color: #F7F1E9;
}

.hm-navigation_content .hm__nav li a:hover{
  color: #EA5317;
  transition: .25s;
}

/* サイトマップ行（背景共通） */
.hm-sitemap-link{
  position: relative;
  background-size: cover;
  background-position: center top;
  width: 100%;
}

.hm-sitemap-link__sns{
  position: absolute;
  display: flex;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  gap: 12px;
  margin-right: 24px;
}

.hm-sitemap-link__sns li{
  width: 22px;
  height: 22px;
}

.hm-sitemap-link__sns li img{
  width: 22px;
  height: 22px;
  object-fit: contain;
  object-position: center;
}

.hm-sitemap-link__cont {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: #fff;
    padding-top: 32px;
    border-top: 1px solid;
}
/* ===== ハンバーガーボタン：開いてる時は×（12px/3px） ===== */
.header__right-hamburger{
  position: relative;
  width: 44px;
  height: 44px;
}

.header__right-hamburger img{
  display: block;
}

/* open時：画像は消して×を描く */
.header__right-hamburger.is-open img{
  opacity: 0;
}

.header__right-hamburger.is-open::before,
.header__right-hamburger.is-open::after{
  content:"";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 21px;
    height: 3px;
    background: #F7F1E9;
    transform-origin: center;
    z-index: 100000000000000000;
    border-radius: 100000px;
}

.header__right-hamburger.is-open::before{
  transform:translate(-50%,-50%) rotate(45deg);
}
.header__right-hamburger.is-open::after{
  transform:translate(-50%,-50%) rotate(-45deg);
}

/* ==========================
SP（<=640px） アコーディオン
========================== */
@media (max-width: 640px) {

  /* 上部リンクの縦並び */
  .hm-link ul.hm-link__list{
    flex-direction: column;
    gap: 10px;
    margin-bottom: 40px;
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

  .hm-nav__wrap.w-1300{
    display: flex;
    justify-content: space-between;
    padding-bottom: 20px;
    padding-left: 24px;
    padding-right: 24px;
    flex-direction: column;
  }

  .hm-navigation_content{
    width: 100%;
    flex-direction: column;
  }

  /* 見出し（SP） */
  .hm-navigation_content h2{
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    margin-top: 0;
    position: relative;
    cursor: pointer;
    padding-right: 32px; /* ＋アイコン分 */
  }

  /* SPでは2番目のh2の上マージンをリセット */
  .hm-navigation_content h2:nth-of-type(2){
    margin-top: 0;
  }

  /* 1個目だけクリック不可 & ＋−非表示（フッター仕様踏襲） */
  .hm-navigation_content:first-child h2{
    pointer-events: none !important;
  }
  .hm-navigation_content:first-child h2::before,
  .hm-navigation_content:first-child h2::after{
    display: none;
  }

  /* ＋ / − アイコン */
  .hm-navigation_content h2::before,
  .hm-navigation_content h2::after{
    content:"";
    position:absolute;
    right:15px;
    bottom:20px;
    width:14px;
    height:1px;
    background:#fffaf3;
    transition: transform .3s ease;
    transform: translateY(-50%);
  }

  /* 縦棒（＋） */
  .hm-navigation_content h2::before{
    transform: translateY(-50%) rotate(90deg);
  }

  /* is-open で ＋ → − */
  .hm-navigation_content h2.is-open::before{
    transform: translateY(-50%) rotate(0deg);
  }

  /* アコーディオンで閉じておく */
  .hm-navigation_content:not(:first-child) .hm__nav{
    display: none;
  }

  .hm-navigation_content .hm__nav ul{
    display: flex;
    flex-direction: column;
    gap: 10px;
    line-height: 1.8;
  }

  .hm-navigation_content .hm__nav li a{
    font-size: 14px;
  }

  /* 開いてるh2/navの余白 */
  .hm-navigation_content h2.is-open{
    margin-bottom: 10px;
  }

  .hm-navigation_content .hm__nav.is-open-nav{
    margin-bottom: 30px;
  }

  .hm-navigation_content .hm__nav.first-nav{
    margin-bottom: 30px;
  }

  /* サイトマップ行（SP） */
  .hm-sitemap-link{
    padding-left: 24px;
    padding-right: 24px;
  }

  .hm-sitemap-link__cont{
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    flex-wrap: wrap;
  }

  .hm-sitemap-link__cont li{
    white-space: nowrap;
  }

  .hm-sitemap-link__cont li a{
    display: block;
    width: max-content;
  }

  /* 3つ目以降を強制改行（元仕様） */
  .hm-sitemap-link__cont li:nth-child(2){
    margin-right: calc(100% - 84px - 56px - 20px);
  }

  .hm-sitemap-link__sns{
    position: relative;
    display: flex;
    right: 0;
    top: 0;
    transform: none;
    gap: 12px;
    margin-right: 24px;
    margin-top: 30px;
  }

  .hm-sitemap-link__cont {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 14px;
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 80px;
    border-top: 0;
    padding-top: 0;
}
}


/* ==========================
ハンバーガーOPEN時のヘッダー制御
========================== */

/* ヘッダー背景を透明に */
body.is-hm-open header#header {
  background: transparent !important;
}

/* フェードアウトしたい要素 */
body.is-hm-open .header__right-text,
body.is-hm-open a.header__right-btn,
body.is-hm-open .header__inner__logo-wrap {
  opacity: 0;
  pointer-events: none; /* クリック不可に */
}

/* フェード用トランジション（任意だけどほぼ必須） */
header#header,
.header__right-text,
a.header__right-btn,
.header__inner__logo-wrap {
  transition: opacity .25s ease, background-color .25s ease;
}
