@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box; }

body {
  color: #333;
  /* RGB */
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: left; }

a {
  text-decoration: none;
  color: #333; }

a:hover {
  opacity: 0.5; }

img {
  width: 100%; }

/*このサイト独自の共通部分*/
.none {
  display: none; }

.bold {
  /*少しだけ太くなる*/
  font-weight: 600; }

.under-line {
  /*黄色の蛍光ペン*/
  background: linear-gradient(transparent 60%, #ff9 60%); }

@media (min-width: 768px) {
  .telLink {
    pointer-events: none; } }

section h2 {
  font-size: 2.0rem; }

h2 span {
  font-size: 1.8rem;
  display: block; }

.about-h2-text {
  padding-left: 10px;
  line-height: 3.0rem; }

.h2-english {
  font-family: "Times New Roman", Times, "serif";
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.5rem; }
  @media (min-width: 768px) {
    .h2-english {
      font-size: 2.4rem; } }

.h2-small-japanese {
  font-size: 1.4rem;
  letter-spacing: 0.5rem; }

@media (min-width: 768px) {
  .mobile-only {
    display: none; } }
.br-mobile {
  /*brに高さを指定している*/
  display: block;
  content: "";
  margin: 8px; }

/*アクセス以下のコンテンツ*/
.section-map {
  margin: 80px 14px 0; }
  @media (min-width: 768px) {
    .section-map {
      margin: 160px 24px 0; } }

@media (min-width: 768px) {
  .section-map__innner {
    display: flex;
    justify-content: center; } }

.access-h2 {
  border-bottom: solid 1px #333;
  text-align: center;
  width: 140px;
  display: block;
  margin: 0 auto; }

.section-map__google-map {
  margin-top: 45px; }

.google-map {
  width: 100%;
  height: 215px;
  max-width: 680px; }
  @media (min-width: 768px) {
    .google-map {
      margin-left: 24px;
      width: 100%; } }

.section-access__description {
  text-align: left;
  display: flex;
  justify-content: center;
  align-items: center; }
  .section-access__description h3 {
    margin-top: 35px;
    font-size: 2rem; }
  .section-access__description address {
    margin-top: 25px;
    font-style: normal; }
  .section-access__description a {
    color: #333; }
  @media (min-width: 768px) {
    .section-access__description {
      display: block;
      padding-left: 70px;
      padding-top: 30px; } }

.section-map__station {
  margin-top: 15px; }

.section-hours {
  background-color: #f7f7f7;
  margin-top: 80px;
  padding-bottom: 80px; }
  @media (min-width: 768px) {
    .section-hours {
      margin-top: 160px; } }

.hours-h2 {
  text-align: center;
  display: block;
  border-bottom: solid 1px #333;
  width: 230px;
  margin: 45px auto; }

.section-hours__main-picture {
  width: 100%; }

.section-hours__description-wrapper {
  text-align: center; }

.section-hours__information {
  line-height: 3.5rem;
  background-color: #fff;
  padding: 0 35px; }
  @media (min-width: 768px) {
    .section-hours__information {
      padding: 0 70px; } }

.weeks-background {
  display: block;
  width: 80%;
  max-width: 240px;
  background-color: #fff;
  margin: 45px auto 0;
  padding: 60px 20px; }
  @media (min-width: 768px) {
    .weeks-background {
      max-width: 380px; } }

dt {
  float: left;
  padding: 0; }
  @media (min-width: 768px) {
    dt {
      margin-left: 40px; } }

dd {
  width: 120px;
  margin-left: 60px;
  padding: 0; }
  @media (min-width: 768px) {
    dd {
      margin-left: 100px; } }

.section-hours__holiday {
  margin-top: 20px; }

.section-hours__detail {
  font-size: 1.4rem;
  margin: 45px auto 0;
  text-align: left;
  display: block;
  width: 240px; }
  @media (min-width: 768px) {
    .section-hours__detail {
      width: 430px; } }

.section-footer {
  background-color: #1f2f50;
  color: #fff;
  padding: 24px 0; }
  @media (min-width: 768px) {
    .section-footer {
      width: 50%; } }

.footer-logo {
  width: 80px;
  margin: 24px auto 0; }

.footer__small-japanese {
  font-size: 1.2rem; }

.footer-menu {
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center; }
  .footer-menu li {
    width: 160px;
    margin-top: 30px;
    text-align: center; }
  .footer-menu a {
    display: block;
    color: #fff; }

.copyright {
  font-size: 1.4rem;
  margin-top: 60px;
  display: block;
  text-align: center; }

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  /*ナビの高さ*/
  /*動き*/
  transition: all 0.6s;
  background-color: #b9c9c9;
  box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.4); }

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
  width: 100%; }
  @media (min-width: 768px) {
    #g-nav.panelactive {
      right: 0;
      width: 50%; } }

/*ナビゲーション*/
#g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

/*リストのレイアウト設定*/
#g-nav li {
  padding-top: 30px;
  list-style: none;
  text-align: center; }

#g-nav li:first-child {
  padding-top: 90px; }
  @media (min-width: 768px) {
    #g-nav li:first-child {
      padding-top: 60px; } }

#g-nav li span {
  font-size: 1.4rem; }

#g-nav li a {
  color: #fff;
  text-decoration: none;
  display: block;
  letter-spacing: 0.1em;
  font-weight: bold;
  font-size: 1.6rem; }

.menu-logo {
  width: 80px;
  margin: 15vh auto 0; }

/*========= ボタンのためのCSS ===============*/
.open-btn {
  position: fixed;
  z-index: 9999999999;
  /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0);
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px; }
  @media (min-width: 768px) {
    .open-btn {
      top: 20px;
      right: 20px; } }

/*×に変化*/
.open-btn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #fff;
  width: 45%; }
  @media (min-width: 768px) {
    .open-btn span {
      width: 55%; } }

.open-btn span:nth-of-type(1) {
  top: 10px; }

.open-btn span:nth-of-type(2) {
  top: 20px; }

.open-btn span:nth-of-type(3) {
  top: 30px; }

.open-btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 55%; }

.open-btn.active span:nth-of-type(2) {
  opacity: 0; }

.open-btn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 55%; }
