@charset "utf-8";

/* common */
:root {
    --primary--black:#111112;
    --primary--gray:#707070;
    --primary--lightGray:#F5F5F5;
    --primary--smokeGray:#DBDBDB;
    --primary--yellow:#FFC24A;
    --primary--lightYellow:#FFE7B7;
    --primary-white: #FFFBF2;
    --primary--darkGray:#444;
    --primary--cream:#FFFBEA;
}

html {
    font-size: 62.5%;
}

body {
    background-color: #FFF;
    color: var(--primary--black,#111112);
    font-family: "Yu Mincho", "YuMincho", "Shippori Mincho", serif;
    font-style: normal;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: normal;
}

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

.section {
    padding: 50px 8% 60px;
}

.section--grand__menu,
.section--ceremonial-menu,
.section--other-menu,
.section--seasonal__menu,
.section--news__detail,
.section--news__lists {
    padding: 50px 10% 60px;
}

.topic {
    text-align: center;
}

.topic__en {
    font-family: "Times New Roman", "Times", serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: var(--primary--gray,#707070);
    text-align: center;
    display: block;
}

.topic__ja {
    font-family:"Yu Mincho", "YuMincho","Shippori Mincho", serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: var(--primary--black,#111112);
    text-align: center;
    display: block;
}

/* btn */
.btn {
    display: flex;
    color: var(--primary--black,#111112);
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: normal;
    border-radius: 50px;
    background-color: var(--primary--yellow,#FFC24A);
    padding: 10px 18px;
    transition: 0.4s;
}

.btn:hover {
    background-color: var(--primary--lightYellow,#FFE7B7);
}

.btn.btn-short {
    width: 92px;
    height: 40px;
}

.category__list {
    display: flex;
    margin: 50px auto 0;
    gap: 20px;
    justify-content: center;
}

.btn.btn-long {
    width: 190px;
    height: 40px;
    margin: 50px auto 0;
}

/* btn responsive_1024px- */
@media screen and (max-width:340px) {
    .btn{
        font-size: 1.2rem;
    }

    .btn.btn-short {
        width: 84px;
        height: 40px;
    }
}

@media screen and (min-width:1024px) {
    .btn{
        font-size: 1.8rem;
    }

    .btn.btn-short {
        width: 130px;
        height: 50px;
    }

    .category__list {
        margin: 60px auto 0;
        gap: 12px;
    }

    .btn.btn-long {
        width: 240px;
        height: 47px;
        margin: 60px auto 0;
    }
}

@media screen and (min-width: 1440px) {
    .btn{
        font-size: 2.4rem;
    }

    .btn.btn-short {
        width: 156px;
        height: 56px;
        font-size: 1.8rem;
    }

    .category__list {
        gap: 30px;
    }

    .btn.btn-long {
        width: 240px;
        height: 54px;
        font-size: 1.8rem;
    }
}

/* common responsive_768px- */
@media screen and (min-width: 768px) {
    .section {
        padding: 50px 15% 60px;
    }
}
/* common responsive_1024px- */
@media screen and (min-width: 1024px) {
    body {
    font-size: 1.6rem;
    }
    
    .topic__en {
        font-size: 1.5rem;
    }
    
    .topic__ja {
        font-size: 2.8rem;
    }

    .section {
        padding: 60px 15% 80px;
    }
}

/* common responsive_1440px- */
@media screen and (min-width: 1440px) {
    body {
        font-size: 1.8rem;
    }

    .topic__en {
        font-size: 1.6rem;
    }
    
    .topic__ja {
        font-size: 3rem;
    }
    
    .section {
        padding: 100px 15% 120px;
    }
}

/* loading_animation */
.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    z-index: 999;
    transition: opacity 0.5s ease;
}

.loading p {
    font-family:"Yu Mincho", "YuMincho","Shippori Mincho", serif;
}

.loading.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.loading span {
    display: inline-block;
    color: var(--primary--black);
    font-weight: 500;
    font-size: 2.4rem;
    animation: animation-loading-5 1s infinite;
}

.loading span:nth-of-type(2) {
    animation-delay: .1s;
}

.loading span:nth-of-type(3) {
    animation-delay: .2s;
}

.loading span:nth-of-type(4) {
    animation-delay: .3s;
}

.loading span:nth-of-type(5) {
    animation-delay: .4s;
}

.loading span:nth-of-type(6) {
    animation-delay: .5s;
}

.loading span:nth-of-type(7) {
    animation-delay: .6s;
}

.loading span:nth-of-type(8) {
    animation-delay: .7s;
}

@keyframes animation-loading-5 {
    50% {
        transform: translateY(10px);
    }
}

/* loading_animation responsive_1024 */
@media screen and (min-width: 1024px) {
    .loading span {
        font-size: 3rem;
    }
}

/* header */
.header {
    width: 100%;
    padding: 25px 5.3%;
    display: flex;
    align-items:flex-start;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 50;
}

.header__logo {
    width: 50px;
    height: auto;
}

.hamburger__icon {
        width: 30px;
        height: auto;
    }

/* header responsive_1024px- */
@media screen and (min-width: 1024px) {
    .header {
        padding: 32px 2.4%;
    }

    .header__logo {
        width: 60px;
        height: auto;
    }

    .hamburger__icon {
        width: 40px;
        height: auto;
    }
}

/* header responsive_1440px- */
@media screen and (min-width: 1440px) {
    .header {
            padding: 32px 1.7%;
        }
    
    .header__logo {
        width: 70px;
        height: auto;
    }

    .hamburger__icon {
        width: 50   px;
        height: auto;
    }
}

/* overlay-styles.css */
.hamburger-overlay {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.hamburger-overlay__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: var(--primary--yellow);
    transition: all 0.6s;
}

.hamburger-overlay__line:nth-of-type(1) { top: 14px; }
.hamburger-overlay__line:nth-of-type(2) { top: 23px; }
.hamburger-overlay__line:nth-of-type(3) { top: 32px; }

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: var(--primary--yellow);
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}
.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: var(--primary--darkGray);
  visibility: hidden;
  opacity: 0;
  transition: all 0.6s;
  z-index: 900;
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.nav-overlay__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.nav-overlay__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-overlay__item {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-overlay.active .nav-overlay__item:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__item:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__item:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__item:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__item:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__item:nth-child(6) { transition-delay: 0.6s; }
.nav-overlay.active .nav-overlay__item:nth-child(7) { transition-delay: 0.7s; }
.nav-overlay.active .nav-overlay__item:nth-child(8) { transition-delay: 0.8s; }

.nav-overlay__link {
  display: inline-block;
  padding: 12px;
  color:  var(--primary-white);
  font-size: 1.8rem;
  text-decoration: none;
  transition: color .3s;
}

.nav-overlay__link:hover {
  color: var(--primary--cream);
}

/* overlay-styles.css responsive_768px- */
@media screen and (min-width: 768px) {
    .hamburger-overlay {
        width: 52px;
        height: 52px;
    }

    .hamburger-overlay__line:nth-of-type(1) { top: 16px; }
    .hamburger-overlay__line:nth-of-type(2) { top: 26px; }
    .hamburger-overlay__line:nth-of-type(3) { top: 36px; }

    .hamburger-overlay__line {
        width: 30px;
        height: 2px;
    }
    
    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
        transform: translateY(10px) rotate(-45deg);
    }

    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
        transform: translateY(-10px) rotate(45deg);
    }
}

/* overlay-styles.css responsive_1024px- */
@media screen and (min-width: 1024px) {
    .hamburger-overlay {
        width: 60px;
        height: 60px;
    }

    .hamburger-overlay__line:nth-of-type(1) { top: 18px; }
    .hamburger-overlay__line:nth-of-type(2) { top: 30px; }
    .hamburger-overlay__line:nth-of-type(3) { top: 42px; }

    .hamburger-overlay__line {
        width: 34px;
        height: 2px;
    }
    
    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
        transform: translateY(12px) rotate(-45deg);
    }

    .hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
        transform: translateY(-12px) rotate(45deg);
    }
}

/* nav responsive_768px- */
@media screen and (min-width: 768px) {
    .nav-overlay__link {
        padding: 14px;
        font-size: 2rem;
    }
}

/* breadcrum-list */
.breadcrumb {
    padding: 5px 10%;
    margin-top: 122px;
    align-items: center;
}

.breadcrumb__list {
    display: flex;
    gap: 28px;
}

.breadcrumb__item {
    text-align: justify;
    font-family: "Noto Sans JP";
    font-size: 1.2rem;
    font-style: normal;
    font-weight: 400;
    position: relative;
}

.breadcrumb__item:not(:last-child)::after {
    content: "";
    display: inline-block;
    background-image: url(../images/logo/Arrow.svg);
    width: 24px;
    height: 24px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

/* breadcrum-list responsive_-323px */
@media screen and (max-width: 323px) {
    .breadcrumb__item {
        font-size: 1rem;
    }
}

/* breadcrum-list responsive_768px- */
@media screen and (min-width: 768px) {
    .breadcrumb {
        padding: 5px 15%;
    }
}

/* breadcrum-list responsive_1024px- */
@media screen and (min-width: 1024px) {
    .breadcrumb {
        margin-top: 215px;
    }

    .breadcrumb__item {
        font-size: 1.6rem;
    }

    .breadcrumb__item:not(:last-child)::after {
        width: 28px;
        height: 28px;
    }
}

/* footer */
.footer {
    background-color: var(--primary--darkGray);
    padding: 40px 4.8% 30px;
    text-align: center;
}

.footer__logo {
    display: block;
    width: 60px;
    height: 82px;
    margin: 0 auto 0;
}

.contact__info {
    white-space: nowrap;
    display: inline-block;
    width: 305px;
    margin-top: 20px;
    text-align: left;
    color: var(--primary--lightGray);
}

.instagram__logo {
    width: 30px;
    height: 30px;
    margin: 28px auto 0;
}

.copyright {
    color: var(--primary--lightGray);
    margin-top: 20px;
}

/* footer responsive_1024px- */
@media screen and (min-width: 1024px) {
    .footer {
        padding: 50px 4.8% 40px;
    }

    .footer__logo {
        width: 90px;
        height: 123px;
    }

    .contact__info {
        width: 350px;
        margin-top: 30px;
    }

    .instagram__logo {
        width: 40px;
        height: 40px;
        margin: 30px auto 0;
    }

    .copyright {
        margin-top: 30px;
    }
}

@media screen and (min-width: 1440px) {
    .footer {
        padding: 60px auto 30px;
    }

    .footer__container {
        display: flex;
        width: 530px;
        margin: 0 auto;
        align-items: center;
    }

    .footer__logo {
        width: 110px;
        height: 151px;
        margin: 0;
    }

    .contact__info {
        width: 390px;
        height: 108px;
        margin: 0 0 0 30px;
    }

    .instagram__logo{
        margin-top: 40px;
    }
    
    .copyright {
        margin-top: 40px;
    }
}