@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #333; /* RGB */
  font-family: 'Shippori Mincho', serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.sp-hidden {
  display: none;
}
.pc-hidden {
  display: block;
}
@media screen and (max-width: 480px) {
  .sp-hidden {
    display: block;
  }
  .pc-hidden {
    display: none;
  }
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 270px;
  height: 100vh;
  background-color: #FFF8E9;
  border-right: 0.5px solid #333;
}
.header h1 {
  position: absolute;
  top: 42px;
  left: calc(50% - 60px);
  width: 130px;
  height: 130px;
  z-index: 90000;
}
.header h1 img {
  max-width: 100%;
}
.header__navigation {
  position: absolute;
  top: 202px;
  left: calc(50% - 60px);
}
.header__navigation ul li {
  display: block;
  margin: 0 0 21px;
}
.header__navigation ul li a {
  text-decoration: none;
  font-weight: 700;
  color: #333;
}
.header__contact_container {
  position: absolute;
  top: 421px;
  left: calc(50% - 90px);
  margin-bottom: 10px;
}
.header__membership_container {
  position: absolute;
  top: 521px;
  left: calc(50% - 90px);
  margin-bottom: 10px;
}
.header__contact_container h3 {
  display: block;
  font-weight: 700;
  text-decoration-line: underline;
  padding-left: 13px;
  margin-bottom: 18px;
}
.header__membership_container h3 {
  display: block;
  font-weight: 700;
  text-decoration-line: underline;
  padding-left: 24px;
  margin-bottom: 18px;
}
.header__contact-botton, .header__membership-botton {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  width: 175px;
  padding: 1rem 2rem;
  font-weight: 700;
  border: 2px solid #205E91;
  background: #205E91;
  color: #FFF8E9;
  border-radius: 6px;
  transition: 0.5s;
}
.header__contact-botton:hover, .header__membership-botton:hover {
  color: #333;
  background: #FFF8E9;
}
.header__sns_links {
  position: absolute;
  top: 611px;
  left: calc(50% - 90px);
}
.header__sns_links ul {
  display: flex;
  margin: 20px auto 0;
}
.header__sns_links ul li {
  list-style: none;
  width: 40px;
  margin: 0 17px 0 25px;
}
.header__sns_links ul li img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .header {
    width: 100%;
    height: 100px;
    position: relative;
    left: 0;
    top: 0;
    padding: 19px 24px 0 24px;
    z-index: 999;
    border-right: none;
  }
  .header h1 {
    height: 70px;
    width: 70px;
    position: absolute;
    left: auto;
    right: 24px;
    top: 15%;
  }
  .header__navigation {
    top: 140px;
  }
  .header__navigation ul li a {
    text-decoration: none;
    font-weight: 700;
    color: #FFF8E9;
  }
  .header__contact_container h3, .header__membership_container h3 {
    color: #FFF8E9;
  }
  .header__contact-botton, .header__membership-botton {
    border: 2px solid #FCB61E;
    background: #FCB61E;
    color: #333;
  }
  #g-nav {
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    left: -120%;
    width: 50%;
    height: 100vh; /*ナビの高さ*/
    background: #167A7A;
    transition: all 0.6s;
  }
  #g-nav.panelactive {
    left: 0;
  }
  .openbtn {
    /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    position: relative;
    background: #167A7A;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 5px;
    z-index: 9999;
  }
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    left: 16px;
    height: 2px;
    border-radius: 5px;
    background: #FFF8E9;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 13px;
  }
  .openbtn span:nth-of-type(2) {
    top: 19px;
  }
  .openbtn span:nth-of-type(3) {
    top: 25px;
  }
  .openbtn span:nth-of-type(3)::after {
    content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: -3px;
    color: #FFF8E9;
    font-size: 0.6rem;
    text-transform: uppercase;
  }
  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
  .openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(3)::after {
    content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 5px;
    left: 4px;
  }
}
@media screen and (max-width: 480px) {
  .header {
    width: 100%;
    height: 60px;
    position: relative;
    left: 0;
    top: 0;
    padding: 7px 24px 0 24px;
    z-index: 999;
    border-right: none;
  }
  .header h1 {
    height: 50px;
    width: 50px;
    position: absolute;
    left: auto;
    top: 8%;
    right: 24px;
  }
  #g-nav {
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: 0;
    left: -120%;
    width: 100%;
    height: 100vh; /*ナビの高さ*/
    background: #167A7A;
    transition: all 0.6s;
  }
  #g-nav.panelactive {
    left: 0;
  }
  .openbtn {
    /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    position: relative;
    background: #167A7A;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    z-index: 9999;
  }
  /*ボタン内側*/
  .openbtn span {
    display: inline-block;
    transition: all .4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
    background: #FFF8E9;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 13px;
  }
  .openbtn span:nth-of-type(2) {
    top: 19px;
  }
  .openbtn span:nth-of-type(3) {
    top: 25px;
  }
  .openbtn span:nth-of-type(3)::after {
    content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: -5px;
    color: #FFF8E9;
    font-size: 0.6rem;
    text-transform: uppercase;
  }
  /*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/
  .openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(3)::after {
    content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 5px;
    left: 4px;
  }
}
.footer {
  width: calc(100% - 270px);
  margin-left: 270px;
  height: 210px;
  background-color: #205E91;
  padding: 40px;
}
.footer h2 {
  display: block;
  width: 130px;
  height: 130px;
}
.footer h2 img {
  width: 100%;
}
.footer-content-wrapper1 p {
  display: none;
}
.footer__copyright {
  display: block;
  text-align: center;
  color: #FFF8E9;
}
.footer-site-map, .footer__contact_container, .footer__membership_container, .footer__sns_links {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer {
    width: 100%;
    margin-left: 0px;
    height: auto;
    padding: 20px 24px 10px;
  }
  .footer-content-wrapper1 {
    display: flex;
    text-align: left;
    justify-content: space-between;
    margin-bottom: 35px;
  }
  .footer h2 {
    width: 50px;
    height: 50px;
  }
  .footer-content-wrapper1 p {
    display: block;
  }
  .footer-content-wrapper2 {
    display: flex;
    text-align: left;
    justify-content: space-between;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .footer-site-map {
    display: block;
    margin-right: 53px;
  }
  .footer-site-map__main-links li {
    margin-bottom: 20px;
  }
  .footer-site-map__main-links li a {
    text-decoration: none;
    color: #FFF8E9;
  }
  .footer-site-map__main-links li a:visited {
    color: #FFF8E9;
  }
  .footer__botton-container {
    display: block;
  }
  .footer__contact_container {
    display: block;
  }
  .footer__membership_container {
    display: block;
  }
  .footer__contact_container h3 {
    display: block;
    font-weight: 700;
    text-decoration-line: underline;
    padding-left: 13px;
    margin-bottom: 18px;
  }
  .footer__membership_container h3 {
    display: block;
    font-weight: 700;
    text-decoration-line: underline;
    padding-left: 24px;
    margin-bottom: 18px;
  }
  .footer__contact-botton, .footer__membership-botton {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 175px;
    padding: 1rem 2rem;
    font-weight: 700;
    border: 2px solid #FCB61E;
    background: #FCB61E;
    color: #FFF8E9;
    border-radius: 6px;
    transition: 0.5s;
  }
  .footer__contact-botton:hover, .footer__membership-botton:hover {
    color: #333;
    background: #FFF8E9;
  }
  .footer__sns_links {
    display: block;
    margin-bottom: 20px;
  }
  .footer__sns_links ul {
    display: flex;
    justify-content: flex-end;
    margin: 20px auto 0;
  }
  .footer__sns_links ul li {
    list-style: none;
    width: 40px;
    margin: 0 17px 0 25px;
  }
  .footer__sns_links ul li img {
    width: 100%;
  }
  .footer__copyright {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 480px) {
  .footer {
    width: 100%;
    margin-left: 0px;
    height: auto;
    padding: 20px 24px 10px;
  }
  .footer-content-wrapper1 {
    display: flex;
    text-align: left;
    justify-content: space-between;
    margin-bottom: 35px;
  }
  .footer h2 {
    width: 50px;
    height: 50px;
  }
  .footer-content-wrapper1 p {
    display: block;
  }
  .footer-content-wrapper2 {
    display: flex;
    text-align: left;
    justify-content: space-around;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .footer-site-map {
    display: block;
    margin-right: auto;
  }
  .footer-site-map__main-links li {
    margin-bottom: 20px;
  }
  .footer-site-map__main-links li a {
    text-decoration: none;
    color: #FFF8E9;
  }
  .footer-site-map__main-links li a:visited {
    color: #FFF8E9;
  }
  .footer__botton-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .footer__contact_container {
    display: block;
  }
  .footer__membership_container {
    display: block;
  }
  .footer__contact_container h3 {
    display: block;
    font-weight: 700;
    text-decoration-line: underline;
    padding-left: 13px;
    margin-bottom: 18px;
  }
  .footer__membership_container h3 {
    display: block;
    font-weight: 700;
    text-decoration-line: underline;
    padding-left: 24px;
    margin-bottom: 18px;
  }
  .footer__contact-botton, .footer__membership-botton {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: 175px;
    padding: 1rem 2rem;
    font-weight: 700;
    border: 2px solid #FCB61E;
    background: #FCB61E;
    color: #FFF8E9;
    border-radius: 6px;
    transition: 0.5s;
  }
  .footer__contact-botton:hover, .footer__membership-botton:hover {
    color: #333;
    background: #FFF8E9;
  }
  .footer__sns_links {
    display: block;
    margin-bottom: 20px;
  }
  .footer__sns_links ul {
    display: flex;
    justify-content: flex-end;
    margin: 20px auto 0;
  }
  .footer__sns_links ul li {
    list-style: none;
    width: 40px;
    margin: 0 17px 0 25px;
  }
  .footer__sns_links ul li img {
    width: 100%;
  }
  .footer__copyright {
    font-size: 1.4rem;
  }
}