@charset "utf-8";

/* ==========================
共通
===========================*/
html{
    font-size: 62.5%;
    margin: 0;
    padding:0;
}

:root{
    --color-black: #262626;
    --color-white: #fffefc;
    --color-orange-derk: #E74322;
    --color-orange-light: #E57411;
    --color-green-light: #3aaa8a;
    --color-green-dark: #2f6223;
    --color-red-dark: #CA1717;
    --color-red-light: #E60013;
    --color-beige-light: #FCF9e7;
    --color-beige-dark: #F4f1e2;
}

body{
    font-family: 'ryo-gothic-plusn', 'sans-serif';
    font-style: normal;
    color: var(--color-black);
    background-color: var(--color-beige-dark);
    line-height: 1;
    }

img{
    max-width: 100%;
    height: auto;
}

h3{
    font-family: 'dnp-shuei-gothic-gin-std','sans-serif';
    font-style: normal;
    color: var(--color-black);
}

.section{
    padding-top: 75px;
}

.section__title{
    text-align: center;
}

.title__sousyoku{
    display: block;
    margin: 0 auto 21px;
}

.section__mainTitle{
    position: relative;
    display: inline-block;
    font-size: 3.2rem;
    font-weight: 600;
    margin: 0 auto 8px;
    line-height: 1;
    letter-spacing: 0.1em;
}

.section__subTitle{
    font-family: 'dnp-shuei-gothic-gin-std','sans-serif';
    line-height: 1;
    font-size: 1.2rem;
    letter-spacing: 0.3px;
    margin-bottom: 40px;
}

.icon-toku {
    position: absolute;
    top: -15px;
    right: -24px;
    width: 35px;
    height: auto;
    z-index: 1;
    animation-name: spin;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.icon-toku img {
    width: 100%;
    height: auto;
}

.icon-taberu{
    position: absolute;
    top: -15px;
    right: -23px;
    width: 35px;
    height: auto;
    z-index: 1;
    animation-name: spin;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.icon-taberu img {
    width: 100%;
    height: auto;
}

.icon-gyoza{
    position: absolute;
    top: -15px;
    right: -23px;
    width: 35px;
    height: auto;
    z-index: 1;
    animation-name: spin;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.icon-gyoza img {
    width: 100%;
    height: auto;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.btn {
    position: relative;
    border-radius: 100px;
    background-color: var(--color-red-light);
    font-weight: 400;
    padding: 14px 7.4% 18px 8.5%;
    font-size: 2rem;
    color: var(--color-white);
    border: 1px solid var(--color-red-light);
    text-align: center;
    width: 69.5vw;
    display: flex;
    gap: 16px;
    margin: 0 auto 25px;
    justify-content: center;
}

.btn_arrow {
    font-weight: 200;
    font-size: 7.5vw;
    color: var(--color-white);
    position: relative;
}

.btn:hover{
    background: var(--color-white);
    color: var(--color-red-light);
}

.borderyellow{
  width: 95%;
  display: block;
  margin: 0 auto;
}

.recruit__border{
  width: 95%;
  display: block;
  margin: 0 auto;
}

/* 共通タブレット */
@media screen and (min-width:769px) {
    .section{
    padding-top: 100px;
}
    .section__subTitle{
        margin-bottom: 60px;
    }

    .btn {
        padding: 21px 7.4% 21px 8.5%;
        width: 42.9vw;
        gap: 16px;
        margin: 0 auto 75px;
    }
}

/* 共通　pc 1025px */
@media screen and (min-width: 1025px){
    .section__mainTitle{
        font-size: 5.2rem;
    }

    .section__subTitle{
        font-size: 2.1rem;
        margin-bottom: 82px;
    }

    .icon-toku,.icon-gyoza,.icon-taberu{
        width: 52px;
        height: 52px;
        right: -35px;
    }

    .section{
        padding-top: 143px;
    }

    .btn {
        padding: 30px 7.4% 30px 8.5%;
        width: 47vw;
        gap: 32px;
        margin: 0 auto 130px;
        font-size: 3.2rem;
        border: 2px solid var(--color-red-light);
    }
}

/* ==========================
ヘッダーとナビゲーション
===========================*/
.header{
    position: fixed;
    padding: 21px 4.2% 0 4.2%;
    height: 82px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    z-index: 10000;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent;
}

/* 追従中にかかるクラス */
.header.is-fixed {
  position: fixed; 
  animation: slideDown 0.3s forwards;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.header.is-fixed .header__logo {
  width: 35px;
  transition: width 0.3s;
}

.header__logo {
    transition: width 0.3s;
    width: 45px;
}

.header__content{
    display: flex;
    gap: 11px;
    align-items: center;
}

.reserve__btn{
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--color-beige-dark);
    background-color: var(--color-red-light);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.reserve__btn a{
    font-family: 'dnp-shuei-gothic-gin-std','sans-serif';
    font-size: 8px;
}

.reserve__btn:active{
    background: var(--color-beige-dark);
    color: var(--color-red-light);
}

.nav__openBtn{
    font-family: 'dnp-shuei-gothic-gin-std','sans-serif';
    font-size: 8px;
    color: var(--color-red-light);
    text-align: center;
    cursor: pointer;
}

.nav__lines {
    width: 25px;
    height: 14px;
    position: relative;
    margin: 0 auto 4px;
}

.nav__lines span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--color-red-light);
    position: absolute;
    left: 0;
}

.nav__lines span:nth-child(1) { top: 0; }
.nav__lines span:nth-child(2) { bottom: 4px; }

.nav{
    background-color: #FFC812;
    width: 100%;
    height: 100dvh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    transform: translateY(-100%);
    transition: transform 0.4s;
}

.nav__header{
    padding: 21px 4.2% 0 4.2%;
    height: 82px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__list{
    margin-top: 52px;
    text-align: center;
}

.nav__item{
    font-size: 1.6rem;
    font-family: 'dnp-shuei-gothic-gin-std','sans-serif';
    margin-bottom: 32px;
    color: var(--color-black);
    line-height: 1;
}

.reserve, .application {
    display: block;
    width: 49vw;
    margin: 0 auto;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 400;
    padding: 16px 0;
    font-size: 2rem;
    text-align: center;
}

.navReserve {
    margin-top: 32px;
    margin-bottom: 60px; 
}

.reserve {
    background-color:var(--color-red-light);
    color: var(--color-white);
    border: 1px solid var(--color-red-light);
}

.navApplication {
  margin-top: 32px;
}

.application {
  background-color: var(--color-black);
  color: var(--color-white);
  border: 1px solid var(--color-black);
}

.reserve:active{
    background: var(--color-white);
    color: var(--color-red-light);
}

.application:active{
    background: var(--color-white);
    color: var(--color-black);
}
.sns {
    margin-top: auto;
    margin-top: 60px;
}

.sns ul {
    display: flex;
    justify-content: center;
    gap: 54px;
}

.sns a {
    display: flex;
    align-items: center;
}

.sns img {
    width: 2.2vw;
    margin-left: 4px;
}

.snsicon{
    overflow: hidden;
    color: transparent;
    text-shadow: 0 -1.5em 0 var(--color-black), 0 0 0 var(--color-black);
    transition: text-shadow 0.3s;
    font-size: 2.4vw;
    font-weight: 300;
    line-height: 1.5;
}

.snsicon:hover {
    text-shadow: 0 0 0 var(--color-black), 0 1.5em 0 var(--color-black);
}

.nav__openBtn {
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10000;
}

.nav__openBtn.active p {
    opacity: 0;
    visibility: hidden;
}

.nav__lines {
    position: relative;
}

.nav__lines span {
    transition: all 0.3s;
}

.nav__openBtn.active .nav__lines span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.nav__openBtn.active .nav__lines span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    bottom: auto;
}

.nav__openBtn.active .nav__lines span:nth-child(n+3) {
    opacity: 0;
}

#nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100dvh;
    background-color: #fbc02d;
    transition: all 0.5s ease;
    z-index: 9999;
}

#nav.active {
    transform: translateY(0);
}

/* ナビメニュー　pc*/
@media screen and (min-width: 1025px){
    .header{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        padding-top: 20px;
    }

    .nav__header{
        display: none;
    }

    #nav {
        position: static;
        width: auto;
        height: auto;
        background-color: transparent;
        transform: none;
        display: block;
        margin-left: auto;
        z-index: auto;
        pointer-events: none;
    }

    .nav{
        background-color: transparent;
        width: auto;
        height: auto;
        display: flex;
        transform: translateY(0);
    }

    .nav__item{
        font-size: 1.6rem;
        margin-bottom: 0;
        color: var(--color-white);
        font-weight: 200;
    }

    .nav__list{
        margin-left: auto;
        margin-top: 0;
        pointer-events: auto;
    }

    .nav__list ul{
        display: flex;
        align-items: center;
        gap: 24px;
        margin-top: 0;
        justify-content: flex-end;
    }

    .nav__header,
    .nav__closeBtn,
    .nav__openBtn,
    .reserve__btn,
    .sns {
        display: none !important;
    }

    .header__content {
        display: flex;
        align-items: center;
        gap: 30px;
  }

  .navReserve, .navApplication {
        margin-top: 0;
  }

  .reserve, .application {
        width: auto;
        padding: 10px 1.9vw;
        font-size: 1.8rem;
  }

    .navReserve{
        margin-bottom: 0;
    }

    .navApplication {
        order: 8; 
  }

    .navReserve {
            order: 7;
    }

    .header__logo{
        width: 6vw;
    }

  .header.is-fixed .header__logo {
        width: 4vw;
        transition: width 0.3s;
    }

    .nav__item {
        color: var(--color-white);
        transition: color 0.3s;
    }

    /* KVより下に来た時（黒くする） */
    .header.is-scrolled .nav__item {
        color:var(--color-black);
    }

    .reserve:hover{
    background: var(--color-white);
    color: var(--color-red-light);
}

.application:hover{
    background: var(--color-white);
    color: var(--color-black);
}
}

/* フッター */
.footer {
  position: relative;
  background-image: url("../images/footer.webp");
  background-size: cover;
  background-position: center;
  padding: 32px 3.2% 3px;
  color: var(--color-white);
  text-align: center;
  font-weight: 200;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.footer__inner {
  position: relative;
  z-index: 2;
}

.footer__logo {
  width: 20.8vw;
  margin: 0 auto 21px;
}

.footer__info {
  margin-bottom: 37px;
  font-size: 0.8rem;
  line-height: 1.8;
}

.footer__sns {
    margin-top: auto;
}

.footer__sns ul {
    display: flex;
    justify-content: center;
    gap: 54px;
}

.footer__sns a {
    display: flex;
    align-items: center;
}

.footer__snsicon img {
    width: 2.2vw;
    margin-left: 4px;
    filter: brightness(0) invert(1);
}

.footer__snsicon{
    overflow: hidden;
    color: transparent;
    text-shadow: 0 -1.5em 0 var(--color-white), 0 0 0 var(--color-white);
    transition: text-shadow 0.3s;
    font-size: 2.4vw;
    font-weight: 200;
    line-height: 1.5;
}

.footer__snsicon:hover {
    text-shadow: 0 0 0 var(--color-white), 0 1.5em 0 var(--color-white);
}

.footer__copyright{
  font-size: 2vw;
  margin: 21px 0 6px;
}

.back-to-top {
  position: fixed !important; /* 絶対配置から固定配置に変更 */
  right: 6px !important;
  bottom: 45px !important;
  z-index: 9999 !important;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  width: 16vw !important;
}

/* JSでこのクラスがついた時だけ表示 */
.back-to-top.is-show {
  opacity: 1 !important;
  visibility: visible !important;
}

.back-to-top__img {
  width: 100% !important;
  height: auto;
}

.back-to-top__label{
  color: var(--color-red-dark);
  display: block;
  margin-bottom: 9px;
  font-size: 0.9rem;
}

.footer__info__txt{
  font-size: 0.8rem;
}

.back-to-top__img {
  width: 11vw;
  height: auto;
  transform-origin: center bottom;
  transition: transform 0.3s;
  animation: natural-purun-pause 2s ease-in-out infinite;
}

@keyframes natural-purun-pause {
  0% { transform: scale(1, 1); }
  12% { transform: scale(1.15, 0.85); }
  20% { transform: scale(0.9, 1.15) translateY(-5px); }
  28% { transform: scale(1.05, 0.95); }
  40%, 100% { transform: scale(1, 1) translateY(0); }
}

/* フッター　600px */
@media screen and (min-width: 600px){
    .back-to-top {
        width: 9vw !important;
    }
}

/* フッター　タブレット769px */
@media screen and (min-width: 769px) {
    .footer__logo {
        width: 15.9vw;
        margin-bottom: 32px;
    }

    .back-to-top__img {
        width: 72px;
    }

    .footer__info__txt{
        font-size: 1.2vw;
    }

    .footer__snsicon{
        font-size: 1.2vw;
    }

    .footer__snsicon img {
        width: 1.2vw;
        }

    .back-to-top__label{
        font-size: 1.25vw;
        margin-bottom: 21px;
    }

    .footer__copyright{
        font-size: 1rem;
        margin: 40px 0 6px;
    }

    .footer__snsicon:hover {
    transform: rotate(360deg);
}
}

/* フッター　pc 1025px */
@media screen and (min-width: 1025px){
    .footer__logo {
        width: 13vw;
        margin-bottom: 72px;
    }

    .footer__info__txt{
        font-size: 1.1vw;
    }

    .footer__info {
        margin-bottom: 42px;
}

    .footer__copyright {
        font-size: 1.4rem;
        margin: 72px 0 16px;
        }

  .footer, .footer__inner {
    overflow: visible !important;
  }

  .back-to-top {
    position: fixed !important;
    right: 10px !important;
    bottom: 40px !important;
    top: auto !important;
    left: auto !important;
    z-index: 9999999 !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 180px !important;
    height: 180px !important; 
    background-color: transparent !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }

  .back-to-top.is-show {
    opacity: 1 !important;
    visibility: visible !important;
  }

  .back-to-top__label {
    display: block !important;
    font-weight: 400;
    color:var(--color-red-dark)!important;
    font-size: 14px !important;
    margin-bottom: 10px !important;
    pointer-events: none !important; 
  }

  .back-to-top__img {
    width: 100px !important;
    height: auto !important;
    display: block !important;
    pointer-events: none !important; 
  }

    .footer__info, 
    .footer__copyright {
        position: relative;
        z-index: 1;
        pointer-events: none;
    }
}