@charset "UTF-8";
:root {
  --color-base: #F0EDE5;
  --color-txt_color: #40634A;
  --color-txt_main: #333;
  --color-point_grn: #244B30;
  --color-white: #FFF;
  --color-gray: #F0F0F0;
  --PC_l_h2: 3.2rem;
  --PC_m_h3: 2.4rem;
  --PC_xs_h4: 2rem;
  --PCfont-sub: 2rem;
  --PCfont-p: 1.8rem;
  --PCfont-lead: 1.4rem;
  --PCfont-note: 0.812rem;
  --SP_l_h1: 2.4rem;
  --SP_m_h2: 2rem;
  --SP_s_h3: 1.6rem;
  --SP_xs_h4: 1.6rem;
  --SPfont-p: 1.4rem;
  --SPfont-lead: 1.3rem;
  --SPfont-note: 0.812rem;
  --gap30: 30px;
  --gap40: 40px;
  --lineHeight01: 1;
  --lineHeight02: 1.3;
}

html {
  background-color: var(--color-base);
  font-size: 62.5%;
}
html button {
  /* 背景色を無色に */
  background: transparent;
  /* 枠線を消す */
  border: none;
  /* クリックした際に枠線をnone消す */
  outline: none;
  /* 影を消す */
  box-shadow: none;
}
html h2,
html .zen-min_sb {
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-size: var(--PC_l_h2);
  color: var(--color-txt_color);
  line-height: 1.5;
}
html h3,
html .zen-min_bold {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: var(--PC_m_h3);
  color: var(--color-txt_color);
  line-height: 1;
}
html .zen-min_black {
  font-family: "Zen Old Mincho", serif;
  font-weight: 900;
  font-size: var(--PCfont-sub);
  color: var(--color-txt_color);
}
html p,
html .notojp,
html noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: var(--PCfont-p);
  color: var(--color-txt_main);
  line-height: 2;
  text-align: left;
}
html .header {
  z-index: 10;
  background-color: var(--color-base);
  width: 100%;
  position: fixed;
  right: 0;
  top: 0;
}
html .header a:hover {
  opacity: 0.6;
  transition: 0.3s ease;
}
html .header .header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  margin: 0 auto;
  padding: 0 40px;
}
html .header .header__inner .pc-menu ul {
  display: flex;
  flex-direction: row;
  gap: 64px;
}
html .header .header__inner .pc-menu ul li a {
  text-decoration: none;
  color: var(--color-txt_color);
}
html .header .header__logo {
  width: 15%;
}
html .header .header__logo img {
  image-rendering: -webkit-optimize-contrast;
  max-width: 100%;
  height: auto;
}
html .header .header__hamburger {
  display: none;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  /* 全画面メニューより手前に */
}
html .header .header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-txt_color);
  position: absolute;
  left: 0;
  transition: all 0.3s ease;
}
html .header .header__hamburger span:nth-child(1) {
  top: 0;
}
html .header .header__hamburger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
html .header .header__hamburger span:nth-child(3) {
  bottom: 0;
}
html .header .header__menu {
  font-size: var(--PC_xs_h4);
  width: 400px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
html .header .header__menu a {
  color: var(--color-txt_color);
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  html .header .header__inner {
    height: 56px;
    padding: 0 16px;
  }
  html .header .header__logo {
    width: 20vw;
    max-width: 104px;
  }
  html .header .header__hamburger {
    display: block;
  }
  html .header .header__menu {
    display: none;
  }
}
html .fullscreen-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 90vw;
  background-color: var(--color-point_grn);
  z-index: 1000;
  display: none;
  /* デフォルトで非表示 */
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
}
html .fullscreen-menu .fullscreen-menu__close {
  position: absolute;
  top: 10px;
  right: 16px;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}
html .fullscreen-menu .fullscreen-menu__close span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
html .fullscreen-menu .fullscreen-menu__close span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
html .fullscreen-menu .fullscreen-menu__close span:nth-child(2) {
  transform: translateY(-50%) rotate(-45deg);
}
html .fullscreen-menu nav ul {
  list-style: none;
  padding: 0;
  margin-bottom: 60px;
  text-align: end;
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
}
html .fullscreen-menu nav ul li {
  margin-bottom: 32px;
}
html .fullscreen-menu nav ul li a {
  color: var(--color-white);
  font-size: var(--SP_m_h2);
  text-decoration: none;
}
html .fullscreen-menu .company-info {
  display: contents;
}
html .fullscreen-menu .company-info img {
  filter: invert(80%) brightness(150%);
  width: 133px;
  margin-bottom: 16px;
}
html .fullscreen-menu .company-info .address {
  color: var(--color-white);
  font-size: var(--SPfont-p);
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
}
html .fullscreen-menu.is-open {
  display: flex;
  opacity: 1;
  visibility: visible;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.3);
}
html body.is-open {
  overflow: hidden;
  /* 背景のスクロールを禁止 */
}
html body.is-open::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  /* 黒色の半透明 */
  z-index: 999;
  /* 全画面メニューより一つ下のレイヤー */
  transition: all 0.3s ease;
}
html body.is-open .header__hamburger span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
html body.is-open .header__hamburger span:nth-child(2) {
  opacity: 0;
}
html body.is-open .header__hamburger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

main {
  margin-top: 80px;
  /* ヘッダー固定分のマージン */
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 56px;
    /* SP版ヘッダー固定分のマージン */
  }
}

.footer {
  background-color: var(--color-point_grn);
  padding: 64px 16px;
  text-align: center;
}
.footer p,
.footer li {
  color: var(--color-white);
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-size: var(--PCfont-sub);
}
.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
}
.footer__logo-image {
  display: block;
  width: auto;
  width: 300px;
  height: auto;
  margin: 0 auto 16px;
  filter: invert(80%) brightness(150%);
}
.footer__address {
  margin-bottom: 24px;
  text-align: center;
  /* アドレスを中央揃え */
}
.footer__nav {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  justify-content: center;
  gap: 32px;
}
.footer__nav-item a {
  color: inherit;
  text-decoration: none;
}
.footer__nav-item a:hover {
  opacity: 0.6;
  transition: 0.3s ease;
}
.footer__copyright {
  font-size: 0.75em;
  text-align: center;
  font-family: " Noto Sans JP" !important;
  font-size: var(--PCfont-lead) !important;
}

@media screen and (max-width: 1023px) {
  html main {
    margin-top: 52px;
  }
  html .header .header__inner {
    padding: 16px;
    height: 20px;
  }
  html .header .header__inner .header__logo {
    width: 20vw;
    max-width: 104px;
  }
  html .header .header__inner .header__menu {
    font-size: var(--SP_xs_h4);
    width: auto;
    gap: 20px;
  }
  html h2,
  html .zen-min_sb {
    font-size: var(--SP_m_h2);
  }
  html h3,
  html .zen-min_bold {
    font-size: var(--SP_s_h3);
    line-height: 1;
  }
  html .zen-min_black {
    font-size: var(--SPfont-p);
  }
  html p,
  html .notojp,
  html noto-sans-jp {
    font-size: var(--SPfont-p);
    line-height: 1.5;
  }
  .footer {
    padding: 40px 16px 100px;
  }
  .footer p,
  .footer li {
    font-size: var(--SPfont-p);
  }
  .footer__logo-image {
    width: 200px;
    margin-bottom: 12px;
  }
  .footer__address {
    margin-bottom: 16px;
  }
  .footer__nav {
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
  }
  .footer__copyright {
    font-size: var(--SPfont-lead) !important;
  }
}
@media screen and (max-width: 767px) {
  html .pc-menu {
    display: none;
  }
  html .footer__nav {
    display: none;
  }
}/*# sourceMappingURL=common.css.map */