@charset "UTF-8";
/* reset
------------------------------------------------------------- */
:root {
    --color-accent: #445377;
}
*, *::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.8;
    -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: 1px solid #aaa;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
input[type=checkbox] {
    position: relative;
    aspect-ratio: 1;
    padding: 0;
}
a {
    text-decoration: none;
}
/* loading
------------------------------------------------------------- */
#intro {
    position: fixed;
    inset: 0;
    clip-path: rect(0 100% 100% 0);
    background-color: var(--color-accent);
    transition-duration: 0.75s;
    transition-delay: 1.25s;
    transition-timing-function: cubic-bezier(0.75, 0, 0.25, 1);
    z-index: 3;
}
#intro.loaded {
    clip-path: rect(0 100% 100% 100%);
}
#intro_logo {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 38.2vw;
    height: 38.2vw;
    transition-duration: 0.75s;
    clip-path: rect(0 0 100% 0);
}
#intro_logo img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.loaded #intro_logo {
    clip-path: rect(0 100% 100% 0);
}
/* common
------------------------------------------------------------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 5rem;
    font-size: 3.25vw;
}
body {
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
    color: #000;
    padding-top: 75px;
}
.en {
    font-family: eb-garamond, serif;
    font-weight: 400;
    font-style: normal;
}
.inner {
    width: 90%;
    margin-inline: auto;
}
a {
    color: #000;
}
.display_pc {
    display: none;
}
.inner {
    width: 90%;
    max-width: 960px;
    margin-inline: auto;
}
.href a,
.href input {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding: 0.666rem 2rem;
    line-height: 1;
    background-color: var(--color-accent);
    color: #fff;
    font-style: italic;
}
.href._invert a,
.href._invert input {
    background-color: #fff;
    color: var(--color-accent);
}
input, button, textarea, select {
    padding: 0.5rem 1rem;
}
input[type=checkbox] {
    width: 1.5rem;
    height: 1.5rem;
}
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;
}
input[type=checkbox]:checked::before {
    clip-path: polygon(0 0, 100% -50%, 100% 100%, 0 150%);
}
section {
    padding: 4rem 0;
}
.section_head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.section_head h2 {
    position: relative;
    font-size: 2.5rem;
    font-weight: bold;
    font-style: italic;
    letter-spacing: -0.05rem;
    color: var(--color-accent);
}
.section_head h2::before {
    position: absolute;
    content: "";
    bottom: -0.25rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 3rem;
    height: 2px;
    background-color: var(--color-accent);
}
.common_head {
    padding-top: 0;
}
body:not(#news) .common_head ._img {
    aspect-ratio: 2.08333;
    margin-bottom: 2rem;
}
.common_head ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.common_head ._desc ._main {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 0.5rem;
}
.common_head ._desc ._main br {
    display: none;
}
.common_head ._desc ._sub {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}
.common_head ._desc ._sns {
    display: flex;
    justify-content: center;
    -moz-column-gap: 0.5rem;
    column-gap: 0.5rem;
}
.common_head ._desc ._sns li a {
    display: block;
}
.common_head ._desc ._sns li a img {
    height: 2rem;
}
._img {
    clip-path: inset(0 100% 0 0);
    transition-duration: 0.5s;
    transition-property: clip-path;
    transition-timing-function: cubic-bezier(0.75, 0, 0.25, 1);
}
._img.active {
    clip-path: inset(0 0 0 0);
}
/* header
------------------------------------------------------------- */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-top: 15px solid var(--color-accent);
    padding: 0 5%;
    z-index: 2;
}
#header ._logo {
    width: 160px;
}
#header ._logo h1 {
    padding: 5px;
}
#header ._logo a {
    display: block;
}
#header nav {
    /* display: none; */
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    padding: 0 5%;
    background-color: rgba(255, 255, 255, 0.9);
    clip-path: rect(0 100% 100% 100%);
    transition: clip-path 0.5s;
    transition-timing-function: cubic-bezier(0.777, 0, 0.222, 1);
}
#header nav ul._menu {
    margin-bottom: 1.5rem;
}
#header nav ul._menu li a {
    display: block;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #ccc;
    text-align: right;
}
#header nav ul._sns {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    padding: 0 1rem;
    margin-bottom: 2rem;
}
#header nav ul._sns li a {
    display: block;
}
#header nav ul._sns li._txt a {
    display: grid;
    place-content: center;
    line-height: 1;
    padding: 0 2rem;
    border-radius: 1rem;
    background-color: #000;
    color: #fff;
    height: 100%;
    white-space: nowrap;
}
#header nav ul._sns li img {
    height: 2rem;
}
#header ._index {
    position: relative;
    width: 46px;
    height: 38px;
    background-color: var(--color-accent);
}
#header ._index span {
    position: absolute;
    width: 16px;
    height: 2px;
    left: 15px;
    background-color: #fff;
    border-radius: 1px;
    transform-origin: left center;
    transition: 0.5s;
}
#header ._index span:nth-child(1) {
    top: 13px;
}
#header ._index span:nth-child(2) {
    top: 19px;
}
#header ._index span:nth-child(3) {
    top: 25px;
}
#header.active nav {
    clip-path: rect(0 100% 100% 0);
}
#header.active ._index span:nth-child(1) {
    transform: rotate(45deg);
    width: 9px;
    left: 24px;
}
#header.active ._index span:nth-child(3) {
    transform: rotate(-45deg);
    width: 9px;
    left: 24px;
}
/* footer
------------------------------------------------------------- */
footer {
    position: relative;
    padding-top: 5rem;
    background-color: #fff;
    padding-bottom: 10rem;
    overflow: hidden;
}
footer::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    height: 10rem;
    background-image: url(../img/footer_bg.webp);
    background-repeat: repeat-x;
    background-position: bottom center;
    background-size: 3rem;
    z-index: 1;
}
#footer_item {
    margin-bottom: 2rem;
}
#footer_item ._facebook {
    margin-bottom: 3rem;
    text-align: center;
}
#footer_item ._info ._img {
    margin-bottom: 0.4rem;
}
#footer_item ._info ._img img {
    margin-inline: auto;
    max-width: 72vw;
}
#footer_item ._info ._head {
    text-align: center;
    margin-bottom: 1rem;
}
#footer_item ._info ._head ._name {
    font-size: 0.9rem;
    font-weight: bold;
    line-height: 1.25;
}
#footer_item ._info ._head ._address {
    font-size: 0.8rem;
}
#footer_item ._info ._desc {
    padding: 1rem 0.5rem 1.25rem;
    margin-bottom: 0.5rem;
    text-align: center;
    background-color: #eee2d5;
}
#footer_item ._info ._desc h4 {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}
#footer_item ._info ._desc h5 {
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 0;
    border-top: 1px solid var(--color-accent);
    border-bottom: 1px solid var(--color-accent);
    margin-bottom: 0.5rem;
}
#footer_item ._info ._desc p {
    font-size: 0.7rem;
    line-height: 1.5;
}
#footer_item ._info ._href {
    background-color: var(--color-accent);
}
#footer_item ._info ._href a {
    display: block;
    width: 100%;
    padding: 0.75rem 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    font-style: normal;
}
#copyright {
    font-size: 0.7rem;
    padding-bottom: 4rem;
    text-align: center;
}
#fixed_menu {
    display: none;
    position: fixed;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    height: 32px;
    z-index: 1;
}
#fixed_menu a {
    display: grid;
    place-content: center;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    padding: 0 3rem;
    height: 100%;
    background-color: var(--color-accent);
    /* color: #fff; */
    font-size: 0.9rem;
    font-weight: bold;
    font-style: normal;
    letter-spacing: 0.25rem;
}
#page_top {
    display: none;
    position: fixed;
    bottom: 10px;
    right: 5%;
    width: 32px;
    height: 32px;
    z-index: 1;
}
#page_top a {
    display: block;
}
#page_top img {
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.footer_swim {
    width: 6.75rem;
    animation-name: swimming;
    animation-duration: 5s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
    transform-origin: 50% 50vw;
    position: absolute;
    bottom: 12.5rem;
    left: calc(50% - 3.375rem);
    z-index: 1;
}
@keyframes swimming {
    0% {
        transform: rotate(0deg);
        z-index: 0;
    }
    100% {
        transform: rotate(-360deg);
        z-index: 1;
    }
}
.footer_swim img {
    animation-name: swimming_fish;
    animation-duration: 5s;
    animation-timing-function: ease;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: normal;
    animation-fill-mode: forwards;
    animation-play-state: running;
}
@keyframes swimming_fish {
    0% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(0deg);
    }
    30% {
        transform: rotate(-60deg);
    }
    50% {
        transform: rotate(0deg);
    }
    60% {
        transform: rotate(-60deg);
    }
    75% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg) scale(0.8);
    }
}
/* main
------------------------------------------------------------- */
/* top
------------------------------------------------------------- */
#top_slide {
    padding: 0;
}
#top_slide .swiper-slide a {
    display: block;
}
#top_slide .swiper-slide img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#top_copy {
    padding: 3rem 0;
}
#top_copy h2 {
    font-size: 1.75rem;
    font-weight: 900;
    text-align: center;
}
#top_news {
    padding: 0 0 4rem;
}
#top_news .section_head h2 {
    font-size: 1.5rem;
}
#top_news .section_body .news_list {
    margin-bottom: 1rem;
}
#top_news .section_body ul {
    margin-bottom: 0.5rem;
}
#top_news .href a {
    margin-right: 0;
}
#top_concept {
    background-image: url(../img/back-01.jpg);
    background-size: cover;
}
#top_concept .inner {
    background-color: #fff;
}
#top_concept .section_head {
    margin-bottom: 0;
    padding-top: 2rem;
}
#top_concept ._txt {
    padding: 2rem;
}
#top_concept ._txt ._desc {
    margin-bottom: 2rem;
    text-align: center;
}
#top_concept ._img img {
    width: 100%;
}
#top_middle {
    position: relative;
    padding: 0;
}
#top_middle img:nth-child(1) {
    position: absolute;
    left: 0;
    top: -45%;
    width: 20%;
}
#top_middle img:nth-child(2) {
    width: 100%;
}
#top_menu {
    background-image: url(../img/bg_3838.webp);
    background-size: 75%;
    background-position: -45%;
    color: #fff;
}
#top_menu .section_head h2 {
    color: #fff;
}
#top_menu .section_head h2::before {
    background-color: #fff;
}
#top_menu .section_body>._desc {
    margin-bottom: 2.5rem;
}
#top_menu .section_body>._desc br {
    display: none;
}
#top_menu ._box {
    margin-bottom: 2.5rem;
}
#top_menu ._box ._head {
    margin-bottom: 2rem;
}
#top_menu ._box ._head h3 {
    font-size: 2.25rem;
    font-style: italic;
    text-align: center;
}
#top_menu ._box ._item {
    margin-bottom: 3.5rem;
}
#top_menu ._box ._item ._img {
    margin-bottom: 2rem;
}
#top_menu ._box ._item ._txt ._title {
    margin-bottom: 2rem;
}
#top_menu ._box ._item ._txt ._title h4 {
    position: relative;
    text-align: center;
    font-size: 1.25rem;
    font-weight: bold;
}
#top_menu ._box ._item ._txt ._title h4::before {
    position: absolute;
    content: "";
    bottom: -0.5rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 5rem;
    border-bottom: 1px dashed #fff;
}
#top_menu ._box ._item ._txt ._desc {
    text-align: center;
}
#top_menu .href a {
    font-weight: bold;
}
/* concept
------------------------------------------------------------- */
#concept .common_head {
    padding-bottom: 0;
}
#concept_body {
    padding-top: 1rem;
}
#concept_message {
    margin-bottom: 5rem;
}
#concept_message ._title {
    margin-bottom: 2rem;
}
#concept_message ._title h3 {
    font-weight: bold;
}
#concept_message ._txt {
    margin-bottom: 2.5rem;
}
#concept_message ._txt p {
    margin-bottom: 1.5rem;
}
#concept_message ._img {
    margin-bottom: 1rem;
}
#concept_message ._img img {
    width: 100%;
}
#concept_message ._name {
    text-align: center;
    margin-bottom: 1rem;
}
#concept_message ._name span:nth-child(1) {
    margin-right: 1rem;
}
#concept_message ._name span:nth-child(2) {
    font-size: 2rem;
    font-weight: bold;
}
#concept_box .concept_item {
    margin-bottom: 4rem;
}
#concept_box .concept_item:last-child {
    margin-bottom: 0;
}
#concept_box .concept_item ._img {
    margin-bottom: 1.5rem;
}
#concept_box .concept_item ._img img {
    width: 100%;
}
#concept_box .concept_item ._txt ._title {
    margin-bottom: 0.5rem;
}
#concept_box .concept_item ._txt ._title h3 {
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
}
/* menu
------------------------------------------------------------- */
#menu_body {
    background-image: linear-gradient(rgba(255, 251, 245, 0.75)), url(../img/menu-bg.jpg);
    background-size: cover;
}
#menu_body ._grand {
    margin-bottom: 3rem;
}
#menu_body ._box {
    margin-bottom: 2rem;
}
#menu_body ._box ._head {
    margin-bottom: 2rem;
}
#menu_body ._box ._head ._title h3 {
    font-size: 2rem;
    font-weight: bold;
    font-style: italic;
    color: var(--color-accent);
    text-align: center;
}
#menu_body ._box ._head ._desc {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-accent);
}
#menu_body ._box ._body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 5%;
    column-gap: 5%;
}
#menu_body ._box ._item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    margin-bottom: 2rem;
}
#menu_body ._box ._item ._img {
    aspect-ratio: 1.5;
    overflow: hidden;
    margin-bottom: 1rem;
}
#menu_body ._box ._item ._img img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#menu_body ._box ._item ._title {
    margin-bottom: 0.66rem;
}
#menu_body ._box ._item ._title h4 {
    position: relative;
    text-align: center;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 1rem;
}
#menu_body ._box ._item ._title h4::before {
    position: absolute;
    content: "";
    bottom: -0.66rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 4rem;
    border-bottom: 1px dashed var(--color-accent);
}
#menu_body ._box ._item ._desc {
    font-size: 0.9rem;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
}
#menu_body ._box ._item ._desc br {
    display: none;
}
/* shop
------------------------------------------------------------- */
#shop .common_head ._desc {
    margin-bottom: 2rem;
}
#shop_whole .shop_area {
    margin-bottom: 7.5rem;
}
#shop_whole .shop_area:last-child {
    margin-bottom: 0;
}
#shop_whole .shop_area_head {
    background-color: var(--color-accent);
    color: #fff;
    padding: 0.5rem;
    margin-bottom: 2.5rem;
    background-image: linear-gradient(rgba(68, 83, 119, 0.85)), url(../img/logo_img.png);
    background-size: auto, 15%;
}
#shop_whole .shop_area_head h3 {
    position: relative;
    font-size: 1.5rem;
    text-align: center;
}
#shop_whole .shop_item {
    margin-bottom: 5rem;
    line-height: 1.6;
}
#shop_whole .shop_item ._img {
    position: relative;
    aspect-ratio: 1.5;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
#shop_whole .shop_item ._img ._ex {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#shop_whole .shop_item ._img ._takeout {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 3.5rem;
}
#shop_whole .shop_item ._img ._tip {
    position: absolute;
    bottom: 5rem;
    right: 0.5rem;
    font-weight: 600;
    background-color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    clip-path: inset(calc(100% + 1rem) 0 -1rem 0);
    transition: clip-path 0.5s;
}
#shop_whole .shop_item ._img ._tip._appear {
    clip-path: inset(0 0 -1rem 0);
}
#shop_whole .shop_item ._img ._tip::after {
    position: absolute;
    content: "";
    bottom: -0.8rem;
    right: 1.75rem;
    width: 0.8rem;
    height: 1rem;
    background-color: #ffffff;
    clip-path: polygon(0 0, 100% 0, 75% 100%);
}
#shop_whole .shop_item ._name {
    margin-bottom: 2rem;
}
#shop_whole .shop_item ._name h4 {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    text-align: center;
}
#shop_whole .shop_item ._name h4::before {
    position: absolute;
    content: "";
    left: -4.5rem;
    top: 0.4rem;
    width: 3.6rem;
    height: 1.5rem;
    background-image: url(../img/logo_img.png);
    background-repeat: no-repeat;
    background-size: contain;
    transform: scaleX(-1);
}
#shop_whole .shop_item ._name ._please {
    display: flex;
    justify-content: center;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
}
#shop_whole .shop_item ._name ._please ._reserve a {
    background-color: #cf1211;
    border: 0.5px solid #cf1211;
    font-weight: bold;
}
#shop_whole .shop_item ._data {
    display: flex;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    margin-bottom: 0.5rem;
}
#shop_whole .shop_item ._data ._head {
    width: 5rem;
}
#shop_whole .shop_item ._data ._head span {
    display: block;
    white-space: nowrap;
    background-color: #efefef;
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    text-align: center;
}
#shop_whole .shop_item ._data ._body {
    width: calc(100% - 6rem);
}
#shop_whole .shop_item ._address a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    background-color: var(--color-accent);
    padding: 0.33rem 1rem;
    margin: 0.33rem 0;
    font-size: 0.8rem;
    font-style: normal;
    line-height: 1;
}
#shop_whole .shop_item ._note ._body {
    color: red;
    font-size: 0.9rem;
}
#shop_whole .shop_item ._etc ._body {
    font-weight: bold;
}
#shop_whole .shop_item ._href {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}
#shop_whole .shop_item ._href a {
    display: block;
}
#shop_whole .shop_item ._href img {
    height: 4rem;
}
/* contact
------------------------------------------------------------- */
#contact .common_head h2 {
    font-size: 1.75rem;
    font-style: normal;
}
#contact .common_head ._desc {
    color: red;
}
#contact .common_head ._desc ._main {
    font-weight: bold;
}
#contact_body {
    padding-top: 0;
}
#s_form ._item {
    margin-bottom: 1.5rem;
}
#s_form ._item._confirm {
    margin-bottom: 4rem;
}
#s_form ._item ._head {
    display: flex;
    align-items: center;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    margin-bottom: 0.5rem;
}
#s_form ._item ._head ._required {
    font-size: 0.8rem;
    line-height: 1;
    padding: 0.35rem 0.7rem;
    background-color: #df0000;
    color: #fff;
    white-space: nowrap;
}
#s_form ._item ._head ._required._non {
    background-color: #aaa;
}
#s_form ._item ._head ._unit {
    white-space: nowrap;
}
#s_form ._item ._body {
    display: flex;
    align-items: baseline;
    -moz-column-gap: 0.666rem;
    column-gap: 0.666rem;
}
#s_form ._item ._body ._note {
    display: block;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-top: 0.5rem;
}
#s_form ._item ._send {
    display: flex;
    justify-content: center;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    margin-top: 3rem;
}
#s_form ._item._address ._body {
    line-height: 2.5;
}
#s_form input._name {
    width: 100%;
}
#s_form input._zip {
    width: 10rem;
}
#s_form textarea {
    width: 100%;
    height: 8rem;
}
#s_form input[type=submit],
#s_form input[type=reset] {
    font-size: 1.1rem;
    font-style: normal;
    cursor: pointer;
    margin-inline: 0;
}
#s_form input[type=reset] {
    background-color: #fff;
    color: var(--color-accent);
}
#s_form .wpcf7-list-item {
    margin: 0;
}
#s_form .wpcf7-list-item label {
    display: flex;
    align-items: center;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    cursor: pointer;
}
#s_form .wpcf7-submit:disabled {
    opacity: 0.5;
    cursor: no-drop;
}
#s_form .wpcf7-submit:disabled:hover {
    background-position: 100%;
}
#s_form .wpcf7-submit {
    padding: 0.5rem 3rem;
    font-size: 1.1rem;
    cursor: pointer;
}
#s_form .wpcf7-response-output {
    width: -moz-fit-content;
    width: fit-content;
    margin: 2rem auto;
    padding: 0.5rem 1rem;
    background-color: #df0000;
    color: #fff;
    border: none;
}
#s_form .sent .wpcf7-response-output {
    background-color: #14a914;
}
#s_form .wpcf7-spinner {
    display: none;
}
#s_form .wpcf7-not-valid-tip {
    font-size: 1rem;
}
/* fc
------------------------------------------------------------- */
#fc_form_body {
    padding-top: 0;
}
/* news
------------------------------------------------------------- */
#news .common_head ._img {
    width: 80%;
    max-width: 960px;
    margin: 1.5rem auto;
}
#news_body {
    padding-top: 0;
}
#news_body ._main {
    margin-bottom: 3rem;
}
.news_list {
    margin-bottom: 2.5rem;
}
.news_list ._list ._item a {
    display: flex;
    align-items: center;
    -moz-column-gap: 1rem;
    column-gap: 1rem;
    padding: 1rem;
    margin-bottom: 0.5rem;
    background-color: rgba(69, 83, 119, 0.05);
}
.news_list ._list ._item a ._type {
    display: flex;
    flex-direction: column;
    row-gap: 0.25rem;
    line-height: 2;
    margin-top: 0.25rem;
}
.news_list ._list ._item a ._type span {
    background-color: var(--color-accent);
    color: #fff;
    font-size: 0.8rem;
    padding: 0 0.5rem;
}
.news_list ._list ._item a ._title {
    flex: 1;
}
#news_body ._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_body ._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_body ._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_body ._page nav .nav-links .page-numbers.current {
    background-color: var(--color-accent);
    color: #fff;
}
#news_body ._page nav .nav-links .page-numbers.dots {
    border: none;
    padding: 0;
    aspect-ratio: unset;
    width: auto;
}
#news_body ._side ._sort {
    margin-bottom: 2.5rem;
}
#news_body ._side ._sort ._head {
    overflow: hidden;
    margin-bottom: 1rem;
}
#news_body ._side ._sort ._head h4 {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--color-accent);
}
#news_body ._side ._sort ._head h4::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 1vw;
    left: calc(100% + 1rem);
    width: 90vw;
    height: 0.5px;
    background-color: var(--color-accent);
}
#news_body ._side ._sort ._body ul {
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 1.333%;
    column-gap: 1.333%;
    row-gap: 0.5rem;
}
#news_body ._side ._sort ._body li {
    width: 24%;
}
#news_body ._side ._sort ._body a {
    background-color: rgba(69, 83, 119, 0.05);
    display: block;
    align-content: center;
    text-align: center;
    padding: 0.5rem;
    height: 100%;
}
/* event
------------------------------------------------------------- */
#event .common_head ._desc ._main {
    font-size: 1.5rem;
    font-weight: 600;
}
#event_body {
    background-color: var(--color-accent);
    color: #fff;
}
#event_body .event_desc {
    margin-bottom: 5rem;
}
#event_body .event_desc ._txt {
    margin-bottom: 2.5rem;
}
#event_body .event_desc ._txt p {
    margin-bottom: 1rem;
}
#event_body .event_desc ._txt a {
    font-size: 1.1rem;
    color: #fff;
    border-bottom: 1px dashed #fff;
}
#event_body .event_list ._list ._item {
    margin-bottom: 5rem;
}
#event_body .event_list ._list ._item ._title {
    overflow: hidden;
}
#event_body .event_list ._list ._item ._title h3 {
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}
#event_body .event_list ._list ._item ._title h3::before,
#event_body .event_list ._list ._item ._title h3::after {
    position: absolute;
    content: "";
    top: 50%;
    height: 1px;
    background-color: #ffffff;
    margin: auto;
}
#event_body .event_list ._list ._item ._title h3::before {
    left: -45vw;
    right: calc(100% + 1rem);
}
#event_body .event_list ._list ._item ._title h3::after {
    right: -45vw;
    left: calc(100% + 1rem);
}
#event_body .event_list ._list ._item ._period {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
}
#event_body .event_list ._list ._item ._address {
    margin-bottom: 0.5rem;
}
#event_body .event_list ._list ._item ._access {
    margin-bottom: 1rem;
}
#event_body .event_list ._list ._item ._map {
    aspect-ratio: 1.25;
    overflow: hidden;
    margin-bottom: 1.5rem;
}
#event_body .event_list ._list ._item ._map iframe {
    width: 100%;
    height: 100%;
}
#event_body .event_list ._list ._item ._href a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    font-style: normal;
    font-weight: 600;
    margin: 0 auto;
    background-color: #fff;
    padding: 0.5rem 1.5rem;
}
/* news single
------------------------------------------------------------- */
#eyecatch {
    margin-bottom: 2.5rem;
}
#news_content ._content ._head {
    background-color: var(--color-accent);
    color: #fff;
    padding: 1rem;
    margin-bottom: 1.5rem;
    background-image: linear-gradient(rgba(68, 83, 119, 0.85)), url(../img/logo_img.png);
    background-size: auto, 15%;
}
#news_content ._content ._head h2 {
    font-size: 1.25rem;
    font-weight: 600;
}
#news_content ._content ._body {
    margin-bottom: 2rem;
}
#news_content ._content ._body h3,
#news_content ._content ._body h4,
#news_content ._content ._body h5,
#news_content ._content ._body h6,
#news_content ._content ._body p {
    margin-bottom: 1.5rem;
}
#news_content ._content ._body img {
    margin-bottom: 2rem;
}
/* 768px
-------------------------------------------------------------------------------- */
@media (width > 767px) {
    /* loading
  ------------------------------------------------------------- */
    #intro_logo {
        width: 25vw;
        height: 25vw;
    }
    /* common
  ------------------------------------------------------------- */
    html {
        font-size: 2vw;
    }
    body:not(#news) .common_head ._img {
        width: 80%;
        max-width: 960px;
        margin: 1.5rem auto 2rem;
    }
    .common_head ._desc {
        text-align: center;
    }
    .common_head ._desc ._main {
        margin: 0 auto 1rem;
    }
    .common_head ._desc ._main br {
        display: block;
    }
    .common_head ._desc ._sub {
        margin-inline: auto;
    }
    /* header
  ------------------------------------------------------------- */
    #header nav ul._menu li a {
        padding: 0.666rem 1rem;
    }
    /* footer
  ------------------------------------------------------------- */
    #footer_item {
        display: flex;
        justify-content: center;
        -moz-column-gap: 5%;
        column-gap: 5%;
    }
    #footer_item ._facebook {
        width: 45%;
        margin-bottom: 0;
    }
    #footer_item ._info {
        width: 50%;
    }
    #footer_item ._info ._img img {
        width: 100%;
        max-width: 100%;
    }
    #footer_item ._info ._desc h5 {
        font-size: 0.6rem;
    }
    #footer_item ._info ._href a {
        font-size: 0.66rem;
    }
    .footer_swim {
        width: 7.5rem;
        bottom: 15rem;
    }
    /* main
  ------------------------------------------------------------- */
    /* top
  ------------------------------------------------------------- */
    #top_slide .swiper-slide ._inner {
        transition: opacity 1s;
    }
    #top_slide .swiper-slide.swiper-slide-prev ._inner,
    #top_slide .swiper-slide.swiper-slide-next ._inner {
        opacity: 0.25;
    }
    #top_slide .swiper-slide.swiper-slide-active ._inner {
        opacity: 1;
    }
    #top_concept ._img {
        padding: 0 3rem 3rem;
    }
    #top_menu .section_body>._desc {
        text-align: center;
    }
    #top_menu .section_body>._desc br {
        display: block;
    }
    #top_menu ._box ._body {
        display: flex;
        justify-content: center;
        -moz-column-gap: 10%;
        column-gap: 10%;
    }
    #top_menu ._box ._item {
        width: 45%;
    }
    /* concept
  ------------------------------------------------------------- */
    #concept_message ._title h3 {
        text-align: center;
    }
    #concept_message ._txt {
        text-align: center;
    }
    #concept_message ._img {
        margin-inline: auto;
        width: 50%;
    }
    #concept_message ._message img {
        margin-inline: auto;
    }
    #concept_box .concept_item {
        margin-bottom: 0;
        display: flex;
        justify-content: center;
    }
    #concept_box .concept_item:nth-child(2n) {
        flex-direction: row-reverse;
    }
    #concept_box .concept_item ._img {
        width: 50%;
        aspect-ratio: 1.25;
        margin-bottom: 0;
        overflow: hidden;
    }
    #concept_box .concept_item ._img img {
        -o-object-fit: cover;
        object-fit: cover;
        width: 100%;
        height: 100%;
    }
    #concept_box .concept_item ._txt {
        width: 50%;
        padding: 2rem;
        align-content: center;
    }
    #concept_box .concept_item ._txt ._title h3 {
        font-size: 1.1rem;
    }
    #concept_box .concept_item ._txt ._desc {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    /* menu
  ------------------------------------------------------------- */
    /* shop
  ------------------------------------------------------------- */
    #shop_whole .shop_area {
        margin-bottom: 5rem;
    }
    #shop_whole .shop_area_head {
        background-size: auto, 10%;
    }
    #shop_whole .shop_area_body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        -moz-column-gap: 5%;
        column-gap: 5%;
    }
    #shop_whole .shop_item {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 10;
        font-size: 0.9rem;
    }
    #shop_whole .shop_item ._img {
        margin-bottom: 1rem;
    }
    #shop_whole .shop_item ._name h4 {
        font-size: 1.25rem;
    }
    #shop_whole .shop_item ._name h4::before {
        left: -4rem;
        width: 3rem;
        height: 1.3rem;
    }
    #shop_whole .shop_item ._name ._please ._reserve a {
        background-image: linear-gradient(-90deg, #cf1211 0%, #cf1211 50%, #fff 50%, #fff 100%);
    }
    #shop_whole .shop_item ._name ._please ._reserve a:hover {
        color: #cf1211;
    }
    #shop_whole .shop_item ._data ._head {
        width: 4rem;
    }
    #shop_whole .shop_item ._data ._head span {
        font-size: 0.666rem;
        padding: 0.2rem 0.6rem;
    }
    #shop_whole .shop_item ._address a {
        font-size: 0.7rem;
    }
    #shop_whole .shop_item ._note ._body {
        font-size: 0.8rem;
    }
    #shop_whole .shop_item ._href {
        gap: 0.75rem;
    }
    #shop_whole .shop_item ._href img {
        height: 3rem;
    }
    /* contact
  ------------------------------------------------------------- */
    #s_form {
        max-width: 600px;
        margin-inline: auto;
    }
    #s_form ._item {
        display: flex;
        justify-content: center;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }
    #s_form ._item ._head {
        margin-bottom: 0;
        width: 12rem;
    }
    #s_form ._item ._body {
        width: calc(100% - 12rem);
    }
    #s_form ._item ._wide {
        font-size: 0.9rem;
    }
    #s_form .wpcf7-response-output {
        font-size: 0.8rem;
    }
    /* fc
  ------------------------------------------------------------- */
    /* news
  ------------------------------------------------------------- */
    .news_list ._list ._item a ._head {
        display: flex;
        -moz-column-gap: 1rem;
        column-gap: 1rem;
    }
    .news_list ._list ._item a ._type {
        margin-top: 0.125rem;
    }
    /* event
  ------------------------------------------------------------- */
    #event_body .event_list ._list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        -moz-column-gap: 5%;
        column-gap: 5%;
    }
    #event_body .event_list ._list ._item {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 6;
    }
    #event_body .event_list ._list ._item ._title h3 {
        font-size: 1.25rem;
    }
    #event_body .event_list ._list ._item ._title h3::before {
        left: -21.25vw;
        right: calc(100% + 1rem);
    }
    #event_body .event_list ._list ._item ._title h3::after {
        right: -21.25vw;
    }
    #event_body .event_list ._list ._item ._address {
        font-size: 0.9rem;
    }
    #event_body .event_list ._list ._item ._access {
        font-size: 0.9rem;
    }
    #event_body .event_list ._list ._item ._map {
        aspect-ratio: 1.5;
    }
    #event_body .event_list ._list ._item ._href a {
        font-size: 0.9rem;
    }
    /* news single
  ------------------------------------------------------------- */
}
/* 1024px
-------------------------------------------------------------------------------- */
@media (width > 1024px) {
    /* loading
  ------------------------------------------------------------- */
    #intro_logo {
        width: 15vw;
        height: 15vw;
    }
    /* common
  ------------------------------------------------------------- */
    html {
        font-size: 14px;
    }
    body {
        padding-top: 100px;
    }
    .display_pc {
        display: block;
    }
    .display_sp {
        display: none;
    }
    .href a,
    .href input {
        border: 0.5px solid var(--color-accent);
        background-color: unset;
        background-image: linear-gradient(-90deg, var(--color-accent) 0%, var(--color-accent) 50%, #fff 50%, #fff 100%);
        background-size: 200%;
        background-position: 100%;
        transition: 0.5s;
        color: #fff;
    }
    .href a:hover,
    .href input:hover {
        background-position: 0;
        color: var(--color-accent);
    }
    .href._invert a, #s_form input[type=reset] {
        border: 0.5px solid #fff;
        background-color: unset;
        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.5s;
    }
    .href._invert a:hover, #s_form input[type=reset]:hover {
        background-position: 0;
        color: #fff;
    }
    .section_head h2 {
        font-size: 3rem;
    }
    body:not(#news) .common_head ._img {
        position: relative;
        width: 66.666%;
        overflow: hidden;
    }
    .common_head ._desc ._main {
        font-weight: 600;
        font-size: 1.25rem;
    }
    .common_head ._desc ._sub {
        font-size: 0.9rem;
    }
    #scroll_down {
        position: absolute;
        display: block;
        margin: auto;
        bottom: 0;
        left: calc(50% - 1rem);
        width: 1.5rem;
        height: 4rem;
        animation-name: scroll_down;
        animation-duration: 3s;
        animation-timing-function: ease-in-out;
        animation-delay: 0s;
        animation-iteration-count: infinite;
        animation-direction: normal;
        animation-fill-mode: forwards;
        animation-play-state: running;
    }
    @keyframes scroll_down {
        0% {
            bottom: 12rem;
            opacity: 0;
        }
        33.3% {
            opacity: 0;
        }
        66.6% {
            opacity: 1;
        }
        100% {
            bottom: -8rem;
            opacity: 1;
        }
    }
    /* header
  ------------------------------------------------------------- */
    #header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100px;
        padding: 0 2.5rem;
    }
    #header ._logo {
        width: 200px;
    }
    #header nav {
        position: static;
        display: flex;
        align-items: center;
        clip-path: unset;
        -moz-column-gap: 2rem;
        column-gap: 2rem;
        background-color: unset;
        right: 0;
        padding: 0;
    }
    #header nav ul._menu {
        margin-bottom: 0;
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        -moz-column-gap: clamp(0.75rem, 1.2vw, 2rem);
        column-gap: clamp(0.75rem, 1.2vw, 2rem);
        row-gap: 0.5rem;
    }
    #header nav ul._menu li:last-child {
        /* width: 33.3%; */
        max-width: 16rem;
    }
    #header nav ul._menu li:last-child a {
        text-align: right;
    }
    #header nav ul._menu li a {
        position: relative;
        padding: 0;
        font-size: clamp(0.9rem, 1.2vw, 1rem);
        border: none;
        text-align: unset;
        white-space: nowrap;
    }
    #header nav ul._menu li a::before {
        position: absolute;
        content: "";
        bottom: -0.175rem;
        left: 0;
        right: 100%;
        height: 1px;
        margin: auto;
        background-color: #a7a7a7;
        transition: right 0.5s;
    }
    #header nav ul._menu li a:hover::before {
        right: 0;
    }
    #header nav ul._sns {
        margin-bottom: 0;
        padding: 0;
        gap: 1rem;
    }
    #header ._index {
        display: none;
    }
    /* footer
  ------------------------------------------------------------- */
    footer {
        padding-bottom: 12.5rem;
    }
    footer::before {
        background-size: 4rem;
    }
    #footer_item {
        justify-content: center;
        align-items: center;
        margin-bottom: 5rem;
    }
    #footer_item ._facebook {
        width: 45%;
        text-align: right;
    }
    #footer_item ._info {
        width: 45%;
    }
    #footer_item ._info ._desc h4 {
        font-size: 1.2rem;
    }
    #footer_item ._info ._desc h5 {
        font-size: 0.8rem;
        margin-bottom: 0.75rem;
    }
    #footer_item ._info ._desc p {
        font-size: 0.9rem;
    }
    #footer_item ._info ._href a {
        font-size: 0.9rem;
        font-weight: 600;
    }
    #copyright {
        font-size: 0.9rem;
    }
    #fixed_menu {
        bottom: 15px;
    }
    #fixed_menu a {
        font-size: 1.25rem;
        background-color: unset;
    }
    #page_top {
        bottom: 15px;
    }
    .footer_swim {
        width: 9rem;
        transform-origin: 50% 25rem;
        bottom: 20rem;
    }
    .footer_swim a img {
        transition: 0.5s;
    }
    .footer_swim a:hover img {
        filter: invert(15%) sepia(95%) saturate(6932%) hue-rotate(358deg) brightness(95%) contrast(112%);
    }
    /* main
  ------------------------------------------------------------- */
    /* top
  ------------------------------------------------------------- */
    #top_concept .inner {
        padding: 2rem 0 5rem;
    }
    #top_concept .section_head {
        margin-bottom: 3rem;
    }
    #top_concept .section_body {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
    }
    #top_concept ._txt {
        width: 40%;
    }
    #top_concept ._img {
        width: 40%;
        padding: 0;
    }
    #top_menu {
        background-size: 50%;
        background-position: -16% 0;
    }
    /* concept
  ------------------------------------------------------------- */
    /* menu
  ------------------------------------------------------------- */
    #menu_body ._box ._head ._title h3 {
        font-size: 2.5rem;
    }
    #menu_body ._box ._body {
        -moz-column-gap: 17.5%;
        column-gap: 17.5%;
    }
    #menu_body ._box ._item {
        margin-bottom: 5rem;
    }
    /* shop
  ------------------------------------------------------------- */
    #shop_whole .shop_area_body {
        -moz-column-gap: 17.5%;
        column-gap: 17.5%;
    }
    #shop_whole .shop_item ._data ._head span {
        font-size: 0.75rem;
    }
    #shop_whole .shop_item ._img:has(._takeout):hover ._tip {
        clip-path: inset(0 0 -1rem 0);
    }
    /* contact
  ------------------------------------------------------------- */
    #contact .common_head h2 {
        font-size: 2.25rem;
    }
    #s_form input[type=reset] {
        background-color: unset;
        color: unset;
        border: 0.5px solid var(--color-accent);
    }
    #s_form .wpcf7-response-output {
        font-size: 1rem;
    }
    /* fc
  ------------------------------------------------------------- */
    /* news
  ------------------------------------------------------------- */
    #news_body .inner {
        display: flex;
        justify-content: space-between;
    }
    #news_body ._main {
        width: 77.5%;
    }
    #news_body ._side {
        width: 17.5%;
    }
    #news_body ._side ._sort ._body ul {
        display: block;
    }
    #news_body ._side ._sort ._body li {
        width: auto;
        margin-bottom: 0.5rem;
    }
    #news_body ._side ._sort ._body a {
        padding: 0.25rem;
    }
    /* event
  ------------------------------------------------------------- */
    #event_body .event_desc {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        -moz-column-gap: 3rem;
        column-gap: 3rem;
    }
    #event_body .event_desc ._txt {
        width: 37%;
    }
    #event_body .event_desc ._img {
        width: 40%;
    }
    #event_body .event_list ._list {
        grid-template-columns: 1fr 1fr 1fr;
        -moz-column-gap: 2.5rem;
        column-gap: 2.5rem;
    }
    #event_body .event_list ._list ._item ._address {
        font-size: 1rem;
    }
    #event_body .event_list ._list ._item ._access {
        font-size: 1rem;
    }
    #event_body .event_list ._list ._item ._href a {
        font-size: 1rem;
    }
    /* news single
  ------------------------------------------------------------- */
    #eyecatch img {
        width: 100%;
    }
    #news_content .inner {
        width: 640px;
    }
    #news_content ._content ._head {
        background-size: auto, 10%;
        margin-bottom: 2rem;
    }
}
/* thanks
-------------------------------------------------------------------------------- */
/*# sourceMappingURL=style.css.map */
