@charset "utf-8";

/* =========================================================
reset
========================================================= */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, p, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

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

ol, ul {
    list-style: none;
}

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

input[type="submit"] {
    appearance: none;
    -webkit-appearance: none;
}

/* =========================================================
base
========================================================= */
html {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    scroll-behavior: smooth;
}

*, *:before, *:after {
    box-sizing: inherit;
}

::-webkit-scrollbar {
    display: none;
}

body {
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    position: relative;
}

img,iframe {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a,
input[type="submit"] {
    text-decoration: none;
    cursor: pointer;
    transition: 0.3s;
}

a:hover,
input[type="submit"]:hover {
    transition: 0.3s;
}

strong{
    font-weight: bold;
}

/* =========================================================
utility
========================================================= */
.pc-none {
    display: none;
}
@media screen and (max-width: 414px) {
    .pc-none {
        display: block;
    }
    .mb-none {
        display: none;
    }
}

/* =========================================================
variable
========================================================= */

/* color
--------------------------------------------------------- */
:root {
    --color-primary: #CC001B;
    --color-secondary: #F8F8F8;

    --text-color-accent: #AC0000;
    --text-color-base: #000000;
    --text-color-light: #FFFFFF;
}

/* font
--------------------------------------------------------- */
:root {
    --font-family-serif:  "Zen Old Mincho", serif;
    --font-family-sans: "Inter", sans-serif;

    --font-size-small: 14px;
    --font-size-base: 16px;
    --font-size-medium: 18px;
    --font-size-large: 20px;
    --font-size-x-large: 26px;
}

@media screen and (max-width: 414px) {
    :root {
        --font-size-medium: 17px;
        --font-size-large: 18px;
        --font-size-x-large: 24px;
    }
}

/* layout
--------------------------------------------------------- */
:root {
    --content-max-width: 1360px;
    --content-padding-row: 70px 0;
    --content-padding-wrap: 0 20px;
}

@media screen and (max-width: 414px) {
    :root {
        --content-padding-row: 40px 0;
    }
}

/* =========================================================
common
========================================================= */
body {
    color: var(--text-color-base);
    font-family: var(--font-family-serif);
    font-size: var(--font-size-base);
    font-feature-settings: "palt";
}

a {
    color: inherit;
}

/* layout
--------------------------------------------------------- */
.row {
    padding: var(--content-padding-row);
}

.wrap {
    max-width: var(--content-max-width);
    padding: var(--content-padding-wrap);
    margin: 0 auto;
}

.ta-center {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
}

.flex {
    display: flex;
    flex-wrap: wrap;
    flex-basis: auto;
}

.relative {
    position: relative;
}

@media screen and (max-width: 414px) {
    .mb-column {
        flex-direction: column;
    }

    .mb-column>*{
        width: 100%;
    }
}

/* title
--------------------------------------------------------- */
.title-sec {
    margin-bottom: 50px;
    color: var(--text-color-accent);
    text-align: center;
    font-weight: normal;
    letter-spacing: 0.1em;
}

.title-sec_en{
    display: block;
font-size: 41px;
}

.title-sec_jp{
    display: block;
font-size: var(--font-size-medium);
}

@media screen and (max-width: 414px) {
.title-sec {
    margin-bottom: 0;
}

.title-sec_en{
    font-size: 35px;
}
}

/* =========================================================
header
========================================================= */
:root {
    --header-height: 120px;
}

:target {
    scroll-margin-top: var(--header-height);
}

main{
margin-top: var(--header-height);
}

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    padding: 49px 60px;
    background-color: #ffffffa6;
    backdrop-filter: blur(5px);
}

.header-inner {
    align-items: flex-end;
    justify-content: space-between;
}

.header-logo {
    max-width: 207px;
}

.logo:hover {
    opacity: 0.7;
}

.header-nav {
    gap: 30px 58px;
    font-family: var(--font-family-sans);
    color: var(--text-color-accent);
}

.header-nav a{
    display: block;
    position: relative;
    padding-bottom: 4px;
}

.header-nav a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;    
    height: 2px;
    background-color: var(--color-primary);
    transition: 0.2s;
}

.header-nav a:hover::before {
    width: 100%;    
    transition: 0.2s;
}


@media screen and (max-width: 768px) {
    :root {
    --header-height: 80px;
}

.header{
    padding: 16px 20px;
}

    .header-inner {
        align-items: center;
    }

    .header-logo{
        max-width: 136px;
    }

    .header-nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 30vh;
        background-color: var(--color-primary);
        color: var(--text-color-light);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transform: translateY(-100%);
        overflow: hidden;
        transition: 0.5s;
    }

    .header-nav.open {
        transform: translateY(0);
        opacity: 1;
        transition: 0.5s;
    }

}

/* hamburger
--------------------------------------------------------- */
.hamburger {
    display: none;
        position: relative;
        width: 48px;
        height: 48px;
        background-color: var(--text-color-accent);
        border-radius: 50%;
    }

    .hamburger span {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: 18px;
        height: 2px;
        background-color: var(--text-color-light);
        transition: 0.5s;
    }

    .hamburger span:first-of-type {
        top: calc(50% - 5px);
    }

    .hamburger span:nth-of-type(2) {
        top: 50%;
    }

    .hamburger span:last-of-type {
        top: calc(50% + 5px);
    }

    .hamburger.open span:first-of-type {
        top: 50%;
        transform: translate(-50%,-50%) rotate(45deg);
    }

    .hamburger.open span:nth-of-type(2) {
        opacity: 0;
    }

    .hamburger.open span:last-of-type {
        top: 50%;
        transform:  translate(-50%,-50%) rotate(-45deg);
    }

@media screen and (max-width: 414px) {
    .hamburger{
        display: block;
    }
}

/* =========================================================
footer
========================================================= */
.footer{
    padding: 27px 60px;
}
.footer-inner{
    justify-content: space-between;
    align-items: center;
    gap: 35px;
}

.footer-logo{
    width: 145px;
}

.copyright{
    font-family: var(--font-family-sans);
font-size: var(--font-size-small);
text-align: right;
}

@media screen and (max-width: 414px) {
.footer{
    padding: 28px 20px;
}

.footer-inner{
    justify-content: center;
}

.footer-logo{
    width: 175px;
}

.copyright{
    text-align: center;
}

}

/* =========================================================
loading
========================================================= */
.loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background-color: #fff;
    animation: 0.2s cubic-bezier(0.5, 0.06, 0.15, 1) 1.6s 1 normal both running loading;
    z-index: 1000;
        transform-origin: bottom;
}

.loading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    animation: 0.2s cubic-bezier(0.5, 0.06, 0.15, 1) 1043.36ms 1 normal both running loadingBg;
}

.loading img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) scale(30);
      animation: 440.445ms cubic-bezier(0.22, 0.61, 0.36, 1) 0ms 1 normal both running loadingImg;
}

@keyframes loadingImg{
0%{
    transform: translate(-50%,-50%) scale(70);
}

100%{
    transform: translate(-50%,-50%) scale(1);
}
}

@keyframes loadingBg{
    0%{
    transform: translateX(-100%);
    transform-origin: top;
    }
    
    90%{
        transform-origin: bottom;
    }
    
    100%{
        transform: translateX(0);
    }
}

@keyframes loading{
    100%{
        transform: translateX(100%);
        opacity: 1;
    }

}    

/* =========================================================
bg
========================================================= */
.bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: -2;
    transition: 0.8s ease-in-out;
}

.bg.is-red{
background-color: var(--text-color-accent);
transition: 0.8s ease-in-out;
}

.bg-red {
    padding: 110px 20px 75px;
}

.bg-red,
.bg-red .title-sec,
section:has(.bg-red)+section .title-sec{
    color: var(--text-color-accent);
    transition: 0.8s ease-in-out 0.1s;
}

.bg-red.is-red,
 .bg-red.is-red .title-sec,
section:has(.bg-red.is-red)+section .title-sec{
    color: var(--text-color-light);
    transition: 0.8s ease-in-out 0.1s;
}

@media screen and (max-width: 414px) {
.bg-red {
    padding:  70px 20px 85px;
}

}

/* =========================================================
overlay
========================================================= */
.overlay{
    position: fixed;
    top: 30%;
    left: 0;
    width: 100%;
    z-index: -1;
    text-align: center;
}

@media screen and (max-width: 414px) {
    .overlay{
        top: 35%;
        width: 125%;
    }
}

/* =========================================================
kv
========================================================= */
.kv-copy {font-size: 50px;letter-spacing: 0.05em;line-height: 1.66;color: var(--color-primary);margin-top: 27px;}

.kv img{
    margin: 58px 0 91px;
}

.kv-lead {
  max-width: 800px;
  margin: 0 auto;
  font-size: var(--font-size-large);
  line-height: 2.1;
}

.kv-lead_jp {
    color: var(--text-color-accent);
    margin-bottom: 37px;
}

.kv-lead_en {
font-size: var(--font-size-medium);
}

@media screen and (max-width: 414px) {
.kv-copy {
font-size: 30px;
letter-spacing: 0.04em;
line-height: 52px;
}
.kv-lead {line-height: 1.83;}

.kv img{
    margin: 74px 0 60px;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.kv-lead_jp {
    margin-bottom: 46px;
}

.kv-lead_en {
font-size: 18px;
}

}

/* =========================================================
menu
========================================================= */
.menu-list {
max-width: 898px;
margin: 0 auto;
}

.menu-item {
    min-height: 143px;
    padding: 20px 0;
border-bottom: 1px solid #fff;
justify-content: space-between;
align-items: center;
}

.menu-item:last-child{
    border: none;
}

.menu-title {font-size: var(--font-size-x-large);letter-spacing: 0.1em;}

.menu-title span{
font-size: var(--font-size-medium);
}

.menu-price {
    flex-wrap: nowrap;
    justify-content: space-between;
gap: 30px;
width: 100%;
max-width: 351px;
}

.menu-price-type {
    text-transform: uppercase;
        letter-spacing: 0.15em;
}

.menu-price-yen {font-size: var(--font-size-x-large);letter-spacing: 0.06em;text-align: center;}

@media screen and (max-width: 860px) {
.menu-item{
  flex-direction: column;
  align-items: flex-start;
  min-height: 155px;
}

.menu-item_narrow{
    min-height: 135px;
}
}

@media screen and (max-width: 414px) {
.menu-title span{
font-size: 13px;
}

}

/* =========================================================
informaiton
========================================================= */
.info-list {max-width: 898px;margin: 90px auto 0;}

.info-item {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    gap: 46px;
    padding: 18px 27px;
    background-color: #fff;
}

.info-item:nth-of-type(2n-1){
    background-color: var(--color-secondary);
}

.info-title {
    min-width: 140px;
font-size: var(--font-size-medium);
letter-spacing: 0.1em;
}

.info-text {
width: 100%;
font-size: var(--font-size-medium);
}

.info-text>.flex:first-child{
    margin-bottom: 19px;
}

.info-text-1 {
margin-right: 60px;
}

.info-text-2 {
width: 50%;
text-transform: uppercase;
}

.info-text-3 {

}

.info-map iframe{
    width: 100%;
aspect-ratio: 1320 / 515;
min-height: 245px;
margin-top: 66px;
    filter: saturate(0);
}

@media screen and (max-width: 860px) {
  .info-list{margin-top: 70px;}

.info-item {gap: 30px;padding: 18px 20px;align-items: flex-start;}

.info-title {
    min-width: 100px;
}

.info-text>.flex{
    position: relative;
    padding-top: 20px;
}

.info-text>.flex:first-child {
    margin-bottom: 27px;
}

.info-text-1 {
margin-right: 19px;
}

.info-text-2 {
    position: absolute;
    top: 0;
    left: 0;
width: 100%;
font-size: 12px;
}

.info-text-3 {

}

.info-map iframe{
margin-top: 60px;
}

}

/* =========================================================
banner
========================================================= */
.banner-list{
    gap: 40px;
}

.banner-item{
    width: calc(50% - 20px);
    background-color: var(--color-secondary);
    text-align: center;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 60px 20px;
    position: relative;
}

.banner-item:hover{
    outline: 1px solid var(--color-primary);
}

.banner-tel {
color: var(--text-color-accent);
}

.tel {
  display: block;
  margin-top: 25px;
  font-size: var(--font-size-x-large);
}

.banner-hotpepper {
text-decoration: underline;
}

.banner-hotpepper img{
    mix-blend-mode: multiply;
    width: 270px;
}

.hotpepper {
position: absolute;
bottom: 20px;
text-decoration: underline;
font-size: var(--font-size-small);
letter-spacing: 0.08em;
color: #7e7e7e;

}

@media screen and (max-width: 860px) {
  .hotpepper {
  display: none;
  }
}

@media screen and (max-width: 520px) {
    .banner-list{
    gap: 10px;
}

.banner-item{
    width: calc(50% - 5px);
    padding: 20px;
    aspect-ratio: 1/1;
}

.banner-tel img{
    width: 34px;
}

.tel {
margin-top: 0;
position: absolute;
bottom: 20px;
font-size: 14px;
}

}