@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');

/*============================
	base
============================*/
:root {
  --black: #000;
  --white: #fff;
  --red: #191a56;
  --font-serif:"Noto Serif JP", serif;;
  --font-access: "Zen Old Mincho", serif;
  --font-yuji: "Yuji Boku", serif;
  --bg-1: url("../img/texture-1.jpg") repeat-y center top / 100% auto;
  --bg-2: url("../img/texture-2.jpg") repeat-y center top / 100% auto;
}

html {
  font-size: calc(10 / 1440 * 100vw);
  color: var(--black);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  html {
    font-size: calc(10 / 767 * 100vw);
  }
}

body {
  background: var(--bg-1);
  font-family: var(--font-serif);
  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,
section img,
.footer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  overflow: hidden;
  vertical-align: bottom;
}

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) {
  body{
    font-weight: 600;
  }
  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: 34rem;
  height: min(90vw, 80rem);
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header {
    width: 100%;
    height: auto;
    align-items: flex-start;
    padding: 0;
  }
}

.header .header__logo {
  width: 8rem;
  margin: 11.1rem auto 8.5rem auto;
  font-size: 2.4rem;
  text-align: center;
  color: #191a56;
}
.header .header__logo span {
  font-size: 4rem;
}

@media (max-width: 767px) {
  .header .header__logo {
    /*width: max(40px, 5rem);*/
    margin: 1rem 0 0 2rem;
    position: absolute;
    top: 0;
    left: 1rem;
    filter: drop-shadow(2px 4px 5px rgba(0,0,0, 0.5));
    color: #FFF;
  }
}

.header__hamburger-sp {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header__hamburger-sp {
    background-color: var(--red);
    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 {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  row-gap: 3rem;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .header__contents {
    background: var(--bg-1);
    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;
  flex-direction: column;
  row-gap: 4rem;
}

@media (max-width: 767px) {
  .header__nav-list {
    align-items: center;
    padding: 0;
  }
}

@media (min-width: 768px) {
  .header__nav-item {
    position: relative;
  }

  .header__nav-item a:hover {
    color: var(--red);
    opacity: 1;
  }
}

.header__nav-item a {
  letter-spacing: 0.2em;
  font-weight: 700;
  color: #3d1c04;
}
.header__nav-list li:nth-child(7) {
  margin-top: 2.7rem;
}
.header__nav-list li:nth-child(n+7) {
  margin: 0 auto;
  width: 2.5rem;
}
.header__nav-list li.sns {
  margin-left: 0;
}
.underlayer {
  .header__nav-list li:nth-child(n+7) {
    width: 2.8rem;
    margin-left: 0rem;
    margin-top: 0;
  }
}

.header__tel a {
  background: var(--bg-1);
  width: 25.4rem;
  height: 8.8rem;
  color: var(--red);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

@media (max-width: 767px) {
  .header__tel a {
    width: max(200px, 25.4rem);
    height: max(71px, 8.8rem);
    text-decoration: none;
  }
  .header__nav-list li:nth-child(n+7) {
    margin: 0;
  }
  .header__nav-list li {
    font-size: max(14px,1.6rem);
  }
}

.header__line {
  font-size: max(10px, 1.6rem);
  letter-spacing: 0.08em;
  position: relative;
}

@media (max-width: 767px) {
  .header__line {
    font-size: max(12px, 1.6rem);
  }
}

.header__line::before,
.header__line::after {
  content: "";
  background-color: var(--red);
  width: 3.8rem;
  height: 1px;
  position: absolute;
  top: 50%;
}

.header__line::before {
  transform: translate(-100%, -50%);
  left: -0.8rem;
}

.header__line::after {
  transform: translate(100%, -50%);
  right: -0.6rem;
}

.header__num {
  font-size: max(10px, 1.4rem);
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media (max-width: 767px) {
  .header__num {
    font-size: max(12px, 1.4rem);
  }
}

.header__num span {
  font-size: max(14px, 2.6rem);
  font-weight: 600;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .header__num span {
    font-size: max(16px, 2.6rem);
    text-decoration: underline;
  }
}

/*============================
	footer
============================*/
.footer {
  background: url(../img/bg-footer.jpg) repeat top center / 100% auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 6rem;
  padding: 4.8rem 0 1.1rem;
  position: relative;
  color: #FFF;
}

.pagetop {
  background: #191a56;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  color: #FFF;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagetop.js-top {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 768px) {
  .pagetop.js-top:hover {
    opacity: 0.6;
  }
}

.footer__logo-wrapper {
  display: flex;
  align-items: center;
  gap: 4rem 2.5rem;
}

@media (max-width: 767px) {
  .footer__logo-wrapper {
    flex-direction: column;
  }
  .pagetop {
    bottom: max(70px, 7rem);
  }
}

.footer__logo {
  display: block;
  width: max(100px, 11.2rem);
  height: auto;
  font-size: 2.4rem;
  text-align: center;
}
.footer__logo span {
  font-size: 3rem;
}

.footer__address {
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .footer__address {
    text-align: center;
  }
}

.footer__address a {
  display: block;
  font-size: max(14px, 1.8rem);
  font-weight: 600;
  color: var(--red);
  margin-bottom: 0.8rem;
}

@media (max-width: 767px) {
  .footer__address a {
    text-decoration: none;
  }
}

.footer__address a span {
  font-size: max(18px, 2.6rem);
}

@media (max-width: 767px) {
  .footer__address a span {
    text-decoration: underline;
  }
}

.footer__link {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 767px) {
  .footer__link {
    flex-direction: column;
  }
}

.footer__nav-list {
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}

.footer__nav-item a {
  letter-spacing: 0.13em;
  font-weight: 700;
  font-size: max(14px ,1.6rem);
  border-right: 1px solid #FFF;
  padding-right: 2.4rem;
  margin-right: 2.4rem;
}
.footer__nav-item:nth-child(6) a {
  border: none;
  padding: 0;
  margin: 0;
}
.footer__sns {
  display: flex;
  gap: 3.4rem;
}
.footer__sns li {
  width: max(20px, 2.4rem);
  height: max(20px, 2.4rem);
}

.copy {
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .footer__nav-item a {
    border: none;
    padding: 0;
    margin: 0;
  }
  .footer {
    padding: 4.8rem 0 12rem;
  }
}




/*  ----------------------------------------------------------

fixed btn

----------------------------------------------------------  */
.fixed-btn {
  position: fixed;
  display: flex;
  flex-direction: column;
  top: 45%;
  right: 0;
  z-index: 999;
  transform: translate(0, -50%);
  width: 8rem;
  max-width: 80px;
  gap: 2rem;
  -webkit-transform: translate(0, -50%);
}
.fixed-btn a {

}
.fixed-btn a img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .fixed-btn {
      top: auto;
      bottom: 0;
              transform: none;
      width: 100%;
      flex-direction: initial;
      -webkit-transform: none;
      max-width: initial;
      gap: 0;
  }
  .fixed-btn a {
      display: flex;
      justify-content: center;
      align-items: center;
      height: max(50px,6.4rem);
      background: var(--brwon);
      color: #ffffff;
      font-weight: bold;
      font-size: max(14px,2rem);
      text-decoration: none !important;
      width: 50%;
  }
  .fixed-btn a.tel-btn  {
      background: #191a56;
  }
  .fixed-btn a.reserve-btn  {
      background: #ae8157;
  }
}
.CMS-NOT-EDITABLE-AREA {
  height: 100%;
}