@charset "UTF-8";
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-size: 62.5%;
}

a, address, article, aside, audio, b, big, blockquote, body, button, caption, center, cite, code, dd, details, div, dl, dt, em, fieldset, figcaption, figure, footer, form, form, h1, h2, h3, h4, h5, h6, header, i, iframe, img, input, label, li, main, mark, menu, nav, ol, p, pre, q, s, section, select, small, span, strong, summary, table, tbody, td, textarea, tfoot, th, thead, time, tr, u, ul, video {
    margin: 0;
    padding: 0;
    font-size: inherit;
    box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
    display: block;
}

audio, canvas, progress, video {
    display: inline-block;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

img {
    max-width: 100%;
    width: 100%;
    vertical-align: bottom;
    border-style: none;
}

svg:not(:root) {
    overflow: hidden;
}

a {
    background-color: transparent;
    color: inherit;
    display: block;
}
a:hover {
    text-decoration: none;
    color: inherit;
}

a:active,
a:hover {
    outline-width: 0;
}

b,
strong {
    font-weight: inherit;
    font-weight: bolder;
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

button,
input,
select,
textarea {
    font: inherit;
    margin: 0;
}

button,
input,
select {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

[type=button],
[type=reset],
[type=submit],
button {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type=reset],
[type=submit],
button,
html [type=button] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
}

button:-moz-focusring,
input:-moz-focusring {
    outline: 1px dotted ButtonText;
}

textarea {
    overflow: auto;
}

[type=checkbox],
[type=radio] {
    box-sizing: border-box;
    padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
    height: auto;
}

[type=search] {
    -webkit-appearance: textfield;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
    -webkit-appearance: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:after,
blockquote:before,
q:after,
q:before {
    content: "";
    content: none;
}

/*==================================================================================================
	サイト基礎
==================================================================================================*/
* {
    margin: 0;
    padding: 0;
    line-height: 1.75;
    font-weight: 500;
    font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
    font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Sans-Serif;
    color: #1B1B1E;
}

body {
    font-size: clamp(1.4rem, 2.4vw, 1.6rem);
    color: #1B1B1E;
    background-color: #F8F7EE;
}
body.-noscroll {
    overflow: hidden;
}
body.-vendor ::-moz-selection {
    background-color: #b4130e;
}
body.-vendor ::selection {
    background-color: #b4130e;
}
body.-food ::-moz-selection {
    background-color: #999158;
}
body.-food ::selection {
    background-color: #999158;
}
body.-transport ::-moz-selection {
    background-color: #1a4167;
}
body.-transport ::selection {
    background-color: #1a4167;
}

main {
    overflow-x: clip;
}

[type=button],
[type=reset],
[type=submit],
a,
a img,
button {
    transition: 0.5s;
}

::-moz-selection {
    color: #fff;
    background-color: #9d1521;
}

::selection {
    color: #fff;
    background-color: #9d1521;
}

.scroll {
    visibility: hidden;
}

/*==================================================================================================
	ヘッダー
==================================================================================================*/
.hd {
    position: fixed;
    width: 100%;
    z-index: 110;
}
.hd_inner {
    display: flex;
    justify-content: space-between;
    position: relative;
    align-items: center;
    width: 100%;
    padding: calc(clamp(2em, 8cqw, 4em) * 0.35) min(5cqw, 4em);
    background-color: transparent;
    transition: background-color 0.3s ease;
}
.hd_name a {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    line-height: 1.45;
}
.hd_name a span {
    font-weight: 700;
}
.hd_name a:hover {
    color: #D11C2C;
}
.hd_nav {
    display: flex;
    align-items: center;
}
@media (max-width: 1024px) {
    .hd_nav {
        display: none;
    }
}
.hd_nav .nav_list {
    display: flex;
    gap: 0 2em;
}
.hd_nav .nav_item {
    position: relative;
}
.hd_nav .nav_link {
    display: flex;
    align-items: center;
    padding: 1em 0;
    position: relative;
    transition: 0.5s color;
}
.hd_nav .nav_link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.75em;
    width: 100%;
    height: 1px;
    background: #1B1B1E;
    border-radius: 5px;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.hd_nav .nav_link:hover {
    color: #D11C2C;
}
.hd_nav .nav_link:hover::before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.hd_nav .nav_link.-pulldown::after {
    content: "";
    width: 0.65em;
    height: 0.65em;
    -webkit-mask-image: url(../img/cmn/icon_arrow.svg);
    mask-image: url(../img/cmn/icon_arrow.svg);
    background-color: #1B1B1E;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: translate 0.5s, background-color 0.5s;
    margin-left: 0.5em;
}
.hd_nav .nav_link.-pulldown:hover::after {
    translate: 0 0.25em;
    background-color: #D11C2C;
}
.hd_nav .nav_pulldown .pulldown_list {
    position: absolute;
    top: 65px;
    left: 50%;
    translate: -50% 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
    padding: 1em 1.25em;
    display: none;
    white-space: nowrap;
}
.hd_nav .nav_pulldown .pulldown_list::before {
    content: "";
    position: absolute;
    top: -0.35em;
    left: 50%;
    translate: -50% 0;
    width: 1.5em;
    height: 1.5em;
    background-color: #fff;
    rotate: 45deg;
}
.hd_nav .nav_pulldown .pulldown_item {
    position: relative;
    margin-bottom: 1em;
}
.hd_nav .nav_pulldown .pulldown_item:nth-child(1) .pulldown_link::before {
    background-color: #ED1C16;
}
.hd_nav .nav_pulldown .pulldown_item:nth-child(1) .pulldown_link:hover {
    color: #ED1C16;
}
.hd_nav .nav_pulldown .pulldown_item:nth-child(2) .pulldown_link::before {
    background-color: #BAB487;
}
.hd_nav .nav_pulldown .pulldown_item:nth-child(2) .pulldown_link:hover {
    color: #BAB487;
}
.hd_nav .nav_pulldown .pulldown_item:nth-child(3) {
    margin-bottom: 0;
}
.hd_nav .nav_pulldown .pulldown_item:nth-child(3) .pulldown_link::before {
    background-color: #235789;
}
.hd_nav .nav_pulldown .pulldown_item:nth-child(3) .pulldown_link:hover {
    color: #235789;
}
.hd_nav .nav_pulldown .pulldown_link {
    line-height: 1.45;
    position: relative;
    padding-left: 1em;
}
.hd_nav .nav_pulldown .pulldown_link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 0.5em;
    height: 0.5em;
    border-radius: 5px;
}
.hd_content {
    display: flex;
    align-items: center;
    gap: 0 1.5em;
}
.hd_contact {
    position: relative;
    padding: 1em 2em;
    background-color: #D11C2C;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0 0.75em;
    transition: background-color 0.5s;
}
@media (max-width: 540px) {
    .hd_contact {
        display: none;
    }
}
.hd_contact::before {
    content: "";
    display: inline-block;
    translate: 0 0.05em;
    width: 1.25em;
    height: 1.25em;
    background-color: #fff;
    -webkit-mask-image: url(../img/cmn/icon_mail.svg);
    mask-image: url(../img/cmn/icon_mail.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.hd_contact span {
    position: relative;
    color: #fff;
}
.hd_contact:hover {
    background-color: #a71623;
}
@media (min-width: 1025px) {
    .hd_menu {
        display: none;
    }
}
.hd_menu .menu_btn {
    position: relative;
    cursor: pointer;
    width: clamp(50px, 8vw, 60px);
    height: clamp(50px, 8vw, 60px);
    align-items: center;
    display: flex;
    z-index: 999;
    transition: all 0.5s;
}
.hd_menu .menu_btn span {
    display: inline-block;
    position: absolute;
    left: 50%;
    translate: -50% -50%;
    width: 70%;
    height: 2px;
    border-radius: 5px;
    background-color: #1B1B1E;
    transition: 0.5s background-color;
}
.hd_menu .menu_btn span:nth-of-type(1) {
    top: 10%;
    transition: all 0.5s;
}
.hd_menu .menu_btn span:nth-of-type(2) {
    top: 30%;
    transition: all 0.5s;
}
.hd_menu .menu_btn span:nth-of-type(3) {
    top: 50%;
    transition: all 0.5s;
}
.hd_menu .menu_btn span:nth-of-type(4) {
    top: 65%;
    height: 0;
}
.hd_menu .menu_btn span:nth-of-type(4)::after {
    content: "MENU";
    color: #1B1B1E;
    font-weight: 700;
    word-break: normal;
    font-family: "Google Sans", sans-serif;
    font-size: 0.8em;
    white-space: nowrap;
    transition: all 0.5s;
    position: absolute;
    left: 50%;
    top: 50%;
    translate: -50% 0%;
    transition: 0.5s color;
}
.hd_menu .menu_btn:hover span {
    background-color: #1B1B1E;
}
.hd_menu .menu_btn.-active span:nth-of-type(1) {
    top: 35%;
    rotate: -30deg;
}
.hd_menu .menu_btn.-active span:nth-of-type(2) {
    opacity: 0;
}
.hd_menu .menu_btn.-active span:nth-of-type(3) {
    top: 35%;
    rotate: 30deg;
}
.hd_menu .menu_btn.-active span:nth-of-type(4)::after {
    content: "CLOSE";
}
.hd_menu .menu_bg {
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: all 0.5s;
    pointer-events: none;
    background-color: rgba(248, 247, 238, 0.8);
    backdrop-filter: blur(10px);
}
.hd_menu .menu_bg.-active {
    opacity: 1;
    z-index: 998;
    pointer-events: auto;
}
.hd_menu .menu_inner {
    position: fixed;
    z-index: 998;
    width: 100%;
    height: 100%;
}
.hd_menu .menu_content {
    width: 100%;
    height: 100svh;
    overflow-y: auto;
    padding: clamp(80px, 12vw, 150px) min(5cqw, 4em) 0;
    display: flex;
    flex-direction: column;
    gap: calc(clamp(2em, 8cqw, 4em) * 0.75) 0;
}
.hd_menu .menu_nav {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.hd_menu .menu_nav .nav_item {
    position: relative;
}
.hd_menu .menu_nav .nav_link {
    display: inline-flex;
    align-items: center;
    padding: 1em 0;
    position: relative;
    transition: 0.5s color;
}
.hd_menu .menu_nav .nav_link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0.75em;
    width: 100%;
    height: 1px;
    background: #1B1B1E;
    border-radius: 5px;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.hd_menu .menu_nav .nav_link:hover {
    color: #D11C2C;
}
.hd_menu .menu_nav .nav_link:hover::before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.hd_menu .menu_nav .nav_link span {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    line-height: 1.45;
}
.hd_menu .menu_nav .nav_link.-sub {
    pointer-events: none;
}
.hd_menu .menu_nav .nav_sub {
    margin-bottom: 1.5em;
}
.hd_menu .menu_nav .nav_sub .sub_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1.5em;
}
.hd_menu .menu_nav .nav_sub .sub_item {
    position: relative;
}
.hd_menu .menu_nav .nav_sub .sub_item:nth-child(1) .sub_link::before {
    background-color: #ED1C16;
}
.hd_menu .menu_nav .nav_sub .sub_item:nth-child(1) .sub_link:hover {
    color: #ED1C16;
}
.hd_menu .menu_nav .nav_sub .sub_item:nth-child(2) .sub_link::before {
    background-color: #BAB487;
}
.hd_menu .menu_nav .nav_sub .sub_item:nth-child(2) .sub_link:hover {
    color: #BAB487;
}
.hd_menu .menu_nav .nav_sub .sub_item:nth-child(3) {
    margin-bottom: 0;
}
.hd_menu .menu_nav .nav_sub .sub_item:nth-child(3) .sub_link::before {
    background-color: #235789;
}
.hd_menu .menu_nav .nav_sub .sub_item:nth-child(3) .sub_link:hover {
    color: #235789;
}
.hd_menu .menu_nav .nav_sub .sub_link {
    line-height: 1.45;
    position: relative;
    padding-left: 1em;
    font-size: 1.15em;
}
.hd_menu .menu_nav .nav_sub .sub_link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 0.5em;
    height: 0.5em;
    border-radius: 5px;
}
.hd_menu .menu_contact {
    position: relative;
    padding: 1em 2em;
    background-color: #D11C2C;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0 0.75em;
    transition: background-color 0.5s;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
}
.hd_menu .menu_contact::before {
    content: "";
    display: inline-block;
    translate: 0 0.05em;
    width: 1.25em;
    height: 1.25em;
    background-color: #fff;
    -webkit-mask-image: url(../img/cmn/icon_mail.svg);
    mask-image: url(../img/cmn/icon_mail.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.hd_menu .menu_contact span {
    position: relative;
    color: #fff;
}
.hd_menu .menu_contact:hover {
    background-color: #a71623;
}

/*==================================================================================================
	フッター
==================================================================================================*/
.ft {
    background-color: #373f51;
    padding: clamp(2em, 8cqw, 4em) min(5cqw, 4em);
    color: #fff;
}
.ft_contact {
    padding-bottom: clamp(2em, 8cqw, 4em);
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.ft_contact .contact_inner {
    display: flex;
    justify-content: space-between;
    gap: clamp(2em, 8cqw, 4em) 5%;
}
@media (max-width: 1024px) {
    .ft_contact .contact_inner {
        flex-direction: column;
    }
}
.ft_contact .contact_secttl {
    display: flex;
    flex-direction: column;
    gap: 0.25em 0;
}
.ft_contact .contact_secttl .en {
    font-size: clamp(3.8rem, 6vw, 6rem);
    line-height: 1.25;
    font-family: "Google Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
}
.ft_contact .contact_secttl .ja {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    line-height: 1.45;
    color: #fff;
    letter-spacing: 0.1em;
}
.ft_contact .contact_menu {
    display: flex;
    flex-wrap: wrap;
    gap: 2em 2.5em;
}
.ft_contact .contact_unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}
@media (max-width: 1024px) {
    .ft_contact .contact_unit {
        width: calc((100% - 2.5em) / 2);
    }
}
@media (max-width: 540px) {
    .ft_contact .contact_unit {
        width: 100%;
    }
}
.ft_contact .contact_ttl {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    line-height: 1.45;
    color: #fff;
    margin-bottom: 0.75em;
}
.ft_contact .contact_btn {
    height: 85px;
}
@media (max-width: 1024px) {
    .ft_contact .contact_btn {
        width: 100%;
    }
}
@media (max-width: 540px) {
    .ft_contact .contact_btn {
        height: auto;
    }
}
.ft_contact .contact_btn.-tel {
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #fff;
    padding: 0.75em 2em;
}
.ft_contact .contact_btn.-tel .num {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    line-height: 1.45;
    font-family: "Google Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
}
.ft_contact .contact_btn.-tel .time {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
}
.ft_contact .contact_btn.-mail {
    position: relative;
    padding: 1em 2em;
    background-color: #D11C2C;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0.75em;
    transition: background-color 0.5s;
    font-size: 1.25em;
}
.ft_contact .contact_btn.-mail::before {
    content: "";
    display: inline-block;
    translate: 0 0.05em;
    width: 1.25em;
    height: 1.25em;
    background-color: #fff;
    -webkit-mask-image: url(../img/cmn/icon_mail.svg);
    mask-image: url(../img/cmn/icon_mail.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
}
.ft_contact .contact_btn.-mail span {
    position: relative;
    color: #fff;
}
.ft_contact .contact_btn.-mail:hover {
    background-color: #a71623;
}
.ft_main {
    padding-top: clamp(2em, 8cqw, 4em);
    height: 220px;
}
@media (max-width: 840px) {
    .ft_main {
        height: auto;
    }
}
.ft_inner {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 840px) {
    .ft_inner {
        flex-direction: column-reverse;
        gap: clamp(2em, 8cqw, 4em) 0;
    }
}
.ft_name {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    line-height: 1.45;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5em;
}
.ft_nav .nav_list {
    display: flex;
    gap: 1em 2em;
}
@media (max-width: 840px) {
    .ft_nav .nav_list {
        flex-direction: column;
    }
}
.ft_nav .nav_item {
    position: relative;
}
.ft_nav .nav_link {
    display: flex;
    align-items: center;
    position: relative;
    transition: 0.5s color;
}
@media (max-width: 840px) {
    .ft_nav .nav_link {
        display: inline-flex;
    }
}
.ft_nav .nav_link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25em;
    width: 100%;
    height: 1px;
    background: #fff;
    border-radius: 5px;
    translate: 0 0;
    scale: 0 1;
    -webkit-transform-origin: right top;
    transform-origin: right top;
    transition: scale 0.5s;
}
.ft_nav .nav_link:hover::before {
    scale: 1 1;
    -webkit-transform-origin: left top;
    transform-origin: left top;
}
.ft_nav .nav_link.-pulldown::after {
    content: "";
    width: 0.65em;
    height: 0.65em;
    -webkit-mask-image: url(../img/cmn/icon_arrow.svg);
    mask-image: url(../img/cmn/icon_arrow.svg);
    background-color: #fff;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: translate 0.5s, background-color 0.5s;
    margin-left: 0.5em;
}
@media (max-width: 840px) {
    .ft_nav .nav_link.-pulldown::after {
        display: none;
    }
}
.ft_nav .nav_link.-pulldown:hover::after {
    translate: 0 0.25em;
}
@media (max-width: 840px) {
    .ft_nav .nav_link.-pulldown {
        pointer-events: none;
    }
}
.ft_nav .nav_link span {
    font-size: 1.15em;
}
@media (max-width: 840px) {
    .ft_nav .nav_pulldown {
        display: none;
    }
}
.ft_nav .nav_pulldown .pulldown_list {
    position: absolute;
    top: 55px;
    left: 50%;
    translate: -50% 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: #fff;
    padding: 1em 1.25em;
    display: none;
    white-space: nowrap;
}
.ft_nav .nav_pulldown .pulldown_list::before {
    content: "";
    position: absolute;
    top: -0.35em;
    left: 50%;
    translate: -50% 0;
    width: 1.5em;
    height: 1.5em;
    background-color: #fff;
    rotate: 45deg;
}
.ft_nav .nav_pulldown .pulldown_item {
    position: relative;
    margin-bottom: 1em;
}
.ft_nav .nav_pulldown .pulldown_item:nth-child(1) .pulldown_link::before {
    background-color: #ED1C16;
}
.ft_nav .nav_pulldown .pulldown_item:nth-child(1) .pulldown_link:hover {
    color: #ED1C16;
}
.ft_nav .nav_pulldown .pulldown_item:nth-child(2) .pulldown_link::before {
    background-color: #BAB487;
}
.ft_nav .nav_pulldown .pulldown_item:nth-child(2) .pulldown_link:hover {
    color: #BAB487;
}
.ft_nav .nav_pulldown .pulldown_item:nth-child(3) {
    margin-bottom: 0;
}
.ft_nav .nav_pulldown .pulldown_item:nth-child(3) .pulldown_link::before {
    background-color: #235789;
}
.ft_nav .nav_pulldown .pulldown_item:nth-child(3) .pulldown_link:hover {
    color: #235789;
}
.ft_nav .nav_pulldown .pulldown_link {
    line-height: 1.45;
    position: relative;
    padding-left: 1em;
    color: #1B1B1E;
}
.ft_nav .nav_pulldown .pulldown_link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 0.5em;
    height: 0.5em;
    border-radius: 5px;
}
.ft_nav .nav_sub {
    margin-top: 0.25em;
    margin-bottom: 0.5em;
}
@media (min-width: 841px) {
    .ft_nav .nav_sub {
        display: none;
    }
}
.ft_nav .nav_sub .sub_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5em 1.5em;
}
.ft_nav .nav_sub .sub_item {
    position: relative;
}
.ft_nav .nav_sub .sub_item:nth-child(1) .sub_link::before {
    background-color: #ED1C16;
}
.ft_nav .nav_sub .sub_item:nth-child(2) .sub_link::before {
    background-color: #BAB487;
}
.ft_nav .nav_sub .sub_item:nth-child(3) {
    margin-bottom: 0;
}
.ft_nav .nav_sub .sub_item:nth-child(3) .sub_link::before {
    background-color: #235789;
}
.ft_nav .nav_sub .sub_link {
    line-height: 1.45;
    position: relative;
    padding-left: 1em;
}
.ft_nav .nav_sub .sub_link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 0.5em;
    height: 0.5em;
    border-radius: 5px;
}
.ft_nav .nav_sub .sub_link:hover {
    opacity: 0.8;
}
.ft_copy {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    display: block;
    margin-top: -20px;
}
@media (max-width: 840px) {
    .ft_copy {
        margin-top: 1.5em;
    }
}

/*==================================================================================================
	共通
==================================================================================================*/
.cmn {
    margin: calc(clamp(2em, 8cqw, 4em) * 2) auto;
    padding: 0 5%;
    position: relative;
    container-type: inline-size;
}
.cmn.-mt_sm {
    margin-top: clamp(2em, 6cqw, 3.5em);
}
.cmn.-mb_sm {
    margin-bottom: clamp(2em, 6cqw, 3.5em);
}
.cmn_inner {
    margin: 0 auto;
    position: relative;
}
.cmn_inner.-xxl {
    max-width: 1600px;
}
.cmn_inner.-xl {
    max-width: 1280px;
}
.cmn_inner.-lg {
    max-width: 1024px;
}
.cmn_inner.-md {
    max-width: 840px;
}
.cmn_inner.-sm {
    max-width: 700px;
}
.cmn_inner.-xs {
    max-width: 540px;
}
.cmn_inner.-white {
    background-color: #fff;
    padding: clamp(2em, 8cqw, 4em) min(5cqw, 4em);
    box-shadow: 0 0 1.5em 0 rgba(27, 27, 30, 0.1);
    z-index: 5;
}
.cmn_inner:has(.cmn_txtanim) > * {
    position: relative;
    z-index: 10;
}
.cmn_inner:has(.cmn_txtanim) .cmn_txtanim {
    position: absolute;
    z-index: 0;
}
.cmn_pagehead {
    margin-top: 0;
    padding-top: calc(clamp(2em, 8cqw, 4em) * 2 + 50px);
}
.cmn_pagehead_ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.cmn_pagehead_ttl .en {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    line-height: 1.45;
    font-family: "Google Sans", sans-serif;
    display: flex;
    gap: 0 0.05em;
}
.cmn_pagehead_ttl .en span {
    font: inherit;
    color: #D11C2C;
    display: inline-block;
    opacity: 0;
    translate: 0 -0.5em;
    transition: 0.5s opacity, 0.5s translate;
}
.cmn_pagehead_ttl .en span.-active {
    opacity: 1;
    translate: 0 0;
}
.cmn_pagehead_ttl .en.-vendor span {
    color: #ED1C16;
}
.cmn_pagehead_ttl .en.-food span {
    color: #BAB487;
}
.cmn_pagehead_ttl .en.-transport span {
    color: #235789;
}
.cmn_pagehead_ttl .ja {
    font-size: clamp(3.8rem, 6vw, 6rem);
    line-height: 1.25;
    letter-spacing: 0.1em;
}
.cmn_secttl {
    font-size: clamp(2.4rem, 3.6vw, 3.2rem);
    line-height: 1.45;
    padding-bottom: 0.35em;
    margin-bottom: 1.25em;
    border-bottom: 2px solid #D11C2C;
}
.cmn_subttl {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    line-height: 1.45;
    position: relative;
    padding-left: 0.75em;
    margin-bottom: 1em;
}
.cmn_subttl::before {
    content: "";
    position: absolute;
    left: 0;
    top: 52.5%;
    translate: 0 -50%;
    width: 3px;
    height: 75%;
    background-color: #D11C2C;
}
.cmn_txt + .cmn_txt {
    margin-top: 0.75em;
}
.cmn_data_list {
    display: flex;
    flex-direction: column;
    margin-top: -1.25em;
}
.cmn_data_item {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid #ccc;
    padding: 1.25em 0;
    align-items: center;
    gap: 0.15em 1em;
}
.cmn_data_term {
    flex: 0 0 10em;
    font-weight: 500;
    color: #6C6C6C;
}
@media (max-width: 840px) {
    .cmn_data_term {
        flex: 0 0 auto;
        width: 100%;
    }
}
.cmn_data_desc {
    flex: 1;
    min-width: 0;
}
@media (max-width: 840px) {
    .cmn_data_desc {
        flex: 0 0 auto;
        width: 100%;
    }
}
.cmn_data_link {
    text-decoration: underline;
    display: inline-block;
}
.cmn_data_link:hover {
    color: #D11C2C;
    text-decoration: underline;
}
.cmn_form_list {
    display: flex;
    flex-direction: column;
    gap: 2em 0;
}
.cmn_form_item {
    display: flex;
    flex-direction: column;
    gap: 0.75em 0;
}
.cmn_form_item.-align {
    align-items: flex-start;
}
.cmn_form_item.-align .label {
    margin-top: 0.5em;
}
@media (max-width: 840px) {
    .cmn_form_item.-align .label {
        margin-top: 0;
    }
}
.cmn_form_item .label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 500;
    gap: 0 0.75em;
}
@media (max-width: 840px) {
    .cmn_form_item .label {
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }
}
.cmn_form_item .label.-required::before, .cmn_form_item .label.-any::before {
    color: #fff;
    border-radius: 5px;
    font-size: 0.85em;
    padding: 0 0.75em;
}
.cmn_form_item .label.-required::before {
    content: "必須";
    background-color: #d80716;
}
.cmn_form_item .label.-any::before {
    content: "任意";
    background-color: #858585;
}
.cmn_form_item .label + * {
    width: 100%;
    height: 3em;
}
.cmn_form_item .input {
    padding: 0.5em;
    border-radius: 5px;
    border: 1px solid #A1A7B5;
    outline: none;
}
.cmn_form_item .input#c_tel, .cmn_form_item .input#o_tel {
    width: 250px;
}
@media (max-width: 540px) {
    .cmn_form_item .input#c_tel, .cmn_form_item .input#o_tel {
        width: 100%;
    }
}
.cmn_form_item .input#o_num, .cmn_form_item .input#o_price {
    width: 250px;
}
.cmn_form_item .unit {
    display: flex;
    align-items: center;
    gap: 0 0.5em;
}
.cmn_form_item .note {
    height: auto;
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
}
.cmn_form_item .textarea {
    resize: vertical;
    padding: 0.5em;
    border-radius: 5px;
    border: 1px solid #A1A7B5;
    outline: none;
    height: auto;
}
.cmn_form_item .input::-webkit-input-placeholder,
.cmn_form_item .p-postal-code::-webkit-input-placeholder,
.cmn_form_item .textarea::-webkit-input-placeholder {
    color: #ddd;
    opacity: 1;
    font-weight: 400;
}
.cmn_form_item .input::-moz-placeholder,
.cmn_form_item .p-postal-code::-moz-placeholder,
.cmn_form_item .textarea::-moz-placeholder {
    color: #ddd;
    opacity: 1;
    font-weight: 400;
}
.cmn_form_item .input::-ms-input-placeholder,
.cmn_form_item .p-postal-code::-ms-input-placeholder,
.cmn_form_item .textarea::-ms-input-placeholder {
    color: #ddd;
    opacity: 1;
    font-weight: 400;
}
.cmn_form_item .input::placeholder,
.cmn_form_item .p-postal-code::placeholder,
.cmn_form_item .textarea::placeholder {
    color: #ddd;
    opacity: 1;
    font-weight: 400;
}
.cmn_form_item .checkbox {
    display: flex;
    align-items: center;
    margin-top: -0.25em;
    min-height: 3em;
    height: auto;
}
@media (max-width: 840px) {
    .cmn_form_item .checkbox {
        min-height: 2.5em;
    }
}
.cmn_form_item .checkbox_list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.15em 1.25em;
}
.cmn_form_item .checkbox_item {
    position: relative;
    display: flex;
}
.cmn_form_item .checkbox_item input[type=checkbox] {
    width: 0;
    visibility: hidden;
}
.cmn_form_item .checkbox_item input[type=checkbox]:checked + label::after {
    opacity: 1;
    scale: 1;
}
.cmn_form_item .checkbox_item label {
    position: relative;
    cursor: pointer;
    padding: 0 1em 0 1.75em;
}
.cmn_form_item .checkbox_item label::before {
    border: 1px solid #A1A7B5;
    border-radius: 2px;
    content: "";
    display: block;
    height: 0.85em;
    width: 0.85em;
    left: 0;
    position: absolute;
    top: 50%;
    translate: 0 -45%;
}
.cmn_form_item .checkbox_item label::after {
    border-right: 3px solid #BAB487;
    border-bottom: 3px solid #BAB487;
    content: "";
    display: block;
    height: 0.75em;
    width: 0.45em;
    position: absolute;
    top: 50%;
    left: 0.35em;
    translate: 0 -75%;
    opacity: 0;
    rotate: 45deg;
    scale: 0.7;
    opacity: 0;
    transition: 0.35s scale, 0.5s opacity;
}
.cmn_form_item .address {
    min-height: 3em;
    height: auto;
}
.cmn_form_item .address .num {
    display: flex;
    align-items: center;
    gap: 0 0.5em;
    margin-bottom: 10px;
}
.cmn_form_item .address .num input {
    padding: 0.5em;
    outline: none;
    border-radius: 5px;
    border: 1px solid #A1A7B5;
    width: 200px;
}
.cmn_form_item .address .textarea {
    resize: vertical;
    padding: 0.5em;
    border-radius: 5px;
    border: 1px solid #A1A7B5;
    outline: none;
    height: auto;
    width: 100%;
    margin-bottom: -5px;
}
.cmn_form_agree {
    margin-top: 1.5em;
}
.cmn_form_agree .agree_link {
    display: inline-block;
    position: relative;
    text-decoration: underline;
    color: #1B1B1E !important;
    transition: color 0.5s;
}
.cmn_form_agree .agree_link:hover {
    color: #D11C2C;
    text-decoration: underline;
}
.cmn_form_btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0.5em;
    max-width: 100%;
    border: none;
    border-radius: 5px;
    text-align: center;
    transition: color 0.5s, background-color 0.5s;
    font-size: 1.25em;
    padding: 1em 2.5em;
    width: 360px;
    margin: 2em auto 0;
    background: #eee;
}
@media (max-width: 540px) {
    .cmn_form_btn {
        width: 80%;
        padding-left: 1em;
    }
}
.cmn_form_btn span {
    line-height: 1.45;
}
.cmn_form_btn::after {
    content: "";
    position: absolute;
    transition: all 0.5s;
    top: 50%;
    right: 1em;
    translate: 0 -50%;
    opacity: 0;
    width: 0.65em;
    height: 0.65em;
    background-color: #fff;
    -webkit-mask-image: url(../img/cmn/icon_arrow.svg);
    mask-image: url(../img/cmn/icon_arrow.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: opacity 0.5s, right 0.5s;
    rotate: 270deg;
}
.cmn_form_btn.-active {
    color: #fff;
}
.cmn_form_btn.-active::after {
    opacity: 1;
}
.cmn_form_btn.-active:hover::after {
    right: 0.5em;
}
.cmn_txtanim {
    top: 0;
    left: 0.5em;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.cmn_txtanim .txtanim_content {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    will-change: transform;
}
.cmn_txtanim .txtanim_content span {
    padding-bottom: 0.25em;
    font-weight: 500;
    font-size: calc(clamp(3.8rem, 6vw, 6rem) * 1.35);
    display: inline-block;
    line-height: 1;
    font-family: "Google Sans", sans-serif;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    rotate: 180deg;
}
.cmn_txtanim.-vendor span {
    color: rgba(237, 28, 22, 0.05);
}
.cmn_txtanim.-food span {
    color: rgba(186, 180, 135, 0.05);
}
.cmn_txtanim.-transport span {
    color: rgba(35, 87, 137, 0.05);
}
.cmn_news_list {
    display: flex;
    flex-direction: column;
    gap: 1em 0;
}
.cmn_news_item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25em 2em;
}
.cmn_news_info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.25em 1em;
    flex: 0 0 180px;
}
@media (max-width: 840px) {
    .cmn_news_info {
        flex: 0 0 auto;
        width: 100%;
    }
}
.cmn_news_time {
    color: #A1A7B5;
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    font-family: "Google Sans", sans-serif;
    font-weight: 400;
    translate: 0 0.1em;
}
.cmn_news_tax {
    font-size: clamp(1.2rem, 1.8vw, 1.4rem);
    display: flex;
    align-items: center;
    gap: 0 0.35em;
}
.cmn_news_tax::before {
    content: "●";
    scale: 0.8;
}
.cmn_news_tax.-vendor::before {
    color: #ED1C16;
}
.cmn_news_tax.-food::before {
    color: #BAB487;
}
.cmn_news_tax.-transport::before {
    color: #235789;
}
.cmn_news_tax.-news::before {
    color: #373F51;
}
.cmn_news_content {
    flex: 1;
    min-width: 0;
}
@media (max-width: 840px) {
    .cmn_news_content {
        flex: 0 0 auto;
        width: 100%;
    }
}
.cmn_news_link {
    display: inline-block;
}
.cmn_news_link:hover .news_ttl {
    color: #D11C2C;
    text-decoration: underline;
}
.cmn_news_ttl {
    text-decoration: underline;
    transition: color 0.5s;
    line-height: 1.6;
    display: inline-block;
}
.cmn_about_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 0 5%;
}
.cmn_about_unit {
    width: 47.5%;
}
@media (max-width: 840px) {
    .cmn_about_unit {
        width: 100%;
    }
}
.cmn_about_copy {
    font-size: clamp(2.4rem, 3.6vw, 3.2rem);
    line-height: 1.45;
    position: relative;
    margin-bottom: 1.5em;
}
.cmn_about_copy::before {
    content: "";
    position: absolute;
    bottom: -0.75em;
    left: 0;
    width: 3em;
    height: 3px;
}
.cmn_about_img {
    width: 37.5%;
    position: relative;
    z-index: 5;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 500px;
}
@media (max-width: 840px) {
    .cmn_about_img {
        height: auto;
        width: 85%;
        margin: 0 auto;
    }
}
.cmn_about_img .img_main {
    width: 100%;
    height: 70%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    z-index: 5;
}
@media (max-width: 840px) {
    .cmn_about_img .img_main {
        width: 60%;
    }
}
.cmn_about_img .img_main img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: bottom;
    object-position: bottom;
}
.cmn_about_img .img_sub {
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.cmn_about_img .img_sub img {
    position: absolute;
}
.cmn_about_img .img_sub:nth-child(2) img {
    -webkit-animation: yurayura_01 3s infinite;
    animation: yurayura_01 3s infinite;
}
.cmn_about_img .img_sub:nth-child(3) img {
    -webkit-animation: yurayura_02 4.5s infinite;
    animation: yurayura_02 4.5s infinite;
}
.cmn_about_img .img_bg {
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -60%;
    border-radius: 50%;
    width: 100%;
    aspect-ratio: 1/1;
    -webkit-transform-origin: center center;
    transform-origin: center center;
}
.cmn_nopost {
    display: block;
    text-align: center;
}
.cmn_pagenation {
    padding: 30px 0 0;
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5em 1.5em;
}
.cmn_pagenation .page-numbers {
    display: inline-block;
    display: flex;
    font-size: 1.15em;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    font-family: "Google Sans", sans-serif;
    font-weight: 400;
}
.cmn_pagenation .page-numbers.current {
    color: #D11C2C;
}
.cmn_pagenation .page-numbers.dots {
    pointer-events: none;
}
.cmn_pagenation .page-numbers:hover {
    color: #D11C2C;
}
.cmn_pagenation .prev,
.cmn_pagenation .next {
    display: none;
}

.mailphp {
    max-width: 1024px;
    margin: 0 auto;
}
.mailphp p {
    margin: 1em 0;
}
.mailphp .mailphp-header {
    text-align: center;
}
.mailphp .mailphp-header .mailphp-header-inner {
    font-weight: 900;
    font-size: 2.4rem;
    margin: 0px;
    color: #aaa;
    border: none;
}
.mailphp .mailphp-main {
    flex-grow: 1;
    margin: 3em 0;
    margin: 10px 0px 30px;
}
.mailphp .mailphp-main .mailphp-main-inner p {
    text-align: center;
}
.mailphp .mailphp-footer {
    margin-bottom: 0px;
}
.mailphp .confirm-items,
.mailphp .error-items {
    margin: 1.5em 0;
}
.mailphp .confirm-items .confirm-item,
.mailphp .confirm-items .error-item,
.mailphp .error-items .confirm-item,
.mailphp .error-items .error-item {
    display: flex;
    margin-bottom: 1px;
}
.mailphp .confirm-items .confirm-item-body,
.mailphp .confirm-items .error-item-body,
.mailphp .error-items .confirm-item-body,
.mailphp .error-items .error-item-body {
    flex: 1;
}

.mailphp-header-title {
    font-size: clamp(2rem, 3.2vw, 2.4rem);
    line-height: 1.45;
    display: block;
    margin-bottom: 1em;
}
.mailphp-header-title.-order {
    border-bottom: 2px solid #BAB487;
}

.confirm_custom {
    margin-top: 0;
    position: relative;
    padding: calc(clamp(2em, 8cqw, 4em) * 2 + 50px) 5% calc(clamp(2em, 8cqw, 4em) * 2);
}

.confirm-items {
    width: 100%;
    margin-top: 30px;
}
.confirm-items tbody {
    width: 100%;
    border-top: 1px solid #ccc;
}
.confirm-items tbody tr {
    display: flex;
    flex-wrap: wrap;
}
.confirm-items tbody tr th {
    display: block;
    width: 230px;
    font-weight: 500;
    text-align: left;
    border-bottom: 1px solid #ccc;
    padding: 1.25em 0;
    color: #6c6c6c;
}
@media screen and (max-width: 840px) {
    .confirm-items tbody tr th {
        width: 100%;
        border-bottom: none;
        padding: 1.25em 0 1.5px;
    }
}
.confirm-items tbody tr td {
    display: block;
    width: calc(100% - 230px);
    text-align: left;
    border-bottom: 1px solid #ccc;
    padding: 1.25em 0 1.25em 1em;
}
@media screen and (max-width: 840px) {
    .confirm-items tbody tr td {
        width: 100%;
        padding-left: 0px;
        padding: 0 0 1.25em;
    }
}

.error-items .error-item {
    border-radius: 5px;
    padding: 1em;
    display: flex;
    flex-wrap: wrap;
    background-color: #fff;
}
.error-items .error-item:not(:last-child) {
    margin-bottom: 5px;
}
.error-items .error-item-label {
    display: block;
    width: 150px;
}
@media screen and (max-width: 840px) {
    .error-items .error-item-label {
        width: 100%;
    }
}
.error-items .error-item-body {
    display: block;
    width: calc(100% - 150px);
    padding-left: 1em;
    word-break: break-all;
    color: #c40000;
}
@media screen and (max-width: 840px) {
    .error-items .error-item-body {
        width: 100%;
        padding-left: 0px;
    }
}

.confirm-btns {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
}
.confirm-btns .confirm-btn.confirm-btn-submit {
    border: none;
    padding: 1em 1.5em;
    width: 360px;
    max-width: 90%;
    margin: 2.5em auto 1.5em;
    background-color: #D11C2C;
    color: #fff;
    border-radius: 5px;
    font-size: 1.25em;
    position: relative;
}
.confirm-btns .confirm-btn.confirm-btn-submit::after {
    content: "";
    position: absolute;
    transition: all 0.5s;
    top: 50%;
    right: 1em;
    translate: 0 -50%;
    width: 0.65em;
    height: 0.65em;
    background-color: #fff;
    -webkit-mask-image: url(../img/cmn/icon_arrow.svg);
    mask-image: url(../img/cmn/icon_arrow.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: opacity 0.5s, right 0.5s;
    rotate: 270deg;
}
.confirm-btns .confirm-btn.confirm-btn-submit:hover {
    background-color: #a71623;
}
.confirm-btns .confirm-btn.confirm-btn-submit:hover::after {
    right: 0.5em;
}
.confirm-btns .confirm-btn.confirm-btn-submit.-order {
    background-color: #BAB487;
}
.confirm-btns .confirm-btn.confirm-btn-submit.-order:hover {
    background-color: #a39b5e;
}
.confirm-btns .confirm-btn.confirm-btn-back {
    font-size: 1.6rem;
    width: 180px;
    max-width: 80%;
    margin: 0 auto;
    background-color: #aaa;
    color: #fff;
    border: none;
    padding: 0.5em 1.5em;
    transition: 0.5s opacity;
    border-radius: 5px;
    position: relative;
}
.confirm-btns .confirm-btn.confirm-btn-back::after {
    content: "";
    position: absolute;
    transition: all 0.5s;
    top: 50%;
    left: 1em;
    translate: 0 -50%;
    width: 0.65em;
    height: 0.65em;
    background-color: #fff;
    -webkit-mask-image: url(../img/cmn/icon_arrow.svg);
    mask-image: url(../img/cmn/icon_arrow.svg);
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: opacity 0.5s, left 0.5s;
    rotate: 90deg;
}
.confirm-btns .confirm-btn.confirm-btn-back:hover {
    opacity: 0.7;
}
.confirm-btns .confirm-btn.confirm-btn-back:hover::after {
    left: 0.5em;
}

.error_messe {
    margin-top: 30px;
    text-align: center;
}