@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700;900&display=swap");

/*============================
	base
============================*/
:root {
  --text-color: #191b21;
  --color-white: #f5f4f4;
  --color-brown: #6d3f0e;
  --color-blue: #56657e;
  --color-red: #dc280a;
  --font-serif: "Noto Serif JP", serif;
  --bg-1: url("../img/texture-1.jpg") repeat-y center / 100% auto;
  --bg-2: url("../img/texture-2.jpg") no-repeat top center / cover;
}

html {
  font-size: calc(10 / 1440 * 100vw);
  color: var(--text-color);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  html {
    font-size: calc(10 / 767 * 100vw);
  }
}

body {
  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) {
  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: max(85rem, 100vh);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

@media (max-width: 850px) {
  .header {
    height: max(90rem, 100vh);
  }
}

@media (max-width: 767px) {
  .header {
    background: transparent;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

.header .header__logo {
  padding: 8.1rem 3.8rem 0;
  margin-bottom: 8.7rem;
}

@media (max-width: 767px) {
  .header .header__logo {
    padding: 2rem;
    margin: 0;
  }
}

.header .header__logo a {
  display: block;
  width: 18rem;
}

@media (max-width: 767px) {
  .header .header__logo a {
    width: max(92px, 26rem);
  }
}

.header__hamburger-sp {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header__hamburger-sp {
    background-color: var(--color-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(--color-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 {
  width: 12.1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  row-gap: 4.5rem;
}

@media (max-width: 767px) {
  .header__contents {
    background: url("../img/texture-1.jpg") no-repeat center / cover;
    width: 100%;
    height: 100%;
    min-height: max-content;
    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__nav-list {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
}

@media (max-width: 767px) {
  .header__nav-list {
    align-items: center;
  }
}

.header__nav-item {
  position: relative;
}

.header__nav-item a {
  font-size: max(12px, 1.6rem);
  font-weight: 900;
  letter-spacing: 0.11em;
}

@media (min-width: 768px) {
  .header__sns {
    margin-right: max(21px, 3.8rem);
  }
}

.header__sns li {
  width: max(20px, 2.9rem);
  height: max(20px, 2.9rem);
  margin-bottom: 3rem;
}

/*============================
	footer
============================*/
.footer {
  background-color: var(--color-brown);
  color: var(--color-white);
  padding: 3.8rem 0 2.2rem;
  position: relative;
}

.pagetop {
  background-color: var(--color-red);
  width: max(30px, 4rem);
  height: max(30px, 4rem);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 3rem;
  right: 1rem;
  z-index: 100;
}

.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(7px, 1rem);
  height: max(7px, 1rem);
  border: 0.2rem solid var(--color-white);
  border-left: 0;
  border-bottom: 0;
  position: absolute;
  transform: translate(-55%, -45%) rotate(-45deg);
  top: 50%;
  left: 50%;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  flex-direction: column-reverse;
  align-items: center;
  padding: 0 9.3rem 0 13.1rem;
  gap: 8.1rem;
}

@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    row-gap: 6rem;
    padding: 0;
  }
  .pagetop {
    bottom: 11rem;
  }
  .footer {
    padding: 10rem 0 20rem;
  }
}
@media (max-width: 540px) {
  .pagetop {
    bottom: 11rem;
  }
}

.footer__logo {
  display: block;
  width: max(150px, 17rem);
  height: auto;
  filter: invert(1);
}

.footer__link {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 4rem 6.4rem;
  margin-left: 5rem;
}

@media (max-width: 767px) {
  .footer__link {
    flex-direction: column;
    margin-left: 0;
  }
}

.footer__nav-list {
  display: flex;
  justify-content: center;
  gap: max(15px, 3rem) 6.8rem;
}

@media (max-width: 767px) {
  .footer__nav-list {
    flex-direction: column;
    align-items: center;
  }
}

.footer__nav-item a {
  font-size: max(12px, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  position: relative;
}
.footer__nav-item a::after {
  content: "";
  position: absolute;
  top: 0;
  right: -3.4rem;
  width: 1px;
  height: 100%;
  background: #FFF;
}
.footer__sns {
  display: flex;
  align-items: center;
  gap: 3.1rem;
}
.footer__sns li {
  width: max(20px, 2.5rem);
  height: max(20px, 2.5rem);
  filter: invert(1);
}
.copy {
  font-size: max(12px, 1.3rem);
  letter-spacing: 0.1em;
  text-align: center;
  padding: 0.4rem 0 0.5rem;
  margin-top: 9.7rem;
}
@media (max-width: 767px) {
  .footer__nav-item a::after {
    display: none;
  }
}

/*============================
	fixed_btn
============================*/
.fixed_btn {
  padding: 1px 0 1px 1px;
  position: fixed;
  transform: translateY(-50%);
  top: 50%;
  right: 0;
  z-index: 1000;
}

.fixed_btn a {
  text-decoration: none;
}

@media (max-width: 767px) {
  .fixed_btn {
    width: 100%;
    height: max(50px, 8rem);
    padding: 0;
    transform: none;
    top: auto;
    bottom: 0;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr;
    /*　追従ボタン二つにする場合こちらのコメントアウトを外す
    grid-template-columns: 1fr 1fr;
    */
  }
}

.fixed_btn-item {
  width: max(50px, 8rem);
  height: max(144px, 25rem);
  margin-bottom: max(18px,1.8rem);
}
.fixed_btn-item:nth-child(1) {
  height: max(140px, 24.3rem);
}
.fixed_btn-item img {
  width: 100%;
  height: auto;
}

@media (max-width: 767px) {
  .fixed_btn-item {
    width: 100%;
    height: 100%;
    background: var(--color-red);
    margin-bottom: 0;
  }
  .fixed_btn-item:nth-child(1) {
    border: 1px solid #FFF;
  }
  /*　追従ボタン二つにする場合こちらのコメントアウトを外す
  .fixed_btn-item:nth-child(1) {
    border-top: 1px solid #FFF;
    border-left: 1px solid #FFF;
    border-right: 0.5px solid #FFF;
    border-bottom: 1px solid #FFF;
  }
    */
  .fixed_btn-item:nth-child(2) {
    border-top: 1px solid #FFF;
    border-left: 0.5px solid #FFF;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
  }
}

.fixed_btn-item a {
  width: 100%;
  height: 100%;
  color: #FFF;
  writing-mode: vertical-rl;
  display: flex;
  justify-content: center;
}


@media (max-width: 767px) {
  .fixed_btn-item a {
    writing-mode: horizontal-tb;
    height: max(50px, 8rem);
    text-align: center;
  }
  .fixed_btn-item a p {
    display: flex;
    align-items: center;
  }
}

.fixed_btn-item span {
  font-family: var(--font-en);
  font-size: max(25px, 4rem);
  color: var(--brown);
  letter-spacing: 0.05em;
  line-height: 0.7;
  opacity: 0.2;
  position: absolute;
  left: 0;
}

@media (max-width: 767px) {
  .fixed_btn-item span {
    bottom: 0;
  }
}

.fixed_btn-item p {
  font-size: max(14px, 2rem);
  letter-spacing: 0.05em;
}