@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cinzel&display=swap");

/*============================
	base
============================*/
:root {
  --black: #41352f;
  --white: #fff;
  --brown: #a6937c;
  --font-serif: "Noto Serif JP", serif;
  --font-zen: "Zen Old Mincho", serif;
  --font-en: "Cinzel", serif;
}

html {
  font-size: calc(10 / 1440 * 100vw);
  color: var(--white);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  html {
    font-size: calc(10 / 767 * 100vw);
  }
}

body {
  background: #2b231f;
  font-family: var(--font-serif);
  font-size: max(12px, 1.6rem);
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
}

@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,
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%;
}

/*============================
	fixed_btn
============================*/
.fixed_btn {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  position: fixed;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .fixed_btn {
    width: 100%;
    height: max(65px, 8rem);
    flex-direction: row;
    transform: none;
    top: auto;
    bottom: 0;
    z-index: 10;
  }
}

.fixed_btn-item {
  background: linear-gradient(180deg, #fcd44e, #f3cc4d 12%, #dbb143 39%, #fffcb7 66%, #e5a249 84%, #a87d2f 97%);
  width: max(50px, 7rem);
  height: max(120px, 20rem);
  padding: 1px 0 1px 1px;
  filter: drop-shadow(0 0 2rem rgba(3, 0, 0, 0.45));
}

@media (max-width: 767px) {
  .fixed_btn-item {
    width: 100%;
    height: 100%;
    padding: 1px 1px 0;
  }
}

.fixed_btn-item a {
  display: block;
  width: 100%;
  height: 100%;
  writing-mode: vertical-rl;
}

@media (max-width: 767px) {
  .fixed_btn-item a {
    writing-mode: horizontal-tb;
    justify-content: center;
    text-decoration: none;
  }
}

.fixed_btn-item p {
  background-color: #951717;
  width: 100%;
  height: 100%;
  font-family: var(--font-zen);
  font-size: max(16px, 2rem);
  color: var(--white);
  letter-spacing: 0.05em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.fixed_btn-txt {
  font-family: var(--font-en);
  font-size: max(24px, 4rem);
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 0.8;
  opacity: 0.4;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
  left: 0;
}

@media (max-width: 767px) {
  .fixed_btn-txt {
    transform: none;
    top: auto;
    left: 0;
    bottom: 0;
  }
}

/*============================
	header
============================*/
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

.header__logo {
  width: 21rem;
  position: absolute;
  top: 2rem;
  left: 4rem;
}

@media (max-width: 767px) {
  .header__logo {
    width: max(130px, 20rem);
    top: 20px;
    left: 2rem;
  }
}

.header__hamburger-sp {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header__hamburger-sp {
    background-color: var(--brown);
    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;
  align-items: center;
  gap: 6rem 4rem;
  position: absolute;
  top: 3rem;
  right: 4rem;
}

@media (max-width: 767px) {
  .header__contents {
    background-color: #1d1815;
    width: 100%;
    height: 100%;
    min-height: max-content;
    flex-direction: column;
    justify-content: 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__nav-list {
  display: flex;
  gap: 4rem;
}

@media (max-width: 767px) {
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .header__nav-list li {
    position: relative;
  }

  .header__nav-list li::before {
    content: "";
    background: url("../img/current.png") no-repeat center / contain;
    width: max(17px, 2.4rem);
    height: max(10px, 1.4rem);
    opacity: 0;
    position: absolute;
    transform: translate(-50%, -100%);
    top: -1rem;
    left: 50%;
    transition: 0.3s ease-in-out;
  }

  .header__nav-list li:hover::before {
    opacity: 1;
  }
}

.header__nav-list a {
  font-size: max(10px, 1.4rem);
  font-weight: 200;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}

.header__nav-list a span {
  font-family: var(--font-en);
  font-size: max(12px, 1.8rem);
  text-transform: uppercase;
}

.header__tel {
  font-family: var(--font-en);
  font-size: max(14px, 2.4rem);
  display: flex;
  align-items: center;
  column-gap: 1rem;
}

@media (max-width: 767px) {
  .header__tel {
    font-size: max(16px, 2.4rem);
  }
}

.header__tel::before {
  content: "";
  display: block;
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(12px, 2.2rem);
  height: max(12px, 2.2rem);
}

@media (max-width: 767px) {
  .header__tel::before {
    width: max(16px, 2.2rem);
    height: max(16px, 2.2rem);
  }
}

/*============================
	footer
============================*/
.footer {
  background-color: #1d1815;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 0 2.5rem;
  position: relative;
}

@media (max-width: 767px) {
  .footer {
    padding: 6rem 0 max(75px, 10rem);
  }
}

.pagetop {
  background-color: var(--brown);
  width: max(35px, 5.7rem);
  height: max(35px, 5.7rem);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
}

@media (max-width: 767px) {
  .pagetop {
    bottom: max(75px, 10rem);
  }
}

.pagetop.js-top {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .pagetop.js-top:hover {
    opacity: 0.6;
  }
}

.pagetop::before {
  content: "";
  display: inline-block;
  width: max(9px, 1.4rem);
  height: max(9px, 1.4rem);
  border: max(2px, 0.3rem) solid var(--black);
  border-left: 0;
  border-bottom: 0;
  border-radius: 1px;
  position: absolute;
  transform: translate(-50%, -40%) rotate(-45deg);
  top: 50%;
  left: 50%;
}

.footer__logo {
  display: block;
  width: max(150px, 21rem);
  height: auto;
  margin: 6rem 0 4rem;
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: max(20px, 3rem) 4rem;
}

@media (max-width: 767px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

.footer__nav-list a {
  font-size: max(10px, 1.4rem);
  font-weight: 200;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}

.footer__nav-list a span {
  font-family: var(--font-en);
  font-size: max(12px, 1.8rem);
  text-transform: uppercase;
}

.footer__tel {
  font-weight: 200;
  color: var(--brown);
  letter-spacing: 0.1em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer__tel a {
  font-family: var(--font-en);
  font-size: max(20px, 3rem);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer__tel a::before {
  content: "";
  display: block;
  background: url("../img/tel_icon-ft.png") no-repeat center / contain;
  width: max(16px, 2.2rem);
  height: max(16px, 2.2rem);
}

.footer__sns {
  margin: 2rem 0 4rem;
}

.footer__sns li {
  display: block;
  width: max(24px, 3.4rem);
}

.copy {
  font-family: var(--font-en);
}
