@charset "utf-8";

/*______________________________________スマホ用CSS_______________________________________________*/
@media print, screen and (max-width: 1200px) {
  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;
    }
  }

  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: none;
  }
  .sp_content {
    display: block;
  }

  #main_wrapper {
    position: relative;
    background-image: url("../img/main_photo_sp.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: none;
    width: 83%;
    margin: 110px auto;
  }
  .scrolldown {
    position: absolute;
    left: 4%;
    bottom: 5%;
    width: 4.651vw;
    transform: none;
  }

  header {
    position: relative;
    padding: 0;
    max-width: none;
    width: 100%;
    height: 11.628vw;
    margin: 0 auto;
  }

  header #logo {
    position: absolute;
    top: 10.465vw;
    left: 6%;
    width: 28%;
  }

  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: 80%;
    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.1em 0;
    text-decoration: none;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 7.442vw;
    font-weight: 300;
  }

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

  nav.NavMenu ul li:last-child a {
    padding: 2% 0;
    font-size: 4.651vw;
    font-weight: 700;
    border: 1px solid #fff;
    width: 70%;
    margin: 65px 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: 8%;
    transform: none;
    width: 30%;
  }

  .Toggle {
    display: block;
    position: fixed; /* bodyに対しての絶対位置指定 */
    left: auto;
    right: 5%;
    transform: none;
    top: 7.674vw;
    width: 14.419vw;
    height: 9.767vw;
    cursor: pointer;
    z-index: 9999;
  }

  .Toggle span {
    display: block;
    position: absolute;
    width: 10.465vw;
    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: 2.093vw;
    left: 3.256vw;
  }

  .Toggle span:nth-child(2) {
    top: 4.419vw;
    left: 1.628vw;
  }

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

  .Toggle.active span:nth-child(1) {
    top: 4.186vw;
    left: 1.395vw;
    -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: 1.395vw;
  }

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

  /*INFORMATION*/
  #information {
    max-width: none;
    width: 80%;
    margin: 0 10%;
  }
  #information h2 {
    font-size: 3.488vw;
    font-weight: 300;
    width: 100%;
    height: 30.233vw;
    line-height: 30.233vw;
    text-align: center;
    border-bottom: 1px solid #000;
  }
  .info_box {
    border-bottom: 1px solid #000;
    padding: 15% 0;
    display: block;
    justify-content: space-between;
  }
  .info_left {
    width: 100%;
  }
  .info_right {
    width: 100%;
  }
  .info_right img {
    width: 100%;
    margin-bottom: 5%;
  }
  .info_left .info_date {
    font-family: "Noto Serif JP", serif;
    font-size: 4.419vw;
    font-weight: 400;
  }
  .info_left .info_title {
    font-family: "Noto Serif JP", serif;
    font-size: 6.279vw;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 3%;
  }
  .info_left .info_txt {
    font-size: 3.256vw;
    font-weight: 300;
    line-height: 2;
    margin-top: 12%;
    margin-bottom: 5%;
  }

  /*VIEW SPOT*/
  #viewspot {
    width: 100%;
    margin: 60px auto 0;
  }
  #viewspot h2 {
    font-size: 3.488vw;
    font-weight: 300;
    width: 100%;
    height: 23.256vw;
    line-height: 23.256vw;
    text-align: center;
    margin-top: 16%;
  }
  #viewspot .midashi {
    font-family: "Noto Serif JP", serif;
    font-size: 5.814vw;
    font-weight: 300;
    width: 100%;
    text-align: center;
    margin-top: 4%;
  }
  .spot-gallery {
    display: block;
    justify-content: center;
    gap: 0; /* カラム間の余白 */
    width: 100%;
    max-width: none;
    margin: 12% 0 0;
  }

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

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

  .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;
    pointer-events: none;
  }

  .sp .item.is-active::after {
    opacity: 1;
  }

  /* SP：iOS の :hover 挙動対策
     - 通常は :hover では非表示（opacity:0）
     - is-active が付いている場合だけ :hover 中も表示（opacity:1）
     こうすることで、1回目タップで表示／2回目タップで非表示が安定して動作する */
  .spot-gallery .sp .item:hover::after {
    opacity: 0;
  }
  .spot-gallery .sp .item.is-active:hover::after,
  .spot-gallery .sp .item.is-active::after {
    opacity: 1;
  }

  /* SP hover 画像 */

  .spot-gallery .sp .item:nth-child(1)::after {
    background-image: url("../img/viewspot01sp_hover.png");
  }
  .spot-gallery .sp .item:nth-child(2)::after {
    background-image: url("../img/viewspot02sp_hover.png");
  }
  .spot-gallery .sp .item:nth-child(3)::after {
    background-image: url("../img/viewspot03sp_hover.png");
  }
  .spot-gallery .sp .item:nth-child(4)::after {
    background-image: url("../img/viewspot04sp_hover.png");
  }
  .spot-gallery .sp .item:nth-child(5)::after {
    background-image: url("../img/viewspot05sp_hover.png");
  }

  .spot-gallery .sp .item:nth-child(6)::after {
    background-image: url("../img/viewspot07sp_hover.png");
  }
  .spot-gallery .sp .item:nth-child(7)::after {
    background-image: url("../img/viewspot08sp_hover.png");
  }

  .viewspot_txt {
    position: relative;
    right: 0;
    top: 0;
    width: 80%;
    height: auto;
    font-size: 3.256vw;
    line-height: 2.2;
    margin: 0 10%;
    text-align: left;
    padding-bottom: 19%;
  }
  .left .item:first-child {
    height: auto;
  }

  .spot-gallery2 {
    display: block;
    justify-content: space-between;
    width: 80%;
    max-width: none;
    margin: 20% 10% 0;
    flex-wrap: wrap;
  }
  .spot-gallery2 .item2 {
    width: 100%;
  }
  .spot-gallery2 .item2 img {
    width: 100%;
  }
  .spot-gallery2 .item2 .viewspot_name {
    position: relative;
    font-size: 4.651vw;
    font-family: "Noto Serif JP", serif;
    margin-top: 4%;
    margin-bottom: 8%;
    padding-left: 18%;
    height: auto;
  }
  .spot-gallery2 .item2 .viewspot_name span {
    position: absolute;
    top: 2%;
    left: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 9.302vw;
    font-weight: 300;
  }
  .spot-gallery2 .item2 .viewspot_txt2 {
    font-size: 3.256vw;
    font-weight: 300;
    height: auto;
    padding-bottom: 19%;
  }
  .spot-gallery2 .item2 .viewspot_txt3 {
    font-size: 3.256vw;
    font-weight: 300;
    padding-bottom: 19%;
  }

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

  /*COMING SOON*/
  #comingsoon {
    width: 80%;
    max-width: none;
    margin: 10% auto 0;
    text-align: center;
  }
  .comingsoon {
    width: 100%;
    margin: 0;
  }

  /*フッター*/
  footer {
    width: 86%;
    height: auto;
    margin: 15% 7% 15%;
    text-align: center;
    padding: 10% 0;
    border-top: 1px solid #000;
  }
  footer .footer_inner {
    max-width: none;
    width: 100%;
    margin: 0 auto;
    line-height: 1;
  }
  footer .footer_left {
    text-align: left;
    width: 100%;
    float: left;
  }
  footer .footer_right {
    position: relative;
    text-align: left;
    width: 100%;
    float: left;
    margin-top: 11%;
    margin-bottom: 12%;
  }
  footer .site_name {
    font-size: 3.721vw;
    font-weight: 800;
  }
  footer .address {
    font-size: 2.791vw;
    font-weight: 300;
    margin-top: 5%;
    line-height: 2;
  }
  footer .privacy_policy {
    font-size: 2.791vw;
    font-weight: 300;
    text-decoration: none;
    color: #000;
    margin-left: 4.651vw;
  }
  footer .contact {
    display: inline-block;
    font-size: 3.721vw;
    font-weight: 900;
    width: 30.233vw;
    height: auto;
    line-height: 1;
    background-color: #000;
    text-decoration: none;
    color: #fff;
    margin-left: 0;
    padding: 1% 0 1.3%;
    text-align: center;
  }
  footer .contact:hover {
    opacity: 0.7;
  }
  footer .copyright {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 2.791vw;
    font-weight: 300;
    margin-top: 0;
  }
}
