@charset "UTF-8";
/* ///////////////////////////////////////////////

　common style for modern browser
　Version: 4.0

/////////////////////////////////////////////// */
/* Base
----------------------------------------------- */
/*
　各要素のスタイルを初期化し、デフォルトのスタイルを定義
*/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:where([hidden]:not([hidden=until-found])) {
  display: none !important;
}

:where(html) {
  -webkit-text-size-adjust: none;
}

@supports not (min-block-size: 100dvb) {
  :where(html) {
    block-size: 100%;
  }
}
:where(body) {
  block-size: 100%;
  block-size: 100dvb;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

:where(input, button, textarea, select) {
  font: inherit;
  color: inherit;
}

:where(textarea) {
  resize: vertical;
  resize: block;
}

:where(button, label, select, summary, [role=button], [role=option]) {
  cursor: pointer;
}

:where(:disabled) {
  cursor: not-allowed;
}

:where(label:has(> input:disabled), label:has(+ input:disabled)) {
  cursor: not-allowed;
}

:where(button) {
  border: none;
  background: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

:where(a) {
  text-underline-offset: 0.1ex;
}

:where(ul, ol) {
  list-style: none;
}

:where(img, svg) {
  max-inline-size: 100%;
  block-size: auto;
  vertical-align: bottom;
}

:where(p, li, dt, dd, th, td, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(hr) {
  border: none;
  border-block-start: 1px solid;
  color: inherit;
  block-size: 0;
  overflow: visible;
}

:where(table) {
  border-collapse: collapse;
  border-spacing: 0;
}

:where(picture) {
  display: block;
}

:where(i, em) {
  font-style: normal;
}

/* Module
----------------------------------------------- */
.ul-disc > li {
  list-style: disc;
  margin-left: 1.2em;
}

.ol-decimal > li {
  list-style: decimal;
  margin-left: 1.2em;
}

/* State
----------------------------------------------- */
.hidden {
  display: none;
}

.hidden-pc {
  display: none;
}

@media (max-width: 960px) {
  .hidden-pc {
    display: block;
  }
  .hidden-pc.inline {
    display: inline-block;
  }
  .hidden-tab {
    display: none;
  }
}
@media (max-width: 520px) {
  .hidden-tab {
    display: block;
  }
  .hidden-tab.inline {
    display: inline-block;
  }
  .hidden-sp {
    display: none;
  }
}
@media (orientation: landscape) and (max-width: 960px) {
  .hidden-land {
    display: none;
  }
}
/* Utillity
----------------------------------------------- */
/* Text */
.taR {
  text-align: right;
}

.taL {
  text-align: left;
}

.taC {
  text-align: center;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
}

/* Image */
a img {
  backface-visibility: hidden;
  transition: all 0.2s;
}
@media (hover: hover) {
  a:hover img {
    opacity: 0.8;
  }
}

*[class|=logo] a {
  text-decoration: none;
}
*[class|=logo] a:hover {
  text-decoration: none;
}
*[class|=logo] a:hover img {
  opacity: 1;
}

a.tel {
  text-decoration: none;
}
a.tel img {
  opacity: 1;
}

/* button */
.btn {
  display: inline-block;
  backface-visibility: hidden;
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .btn:hover {
    text-decoration: none;
    opacity: 0.8;
  }
  .btn:hover img {
    opacity: 1;
  }
}

/*
Light 300
Regular 400
Medium 500
SemiBold 600
Bold 700
Black 900
*/
/*

  FONT
----------------------------------------------- */
:root {
  font-size: 1px;
  --color-text-base: #212529;
  --font-base: "Zen Old Mincho", serif;
}

body {
  color: var(--color-text-base);
  font-family: var(--font-base);
  font-size: 16px;
  font-style:  normal;
  font-feature-settings: "palt";
  letter-spacing: 0.03em;
}
:is(p) {
  line-height: 2;
}

:is(li, dt, dd, th, td, address) {
  line-height: 1.75;
}

:is(input, textarea, select) {
  font-size: max(0.8333333333vw, 16px);
}

:where(a) {
  color: inherit;
}
:where(a):hover {
  text-decoration: none;
}

/*

  LAYOUT
----------------------------------------------- */
@media (width < 960px) {
  body.isOpenMenu {
    overflow: hidden;
  }
}

/*
  HEADER
----------------------------------------------- */
/*
  MENU
----------------------------------------------- */
.isOpenMenu .gnav {
  opacity: 1;
  pointer-events: inherit;
}

/*
  BUTTON MENU
----------------------------------------------- */
.btnMenu {
  display: grid;
  place-items: center;
  background-color: var(--color-blue);
}
@media (width >= 961px) {
  .btnMenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 5.7291666667vw;
    height: 5.7291666667vw;
    padding-inline: 1.8229166667vw;
    padding-bottom: 1.5625vw;
  }
}
@media (width < 960px) {
  .btnMenu {
    position: relative;
    width: 17.4358974359vw;
    height: 17.4358974359vw;
    padding-inline: 5.8974358974vw;
    padding-bottom: 5.1282051282vw;
  }
}
.btnMenu span {
  content: "";
  grid-area: 1/1;
  background: #fff;
  border-radius: 999px;
  transition: 0.2s;
}
@media (width >= 961px) {
  .btnMenu span {
    height: 3px;
  }
}
@media (width < 960px) {
  .btnMenu span {
    height: 0.5128205128vw;
  }
}
.btnMenu span:nth-child(1) {
  width: 100%;
}
.btnMenu span:nth-child(2) {
  width: 58%;
  margin-left: auto;
}
@media (width >= 961px) {
  .btnMenu span:nth-child(2) {
    transform: translateY(0.9375vw);
  }
}
@media (width < 960px) {
  .btnMenu span:nth-child(2) {
    transform: translateY(3.3333333333vw);
  }
}
.btnMenu::after {
  position: absolute;
  bottom: 0.8em;
  left: 50%;
  transform: translateX(-50%);
  content: "Menu";
  color: #fff;
  font-family: var(--font-en);
}
@media (width >= 961px) {
  .btnMenu::after {
    font-size: 0.8333333333vw;
  }
}
@media (width < 960px) {
  .btnMenu::after {
    font-size: 3.0769230769vw;
  }
}

.isOpenMenu .btnMenu span:nth-child(1) {
  rotate: 45deg;
}
.isOpenMenu .btnMenu span:nth-child(2) {
  rotate: -45deg;
  width: 100%;
  transform: none;
}

/*
  FOOTER
----------------------------------------------- */
/*
  modules
----------------------------------------------- */