@charset "UTF-8";
/*********************************************************
base
*********************************************************/
* {
  box-sizing: border-box;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  height: auto;
  max-width: 100%;
}

li {
  list-style: none;
}

span {
  font-weight: inherit;
}

button {
  cursor: pointer;
  padding: 0;
  border: none;
  outline: none;
  font: inherit;
  color: inherit;
  background: none;
}

.dib {
  display: inline-block;
}

/*********************************************************
header
*********************************************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
}
.header.on {
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid #d1d1d1;
}
.header.on .header__logo a {
  width: 80px;
}
@media (max-width: 1024px) {
  .header.on .header__logo a {
    width: 50px;
  }
}
.header.on .gnav__link {
  color: #333;
}
.header.on .menu-btn {
  top: 5px;
}
.header.on .menu-btn__bar {
  background: #333;
}
.header.on .menu-btn__bar::before, .header.on .menu-btn__bar::after {
  background: #333;
}
.header.on .close .menu-btn__bar {
  background: transparent;
}

.header__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 2000px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 50px;
  position: relative;
}

.header__logo {
  padding: 10px;
}
.header__logo a {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  padding-bottom: 70%;
  transition: 0.2s;
  width: 100px;
}
.header__logo a:hover {
  opacity: 0.8;
}

@media (max-width: 1024px) {
  .gnav {
    background: #fff;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
  }
}

.gnav__list {
  display: flex;
}
@media (max-width: 1024px) {
  .gnav__list {
    flex-direction: column;
  }
}

@media (min-width: 1025px) {
  .gnav__item:not(:last-child) {
    margin-right: 30px;
  }
}

.gnav__link {
  color: #fff;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .gnav__link {
    border-top: 1px solid #ddd;
    color: #333;
    display: block;
    padding: 15px 15px 15px 30px;
    position: relative;
  }
  .gnav__link::before {
    border-style: solid;
    border-width: 1px 1px 0 0;
    content: "";
    display: inline-block;
    height: 7px;
    width: 7px;
    transform: rotate(45deg);
    content: "";
    margin-top: -4px;
    position: absolute;
    top: 50%;
    left: 9px;
  }
}
.gnav__link:hover {
  text-decoration: underline;
}

@media (min-width: 1025px) {
  .gnav__close {
    display: none;
  }
}

.gnav__btn {
  background: #333;
  color: #fff;
  padding: 10px;
  text-align: center;
  width: 100%;
}

.menu-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  transition: 0.2s;
}
@media (min-width: 1025px) {
  .menu-btn {
    display: none;
  }
}

.menu-btn__inner {
  cursor: pointer;
  height: 30px;
  position: relative;
  width: 30px;
}

.menu-btn__bar {
  background: #FFF;
  height: 2px;
  margin-top: -1px;
  position: absolute;
  top: 50%;
  left: 0;
  transition: 0.5s;
  width: 100%;
}
.menu-btn__bar::before, .menu-btn__bar::after {
  background: #FFF;
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  transition: 0.5s;
  width: 100%;
}
.menu-btn__bar::before {
  margin-top: -11px;
}
.menu-btn__bar::after {
  margin-top: 10px;
}

.close .menu-btn__bar {
  background: transparent;
}
.close .menu-btn__bar::before, .close .menu-btn__bar::after {
  margin-top: 0;
}
.close .menu-btn__bar::before {
  transform: rotate(45deg);
}
.close .menu-btn__bar::after {
  transform: rotate(-45deg);
}

/*********************************************************
footer
*********************************************************/
.footer__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 2000px;
}
@media (max-width: 2000px) {
  .footer__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.footer__copy {
  font-size: 12px;
  padding: 30px 10px 70px 0;
  text-align: center;
}

/*********************************************************
PageTopボタン
*********************************************************/
.page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
}

.page-top__link {
  text-decoration: none;
  color: #333;
  text-align: center;
  display: block;
  opacity: 0.6;
  /*角丸*/
  /*
  width: 50px;
  border-radius: 5px;
  */
  /*円*/
  height: 50px;
  width: 50px;
  box-sizing: border-box;
}

.page-top__link:hover {
  opacity: 1;
}

/*********************************************************
index.html
*********************************************************/
.mv {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 2000px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 600px;
  position: relative;
  z-index: 1;
}
.mv::before {
  background: rgba(255, 255, 255, 0.2);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.mv__ttl {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-shadow: 0 0 1px #333;
}

.concept__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 2000px;
  padding-top: 70px;
  padding-bottom: 70px;
}
@media (max-width: 2000px) {
  .concept__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.concept__ttl {
  font-size: 24px;
  text-align: center;
}

.concept__txt {
  margin: 50px auto 0;
}
@media (min-width: 981px) {
  .concept__txt {
    max-width: 850px;
  }
}
@media (max-width: 980px) {
  .concept__txt {
    width: 80%;
  }
}
.concept__txt p {
  font-size: 14px;
}
.concept__txt p:not(:first-child) {
  margin-top: 1em;
}

.message__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 2000px;
}

.message__container {
  display: flex;
}
@media (max-width: 768px) {
  .message__container {
    display: block;
  }
}

.message__img,
.message__txt {
  width: 50%;
}
@media (max-width: 768px) {
  .message__img,
  .message__txt {
    width: 100%;
  }
}

.message__img {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .message__img {
    padding-bottom: 45%;
  }
}
.message__img::before {
  background: rgba(255, 255, 255, 0.2);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.message__txt {
  background: #f6f6f6;
  padding: 150px 50px;
}
@media (max-width: 1024px) {
  .message__txt {
    padding: 50px 20px;
  }
}
.message__txt p {
  font-size: 14px;
}
.message__txt p:not(:first-child) {
  margin-top: 1em;
}

.message__ttl {
  font-size: 20px;
  margin-bottom: 30px;
  text-align: center;
}

.feature {
  padding: 70px 0;
}

.feature__ttl {
  font-size: 24px;
  text-align: center;
}

.feature__inner {
  display: flex;
  justify-content: space-between;
  margin: 50px auto 0;
  width: 95%;
  max-width: 900px;
}
@media (max-width: 768px) {
  .feature__inner {
    display: block;
  }
}

.feature-box {
  width: 30%;
}
@media (max-width: 768px) {
  .feature-box {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 300px;
  }
  .feature-box:not(:first-child) {
    margin-top: 50px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .feature-box:not(:first-child) {
    margin-top: 30px;
  }
}

.feature-box__ttl {
  font-size: 18px;
  text-align: center;
}

.feature-box__img {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 50%;
  margin-top: 30px;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  max-width: 300px;
}
.feature-box__img::before {
  background: rgba(255, 255, 255, 0.2);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.feature-box__txt {
  font-size: 14px;
  margin-top: 20px;
}

.price {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 70px 0;
  position: relative;
  z-index: 1;
}
.price::before {
  background: rgba(255, 255, 255, 0.2);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.price__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 2000px;
}
@media (max-width: 2000px) {
  .price__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.price__ttl {
  font-size: 24px;
  text-align: center;
}

.price__container {
  background: rgba(0, 0, 0, 0.2);
  display: flex;
  justify-content: space-between;
  margin: 50px auto 0;
  max-width: 800px;
  padding: 10px;
}
@media (max-width: 800px) {
  .price__container {
    display: block;
    max-width: 600px;
  }
}

.price-list {
  width: 48%;
}
@media (max-width: 800px) {
  .price-list {
    margin-top: 30px;
    width: 100%;
  }
}

.price-list__item:not(:first-child) {
  margin-top: 30px;
}

.price-list__container {
  display: flex;
  justify-content: space-between;
}

.price-list__ttl {
  font-weight: bold;
  line-height: 1.3;
  margin-right: 10px;
}

.price-list__num {
  font-weight: bold;
  white-space: nowrap;
}

.price-list__txt {
  font-size: 14px;
  margin-top: 5px;
}

.price__tax {
  font-size: 14px;
  margin-top: 30px;
  text-align: right;
}

.access {
  padding: 50px 0;
}

.access__inner {
  box-sizing: border-box;
  margin-right: auto;
  margin-left: auto;
  max-width: 2000px;
}
@media (max-width: 2000px) {
  .access__inner {
    padding-left: 2%;
    padding-right: 2%;
  }
}

.access__ttl {
  font-size: 24px;
  text-align: center;
}

.access__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 50px auto 0;
  max-width: 1000px;
}
@media (max-width: 600px) {
  .access__container {
    flex-direction: column;
    justify-content: center;
  }
}

.access__info,
.access__gmap {
  width: 48%;
}
@media (max-width: 600px) {
  .access__info,
  .access__gmap {
    width: 100%;
  }
}

.access__table th,
.access__table td {
  font-size: 14px;
  padding: 10px;
}
.access__table th {
  text-align: right;
  white-space: nowrap;
}

.access__cc th,
.access__cc td {
  vertical-align: middle;
}
.access__cc ul {
  display: flex;
}
.access__cc li:not(:first-child) {
  margin-left: 10px;
}
.access__cc img {
  display: block;
  width: 30px;
}

.access__gmap {
  padding-bottom: 35%;
  position: relative;
}
@media (max-width: 600px) {
  .access__gmap {
    margin-top: 15px;
    padding-bottom: 45%;
  }
}
.access__gmap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.access__time:not(:first-child) {
  margin-top: 1em;
}
.access__time dd {
  margin-left: 1em;
}