@charset "UTF-8";
/* =======================
common
========================*/
html {
    font-size: 62.5%;
    font-family: "Zen Old Mincho";
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    color: #141414;
    font-family: "Hiragino Mincho ProN";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 1.5;
}

.topbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    padding: 18px;
    border-radius: 50%;
    background-color: #968861;
    box-shadow: 2px 2px 4px 2px rgba(20, 20, 20, 0.2);
    color: #141414;
    font-family: "Times New Roman";
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1;
    position: fixed;
    bottom: 5%;
    right: 5%;
}

.topbtn:hover {
    background-color: #AB9F80;
}

/* =======================
fadein
========================*/
.fadein {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
}

.fadein.animated {
    transform: translate(0, 0);
    opacity: 1;
}

/* =======================
header
========================*/
.header {
    padding: 0 5.3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #141414;
    height: 80px;
}

.logo {
    width: 100px;
}

.nav {
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100vh;
    padding: 20px 5.3%;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav.active{
    transform: translateX(0);
}

.nav__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__topic img {
    width: 100px;
}

.nav__list {
    padding: 40px 0;
}

.nav__item {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
    margin-top: 52px;
}

.nav__item:hover {
    color: #968861;
}

.nav.is-open {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    transform: translateX(0);
}

.header__btn{
    display: block;
    width: 32.5px;
    height: 18px;
    cursor: pointer;
}

/* header pc */
@media screen and (min-width:769px) {
    .header {
        padding: 40px 9.3% 40px 9.3%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 120px;
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
    }

    .nav__header {
        display: none;
    }

    .nav__list {
        display: flex;
        gap: 24px;
        margin-top: 0;
        padding: 0 0;
    }

    .nav__item {
        font-size: 1.6rem;
        margin-top: 0;
    }

    .header__btn {
        display: none;
    }
}

/* =======================
shop info
========================*/
.shop__info__sp {
    display: block;
}

.shop__info__pc {
    display: none;
}

.shop__info {
    padding: 80px 5.3%;
    background-color: #141414;
}

.section__title {
    color: #fff;
    font-family: "Times New Roman";
    font-size: 6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 0.6;
}

.description__w {
    margin-top: 80px;
    color: #FFF;
    line-height: 2;
}

.shop__info__container {
    margin-top: 40px;
}

.photo__wrapper {
    margin-top: 24px;
}

.photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.photo__top {
  margin-left: auto;
  width: 60%;
  margin-bottom: -40px;
}

.photo__bottom {
  margin-right: auto;
  width: 80%;
}

.photo__bottom__pc {
    display: none;
}

.access {
    background-color: #141414;
    padding: 80px 5.3%;
    text-align: center;
}

.map__sp {
    margin-top: 40px;
    position: relative;
    width: 100%;
    padding-top: 80%;
    height: 0;
}

.map__sp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.access_description {
    margin-top: 40px;
}

.access__jp {
    color: #FFF;
    text-align: center;
    line-height: 2;
}

.access__en {
    margin-top: 24px;
    color: #FFF;
    text-align: center;
    font-family: "Times New Roman";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 2;
}

/* shop info pc */
@media screen and (min-width:769px) {
    .shop__info__sp {
        display: none;
    }

    .shop__info__pc {
        display: flex;
    }

    .section__title {
        font-size: 12rem;
        line-height: 1;
    }

    .shop__info__left {
        width: 100%;
    }

    .shop__info {
        padding: 160px 15.2%;
    }

    .shop__info h2 {
        line-height: 1;
        
    }

    .shop__info__content {
        margin-top: 40px;
    }

    .shop__info__container {
        display: flex;
        flex-direction: column;
        gap: 32px;
        margin-top: 40px;
    }

    .photo {
        width: 70%;
    }

    .photo__wrapper {
        margin-top: 0;
    }

    .photo__top {
        margin-left: 60px;
        width: 100%;
        margin-bottom: -120px;
    }

    .photo__bottom {
        margin-right: auto;
        width: 70%;
    }

    .photo__bottom__pc {
        display: block;
    }
}

/* =======================
work day
========================*/

.work__day {
    padding: 80px 5.3%;
    background-color: #F5F2EB;
}

.work__day h3 {
    color: #141414;
    text-align: center;
}

.work__day__content {
    margin-top: 40px;
}

.description__b {
    line-height: 2;
    text-align: center;
}

.info__list {
    margin-top: 40px;
}

.info__list :last-of-type {
    margin-bottom: 0;
}

.info__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.info__item:not(:last-child) {
    margin-bottom: 40px;
}

.info__item__title
.info__item__content {
    color: #141414;
    font-family: "Hiragino Mincho ProN";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 300;
    line-height: 2;
}

/* work day pc */
@media screen and (min-width:769px) {
    .work__day {
        padding: 160px 15.2%;
    }

    .info__list {
        margin-top: 160px;
    }

    .info__item__title,
    .info__item__content {
        font-size: 3.2rem;
        font-style: normal;
        font-weight: 600;
        line-height: 2;
    }
}

/* =======================
facilities
========================*/

.facilities {
    background-color: #141414;
    padding: 80px 5.3%;
    text-align: center;
}

.section__title__w {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 6rem;
    font-style: normal;
    font-weight: 700;
    line-height: 0.6;
}

.description__w {
    margin-top: 40px;
    color: #FFF;
    line-height: 2;
}

.facilities__description {
    margin-top: 40px;
}

.facilities__images {
    margin-top: 40px;
}

.facilities__img__top {
    width: 100%;
}

.facilities__img__a {
    margin-top: 5px;
    width: 100%;
    display: flex;
    gap: 5px;
    box-sizing: border-box;
}

.facilities__img__a img {
    width: calc(50% - 2.5px);
    display: block;
    box-sizing: border-box;
}

.facilities__img__b {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.facilities__img__b img {
    width: 100%;
    height: auto;
    display: block;
}

.facilities__img__left,
.facilities__img__right {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 50%;
}

.facilities__img__right__under {
    display: flex;
    gap: 5px;
}

.facilities__img__right__under img {
    width: calc(50% - 2.5px);
}

.facilities__description {
    margin-top: 40px;
}

.facilities__description__content {
    margin-top: 40px;
}

.facilities__title {
    color: #FFF;
    font-family: "Times New Roman";
    font-size: 4.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1;
    text-align: left;
}

.facilities__txt {
    margin-top: 24px;
    color: #FFF;
    line-height: 2;
    text-align: left;
}

/* facilities pc */
@media screen and (min-width:769px) {
    .facilities {
        padding: 160px 9%;
    }

    .section__title__w {
        font-size: 12rem;
        line-height: 1;
    }

    .facilities__images {
        margin-top: 160px;
    }

    .facilities__img__a {
        margin-top: 20px;
        gap: 20px;
    }

    .facilities__img__a img {
        width: calc(50% - 10px);
    }

    .facilities__img__b {
        gap: 20px;
        margin-top: 20px;
    }

    .facilities__img__left,
    .facilities__img__right {
        gap: 20px;
    }

    .facilities__img__right__under {
        gap: 20px;
    }

    .facilities__img__right__under img {
        width: calc(50% - 10px);
    }

    .facilities__description {
        margin-top: 80px;
    }

    .facilities__description__content {
        margin-top: 80px;
    }

    .facilities__title {
        font-size: 6rem;
    }
}

/* =======================
information
========================*/

.information {
    padding: 80px 5.3%;
    background-color: #F5F2EB;
}

.information h3 {
    color: #141414;
    text-align: center;
}

.map__sp {
    margin-top: 40px;
    position: relative;
    width: 100%;
    padding-top: 80%;
    height: 0;
}

.map__sp iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map__pc {
    display: none;
}

/* information pc */
@media screen and (min-width:769px) {
    .information {
        padding: 160px 9%;
    }

    .map__sp {
        display: none;
    }

    .information__pc__wrapper {
        display: flex;
        margin-top: 160px;
        gap: 14.1%;
        align-items: center;
    }

    .map__pc {
        display: block;
        position: relative;
        width: 100%;
        min-width: 484px;
        min-height: 400px;
        padding-top: 40%;
        height: 0;
    }

    .map__pc iframe  {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .information__pc__wrapper
    .info__list {
        margin-top: 0;
        width: 100%;
    }

    .information
    .info__item__title {
        font-size: 2.4rem;
    }

    .information
    .info__item__content {
        font-size: 2.4rem;
        font-weight: 300;
    }
}

/* =======================
footer
========================*/

.footer {
    background-color: #141414;
    padding: 80px 5.3%;
    text-align: center;
}

.footer__logo {
    width: 100px;
}

.copy {
    margin-top: 40px;
    color: #FFF;
    text-align: center;
    font-family: "Times New Roman";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.br__sp {
    display: block;
}

/* shop info pc */
@media screen and (min-width:769px) {
    .footer {
        padding: 80px 15.2%;
    }

    .footer__logo {
        width: 200px;
    }

    .copy {
        margin-top: 80px;
    }

    .br__sp {
    display: none;
}
}