@charset "utf-8";

/* ----------------------------------------------------------------------
	common
---------------------------------------------------------------------- */
body {
  color: #000;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.875;
}
body._fixed {
  position: fixed;
  width: 100%;
  height: 100vh;
}

.contents-wrapper {
  position: relative;
}

.note {
  font-size: 14px;
}

img {
  border: none;
}

.contents-wrapper *:focus,
.modal-wrapper *:focus,
.photo-modal-wrapper *:focus {
  outline: 0;
}

.onlySP {
  display: none !important;
}

/* ----------------------------------------------------------------------
	kv
---------------------------------------------------------------------- */
.kv {
  position: relative;
}
.kv h1 {
  position: absolute;
  top: 77px;
  left: 50%;
  transform: translate(-50%);
  width: 46.5vw;
  max-width: 651px;
  height: 267px;
  background: url(../img/ttl_main_pc@2x.png) no-repeat;
  background-size: contain;
  text-indent: -9999px;
  z-index: 2;
}
.kv-slides {
  width: 100%;
  height: 100vh;
  min-height: 60.71vw;
}
.kv-slides div {
  width: 100%;
  height: 100%;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
.kv1 { background-image: url(../img/kv1_pc.jpg)}
.kv2 { background-image: url(../img/kv2_pc.jpg)}
.kv3 { background-image: url(../img/kv3_pc.jpg)}

@media (max-width:1000px){
  .kv h1 {
    width: 465px;
  }
}

/* ----------------------------------------------------------------------
	contents
---------------------------------------------------------------------- */
.contents {
  padding-bottom: 80px;
  background: url(../img/bg_contents_pc@2x.jpg) right top no-repeat;
  background-size: cover;
}

/* ----------------------------------------------------------------------
	lead
---------------------------------------------------------------------- */
.lead {
  padding: 150px 60px 180px;
  font-size: 24px;
  font-feature-settings: 'palt';
}
.lead p {
  margin: 0 auto;
  max-width: 1000px;
}
.lead p:not(:first-child) {
  margin-top: 18px;
}
.lead p.note {
  margin-top: 36px;
}

/* ----------------------------------------------------------------------
	map
---------------------------------------------------------------------- */
.map {
  position: relative;
}
.map::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 80px;
  height: 4px;
  background-color: #36373b;
}
.map h2 {
  margin-top: 74px;
  padding: 0;
  font-size: 52px;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
}
.map h2 small {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}
.map p {
  margin-top: 30px;
  text-align: center;
}

.map-plots {
  margin: 0 auto;
  max-width: 1118px;
  height: 630px;
  background: url(../img/bg_map_pc.png) left top no-repeat;
  background-size: 1118px;
  position: relative;
}
.map-plots a { position: absolute;}
.map-plots a:nth-child(1)  { left: 269px; top: 442px}
.map-plots a:nth-child(2)  { left: 550px; top: 433px; z-index: 2}
.map-plots a:nth-child(3)  { left: 443px; top: 399px}
.map-plots a:nth-child(4)  { left: 679px; top: 384px}
.map-plots a:nth-child(5)  { left: 844px; top: 391px}
.map-plots a:nth-child(6)  { left: 268px; top: 308px}
.map-plots a:nth-child(7)  { left: 570px; top: 272px}
.map-plots a:nth-child(8)  { left: 439px; top: 249px}
.map-plots a:nth-child(9)  { left: 759px; top: 195px}
.map-plots a:nth-child(10) { left: 854px; top: 84px}

.map-plots a:hover {
  animation: anim-scale 0.25s ease-out forwards;
  transform-origin: center bottom;
}
@keyframes anim-scale {
  0% { transform: scale(1, 1); }
  40% { transform: scale(1.2, 1.2); }
  100% { transform: scale(1.1, 1.1); }
}

.map-lists {
  display: none;
}

@media (max-width:1000px){
  .map-plots {
    margin-left: calc(100% - 1000px)
  }
}

/* ----------------------------------------------------------------------
	bnr
---------------------------------------------------------------------- */
.bnr {
  margin-top: 54px;
  text-align: center;
}
.bnr a {
  display: block;
  margin: 0 auto 30px;
  width: 740px;
  height: 150px;
  overflow: hidden;
  position: relative;
}
.bnr a .bg {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
  transition-duration: .5s;
}
.bnr a:hover .bg {
  transform: scale(1.09);
}
.bnr a.bnr_album .bg { background-image: url(../img/bnr_album_bg.png);}
.bnr a.bnr_movie .bg { background-image: url(../img/bnr_movie_bg.png);}
.bnr a .txt {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  position: absolute;
}
.bnr a.bnr_album .txt { background-image: url(../img/bnr_album_txt.png);}
.bnr a.bnr_movie .txt { background-image: url(../img/bnr_movie_txt.png);}
.bnr a .arrow {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background-color: #006205;
  position: absolute;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.bnr a .arrow::after {
  content: '';
  display: block;
  width: 14px;
  height: 18px;
  background: url(../img/icon_arrow.png) no-repeat;
  background-size: contain;
  position: absolute;
  right: 13px;
  bottom: 11px;
}
.bnr a:hover .arrow::after {
  animation: arrow-move 0.5s ease-out forwards;
}
@keyframes arrow-move {
    0% { transform: translate(0) }
   50% { transform: translate(200%) }
   51% { transform: translate(-200%) }
   70% { transform: translate(-200%) }
  100% { transform: translate(0) }
}

.contents > .note {
  text-align: center;
  margin-top: 40px;
}
.contents > .note:last-child {
  margin-top: 10px;
}

/* ----------------------------------------------------------------------
	copyright
---------------------------------------------------------------------- */
.copyright {
  padding: 12px 0;
  background-color: #095f0d;
}
.copyright p {
  color: #fff;
  font-size: 14px;
  text-align: center;
}

/* ----------------------------------------------------------------------
	modal
---------------------------------------------------------------------- */
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 100%;
  padding: 200px 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  overflow: scroll;
  overflow-x: none;
  overflow-y: scroll;
  z-index: 10;
}
/*
.modal-overlay {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
}
*/
.modal-wrapper._open,
.modal-overlay._open {
  left: 0;
}

.nv_close,
.photo-nv_close {
  position: fixed;
  top: 130px;
  left: 100%;
  width: 50px;
  height: 50px;
  background: url(../img/btn_close.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 30px;
  z-index: 100;
/*  transition-duration: .3s;*/
}
.nv_close._open {
  left: calc(50% + 430px);
}
.photo-nv_close._open,
.img-modal .nv_close {
  top: 20px;
  left: auto;
  right: 20px;
}
@media (max-width:1000px){
  .nv_close._open {
    left: auto;
    right: 20px;
  }
}
.nv_close._bk {
  background-color: #000;
}

.modal-contents {
  position: relative;
  z-index: 11;
}

.modal-cont {
  margin: 0 auto;
  padding: 80px 0 115px;
  max-width: 1000px;
  font-weight: 900;
  background-color: #e6efe6;
  display: none;
}

.modal-cont .name {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding-left: 4px;
  max-width: 700px;
  font-size: 18px;
  font-weight: 700;
}
.modal-cont .name img {
  margin-right: 4px;
  width: 33px;
}

.modal-cont h2 {
  margin: 20px auto 0;
  max-width: 700px;
  color: #095f0d;
  font-size: 34px;
  font-feature-settings: 'palt';
  line-height: 1.35;
}
.modal-cont p {
  font-weight: 500;
}
.modal-cont p.note {
  line-height: 1.75;
  padding-left: 1em;
  text-indent: -1em;
}

.modal-cont .movie {
  margin: 45px auto 0;
  max-width: 700px;
}
.modal-cont .movie p {
  margin-top: 15px;
  text-align: justify
}
.modal-cont .movie a {
  display: block;
  position: relative;
  width: 100%;
  height: 320px;
  background: #ccc;
  background-position: center center;
  background-size: 100%;
  transition-duration: .5s;
}
.modal-cont .movie a:hover {
  background-size: 110%;
}
.modal-cont .movie a::after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 100%;
  background: url(../img/btn_play360.png) center no-repeat;
  background-size: 124px;
  position: absolute;
  top: 0;
  left: 0;
  transition-duration: .5s;
}
.modal-cont .movie a:hover::after {
  opacity: 0;
}

.modal-cont .column {
  margin: 40px auto 0;
  max-width: 700px;
}
.modal-cont .column img {
  display: inline-block;
  width: 700px;
  height: 340px;
  object-fit: cover;
  background-color: #ccc;
}
.modal-cont .column h4 {
  margin-top: 25px;
  margin-bottom: -5px;
  text-decoration: underline;
}
.modal-cont .column p {
  margin-top: 25px;
  text-align: justify;
}
#modal10 .column p {
  margin-top: 15px;
  margin-bottom: 40px;
}

.modal-cont .photo {
  margin-top: 55px;
}
.modal-cont .photo h3 {
  position: relative;
  color: #095f0d;
  font-size: 30px;
  text-align: center;
}
.modal-cont .photo h3::before {
  content: '';
  display: block;
  margin: 0 auto 30px;
  width: 80px;
  height: 4px;
  background-color: #095f0d;
}
.modal-cont .photo .slides {
  margin: 20px auto 0;
  width: 560px;
}
.modal-cont .photo .slides img {
  width: 560px;
  height: 350px;
  object-fit: cover;
  background-color: #ccc;
  cursor: pointer;
}
.modal-cont .photo .slides img:hover {
  opacity: 0.75;
  transition-duration: .25s;
}

.photo-modal-wrapper {
  position: fixed;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  overflow: scroll;
  overflow-x: none;
  overflow-y: scroll;
  z-index: 101;
}
.photo-modal-wrapper {
  -ms-overflow-style: none;/* IE, Edge 対応 */
  scrollbar-width: none;/* Firefox 対応 */
}
.photo-modal-wrapper::-webkit-scrollbar {/* Chrome, Safari 対応 */
  display:none;
}
.photo-modal-wrapper._open,
.photo-modal-overlay._open {
  left: 0;
}
.photo-modal .slick-initialized .slick-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  text-align: center;
}
.photo-modal img {
  max-width: 80vw;
  max-height: 80vh;
}

/* ----------------------------------------------------------------------
	slick
---------------------------------------------------------------------- */
.slick-arrow {
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -10000px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition-duration: .3s;
  z-index: 20;
}
.slick-prev { background-image: url(../img/arrow_left.png); left: 0;}
.slick-next { background-image: url(../img/arrow_right.png); right: 0;}
.slick-dots {
  position: absolute;
  bottom: -35px;
  display: flex;
  justify-content: center;
  width: 100%;
}
.slick-dots li {
  display: inline-block;
  margin: 0 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #bad2bb;
  text-indent: -10000px;
}
.slick-dots li.slick-active {
  background-color: #095f0d;
}

.photo-modal-wrapper._open .slick-arrow {
  position: fixed;
  display: block;
}

/* ----------------------------------------------------------------------
	album
---------------------------------------------------------------------- */
.album-wrapper {
  position: relative;
  padding-bottom: 100px;
  background-image: -moz-linear-gradient( 0deg, rgb(251,158,0) 0%, rgb(251,139,0) 100%);
  background-image: -webkit-linear-gradient( 0deg, rgb(251,158,0) 0%, rgb(251,139,0) 100%);
  background-image: -ms-linear-gradient( 0deg, rgb(251,158,0) 0%, rgb(251,139,0) 100%);
}
.album-wrapper::before {
  content: '';
  display: block;
  width: 100%;
  height: 3535px;
  background-image: -moz-linear-gradient( -48deg, rgb(255,228,0) 1%, rgb(253,184,0) 30%, rgb(251,139,0) 100%);
  background-image: -webkit-linear-gradient( -48deg, rgb(255,228,0) 1%, rgb(253,184,0) 30%, rgb(251,139,0) 100%);
  background-image: -ms-linear-gradient( -48deg, rgb(255,228,0) 1%, rgb(253,184,0) 30%, rgb(251,139,0) 100%);
  position: absolute;
  top: 0;
  left: 0;
}

.album-wrapper .head {
  position: absolute;
  left: calc(50% + 328px);
  top: 39px;
  z-index: 10
}
.photos {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
  width: 1000px;
  position: relative;
  z-index: 2;
}
.photos h1 {
  padding: 52px 0 32px;
  width: 100%;
  text-align: left;
  order: 0;
}
.photos h1 img {
  width: 457px;
}
.photos div {
  margin-top: 10px;
  background: rgba(255, 255, 255, 0.5);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  order: 1;
  transform: scale(0);
  transform-origin: center center;
  opacity: 0;
  transition-duration: .5s;
  cursor: pointer;
}
.photos div:hover {
  opacity: 0.75;
  transition-duration: .25s;
}
.photos .pcsize1 {
  width: 158px;
  height: 158px;
}
.photos .pcsize2 {
  width: 242px;
  height: 242px;
}
.photos .pcsize3 {
  width: 495px;
  height: 495px;
}
.photos .pcsize4 {
  width: 1000px;
  height: 570px;
}

@media (max-width:1000px){
  .album-wrapper .head {
    left: auto;
    right: 10px;
  }
  .photos {
    padding: 0 10px;
    width: 100vw;
  }
  .photos .pcsize1 {
    width: 15.8%;
    height: 15.8vw;
  }
  .photos .pcsize2 {
    width: 24%;
    height: 24vw;
  }
  .photos .pcsize3 {
    width: 49.5%;
    height: 49.5vw;
  }
  .photos .pcsize4 {
    width: 100%;
    height: 57vw;
  }
}

.photos div._showS {
  transform: scale(1);
}
.photos div._showO {
  opacity: 1;
}
.photos .img1  { background-image: url(../img/album/img1.jpg);}
.photos .img2  { background-image: url(../img/album/img2.jpg);}
.photos .img3  { background-image: url(../img/album/img3.jpg);}
.photos .img4  { background-image: url(../img/album/img4.jpg);}
.photos .img5  { background-image: url(../img/album/img5.jpg);}
.photos .img6  { background-image: url(../img/album/img6.jpg);}
.photos .img7  { background-image: url(../img/album/img7.jpg);}
.photos .img8  { background-image: url(../img/album/img8.jpg);}
.photos .img9  { background-image: url(../img/album/img9.jpg);}
.photos .img10 { background-image: url(../img/album/img10.jpg);}
.photos .img11 { background-image: url(../img/album/img11.jpg);}
.photos .img12 { background-image: url(../img/album/img12.jpg);}
.photos .img13 { background-image: url(../img/album/img13.jpg);}
.photos .img14 { background-image: url(../img/album/img14.jpg);}
.photos .img15 { background-image: url(../img/album/img15.jpg);}
.photos .img16 { background-image: url(../img/album/img16.jpg);}
.photos .img17 { background-image: url(../img/album/img17.jpg);}
.photos .img18 { background-image: url(../img/album/img18.jpg);}
.photos .img19 { background-image: url(../img/album/img19.jpg);}
.photos .img20 { background-image: url(../img/album/img20.jpg);}
.photos .img21 { background-image: url(../img/album/img21.jpg);}
.photos .img22 { background-image: url(../img/album/img22.jpg);}
.photos .img23 { background-image: url(../img/album/img23.jpg);}
.photos .img24 { background-image: url(../img/album/img24.jpg);}
.photos .img25 { background-image: url(../img/album/img25.jpg);}
.photos .img26 { background-image: url(../img/album/img26.jpg);}
.photos .img27 { background-image: url(../img/album/img27.jpg);}
.photos .img28 { background-image: url(../img/album/img28.jpg);}
.photos .img29 { background-image: url(../img/album/img29.jpg);}
.photos .img30 { background-image: url(../img/album/img30.jpg);}
.photos .img31 { background-image: url(../img/album/img31.jpg);}
.photos .img32 { background-image: url(../img/album/img32.jpg);}
.photos .img33 { background-image: url(../img/album/img33.jpg);}
.photos .img34 { background-image: url(../img/album/img34.jpg);}
.photos .img35 { background-image: url(../img/album/img35.jpg);}
.photos .img36 { background-image: url(../img/album/img36.jpg);}
.photos .img37 { background-image: url(../img/album/img37.jpg);}
.photos .img38 { background-image: url(../img/album/img38.jpg);}
.photos .img39 { background-image: url(../img/album/img39.jpg);}
.photos .img40 { background-image: url(../img/album/img40.jpg);}
.photos .img41 { background-image: url(../img/album/img41.jpg);}
.photos .img42 { background-image: url(../img/album/img42.jpg);}
.photos .img43 { background-image: url(../img/album/img43.jpg);}
.photos .img44 { background-image: url(../img/album/img44.jpg);}
.photos .img45 { background-image: url(../img/album/img45.jpg);}
.photos .img46 { background-image: url(../img/album/img46.jpg);}
.photos .img47 { background-image: url(../img/album/img47.jpg);}
.photos .img48 { background-image: url(../img/album/img48.jpg);}
.photos .img49 { background-image: url(../img/album/img49.jpg);}
.photos .img50 { background-image: url(../img/album/img50.jpg);}
.photos .img51 { background-image: url(../img/album/img51.jpg);}
.photos .img52 { background-image: url(../img/album/img52.jpg);}
.photos .img53 { background-image: url(../img/album/img53.jpg);}
.photos .img54 { background-image: url(../img/album/img54.jpg);}
.photos .img55 { background-image: url(../img/album/img55.jpg);}
.photos .img56 { background-image: url(../img/album/img56.jpg);}
.photos .img57 { background-image: url(../img/album/img57.jpg);}
.photos .img58 { background-image: url(../img/album/img58.jpg);}
.photos .img59 { background-image: url(../img/album/img59.jpg);}
.photos .img60 { background-image: url(../img/album/img60.jpg);}
.photos .img61 { background-image: url(../img/album/img61.jpg);}
.photos .img62 { background-image: url(../img/album/img62.jpg);}
.photos .img63 { background-image: url(../img/album/img63.jpg);}
.photos .img64 { background-image: url(../img/album/img64.jpg);}
.photos .img65 { background-image: url(../img/album/img65.jpg);}
.photos .img66 { background-image: url(../img/album/img66.jpg);}
.photos .img67 { background-image: url(../img/album/img67.jpg);}
.photos .img68 { background-image: url(../img/album/img68.jpg);}
.photos .img69 { background-image: url(../img/album/img69.jpg);}
.photos .img70 { background-image: url(../img/album/img70.jpg);}
.photos .img71 { background-image: url(../img/album/img71.jpg);}
.photos .img72 { background-image: url(../img/album/img72.jpg);}
.photos .img73 { background-image: url(../img/album/img73.jpg);}
.photos .img74 { background-image: url(../img/album/img74.jpg);}
.photos .img75 { background-image: url(../img/album/img75.jpg);}
.photos .img76 { background-image: url(../img/album/img76.jpg);}
.photos .img77 { background-image: url(../img/album/img77.jpg);}
.photos .img78 { background-image: url(../img/album/img78.jpg);}
.photos .img79 { background-image: url(../img/album/img79.jpg);}
.photos .img80 { background-image: url(../img/album/img80.jpg);}
.photos .img81 { background-image: url(../img/album/img81.jpg);}
.photos .img82 { background-image: url(../img/album/img82.jpg);}
.photos .img83 { background-image: url(../img/album/img83.jpg);}
.photos .img84 { background-image: url(../img/album/img84.jpg);}
.photos .img85 { background-image: url(../img/album/img85.jpg);}
.photos .img86 { background-image: url(../img/album/img86.jpg);}
.photos .img87 { background-image: url(../img/album/img87.jpg);}
.photos .img88 { background-image: url(../img/album/img88.jpg);}
.photos .img89 { background-image: url(../img/album/img89.jpg);}
.photos .img90 { background-image: url(../img/album/img90.jpg);}
.photos .img91 { background-image: url(../img/album/img91.jpg);}
.photos .img92 { background-image: url(../img/album/img92.jpg);}
.photos .img93 { background-image: url(../img/album/img93.jpg);}
.photos .img94 { background-image: url(../img/album/img94.jpg);}
.photos .img95 { background-image: url(../img/album/img95.jpg);}
.photos .img96 { background-image: url(../img/album/img96.jpg);}
.photos .img97 { background-image: url(../img/album/img97.jpg);}
.photos .img98 { background-image: url(../img/album/img98.jpg);}
.photos .img99 { background-image: url(../img/album/img99.jpg);}
.photos .img100 { background-image: url(../img/album/img100.jpg);}

.btn_back {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 70PX auto 0;
  width: 400PX;
  height: 80PX;
  border: 2px solid #fff;
  color: #fff;
}

.img-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: pointer;
  z-index: 100;
  display: none;
}
.bigimg img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}