@charset "UTF-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
html {
  color: #423D2F;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}
html a {
  text-decoration: none;
}

/*
 * ヘッダ
 */
header {
  background-color: #F7F3E4;
  margin: 0;
  padding: 7px 20px;
  font-size: 14px;
}
header .menu-btn {
  display: none;
}
header .header__nav {
  text-align: right;
  margin: 0 30px 0 auto;
}
header .header__nav .header__item {
  margin: 0 20px;
  display: inline-block;
}
header .header__nav .header__item a {
  color: #6D5950;
}
header .header__nav .header__item a:hover {
  text-decoration: underline;
}
header .header__nav .header__item--contact {
  background-color: #A18272;
  border-radius: 15px;
  margin-left: 40px;
  padding: 5px 25px;
}
header .header__nav .header__item--contact a {
  color: #ffffff;
}

@media screen and (max-width:767px) {
  header {
    padding: 0;
    /*----------------------------
    * メニュー開閉ボタン
    *----------------------------*/
    /*----------------------------
    * メニュー本体
    *----------------------------*/
    /*----------------------------
     * アニメーション部分
     *----------------------------*/
    /* アニメーション前のメニューの状態 */
    /* アニメーション後のメニューの状態 */
  }
  header .menu-btn {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #DCCBAF;
    color: #fff;
    border: 1px solid #A18272;
    border-radius: 5px;
  }
  header .header__nav {
    margin: 0;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #DCCBAF;
    opacity: 0.9;
  }
  header .header__item {
    width: 100%;
    height: auto;
    padding: 0.5em 1em;
    text-align: center;
    color: #fff;
    box-sizing: border-box;
    font-size: 20px;
  }
  header .header__nav {
    transform: translateX(100vw);
    transition: all 0.3s linear;
  }
  header .header__nav.is-active {
    transform: translateX(0);
  }
}
/*
 * フッター
 */
footer {
  background-color: #6D5950;
  margin: 50px 0 0 0;
  padding: 10px;
  text-align: center;
  color: #ffffff;
  font-size: 12px;
}

#main {
  max-width: 100%;
}

#logo-wrapper {
  color: #6D5950;
  text-align: center;
  padding: 40px 0;
}
#logo-wrapper img {
  display: inline-block;
  margin-bottom: 20px;
}

#logo-wrapper__title {
  font-size: 18px;
  font-weight: bold;
}

#logo-wrapper__logoimage {
  max-width: 400px;
}

#main-top-banner {
  max-width: 100%;
}

.section .section__title {
  color: #6D5950;
  font-size: 48px;
  font-weight: bold;
  text-align: center;
  margin: 40px 0 0 0;
  padding: 0;
}
.section .section__subtitle {
  color: #6D5950;
  font-size: 14px;
  text-align: center;
  border-bottom: 1px solid #6D5950;
  margin-bottom: 20px;
}
.section .section__content {
  margin: 30px 0;
  max-width: 800px;
  margin: 10px auto;
}
.section .section__content--bgfill {
  width: 100%;
  background-color: #F7F3E4;
  padding: 5px 30px 15px 30px;
  margin: 20px auto;
}
.section .section__content--bgfill .section__content-title {
  font-size: 22px;
  text-align: center;
  margin: 0;
  padding: 5px 0;
}
@media screen and (max-width:767px) {
  .section {
    margin: 0 20px;
  }
}

.facility_wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-wrap: wrap;
}

.facility-item {
  margin: 5px;
  padding: 10px;
  width: 45%;
}

/*
.facility-item:nth-child(1){
  background-color:#432EAF;
}
.facility-item:nth-child(2){
  background-color: #6D5950;
}
.facility-item:nth-child(3){
  background-color:#432EAF;
}
.facility-item:nth-child(4){
  background-color: #6D5950;
}
*/
.section-content-reservebutton {
  background-color: #A18272;
  margin: 20px auto;
  width: 300px;
  padding: 10px 30px;
  display: block;
  border-radius: 15px;
  font-size: 24px;
  text-align: center;
}
.section-content-reservebutton a {
  color: #ffffff;
  width: 100%;
}

.section-content-reservebutton:hover {
  background-color: #ffffff;
  border: 1px solid #A18272;
}
.section-content-reservebutton:hover a {
  color: #A18272;
}

.section-content-googlecalendar iframe {
  margin-top: 20px;
  width: 100%;
  height: 400px;
}

@media all and (min-width: 768px) {
  .section-content-googlecalendar iframe {
    height: 600px;
  }
}
/*
 * Access
 */
.section__content-address {
  padding: 20px;
  text-align: center;
}

#section_access_gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
#section_access_gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}