@charset "UTF-8";
/* reset
-------------------------------------------------------------------------------- */
:root {
    --color-accent: #231815;
}
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    min-block-size: 100svb;
    min-height: 100svh;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
p, h1, h2, h3, h4, h5, h6, li {
    font-weight: 400;
    overflow-wrap: break-word;
}
th, td {
    font-weight: 400;
}
ul, ol {
    list-style: none;
}
img, svg, video, iframe {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font-family: inherit;
    color: inherit;
    background-color: #fff;
    max-width: 100%;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
a {
    text-decoration: none;
}
/* loading
-------------------------------------------------------------------------------- */
#intro {
    position: fixed;
    inset: 0;
    clip-path: rect(0 100% 100% 0);
    background-color: var(--color-accent);
    transition-duration: 1s;
    transition-delay: 1.5s;
    transition-timing-function: cubic-bezier(0.87, 0.01, 0.19, 0.98);
    z-index: 3;
}
#intro.loaded {
    clip-path: rect(0 100% 100% 100%);
}
#intro_logo {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 38.2vw;
    height: 11vw;
    transition-duration: 1s;
    clip-path: rect(0 0 100% 0);
}
#intro_logo ._frame {
    fill: none;
}
#intro_logo ._chara {
    fill: #fff;
}
.loaded #intro_logo {
    clip-path: rect(0 100% 100% 0);
}
/* common
-------------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    font-size: 3.75vw;
}
body {
    font-family: noto-sans-cjk-jp, sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
    color: #000;
}
.eb-garamond {
    font-family: eb-garamond, serif;
    font-weight: 400;
    font-style: normal;
}
.zen-old-mincho {
    font-family: zen-old-mincho, serif;
    font-weight: 400;
    font-style: normal;
}
.inner {
    width: 84%;
    margin-inline: auto;
}
a {
    color: #000;
}
.display_pc {
    display: none;
}
.display_sp {
    display: block;
}
section {
    padding: 3rem 0;
}
.section_head {
    margin-bottom: 1.5rem;
}
.section_head h2 {
    position: relative;
    text-align: center;
    line-height: 1.4;
    padding: 0.75rem 0;
}
.section_head h2::before, .section_head h2::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 0;
    background-color: var(--color-accent);
    transition-duration: 1s;
}
.section_head h2::before {
    top: 0;
    left: 0;
}
.section_head h2::after {
    bottom: 0;
    right: 0;
}
.section_head h2 span {
    display: block;
}
.section_head h2 span:nth-child(1) {
    font-family: eb-garamond, serif;
    font-size: 1.6rem;
    letter-spacing: 0.075rem;
}
.section_head h2 span:nth-child(2) {
    font-family: zen-old-mincho, serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
}
.section_head h2.active::before {
    width: 100%;
}
.section_head h2.active::after {
    width: 100%;
}
.href a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 1.2rem;
    border: 1px solid var(--color-accent);
    margin-inline: auto;
    font-family: eb-garamond, serif;
    font-size: 1.1rem;
    line-height: 1.5;
    color: var(--color-accent);
}
.href a._invert {
    background-color: var(--color-accent);
    color: #fff;
}
.href a._white {
    border-color: #fff;
    color: #fff;
}
.slide_right {
    clip-path: inset(0 100% 0 0);
    transition-timing-function: cubic-bezier(0.72, 0, 0.38, 1);
    transition-duration: 1s;
}
.slide_right.active {
    clip-path: inset(0);
}
.slide_down {
    clip-path: inset(0 0 100% 0);
    transition-timing-function: cubic-bezier(0.72, 0, 0.38, 1);
    transition-duration: 1s;
}
.slide_down.active {
    clip-path: inset(0);
}
.fade {
    opacity: 0;
    transition-timing-function: ease;
    transition-duration: 1s;
}
.fade.active {
    opacity: 1;
}
.fade_up {
    opacity: 0;
    transform: translateY(3rem);
    transition-timing-function: ease;
    transition-duration: 1s;
}
.fade_up.active {
    opacity: 1;
    transform: translateY(0);
}
.fade_left {
    opacity: 0;
    transform: translateX(3rem);
    transition-timing-function: ease;
    transition-duration: 1s;
}
.fade_left.active {
    opacity: 1;
    transform: translateX(0);
}
/* header
-------------------------------------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 5rem;
    background-color: #fff;
    z-index: 2;
}
header ._logo {
    width: 11rem;
    height: 100%;
}
header ._logo a {
    display: block;
    height: 100%;
    padding: 0.5rem 1.25rem 0;
}
header ._logo a img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
header nav {
    position: relative;
    height: calc(100dvh - 5rem);
    padding: 2rem 0 0;
    background-color: #fff;
    clip-path: polygon(0 -50%, 100% 0, 100% 0, 0 -50%);
    transition: 0.5s;
}
header nav>ul {
    max-height: 100%;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
header nav>ul>li {
    border-top: 1px solid #000;
}
header nav>ul>li a {
    position: relative;
    display: block;
    padding: 1rem 1.5rem;
}
header nav>ul>li a span {
    display: block;
    line-height: 1.25;
}
header nav>ul>li a span:nth-child(1) {
    font-family: eb-garamond, serif;
    font-size: 1.75rem;
    white-space: nowrap;
}
header nav>ul>li a span:nth-child(2) {
    font-size: 1rem;
}
header nav>ul>li a::before, header nav>ul>li a::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 0.9rem;
    background-color: #000;
    top: calc(50% + 1px);
    right: 1.75rem;
    transform-origin: right;
}
header nav>ul>li a::after {
    transform: rotate(-40deg);
}
header nav>ul>li a::before {
    transform: rotate(40deg);
}
header nav>ul>li+ul {
    display: none;
    border: none;
}
header nav>ul>li+ul li {
    border-top: 1px solid rgba(0, 0, 0, 0.25);
    background-color: #f9f9f9;
}
header nav>ul>li+ul li a {
    position: relative;
    display: block;
    padding: 1rem 1.5rem 1rem 2.5rem;
}
header nav>ul>li+ul li a span {
    line-height: 1.25;
}
header nav>ul>li+ul li a span:nth-child(1) {
    font-family: eb-garamond, serif;
    font-size: 1.5rem;
    margin-right: 1rem;
}
header nav>ul>li+ul li a span:nth-child(2) {
    font-size: 0.9rem;
}
header nav>ul>li+ul li a::before, header nav>ul>li+ul li a::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 0.6rem;
    background-color: #000;
    top: calc(50% + 1px);
    right: 1.85rem;
    transform-origin: right;
}
header nav>ul>li+ul li a::after {
    transform: rotate(-40deg);
}
header nav>ul>li+ul li a::before {
    transform: rotate(40deg);
}
header nav>ul>li:has(+ ul) a::before, header nav>ul>li:has(+ ul) a::after {
    transform: rotate(0deg);
    transform-origin: center;
    width: 1.1rem;
    right: 1.65rem;
    transition: 0.5s;
}
header nav>ul>li:has(+ ul) a::after {
    transform: rotate(-90deg);
}
header nav>ul>li:has(+ ul).active a::after {
    width: 0;
    right: 2.2rem;
}
header nav>ul>li:nth-last-child(2) {
    margin-bottom: 6rem;
    border-bottom: 1px solid #000;
}
header nav>ul>li:last-child {
    position: absolute;
    height: 6rem;
    bottom: 0;
    left: 0;
    right: 0;
}
header nav>ul>li:last-child a {
    height: 100%;
    background-color: #000;
    text-align: center;
    padding: 1rem 1.5rem 1rem;
}
header nav>ul>li:last-child a span {
    color: #fff;
}
header ._index {
    position: absolute;
    top: 0;
    right: 0;
    width: 5.25rem;
    height: 100%;
}
header ._index span {
    position: absolute;
    background-color: #000;
    height: 2px;
    width: 2.25rem;
    right: 1.5rem;
    left: 1.5rem;
    transition: 0.5s;
}
header ._index span:nth-child(1) {
    top: 1.9rem;
    transition-delay: 0.5s;
}
header ._index span:nth-child(2) {
    top: 2.6rem;
    transition-delay: 0.5s;
}
header ._index span:nth-child(3) {
    top: 3.3rem;
    transition-delay: 0.5s;
}
header ._index span:nth-child(4) {
    top: 2.6rem;
    width: 0;
    right: 2.625rem;
    left: 2.625rem;
    transform: rotate(-45deg);
    transition-delay: 0s;
}
header ._index span:nth-child(5) {
    top: 2.6rem;
    width: 0;
    right: 2.625rem;
    left: 2.625rem;
    transform: rotate(45deg);
    transition-delay: 0s;
}
header.active nav {
    display: block;
    clip-path: polygon(0 -50%, 100% 0, 100% 150%, 0 100%);
}
header.active ._index span:nth-child(1) {
    width: 0;
    left: 2.625rem;
    right: 2.625rem;
    transition-delay: 0s;
}
header.active ._index span:nth-child(2) {
    width: 0;
    left: 2.625rem;
    right: 2.625rem;
    transition-delay: 0s;
}
header.active ._index span:nth-child(3) {
    width: 0;
    left: 2.625rem;
    right: 2.625rem;
    transition-delay: 0s;
}
header.active ._index span:nth-child(4) {
    top: 2.6rem;
    width: 2.25rem;
    right: 1.5rem;
    left: 1.5rem;
    transition-delay: 0.5s;
}
header.active ._index span:nth-child(5) {
    top: 2.6rem;
    width: 2.25rem;
    right: 1.5rem;
    left: 1.5rem;
    transition-delay: 0.5s;
}
/* footer
-------------------------------------------------------------------------------- */
footer {
    padding: 3rem 0 2rem;
    background-color: var(--color-accent);
    overflow-x: hidden;
}
footer ._head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
footer ._head ._logo {
    width: 7rem;
}
footer ._head ._logo a {
    display: block;
}
footer ._head ._logo a img {
    width: 100%;
}
footer ._head ._sns ul {
    display: flex;
    justify-content: flex-end;
}
footer ._head ._sns ul li a {
    display: block;
    padding: 0.25rem;
}
footer ._head ._sns ul li a img {
    height: 1.5rem;
}
footer ._head ._sns ul li:nth-child(1) {
    transition-delay: 0s;
}
footer ._head ._sns ul li:nth-child(2) {
    transition-delay: 0.125s;
}
footer ._head ._sns ul li:nth-child(3) {
    transition-delay: 0.25s;
}
footer ._head ._sns ul li:nth-child(4) {
    transition-delay: 0.375s;
}
footer ._head ._sns ul li:nth-child(5) {
    transition-delay: 0.5s;
}
footer ._head ._sns ul li:nth-child(6) {
    transition-delay: 0.625s;
}
footer ._head ._sns ul li:nth-child(7) {
    transition-delay: 0.75s;
}
footer ._brands {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
footer ._brands ._logo {
    width: 20%;
}
footer ._brands ._logo a {
    display: block;
    height: 100%;
    padding: 0.5rem;
}
footer ._brands ._logo a img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
footer ._brands ._logo:nth-child(5n+1) {
    transition-delay: 0s;
}
footer ._brands ._logo:nth-child(5n+2) {
    transition-delay: 0.125s;
}
footer ._brands ._logo:nth-child(5n+3) {
    transition-delay: 0.25s;
}
footer ._brands ._logo:nth-child(5n+4) {
    transition-delay: 0.375s;
}
footer ._brands ._logo:nth-child(5n) {
    transition-delay: 0.5s;
}
footer ._nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 2rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #666;
    margin-bottom: 1rem;
}
footer ._nav ._item {
    width: 46%;
}
footer ._nav ._item ._head {
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #666;
}
footer ._nav ._item ._head h4 a {
    display: block;
    padding-bottom: 0.75rem;
}
footer ._nav ._item ._head h4 a span {
    display: block;
    color: #fff;
    line-height: 1.3;
}
footer ._nav ._item ._head h4 a span:nth-child(1) {
    font-family: eb-garamond, serif;
    font-size: 1.1rem;
}
footer ._nav ._item ._head h4 a span:nth-child(2) {
    font-size: 0.75rem;
}
footer ._nav ._item ._body ul li a {
    position: relative;
    display: block;
    color: #fff;
    font-size: 0.75rem;
    padding: 0.25rem 0 0.25rem 1.5rem;
}
footer ._nav ._item ._body ul li a::before {
    position: absolute;
    content: "";
    left: 0;
    top: 0.9rem;
    height: 1px;
    width: 0.9rem;
    background-color: #666;
}
footer ._other {
    margin-bottom: 1.75rem;
}
footer ._other ul li a {
    display: block;
    color: #fff;
    font-size: 0.75rem;
    line-height: 1.8;
}
#copyright {
    font-family: "helvetica-lt-pro", sans-serif;
    font-weight: 300;
    font-size: 0.666rem;
    font-style: normal;
    color: #fff;
}
#page_top {
    display: none;
    position: fixed;
    bottom: 0;
    right: 0;
    transform: rotate(90deg) translateX(1.9rem);
    transform-origin: top right;
}
#page_top a {
    display: block;
    padding: 0.5rem 1rem;
    color: #fff;
    background-color: var(--color-accent);
    font-family: eb-garamond, serif;
    font-size: 0.9rem;
    line-height: 1;
}
/* main
-------------------------------------------------------------------------------- */
main {
    margin-top: 5rem;
    overflow-x: hidden;
}
#common_head {
    position: relative;
    clip-path: inset(0 0 100% 0);
    transition-timing-function: cubic-bezier(0.72, 0, 0.38, 1);
    transition-duration: 1s;
    padding: 0;
}
#common_head.active {
    clip-path: inset(0);
}
#common_head ._img {
    height: calc(100vh - 17.5rem);
    overflow: hidden;
}
#common_head ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#common_head ._img img:has(+ .display_sp) {
    display: none;
}
#common_head .inner {
    position: absolute;
    width: 100%;
    inset: 0;
    top: auto;
    padding: 10rem 0 2rem;
    background-image: linear-gradient(0deg, rgba(35, 24, 21, 0.77), transparent);
}
#common_head .inner ._txt h1 {
    color: #fff;
    text-align: center;
    line-height: 1.3;
}
#common_head .inner ._txt h1 span {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    transition-duration: 1s;
    transition-delay: 1s;
}
#common_head .inner ._txt h1 span:nth-child(1) {
    font-size: 2rem;
}
#common_head .inner ._txt h1 span:nth-child(2) {
    font-size: 1.25rem;
    font-family: zen-old-mincho, serif;
}
#common_head._half {
    height: calc(40vh - 2rem);
}
#common_head._half ._img {
    height: 100%;
}
#enjoy_app {
    background-color: #ead8b7;
}
#enjoy_app .inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    row-gap: 1rem;
}
#enjoy_app .inner ._icon {
    width: 25%;
    filter: drop-shadow(0 0.1rem 0.5rem #fff);
}
#enjoy_app .inner ._icon img {
    border-radius: 1.25rem;
}
#enjoy_app .inner ._title {
    width: 68%;
}
#enjoy_app .inner ._title h3 {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.5;
}
#enjoy_app .inner ._txt {
    width: 100%;
    font-size: 1rem;
    margin-bottom: 0.75rem;
}
#enjoy_app .inner ._txt br {
    display: none;
}
#enjoy_app .inner ._store {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}
#enjoy_app .inner ._store a {
    display: block;
    height: 3.25rem;
}
#enjoy_app .inner ._store a img {
    height: 100%;
}
#enjoy_app .inner ._store a:nth-child(2) {
    transition-delay: 0.25s;
}
#enjoy_app .inner .href {
    width: 100%;
}
#common_foot {
    padding: 0;
    aspect-ratio: 0.833;
    overflow: hidden;
    clip-path: inset(0 0 100% 0);
    transition-timing-function: cubic-bezier(0.72, 0, 0.38, 1);
    transition-duration: 1s;
    padding: 0;
}
#common_foot.active {
    clip-path: inset(0);
}
#common_foot img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#common_foot img:has(+ .display_sp) {
    display: none;
}
/* home
-------------------------------------------------------------------------------- */
#home .section_head {
    margin-bottom: 2.5rem;
}
#home .section_head h2 {
    line-height: 1.3;
    padding: 0.75rem 0 1.25rem;
}
#home .section_head h2::before, #home .section_head h2::after {
    left: 0;
    right: 0;
    margin: auto;
    height: 1px;
    width: 0;
    transition-duration: 2s;
}
#home .section_head h2::before {
    content: none;
}
#home .section_head h2 span:nth-child(1) {
    font-size: 2rem;
}
#home .section_head h2 span:nth-child(2) {
    font-size: 1.05rem;
    letter-spacing: 0.05rem;
}
#home .section_head h2.active::after {
    width: 3rem;
}
#home_top {
    position: relative;
    height: calc(100svh - 5rem);
    padding: 0;
    background-color: #000;
}
#home_top ._movie {
    height: 100%;
}
#home_top ._movie video {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#home_top .swiper {
    height: 100%;
}
#home_top .swiper-wrapper {
    height: 100%;
}
#home_top .swiper-slide {
    height: auto;
}
#home_top .swiper-slide ._inner {
    height: 100%;
}
#home_top .swiper-slide ._inner img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#home_top .inner {
    position: absolute;
    inset: 0;
    display: grid;
    place-content: center;
    z-index: 1;
}
#home_top .inner h1 {
    font-size: 1.4rem;
    font-weight: 900;
    color: #fff;
    text-align: center;
    transition-delay: 3s;
}
#home_about .inner .section_head {
    margin-bottom: 1.5rem;
}
#home_about .inner .section_body ._txt {
    margin-bottom: 2.5rem;
}
#home_about .inner .section_body ._txt ._title {
    margin-bottom: 1rem;
}
#home_about .inner .section_body ._txt ._title h3 {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}
#home_about .inner .section_body ._txt .desc {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 2.25rem;
}
#home_about .inner .section_body ._txt .desc br {
    display: none;
}
#home_about .inner .section_body ._img ._item {
    aspect-ratio: 4.5;
    width: 90%;
    margin: 0 auto 1.25rem;
    overflow: hidden;
    background-color: #a7987b;
}
#home_about .inner .section_body ._img ._item a {
    position: relative;
    display: block;
    height: 100%;
}
#home_about .inner .section_body ._img ._item a img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.8;
    mix-blend-mode: multiply;
}
#home_about .inner .section_body ._img ._item a h3 {
    color: #fff;
    position: absolute;
    inset: 0;
    margin: auto;
    line-height: 1.4;
    display: grid;
    place-content: center;
}
#home_about .inner .section_body ._img ._item a h3 span {
    display: block;
    text-align: center;
}
#home_about .inner .section_body ._img ._item a h3 span:nth-child(1) {
    font-family: eb-garamond, serif;
    font-size: 1.2rem;
}
#home_about .inner .section_body ._img ._item a h3 span:nth-child(2) {
    font-size: 0.9rem;
}
#home_img_01 {
    padding: 0;
    aspect-ratio: 1;
}
#home_img_01 img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#home_brands {
    padding-bottom: 3.5rem;
}
#home_brands .inner .section_body ._brands {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
#home_brands .inner .section_body ._brands ._logo {
    width: 25%;
}
#home_brands .inner .section_body ._brands ._logo a {
    display: block;
    height: 100%;
    padding: 0.666rem;
}
#home_brands .inner .section_body ._brands ._logo a img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
#home_brands .inner .section_body ._brands ._logo:nth-child(4n+1) {
    transition-delay: 0s;
}
#home_brands .inner .section_body ._brands ._logo:nth-child(4n+2) {
    transition-delay: 0.125s;
}
#home_brands .inner .section_body ._brands ._logo:nth-child(4n+3) {
    transition-delay: 0.25s;
}
#home_brands .inner .section_body ._brands ._logo:nth-child(4n) {
    transition-delay: 0.375s;
}
#home_brands .inner .section_body .href {
    display: flex;
    justify-content: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
}
#home_brands .inner .section_body .href a {
    margin-inline: 0.25rem;
}
#home_brands .inner .section_body .href a:nth-child(2) {
    transition-delay: 0.25s;
}
#home_img_02 {
    padding: 0;
    aspect-ratio: 1;
}
#home_img_02 img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#home_news .inner .section_body ._box {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-accent);
}
#home_news .inner .section_body ._box ._item {
    border-top: 1px solid var(--color-accent);
}
#home_news .inner .section_body ._box ._item:first-child {
    border-top: none;
}
#home_news .inner .section_body ._box ._item a {
    display: block;
    padding: 1.5rem 0 1.25rem;
}
#home_news .inner .section_body ._box ._item a ._img {
    aspect-ratio: 2.5;
    overflow: hidden;
    margin-bottom: 1rem;
}
#home_news .inner .section_body ._box ._item a ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#home_news .inner .section_body ._box ._item a ._img._noimg {
    display: none;
    opacity: 0.1;
}
#home_news .inner .section_body ._box ._item a ._txt ._head {
    display: flex;
    line-height: 1;
    margin-bottom: 0.5rem;
}
#home_news .inner .section_body ._box ._item a ._txt ._head ._day {
    font-size: 0.75rem;
    padding-right: 0.75rem;
}
#home_news .inner .section_body ._box ._item a ._txt ._head ._type {
    padding-left: 0.75rem;
    border-left: 1px solid var(--color-accent);
    display: flex;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
}
#home_news .inner .section_body ._box ._item a ._txt ._head ._type span {
    font-size: 0.75rem;
}
#home_news .inner .section_body ._box ._item a ._txt ._title {
    margin-bottom: 0.25rem;
}
#home_news .inner .section_body ._box ._item a ._txt ._title h3 {
    font-size: 1.1rem;
    font-weight: 500;
}
#home_news .inner .section_body ._box ._item a ._txt ._beginning {
    margin-bottom: 2rem;
    font-size: 1rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
#home_news .inner .section_body ._box ._item a ._txt ._category span {
    display: inline-block;
    font-size: 0.666rem;
    border: 1px solid var(--color-accent);
    margin-right: 0.25rem;
    line-height: 1;
    padding: 0.25rem 0.75rem;
}
#home_news .inner .section_body ._box ._item a ._txt ._category span._news {
    border: 1px solid #f4b200;
    background-color: #f4b200;
    color: #fff;
}
#home_news .inner .section_body ._box ._item a ._txt ._category span._press {
    border: 1px solid #e6001b;
    background-color: #e6001b;
    color: #fff;
}
#home_recruit {
    position: relative;
    aspect-ratio: 0.8333;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(35, 24, 21, 0.33);
    background-blend-mode: multiply;
}
#home_recruit .inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
#home_recruit .inner .section_head h2 {
    text-align: left;
    color: #fff;
}
#home_recruit .inner .section_head h2::after {
    right: auto;
    background-color: #fff;
}
#home_recruit .inner .section_body {
    color: #fff;
}
#home_recruit .inner .section_body ._title {
    margin-bottom: 0.5rem;
}
#home_recruit .inner .section_body ._title h3 {
    font-size: 1.25rem;
    font-weight: 600;
}
#home_recruit .inner .section_body ._txt {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
#home_recruit .inner .section_body .href a {
    margin-left: 0;
}
/* about
-------------------------------------------------------------------------------- */
#about main #about_lead .inner ._box ._title {
    margin-bottom: 1rem;
}
#about main #about_lead .inner ._box ._title h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}
#about main #about_lead .inner ._box ._txt {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 0;
}
#about main #about_lead .inner ._box ._txt br {
    display: none;
}
#about main .about_img {
    padding: 0;
    aspect-ratio: 1;
    overflow: hidden;
}
#about main .about_img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#about main #philosophy {
    padding: 4rem 0;
}
#about main #philosophy .inner .section_head {
    margin-bottom: 2.5rem;
}
#about main #philosophy .inner .section_body ._head {
    margin-bottom: 2rem;
    font-family: serif;
    font-weight: 400;
}
#about main #philosophy .inner .section_body ._head br {
    display: none;
}
#about main #philosophy .inner .section_body ._item {
    margin-bottom: 3rem;
}
#about main #philosophy .inner .section_body ._item:last-child {
    margin-bottom: 0;
}
#about main #philosophy .inner .section_body ._item ._img {
    position: relative;
    aspect-ratio: 1.35;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(167, 152, 123, 0.8);
    margin-bottom: 1rem;
}
#about main #philosophy .inner .section_body ._item ._img h3 {
    font-family: eb-garamond, serif;
    position: absolute;
    color: #fff;
    font-size: 2rem;
}
#about main #philosophy .inner .section_body ._item ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    mix-blend-mode: multiply;
}
#about main #philosophy .inner .section_body ._item ._txt {
    line-height: 1.8;
}
#about main #philosophy .inner .section_body ._item ._txt ._en {
    font-size: 0.9rem;
    font-family: eb-garamond, serif;
    letter-spacing: 0.075rem;
    margin-bottom: 0.9rem;
}
#about main #philosophy .inner .section_body ._item ._txt ._title {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
#about main #philosophy .inner .section_body ._item ._txt ._title_sub {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}
#about main #philosophy .inner .section_body ._item ._txt ._title_sub br {
    display: none;
}
#about main #philosophy .inner .section_body ._item ._txt ._desc {
    font-size: 0.9rem;
}
#about main #philosophy .inner .section_body ._item ._txt ._desc p {
    margin-bottom: 0.75rem;
}
#about main #corporate_profile {
    padding-bottom: 1rem;
}
#about main #corporate_profile .inner .section_body ._box ._item {
    padding-bottom: 0.5rem;
    border-bottom: dotted 1px var(--color-accent);
    margin-bottom: 0.75rem;
}
#about main #corporate_profile .inner .section_body ._box ._item:last-child {
    border: none;
}
#about main #corporate_profile .inner .section_body ._box ._item ._head {
    font-weight: 600;
    margin-right: 1rem;
    margin-bottom: 0.25rem;
    display: inline-block;
    vertical-align: top;
}
#about main #corporate_profile .inner .section_body ._box ._item ._body {
    display: inline-block;
}
#about main #corporate_profile .inner .section_body ._box:has(+ ._map) {
    margin-bottom: 2rem;
}
#about main #corporate_profile .inner .section_body ._map {
    aspect-ratio: 1.333;
    overflow: hidden;
}
#about main #corporate_profile .inner .section_body ._map iframe {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#about main #group .inner .section_body ._company {
    margin-bottom: 3rem;
}
#about main #group .inner .section_body ._company:last-child {
    margin-bottom: 0;
}
#about main #group .inner .section_body ._company ._name {
    padding-bottom: 0.5rem;
    border-bottom: dotted 1px var(--color-accent);
    margin-bottom: 0.75rem;
}
#about main #group .inner .section_body ._company ._name h3 {
    font-weight: 600;
    font-size: 1.1rem;
}
#about main #group .inner .section_body ._company ._box ._item {
    padding-bottom: 0.5rem;
    border-bottom: dotted 1px var(--color-accent);
    margin-bottom: 0.75rem;
}
#about main #group .inner .section_body ._company ._box ._item:last-child {
    border: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
#about main #group .inner .section_body ._company ._box ._item ._head {
    font-weight: 600;
    margin-right: 1rem;
    margin-bottom: 0.25rem;
    display: inline-block;
    vertical-align: top;
}
#about main #group .inner .section_body ._company ._box ._item ._body {
    display: inline-block;
}
#about main #group .inner .section_body ._company ._box:has(+ ._map) {
    margin-bottom: 2rem;
}
#about main #group .inner .section_body ._company ._map {
    aspect-ratio: 1.333;
    overflow: hidden;
}
#about main #group .inner .section_body ._company ._map iframe {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* history
-------------------------------------------------------------------------------- */
#history main #history_item .inner .section_head {
    margin-bottom: 2.5rem;
}
#history main #history_item .inner .section_body ._box ._period {
    border: 1px solid var(--color-accent);
    border-radius: 0.333rem;
    padding: 0.25rem 1rem;
    margin-bottom: 1rem;
}
#history main #history_item .inner .section_body ._box ._period ._head {
    position: relative;
    padding: 0.5rem 0;
}
#history main #history_item .inner .section_body ._box ._period ._head h3 span._ad {
    font-family: eb-garamond, serif;
    font-size: 1.45rem;
}
#history main #history_item .inner .section_body ._box ._period ._head h3 span._era {
    font-size: 0.9rem;
}
#history main #history_item .inner .section_body ._box ._period ._head::before {
    position: absolute;
    content: "";
    top: 1.4rem;
    right: 1rem;
    width: 1rem;
    height: 0.866rem;
    background-color: var(--color-accent);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transition: 0.5s;
}
#history main #history_item .inner .section_body ._box ._period ._body {
    display: none;
    border-top: 1px solid var(--color-accent);
}
#history main #history_item .inner .section_body ._box ._period ._body ._item {
    border-bottom: 1px dotted var(--color-accent);
    padding: 0.75rem 0;
}
#history main #history_item .inner .section_body ._box ._period ._body ._item ._date {
    margin-bottom: 0;
    font-weight: 500;
}
#history main #history_item .inner .section_body ._box ._period ._body ._item ._txt {
    font-size: 0.95rem;
}
#history main #history_item .inner .section_body ._box ._period ._body ._item ._txt br {
    display: none;
}
#history main #history_item .inner .section_body ._box ._period ._body ._item:last-child {
    border: none;
}
#history main #history_item .inner .section_body ._box ._period._open ._head::before {
    clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
#history main #history_item .inner .section_body ._box ._period._open ._body {
    display: block;
}
#history main #history_item .inner .section_body ._box ._period:not(:has(._body)) ._head::before {
    content: none;
}
#decorative_plate {
    padding-top: 0;
    margin-bottom: 1rem;
}
#decorative_plate .section_head {
    margin-bottom: 2rem;
}
#decorative_plate ._item ._head {
    margin-bottom: 0.75rem;
}
#decorative_plate ._item ._head h3 {
    font-family: zen-old-mincho, serif;
    font-size: 1.35rem;
    text-align: center;
}
#decorative_plate ._item ._body {
    margin-bottom: 2.5rem;
}
#decorative_plate ._item ._body ._txt {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
#decorative_plate ._item ._body ._txt p {
    margin-bottom: 0.75rem;
}
#decorative_plate ._item ._body ._img a img {
    width: 100%;
}
#company_background {
    padding-top: 0;
    margin-bottom: 1rem;
}
#company_background ._item ._head {
    margin-bottom: 0.75rem;
}
#company_background ._item ._head h3 {
    font-family: zen-old-mincho, serif;
    font-size: 1.35rem;
    text-align: center;
}
#company_background ._item ._body {
    margin-bottom: 2.5rem;
}
#company_background ._item ._body ._txt {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1.5rem;
    font-size: 0.95rem;
}
#company_background ._item ._body ._img a img {
    width: 100%;
}
/* brands
-------------------------------------------------------------------------------- */
#brands main #brands_body .inner .section_body ._box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 2rem;
    margin-bottom: 2.5rem;
}
#brands main #brands_body .inner .section_body ._box ._item {
    width: 46%;
}
#brands main #brands_body .inner .section_body ._box ._item:first-child ._logo {
    background-color: #2c0300;
}
#brands main #brands_body .inner .section_body ._box ._item ._logo {
    aspect-ratio: 1;
    border: 1px solid rgba(35, 24, 21, 0.25);
    margin-bottom: 0.5rem;
}
#brands main #brands_body .inner .section_body ._box ._item ._logo a {
    display: block;
    height: 100%;
    padding: 1rem;
}
#brands main #brands_body .inner .section_body ._box ._item ._logo a img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
#brands main #brands_body .inner .section_body ._box ._item ._txt ._name {
    margin-bottom: 0.25rem;
}
#brands main #brands_body .inner .section_body ._box ._item ._txt ._name h3 {
    font-size: 1rem;
    font-weight: 500;
}
#brands main #brands_body .inner .section_body ._box ._item ._txt ._txt {
    font-size: 0.9rem;
}
#brands main #brands_body .inner .section_body ._box ._item:nth-child(2n) {
    transition-delay: 0.125s;
}
#brands.single main #common_head .inner {
    display: none;
}
#brands.single main #shop_head {
    padding: 2rem 0 1rem;
}
#brands.single main #shop_head .inner ._logo {
    width: 55.5vw;
    margin: 0 auto 2rem;
    transition-delay: 0.5s;
}
#brands.single main #shop_head .inner ._name {
    margin-bottom: 1.5rem;
}
#brands.single main #shop_head .inner ._name h2 {
    text-align: center;
    line-height: 1;
}
#brands.single main #shop_head .inner ._name h2 span {
    display: inline-block;
    font-size: 1.05rem;
    font-weight: 400;
    padding: 0 0.75rem;
}
#brands.single main #shop_head .inner ._name h2 span:nth-child(2) {
    border-left: 1px solid var(--color-accent);
}
#brands.single main #shop_head .inner ._menu {
    margin-bottom: 3rem;
}
#brands.single main #shop_head .inner ._menu ul {
    position: relative;
    display: flex;
    justify-content: center;
}
#brands.single main #shop_head .inner ._menu ul::before, #brands.single main #shop_head .inner ._menu ul::after {
    position: absolute;
    content: "";
    height: 1px;
    background-color: var(--color-accent);
    transition-duration: 1s;
    width: 0;
}
#brands.single main #shop_head .inner ._menu ul::before {
    top: 0;
}
#brands.single main #shop_head .inner ._menu ul::after {
    bottom: 0;
}
#brands.single main #shop_head .inner ._menu ul li a {
    display: block;
    font-family: eb-garamond, serif;
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    padding: 0.75rem;
    white-space: nowrap;
}
#brands.single main #shop_head .inner ._menu ul.active::before, #brands.single main #shop_head .inner ._menu ul.active::after {
    width: 100%;
}
#brands.single main #shop_head .inner ._menu ul.active::before {
    left: 0;
}
#brands.single main #shop_head .inner ._menu ul.active::after {
    right: 0;
}
#brands.single main #shop_head .inner .section_body ._title {
    margin-bottom: 1.25rem;
}
#brands.single main #shop_head .inner .section_body ._title h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}
#brands.single main #shop_head .inner .section_body ._desc {
    margin-bottom: 0;
}
#brands.single main #shop_head .inner .section_body ._desc p {
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
}
#brands.single main #shop_head .inner .section_body ._desc p br {
    display: none;
}
#brands.single main #gallery {
    padding: 3rem 0 1rem;
}
#brands.single main #gallery .inner .section_body {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -moz-column-gap: 2.75%;
    column-gap: 2.75%;
    row-gap: 1.2rem;
}
#brands.single main #gallery .inner .section_body ._photo {
    width: 47.25%;
    aspect-ratio: 1;
    overflow: hidden;
}
#brands.single main #gallery .inner .section_body ._photo img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#brands.single main #shop_list .inner .section_head {
    margin-bottom: 2rem;
}
#brands.single main #shop_list .inner .section_body .shop {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-accent);
    margin-bottom: 2rem;
}
#brands.single main #shop_list .inner .section_body .shop:last-child {
    padding-bottom: 0;
    border: none;
}
#brands.single main #shop_list .inner .section_body .shop ._txt ._info {
    margin-bottom: 2rem;
}
#brands.single main #shop_list .inner .section_body .shop ._txt ._info ._name {
    margin-bottom: 1rem;
}
#brands.single main #shop_list .inner .section_body .shop ._txt ._info ._name h3 {
    font-size: 1rem;
    font-weight: 500;
}
#brands.single main #shop_list .inner .section_body .shop ._txt ._info ._item {
    margin-bottom: 0.75rem;
}
#brands.single main #shop_list .inner .section_body .shop ._txt ._info ._item ._head {
    font-weight: 500;
}
#brands.single main #shop_list .inner .section_body .shop ._txt ._href {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
}
#brands.single main #shop_list .inner .section_body .shop ._txt ._href .href {
    width: 31.5%;
}
#brands.single main #shop_list .inner .section_body .shop ._txt ._href .href a {
    display: block;
    width: 100%;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1;
    font-family: noto-sans-cjk-jp, jp;
}
#brands.single main #shop_list .inner .section_body .shop ._txt ._href .href:nth-child(1) {
    transition-delay: 0s;
}
#brands.single main #shop_list .inner .section_body .shop ._txt ._href .href:nth-child(2) {
    transition-delay: 0.25s;
}
#brands.single main #shop_list .inner .section_body .shop ._txt ._href .href:nth-child(3) {
    transition-delay: 0.5s;
}
#brands.single main #shop_list .inner .section_body .shop ._map {
    aspect-ratio: 1.25;
    overflow: hidden;
    border: 1px solid rgba(35, 24, 21, 0.5);
}
#brands.single main #shop_list .inner .section_body .shop ._map iframe {
    width: 100%;
    height: 100%;
}
/* news
-------------------------------------------------------------------------------- */
#news main #news_box .inner #news_list ._item {
    border-top: 1px solid rgba(35, 24, 21, 0.25);
    padding: 1.75rem 0;
}
#news main #news_box .inner #news_list ._item ._img {
    aspect-ratio: 1.4;
    overflow: hidden;
    margin-bottom: 1rem;
}
#news main #news_box .inner #news_list ._item ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#news main #news_box .inner #news_list ._item ._img._noimg {
    display: none;
    opacity: 0.1;
}
#news main #news_box .inner #news_list ._item ._txt ._head {
    font-family: eb-garamond, serif;
    display: flex;
    line-height: 1;
    margin-bottom: 1rem;
}
#news main #news_box .inner #news_list ._item ._txt ._head ._day {
    font-size: 0.9rem;
    padding-right: 0.75rem;
}
#news main #news_box .inner #news_list ._item ._txt ._head ._type {
    padding-left: 0.75rem;
    border-left: 1px solid var(--color-accent);
    display: flex;
    -moz-column-gap: 0.25rem;
    column-gap: 0.25rem;
}
#news main #news_box .inner #news_list ._item ._txt ._head ._type span {
    font-size: 0.9rem;
}
#news main #news_box .inner #news_list ._item ._txt ._title {
    margin-bottom: 0.25rem;
}
#news main #news_box .inner #news_list ._item ._txt ._title h3 {
    font-size: 1.05rem;
    font-weight: 500;
}
#news main #news_box .inner #news_list ._item ._txt ._beginning {
    margin-bottom: 1rem;
    font-size: 0.95rem;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
#news main #news_box .inner #news_list ._item ._txt ._category a {
    display: inline-block;
    font-size: 0.666rem;
    border: 1px solid var(--color-accent);
    margin-right: 0.25rem;
    line-height: 1;
    padding: 0.25rem 0.75rem;
}
#news main #news_box .inner #news_list ._item ._txt ._category a._news {
    border: 1px solid #f4b200;
    background-color: #f4b200;
    color: #fff;
}
#news main #news_box .inner #news_list ._item ._txt ._category a._press {
    border: 1px solid #e6001b;
    background-color: #e6001b;
    color: #fff;
}
#news main #news_box .inner #news_list ._page {
    margin: 1.5rem 0 3rem;
}
#news main #news_box .inner #news_list ._page nav .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
#news main #news_box .inner #news_list ._page nav .nav-links {
    font-family: eb-garamond, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
}
#news main #news_box .inner #news_list ._page nav .nav-links .page-numbers {
    border: 1px solid rgba(35, 24, 21, 0.5);
    aspect-ratio: 1;
    width: 2rem;
    display: grid;
    place-content: center;
}
#news main #news_box .inner #news_list ._page nav .nav-links .page-numbers.current {
    background-color: var(--color-accent);
    color: #fff;
}
#news main #news_box .inner #news_list ._page nav .nav-links .page-numbers.dots {
    border: none;
    padding: 0;
    aspect-ratio: unset;
    width: auto;
}
#news.paged #common_head ._img {
    aspect-ratio: 3;
}
#news.single main #common_head .inner {
    position: static;
    inset: auto;
    width: 84%;
    padding: 3rem 0 2rem;
    background-image: none;
}
#news.single main #common_head .inner ._txt h1 span {
    position: relative;
    display: block;
    color: var(--color-accent);
    font-size: 1.5rem;
    font-weight: 600;
    padding-bottom: 1.5rem;
    transition-duration: 1s;
}
#news.single main #common_head .inner ._txt h1 span::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition-duration: 3s;
}
#news.single main #common_head .inner ._txt h1 span.active::before {
    width: 3rem;
}
#news.single main #news_box {
    padding: 0 0 3rem;
}
#news.single main #news_box .inner #news_post {
    margin-bottom: 5rem;
}
#news.single main #news_box .inner #news_post ._head {
    margin-bottom: 0.5rem;
}
#news.single main #news_box .inner #news_post ._head ._day {
    font-family: eb-garamond, serif;
}
#news.single main #news_box .inner #news_post ._eye {
    margin-bottom: 2rem;
}
#news.single main #news_box .inner #news_post ._body {
    margin-bottom: 3rem;
}
#news.single main #news_box .inner #news_post ._body p {
    margin-bottom: 1.5rem;
}
#news.single main #news_box .inner #news_post ._href {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}
#news.single main #news_box .inner #news_post ._href .href {
    min-width: 3.5rem;
}
.news_category {
    margin-bottom: 2rem;
}
.news_category ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 0.5rem;
}
.news_category ul li {
    width: 48.5%;
}
.news_category ul li._in a {
    background-color: var(--color-accent);
    color: #fff;
}
.news_category ul li._in._news a {
    background-color: #f4b200;
    border-color: #f4b200;
    color: #fff;
}
.news_category ul li._in._press a {
    background-color: #e6001b;
    border-color: #e6001b;
    color: #fff;
}
.news_category ul li a[aria-current=page] {
    background-color: var(--color-accent);
    color: #fff;
}
.news_category ul li a {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1;
    padding: 0.5rem;
    border: 1px solid rgb(145, 139, 138);
    border-radius: 0.25rem;
}
/* recruit
-------------------------------------------------------------------------------- */
#recruit main #common_head .inner {
    inset: 0;
    padding: 0 0 1rem;
    background-image: none;
    display: grid;
    place-content: center;
}
#recruit main #recruit_lead {
    padding: 3rem 0 0;
}
#recruit main #recruit_lead .inner ._box {
    margin-bottom: 2rem;
}
#recruit main #recruit_lead .inner ._box ._title {
    margin-bottom: 1rem;
}
#recruit main #recruit_lead .inner ._box ._title h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}
#recruit main #recruit_lead .inner ._box ._txt {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 0;
}
#recruit main #recruit_lead .inner ._box ._txt br {
    display: none;
}
#recruit main #recruit_lead .inner ._entry ._item {
    aspect-ratio: 2;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
#recruit main #recruit_lead .inner ._entry ._item a {
    position: relative;
    display: block;
    height: 100%;
}
#recruit main #recruit_lead .inner ._entry ._item a._webmedia {
    border: 1px solid #EEEEEE;
    padding: 1rem;
}
#recruit main #recruit_lead .inner ._entry ._item a ._img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#recruit main #recruit_lead .inner ._entry ._item a ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#recruit main #recruit_lead .inner ._entry ._item a ._img img._webmedia {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
#recruit main #recruit_lead .inner ._entry ._item a ._txt {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    display: grid;
    place-content: center;
    text-align: center;
    transition-delay: 1s;
}
#recruit main #recruit_lead .inner ._entry ._item a ._txt ._en {
    margin-bottom: 0.9rem;
}
#recruit main #recruit_lead .inner ._entry ._item a ._txt ._en h3 {
    position: relative;
    font-family: eb-garamond, serif;
    line-height: 1.05;
    font-size: 1.2rem;
    padding-bottom: 1.1rem;
    letter-spacing: 0.05rem;
}
#recruit main #recruit_lead .inner ._entry ._item a ._txt ._en h3::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 2rem;
    height: 1px;
    background-color: #fff;
}
#recruit main #recruit_lead .inner ._entry ._item a ._txt ._jp {
    line-height: 1.35;
    font-size: 0.9rem;
}
#recruit main #recruit_fields {
    padding: 3rem 0 0;
}
#recruit main #recruit_fields .inner .section_head {
    margin-bottom: 2rem;
}
#recruit main #recruit_fields .inner .section_head h2 span {
    font-size: 1.1rem;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 600;
}
#recruit main #recruit_fields .inner .section_body ._item {
    margin-bottom: 2rem;
}
#recruit main #recruit_fields .inner .section_body ._item:last-child {
    margin-bottom: 0;
}
#recruit main #recruit_fields .inner .section_body ._item ._img {
    aspect-ratio: 1.4;
    overflow: hidden;
    margin-bottom: 1rem;
}
#recruit main #recruit_fields .inner .section_body ._item ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#recruit main #recruit_fields .inner .section_body ._item ._txt ._title {
    margin-bottom: 0.25rem;
}
#recruit main #recruit_fields .inner .section_body ._item ._txt ._title h3 {
    font-size: 1.1rem;
    font-weight: 600;
}
#recruit main #recruiter {
    padding: 3rem 0 0;
}
#recruit main #recruiter .inner .section_head {
    margin-bottom: 2rem;
}
#recruit main #recruiter .inner .section_body ._recruiter {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
#recruit main #recruiter .inner .section_body ._recruiter ._photo {
    width: 40%;
    overflow: hidden;
    aspect-ratio: 0.9;
}
#recruit main #recruiter .inner .section_body ._recruiter ._photo img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#recruit main #recruiter .inner .section_body ._recruiter ._txt {
    width: 55%;
    font-size: 0.8rem;
}
#recruit main #recruiter .inner .section_body ._recruiter ._txt ._title {
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}
#recruit main #recruiter .inner .section_body ._recruiter ._txt ._message {
    font-size: 0.85rem;
}
#recruit main #recruiter .inner .section_body ._box ._qa {
    margin-bottom: 1.75rem;
}
#recruit main #recruiter .inner .section_body ._box ._qa:last-child {
    margin-bottom: 0;
}
#recruit main #recruiter .inner .section_body ._box ._qa ._q {
    position: relative;
    font-weight: 500;
    font-size: 1rem;
    padding-left: 3rem;
    margin-bottom: 0.5rem;
}
#recruit main #recruiter .inner .section_body ._box ._qa ._q::before {
    position: absolute;
    content: "";
    top: 0.85rem;
    left: 0;
    height: 1px;
    width: 0;
    background-color: var(--color-accent);
    transition-duration: 1s;
}
#recruit main #recruiter .inner .section_body ._box ._qa ._q.active::before {
    width: 2.25rem;
}
#recruit main #recruit_interview .inner .section_head {
    margin-bottom: 2rem;
}
#recruit main #recruit_interview .inner .section_body ._box ._item {
    margin-bottom: 2rem;
}
#recruit main #recruit_interview .inner .section_body ._box ._item:last-child {
    margin-bottom: 0;
}
#recruit main #recruit_interview .inner .section_body ._box ._item ._youtube {
    aspect-ratio: 1.777;
    margin-bottom: 0.5rem;
}
#recruit main #recruit_interview .inner .section_body ._box ._item ._youtube iframe {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#recruit main #recruit_interview .inner .section_body ._box ._item ._title h3 {
    position: relative;
    padding-left: 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}
#recruit main #recruit_interview .inner .section_body ._box ._item ._title h3::before {
    position: absolute;
    content: "■";
    left: 0;
}
#recruit main #recruit_img {
    padding: 0;
}
#recruit main #recruit_img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#recruit main #recruit_job {
    padding-top: 3.5rem;
}
#recruit main #recruit_job .inner .section_head {
    margin-bottom: 2rem;
}
#recruit main #recruit_job .inner .section_body ._box ._item {
    padding-bottom: 0.5rem;
    border-bottom: dotted 1px var(--color-accent);
    margin-bottom: 0.75rem;
}
#recruit main #recruit_job .inner .section_body ._box ._item:last-child {
    margin-bottom: 0;
    border: none;
}
#recruit main #recruit_job .inner .section_body ._box ._item ._head {
    font-weight: 600;
    margin-right: 1rem;
    margin-bottom: 0.25rem;
    display: inline-block;
    vertical-align: top;
}
#recruit main #recruit_job .inner .section_body ._box ._item ._body {
    display: inline-block;
}
/* shop
-------------------------------------------------------------------------------- */
#shop main #shop_serach .inner #serach_box {
    margin-bottom: 2.5rem;
    padding: 0.75rem;
    background-color: #efefef;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item {
    margin-bottom: 0.75rem;
    line-height: 2;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item:last-child {
    margin-bottom: 0;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item ._head h3 {
    font-size: 0.96rem;
    font-weight: 600;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item ._body {
    position: relative;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item ._body input[type=text] {
    font-size: 1rem;
    padding: 0.4rem 0.666rem;
    width: 100%;
    background-color: #ead8b7;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item ._body input[type=text]:-moz-placeholder {
    background-color: #fff;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item ._body input[type=text]:placeholder-shown {
    background-color: #fff;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item ._body select {
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 0.4rem 0.666rem;
    line-height: 1.7;
    background-color: transparent;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item ._body select:has(option:checked[value=""]) {
    color: gray;
    background-color: #fff;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item._select ._body {
    border-radius: 0.3rem;
    background-color: #ead8b7;
    overflow: hidden;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item._select ._body::before {
    position: absolute;
    content: "";
    top: 1rem;
    right: 1rem;
    width: 0.9rem;
    height: 0.8rem;
    background-color: var(--color-accent);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transition: 0.5s;
    pointer-events: none;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._reset {
    margin-bottom: 1rem;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._reset a {
    display: block;
    background-color: #fff;
    font-size: 1rem;
    padding: 0.2rem 0.666rem;
    text-align: center;
    width: 100%;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._other {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.6rem;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._other label {
    width: 48.5%;
    border: 1px solid var(--color-accent);
    border-radius: 0.15rem;
    text-align: center;
    font-size: 0.9rem;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._other label input {
    visibility: hidden;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._other label:has(input:checked) {
    background-color: #ead8b7;
    border-color: #cea967;
}
#shop main #shop_serach .inner #serach_box ._inner form#search_shops ._send button[type=submit] {
    display: block;
    color: #fff;
    background-color: var(--color-accent);
    font-size: 1rem;
    padding: 0.5rem 0.666rem;
    text-align: center;
    width: 100%;
}
#shop main #shop_serach .inner ._result ._howmany {
    border: 1px solid var(--color-accent);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 1rem;
    text-align: center;
    margin-bottom: 2rem;
}
#shop main #shop_serach .inner ._result ._zero p {
    text-align: center;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
#shop main #shop_serach .inner ._result #shop_list .shop {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-accent);
    margin-bottom: 2rem;
}
#shop main #shop_serach .inner ._result #shop_list .shop:last-child {
    padding-bottom: 0;
    border: none;
}
#shop main #shop_serach .inner ._result #shop_list .shop ._txt ._info {
    margin-bottom: 2rem;
}
#shop main #shop_serach .inner ._result #shop_list .shop ._txt ._info ._name {
    margin-bottom: 1rem;
}
#shop main #shop_serach .inner ._result #shop_list .shop ._txt ._info ._name h3 {
    font-size: 1.2rem;
    font-weight: 500;
}
#shop main #shop_serach .inner ._result #shop_list .shop ._txt ._info ._item {
    margin-bottom: 0.75rem;
}
#shop main #shop_serach .inner ._result #shop_list .shop ._txt ._info ._item ._head {
    font-weight: 500;
}
#shop main #shop_serach .inner ._result #shop_list .shop ._txt ._href {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
}
#shop main #shop_serach .inner ._result #shop_list .shop ._txt ._href .href {
    width: 31.5%;
}
#shop main #shop_serach .inner ._result #shop_list .shop ._txt ._href .href a {
    display: block;
    width: 100%;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.95rem;
    line-height: 1;
    font-family: noto-sans-cjk-jp, jp;
}
#shop main #shop_serach .inner ._result #shop_list .shop ._txt ._href .href:nth-child(1) {
    transition-delay: 0s;
}
#shop main #shop_serach .inner ._result #shop_list .shop ._txt ._href .href:nth-child(2) {
    transition-delay: 0.25s;
}
#shop main #shop_serach .inner ._result #shop_list .shop ._txt ._href .href:nth-child(3) {
    transition-delay: 0.5s;
}
#shop main #shop_serach .inner ._result #shop_list .shop ._map {
    aspect-ratio: 1.25;
    overflow: hidden;
    border: 1px solid rgba(35, 24, 21, 0.5);
}
#shop main #shop_serach .inner ._result #shop_list .shop ._map iframe {
    width: 100%;
    height: 100%;
}
#shop main #shop_serach .inner ._result ._page {
    margin: 1.5rem 0 3rem;
}
#shop main #shop_serach .inner ._result ._page nav .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
#shop main #shop_serach .inner ._result ._page nav .nav-links {
    font-family: eb-garamond, serif;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
}
#shop main #shop_serach .inner ._result ._page nav .nav-links .page-numbers {
    border: 1px solid rgba(35, 24, 21, 0.5);
    aspect-ratio: 1;
    width: 2rem;
    display: grid;
    place-content: center;
}
#shop main #shop_serach .inner ._result ._page nav .nav-links .page-numbers.current {
    background-color: var(--color-accent);
    color: #fff;
}
#shop main #shop_serach .inner ._result ._page nav .nav-links .page-numbers.dots {
    border: none;
    padding: 0;
    aspect-ratio: unset;
    width: auto;
}
#shop.search main #common_head ._img {
    /* aspect-ratio: 2.666; */
}
#shop.paged #common_head ._img {
    aspect-ratio: 3;
}
/* application
-------------------------------------------------------------------------------- */
#application main #app_lead {
    padding-bottom: 0;
}
#application main #app_lead .inner ._box ._title {
    margin-bottom: 1rem;
}
#application main #app_lead .inner ._box ._title h2 {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}
#application main #app_lead .inner ._box ._txt {
    font-size: 1.05rem;
    line-height: 2;
    margin-bottom: 0;
}
#application main #app_lead .inner ._box ._txt br {
    display: none;
}
#application main #app_service {
    padding: 3rem 0 0;
}
#application main #app_service .inner .section_head {
    margin-bottom: 2rem;
}
#application main #app_service .inner .section_head h2 span {
    font-size: 0.96rem;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 600;
}
#application main #app_service .inner .section_body ._box ._txt {
    margin-bottom: 2rem;
}
#application main #app_service .inner .section_body ._box ._txt ul {
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}
#application main #app_service .inner .section_body ._box ._img {
    display: flex;
    justify-content: space-between;
}
#application main #app_service .inner .section_body ._box ._img ._item {
    width: 32%;
    aspect-ratio: 1;
    border: 1px solid rgba(35, 24, 21, 0.25);
}
#application main #app_service .inner .section_body ._box ._img ._item img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#application main #app_platform {
    padding: 3rem 0 0;
}
#application main #app_platform .inner ._box ._head {
    margin-bottom: 1rem;
}
#application main #app_platform .inner ._box ._head h3 {
    font-size: 1.1rem;
    text-align: center;
    font-weight: 600;
}
#application main #app_platform .inner ._box ._body {
    display: flex;
    justify-content: space-between;
}
#application main #app_platform .inner ._box ._body ._item ._qr {
    display: none;
}
#application main #app_platform .inner ._box ._body ._item ._model {
    display: none;
}
#application main #app_platform .inner ._box ._body ._item ._img a {
    display: block;
    height: 100%;
}
#application main #app_platform .inner ._box ._body ._item ._img a img {
    height: 3.3rem;
}
#application main #app_qa .inner .section_head {
    margin-bottom: 2rem;
}
#application main #app_qa .inner .section_head h2 span {
    font-size: 1.1rem;
    font-family: noto-sans-cjk-jp, sans-serif;
    font-weight: 600;
}
#application main #app_qa .inner .section_body ._box ._qa {
    border: 1px solid var(--color-accent);
    border-radius: 0.333rem;
    padding: 0.25rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.96rem;
}
#application main #app_qa .inner .section_body ._box ._qa ._q {
    position: relative;
    padding: 0.5rem 2rem 0.5rem 0;
}
#application main #app_qa .inner .section_body ._box ._qa ._q::before {
    position: absolute;
    content: "";
    top: 1rem;
    right: 0.25rem;
    width: 1rem;
    height: 0.866rem;
    background-color: var(--color-accent);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transition: 0.5s;
}
#application main #app_qa .inner .section_body ._box ._qa ._a {
    display: none;
    border-top: 1px solid var(--color-accent);
    padding: 0.75rem 0;
}
#application main #app_qa .inner .section_body ._box ._qa.active ._q::before {
    clip-path: polygon(0 100%, 100% 100%, 50% 0);
}
#application main #app_qa .inner .section_body ._box ._qa.active ._a {
    display: block;
}
/* form
-------------------------------------------------------------------------------- */
#contact_form .inner ._reserve {
    margin-bottom: 3rem;
}
#contact_form .inner ._reserve p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}
#contact_form .inner ._reserve .href a {
    font-size: 0.9rem;
    padding: 0.25rem 2rem;
    font-family: noto-sans-cjk-jp, sans-serif;
}
#contact_form .inner ._txt {
    margin-bottom: 2.5rem;
    font-size: 0.96rem;
}
#contact_form .inner ._txt br {
    display: none;
}
#contact_form .inner ._form .form_item {
    margin-bottom: 2.5rem;
}
#contact_form .inner ._form .form_item ._group {
    margin-bottom: 2.5rem;
}
#contact_form .inner ._form .form_item ._group ._item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
    row-gap: 0.75rem;
    margin-bottom: 2rem;
}
#contact_form .inner ._form .form_item ._group ._item ._required {
    width: 3.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    line-height: 1;
    text-align: center;
    background-color: #dc3232;
    color: #fff;
}
#contact_form .inner ._form .form_item ._group ._item ._required._non {
    background-color: #aaa;
}
#contact_form .inner ._form .form_item ._group ._item ._head {
    text-align: left;
    font-weight: 500;
    flex: 1;
}
#contact_form .inner ._form .form_item ._group ._item ._body {
    width: 100%;
}
#contact_form .inner ._form .form_item ._group ._item ._body span input {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(35, 24, 21, 0.5);
    font-size: 1.05rem;
}
#contact_form .inner ._form .form_item ._group ._item ._body span textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(35, 24, 21, 0.5);
    font-size: 1.05rem;
    height: 12.5rem;
}
#contact_form .inner ._form .form_item ._group ._item ._body span .wpcf7-not-valid-tip {
    font-size: 0.9rem;
    font-weight: 600;
}
#contact_form .inner ._form .form_item ._handle {
    margin-bottom: 2.5rem;
}
#contact_form .inner ._form .form_item ._handle ._head {
    margin-bottom: 0.5rem;
}
#contact_form .inner ._form .form_item ._handle ._head h3 {
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}
#contact_form .inner ._form .form_item ._handle ._body {
    width: 100%;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(35, 24, 21, 0.5);
    font-size: 0.8rem;
    height: 10rem;
    overflow-y: scroll;
}
#contact_form .inner ._form .form_item ._handle ._body pre {
    white-space: pre-wrap;
    word-break: break-all;
}
#contact_form .inner ._form .form_item ._acceptance {
    display: flex;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    margin-bottom: 1.5rem;
}
#contact_form .inner ._form .form_item ._acceptance ._required {
    width: 3.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    line-height: 1;
    text-align: center;
    background-color: #dc3232;
    color: #fff;
}
#contact_form .inner ._form .form_item ._acceptance ._body {
    text-align: left;
}
#contact_form .inner ._form .form_item ._acceptance ._body .wpcf7-list-item {
    margin: 0;
}
#contact_form .inner ._form .form_item ._acceptance ._body label input[type=checkbox] {
    position: relative;
    aspect-ratio: 1;
    width: 1.2rem;
    height: 1.2rem;
    border: 1px solid var(--color-accent);
    margin-right: 0.5rem;
    vertical-align: text-bottom;
}
#contact_form .inner ._form .form_item ._acceptance ._body label input[type=checkbox]::before {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: "";
    background-image: url(../img/form_checkbox.svg);
    background-repeat: no-repeat;
    background-size: contain;
    clip-path: polygon(0 100%, 100% -50%, 100% -50%, 0 100%);
    transition: 0.5s;
}
#contact_form .inner ._form .form_item ._acceptance ._body label input[type=checkbox]:checked::before {
    clip-path: polygon(0 0, 100% -50%, 100% 100%, 0 150%);
}
#contact_form .inner ._form .form_item ._acceptance ._body label span {
    font-size: 0.96rem;
    font-weight: 500;
}
#contact_form .inner ._form .form_item ._acceptance ._body label span::before, #contact_form .inner ._form .form_item ._acceptance ._body label span::after {
    content: none;
}
#contact_form .inner ._form .form_item ._note {
    margin-bottom: 2.5rem;
}
#contact_form .inner ._form .form_item ._note ul {
    list-style-type: disc;
    margin: 0 0.5rem 2.5rem 1rem;
}
#contact_form .inner ._form .form_item ._note ul li {
    font-size: 0.8rem;
    margin-bottom: 0.5rem;
}
#contact_form .inner ._form .form_item ._send input[type=submit] {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0.5rem 3rem;
    border: 1px solid var(--color-accent);
    margin-inline: auto;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    color: var(--color-accent);
    transition: 0.5s;
}
#contact_form .inner ._form .form_item ._send input[type=submit]:disabled {
    opacity: 0.25;
}
#contact_form .inner ._form .form_item ._send .wpcf7-spinner {
    display: none;
}
#contact_form .inner ._form .wpcf7-response-output {
    background-color: #dc3232;
    border: none;
    color: #fff;
    font-weight: 500;
    text-align: center;
    padding: 1rem 1.5rem;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 0.5rem;
    margin-inline: auto;
}
/* contact
-------------------------------------------------------------------------------- */
/* privacy policy
-------------------------------------------------------------------------------- */
#privacy-policy #privacy_txt {
    font-size: 0.9rem;
}
#privacy-policy #privacy_txt .inner ._first {
    margin-bottom: 1.5rem;
}
#privacy-policy #privacy_txt .inner ._clause {
    margin-bottom: 2.5rem;
}
#privacy-policy #privacy_txt .inner ._clause>ol {
    list-style: upper-roman;
    padding-left: 1rem;
}
#privacy-policy #privacy_txt .inner ._clause>ol>li {
    margin-bottom: 0.75rem;
}
#privacy-policy #privacy_txt .inner ._clause>ol>li h3 {
    font-size: 0.9rem;
    font-weight: 500;
}
#privacy-policy #privacy_txt .inner ._clause>ol>ol {
    list-style: decimal;
    padding-left: 1rem;
    margin-bottom: 1rem;
}
#privacy-policy #privacy_txt .inner ._clause>ol>ol>li {
    margin-bottom: 0.25rem;
}
/* sitemap
-------------------------------------------------------------------------------- */
#sitemap #sitemap_tree .inner ._box ._category {
    margin-bottom: 2rem;
}
#sitemap #sitemap_tree .inner ._box ._category ._head {
    margin-bottom: 1rem;
}
#sitemap #sitemap_tree .inner ._box ._category ._head h3 {
    position: relative;
    font-size: 1rem;
    line-height: 1.4;
    padding: 0.75rem;
}
#sitemap #sitemap_tree .inner ._box ._category ._head h3::before, #sitemap #sitemap_tree .inner ._box ._category ._head h3::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 0;
    transition-duration: 1s;
    background-color: var(--color-accent);
}
#sitemap #sitemap_tree .inner ._box ._category ._head h3::before {
    top: 0;
}
#sitemap #sitemap_tree .inner ._box ._category ._head h3::after {
    bottom: 0;
}
#sitemap #sitemap_tree .inner ._box ._category ._head h3 a {
    display: block;
}
#sitemap #sitemap_tree .inner ._box ._category ._head h3.active::before, #sitemap #sitemap_tree .inner ._box ._category ._head h3.active::after {
    width: 100%;
}
#sitemap #sitemap_tree .inner ._box ._category ._head h3.active::before {
    top: 0;
    left: 0;
}
#sitemap #sitemap_tree .inner ._box ._category ._head h3.active::after {
    bottom: 0;
    right: 0;
}
#sitemap #sitemap_tree .inner ._box ._category ._body {
    margin-bottom: 1rem;
}
#sitemap #sitemap_tree .inner ._box ._category ._body ul {
    padding-left: 1.5rem;
}
#sitemap #sitemap_tree .inner ._box ._category ._body ul li {
    display: flex;
}
#sitemap #sitemap_tree .inner ._box ._category ._body ul li a {
    font-size: 0.9rem;
    flex: 1;
}
#sitemap #sitemap_tree .inner ._box ._category ._body ul li::before {
    content: "•";
    color: #aaa;
    margin-right: 0.5rem;
    font-size: 0.85rem;
}
@media (width > 600px) {
    /* reset
  -------------------------------------------------------------------------------- */
    /* loading
  -------------------------------------------------------------------------------- */
    #intro_logo {
        width: 33.3vw;
        height: 9vw;
    }
    /* common
  -------------------------------------------------------------------------------- */
    html {
        font-size: 2vw;
    }
    section {
        padding: 4rem 0;
    }
    .href a {
        font-size: 1rem;
        padding: 0 2rem;
    }
    /* header
  -------------------------------------------------------------------------------- */
    /* footer
  -------------------------------------------------------------------------------- */
    footer ._head ._logo {
        width: 10rem;
    }
    footer ._head ._sns ul li a {
        padding: 0.5rem;
    }
    footer ._brands {
        margin-bottom: 4rem;
    }
    footer ._brands ._logo {
        width: 12.5%;
    }
    footer ._brands ._logo:nth-child(8n+1) {
        transition-delay: 0.125s;
    }
    footer ._brands ._logo:nth-child(8n+2) {
        transition-delay: 0.25s;
    }
    footer ._brands ._logo:nth-child(8n+3) {
        transition-delay: 0.375s;
    }
    footer ._brands ._logo:nth-child(8n+4) {
        transition-delay: 0.5s;
    }
    footer ._brands ._logo:nth-child(8n+5) {
        transition-delay: 0.625s;
    }
    footer ._brands ._logo:nth-child(8n+6) {
        transition-delay: 0.75s;
    }
    footer ._brands ._logo:nth-child(8n+7) {
        transition-delay: 0.825s;
    }
    footer ._brands ._logo:nth-child(8n) {
        transition-delay: 1s;
    }
    footer ._nav {
        padding-bottom: 2.5rem;
    }
    footer ._other {
        margin-bottom: 2rem;
    }
    /* main
  -------------------------------------------------------------------------------- */
    #common_head ._img {
        height: calc(100vh - 20rem);
    }
    #enjoy_app .inner {
        align-items: flex-start;
        -moz-column-gap: 3%;
        column-gap: 3%;
    }
    #enjoy_app .inner ._icon {
        width: 12.5%;
    }
    #enjoy_app .inner ._icon img {
        border-radius: 1rem;
    }
    #enjoy_app .inner ._title {
        width: auto;
    }
    #enjoy_app .inner ._title h3 {
        font-size: 1.25rem;
        text-align: center;
    }
    #enjoy_app .inner ._txt {
        width: 50%;
        font-size: 0.85rem;
    }
    #enjoy_app .inner ._store {
        justify-content: center;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }
    #enjoy_app .inner ._store a {
        height: 4rem;
    }
    #common_foot {
        aspect-ratio: 1.5;
        clip-path: inset(0 100% 0 0);
        transition-timing-function: cubic-bezier(0.72, 0, 0.38, 1);
        transition-duration: 1s;
    }
    #common_foot.active {
        clip-path: inset(0);
    }
    /* home
  -------------------------------------------------------------------------------- */
    #home_top .inner h1 {
        font-size: 2rem;
    }
    #home_about .inner .section_head {
        margin-bottom: 2rem;
    }
    #home_about .inner .section_body ._txt .desc {
        font-size: 1rem;
    }
    #home_about .inner .section_body ._img {
        display: flex;
        justify-content: space-between;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
    }
    #home_about .inner .section_body ._img ._item {
        margin: 0;
        aspect-ratio: 1.25;
    }
    #home_about .inner .section_body ._img ._item:nth-child(2) {
        transition-delay: 0.125s;
    }
    #home_about .inner .section_body ._img ._item:nth-child(3) {
        transition-delay: 0.25s;
    }
    #home_img_01 {
        aspect-ratio: 2;
    }
    #home_brands .inner .section_body ._brands ._logo {
        width: 20%;
    }
    #home_brands .inner .section_body ._brands ._logo a {
        padding: 1rem;
    }
    #home_brands .inner .section_body ._brands ._logo:nth-child(5n+1) {
        transition-delay: 0s;
    }
    #home_brands .inner .section_body ._brands ._logo:nth-child(5n+2) {
        transition-delay: 0.125s;
    }
    #home_brands .inner .section_body ._brands ._logo:nth-child(5n+3) {
        transition-delay: 0.25s;
    }
    #home_brands .inner .section_body ._brands ._logo:nth-child(5n+4) {
        transition-delay: 0.375s;
    }
    #home_brands .inner .section_body ._brands ._logo:nth-child(5n) {
        transition-delay: 0.5s;
    }
    #home_img_02 {
        aspect-ratio: 2;
    }
    #home_news .inner .section_body ._box ._item a {
        display: flex;
        justify-content: space-between;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }
    #home_news .inner .section_body ._box ._item a ._img {
        width: 30%;
        margin-bottom: 0;
    }
    #home_news .inner .section_body ._box ._item a ._img._noimg {
        display: block;
    }
    #home_news .inner .section_body ._box ._item a ._txt {
        width: 66.6%;
    }
    #home_news .inner .section_body ._box ._item a ._txt ._title h3 {
        font-size: 1rem;
    }
    #home_news .inner .section_body ._box ._item a ._txt ._beginning {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    #home_recruit {
        aspect-ratio: 1.777;
        background-size: cover;
    }
    #home_recruit .inner {
        position: absolute;
        inset: 0;
        right: auto;
        width: 42.5%;
        background-color: rgba(0, 0, 0, 0.5);
        padding: 2rem 2rem 2rem 2.25rem;
        display: grid;
        place-content: center;
    }
    #home_recruit .inner .section_body ._title h3 {
        font-size: 1.1rem;
    }
    #home_recruit .inner .section_body ._txt {
        font-size: 0.9rem;
    }
    #home_recruit .inner .section_body ._txt br {
        display: none;
    }
    /* about
  -------------------------------------------------------------------------------- */
    #about main #about_lead .inner ._box ._txt {
        font-size: 0.9rem;
    }
    #about main .about_img {
        aspect-ratio: 2;
    }
    #about main #philosophy .inner .section_body ._head {
        margin-bottom: 3rem;
        text-align: center;
    }
    #about main #philosophy .inner .section_body ._head br {
        display: block;
    }
    #about main #philosophy .inner .section_body ._item {
        display: flex;
        justify-content: space-between;
        -moz-column-gap: 5%;
        column-gap: 2.5%;
    }
    #about main #philosophy .inner .section_body ._item ._img {
        width: 45%;
        margin-bottom: 0;
    }
    #about main #philosophy .inner .section_body ._item ._img h3 {
        font-size: 1.5rem;
    }
    #about main #philosophy .inner .section_body ._item ._txt {
        width: 50%;
    }
    #about main #philosophy .inner .section_body ._item ._txt ._en {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    #about main #philosophy .inner .section_body ._item ._txt ._title {
        margin-bottom: 0.5rem;
    }
    #about main #philosophy .inner .section_body ._item ._txt ._title_sub {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }
    #about main #philosophy .inner .section_body ._item ._txt ._title_sub br {
        display: block;
    }
    #about main #philosophy .inner .section_body ._item ._txt ._desc {
        font-size: 0.8rem;
        line-height: 1.6;
    }
    #about main #corporate_profile .inner .section_head {
        margin-bottom: 3rem;
    }
    #about main #corporate_profile .inner .section_body ._box ._item {
        display: flex;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
        font-size: 0.9rem;
    }
    #about main #corporate_profile .inner .section_body ._box ._item ._head {
        margin: 0;
        vertical-align: unset;
        width: 6rem;
    }
    #about main #corporate_profile .inner .section_body ._box ._item ._body {
        flex: 1;
    }
    #about main #corporate_profile .inner .section_body ._box:has(+ ._map) {
        margin-bottom: 3rem;
    }
    #about main #corporate_profile .inner .section_body ._map {
        aspect-ratio: 1.777;
    }
    #about main #group .inner .section_head {
        margin-bottom: 3rem;
    }
    #about main #group .inner .section_body ._company {
        margin-bottom: 4rem;
    }
    #about main #group .inner .section_body ._company ._name h3 {
        font-size: 1rem;
    }
    #about main #group .inner .section_body ._company ._box ._item {
        font-size: 0.9rem;
        display: flex;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }
    #about main #group .inner .section_body ._company ._box ._item ._head {
        margin: 0;
        vertical-align: unset;
        width: 6rem;
    }
    #about main #group .inner .section_body ._company ._box ._item ._body {
        flex: 1;
    }
    /* history
  -------------------------------------------------------------------------------- */
    #history main #common_head {
        clip-path: inset(0 100% 0 0);
        transition-timing-function: cubic-bezier(0.72, 0, 0.38, 1);
        transition-duration: 1s;
    }
    #history main #common_head.active {
        clip-path: inset(0);
    }
    #history main #history_item .inner .section_body ._box ._period {
        padding: 0.25rem 0.5rem 0.25rem 2rem;
    }
    #history main #history_item .inner .section_body ._box ._period ._head::before {
        top: 1.5rem;
        right: 1rem;
        width: 0.8rem;
        height: 0.6rem;
    }
    #history main #history_item .inner .section_body ._box ._period ._body {
        padding-top: 0.5rem;
    }
    #history main #history_item .inner .section_body ._box ._period ._body ._item {
        display: flex;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }
    #history main #history_item .inner .section_body ._box ._period ._body ._item ._date {
        font-size: 0.9rem;
        width: 8rem;
    }
    #history main #history_item .inner .section_body ._box ._period ._body ._item ._txt {
        font-size: 0.9rem;
        flex: 1;
    }
    #decorative_plate ._item ._body {
        width: 33.3rem;
        margin-inline: auto;
    }
    #company_background ._item ._body {
        width: 33.3rem;
        margin-inline: auto;
    }
    /* brands
  -------------------------------------------------------------------------------- */
    #brands main #brands_body .inner .section_body ._box::after {
        display: block;
        width: 30%;
        content: "";
    }
    #brands main #brands_body .inner .section_body ._box ._item {
        width: 30%;
    }
    #brands main #brands_body .inner .section_body ._box ._item:nth-child(3n+1) {
        transition-delay: 0s;
    }
    #brands main #brands_body .inner .section_body ._box ._item:nth-child(3n+2) {
        transition-delay: 0.125s;
    }
    #brands main #brands_body .inner .section_body ._box ._item:nth-child(3n) {
        transition-delay: 0.25s;
    }
    #brands main #brands_body .inner .section_body ._box ._item ._txt ._txt {
        font-size: 0.9rem;
    }
    #brands.single main #shop_head .inner ._logo {
        width: 38.2vw;
    }
    #brands.single main #shop_head .inner .section_body ._desc {
        margin: 0 1rem;
    }
    #brands.single main #shop_head .inner .section_body ._desc p {
        text-align: center;
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    #brands.single main #shop_head .inner .section_body ._desc p br {
        display: block;
    }
    #brands.single main #gallery .inner .section_body {
        -moz-column-gap: 3.5%;
        column-gap: 3.5%;
        row-gap: 1.5rem;
    }
    #brands.single main #gallery .inner .section_body ._photo {
        width: 48.25%;
    }
    #brands.single main #shop_list .inner .section_body .shop ._map {
        aspect-ratio: 1.777;
    }
    /* news
  -------------------------------------------------------------------------------- */
    #news main #news_box .inner #news_list ._item {
        display: flex;
        justify-content: space-between;
        -moz-column-gap: 3.4%;
        column-gap: 3.4%;
    }
    #news main #news_box .inner #news_list ._item ._img {
        width: 30%;
        margin: 0;
    }
    #news main #news_box .inner #news_list ._item ._img._noimg {
        display: block;
    }
    #news main #news_box .inner #news_list ._item ._txt {
        width: 66.6%;
    }
    #news main #news_box .inner #news_list ._item ._txt ._head {
        margin-bottom: 0.5rem;
    }
    #news main #news_box .inner #news_list ._item ._txt ._title h3 {
        font-size: 1rem;
    }
    #news main #news_box .inner #news_list ._item ._txt ._beginning {
        font-size: 0.85rem;
    }
    #news main #news_box .inner #news_list ._page {
        margin: 2rem 0 4rem;
    }
    #news.single main #common_head .inner ._txt {
        padding-bottom: 2rem;
    }
    .news_category ul li {
        width: 32.5%;
    }
    /* recruit
  -------------------------------------------------------------------------------- */
    #recruit main #common_head ._img {
        aspect-ratio: 0.75;
    }
    #recruit main #recruit_lead .inner ._box ._txt {
        font-size: 0.9rem;
        text-align: center;
    }
    #recruit main #recruit_lead .inner ._box ._txt br {
        display: block;
    }
    #recruit main #recruit_lead .inner ._entry {
        display: flex;
        justify-content: space-between;
        -moz-column-gap: 1.5rem;
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    #recruit main #recruit_lead .inner ._entry ._item {
        margin-bottom: 0;
        width: calc((100% - 1.5rem) / 2);
    }
    #recruit main #recruit_lead .inner ._entry ._item a ._txt ._en h3 {
        font-size: 1rem;
    }
    #recruit main #recruit_lead .inner ._entry ._item a ._txt ._jp {
        font-size: 0.75rem;
    }
    #recruit main #recruit_fields .inner .section_head h2 {
        padding: 1.25rem 0;
    }
    #recruit main #recruit_fields .inner .section_body ._item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
    }
    #recruit main #recruit_fields .inner .section_body ._item ._txt {
        padding-bottom: 1rem;
    }
    #recruit main #recruiter .inner .section_head {
        margin-bottom: 3rem;
    }
    #recruit main #recruiter .inner .section_body {
        display: flex;
        justify-content: space-between;
        -moz-column-gap: 5%;
        column-gap: 5%;
    }
    #recruit main #recruiter .inner .section_body ._recruiter {
        display: block;
        margin: 0;
        width: 30%;
    }
    #recruit main #recruiter .inner .section_body ._recruiter ._photo {
        width: 100%;
        margin-bottom: 1rem;
    }
    #recruit main #recruiter .inner .section_body ._recruiter ._txt {
        width: 100%;
    }
    #recruit main #recruiter .inner .section_body ._recruiter ._txt ._title {
        font-size: 0.9rem;
    }
    #recruit main #recruiter .inner .section_body ._recruiter ._txt ._message {
        font-size: 0.75rem;
    }
    #recruit main #recruiter .inner .section_body ._box {
        width: 65%;
    }
    #recruit main #recruiter .inner .section_body ._box ._qa ._q.active {
        font-size: 0.9rem;
    }
    #recruit main #recruiter .inner .section_body ._box ._qa ._a {
        font-size: 0.9rem;
    }
    #recruit main #recruit_interview .inner .section_body ._box {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    #recruit main #recruit_interview .inner .section_body ._box ._item {
        width: 48%;
    }
    #recruit main #recruit_interview .inner .section_body ._box ._item ._title h3 {
        font-size: 0.9rem;
    }
    #recruit main #recruit_img {
        aspect-ratio: 2;
        overflow: hidden;
    }
    #recruit main #recruit_job .inner .section_body ._box ._item {
        display: flex;
        justify-content: space-between;
        font-size: 0.9rem;
    }
    #recruit main #recruit_job .inner .section_body ._box ._item ._head {
        margin: 0;
        width: 7rem;
    }
    #recruit main #recruit_job .inner .section_body ._box ._item ._body {
        flex: 1;
    }
    /* shop
  -------------------------------------------------------------------------------- */
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._other::after {
        display: block;
        width: 32.5%;
        content: "";
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._other label {
        width: 32.5%;
    }
    #shop main #shop_serach .inner ._result #shop_list .shop ._map {
        aspect-ratio: 1.777;
    }
    /* application
  -------------------------------------------------------------------------------- */
    /* form
  -------------------------------------------------------------------------------- */
    #contact_form .inner ._reserve p {
        text-align: center;
    }
    #contact_form .inner ._txt {
        text-align: center;
    }
    #contact_form .inner ._txt br {
        display: block;
    }
    #contact_form .inner ._form .form_item ._handle ._body {
        height: 15rem;
    }
    /* contact
  -------------------------------------------------------------------------------- */
    /* privacy policy
  -------------------------------------------------------------------------------- */
    /* sitemap
  -------------------------------------------------------------------------------- */
}
@media (width > 1024px) {
    /* reset
  -------------------------------------------------------------------------------- */
    input[type=radio], input[type=checkbox], button, select {
        cursor: pointer;
    }
    /* loading
  -------------------------------------------------------------------------------- */
    #intro_logo {
        width: 15vw;
        height: 4vw;
    }
    /* common
  -------------------------------------------------------------------------------- */
    html {
        font-size: 1rem;
    }
    .inner {
        max-width: 1080px;
    }
    .display_pc {
        display: block;
    }
    .display_sp {
        display: none;
    }
    section {
        padding: 5rem 0;
    }
    .section_head {
        margin-bottom: 3rem;
    }
    .section_head h2 {
        padding: 1rem 0;
    }
    .section_head h2 span:nth-child(1) {
        font-size: 2.5rem;
    }
    .section_head h2 span:nth-child(2) {
        font-size: 1.1rem;
    }
    .href a {
        padding: 0 2.5rem;
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, var(--color-accent) 50%, var(--color-accent) 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.5s;
    }
    .href a:hover {
        background-position: 0;
        color: #fff;
    }
    .href a._invert {
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50.1%, #fff 50.1%, #fff 100%);
    }
    .href a._invert:hover {
        color: var(--color-accent);
    }
    .href a._white {
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%);
    }
    .href a._white:hover {
        color: var(--color-accent);
    }
    /* header
  -------------------------------------------------------------------------------- */
    header {
        display: flex;
        justify-content: space-between;
    }
    header ._logo a {
        background-image: linear-gradient(-90deg, #fff 0%, #fff 50.1%, var(--color-accent) 50.1%, var(--color-accent) 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.5s;
    }
    header ._logo a img {
        transition: 0.5s;
    }
    header ._logo a:hover {
        background-position: 0;
    }
    header ._logo a:hover img {
        filter: invert(1);
    }
    header nav {
        display: block;
        position: static;
        height: auto;
        padding: 0;
        background-color: transparent;
        clip-path: unset;
    }
    header nav>ul {
        display: flex;
        height: 100%;
        overflow-y: unset;
    }
    header nav>ul>li {
        border: none;
    }
    header nav>ul>li a {
        padding: 0 1.75rem;
        text-align: center;
        height: 100%;
        display: grid;
        place-content: center;
        background-image: linear-gradient(-90deg, #fff 0%, #fff 50.1%, var(--color-accent) 50.1%, var(--color-accent) 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.5s;
    }
    header nav>ul>li a:hover {
        background-position: 0%;
    }
    header nav>ul>li a:hover span {
        color: #fff;
    }
    header nav>ul>li a span {
        transition: 1s;
        line-height: 1.4;
    }
    header nav>ul>li a span:nth-child(1) {
        font-size: 1.3rem;
    }
    header nav>ul>li a span:nth-child(2) {
        font-size: 0.7rem;
    }
    header nav>ul>li a::before, header nav>ul>li a::after {
        content: none;
    }
    header nav>ul>li+ul {
        display: block;
        visibility: hidden;
        position: absolute;
        top: 100%;
        border-bottom-right-radius: 0.333rem;
        border-bottom-left-radius: 0.333rem;
        overflow: hidden;
    }
    header nav>ul>li+ul li {
        border-top: none;
        background-color: #fff;
        margin-top: 1px;
        clip-path: inset(0 0 100% 0);
        transition-duration: 0.5s;
    }
    header nav>ul>li+ul li a {
        padding: 0.75rem 2.5rem 0.75rem 1.5rem;
        background-image: linear-gradient(-90deg, #fff 0%, #fff 50%, var(--color-accent) 50%, var(--color-accent) 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.75s;
    }
    header nav>ul>li+ul li a span {
        transition: 0.5s;
    }
    header nav>ul>li+ul li a span:nth-child(1) {
        font-size: 1.35rem;
    }
    header nav>ul>li+ul li a span:nth-child(2) {
        font-size: 0.75rem;
    }
    header nav>ul>li+ul li a::before, header nav>ul>li+ul li a::after {
        content: none;
    }
    header nav>ul>li+ul li a:hover {
        background-position: 0;
    }
    header nav>ul>li+ul li a:hover span {
        color: #fff;
    }
    header nav>ul>li+ul li:hover {
        clip-path: inset(0);
    }
    header nav>ul>li+ul li:nth-child(1) {
        transition-delay: 0s;
    }
    header nav>ul>li+ul li:nth-child(2) {
        transition-delay: 0.125s;
    }
    header nav>ul>li+ul li:nth-child(3) {
        transition-delay: 0.25s;
    }
    header nav>ul>li+ul li:nth-child(4) {
        transition-delay: 0.375s;
    }
    header nav>ul>li+ul li:nth-child(5) {
        transition-delay: 0.5s;
    }
    header nav>ul>li+ul:has(li:hover) {
        visibility: visible;
    }
    header nav>ul>li+ul:has(li:hover) li {
        clip-path: inset(0);
    }
    header nav>ul>li:has(+ ul) a {
        cursor: default;
    }
    header nav>ul>li:has(+ ul):hover+ul {
        visibility: visible;
    }
    header nav>ul>li:has(+ ul):hover+ul li {
        clip-path: inset(0);
    }
    header nav>ul>li:has(+ ul li:hover) a {
        background-position: 0;
    }
    header nav>ul>li:has(+ ul li:hover) a span {
        color: #fff;
    }
    header nav>ul>li:nth-last-child(2) {
        border-bottom: none;
        margin-bottom: 0;
    }
    header nav>ul>li:nth-last-child(2) a {
        padding: 0 3rem 0 2rem;
    }
    header nav>ul>li:last-child {
        position: static;
        height: auto;
        margin-left: -1px;
    }
    header nav>ul>li:last-child a {
        padding: 0 4rem;
        background-image: linear-gradient(-90deg, var(--color-accent) 0%, var(--color-accent) 50%, #e7001c 50%, #cc4a46 100%);
    }
    header nav>ul>li:last-child a:hover {
        background-position: 0;
    }
    header ._index {
        display: none;
    }
    header.active nav {
        clip-path: unset;
    }
    /* footer
  -------------------------------------------------------------------------------- */
    footer {
        padding: 4rem 0 3rem;
    }
    footer ._head {
        margin-bottom: 3rem;
    }
    footer ._head ._logo a {
        position: relative;
    }
    footer ._head ._logo a::before {
        position: absolute;
        content: "";
        inset: 0;
        clip-path: inset(0 100% 0 0);
        background-color: rgba(35, 24, 21, 0.77);
        transition: 0.5s;
    }
    footer ._head ._logo a:hover::before {
        clip-path: inset(0);
    }
    footer ._head ._sns ul li a {
        position: relative;
    }
    footer ._head ._sns ul li a::before {
        position: absolute;
        content: "";
        inset: 0;
        clip-path: inset(0 100% 0 0);
        background-color: rgba(35, 24, 21, 0.77);
        transition: 0.5s;
    }
    footer ._head ._sns ul li a:hover::before {
        clip-path: inset(0);
    }
    footer ._brands {
        margin-bottom: 5rem;
    }
    footer ._brands ._logo {
        width: 10%;
    }
    footer ._brands ._logo a {
        position: relative;
        padding: 0.25rem 1rem;
    }
    footer ._brands ._logo a::before {
        position: absolute;
        content: "";
        inset: 0;
        clip-path: inset(0 100% 0 0);
        background-color: rgba(35, 24, 21, 0.77);
        transition: 0.5s;
    }
    footer ._brands ._logo a:hover::before {
        clip-path: inset(0);
    }
    footer ._brands ._logo:nth-child(10n+1) {
        transition-delay: 0s;
    }
    footer ._brands ._logo:nth-child(10n+2) {
        transition-delay: 0.125s;
    }
    footer ._brands ._logo:nth-child(10n+3) {
        transition-delay: 0.25s;
    }
    footer ._brands ._logo:nth-child(10n+4) {
        transition-delay: 0.375s;
    }
    footer ._brands ._logo:nth-child(10n+5) {
        transition-delay: 0.5s;
    }
    footer ._brands ._logo:nth-child(10n+6) {
        transition-delay: 0.625s;
    }
    footer ._brands ._logo:nth-child(10n+7) {
        transition-delay: 0.75s;
    }
    footer ._brands ._logo:nth-child(10n+8) {
        transition-delay: 0.875s;
    }
    footer ._brands ._logo:nth-child(10n+9) {
        transition-delay: 1s;
    }
    footer ._brands ._logo:nth-child(10n) {
        transition-delay: 1.125s;
    }
    footer ._nav {
        row-gap: unset;
        padding-bottom: 1.5rem;
        margin-bottom: 1.5rem;
    }
    footer ._nav ._item {
        width: 22%;
    }
    footer ._nav ._item ._head h4 a {
        background-image: linear-gradient(-90deg, #fff 0%, #fff 50%, #666 50%, #666 100%);
        -webkit-background-clip: text;
        background-size: 200%;
        background-position: 100%;
        -webkit-text-fill-color: transparent;
        transition: 0.5s;
    }
    footer ._nav ._item ._head h4 a:hover {
        background-position: 0;
    }
    footer ._nav ._item ._body ul li a {
        background-image: linear-gradient(-90deg, #fff 0%, #fff 50%, #666 50%, #666 100%);
        -webkit-background-clip: text;
        background-size: 200%;
        background-position: 100%;
        -webkit-text-fill-color: transparent;
        transition: 1s;
    }
    footer ._nav ._item ._body ul li a:hover {
        background-position: 0;
    }
    footer ._nav ._item ._body ul li a:hover::before {
        width: 0;
    }
    footer ._nav ._item ._body ul li a::before {
        transition: 0.5s;
    }
    footer ._other {
        margin-bottom: 1.5rem;
    }
    footer ._other ul {
        display: flex;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
    }
    footer ._other ul li a {
        font-size: 0.666rem;
        line-height: 1.25;
        background-image: linear-gradient(-90deg, #fff 0%, #fff 50%, #666 50%, #666 100%);
        -webkit-background-clip: text;
        background-size: 200%;
        background-position: 100%;
        -webkit-text-fill-color: transparent;
        transition: 0.5s;
    }
    footer ._other ul li a:hover {
        background-position: 0;
    }
    footer ._other ul li:nth-child(n+2) {
        padding-left: 2rem;
        border-left: 1px solid rgba(255, 255, 255, 0.5);
    }
    #copyright {
        font-size: 0.6rem;
    }
    #page_top a {
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, #fff 50%, #fff 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.5s;
    }
    #page_top a:hover {
        background-position: 0;
        color: var(--color-accent);
    }
    /* main
  -------------------------------------------------------------------------------- */
    #common_head {
        height: calc(100vh - 5rem);
        clip-path: inset(0 100% 0 0);
    }
    #common_head ._img {
        height: 100%;
        aspect-ratio: unset;
    }
    #common_head ._img img:has(+ .display_sp) {
        display: block;
    }
    #common_head .inner {
        max-width: 100%;
        padding: 0 0 5rem;
    }
    #common_head .inner ._txt h1 span:nth-child(1) {
        font-size: 4.5vw;
    }
    #common_head .inner ._txt h1 span:nth-child(2) {
        font-size: 1.5vw;
        transition-delay: 1.5s;
    }
    #enjoy_app .inner {
        display: block;
        position: relative;
        align-items: unset;
        padding: 0 15.5rem 0 10.5rem;
    }
    #enjoy_app .inner ._icon {
        position: absolute;
        top: 0;
        left: 0;
        width: 8rem;
    }
    #enjoy_app .inner ._title {
        margin-bottom: 0.5rem;
    }
    #enjoy_app .inner ._title h3 {
        text-align: left;
    }
    #enjoy_app .inner ._title h3 br {
        display: none;
    }
    #enjoy_app .inner ._txt {
        width: 100%;
        margin-bottom: 1.25rem;
    }
    #enjoy_app .inner ._store {
        position: absolute;
        top: 0;
        right: 0;
        display: block;
        width: 12.5rem;
        margin-bottom: 0;
    }
    #enjoy_app .inner ._store a {
        height: auto;
        margin-bottom: 0.75rem;
        position: relative;
    }
    #enjoy_app .inner ._store a::before {
        position: absolute;
        content: "";
        inset: 0;
        clip-path: inset(0 100% 0 0);
        background-color: rgba(234, 216, 183, 0.5);
        transition: 0.5s;
    }
    #enjoy_app .inner ._store a:hover::before {
        clip-path: inset(0);
    }
    #enjoy_app .inner ._store a:last-child {
        margin-bottom: 0;
    }
    #enjoy_app .inner .href a {
        margin-left: 0;
    }
    #common_foot {
        aspect-ratio: 2.5;
    }
    #common_foot img:has(+ .display_sp) {
        display: block;
    }
    /* home
  -------------------------------------------------------------------------------- */
    #home_top .inner h1 {
        font-size: 2.5vw;
        font-weight: 700;
    }
    #home_about .inner .section_head h2 span:nth-child(1) {
        font-size: 2.5rem;
    }
    #home_about .inner .section_body ._txt ._title h3 {
        font-size: 1.5rem;
    }
    #home_about .inner .section_body ._txt .desc {
        text-align: center;
    }
    #home_about .inner .section_body ._txt .desc br {
        display: block;
    }
    #home_about .inner .section_body ._img {
        margin: 0 17.5%;
        -moz-column-gap: 4%;
        column-gap: 4%;
    }
    #home_about .inner .section_body ._img ._item {
        aspect-ratio: 1;
    }
    #home_about .inner .section_body ._img ._item a {
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, rgba(35, 24, 21, 0.618) 50%, rgba(35, 24, 21, 0.618) 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.5s;
    }
    #home_about .inner .section_body ._img ._item a:hover {
        background-position: 0;
    }
    #home_about .inner .section_body ._img ._item a h3 {
        line-height: 1.5;
    }
    #home_about .inner .section_body ._img ._item a h3 span:nth-child(1) {
        font-size: 1.5rem;
    }
    #home_about .inner .section_body ._img ._item a h3 span:nth-child(2) {
        font-size: 0.75rem;
    }
    #home_img_01 {
        aspect-ratio: 3.33;
    }
    #home_brands .inner .section_head h2 span:nth-child(1) {
        font-size: 2.5rem;
    }
    #home_brands .inner .section_body ._brands {
        margin-bottom: 2.5rem;
    }
    #home_brands .inner .section_body ._brands ._logo {
        width: 16.66%;
    }
    #home_brands .inner .section_body ._brands ._logo a {
        padding: 0.75rem 2em;
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50.1%, rgba(35, 24, 21, 0.05) 50.1%, rgba(35, 24, 21, 0.05) 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.5s;
    }
    #home_brands .inner .section_body ._brands ._logo a:hover {
        background-position: 0;
    }
    #home_brands .inner .section_body ._brands ._logo:nth-child(6n+1) {
        transition-delay: 0s;
    }
    #home_brands .inner .section_body ._brands ._logo:nth-child(6n+2) {
        transition-delay: 0.125s;
    }
    #home_brands .inner .section_body ._brands ._logo:nth-child(6n+3) {
        transition-delay: 0.25s;
    }
    #home_brands .inner .section_body ._brands ._logo:nth-child(6n+4) {
        transition-delay: 0.375s;
    }
    #home_brands .inner .section_body ._brands ._logo:nth-child(6n+5) {
        transition-delay: 0.5s;
    }
    #home_brands .inner .section_body ._brands ._logo:nth-child(6n) {
        transition-delay: 0.625s;
    }
    #home_brands .inner .section_body .href a:nth-child(2) {
        transition-delay: 0.25s;
    }
    #home_img_02 {
        aspect-ratio: 3.33;
    }
    #home_news .inner .section_head h2 span:nth-child(1) {
        font-size: 2.5rem;
    }
    #home_news .inner .section_body ._box ._item a {
        padding: 2rem 0 1.75rem;
    }
    #home_news .inner .section_body ._box ._item a ._img {
        aspect-ratio: 1.333;
        width: 25%;
    }
    #home_news .inner .section_body ._box ._item a ._img img {
        transition: 0.5s;
    }
    #home_news .inner .section_body ._box ._item a:hover ._img img {
        transform: scale(1.2);
    }
    #home_news .inner .section_body ._box ._item a ._txt {
        width: 72%;
    }
    #home_news .inner .section_body ._box ._item a ._txt ._head {
        margin-bottom: 1rem;
    }
    #home_news .inner .section_body ._box ._item a ._txt ._head ._day {
        font-size: 0.9rem;
    }
    #home_news .inner .section_body ._box ._item a ._txt ._head ._type span {
        font-size: 0.9rem;
    }
    #home_news .inner .section_body ._box ._item a ._txt ._title {
        margin-bottom: 1rem;
    }
    #home_news .inner .section_body ._box ._item a ._txt ._title h3 {
        font-size: 1.25rem;
    }
    #home_news .inner .section_body ._box ._item a ._txt ._beginning {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        -webkit-line-clamp: 3;
    }
    #home_news .inner .section_body ._box ._item a ._txt ._category span {
        font-size: 0.7rem;
        padding: 0.3rem 2rem;
        margin-right: 0.5rem;
    }
    #home_recruit {
        aspect-ratio: 2;
        background-position: top;
    }
    #home_recruit .inner {
        width: 38.2%;
        padding: 2rem 2rem 2rem calc(540px - 25rem);
    }
    #home_recruit .inner .section_head h2 span:nth-child(1) {
        font-size: 2.5rem;
    }
    #home_recruit .inner .section_body ._title {
        margin-bottom: 1.5rem;
    }
    #home_recruit .inner .section_body ._title h3 {
        font-size: 1.35rem;
    }
    #home_recruit .inner .section_body ._txt {
        margin-bottom: 3rem;
    }
    #home_recruit .inner .section_body ._txt br {
        display: block;
    }
    /* about
  -------------------------------------------------------------------------------- */
    #about main #about_lead {
        padding-bottom: 6rem;
    }
    #about main #about_lead .inner ._box ._title {
        margin-bottom: 1.25rem;
    }
    #about main #about_lead .inner ._box ._title h2 {
        font-size: 1.5rem;
    }
    #about main #about_lead .inner ._box ._txt {
        text-align: center;
        font-size: 1rem;
        line-height: 2.25;
    }
    #about main #about_lead .inner ._box ._txt br {
        display: block;
    }
    #about main .about_img {
        aspect-ratio: 2.625;
    }
    #about main #philosophy {
        padding-bottom: 6rem;
    }
    #about main #philosophy .inner .section_head {
        margin-bottom: 3.5rem;
    }
    #about main #philosophy .inner .section_body ._head {
        font-size: 1.4rem;
        margin-bottom: 5rem;
    }
    #about main #philosophy .inner .section_body ._item {
        margin-bottom: 3.5rem;
    }
    #about main #philosophy .inner .section_body ._item ._img {
        width: 45%;
    }
    #about main #philosophy .inner .section_body ._item ._img h3 {
        font-size: 2.25rem;
    }
    #about main #philosophy .inner .section_body ._item ._txt {
        width: 50%;
    }
    #about main #philosophy .inner .section_body ._item ._txt ._en {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    #about main #philosophy .inner .section_body ._item ._txt ._title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        text-indent: -1rem;
    }
    #about main #philosophy .inner .section_body ._item ._txt ._title_sub {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    #about main #philosophy .inner .section_body ._item ._txt ._desc {
        font-size: 0.9rem;
    }
    #about main #corporate_profile .inner .section_body ._box ._item {
        font-size: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: dotted 3px rgba(35, 24, 21, 0.4);
        margin-bottom: 1rem;
    }
    #about main #corporate_profile .inner .section_body ._box ._item ._head {
        width: 7rem;
    }
    #about main #corporate_profile .inner .section_body ._map {
        aspect-ratio: 2.35;
    }
    #about main #group {
        padding-bottom: 6rem;
    }
    #about main #group .inner .section_body ._company {
        margin-bottom: 4rem;
    }
    #about main #group .inner .section_body ._company ._name {
        padding-bottom: 1.25rem;
        border-bottom: dotted 3px rgba(35, 24, 21, 0.4);
    }
    #about main #group .inner .section_body ._company ._name h3 {
        font-size: 1.3rem;
    }
    #about main #group .inner .section_body ._company ._box ._item {
        font-size: 1rem;
        padding-bottom: 0.75rem;
        border-bottom: dotted 3px rgba(35, 24, 21, 0.4);
        margin-bottom: 1rem;
    }
    #about main #group .inner .section_body ._company ._box ._item ._head {
        width: 7rem;
    }
    /* history
  -------------------------------------------------------------------------------- */
    #history main #history_item .inner .section_head {
        margin-bottom: 4rem;
    }
    #history main #history_item .inner .section_body ._box ._period ._head h3 span._ad {
        font-size: 2rem;
    }
    #history main #history_item .inner .section_body ._box ._period ._head h3 span._era {
        font-size: 1.2rem;
    }
    #history main #history_item .inner .section_body ._box ._period ._head::before {
        top: 2.2rem;
        right: 1.5rem;
        width: 1.2rem;
        height: 0.8rem;
    }
    #history main #history_item .inner .section_body ._box ._period ._head:hover::before {
        top: 3rem;
    }
    #history main #history_item .inner .section_body ._box ._period ._body ._item {
        border-bottom: 3px dotted rgba(35, 24, 21, 0.2);
        padding: 1rem 0;
    }
    #history main #history_item .inner .section_body ._box ._period ._body ._item ._date {
        font-size: 1.1rem;
        width: 10rem;
    }
    #history main #history_item .inner .section_body ._box ._period ._body ._item ._txt {
        font-size: 1.1rem;
    }
    #history main #history_item .inner .section_body ._box ._period ._body ._item ._txt br {
        display: block;
    }
    #history main #history_item .inner .section_body ._box ._period.active ._head {
        cursor: pointer;
        padding: 0.75rem 0;
    }
    #decorative_plate .section_head {
        margin-bottom: 3rem;
    }
    #decorative_plate ._item ._body {
        width: 38.2rem;
    }
    #decorative_plate ._item ._body ._txt {
        font-size: 1rem;
    }
    #decorative_plate ._item ._body ._img a {
        position: relative;
    }
    #decorative_plate ._item ._body ._img a::before {
        position: absolute;
        content: "";
        inset: 0;
        clip-path: inset(0 100% 0 0);
        background-color: rgba(255, 255, 255, 0.77);
        transition: 0.5s;
    }
    #decorative_plate ._item ._body ._img a:hover::before {
        clip-path: inset(0);
    }
    #company_background ._item ._body {
        width: 38.2rem;
    }
    #company_background ._item ._body ._txt {
        font-size: 1rem;
    }
    #company_background ._item ._body ._img a {
        position: relative;
    }
    #company_background ._item ._body ._img a::before {
        position: absolute;
        content: "";
        inset: 0;
        clip-path: inset(0 100% 0 0);
        background-color: rgba(255, 255, 255, 0.77);
        transition: 0.5s;
    }
    #company_background ._item ._body ._img a:hover::before {
        clip-path: inset(0);
    }
    /* brands
  -------------------------------------------------------------------------------- */
    #brands main #brands_body .inner .section_body ._box {
        row-gap: 2.5rem;
        margin-bottom: 5rem;
    }
    #brands main #brands_body .inner .section_body ._box::before, #brands main #brands_body .inner .section_body ._box::after {
        display: block;
        width: 21.5%;
        content: "";
    }
    #brands main #brands_body .inner .section_body ._box::before {
        order: 1;
    }
    #brands main #brands_body .inner .section_body ._box ._item {
        width: 21.5%;
    }
    #brands main #brands_body .inner .section_body ._box ._item:first-child ._logo a {
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, rgb(255, 255, 255) 50%, rgb(255, 255, 255) 100%);
    }
    #brands main #brands_body .inner .section_body ._box ._item ._logo {
        margin-bottom: 0.75rem;
    }
    #brands main #brands_body .inner .section_body ._box ._item ._logo a {
        padding: 2.25rem;
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, rgba(35, 24, 21, 0.1) 50%, rgba(35, 24, 21, 0.025) 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.5s;
    }
    #brands main #brands_body .inner .section_body ._box ._item ._logo a:hover {
        background-position: 0;
    }
    #brands main #brands_body .inner .section_body ._box ._item ._logo a:hover img {
        filter: drop-shadow(5px 5px 0px #999);
    }
    #brands main #brands_body .inner .section_body ._box ._item ._logo a img {
        transition: 0.5s;
    }
    #brands main #brands_body .inner .section_body ._box ._item ._txt ._name h3 {
        font-size: 1.125rem;
    }
    #brands main #brands_body .inner .section_body ._box ._item:nth-child(4n+1) {
        transition-delay: 0s;
    }
    #brands main #brands_body .inner .section_body ._box ._item:nth-child(4n+2) {
        transition-delay: 0.125s;
    }
    #brands main #brands_body .inner .section_body ._box ._item:nth-child(4n+3) {
        transition-delay: 0.25s;
    }
    #brands main #brands_body .inner .section_body ._box ._item:nth-child(4n) {
        transition-delay: 0.375s;
    }
    #brands.single main #common_head {
        height: calc(100vh - 18rem);
    }
    #brands.single main #common_head:not(:has(._img)) {
        display: none;
    }
    #brands.single main #shop_head {
        padding: 2rem 0 1rem;
    }
    #brands.single main #shop_head .inner ._logo {
        width: 15rem;
    }
    #brands.single main #shop_head .inner ._name {
        margin-bottom: 2rem;
    }
    #brands.single main #shop_head .inner ._menu ul li a {
        font-size: 1.25rem;
        padding: 1rem 3rem;
        background-image: linear-gradient(-90deg, #000 0%, #000 50%, #999 50%, #999 100%);
        -webkit-background-clip: text;
        background-size: 200%;
        background-position: 100%;
        -webkit-text-fill-color: transparent;
        transition: 1s;
    }
    #brands.single main #shop_head .inner ._menu ul li a:hover {
        background-position: 0;
    }
    #brands.single main #shop_head .inner .section_body ._title {
        margin-bottom: 2rem;
    }
    #brands.single main #shop_head .inner .section_body ._title h2 {
        font-size: 1.5rem;
    }
    #brands.single main #shop_head .inner .section_body ._desc {
        margin: 0 auto;
        width: 75%;
    }
    #brands.single main #shop_head .inner .section_body ._desc p {
        font-size: 1.1rem;
        margin-bottom: 1.25rem;
    }
    #brands.single main #gallery .inner .section_body {
        position: relative;
        -moz-column-gap: unset;
        column-gap: unset;
        row-gap: 1.25rem;
    }
    #brands.single main #gallery .inner .section_body::before, #brands.single main #gallery .inner .section_body::after {
        display: block;
        content: "";
        width: 23.5%;
    }
    #brands.single main #gallery .inner .section_body::before {
        order: 1;
    }
    #brands.single main #gallery .inner .section_body ._photo {
        width: 23.5%;
    }
    #brands.single main #gallery .inner .section_body ._photo a {
        position: relative;
    }
    #brands.single main #gallery .inner .section_body ._photo a::before {
        position: absolute;
        content: "";
        inset: 0;
        clip-path: inset(0 100% 0 0);
        background-color: rgba(35, 24, 21, 0.5);
        transition: 0.5s;
    }
    #brands.single main #gallery .inner .section_body ._photo a:hover::before {
        clip-path: inset(0);
    }
    #brands.single main #shop_list .inner .section_body .shop {
        display: flex;
        justify-content: space-between;
    }
    #brands.single main #shop_list .inner .section_body .shop ._txt {
        width: 60%;
    }
    #brands.single main #shop_list .inner .section_body .shop ._txt ._info ._name h3 {
        font-size: 1.1rem;
    }
    #brands.single main #shop_list .inner .section_body .shop ._txt ._info ._item {
        font-size: 0.9rem;
        display: flex;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
        margin-bottom: 0.2rem;
    }
    #brands.single main #shop_list .inner .section_body .shop ._txt ._info ._item ._head {
        width: 4.5rem;
    }
    #brands.single main #shop_list .inner .section_body .shop ._txt ._info ._item ._body {
        flex: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }
    #brands.single main #shop_list .inner .section_body .shop ._txt ._info ._item ._body br {
        display: none;
    }
    #brands.single main #shop_list .inner .section_body .shop ._txt ._href {
        margin-bottom: 0;
    }
    #brands.single main #shop_list .inner .section_body .shop ._txt ._href .href a {
        padding: 0.4rem;
    }
    #brands.single main #shop_list .inner .section_body .shop ._map {
        width: 35%;
    }
    /* news
  -------------------------------------------------------------------------------- */
    #news main #news_box .inner #news_list ._item ._img {
        width: 25%;
    }
    #news main #news_box .inner #news_list ._item ._img img {
        transition: 0.5s;
    }
    #news main #news_box .inner #news_list ._item ._txt {
        width: 71.5%;
    }
    #news main #news_box .inner #news_list ._item ._txt ._head ._day {
        font-size: 1rem;
        padding-right: 1rem;
    }
    #news main #news_box .inner #news_list ._item ._txt ._head ._type {
        padding-left: 1rem;
    }
    #news main #news_box .inner #news_list ._item ._txt ._head ._type span {
        font-size: 1rem;
    }
    #news main #news_box .inner #news_list ._item ._txt ._title h3 {
        font-size: 1.1rem;
    }
    #news main #news_box .inner #news_list ._item ._txt ._beginning {
        margin-bottom: 2rem;
    }
    #news main #news_box .inner #news_list ._item ._txt ._category a {
        font-size: 0.8rem;
        padding: 0.25rem 1.25rem;
        width: 9rem;
        text-align: center;
        margin-right: 0.5rem;
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, var(--color-accent) 50%, var(--color-accent) 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.5s;
    }
    #news main #news_box .inner #news_list ._item ._txt ._category a:hover {
        background-position: 0;
        color: #fff;
    }
    #news main #news_box .inner #news_list ._item ._txt ._category a._news {
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, #000 50%, #000 100%);
    }
    #news main #news_box .inner #news_list ._item ._txt ._category a._news:hover {
        color: #fff;
        border: 1px solid #000;
    }
    #news main #news_box .inner #news_list ._item ._txt ._category a._press {
        /* background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, #37a800 50%, #37a800 100%); */
    }
    #news main #news_box .inner #news_list ._item ._txt ._category a._press:hover {
        color: #fff;
        border: 1px solid #000;
    }
    #news main #news_box .inner #news_list ._item:has(a:hover) ._img img {
        transform: scale(1.1);
    }
    #news main #news_box .inner #news_list ._item:has(._category a:hover) ._img img {
        transform: unset;
    }
    #news main #news_box .inner #news_list ._page nav .nav-links a {
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, var(--color-accent) 50%, var(--color-accent) 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.25s;
    }
    #news main #news_box .inner #news_list ._page nav .nav-links a:hover {
        background-position: 0;
        color: #fff;
    }
    #news.paged #common_head {
        height: calc(40vh - 2rem);
    }
    #news.paged #common_head ._img {
        aspect-ratio: unset;
    }
    #news.single main #common_head {
        height: auto;
    }
    #news.single main #news_box .inner #news_post ._head {
        width: 72%;
        margin-inline: auto;
    }
    #news.single main #news_box .inner #news_post ._eye {
        width: 72%;
        margin-inline: auto;
    }
    #news.single main #news_box .inner #news_post ._body {
        width: 72%;
        margin-inline: auto;
    }
    #news.single main #news_box .inner #news_post ._href {
        width: 72%;
        margin: 0 auto 5rem;
    }
    .news_category {
        margin-bottom: 4rem;
    }
    .news_category ul {
        justify-content: unset;
        -moz-column-gap: 1%;
        column-gap: 1%;
    }
    .news_category ul li {
        width: 15.833%;
    }
    .news_category ul li a {
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, rgba(35, 24, 21, 0.5) 50%, rgba(35, 24, 21, 0.5) 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.5s;
    }
    .news_category ul li a:hover {
        background-position: 0;
        color: #fff;
    }
    .news_category ul li._news a {
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, rgb(244, 178, 1) 50%, rgb(244, 178, 1) 100%);
    }
    .news_category ul li._news a:hover {
        border-color: #f4b201;
    }
    .news_category ul li._press a {
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, rgb(231, 0, 26) 50%, rgb(231, 0, 26) 100%);
    }
    .news_category ul li._press a:hover {
        border-color: #e7001a;
    }
    /* recruit
  -------------------------------------------------------------------------------- */
    #recruit main #common_head ._img {
        aspect-ratio: unset;
    }
    #recruit main #common_head .inner {
        padding: 0 0 5vw;
        display: block;
        place-content: unset;
        top: auto;
        background-image: linear-gradient(0deg, rgba(35, 24, 21, 0.77), transparent);
    }
    #recruit main #recruit_lead {
        padding: 5rem 0 3rem;
    }
    #recruit main #recruit_lead .inner ._box {
        margin-bottom: 2.5rem;
    }
    #recruit main #recruit_lead .inner ._box ._title {
        margin-bottom: 1.25rem;
    }
    #recruit main #recruit_lead .inner ._box ._title h2 {
        font-size: 1.5rem;
    }
    #recruit main #recruit_lead .inner ._box ._txt {
        font-size: 1rem;
        line-height: 2.25;
    }
    #recruit main #recruit_lead .inner ._entry {
        -moz-column-gap: 3rem;
        column-gap: 3rem;
    }
    #recruit main #recruit_lead .inner ._entry ._item {
        width: calc((100% - 3rem) / 2);
    }
    #recruit main #recruit_lead .inner ._entry ._item a ._txt ._en {
        margin-bottom: 1.5rem;
    }
    #recruit main #recruit_lead .inner ._entry ._item a ._txt ._en h3 {
        font-size: 1.8rem;
        padding-bottom: 1.5rem;
        line-height: 1.1;
    }
    #recruit main #recruit_lead .inner ._entry ._item a ._txt ._jp {
        font-size: 1rem;
    }
    #recruit main #recruit_lead .inner ._entry ._item a:hover ._txt {
        left: 0;
        transition-delay: 0s;
    }
    #recruit main #recruit_fields {
        padding-bottom: 3rem;
    }
    #recruit main #recruit_fields .inner .section_head {
        margin-bottom: 3rem;
    }
    #recruit main #recruit_fields .inner .section_head h2 span {
        font-size: 1.35rem;
    }
    #recruit main #recruit_fields .inner .section_body {
        display: flex;
        justify-content: space-between;
    }
    #recruit main #recruit_fields .inner .section_body ._item {
        display: block;
        width: 30%;
        margin-bottom: 0;
    }
    #recruit main #recruit_fields .inner .section_body ._item ._txt {
        padding-bottom: 0;
    }
    #recruit main #recruit_fields .inner .section_body ._item ._txt ._title {
        margin-bottom: 0.5rem;
    }
    #recruit main #recruit_fields .inner .section_body ._item ._txt ._title h3 {
        font-size: 1.2rem;
    }
    #recruit main #recruit_fields .inner .section_body ._item ._txt ._txt {
        font-size: 0.9rem;
    }
    #recruit main #recruiter {
        padding-bottom: 4rem;
    }
    #recruit main #recruiter .inner .section_body ._recruiter {
        width: 32.5%;
    }
    #recruit main #recruiter .inner .section_body ._recruiter ._txt ._title {
        font-size: 1.2rem;
    }
    #recruit main #recruiter .inner .section_body ._recruiter ._txt ._message {
        font-size: 0.9rem;
    }
    #recruit main #recruiter .inner .section_body ._box {
        width: 62.5%;
    }
    #recruit main #recruiter .inner .section_body ._box ._qa {
        margin-bottom: 2.5rem;
    }
    #recruit main #recruiter .inner .section_body ._box ._qa ._q.active {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    #recruit main #recruiter .inner .section_body ._box ._qa ._q.active::before {
        top: 1rem;
    }
    #recruit main #recruit_interview {
        background-color: #efefef;
        padding: 4.5rem 0 5rem;
    }
    #recruit main #recruit_interview .inner .section_head {
        margin-bottom: 4rem;
    }
    #recruit main #recruit_interview .inner .section_body ._box ._item {
        width: 47.5%;
    }
    #recruit main #recruit_img {
        aspect-ratio: 2.5;
    }
    #recruit main #recruit_job {
        padding-top: 6rem;
    }
    #recruit main #recruit_job .inner .section_body ._box ._item {
        font-size: 1.1rem;
        border-bottom: dotted 3px rgba(35, 24, 21, 0.33);
        padding-bottom: 1rem;
        margin-bottom: 1.25rem;
    }
    #recruit main #recruit_job .inner .section_body ._box ._item ._head {
        width: 12rem;
    }
    /* shop
  -------------------------------------------------------------------------------- */
    #shop main #shop_serach .inner {
        display: flex;
        justify-content: space-between;
    }
    #shop main #shop_serach .inner #serach_box {
        width: 32.5%;
        padding: 0.75rem 1rem;
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item {
        margin-bottom: 1.5rem;
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item ._head {
        margin-bottom: 0.5rem;
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item ._head h3 {
        font-size: 1.15rem;
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item ._body input[type=text] {
        padding: 0.75rem 0.75rem;
        border-radius: 0.3rem;
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item._select ._body select {
        padding: 0.75rem 0.75rem;
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._item._select ._body::before {
        top: 1.25rem;
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._reset a {
        padding: 0.2rem;
        border-radius: 0.3rem;
        transition: 0.333s;
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._reset a:hover {
        background-color: var(--color-accent);
        color: #fff;
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._other {
        display: block;
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._other label {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
        padding: 0.2rem;
        border-radius: 0.3rem;
        cursor: pointer;
        transition: 0.25s;
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._other label span.checkbox {
        font-size: 1rem;
    }
    #shop main #shop_serach .inner #serach_box ._inner form#search_shops ._other label:hover {
        background-color: #ead8b7;
        border-color: #cea967;
    }
    #shop main #shop_serach .inner ._result {
        width: 64.5%;
    }
    #shop main #shop_serach .inner ._result ._howmany {
        border: none;
        background-color: #efefef;
        text-align: left;
        font-size: 1.05rem;
        padding: 0.75rem 1.5rem;
    }
    #shop main #shop_serach .inner ._result #shop_list .shop {
        display: flex;
        justify-content: space-between;
        -moz-column-gap: 1.5rem;
        column-gap: 1.5rem;
    }
    #shop main #shop_serach .inner ._result #shop_list .shop ._txt {
        flex: 1;
    }
    #shop main #shop_serach .inner ._result #shop_list .shop ._txt ._info ._name h3 {
        font-size: 1.1rem;
    }
    #shop main #shop_serach .inner ._result #shop_list .shop ._txt ._info ._item {
        font-size: 0.9rem;
        display: flex;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
        margin-bottom: 0.2rem;
    }
    #shop main #shop_serach .inner ._result #shop_list .shop ._txt ._info ._item ._head {
        width: 4.5rem;
    }
    #shop main #shop_serach .inner ._result #shop_list .shop ._txt ._info ._item ._body {
        flex: 1;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        overflow: hidden;
    }
    #shop main #shop_serach .inner ._result #shop_list .shop ._txt ._info ._item ._body br {
        display: none;
    }
    #shop main #shop_serach .inner ._result #shop_list .shop ._txt ._href {
        margin-bottom: 0;
    }
    #shop main #shop_serach .inner ._result #shop_list .shop ._txt ._href .href a {
        padding: 0.4rem;
    }
    #shop main #shop_serach .inner ._result #shop_list .shop ._map {
        display: none;
        width: 35%;
    }
    #shop main #shop_serach .inner ._result ._page nav .nav-links a {
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, var(--color-accent) 50%, var(--color-accent) 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.25s;
    }
    #shop main #shop_serach .inner ._result ._page nav .nav-links a:hover {
        background-position: 0;
        color: #fff;
    }
    #shop.search main #common_head ._img {
        aspect-ratio: unset;
    }
    /* application
  -------------------------------------------------------------------------------- */
    #application main #app_lead .inner ._box ._title {
        margin-bottom: 1.5rem;
    }
    #application main #app_lead .inner ._box ._title h2 {
        font-size: 1.6rem;
    }
    #application main #app_lead .inner ._box ._title h2 br {
        display: none;
    }
    #application main #app_lead .inner ._box ._txt {
        font-size: 1.125rem;
        text-align: center;
    }
    #application main #app_lead .inner ._box ._txt br {
        display: block;
    }
    #application main #app_service .inner .section_head h2 {
        padding: 1.5rem 0;
    }
    #application main #app_service .inner .section_head h2 span {
        font-size: 1.125rem;
    }
    #application main #app_service .inner .section_body {
        padding-bottom: 4rem;
        border-bottom: 1px solid var(--color-accent);
    }
    #application main #app_service .inner .section_body ._box {
        display: flex;
        justify-content: space-between;
    }
    #application main #app_service .inner .section_body ._box ._txt {
        width: 53.5%;
        margin-bottom: 0;
    }
    #application main #app_service .inner .section_body ._box ._txt ul {
        margin-bottom: 0.5rem;
    }
    #application main #app_service .inner .section_body ._box ._txt ul li {
        font-size: 0.9rem;
    }
    #application main #app_service .inner .section_body ._box ._txt p {
        font-size: 0.9rem;
    }
    #application main #app_service .inner .section_body ._box ._img {
        width: 43.5%;
    }
    #application main #app_service .inner .section_body ._box ._img ._item {
        width: 32%;
    }
    #application main #app_platform {
        padding: 5rem 0 1rem;
    }
    #application main #app_platform .inner ._box ._head h3 {
        font-size: 1.6rem;
    }
    #application main #app_platform .inner ._box ._body {
        justify-content: center;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
    }
    #application main #app_platform .inner ._box ._body ._item {
        width: 15rem;
    }
    #application main #app_platform .inner ._box ._body ._item ._qr {
        display: block;
    }
    #application main #app_platform .inner ._box ._body ._item ._model {
        display: block;
        text-align: center;
        font-weight: bold;
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    #application main #app_platform .inner ._box ._body ._item ._img a img {
        height: 4rem;
        margin-inline: auto;
    }
    #application main #app_qa .inner .section_head {
        margin-bottom: 3rem;
    }
    #application main #app_qa .inner .section_head h2 {
        padding: 1.5rem 0;
    }
    #application main #app_qa .inner .section_head h2 span {
        font-size: 1.125rem;
    }
    #application main #app_qa .inner .section_body ._box ._qa {
        font-size: 1rem;
        padding: 0.25rem 1.5rem;
    }
    #application main #app_qa .inner .section_body ._box ._qa ._q {
        cursor: pointer;
    }
    #application main #app_qa .inner .section_body ._box ._qa ._q:hover::before {
        top: 1.5rem;
    }
    #application main #app_qa .inner .section_body ._box ._qa ._a {
        padding: 1.25rem 0 1rem;
    }
    /* form
  -------------------------------------------------------------------------------- */
    #contact_form .inner ._form {
        width: 75%;
        margin-inline: auto;
    }
    #contact_form .inner ._form .form_item ._group {
        margin-bottom: 3.5rem;
    }
    #contact_form .inner ._form .form_item ._group ._item {
        display: flex;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
        row-gap: 1rem;
        align-items: center;
    }
    #contact_form .inner ._form .form_item ._group ._item ._required {
        width: 3.75rem;
    }
    #contact_form .inner ._form .form_item ._group ._item ._body {
        width: 66%;
        /* flex: 1; */
    }
    #contact_form .inner ._form .form_item ._handle {
        margin-bottom: 3rem;
    }
    #contact_form .inner ._form .form_item ._handle ._head {
        margin-bottom: 1rem;
    }
    #contact_form .inner ._form .form_item ._handle ._head h3 {
        font-size: 1.1rem;
    }
    #contact_form .inner ._form .form_item ._handle ._body {
        padding: 1rem;
        font-size: 0.9rem;
    }
    #contact_form .inner ._form .form_item ._acceptance ._body label {
        cursor: pointer;
    }
    #contact_form .inner ._form .form_item ._note ul li {
        font-size: 0.9rem;
    }
    #contact_form .inner ._form .form_item ._send input[type=submit] {
        cursor: pointer;
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, var(--color-accent) 50%, var(--color-accent) 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.5s;
    }
    #contact_form .inner ._form .form_item ._send input[type=submit]:hover {
        background-position: 0;
        color: #fff;
    }
    #contact_form .inner ._form .form_item ._send input[type=submit]:disabled {
        background-image: none;
    }
    #contact_form .inner ._form .form_item ._send input[type=submit]:disabled:hover {
        background-image: none;
        color: inherit;
        cursor: not-allowed;
    }
    /* contact
  -------------------------------------------------------------------------------- */
    /* privacy policy
  -------------------------------------------------------------------------------- */
    #privacy-policy #privacy_txt .inner {
        width: 52.5%;
    }
    /* sitemap
  -------------------------------------------------------------------------------- */
    #sitemap #sitemap_tree .inner {
        width: 52.5%;
    }
    #sitemap #sitemap_tree .inner ._box ._category ._head h3 a {
        transition: 0.5s;
    }
    #sitemap #sitemap_tree .inner ._box ._category ._head h3 a:hover {
        opacity: 0.25;
    }
    #sitemap #sitemap_tree .inner ._box ._category ._body ul li a {
        transition: 0.5s;
    }
    #sitemap #sitemap_tree .inner ._box ._category ._body ul li a:hover {
        opacity: 0.25;
    }
}
/* thanks
-------------------------------------------------------------------------------- */
/*# sourceMappingURL=style.css.map */
