/* reset
-------------------------------------------------------------------------------- */
*, *::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;
}
p, h1, h2, h3, h4, h5, h6, li {
    font-weight: 400;
    overflow-wrap: anywhere;
}
th, td {
    font-weight: 400;
}
ul, ol {
    list-style: none;
}
img, svg, video {
    display: block;
    max-width: 100%;
}
input, button, textarea, select {
    font-family: inherit;
    color: inherit;
    max-width: 100%;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
a {
    text-decoration: none;
}
/* common
-------------------------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 16vw;
    font-size: 3.25vw;
}
body {
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
    color: #000;
}
a {
    color: #000;
    transition: 0.5s;
}
a:hover {}
.display_pc {
    display: none;
}
.display_sp {
    display: block;
}
section {
    padding: 5vw 0;
}
.inner {
    width: 92%;
    margin-inline: auto;
}
input, button, textarea, select {
    border: 1px solid #ccc;
    border-radius: 0;
}
.href a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    font-weight: 400;
    font-size: 1.1rem;
    padding: 0.6rem 2.25rem;
    line-height: 1;
    border: 1px solid #707070;
    margin-inline: auto;
}
.head {
    margin-bottom: 2.5rem;
}
.head ._title {
    padding: 1.8rem 0 4.6rem;
}
.head ._title h1 {
    color: #707070;
    font-weight: 600;
    text-align: center;
    font-size: 2.05rem;
    line-height: 1;
}
.head ._img {
    height: 38.2rem;
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    transition: 1s;
}
.head ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.head ._img.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.show_down {
    clip-path: polygon(0 0, 100% 0, 100% 0%, 0 0%);
    transition: 1s;
}
.show_down.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.show_up {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: 1s;
}
.show_up.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.show_right {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: 1s;
}
.show_right.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.fade_up {
    opacity: 0;
    transform: translateY(5rem);
    transition: 1s;
}
.fade_up.active {
    opacity: 1;
    transform: translateY(0);
}
.fade_left {
    opacity: 0;
    transform: translateX(5rem);
    transition: 1s;
}
.fade_left.active {
    opacity: 1;
    transform: translateX(0);
}
._paged .head ._title {
    padding: 1.8rem 0 0;
}
._paged .head ._img {
    display: none;
}
/* header
-------------------------------------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 16vw;
    transition: 0.5s;
    background-color: #fff;
    z-index: 2;
}
header ._logo {
    position: relative;
    width: 32vw;
    height: 16vw;
    margin-inline: auto;
    transition: 0.5s;
    z-index: 2;
}
header ._logo a {
    display: block;
    padding: 1vw;
    height: 100%;
}
header ._logo a img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}
header ._index {
    position: absolute;
    top: 0;
    right: 0;
    width: 17.5vw;
    height: 16vw;
    cursor: pointer;
    z-index: 2;
}
header ._index span {
    display: block;
    position: absolute;
    left: 5vw;
    right: 5vw;
    width: 7.5vw;
    height: 0.75vw;
    border-radius: 1vw;
    background-color: #000;
    transition: 0.5s;
}
header ._index span:nth-child(1) {
    top: 5.1vw;
}
header ._index span:nth-child(2) {
    top: 7.3vw;
    transition: 0.25s;
}
header ._index span:nth-child(3) {
    top: 9.6vw;
}
header ._nav {
    display: none;
    position: fixed;
    display: flex;
    inset: 0;
    margin: auto;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: clip-path 0.5s;
}
header ._nav nav {
    margin-bottom: 2rem;
}
header ._nav nav ul li a {
    display: block;
    font-size: 1.5rem;
    padding: 1rem 0.75rem;
    text-align: center;
    line-height: 1;
}
header ._nav ._sns ul {
    display: flex;
}
header ._nav ._sns ul li a {
    display: block;
    padding: 0.25rem;
}
header ._nav ._sns ul li a img {
    width: 2.5rem;
}
header.active ._index span:nth-child(1) {
    transform: rotate(30deg);
    top: 7.3vw;
}
header.active ._index span:nth-child(2) {
    left: 8.75vw;
    right: 8.75vw;
    transform: rotate(180deg);
    opacity: 0;
    width: 0;
}
header.active ._index span:nth-child(3) {
    top: 7.4vw;
    transform: rotate(-30deg);
}
header.active ._nav {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
header._visible ._logo {
    /* transform: scale(0.618); */
}
/* header
-------------------------------------------------------------------------------- */
footer .inner ._jump {
    margin-bottom: 5.5rem;
}
footer .inner ._jump ._href {
    margin-bottom: 2rem;
}
footer .inner ._jump ._href ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer .inner ._jump ._href ul li {
    width: 50%;
}
footer .inner ._jump ._href ul li a {
    display: block;
    font-size: 1.25rem;
    color: #707070;
    padding-bottom: 0.5rem;
}
footer .inner ._corp {
    margin-bottom: 5rem;
}
footer .inner ._corp ._logo {
    margin-bottom: 2.25rem;
}
footer .inner ._corp ._logo a img {
    width: 72%;
    margin-inline: auto;
}
footer .inner ._corp ._info {
    margin-bottom: 2.5rem;
}
footer .inner ._corp ._info dl {
    color: #707070;
    font-size: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
footer .inner ._corp ._info dl dt, footer .inner ._corp ._info dl dd {
    margin-bottom: 0.5rem;
}
footer .inner ._corp ._info dl dt {
    width: 20%;
}
footer .inner ._corp ._info dl dd {
    width: 80%;
}
footer .inner ._corp ._sns ul {
    display: flex;
    justify-content: center;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}
footer .inner ._corp ._sns ul li a img {
    width: 3.25rem;
}
footer #copyright {
    text-align: center;
    color: #707070;
    padding: 0.8rem;
    border-top: 1px solid #707070;
}
#peace_ring_of_guam ._img {
    margin-bottom: 1rem;
}
#peace_ring_of_guam ._img a {
    display: block;
    border: 1px solid #91d2eb;
    width: 72%;
    margin: auto;
}
#peace_ring_of_guam ._img a img {
    width: 100%;
}
#peace_ring_of_guam ._txt {
    text-align: center;
}
#peace_ring_of_guam ._txt a {
    font-size: 1.1rem;
    color: #707070;
}
#page_top {
    display: none;
    position: fixed;
    bottom: -0.7rem;
    right: 4%;
    transform: rotate(90deg);
    transform-origin: top right;
}
#page_top a {
    position: relative;
    display: block;
    background-color: #707070;
    color: #fff;
    font-size: 0.666rem;
    padding: 0.25rem 0.5rem;
    letter-spacing: 0.1rem;
}
/* main
-------------------------------------------------------------------------------- */
main {
    margin-top: 16vw;
    overflow-x: hidden;
}
/* home
-------------------------------------------------------------------------------- */
#home main {
    margin-top: 0;
}
#home header {
    visibility: hidden;
    opacity: 0;
}
#home header._visible {
    visibility: visible;
    opacity: 1;
}
#home header ._logo {
    /* transform: scale(0.618); */
}
#home_top {
    padding-top: 4vw;
}
#home_top .swiper {
    height: calc((100svh - 4vw) * 0.75);
    transition-delay: 1.25s;
}
#home_top .swiper .swiper-wrapper .swiper-slide ._inner {
    height: 100%;
    background-size: cover;
    background-position: center;
}
#home_top .swiper .swiper-wrapper .swiper-slide ._inner img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
}
#home_top ._logo {
    height: calc((100svh - 4vw) * 0.25);
    display: grid;
    place-content: center;
}
#home_top ._logo a {
    display: block;
    width: 16rem;
}
#home_top ._logo a img {
    width: 100%;
}
#home_item ._item {
    margin-bottom: 6rem;
}
#home_item ._item ._img {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 4vw;
    column-gap: 4vw;
    margin-bottom: 3.5rem;
}
#home_item ._item ._img ._none {
    display: none;
}
#home_item ._item ._img>div {
    height: 20.75rem;
}
#home_item ._item ._img>div a {
    position: relative;
    display: block;
    height: 100%;
}
#home_item ._item ._img>div a::before {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    content: "";
    background-color: #e90f0f;
    width: 2.5rem;
    height: 2.5rem;
    clip-path: polygon(0 0, 100% 0%, 100% 100%);
}
#home_item ._item ._img>div img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#home_item ._item ._img ._img_01 {
    width: 100%;
}
#home_item ._item ._img ._img_01:only-child,
#home_item ._item ._img ._img_02:only-child {
    margin-top: 0;
}
#home_item ._item ._img ._img_02 {
    margin-top: 1.25rem;
    width: 100%;
}
#home_item ._item._hrzn ._img {
    display: block;
}
#home_item ._item._hrzn ._img>div {
    aspect-ratio: 1.5;
    width: 84%;
    height: auto;
    overflow: hidden;
}
#home_item ._item._hrzn ._img ._img_01 {}
#home_item ._item._hrzn ._img ._img_02 {
    margin-left: 16%;
}
#home_item ._item ._txt {
    color: #707070;
}
#home_item ._item ._txt ._title {
    margin-bottom: 1.35rem;
}
#home_item ._item ._txt ._title h2 {
    font-weight: 600;
    font-size: 2.05rem;
}
#home_item ._item ._txt ._title_sub {
    margin-bottom: 2rem;
}
#home_item ._item ._txt ._title_sub h3 {
    font-size: 1.6rem;
}
#home_item ._item ._txt ._title_sub h3 br {
    display: none;
}
#home_item ._item ._txt ._desc {
    font-family: "Noto Serif JP", serif;
    font-weight: 300;
}
#home_item ._item ._txt ._desc p {
    margin-bottom: 1rem;
}
#home_item ._item ._txt ._desc p br {
    /*display: none;*/
}
#home_item ._item:nth-child(2n) ._img_01 {
    margin-top: 2rem;
}
#home_item ._item:nth-child(2n) ._img_02 {
    /*margin-top: 0;*/
}
#home_item ._item:last-child {
    margin-bottom: 0;
}
#home_item .inner ._item._hrzn:nth-child(2n+3) ._img ._img_01:only-child{
    width: 100%;
    margin: 0 auto;
    aspect-ratio: 1.1;
    max-width: 50rem;
}
#home_shop {
    position: relative;
    padding: 0;
    margin: 3rem 0;
    height: 35.5rem;
    background-color: #000;
}
#home_shop ._inner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6rem;
    margin: auto;
    text-align: center;
}
#home_shop ._inner ._title {
    margin-bottom: 2rem;
}
#home_shop ._inner ._title h2 {
    color: #fff;
    font-size: 2.05rem;
    font-weight: 600;
}
#home_shop ._inner ._href a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    border: 1px solid #fff;
    line-height: 1;
    padding: 1rem 3.5rem 1rem 4rem;
}
#home_shop ._inner ._href a span {
    color: #fff;
    font-size: 1.25rem;
    margin-right: 1.5rem;
    line-height: 1;
    letter-spacing: 0.1rem;
}
#home_shop ._inner ._href a img {
    display: inline-block;
    height: 1.35rem;
    width: 1.35rem;
    vertical-align: text-top;
}
#home_shop img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: 0.75;
}
#home_news {
    padding: 0 0 20rem;
}
#home_news .inner ._head {
    padding: 2rem 0 3rem;
}
#home_news .inner ._head h2 {
    font-weight: 600;
    font-size: 2.05rem;
    color: #707070;
    text-align: center;
}
#home_news .inner ._body ._item {
    margin-bottom: 3.5rem;
}
#home_news .inner ._body ._item a {
    display: block;
}
#home_news .inner ._body ._item a ._img {
    aspect-ratio: 1.777;
    margin-bottom: 1.25rem;
}
#home_news .inner ._body ._item a ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#home_news .inner ._body ._item a ._img.no_img {
    border: 1px solid #707070;
    display: grid;
    place-content: center;
    background-color: #fff;
}
#home_news .inner ._body ._item a ._img.no_img img {
    width: 72%;
    margin-inline: auto;
}
#home_news .inner ._body ._item a ._txt ._day {
    font-size: 1.1rem;
    color: #707070;
    margin-bottom: 0.5rem;
}
#home_news .inner ._body ._item a ._txt ._title {
    margin-bottom: 0.5rem;
}
#home_news .inner ._body ._item a ._txt ._title h3 {
    font-size: 1.5rem;
    color: #707070;
    font-weight: 600;
}
#home_news .inner ._body ._item a ._txt ._beginning {
    font-size: 1.1rem;
    color: #707070;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
/* shop
-------------------------------------------------------------------------------- */
#shop #shop_head.head ._img a {
    display: block;
    height: 100%;
}
#shop #shop_item {
    padding-bottom: 5rem;
}
#shop #shop_item .inner ._item {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #707070;
    margin-bottom: 3rem;
}
#shop #shop_item .inner ._item ._img {
    aspect-ratio: 1.5;
    margin-bottom: 2rem;
}
#shop #shop_item .inner ._item ._img.no_img {
    background-color: #f2f2f2;
    display: grid;
    place-content: center;
}
#shop #shop_item .inner ._item ._img.no_img img {
    width: 50%;
    margin-inline: auto;
}
#shop #shop_item .inner ._item ._img .swiper {
    height: 100%;
}
#shop #shop_item .inner ._item ._img .swiper .swiper-wrapper .swiper-slide {
    height: auto;
}
#shop #shop_item .inner ._item ._img .swiper .swiper-wrapper .swiper-slide ._inner {
    height: 100%;
}
#shop #shop_item .inner ._item ._img .swiper .swiper-wrapper .swiper-slide ._inner img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#shop #shop_item .inner ._item ._txt ._head {
    display: flex;
    justify-content: space-between;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}
#shop #shop_item .inner ._item ._txt ._head ._name {
    width: 40rem;
    margin-bottom: 1.5rem;
}
#shop #shop_item .inner ._item ._txt ._head ._name h3 {
    font-size: 1.55rem;
    font-weight: bold;
}
#shop #shop_item .inner ._item ._txt ._head ._sns {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    -moz-column-gap: 0.35rem;
    column-gap: 0.35rem;
    row-gap: 0.35rem;
    margin-top: 0.4rem;
}
#shop #shop_item .inner ._item ._txt ._head ._sns a {
    display: block;
    width: 2rem;
    height: 2rem;
}
#shop #shop_item .inner ._item ._txt ._head ._sns a img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
#shop #shop_item .inner ._item ._txt ._body {
    margin-bottom: 2rem;
}
#shop #shop_item .inner ._item ._txt ._body>div {
    margin-bottom: 1.5rem;
}
#shop #shop_item .inner ._item ._txt ._body>div ._th {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
#shop #shop_item .inner ._item ._txt ._body>div ._td {
    font-size: 1.25rem;
}
#shop #shop_item .inner ._item ._txt ._body ._address ._td a img {
    display: inline-block;
    height: 1.75rem;
    padding-left: 0.75rem;
}
#shop #shop_item .inner ._item ._txt ._href {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    row-gap: 1rem;
}
#shop #shop_item .inner ._item ._txt ._href .href a {
    display: block;
    text-align: center;
    font-size: 1.4rem;
    width: 100%;
    padding: 1rem 0.5rem;
}
#shop #shop_item .inner ._item ._txt ._href .href._invalid {
    pointer-events: none;
    opacity: 0.1;
}
#shop #shop_item .inner ._item ._txt ._href .href._detail {
    width: 100%;
}
#shop #shop_item .inner ._item ._txt ._href .href._tel {
    width: 48%;
}
#shop #shop_item .inner ._item ._txt ._href .href._reserve {
    width: 48%;
}
#shop #shop_item .inner ._item ._txt ._href .href._menu {
    width: 48%;
}
/* news
-------------------------------------------------------------------------------- */
#news #news_box {
    padding: 0 0 5rem;
}
#news #news_box .inner #news_list {
    margin-bottom: 7.5rem;
}
#news #news_box .inner #news_list ._lineup ._item {
    padding-bottom: 3rem;
    border-bottom: 1px solid #707070;
    margin-bottom: 3rem;
}
#news #news_box .inner #news_list ._lineup ._item a ._img {
    aspect-ratio: 1.5;
    margin-bottom: 1.5rem;
}
#news #news_box .inner #news_list ._lineup ._item a ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#news #news_box .inner #news_list ._lineup ._item a ._img.no_img {
    border: 1px solid #707070;
    /* display: none; */
    background-color: #fff;
}
#news #news_box .inner #news_list ._lineup ._item a ._img.no_img img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 50%;
    margin-inline: auto;
}
#news #news_box .inner #news_list ._lineup ._item a ._txt ._head {
    display: flex;
    -moz-column-gap: 2rem;
    column-gap: 2rem;
    margin-bottom: 1rem;
}
#news #news_box .inner #news_list ._lineup ._item a ._txt ._head ._day {
    color: #403E3E;
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
}
#news #news_box .inner #news_list ._lineup ._item a ._txt ._head ._category {
    display: flex;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}
#news #news_box .inner #news_list ._lineup ._item a ._txt ._head ._category span {
    border: 1px solid #707070;
    padding: 0 1.5rem;
    color: #403E3E;
}
#news #news_box .inner #news_list ._lineup ._item a ._txt ._title {
    margin-bottom: 1rem;
}
#news #news_box .inner #news_list ._lineup ._item a ._txt ._title h3 {
    font-size: 1.4rem;
    color: #403E3E;
}
#news #news_box .inner #news_list ._lineup ._item a ._txt ._beginning {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    color: #403E3E;
}
#news #news_box .inner #news_list ._page nav.navigation.pagination h2.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-width: 0;
}
#news #news_box .inner #news_list ._page nav.navigation.pagination .nav-links {
    display: flex;
    justify-content: center;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
}
#news #news_box .inner #news_list ._page nav.navigation.pagination .nav-links .page-numbers.current {
    background-color: #4E4949;
    color: #fff;
}
#news #news_box .inner #news_list ._page nav.navigation.pagination .nav-links .page-numbers {
    display: grid;
    place-content: center;
    font-size: 1.1rem;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 3rem;
    border: 1px solid #707070;
}
#news #news_box .inner #news_sort ._item {
    margin-bottom: 3.5rem;
}
#news #news_box .inner #news_sort ._item ._head h4 {
    font-size: 1.55rem;
    font-weight: bold;
    color: #403E3E;
    padding-bottom: 1rem;
    border-bottom: 1px solid #707070;
    margin-bottom: 1.5rem;
}
#news #news_box .inner #news_sort ._item ._body ul li a {
    display: block;
    color: #707070;
    font-size: 1.2rem;
    padding: 0.25rem 0;
}
#news #news_box .inner #news_post {
    margin-bottom: 5rem;
}
#news #news_box .inner #news_post ._head {
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
}
#news #news_box .inner #news_post ._head ._day {
    color: #403E3E;
    font-size: 1.1rem;
    letter-spacing: 0.05rem;
}
#news #news_box .inner #news_post ._head ._category {
    display: flex;
    -moz-column-gap: 0.75rem;
    column-gap: 0.75rem;
}
#news #news_box .inner #news_post ._head ._category a {
    border: 1px solid #707070;
    padding: 0 1.5rem;
    color: #403E3E;
}
#news #news_box .inner #news_post ._eye {
    margin-bottom: 2.5rem;
}
#news #news_box .inner #news_post ._eye img {
    width: 100%;
}
#news #news_box .inner #news_post ._body {
    margin-bottom: 4rem;
}
#news #news_box .inner #news_post ._body p {
    margin-bottom: 2rem;
}
#news #news_box .inner #news_post ._body p a {
    border-bottom: 1px dashed #999;
}
#news #news_box .inner #news_post ._body p a:hover {
    opacity: 0.5;
}
#news #news_box .inner #news_post ._body p img {
    margin: 0 auto 2rem;
    border: none;
}
#news #news_box .inner #news_post ._href {
    display: flex;
    justify-content: space-between;
}
#news #news_box .inner #news_post ._href .href {
    width: 7.2rem;
}
#news.single #news_head.head ._title {
    padding: 1.8rem 0 0;
}
/* recruit
-------------------------------------------------------------------------------- */
#recruit #recruit_head ._img {
    margin-bottom: 3rem;
}
#recruit #recruit_head ._txt {
    margin-bottom: 2rem;
}
#recruit #recruit_head ._txt ._head {
    margin-bottom: 2rem;
}
#recruit #recruit_head ._txt ._head h2 {
    font-size: 1.85rem;
    font-weight: bold;
    color: #3C3939;
}
#recruit #recruit_head ._txt ._body p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 2;
    color: #707070;
}
#recruit #recruit_head ._txt ._body p br {
    display: none;
}
#recruit #recruit_item {
    margin-bottom: 5rem;
}
#recruit #recruit_item ._item {
    position: relative;
    margin-bottom: 6rem;
}
#recruit #recruit_item ._item ._head {
    margin-bottom: 2.5rem;
}
#recruit #recruit_item ._item ._head h3 {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
}
#recruit #recruit_item ._item ._body {
    margin-bottom: 2rem;
}
#recruit #recruit_item ._item ._body ._shop {
    margin-bottom: 2rem;
}
#recruit #recruit_item ._item ._body ._shop ._img {
    aspect-ratio: 1.5;
    margin-bottom: 1.5rem;
}
#recruit #recruit_item ._item ._body ._shop ._img a {
    position: relative;
    display: block;
    height: 100%;
}
#recruit #recruit_item ._item ._body ._shop ._img a img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#recruit #recruit_item ._item ._body ._shop ._img a::before {
    position: absolute;
    content: "";
    inset: 0;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.5);
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: 0.5s;
}
#recruit #recruit_item ._item ._body ._shop ._img a:hover::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
#recruit #recruit_item ._item ._body ._shop ._txt {
    margin-bottom: 2rem;
}
#recruit #recruit_item ._item ._body ._shop ._txt ._name {
    margin-bottom: 0.5rem;
}
#recruit #recruit_item ._item ._body ._shop ._txt ._name h4 {
    font-size: 1.5rem;
    font-weight: 500;
}
#recruit #recruit_item ._item ._body ._shop ._txt ._address {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}
#recruit #recruit_item ._item ._body ._shop ._txt .href {
    margin-bottom: 2rem;
}
#recruit #recruit_item ._item ._body ._shop ._txt .href a {
    margin-right: 0;
}
#recruit #recruit_item ._item ._bg {
    display: none;
}
/* policy
-------------------------------------------------------------------------------- */
#privacy-policy #policy_head.head ._title {
    padding: 1.8rem 0 0;
}
#privacy-policy #policy_item {
    padding-bottom: 10rem;
}
#privacy-policy #policy_item .inner ._item {
    margin-bottom: 2.5rem;
}
#privacy-policy #policy_item .inner ._item ._head {
    padding-bottom: 1rem;
    border-bottom: 1px solid #707070;
    margin-bottom: 1.25rem;
}
#privacy-policy #policy_item .inner ._item ._head h3 {
    font-size: 1.25rem;
}
@media (width > 600px) {
    /* common
  -------------------------------------------------------------------------------- */
    html {
        font-size: 2vw;
        scroll-padding-top: 12.5vw;
    }
    /* header
  -------------------------------------------------------------------------------- */
    header {
        height: 12.5vw;
    }
    header ._logo {
        width: 40vw;
        height: 12.5vw;
    }
    header ._logo a {
        padding: 1.5vw;
    }
    header ._logo a img {
        /* height: 7.5vw; */
    }
    header ._index {
        width: 15vw;
        height: 12.5vw;
    }
    header ._index span {
        left: 4.5vw;
        right: 4.5vw;
        width: 6vw;
        height: 0.666vw;
    }
    header ._index span:nth-child(1) {
        top: 4.4vw;
    }
    header ._index span:nth-child(2) {
        top: 6.3vw;
    }
    header ._index span:nth-child(3) {
        top: 8.3vw;
    }
    header.active ._index span:nth-child(1) {
        top: 7vw;
    }
    header.active ._index span:nth-child(2) {
        left: 7.5vw;
        right: 7.5vw;
    }
    header.active ._index span:nth-child(3) {
        top: 7.1vw;
    }
    /* footer
  -------------------------------------------------------------------------------- */
    footer .inner ._jump ._href {
        margin-bottom: 2.5rem;
    }
    footer .inner ._jump ._href ul {
        justify-content: center;
    }
    footer .inner ._jump ._href ul li {
        width: auto;
    }
    footer .inner ._jump ._href ul li a {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    footer .inner ._corp {
        width: 61.8%;
        margin-inline: auto;
    }
    footer .inner ._corp ._info dl {
        width: 20rem;
        margin-inline: auto;
    }
    footer .inner ._corp ._info dl dt, footer .inner ._corp ._info dl dd {
        font-size: 1rem;
    }
    footer .inner ._corp ._info dl dt {
        width: 5rem;
    }
    footer .inner ._corp ._info dl dd {
        width: 15rem;
    }
    footer .inner ._corp ._sns ul {
        -moz-column-gap: 0.75rem;
        column-gap: 0.75rem;
    }
    footer .inner ._corp ._sns ul li a img {
        width: 2.5rem;
    }
    footer #copyright {
        font-size: 0.9rem;
        padding: 1.5rem;
    }
    #peace_ring_of_guam {
        width: 61.8%;
        margin-inline: auto;
    }
    #peace_ring_of_guam ._txt a {
        font-size: 1rem;
    }
    /* main
  -------------------------------------------------------------------------------- */
    /* home
  -------------------------------------------------------------------------------- */
    #home_item ._item._hrzn ._img {}
    #home_item ._item._hrzn ._img>div {}
    #home_item ._item._hrzn ._img ._img_01 {}
    #home_item ._item._hrzn ._img ._img_02 {
    margin-top: 2rem;
}
    #home_item ._item ._img>div {
        height: 33.3rem;
    }
    #home_item ._item ._txt ._title_sub h3 br {
        display: block;
    }
    #home_item ._item ._txt ._desc p br {
        /* display: block; */
    }
    #home_shop {
        height: 30rem;
    }
    #home_news {
        padding: 0 0 12.5rem;
    }
    #home_news .inner ._body ._item {
        width: 61.8%;
        margin-inline: auto;
    }
    #home_news .inner ._body ._item a ._img {
        margin-bottom: 0.75rem;
    }
    #home_news .inner ._body ._item a ._txt ._day {
        margin-bottom: 0;
        font-size: 1rem;
    }
    #home_news .inner ._body ._item a ._txt ._title {
        margin-bottom: 0;
    }
    #home_news .inner ._body ._item a ._txt ._beginning {
        font-size: 1rem;
    }
    #home_news .inner .href a {
        font-size: 1rem;
    }
    /* shop
  -------------------------------------------------------------------------------- */
    #shop #shop_item .inner ._item ._img {
        aspect-ratio: 1.5;
    }
    #shop #shop_item .inner ._item ._txt ._head {
        justify-content: unset;
    }
    #shop #shop_item .inner ._item ._txt ._head ._name {
        width: auto;
    }
    #shop #shop_item .inner ._item ._txt ._body {}
    #shop #shop_item .inner ._item ._txt ._body ._address ._td a img {
        padding-left: 1.5rem;
        height: 1.5rem;
    }
    #shop #shop_item .inner ._item ._txt ._href {
        -moz-column-gap: unset;
        column-gap: unset;
        row-gap: unset;
    }
    #shop #shop_item .inner ._item ._txt ._href .href._detail {
        width: 32%;
    }
    #shop #shop_item .inner ._item ._txt ._href .href._tel {
        width: 32%;
    }
    #shop #shop_item .inner ._item ._txt ._href .href._reserve {
        width: 32%;
    }
    #shop #shop_item .inner ._item ._txt ._href .href._menu {
        width: 24%;
    }
    /* news
  -------------------------------------------------------------------------------- */
    #news #news_box .inner #news_list ._lineup ._item {
        width: 72%;
        margin-inline: auto;
    }
    #news #news_box .inner #news_sort {
        width: 72%;
        margin-inline: auto;
    }
    #news #news_box .inner #news_post {
        width: 72%;
        margin-inline: auto;
        margin-bottom: 7.5rem;
    }
    #news #news_box .inner #news_post ._head ._category a {
        font-size: 0.9rem;
        padding: 0.15rem 1.5rem;
    }
    /* recruit
  -------------------------------------------------------------------------------- */
    #recruit #recruit_item ._item {
        margin-bottom: 3rem;
    }
    #recruit #recruit_item ._item ._body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
    }
    #recruit #recruit_item ._item ._body ._shop {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 4;
    }
    #recruit #recruit_item ._item ._body ._shop ._txt {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 3;
    }
    #recruit #recruit_item ._item ._body ._shop ._txt ._name h4 {
        font-size: 1.4rem;
    }
    #recruit #recruit_item ._item ._body ._shop ._txt ._address {
        font-size: 1.1rem;
    }
    #recruit #recruit_item ._item ._body ._shop ._txt .href {
        margin: 0 auto 2rem;
    }
    #recruit #recruit_item ._item ._bg {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        text-align: center;
        display: block;
        color: #E3E3E3;
        font-size: 5rem;
        font-weight: bold;
        opacity: 0.25;
        line-height: 1.375;
        z-index: -1;
    }
    /* policy
  -------------------------------------------------------------------------------- */
}
@media (width > 1024px) {
    /* common
  -------------------------------------------------------------------------------- */
    html {
        font-size: 1rem;
    }
    .display_pc {
        display: block;
    }
    .display_sp {
        display: none;
    }
    section {
        padding: 7.5rem 0;
    }
    .inner {
        max-width: 1280px;
    }
    .href a {
        font-size: 0.75rem;
        background-image: linear-gradient(-90deg, transparent 0%, transparent 50%, #000 50%, #000 100%);
        background-position: 100%;
        background-size: 200%;
        transition: 0.5s;
    }
    .href a:hover {
        background-position: 0%;
        color: #fff;
    }
    .head {
        padding: 0 0 5rem;
    }
    .head ._title {
        padding: 4rem 0 5rem;
    }
    .head ._img {
        height: auto;
        aspect-ratio: 3;
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    .head ._img.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    /* header
  -------------------------------------------------------------------------------- */
    header {
        height: 5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 0 5%;
    }
    header ._logo {
        width: auto;
        height: 80px;
        margin: 0;
        transform-origin: left 25%;
    }
    header ._logo a {
        position: relative;
        padding: 0.375rem;
    }
    header ._logo a img {
        /* height: 80px; */
    }
    header ._logo a::before {
        position: absolute;
        content: "";
        inset: 0;
        margin: auto;
        background-color: rgba(255, 255, 255, 0.5);
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        transition: 1s;
    }
    header ._logo a:hover::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    header ._index {
        display: none;
    }
    header ._nav {
        position: static;
        inset: unset;
        display: block;
        background-color: transparent;
        clip-path: unset;
        transition: unset;
        margin: 0;
    }
    header ._nav nav {
        margin-bottom: 0;
    }
    header ._nav nav ul {
        display: flex;
    }
    header ._nav nav ul li a {
        font-size: 1rem;
        padding: 1rem;
        color: #707070;
        background-image: linear-gradient(-90deg, #707070 0%, #707070 50%, #ccc 50%, #ccc 100%);
        -webkit-background-clip: text;
        background-size: 200%;
        background-position: 100%;
        -webkit-text-fill-color: transparent;
        transition: 0.5s;
    }
    header ._nav nav ul li a:hover {
        background-position: 0%;
    }
    header ._nav ._sns {
        display: none;
    }
    /* footer
  -------------------------------------------------------------------------------- */
    footer .inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }
    footer .inner ._jump {
        order: 1;
        width: 50%;
        margin-bottom: 0;
    }
    footer .inner ._jump ._href {
        margin-bottom: 1rem;
    }
    footer .inner ._jump ._href ul {
        justify-content: flex-end;
        -moz-column-gap: 2.5rem;
        column-gap: 2.5rem;
    }
    footer .inner ._jump ._href ul li a {
        font-size: 1rem;
        padding: 0;
        background-image: linear-gradient(-90deg, #707070 0%, #707070 50%, #ccc 50%, #ccc 100%);
        -webkit-background-clip: text;
        background-size: 200%;
        background-position: 100%;
        -webkit-text-fill-color: transparent;
        transition: 0.5s;
    }
    footer .inner ._jump ._href ul li a:hover {
        background-position: 0%;
    }
    footer .inner ._corp {
        order: 0;
        width: 50%;
        margin-inline: unset;
        margin-bottom: 5rem;
        padding: 0 2.5rem;
    }
    footer .inner ._corp ._logo {
        margin-bottom: 1.5rem;
    }
    footer .inner ._corp ._logo a {
        position: relative;
    }
    footer .inner ._corp ._logo a img {
        width: 17.5rem;
        margin-inline: unset;
    }
    footer .inner ._corp ._logo a::before {
        position: absolute;
        content: "";
        inset: 0;
        margin: auto;
        background-color: rgba(255, 255, 255, 0.5);
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        transition: 1.5s;
    }
    footer .inner ._corp ._logo a:hover::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    footer .inner ._corp ._info {
        margin-bottom: 1.5rem;
    }
    footer .inner ._corp ._info dl {
        width: 20rem;
        margin-inline: unset;
    }
    footer .inner ._corp ._info dl dt, footer .inner ._corp ._info dl dd {
        margin-bottom: 0.25rem;
    }
    footer .inner ._corp ._sns {
        width: 17.5rem;
    }
    footer .inner ._corp ._sns ul li a {
        position: relative;
    }
    footer .inner ._corp ._sns ul li a::before {
        position: absolute;
        content: "";
        inset: 0;
        margin: auto;
        background-color: rgba(255, 255, 255, 0.5);
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        transition: 0.5s;
    }
    footer .inner ._corp ._sns ul li a:hover::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    footer #copyright {
        order: 2;
        width: 100%;
    }
    #peace_ring_of_guam {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: end;
        justify-content: end;
    }
    #peace_ring_of_guam ._img {
        width: 15rem;
        margin-bottom: 0.5rem;
    }
    #peace_ring_of_guam ._img a {
        position: relative;
        width: 100%;
    }
    #peace_ring_of_guam ._img a::before {
        position: absolute;
        content: "";
        inset: 0;
        margin: auto;
        background-color: rgba(255, 255, 255, 0.5);
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        transition: 0.5s;
    }
    #peace_ring_of_guam ._img a:hover::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    #peace_ring_of_guam ._txt a {
        font-size: 0.7rem;
        white-space: nowrap;
        background-image: linear-gradient(-90deg, #707070 0%, #707070 50%, #ccc 50%, #ccc 100%);
        -webkit-background-clip: text;
        background-size: 200%;
        background-position: 100%;
        -webkit-text-fill-color: transparent;
        transition: 0.75s;
    }
    #peace_ring_of_guam ._txt a:hover {
        background-position: 0%;
    }
    #page_top {
        bottom: 0;
        right: 0;
    }
    #page_top a::before {
        position: absolute;
        content: "";
        inset: 0;
        margin: auto;
        background-color: rgba(255, 255, 255, 0.5);
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        transition: 0.5s;
    }
    #page_top a:hover::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    /* main
  -------------------------------------------------------------------------------- */
    main {
        margin-top: 5rem;
    }
    /* home
  -------------------------------------------------------------------------------- */
    #home_top {
        /* height: calc(100svh - 4vw); */
        padding: 4vw 0;
    }
    #home_top .inner {
        max-width: 100%;
        height: calc(100svh - 8vw);
        height: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-direction: row-reverse;
    }
    #home_top .inner .swiper {
        width: 66.6%;
        aspect-ratio: 1.5;
        height: auto;
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    #home_top .inner .swiper.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    #home_top .inner ._logo {
        width: 33.3%;
    }
    #home_top .inner ._logo a {
        width: 16vw;
        margin-right: 6vw;
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    #home_top .inner ._logo a.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    #home_item .inner {
        width: 100%;
        max-width: 1366px;
    }
    #home_item .inner ._item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 10rem;
    }
    #home_item .inner ._item ._img {
        max-width: 50rem;
        width: 50%;
        margin-bottom: 0;
        -moz-column-gap: unset;
        column-gap: unset;
    }
    #home_item .inner ._item ._img:has(img:only-child) {}
    #home_item .inner ._item ._img>div {
        aspect-ratio: 0.6;
        width: 46%;
        height: auto;
        transition-duration: 1.5s;
    }
    #home_item .inner ._item ._img>div a::before {
        transition: 0.25s;
    }
    #home_item .inner ._item ._img>div a:hover::before {
        top: 0;
        right: 0;
    }
    #home_item .inner ._item ._img ._img_01 {
        margin-bottom: 6rem;
    }
    #home_item .inner ._item ._img ._img_02 {
        margin-top: 3rem;
    }
    #home_item .inner ._item ._img ._img_01:only-child,
    #home_item .inner ._item ._img ._img_02:only-child {
        width: 70%;
        margin: 0 auto;
    }
    #home_item .inner ._item._hrzn ._img {}
    #home_item .inner ._item._hrzn ._img:has(img:only-child) {}
    #home_item .inner ._item._hrzn ._img>div {
        aspect-ratio: 1.5;
        margin-bottom: 0;
        width: 75%;
        max-width: 33.3rem;
    }
    #home_item .inner ._item._hrzn ._img ._img_01 {}
    #home_item .inner ._item._hrzn ._img ._img_02 {
        margin-left: 25%;
    }
    #home_item .inner ._item._hrzn ._img ._img_01:only-child,
    #home_item .inner ._item._hrzn ._img ._img_02:only-child {
    aspect-ratio: 1.1;
    max-width: 50rem;
    margin-left: 0;
    width: 100%;
}
    #home_item .inner ._item ._txt {
        /*margin-top: 6rem;*/
        padding-right: 6.66%;
        max-width: 35rem;
        width: 45%;
    }
    #home_item .inner ._item ._txt ._title h2 {
        font-size: 2.25rem;
    }
    #home_item .inner ._item ._txt ._title_sub {
        margin-bottom: 2.25rem;
    }
    #home_item .inner ._item ._txt ._title_sub h3 {
        font-size: 1.4rem;
    }
    #home_item .inner ._item ._txt ._desc p {
        font-size: 1rem;
    }
    #home_item .inner ._item ._txt ._desc p br {
        display: block;
    }
    #home_item .inner ._item:nth-child(2n) {
        flex-direction: row-reverse;
    }
    #home_item .inner ._item:nth-child(2n) ._img {
        flex-direction: row-reverse;
    }
    #home_item .inner ._item:nth-child(2n) ._img:has(img:only-child) {}
    #home_item .inner ._item:nth-child(2n) ._img ._img_01 {
        margin-top: 0;
        margin-bottom: 6rem;
    }
    #home_item .inner ._item:nth-child(2n) ._img ._img_02 {
        margin-bottom: 0;
        margin-top: 3rem;
    }
    #home_item .inner ._item:nth-child(2n) ._img ._img_01:only-child,
    #home_item .inner ._item:nth-child(2n) ._img ._img_02:only-child {
        width: 70%;
        aspect-ratio: 0.7;
        margin: 0 auto;
    }
    #home_item .inner ._item:nth-child(2n) ._txt {
        /*margin-top: 3rem;*/
        padding-right: 0;
        padding-left: 13.33%;
    }
    #home_item .inner ._item:nth-child(2n+3) ._img {
        flex-direction: row-reverse;
    }
    #home_item .inner ._item:nth-child(2n+3) ._img:has(img:only-child) {}
    #home_item .inner ._item:nth-child(2n+3) ._img ._img_01 {
        margin-top: 0rem;
        margin-bottom: 6rem;
    }
    #home_item .inner ._item:nth-child(2n+3) ._img ._img_02 {
        margin-bottom: 0;
        margin-top: 3rem;
    }
    #home_item .inner ._item:nth-child(2n+3) ._img ._img_01:only-child,
    #home_item .inner ._item:nth-child(2n+3) ._img ._img_02:only-child {
        width: 70%;
        aspect-ratio: 0.7;
        margin: 0 auto;
    }
    #home_item .inner ._item:nth-child(2n+3) ._txt {
        /*margin-top: 3rem;*/
    }
    #home_item .inner ._item._hrzn:nth-child(2n+2) ._img {}
    #home_item .inner ._item._hrzn:nth-child(2n+2) ._img:has(img:only-child) {}
    #home_item .inner ._item._hrzn:nth-child(2n+2) ._img>div {
        aspect-ratio: 1.5;
        margin-bottom: 0;
        width: 75%;
        max-width: 30.9rem;
    }
    #home_item .inner ._item._hrzn:nth-child(2n+2) ._img ._img_01 {
        margin-top: 0;
        margin-left: 25%;
    }
    #home_item .inner ._item._hrzn:nth-child(2n+2) ._img ._img_02 {
        /*margin-top: -3.33rem;*/
        margin-left: 0;
    }
    #home_item .inner ._item._hrzn:nth-child(2n+2) ._img ._img_01:only-child,
    #home_item .inner ._item._hrzn:nth-child(2n+2) ._img ._img_02:only-child {
        width: 100%;
        margin: 0 auto;
        aspect-ratio: 1.1;
        max-width: 50rem;
    }
    #home_item .inner ._item._hrzn:nth-child(2n+2) ._txt {}
    #home_item .inner ._item._hrzn:nth-child(2n+3) {
        /*margin-bottom: 7.5rem;*/
    }
    #home_item .inner ._item._hrzn:nth-child(2n+3) ._img {}
    #home_item .inner ._item._hrzn:nth-child(2n+3) ._img:has(img:only-child) {}
    #home_item .inner ._item._hrzn:nth-child(2n+3) ._img>div {
        aspect-ratio: 1.5;
        margin-bottom: 0;
        width: 75%;
        max-width: 33.3rem;
    }
    #home_item .inner ._item._hrzn:nth-child(2n+3) ._img ._img_01 {
        margin-top: 0;
        margin-left: 25%;
    }
    #home_item .inner ._item._hrzn:nth-child(2n+3) ._img ._img_02 {
        margin-left: 0;
    }
    #home_item .inner ._item._hrzn:nth-child(2n+3) ._img ._img_01:only-child,
    #home_item .inner ._item._hrzn:nth-child(2n+3) ._img ._img_02:only-child {
        width: 100%;
        margin: 0 auto;
        aspect-ratio: 1.1;
        max-width: 50rem;
    }
    #home_item .inner ._item._hrzn:nth-child(2n+3) ._txt {}
    #home_shop {
        margin: 5rem 0;
    }
    #home_shop ._inner {
        bottom: 10rem;
    }
    #home_shop ._inner ._title h2 {
        font-size: 2.25rem;
    }
    #home_shop ._inner ._href a {
        border-width: 2px;
        padding: 0.5rem 1rem 0.5rem 2.5rem;
    }
    #home_shop ._inner ._href a span {
        font-size: 1.1rem;
        margin-right: 2rem;
    }
    #home_shop ._inner ._href a img {
        height: 1.25rem;
        width: 1.25rem;
        opacity: 1;
        transition: transform 0.5s;
    }
    #home_shop ._inner ._href a:hover {
        background-color: rgba(0, 0, 0, 0.5);
    }
    #home_shop ._inner ._href a:hover img {
        transform: translateX(0.75rem);
    }
    #home_news {
        padding: 0 0 12.5rem;
    }
    #home_news .inner ._head {
        padding: 2rem 0 4.5rem;
    }
    #home_news .inner ._head h2 {
        font-size: 2.25rem;
    }
    #home_news .inner ._body {
        display: flex;
        justify-content: center;
        max-width: 60rem;
        -moz-column-gap: 3rem;
        column-gap: 3rem;
        margin: 0 auto 4rem;
    }
    #home_news .inner ._body ._item {
        width: 30%;
        margin-inline: unset;
        margin-bottom: 0;
    }
    #home_news .inner ._body ._item a ._img {
        aspect-ratio: 1.5;
    }
    #home_news .inner ._body ._item a ._img.no_img img {
        width: 80%;
    }
    #home_news .inner ._body ._item a ._txt ._title {
        margin-bottom: 0.25rem;
    }
    #home_news .inner ._body ._item a ._txt ._beginning {
        -webkit-line-clamp: 3;
    }
    #home_news .inner ._body ._item a:hover {
        filter: sepia(1);
    }
    #home_news .inner .href a {
        font-size: 0.875rem;
        padding: 0.6rem 2rem;
    }
    /* shop
  -------------------------------------------------------------------------------- */
    #shop #shop_head.head ._img {
        height: auto;
        aspect-ratio: 3;
    }
    #shop #shop_head.head ._img a {
        position: relative;
    }
    #shop #shop_head.head ._img a::before {
        position: absolute;
        content: "";
        inset: 0;
        margin: auto;
        background-color: rgba(255, 255, 255, 0.5);
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
        transition: 0.5s;
    }
    #shop #shop_head.head ._img a:hover::before {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
    #shop #shop_item {
        padding-top: 0;
    }
    #shop #shop_item .inner {
        max-width: 1100px;
    }
    #shop #shop_item .inner ._item {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding: 0 1.5rem 3rem;
        margin-bottom: 4rem;
    }
    #shop #shop_item .inner ._item ._img {
        width: 45%;
        margin-bottom: 0;
    }
    #shop #shop_item .inner ._item ._txt {
        width: 50%;
    }
    #shop #shop_item .inner ._item ._txt ._head ._name {
        margin-bottom: 1rem;
    }
    #shop #shop_item .inner ._item ._txt ._head ._name h3 {
        font-size: 1.5rem;
        letter-spacing: 0.1rem;
    }
    #shop #shop_item .inner ._item ._txt ._head ._sns {
        margin-top: 0.6rem;
    }
    #shop #shop_item .inner ._item ._txt ._head ._sns a {
        width: 1.5rem;
        height: 1.5rem;
    }
    #shop #shop_item .inner ._item ._txt ._head ._sns a:hover {
        opacity: 0.5;
    }
    #shop #shop_item .inner ._item ._txt ._body>div {
        display: flex;
        margin-bottom: 1rem;
    }
    #shop #shop_item .inner ._item ._txt ._body>div ._th, #shop #shop_item .inner ._item ._txt ._body>div ._td {
        font-size: 1.1rem;
    }
    #shop #shop_item .inner ._item ._txt ._body>div ._th {
        width: 5.5rem;
        font-size: 0.9rem;
    }
    #shop #shop_item .inner ._item ._txt ._body>div ._td {
        width: calc(100% - 6.5rem);
        font-size: 0.9rem;
    }
    #shop #shop_item .inner ._item ._txt ._body ._address ._td a {}
    #shop #shop_item .inner ._item ._txt ._body ._address ._td a img {
        height: 1rem;
        padding-left: 0.75rem;
    }
    #shop #shop_item .inner ._item ._txt ._body ._address ._td a:hover {
        opacity: 0.5;
    }
    #shop #shop_item .inner ._item ._txt ._href .href a {
        font-size: 0.9rem;
        padding: 0.5rem 0.5rem;
    }
    #shop #shop_item .inner ._item ._txt ._href .href._detail {
        order: 2;
    }
    #shop #shop_item .inner ._item ._txt ._href .href._reserve {
        order: 1;
    }
    /* news
  -------------------------------------------------------------------------------- */
    #news #news_box {
        padding: 0 0 10rem;
    }
    #news #news_box .inner {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
    #news #news_box .inner #news_list {
        width: 66.6%;
        margin-bottom: 0;
    }
    #news #news_box .inner #news_list ._lineup {
        margin-bottom: 7.5rem;
    }
    #news #news_box .inner #news_list ._lineup ._item {
        width: 100%;
        margin-inline: unset;
    }
    #news #news_box .inner #news_list ._lineup ._item a {
        display: flex;
        justify-content: space-between;
        flex-direction: row-reverse;
    }
    #news #news_box .inner #news_list ._lineup ._item a ._img {
        width: 45%;
        aspect-ratio: 1.777;
        margin-bottom: 0;
    }
    #news #news_box .inner #news_list ._lineup ._item a ._txt {
        width: 45%;
    }
    #news #news_box .inner #news_list ._lineup ._item a ._txt ._head ._day {
        font-size: 0.9rem;
    }
    #news #news_box .inner #news_list ._lineup ._item a ._txt ._head ._category span {
        font-size: 0.85rem;
    }
    #news #news_box .inner #news_list ._lineup ._item a ._txt ._title h3 {
        font-size: 1.25rem;
    }
    #news #news_box .inner #news_list ._lineup ._item a ._txt ._beginning {
        font-size: 0.875rem;
        -webkit-line-clamp: 4;
    }
    #news #news_box .inner #news_list ._lineup ._item a:hover {
        filter: sepia(1);
    }
    #news #news_box .inner #news_list ._page nav.navigation.pagination .nav-links .page-numbers {
        font-size: 0.9rem;
        width: 2.5rem;
        height: 2.5rem;
    }
    #news #news_box .inner #news_list ._page nav.navigation.pagination .nav-links a {
        transition: 0.5s;
        background-image: linear-gradient(-90deg, #fff 0%, #fff 50%, #4E4949 50%, #4E4949 100%);
        background-position: 100%;
        background-size: 200%;
        transition: 0.25s;
    }
    #news #news_box .inner #news_list ._page nav.navigation.pagination .nav-links a:hover {
        background-position: 0%;
        color: #fff;
    }
    #news #news_box .inner #news_sort {
        /* max-width: 300px; */
        width: 22.5%;
        margin-inline: unset;
    }
    #news #news_box .inner #news_sort ._item {
        margin-bottom: 10rem;
    }
    #news #news_box .inner #news_sort ._item ._head h4 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    #news #news_box .inner #news_sort ._item ._body ul li a {
        color: #707070;
        font-size: 1.1rem;
        background-image: linear-gradient(-90deg, #707070 0%, #707070 50%, #ccc 50%, #ccc 100%);
        -webkit-background-clip: text;
        background-size: 200%;
        background-position: 100%;
        -webkit-text-fill-color: transparent;
        transition: 0.5s;
    }
    #news #news_box .inner #news_sort ._item ._body ul li a:hover {
        background-position: 0%;
    }
    #news #news_box .inner #news_post {
        width: 50rem;
    }
    #news #news_box .inner #news_post ._head ._category a {
        display: inline-block;
        font-size: 0.8rem;
        background-image: linear-gradient(-90deg, #fff 0%, #fff 50%, #000 50%, #000 100%);
        background-position: 100%;
        background-size: 200%;
        transition: 0.5s;
        padding: 0.15rem 1.5rem;
    }
    #news #news_box .inner #news_post ._head ._category a:hover {
        background-position: 0%;
        color: #fff;
    }
    #news #news_box .inner #news_post ._body p {
        line-height: 2;
        margin-bottom: 2.5rem;
    }
    #news #news_box .inner #news_post ._body p img {
        margin: 0 auto 2.5rem;
    }
    /* recruit
  -------------------------------------------------------------------------------- */
    #recruit #recruit_head .inner {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: stretch;
    }
    #recruit #recruit_head .inner ._title {
        width: 100%;
    }
    #recruit #recruit_head .inner ._title h1 {
        font-size: 2.25rem;
    }
    #recruit #recruit_head .inner ._img {
        order: 1;
        width: 55%;
        margin-bottom: 0;
    }
    #recruit #recruit_head .inner ._txt {
        width: 40%;
        margin-bottom: 0;
    }
    #recruit #recruit_head .inner ._txt ._head h2 {
        font-size: 2rem;
    }
    #recruit #recruit_head .inner ._txt ._body p {
        font-size: 1.2rem;
        line-height: 1.666;
        margin-bottom: 1.5rem;
    }
    #recruit #recruit_head .inner ._txt ._body p br {
        display: block;
    }
    #recruit #recruit_item {
        padding: 0;
        margin-bottom: 11rem;
    }
    #recruit #recruit_item ._item {
        margin-bottom: 7.5rem;
    }
    #recruit #recruit_item ._item .inner {
        display: flex;
        justify-content: space-between;
    }
    #recruit #recruit_item ._item .inner ._head {
        flex: 1;
        margin-bottom: 0;
    }
    #recruit #recruit_item ._item .inner ._head h3 {
        margin-top: 6.66rem;
        margin-right: 6.66rem;
    }
    #recruit #recruit_item ._item .inner ._body {
        margin-bottom: 0;
    }
    #recruit #recruit_item ._item .inner ._body ._shop {
        width: 22.5rem;
        margin-bottom: 3rem;
    }
    #recruit #recruit_item ._item .inner ._body ._shop ._img {
        margin-bottom: 1rem;
    }
    #recruit #recruit_item ._item .inner ._body ._shop ._txt {
        margin-bottom: 0;
    }
    #recruit #recruit_item ._item .inner ._body ._shop ._txt ._name h4 {
        font-size: 1.2rem;
    }
    #recruit #recruit_item ._item .inner ._body ._shop ._txt ._address {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    #recruit #recruit_item ._item .inner ._body ._shop ._txt .href {
        margin: 0 0 0 auto;
    }
    #recruit #recruit_item ._item ._bg {
        bottom: 3rem;
        top: auto;
        left: calc(50% - 683px);
        right: auto;
        font-size: 6.5rem;
        display: block;
        line-height: 0.875;
    }
    /* policy
  -------------------------------------------------------------------------------- */
    #privacy-policy #policy_item {
        padding-top: 0;
    }
    #privacy-policy #policy_item .inner {
        max-width: 840px;
    }
}
/* thanks
-------------------------------------------------------------------------------- */
/*# sourceMappingURL=style.css.map */
