@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Afacad+Flux:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sacramento&display=swap");

/*============================
	base
============================*/
:root {
  --black: #190d02;
  --white: #fff;
  --blue: #b2bdc1;
  --font-sans: "Noto Sans JP", sans-serif;
  --font-en: "Afacad Flux", sans-serif;
  --font-ttl: "Sacramento", cursive;
  --bg-1: #F1F4F5;
  --bg-2: #FFF;
  --bg-3: #b2bdc1;
}

html {
  font-size: calc(10 / 1366 * 100vw);
  color: var(--black);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  html {
    font-size: calc(10 / 767 * 100vw);
  }
}

body {
  font-family: var(--font-sans);
  font-size: max(12px, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

.fade {
  opacity: 0;
}

.fadeUp {
  animation: fadeUp 0.6s ease both;
}

.header img:not(.google_translate img),
section img,
.footer img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
}


a {
  transition: 0.3s ease-in-out;
}

@media (min-width: 768px) {
  a:hover {
    opacity: 0.6;
  }

  a[href^="tel:"] {
    pointer-events: none;
  }
}

@media (max-width: 767px) {
  a[href^="tel:"] {
    text-decoration: underline;
  }
}

.sp {
  display: none;
}

@media (max-width: 767px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block;
  }
}

.map {
  width: 100%;
  height: 40rem;
}

.map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/*============================
	header
============================*/
.header {
  width: 100%;
  color: var(--white);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header__logo {
  width: 13.1rem;
  position: absolute;
  top: max(40px,4rem);
  left: 5rem;
}

@media (max-width: 767px) {
  .header__logo {
    width: max(100px, 20rem);
    top: 1rem;
    left: 1rem;
  }
}

.header__hamburger-sp {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header__hamburger-sp {
    background-color: #333637;
    width: 8rem;
    height: 8rem;
    min-width: 60px;
    min-height: 60px;
    visibility: visible;
  }

  .header__hamburger-sp::before,
  .header__hamburger-sp::after,
  .header__line-sp {
    content: "";
    background-color: var(--white);
    width: 5rem;
    min-width: 35px;
    height: 2px;
    border-radius: 5px;
    position: absolute;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: 0.3s;
  }

  .header__hamburger-sp::before {
    top: 30%;
    transform-origin: bottom left;
  }

  .header__hamburger-sp::after {
    top: 70%;
    transform-origin: top left;
  }

  .header__hamburger-sp.js-transform::before,
  .header__hamburger-sp.js-transform::after {
    transform: scale(1.414);
    top: 50%;
  }

  .header__hamburger-sp.js-transform::before {
    transform: rotate(45deg) translateX(-50%);
  }

  .header__hamburger-sp.js-transform::after {
    transform: rotate(-45deg) translateX(-50%);
  }

  .js-transform .header__line-sp {
    transform: scale(0);
  }
}

.header__contents {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: max(20px, 4rem);
  position: absolute;
  top: max(40px,4rem);
  right: 5rem;
}

@media (max-width: 767px) {
  .header__contents {
    background-color: #333637;
    width: 100%;
    height: 100%;
    min-height: max-content;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 0;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: scroll;
    z-index: 100;
    transition: 0.3s ease-out;
  }

  .header__contents.js-show {
    opacity: 1;
    visibility: visible;
  }
}

.header__link {
  display: flex;
  align-items: center;
}

.header__tel {
  border-left: solid 1px var(--white);
  font-family: var(--font-en);
  font-size: 12px;
  display: flex;
  align-items: baseline;
  gap: 2rem;
  padding-left: 2rem;
  margin: 0 2rem;
}

@media (max-width: 767px) {
  .header__tel {
    font-size: 14px;
    text-decoration: none !important;
  }
}

.header__tel span {
  display: block;
  font-size: max(12px, 1.4rem);
}

@media (max-width: 767px) {
  .header__tel span {
    font-size: 14px;
    text-decoration: underline;
  }
}

.header__insta {
  font-family: var(--font-en);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

@media (max-width: 767px) {
  .header__insta {
    font-size: 14px;
  }
}

.header__insta::after {
  content: "";
  display: block;
  background: url("../img/insta.png") no-repeat center / contain;
  width: max(16px, 1.8rem);
  height: max(16px, 1.8rem);
}

.header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: max(10px, 2rem);
}

@media (max-width: 767px) {
  .header__nav-list {
    align-items: center;
    justify-content: center;
  }
}

.header__nav-list a {
  display: block;
  font-family: var(--font-en);
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .header__nav-list a {
    font-size: max(14px, 1.6rem);
  }
}

/*============================
	footer
============================*/
.footer {
  background-color: #505050;
  color: var(--white);
  padding: 9rem 6.5rem 2rem 5rem;
  position: relative;
}

@media (max-width: 767px) {
  .footer {
    padding: 9rem 0 10rem;
  }
}

.pagetop {
  width: max(55px, 8.7rem);
  height: max(23px, 4.3rem);
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 4.6rem;
  right: 5rem;
  z-index: 100;
  overflow: hidden;
}

@media (max-width: 767px) {
  .pagetop {
    bottom: 8rem;
  }
}

.pagetop.js-top {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .pagetop.js-top:hover {
    opacity: 0.6;
  }
}

.pagetop::before {
  content: "";
  display: block;
  background-color: var(--black);
  width: 1px;
  height: max(6px, 1rem);
}

.pagetop::after {
  content: "";
  background-color: var(--white);
  width: 100%;
  height: max(55px, 8.7rem);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.footer__inner {
  display: flex;
}

@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    row-gap: 6rem;
  }
}

.footer__logo {
  display: block;
  width: max(90px, 10.5rem);
  height: auto;
  margin-right: 7.6rem;
}

@media (max-width: 767px) {
  .footer__logo {
    margin: 0;
  }

  .footer__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

.footer__address {
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
}

.footer__tel {
  font-family: var(--font-en);
  font-size: 12px;
  display: flex;
  align-items: baseline;
  gap: 2rem;
  margin: 6rem 0 1.9rem;
}

@media (max-width: 767px) {
  .footer__tel {
    font-size: 14px;
    text-decoration: none !important;
  }
}

.footer__tel span {
  display: block;
  font-size: max(12px, 1.4rem);
}

@media (max-width: 767px) {
  .footer__tel span {
    font-size: 14px;
    text-decoration: underline;
  }
}

.footer__insta {
  font-family: var(--font-en);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

@media (max-width: 767px) {
  .footer__insta {
    font-size: 14px;
  }
}

.footer__insta::after {
  content: "";
  display: block;
  background: url("../img/insta.png") no-repeat center / contain;
  width: max(16px, 1.8rem);
  height: max(16px, 1.8rem);
}

.footer__txt {
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 2.5;
  margin-top: 4.5rem;
}

.footer__nav-list {
  border-left: solid 1px var(--white);
  display: flex;
  flex-direction: column;
  row-gap: max(10px, 2rem);
  padding-left: 4.19rem;
  margin-left: 13.1rem;
}

@media (max-width: 767px) {
  .footer__nav-list {
    border: none;
    align-items: center;
    padding: 0;
    margin: 0;
  }
}

.footer__nav-list a {
  display: block;
  font-family: var(--font-en);
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .footer__nav-list a {
    font-size: max(14px, 1.6rem);
  }
}

.copy {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: right;
  margin-top: 3.5rem;
}

@media (max-width: 767px) {
  .copy {
    text-align: center;
    margin-top: 5rem;
  }
}
.google_translate {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 99;
}

@media screen and (max-width: 767px) {
  .google_translate {
      position: absolute;
      top: 0;
      right: 8rem;
      z-index: 99;
  }
}
@media screen and (max-width: 567px) {
  .google_translate {
      right: 11rem;
  }
}
@media screen and (max-width: 420px) {
  .google_translate {
      right: 15rem;
  }
}

.hero__tel {
  width: max(55px, 8.7rem);
  position: fixed;
  bottom: 9.4rem;
  right: 5rem;
  z-index: 10;
}
.hero__reserve {
  width: max(55px, 8.7rem);
  position: fixed;
  bottom: 11.85rem;
  right: 5rem;
  z-index: 10;
}
/*.child .hero__tel {
  bottom: 1rem;
  right: 13rem;
}
.child .hero__reserve {
  bottom: 1rem;
  right: 3rem;
}*/
@media (max-width: 767px) {
  .hero__tel {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 7rem;
    background: #9D8768;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 0.5px solid #fff;
    text-decoration: none !important;
  }
  .hero__reserve {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 7rem;
    background: #9D8768;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 0.5px solid #fff;
  }
  /*.child .hero__reserve {
    bottom: 0;
    right: 0;
  }
  .child .hero__tel {
    bottom: 0;
    right: initial;
  }*/

}