@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");

/*============================
	base
============================*/
:root {
  --black: #585756;
  --white: #fff;
  --green: #408b7a;
  --font-sans: "Noto Sans JP", sans-serif;
  --bg-1: #f6fcf9;
}

html {
  font-size: calc(10 / 1400 * 100vw);
  color: var(--black);
  overflow-x: hidden;
}

@media (max-width: 767px) {
  html {
    font-size: calc(10 / 767 * 100vw);
  }
}

body {
  background: var(--white);
  font-family: var(--font-sans);
  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%;
}

/*============================
	header
============================*/
.header {
  background-color: var(--white);
  width: 100%;
  height: max(60px, 8rem);
  color: #353535;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5rem 0 10rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}

@media (max-width: 850px) {
  .header {
    padding: 0 4rem;
  }
}

@media (max-width: 767px) {
  .header {
    padding: 0 0 0 2rem;
  }
}

.header__logo {
  width: max(100px, 18rem);
}

@media (max-width: 767px) {
  .header__logo {
    width: max(120px, 18rem);
  }
}

.header__hamburger-sp {
  visibility: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
}

@media (max-width: 767px) {
  .header__hamburger-sp {
    background-color: var(--green);
    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 20px;
}

@media (max-width: 767px) {
  .header__contents {
    background-color: var(--white);
    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;
  row-gap: 4rem;
}

@media (max-width: 767px) {
  .header__nav-list {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.header__nav-list a {
  display: block;
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
  padding: 0 1.6rem;
}

@media (min-width: 768px) {
  .header__nav-list li a {
    border-right: solid 1px var(--black);
  }
}

.header__tel {
  font-size: max(16px, 2.4rem);
  font-weight: 700;
  color: var(--green);
  display: flex;
  align-items: center;
  gap: 4px;
}

.header__tel::before {
  content: "";
  display: block;
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(20px, 2.7rem);
  height: max(20px, 2.7rem);
}

/*============================
	footer
============================*/
.footer {
  background-color: var(--white);
  position: relative;
}

.pagetop {
  background-color: var(--white);
  width: max(45px, 8rem);
  height: max(45px, 8rem);
  border-radius: 50%;
  border: solid max(2px, 0.3rem) var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  bottom: 1rem;
  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: block;
  background: url("../img/pagetop.png") no-repeat center / contain;
  width: max(19px, 3rem);
  height: max(10px, 1.6rem);
  margin-bottom: 0.5rem;
}

.footer__nav {
  background-color: var(--green);
  width: 100%;
  height: max(50px, 7rem);
}

@media (max-width: 767px) {
  .footer__nav {
    height: max-content;
    padding: 5%;
  }
}

.footer__nav-list {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: max(20px, 3rem) 5.5rem;
}

@media (max-width: 767px) {
  .footer__nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.footer__nav-list a {
  display: block;
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .footer__nav-list a {
    background-color: var(--white);
    color: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
  }
}

.footer__inner {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 6rem 19rem;
  padding: 3.5rem 0 3.5rem 3rem;
}

@media (max-width: 767px) {
  .footer__inner {
    flex-direction: column-reverse;
    align-items: center;
    padding: 5rem 5%;
  }

  .footer__contents {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.footer__logo {
  display: block;
  width: max(100px, 16.5rem);
  height: auto;
}

.footer__address {
  font-size: max(12px, 1.8rem);
  margin-top: 2rem;
}

.footer__tel {
  font-size: max(28px, 4.8rem);
  font-weight: 500;
  color: var(--green);
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0;
}

.footer__tel::before {
  content: "";
  display: block;
  background: url("../img/tel_icon.png") no-repeat center / contain;
  width: max(25px, 5.2rem);
  height: max(25px, 5.2rem);
}

.copy {
  font-size: max(12px, 1.3rem);
  letter-spacing: 0.1em;
}

.footer__table {
  width: max-content;
}

@media (max-width: 767px) {
  .footer__table {
    width: 100%;
  }
}

.common__timetable {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.common__timetable caption {
  font-size: max(12px, 1.4rem);
  font-weight: 500;
  caption-side: bottom;
  margin-top: 1rem;
}

.common__timetable th,
.common__timetable td {
  border-bottom: #eaeaea solid 2px;
  font-size: max(12px, 1.8rem);
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  padding: 1rem 1.3rem;
}

.common__timetable td {
  color: var(--green);
}

@media (max-width: 767px) {
  .common__timetable th {
    width: 100%;
  }
}
