body {
  background-image: url("../images/main-bg.png");
  background-size: cover;
  z-index: 0;
  color: #fff;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

h1 {
  margin-left: 15px;
}

h2 {
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 10px;
  color: #b58234;
  background: linear-gradient(
    to right,
    rgba(255, 202, 95, 1) 25%,
    rgba(181, 130, 52, 1) 75%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 959px) {
  h2 {
    margin-bottom: 20px;
  }
}

h3 {
  font-size: 32px;
  font-weight: 400;
  color: #fff1c7;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 959px) {
  h3 {
    font-size: 18px;
    font-weight: 400;
    color: #fff1c7;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

h4 {
  font-size: 12px;
  font-weight: 400;
  color: #fff9e7;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
@media screen and (max-width: 959px) {
  h4 {
    font-size: 10px;
    font-weight: 400;
    color: #fff9e7;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}

h5 {
  font-size: 22px;
  color: #fff9e7;
  font-family: Noto Sans JP;
  letter-spacing: 0.1em;
  font-weight: 400;
}

/* 罫線設定 */
div .border1 {
  border-top: 1px solid #fff9e7;
  margin-top: 10px;
  margin-bottom: 20px;
}

/* ボックス設定 */
.box-center {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}

.img-box img {
  width: 100%;
  border-radius: 6px;
}

.photo-box img {
  width: 100%;
}

/* リスト設定 */
ul {
  list-style: none;
}

/* ボタン設定 */
.btn-1 {
  display: flex;
  justify-content: center;
  text-decoration: none;
  color: #fff;
  border-radius: 6px;
  width: 340px;
  height: 60px;
  border: 1px solid #fff;
  transition: 0.5s;
  background: linear-gradient(
    90deg,
    #ffca5f 0%,
    #b58234 50%,
    #9d7d3b 49%,
    #553d18 100%
  );
  background-size: 200% auto;
}
.btn-1:hover {
  background-position: right center;
}
.btn-1 a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  margin-top: 8px;
  font-family: Noto Serif JP;
}

.btn-2 {
  display: flex;
  justify-content: center;
  margin-left: 48px;
  text-decoration: none;
  color: #fff;
  border-radius: 0px 0px 6px 6px;
  width: 340px;
  height: 60px;
  border: 1px solid #fff;
  transition: 0.5s;
  background: linear-gradient(
    90deg,
    #ffca5f 0%,
    #b58234 50%,
    #9d7d3b 49%,
    #553d18 100%
  );
  background-size: 200% auto;
}
.btn-2:hover {
  background-position: right center;
}
.btn-2 a {
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  margin-top: 8px;
  font-family: Noto Serif JP;
}

.btn-2-txt {
  margin-top: 20px;
  margin-left: 48px;
  font-size: 24px;
  color: #b58234;
  background-color: #fff;
  width: 340px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 6px 6px 0px 0px;
}
@media screen and (max-width: 959px) {
  .btn-1 {
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border-radius: 6px;
    width: 280px;
    height: 49px;
    border: 1px solid #fff;
    transition: 0.5s;
    background: linear-gradient(
      90deg,
      #ffca5f 0%,
      #b58234 50%,
      #9d7d3b 49%,
      #553d18 100%
    );
    background-size: 200% auto;
  }
  .btn-1:hover {
    background-position: right center;
  }
  .btn-1 a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    margin-top: 8px;
  }

  .btn-2 {
    display: flex;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    border-radius: 0px 0px 6px 6px;
    width: 280px;
    height: 49px;
    border: 1px solid #fff;
    transition: 0.5s;
    background: linear-gradient(
      90deg,
      #ffca5f 0%,
      #b58234 50%,
      #9d7d3b 49%,
      #553d18 100%
    );
    background-size: 200% auto;
  }
  .btn-2:hover {
    background-position: right center;
  }
  .btn-2 a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    margin-top: 8px;
  }
  .btn-2-txt {
    display: flex;
    justify-content: center;
    font-size: 18px;
    color: #b58234;
    background-color: #fff;
    width: 280px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 6px 6px 0px 0px;
  }
}
/* カラー設定 */
.color-c {
  color: #fff9e7 !important;
}
.color-b {
  color: #000 !important;
}
.color-w {
  color: #fff !important;
}

.bg-black {
  background-color: black;
}
.bg-white {
  background-color: white;
}

/* マージン設定 */
.mt-6 {
  margin-top: 6px !important;
}
.mt-8 {
  margin-top: 8px !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mt-12 {
  margin-top: 12px !important;
}
.mt-13 {
  margin-top: 13px !important;
}
.mt-14 {
  margin-top: 14px !important;
}
.mt-15 {
  margin-top: 15px !important;
}
.mt-16 {
  margin-top: 16px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-35 {
  margin-top: 35px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-60 {
  margin-top: 60px !important;
}
.mt-50 {
  margin-top: 50px !important;
}
.mt-70 {
  margin-top: 70px !important;
}

.mb-5 {
  margin-bottom: 5px !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-12 {
  margin-bottom: 12px !important;
}
.mb-15 {
  margin-bottom: 15px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-50 {
  margin-bottom: 50px !important;
}
.mb-70 {
  margin-bottom: 70px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}

.ml-5 {
  margin-left: 5px !important;
}
.ml-10 {
  margin-left: 10px !important;
}
.ml-20 {
  margin-left: 20px !important;
}
.ml-30 {
  margin-left: 30px !important;
}
.ml-60 {
  margin-left: 60px !important;
}
.ml-90 {
  margin-left: 90px !important;
}
.ml-120 {
  margin-left: 120px !important;
}

.mr-10 {
  margin-right: 10px !important;
}
.mr-30 {
  margin-right: 30px !important;
}
.mr-40 {
  margin-right: 40px !important;
}
.mr-60 {
  margin-right: 60px !important;
}
.mr-120 {
  margin-right: 120px !important;
}

.pt-10 {
  padding-top: 10px;
}
.pt-20 {
  padding-top: 20px;
}
.pt-30 {
  padding-top: 30px;
}
.pt-40 {
  padding-top: 40px;
}
.pt-50 {
  padding-top: 50px;
}
.pt-60 {
  padding-top: 60px;
}

.mt-70-35 {
  margin-top: 70px;
}
.mb-70-35 {
  margin-bottom: 70px;
}
@media screen and (max-width: 959px) {
  .mt-60-sp {
    margin-top: 60px;
  }
}

/* ヘッダー */
.header-wrap-pc {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: left;
  background-color: black;
}
.header-logo-pc {
  margin-left: 80px;
}
@media screen and (max-width: 959px) {
  #header-main-area {
    display: none;
  }
}

.header-txt-box-pc {
  margin-left: 38px;
  display: flex;
  align-items: center;
  justify-content: left;
  height: 40px;
}
.l-border {
  border-left: 2px solid #fff;
  padding-left: 10px;
  padding-right: 20px;
}

/* PC版メニュー */
.global-nav-pc {
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.jumbotron-pc {
  color: inherit;
  background-color: #ecf0f1;
  background: url(../images/main-img.png) center no-repeat;
  background-size: cover;
}
.outer-pc {
  position: relative;
  height: 940px;
}
.inner-pc {
  position: absolute;
  top: 100px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 48%;
}

.nav-menu-pc {
  width: 140px;
  height: 60px;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-menu-pc:hover {
  width: 140px;
  height: 60px;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.3);
}
.nav-menu-pc a {
  width: 140px;
  height: 60px;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.nav-menu-pc a:hover {
  width: 140px;
  height: 60px;
  font-size: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* SP版ジャンボトロン */
.jumbotron-sp {
  color: inherit;
  background: url(../images/main-img-sp.png) center no-repeat;
  background-size: cover;
  height: 100vh;
  margin: 0;
  padding: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.outer-sp {
  position: relative;
}
.inner-sp {
  margin: 0 auto;
  text-align: center;
}

/* キャッチコピー */
#main-ttl {
  height: 12vh;
  background-image: url(../images/main-ttl-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-ttl-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-ttl-box img {
  width: 80%;
  margin-top: 30px;
  margin-bottom: 30px;
}

/* メインコンテンツ */
main {
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 70px;
  max-width: 960px;
}
@media screen and (max-width: 959px) {
  main {
    padding: 60px 16px;
  }
  p {
    font-size: 13px;
  }
}

div[class*="photo"] {
  height: 19em;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
}

.photo-1 {
  background-image: url(../images/home_01.png);
  background-position: center;
}
.photo-2 {
  background-image: url(../images/home_02.png);
  background-position: center;
}
.photo-3 {
  background-image: url(../images/home_03.png);
  background-position: center;
}
.photo-4 {
  background-image: url(../images/home_04.png);
  background-position: left;
}

/* サブページ用 */

#sub-main {
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 70px;
  max-width: 960px;
}
@media screen and (max-width: 959px) {
  #sub-main {
    padding-top: 110px;
    padding-left: 16px;
    padding-right: 16px;
  }
  p {
    font-size: 13px;
  }
}

.map-area {
  padding: 0 140px;
}
@media screen and (max-width: 959px) {
  .map-area {
    padding: 0 16px;
  }
}

.ttl-bnr {
  width: 100%;
  height: 34px;
  background: -moz-linear-gradient(left, #ffca5f, #b58234);
  background: -webkit-linear-gradient(left, #ffca5f, #b58234);
  background: linear-gradient(to right, #ffca5f, #b58234);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #372c26;
  font-weight: 500;
}

.ttl-bnr2 {
  width: 100%;
  height: 90px;
  background: -moz-linear-gradient(left, #ffca5f, #b58234);
  background: -webkit-linear-gradient(left, #ffca5f, #b58234);
  background: linear-gradient(to right, #ffca5f, #b58234);
  border-radius: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #372c26;
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 959px) {
  .ttl-bnr2 {
    width: 100%;
    height: 60px;
    background: -moz-linear-gradient(left, #ffca5f, #b58234);
    background: -webkit-linear-gradient(left, #ffca5f, #b58234);
    background: linear-gradient(to right, #ffca5f, #b58234);
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #372c26;
    font-size: 18px;
    font-weight: 500;
  }
}

.ttl-bnr3 {
  width: 100%;
  height: 34px;
  background: -moz-linear-gradient(left, #ffca5f, #b58234);
  background: -webkit-linear-gradient(left, #ffca5f, #b58234);
  background: linear-gradient(to right, #ffca5f, #b58234);
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Noto sans JP;
  color: #372c26;
  font-weight: 500;
  margin-top: 10px;
}

@media screen and (max-width: 959px) {
  .ttl-bnr3 {
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
  }
}

.access_txt {
  font-size: 24px;
  color: #fff9e7;
  line-height: 1.6em;
}
@media screen and (max-width: 959px) {
  .access_txt {
    font-size: 20px;
    color: #fff9e7;
    line-height: 1.2em;
  }
}

.notes {
  font-size: 12px;
  text-align: right;
  color: #fff9e7;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 959px) {
  .notes {
    font-size: 9px;
    text-align: right;
    color: #fff9e7;
  }
}

.slider-ttl {
  width: 100%;
}

.panorama-box {
  font-size: 24px;
  width: 400px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
  text-align: center;
  padding: 8px 15px;
  color: #fff1c7;
  border: #fff1c7 solid 1px;
  border-radius: 6px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.panorama-box:hover {
  color: #666;
  border: #666 solid 1px;
}

/* フッター */

footer img {
  width: 100%;
}

footer {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}
@media screen and (max-width: 959px) {
  footer {
    padding: 0 16px !important;
  }
}

.footer-wrap {
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 70px;
  max-width: 960px;
}

.footer-wrap a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 4px;
  text-align: center;
}
.f-small-txt {
  font-size: 14px;
  letter-spacing: 2px;
}

div[class*="f-photo"] {
  height: 19em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
div[class*="f-photo"]:hover {
  transition: 0.3s;
  opacity: 0.5;
}

.f-photo-1 {
  background: url(../images/footer_01.png);
}
.f-photo-2 {
  background: url(../images/footer_02.png);
}
.f-photo-3 {
  background: url(../images/footer_03.png);
}
.f-photo-4 {
  background: url(../images/footer_04.png);
}

#f-nav {
  list-style: none;
  display: flex;
}

#f-nav li {
  text-align: center;
  background-color: #000;
  height: 20px;
  border-right: solid 1px #fff;
  padding-right: 5px;
  margin-right: 5px;
  font-size: 12px;
}

#f-nav li a {
  color: #fff;
  font-size: 12px;
}
#f-nav li a:hover {
  color: #666;
  font-size: 12px;
}

@media screen and (max-width: 960px) {
  .sp-none {
    display: none;
  }
}
@media screen and (min-width: 959px) {
  .pc-none {
    display: none;
  }
}
