@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");

/*
.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
.noto-serif-jp-<uniquifier> {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
*/

body {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-style: normal;
  line-height: 2em;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
img {
  vertical-align: top;
}
a img {
  -webkit-transition: 0.8s;
  -moz-transition: 0.8s;
  -o-transition: 0.8s;
  -ms-transition: 0.8s;
  transition: 0.8s;
}
a img:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  -moz-opacity: 0.6;
}
.bold {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}

.pc_content {
  display: block;
}
.sp_content {
  display: none;
}

#main_wrapper {
  position: relative;
  background-image: url("../img/main_photo.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  text-align: center;
}
#main_wrapper .head_copy {
  max-width: 1046px;
  width: 80%;
  margin: 52px auto;
}
.scrolldown {
  position: absolute;
  left: 50%;
  bottom: 5%;
  width: 20px;
  transform: translateX(-400px);
}

header {
  position: relative;
  padding: 0;
  max-width: 1290px;
  width: 90%;
  height: 100px;
  margin: 0 auto;
}

header #logo {
  position: absolute;
  top: 45px;
  left: 0;
  width: 108px;
}

header.scroll #logo {
  display: none;
}

/*ハンバーガーメニュー*/
nav.NavMenu {
  position: fixed; /*表示位置を固定*/
  z-index: 2000; /*重ね順を変更*/
  top: 0; /*表示位置を指定*/
  right: 0; /*表示位置を指定*/
  background-color: rgba(0, 0, 0, 0.85);
  color: #fff;
  text-align: center; /*テキストを中央揃え*/
  width: 100%; /*全幅表示*/
  height: 100vh;
  transform: translateY(-100%); /*ナビを上に隠す*/
  transition: all 0.6s; /*アニメーションの時間を指定*/
}
.NavMenu_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 970px;
  padding: 0;
}
nav.NavMenu ul {
  width: 100%;
  margin: 120px auto 0;
}

nav.NavMenu ul li {
  font-size: 1em;
  list-style-type: none;
  padding: 0;
  width: 100%;
}

nav.NavMenu ul li a {
  display: block; /*クリックできる領域を広げる*/
  color: #fff;
  padding: 1.33em 0;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 40px;
  font-weight: 300;
}

nav.NavMenu ul li a:hover {
  opacity: 0.7;
}

nav.NavMenu ul li:last-child a {
  padding: 10px 0;
  font-size: 20px;
  font-weight: 700;
  border: 1px solid #fff;
  width: 300px;
  margin: 90px auto;
}
nav.NavMenu ul li:last-child a:hover {
  background-color: #fff;
  opacity: 1;
  color: #000;
}

nav.NavMenu.active {
  transform: translateY(0%); /*ナビを表示する*/
}

#nav_logo {
  position: absolute;
  top: 0;
  left: 45%;
  transform: translateX(-410px);
  width: 108px;
}

.Toggle {
  display: block;
  position: fixed; /* bodyに対しての絶対位置指定 */
  left: 50%;
  transform: translateX(600px);
  top: 33px;
  width: 62px;
  height: 42px;
  cursor: pointer;
  z-index: 9999;
}
@media print, screen and (max-width: 1400px) {
  .Toggle {
    left: auto;
    right: 6%;
    transform: none;
  }
}
.Toggle span {
  display: block;
  position: absolute;
  width: 45px;
  border-bottom: solid 1px #fff;
  -webkit-transition: 0.35s ease-in-out; /*変化の速度を指定*/
  -moz-transition: 0.35s ease-in-out; /*変化の速度を指定*/
  transition: 0.35s ease-in-out; /*変化の速度を指定*/
}

header.scroll .Toggle span {
  border-bottom: solid 1px #000;
}

.Toggle span:nth-child(1) {
  top: 9px;
  left: 14px;
}

.Toggle span:nth-child(2) {
  top: 19px;
  left: 7px;
}

.Toggle span:nth-child(3) {
  top: 29px;
  left: 0;
}

.Toggle.active span:nth-child(1) {
  top: 18px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-color: #fff;
}

.Toggle.active span:nth-child(2) {
  opacity: 0;
  border-color: #0c743f;
  left: 6px;
}

.Toggle.active span:nth-child(3) {
  top: 18px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  border-color: #fff;
  left: 6px;
}

/*INFORMATION*/
#information {
  max-width: 1090px;
  width: 90%;
  margin: 0 auto;
}
#information h2 {
  font-size: 20px;
  font-weight: 300;
  width: 100%;
  height: 220px;
  line-height: 220px;
  text-align: center;
  border-bottom: 1px solid #000;
}
.info_box {
  border-bottom: 1px solid #000;
  padding: 143px 75px 135px;
  display: flex;
  justify-content: space-between;
}
.info_left {
  width: 54%;
}
.info_right {
  width: 40%;
}
.info_right img {
  width: 100%;
}
.info_left .info_date {
  font-family: "Noto Serif JP", serif;
  font-size: 25px;
  font-weight: 400;
}
.info_left .info_title {
  font-family: "Noto Serif JP", serif;
  font-size: 35px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 3%;
}
.info_left .info_txt {
  font-size: 14px;
  font-weight: 300;
  line-height: 2;
  margin-top: 16%;
}

/*VIEW SPOT*/
#viewspot {
  width: 100%;
  margin: 60px auto;
}
#viewspot h2 {
  font-size: 20px;
  font-weight: 300;
  width: 100%;
  height: 100px;
  line-height: 100px;
  text-align: center;
  margin-top: 120px;
}
#viewspot .midashi {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 300;
  width: 100%;
  text-align: center;
  margin-top: 50px;
}
.spot-gallery {
  display: flex;
  justify-content: center;
  gap: 20px; /* カラム間の余白 */
  width: 100%;
  max-width: 1920px;
  margin: 140px auto 0;
}

.spot-gallery .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.spot-gallery .col.sp {
  display: none;
}

.spot-gallery .item {
  position: relative;
}

.spot-gallery img {
  width: 100%;
  height: auto;
  display: block;
}

/* VIEW SPOT hover images */
.spot-gallery .item {
  position: relative;
  overflow: hidden;
}

.spot-gallery .item::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.spot-gallery .item:hover::after {
  opacity: 1;
}

/* 左カラム hover 画像 */
.spot-gallery .left .item:nth-child(2)::after {
  background-image: url("../img/viewspot02_hover.png");
}
.spot-gallery .left .item:nth-child(3)::after {
  background-image: url("../img/viewspot04_hover.png");
}
.spot-gallery .left .item:nth-child(4)::after {
  background-image: url("../img/viewspot07_hover.png");
}

/* 右カラム hover 画像 */
.spot-gallery .right .item:nth-child(1)::after {
  background-image: url("../img/viewspot01_hover.png");
}
.spot-gallery .right .item:nth-child(2)::after {
  background-image: url("../img/viewspot03_hover.png");
}
.spot-gallery .right .item:nth-child(3)::after {
  background-image: url("../img/viewspot05_hover.png");
}
.spot-gallery .right .item:nth-child(4)::after {
  background-image: url("../img/viewspot08_hover.png");
}

.viewspot_txt {
  position: absolute;
  right: 0;
  top: -5px;
  width: 490px;
  height: 300px;
  font-size: 14px;
  line-height: 2.2;
  margin-right: 160px;
  text-align: left;
}
.left .item:first-child {
  height: 300px;
}

.spot-gallery2 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1290px;
  margin: 220px auto 0;
  flex-wrap: wrap;
}
.spot-gallery2 .item2 {
  width: 30.6%;
}
.spot-gallery2 .item2 img {
  width: 100%;
}
.spot-gallery2 .item2 .viewspot_name {
  position: relative;
  font-size: 23px;
  font-family: "Noto Serif JP", serif;
  margin-top: 4%;
  padding-left: 70px;
  height: 100px;
}
.spot-gallery2 .item2 .viewspot_name span {
  position: absolute;
  top: 7%;
  left: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 50px;
  font-weight: 300;
}
.spot-gallery2 .item2 .viewspot_txt2 {
  font-size: 14px;
  font-weight: 300;
  height: 360px;
}
.spot-gallery2 .item2 .viewspot_txt3 {
  font-size: 14px;
  font-weight: 300;
}

/*ACCESS*/
#access {
  width: 100%;
  max-width: 1280px;
  margin: 200px auto 70px;
}
.googlemap #map,
.googlemap {
  width: 100%;
  height: auto;
  aspect-ratio: 2 / 1;
  filter: grayscale(100%);
}
.howto_access {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: flex-start; /*左寄せ*/
  flex-wrap: wrap;
  margin-top: 75px;
}
.howto_access li {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.howto_access li .icon_train {
  width: 70px;
  margin: 0 20px;
}
.howto_access li .icon_car {
  width: 80px;
  margin: 0 20px;
}
.howto_access_txt {
  position: relative;
  top: -5px;
  display: block;
  line-height: 2.1;
}
.howto_access_txt .txt01 {
  font-size: 14px;
  font-weight: 600;
}
.howto_access_txt .txt02 {
  font-size: 14px;
  font-weight: 300;
}
.howto_access_txt .txt03 {
  font-size: 14px;
  font-weight: 300;
  text-indent: -9.6em;
  padding-left: 9.6em;
}

/*COMING SOON*/
#comingsoon {
  width: 100%;
  max-width: 1280px;
  margin: 110px auto 0;
  text-align: center;
}
.comingsoon {
  width: 55%;
  margin: 0 22.5%;
}

/*フッター*/
footer {
  width: 100%;
  height: 190px;
  margin: 150px 0 0 0;
  text-align: center;
  padding: 67px 0;
  border-top: 1px solid #000;
}
footer .footer_inner {
  max-width: 1290px;
  width: 90%;
  margin: 0 auto;
  line-height: 1;
}
footer .footer_left {
  text-align: left;
  width: 70%;
  float: left;
}
footer .footer_right {
  text-align: right;
  width: 30%;
  float: right;
}
footer .site_name {
  font-size: 16px;
  font-weight: 800;
}
footer .address {
  font-size: 12px;
  font-weight: 300;
  margin-top: 26px;
  line-height: 1.3;
}
footer .privacy_policy {
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
  color: #000;
  margin-left: 20px;
}
footer .contact {
  display: inline-block;
  font-size: 15px;
  font-weight: 900;
  width: 130px;
  height: 22px;
  line-height: 22px;
  background-color: #000;
  text-decoration: none;
  color: #fff;
  margin-left: 20px;
  text-align: center;
}
footer .contact:hover {
  opacity: 0.7;
}
footer .copyright {
  font-size: 12px;
  font-weight: 300;
  margin-top: 38px;
}

/* Google Maps InfoWindow のクローズボタンは不要なので常時非表示 */
.gm-ui-hover-effect {
  display: none !important;
}
