@charset "UTF-8";
@import url(variable.css);
/* ===========================header===================================*/
.header {
  width: 100%;
  height: 80px;
  background-color: transparent;
  position: fixed;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: .3s;
  transition: .3s;
}

.header__text_color_white {
  color: #fff;
}

.header-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-logo__icon {
  display: inline-block;
  background-size: contain;
  width: 40px;
  height: 40px;
}

@media screen and (max-width: 768px) {
  .header-logo__icon {
    width: 30px;
    height: 30px;
  }
}

.header-logo__title {
  font-size: 3.2rem;
  letter-spacing: 0.18em;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .header-logo__title {
    font-size: 2.4rem;
  }
}

.header-logo__title_position {
  margin-left: 15px;
}

.header a {
  font-weight: 800;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .nav {
    display: none;
  }
}

.header__nav {
  margin-left: 120px;
}

.nav__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav__content_position:not(:first-child) {
  margin-left: 30px;
}

.nav__link_white {
  color: #fff;
}

.reserve-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 16.5px;
  padding-bottom: 16.5px;
  width: 170px;
  background-color: #978f10;
  font-weight: 800;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .reserve-btn {
    width: 150px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (max-width: 420px) {
  .reserve-btn {
    width: 100px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 350px) {
  .reserve-btn {
    width: 60px;
  }
}

@media screen and (max-width: 305px) {
  .reserve-btn {
    display: none;
  }
}

.reserve-btn::before {
  content: '';
  background-image: url(../img/callender.png);
  background-size: contain;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 10px;
}

@media screen and (max-width: 350px) {
  .reserve-btn::before {
    display: none;
  }
}

.reserve-btn .reserve-btn_text_style {
  font-size: 1.6rem;
}

@media screen and (max-width: 375px) {
  .reserve-btn .reserve-btn_text_style {
    font-size: 1.3rem;
  }
}

.reserve-btn_position {
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .reserve-btn_position {
    position: relative;
    right: 50px;
  }
}

.humberger-btn {
  position: fixed;
  z-index: 1;
  right: 20px;
  top: 38px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 30px;
  height: 40px;
  margin-left: 20px;
  vertical-align: center;
  display: none;
  font-size: 0.8rem;
}

@media screen and (max-width: 768px) {
  .humberger-btn {
    display: block;
  }
}

@media screen and (max-width: 350px) {
  .humberger-btn {
    margin-left: auto;
  }
}

.actived {
  display: block;
}

.none {
  display: none;
}

.humberger-btn__bar {
  display: inline-block;
  height: 4px;
  width: 100%;
  background-color: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.slide {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  background-color: #000;
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.slide__close {
  position: absolute;
  top: 25px;
  right: 20px;
  background-image: url(../img/slide__close.png);
  background-size: cover;
  display: inline-block;
  width: 35px;
  height: 35px;
}

.slide__contents {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.slide__content {
  width: 100%;
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.slide__link {
  display: block;
  color: #fff;
  font-size: 4rem;
}

@media screen and (max-width: 600px) {
  .slide__link {
    font-size: 3rem;
  }
}

.op {
  opacity: 1;
  -webkit-transition: .5s;
  transition: .5s;
}

.slide-none {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: .5s;
  transition: .5s;
}

.bg-white {
  background-color: #fff;
}

.bg-black {
  background-color: #000;
}

.text-white {
  color: #fff;
}

.text-balck {
  color: #000;
}

.noscroll {
  overflow: hidden;
}

/* ===========================header===================================*/
/* ===========================modal===================================*/
.modal__musk {
  position: fixed;
  z-index: 2;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.3);
}

.modal__musk_none {
  display: none;
}

.modal {
  position: fixed;
  z-index: 3;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 550px;
  height: 600px;
  background-color: white;
  opacity: 1;
  border: 1px solid #E7E7E7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.modal_none {
  display: none;
}

@media screen and (max-width: 768px) {
  .modal {
    width: 300px;
    height: 430px;
  }
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 22px;
  background: url(../img/modal-close.png) no-repeat center center/cover;
  display: inline-block;
  width: 18px;
  height: 18px;
}

.modal-inner {
  width: 78.18%;
  margin: 0 auto;
}

.modal__title-wrapper {
  border-bottom: 1px solid #E7E7E7;
}

.modal__title-wrapper_posiion {
  margin-bottom: 35.5px;
}

@media screen and (max-width: 768px) {
  .modal__title-wrapper_posiion {
    margin-bottom: 10px;
  }
}

.modal__title {
  text-align: center;
  font-size: 2rem;
  padding: 6.8% 0;
}

@media screen and (max-width: 768px) {
  .form label {
    font-size: 1.3rem;
  }
}

.modal .form__input {
  margin-top: 14px;
  margin-bottom: 14px;
  color: #797878;
  font-size: 1.4rem;
  border: 1px solid #E7E7E7;
  height: 32px;
  line-height: 1.7em;
  padding: 0 9px;
}

@media screen and (max-width: 768px) {
  .modal .form__input {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 1.3rem;
  }
}

input, textarea, select, option {
  resize: none;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  outline: none;
  border: none;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: inherit;
}

.submit-wrapper {
  margin-top: 50px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .submit-wrapper {
    margin-top: 15px;
  }
}

.form__submit {
  width: 198px;
  padding: 13px 0;
  border: 1px solid #707070;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .form__submit {
    width: 120px;
    padding: 6px;
  }
}

.form__submit:hover {
  cursor: pointer;
}

/* ===========================modal===================================*/
/* ===========================keyvisual===================================*/
.container {
  height: 56.25vw;
  min-height: 94vh;
}

.kv-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.img-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-animation: zoomUp 5s linear 0s 1 normal both;
          animation: zoomUp 5s linear 0s 1 normal both;
}

.kv-text {
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: 0.235em;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  vertical-align: center;
}

@media screen and (max-width: 768px) {
  .kv-text {
    font-size: 3.2rem;
  }
}

.kv-text__right {
  height: 220px;
  margin-left: 51px;
}

.kv-text__left {
  height: 320px;
}

.kv-text_position {
  position: absolute;
  top: 50%;
  left: 67.34%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .kv-text_position {
    top: 56%;
    left: 50%;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

/* ===========================keyvisual===================================*/
/* ===========================section1===================================*/
.section1 {
  background: url(../img/bg.jpg) no-repeat center center/cover;
}

.section1 .inner {
  margin: 0 auto;
}

.vertical-ly {
  position: relative;
  left: 18.6%;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
  height: 410px;
  padding-top: 150px;
  padding-bottom: 120px;
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .vertical-ly {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (max-width: 768px) {
  .vertical-ly {
    width: 100%;
    position: static;
    left: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    height: auto;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

.vertical-ly__position {
  padding-left: 118px;
}

@media screen and (max-width: 1100px) {
  .vertical-ly__position {
    padding-left: 70px;
  }
}

@media screen and (max-width: 768px) {
  .vertical-ly__position {
    padding-left: 0;
  }
}

.vertical-ly__titles {
  font-size: 2.8rem;
  font-weight: 500;
  letter-spacing: 0.5em;
}

@media screen and (max-width: 768px) {
  .vertical-ly__titles {
    font-size: 2.4rem;
    letter-spacing: 0.2em;
  }
}

@media screen and (max-width: 768px) {
  .vertical-ly__title_position:last-of-type {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 768px) {
  .vertical-ly__title_position:first-of-type {
    margin-bottom: 15px;
  }
}

.vertical-ly__content_position {
  padding-left: 118px;
}

@media screen and (max-width: 1100px) {
  .vertical-ly__content_position {
    padding-left: 70px;
  }
}

@media screen and (max-width: 768px) {
  .vertical-ly__content_position {
    margin: 0 auto 30px;
    padding-left: 0;
  }
}

.vertical-ly__title_position:first-of-type {
  margin-top: -86px;
  padding-left: 33px;
}

@media screen and (max-width: 1100px) {
  .vertical-ly__title_position:first-of-type {
    padding-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .vertical-ly__title_position:first-of-type {
    margin-top: 0;
    padding-left: 0;
  }
}

.vertical-ly__contents {
  letter-spacing: 0.375em;
}

@media screen and (max-width: 768px) {
  .vertical-ly__contents {
    margin: 0 auto;
  }
}

.vertical-ly__content {
  height: 450px;
}

@media screen and (max-width: 768px) {
  .vertical-ly__content {
    height: auto;
    max-width: 450px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 500px) {
  .vertical-ly__content {
    height: auto;
    max-width: 300px;
    font-size: 1.3rem;
    line-height: 1.5;
    letter-spacing: 0.119em;
  }
}

.vertical-ly__text_position:not(:last-of-type) {
  padding-left: 22px;
}

@media screen and (max-width: 768px) {
  .vertical-ly__text_position:not(:last-of-type) {
    padding-left: 0;
  }
}

.vertical-ly__name {
  letter-spacing: 0.45em;
  text-align: right;
}

/* ===========================section1===================================*/
/* ===========================section2===================================*/
.about {
  padding-top: 106px;
  padding-bottom: 78px;
}

@media screen and (max-width: 1024px) {
  .about {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

@media screen and (max-width: 768px) {
  .about {
    padding: 0;
  }
}

.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.about__content:not(:last-of-type) {
  margin-bottom: 122px;
}

@media screen and (max-width: 1024px) {
  .about__content:not(:last-of-type) {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 768px) {
  .about__content:not(:last-of-type) {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1024px) {
  .about__content {
    display: block;
    position: relative;
    overflow: hidden;
  }
}

.about__content_row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.about__img-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 54.69%;
          flex: 0 1 54.69%;
  height: 545px;
  background-color: #efefef;
}

@media screen and (max-width: 1024px) {
  .about__img-wrapper {
    width: 100%;
  }
}

.about__img-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.about__img-wrapper_position {
  margin-right: 7.13%;
}

@media screen and (max-width: 1024px) {
  .about__img-wrapper_position {
    margin-right: 0;
  }
}

.about__img-wrapper_position-reverse {
  margin-left: 9.06%;
}

@media screen and (max-width: 1024px) {
  .about__img-wrapper_position-reverse {
    margin-left: 0;
  }
}

.introduction {
  padding-top: 19px;
}

@media screen and (max-width: 1024px) {
  .introduction {
    width: 400px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    color: #fff;
    padding-top: 0;
    text-shadow: #000 5px 5px 5px;
  }
}

@media screen and (max-width: 500px) {
  .introduction {
    width: 100%;
    padding: 0 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.about__content_row-reverse > .introduction {
  padding-top: 40px;
}

@media screen and (max-width: 1024px) {
  .about__content_row-reverse > .introduction {
    padding-top: 0;
  }
}

.introduction__title {
  font-size: 3.6rem;
  line-height: 1.72;
  font-weight: 500;
}

@media screen and (max-width: 1440px) {
  .introduction__title {
    font-size: 3rem;
  }
}

.introduction__text-wrapper_position {
  margin-top: 54px;
  margin-bottom: 67px;
}

@media screen and (max-width: 1024px) {
  .introduction__text-wrapper_position {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.introduction_row_reverse .introduction__text-wrapper_position {
  margin-top: 54px;
  margin-bottom: 35px;
}

@media screen and (max-width: 1024px) {
  .introduction_row_reverse .introduction__text-wrapper_position {
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.introduction__text {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 1440px) {
  .introduction__text {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb-only {
    display: none;
  }
}

.introduction__btn {
  font-size: 1.6rem;
  line-height: 2;
  width: 200px;
  padding-top: 12px;
  padding-bottom: 12px;
  border: 1px solid #707070;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 1024px) {
  .introduction__btn {
    background-color: transparent;
    color: #fff;
    border-color: currentColor;
  }
}

.introduction__btn:hover {
  background-color: #000;
  color: #fff;
  border-color: currentColor;
}

@media screen and (max-width: 1024px) {
  .introduction__btn:hover {
    background-color: #000;
    color: #fff;
    border-color: currentColor;
    opacity: 1;
  }
}

/* ===========================section2===================================*/
/* ===========================section3===================================*/
.section3 {
  background: url(../img/bg02.jpg) no-repeat center center/cover;
}

.recommendation {
  padding-top: 60px;
  padding-bottom: 144px;
}

@media screen and (max-width: 1024px) {
  .recommendation {
    padding-bottom: 60px;
  }
}

.recommendation__section-title {
  margin-bottom: 66px;
}

.section-title__logo {
  width: 40px;
  height: 40px;
  margin: 0 auto 20px;
  background: url(../img/sakura-icon-border-black.png) no-repeat center center/cover;
}

.section-title__text {
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 0.88;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .section-title__text {
    font-size: 2.6rem;
  }
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .cards {
    display: block;
  }
}

.card {
  width: 27.58em;
}

@media screen and (max-width: 768px) {
  .card {
    width: 100%;
  }
}

.cards__card:not(:last-of-type) {
  margin-right: 7.83%;
}

@media screen and (max-width: 1024px) {
  .cards__card:not(:last-of-type) {
    margin-right: 3%;
    margin-bottom: 60px;
  }
}

.card__link:last-child {
  margin-bottom: 0;
}

.card__img-wrapper {
  background-color: #efefef;
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
}

.card__img-wrapper img {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.card__img-wrapper_position {
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .card__img-wrapper_position {
    margin-bottom: 16px;
  }
}

.card__title {
  font-size: 2rem;
  line-height: 1.6em;
  font-weight: 500;
}

.card__title_position {
  margin-bottom: 36px;
}

@media screen and (max-width: 768px) {
  .card__title_position {
    margin-bottom: 18px;
  }
}

.card__text {
  line-height: 2em;
}

@media screen and (max-width: 1024px) {
  .card__text {
    font-size: 1.6rem;
    line-height: 1.5em;
  }
}

/* ===========================section3===================================*/
/* ===========================section4===================================*/
.notice {
  padding-top: 60px;
  padding-bottom: 60px;
}

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.notice__tab_tabs {
  margin: 38px 0 41px;
}

@media screen and (max-width: 768px) {
  .notice__tab_tabs {
    margin: 25px 0 25px;
  }
}

.tab-wrapper {
  cursor: pointer;
}

.tab-wrapper:first-of-type {
  margin-right: 53px;
}

.tab {
  line-height: 2;
}

.notice__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 768px) {
  .notice__contents {
    display: block;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.notice__contents_position {
  margin-bottom: -20px;
}

.notice__content {
  width: 48.0%;
  background-color: #f6f6f6;
  padding: 15px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .notice__content {
    width: 100%;
  }
}

.notice__content:nth-of-type(odd) {
  margin-right: 3.85%;
}

.notice__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.notice__img-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 103px;
          flex: 0 1 103px;
  min-width: 103px;
  height: 100px;
  background-color: #efefef;
}

.notice__img-wrapper img {
  width: 100%;
  height: 100%;
}

.notice__img-wrapper_position {
  margin-right: 30px;
}

.notice__content_text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.notice__content_day {
  font-size: 14px;
  line-height: 2.285em;
}

.notice__content_explanation {
  line-height: 2em;
}

@media screen and (max-width: 768px) {
  .notice__content_explanation {
    line-height: 1.5em;
  }
}

@media screen and (max-width: 375px) {
  .notice__content_explanation {
    font-size: 1.3rem;
  }
}

.tab-item {
  display: none;
}

.tab-active {
  display: block;
}

.under-line {
  text-decoration: underline;
}

/* ===========================section4===================================*/
/* ===========================section5===================================*/
.section5 {
  background: url(../img/access-bg.jpg) no-repeat center center/cover;
}

.access {
  padding-top: 60px;
  padding-bottom: 110px;
}

@media screen and (max-width: 768px) {
  .access {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

.access-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .access-contents {
    display: block;
  }
}

.access-contents__position {
  margin-top: 84px;
  margin-bottom: 69px;
}

@media screen and (max-width: 1024px) {
  .access-contents__position {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .access-contents__position {
    margin-bottom: 30px;
  }
}

.access__img-wrapper {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 54.66%;
          flex: 0 1 54.66%;
  background-color: #e2e2e2;
  background: url(../img/acess.jpg) no-repeat center center/cover;
}

@media screen and (max-width: 768px) {
  .access__img-wrapper {
    width: 100%;
  }
}

.access__img-wrapper::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

@media screen and (max-width: 768px) {
  .access__img-wrapper::before {
    padding-top: 100%;
  }
}

.access__img-wrapper-position {
  margin-right: 6.91%;
}

.access-address {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: 2;
}

@media screen and (max-width: 1024px) {
  .access-address {
    line-height: 1.5;
  }
}

.access-address p:not(:last-of-type) {
  margin-bottom: 8px;
}

.access-address p:first-of-type {
  margin-top: 12px;
}

.fw-bold {
  font-weight: 800;
}

.googlemap {
  position: relative;
  background-color: #e2e2e2;
  width: 66%;
  max-height: 592px;
  margin: 0 auto;
}

@media screen and (max-width: 1024px) {
  .googlemap {
    width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .googlemap {
    width: 100%;
  }
}

.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.googlemap:before {
  content: "";
  display: block;
  padding-top: 75%;
  /* 高さを幅の75%に固定 */
}

@media screen and (max-width: 768px) {
  .googlemap:before {
    padding-top: 100%;
  }
}

#content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* ===========================section5===================================*/
/* ===========================footer===================================*/
.footer-top {
  background: url(../img/footer-bg.jpg) no-repeat center center/cover;
  padding-top: 64px;
  padding-bottom: 61px;
}

.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footer-nav__link {
  display: inline-block;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.777em;
  font-size: 1.8rem;
  height: 97px;
  margin-bottom: 82px;
}

.footer-nav__link:not(:last-of-type) {
  margin-right: 34px;
}

.footer__title_position {
  display: block;
}

.footer__title_position {
  margin-bottom: 64px;
}

.footer__title_text {
  font-weight: 800;
  font-size: 3.2rem;
  letter-spacing: 0.18em;
  line-height: 1.5em;
  margin-top: -10px;
}

.footer__access {
  text-align: center;
}

.footer__access .address {
  letter-spacing: 0.18em;
}

@media screen and (max-width: 375px) {
  .footer__access {
    font-size: 1.3rem;
  }
}

.footer__access_top {
  margin-bottom: 20px;
}

.mail-num, .tel-num {
  margin-right: 20px;
}

.footer-bottom {
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #000;
  color: #fff;
  font-size: 1.2rem;
}

/* ===========================footer===================================*/
/*# sourceMappingURL=index.css.map */