@charset "UTF-8";
html {
  overflow-y: scroll;
}

body {
  box-sizing: border-box;
  min-width: 320px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 14px;
  color: #000;
  background-color: #fff;
}

@media (max-width: 949px) {
  body:not(.page-home) {
    padding-top: 55px;
  }
}

@media (min-width: 950px) {
  body:not(.page-home) {
    padding-top: 65px;
  }
}

img {
  vertical-align: bottom;
}

@media (max-width: 949px) {
  .onlyDesktop {
    display: none;
  }
}

@media (min-width: 950px) {
  .onlyMobile {
    display: none;
  }
}

.navigation_bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  background-color: #fff;
}

body.page-home .navigation_bar {
  transition: visibility 0.3s linear, opacity 0.3s ease;
}

body.page-home .navigation_bar:not(.scrolled) {
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
}

.navigation_bar_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1024px;
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 949px) {
  .navigation_bar_inner {
    height: 55px;
  }
}

@media (min-width: 950px) {
  .navigation_bar_inner {
    height: 65px;
  }
}

.navigation_root {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 17px;
  font-size: 18px;
  font-weight: normal;
  line-height: 24px;
  color: #4c4948;
  text-align: center;
}

.navigation_root a {
  display: inline-block;
  padding-left: 0.26em;
  color: inherit;
  text-decoration: none;
}

.navigation_root span {
  display: block;
}

.navigation_root span:nth-of-type(1) {
  margin-bottom: 5px;
  font-size: 12px;
  line-height: 16px;
  text-indent: -0.26em;
  letter-spacing: 0.26em;
}

.navigation_root span:nth-of-type(2) {
  font-size: 35px;
  font-weight: bold;
  line-height: 38px;
  letter-spacing: 0.26em;
}

@media (max-width: 949px) {
  .navigation_button {
    margin-right: 15px;
  }
}

@media (min-width: 950px) {
  .navigation_button {
    display: none;
  }
}

.navigation_button a,
.navigation_button a span {
  box-sizing: border-box;
  display: inline-block;
}

.navigation_button a {
  position: relative;
  display: block;
  width: 44px;
  height: 44px;
  border-color: transparent;
  border-style: solid;
  border-width: 15px 7px;
}

.navigation_button a span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000;
}

.navigation_button a span:nth-of-type(1) {
  top: 0;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

body.showMenu .navigation_button a span:nth-of-type(1) {
  -webkit-transform: translateY(6px) rotate(-315deg);
          transform: translateY(6px) rotate(-315deg);
}

.navigation_button a span:nth-of-type(2) {
  top: 6px;
  transition: opacity 0.3s;
}

body.showMenu .navigation_button a span:nth-of-type(2) {
  opacity: 0;
}

.navigation_button a span:nth-of-type(3) {
  top: 12px;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

body.showMenu .navigation_button a span:nth-of-type(3) {
  -webkit-transform: translateY(-6px) rotate(315deg);
          transform: translateY(-6px) rotate(315deg);
}

@media (max-width: 949px) {
  .navigation_menu_list {
    position: fixed;
    top: 55px;
    left: 0;
    z-index: 100;
    width: 100%;
    height: calc(100% - 55px);
    overflow-y: scroll;
    color: #231815;
    pointer-events: none;
    visibility: hidden;
    background-color: #fff;
    opacity: 0;
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  body.useTransition .navigation_menu_list {
    transition: visibility 0.5s linear, opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: visibility 0.5s linear, transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
    transition: visibility 0.5s linear, transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), opacity 0.5s cubic-bezier(0.65, 0.05, 0.36, 1), -webkit-transform 0.5s cubic-bezier(0.65, 0.05, 0.36, 1);
  }
  body:not(.useTransition) .navigation_menu_list {
    transition: none;
  }
  body.showMenu .navigation_menu_list {
    pointer-events: auto;
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .navigation_menu_list_inner {
    position: relative;
    z-index: 500;
    max-width: 380px;
    margin: 24px auto 0;
    text-align: center;
  }
  .navigation_menu_list_inner ul {
    width: 100%;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: 0.1em;
    list-style-type: none;
  }
  .navigation_menu_list_inner ul li a {
    display: inline-block;
    line-height: 46px;
    color: inherit;
    text-decoration: none;
    vertical-align: top;
  }
}

@media (min-width: 950px) {
  .navigation_menu_list ul {
    display: flex;
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
    list-style-type: none;
  }
  .navigation_menu_list ul > li + li {
    margin-left: 32px;
  }
  .navigation_menu_list ul a {
    color: inherit;
    text-decoration: none;
  }
  .navigation_menu_list ul a:hover {
    text-decoration: underline;
  }
}

.content {
  margin-bottom: 150px;
}

@media (max-width: 949px) {
  body:not(.page-home) .content {
    margin-right: 12px;
    margin-left: 12px;
  }
}

@media (min-width: 950px) {
  body:not(.page-home) .content {
    max-width: 780px;
    margin-right: auto;
    margin-left: auto;
  }
}

.content-header {
  position: relative;
}

@media (max-width: 949px) {
  .content-header {
    width: 100vw;
    margin-bottom: 48px;
    margin-left: -12px;
  }
}

@media (min-width: 950px) {
  .content-header {
    margin-bottom: 16px;
  }
}

.content-header::before {
  display: block;
  padding-top: 38.46154%;
  content: "";
}

.content-header h1 {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
  line-height: 26.75px;
  color: #fff;
  letter-spacing: 0.14em;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media (max-width: 949px) {
  .content-header h1 {
    font-size: 12px;
    text-shadow: #000 0 0 4px;
  }
}

@media (min-width: 950px) {
  .content-header h1 {
    font-size: 18px;
    text-shadow: #000 0 0 6px;
  }
}

.content .section .section-header {
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: normal;
  line-height: 34.75px;
}

@supports ((-webkit-font-feature-settings: "palt") or (font-feature-settings: "palt")) {
  .content .section .section-header {
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
  }
}

@media (max-width: 949px) {
  .content .section .section-header {
    letter-spacing: 0.06em;
  }
}

@media (min-width: 950px) {
  .content .section .section-header {
    letter-spacing: 0.14em;
  }
}

.content .section .section-description {
  margin-bottom: 80px;
  font-size: 15px;
  line-height: 30.75px;
  text-align: justify;
  text-justify: inter-ideograph;
  letter-spacing: 0.14em;
}

.content .section .section-description p {
  margin-top: 0;
  margin-bottom: 0;
}

.content .section .section-description p + p {
  margin-top: 34.75px;
}

.footer {
  padding-bottom: 64px;
}

.footer .image {
  max-width: 782px;
  margin-right: auto;
  margin-bottom: 32px;
  margin-left: auto;
}

.footer .image img {
  width: 100%;
  height: auto;
}

@media (min-width: 950px) {
  .footer .logo,
  .footer .address,
  .footer .notify {
    max-width: 684px;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer .address,
.footer .notify {
  font-size: 13px;
  line-height: 22.75px;
  letter-spacing: 0.2em;
}

@media (max-width: 949px) {
  .footer .address,
  .footer .notify {
    margin-left: 0.2em;
    text-align: center;
  }
}

@media (max-width: 949px) {
  .footer .logo {
    display: none;
  }
}

@media (min-width: 950px) {
  .footer .logo {
    margin-bottom: 24px;
  }
}

.footer .address {
  margin-bottom: 16px;
}

@media (max-width: 949px) {
  .footer .notify {
    margin-bottom: 32px;
  }
}

@media (min-width: 950px) {
  .footer .notify {
    margin-bottom: 16px;
  }
}

@media (max-width: 949px) {
  .footer .anchorButton {
    margin-bottom: 40px;
    text-align: center;
  }
}

@media (min-width: 950px) {
  .footer .anchorButton {
    max-width: 684px;
    margin-right: auto;
    margin-bottom: 32px;
    margin-left: auto;
  }
}

.footer .anchorButton a {
  box-sizing: border-box;
  display: inline-block;
  padding-right: 20px;
  padding-left: 20px;
  font-size: 13.5px;
  line-height: 30px;
  color: inherit;
  text-decoration: none;
  border: 1px solid #000;
}

.footer .googlemaps {
  margin-bottom: 45px;
}

@media (min-width: 950px) {
  .footer .googlemaps {
    width: 684px;
    margin-right: auto;
    margin-left: auto;
  }
}

.footer .googlemaps_inner {
  position: relative;
  height: 0;
  overflow: hidden;
}

@media (max-width: 949px) {
  .footer .googlemaps_inner {
    padding-bottom: 100%;
  }
}

@media (min-width: 950px) {
  .footer .googlemaps_inner {
    padding-bottom: 58.47953%;
  }
}

.footer .googlemaps iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.footer .copyright {
  font-size: 10px;
  line-height: 16px;
  color: #231815;
  text-align: center;
}
