@charset "utf-8";

/* CSS Document */

/***********
body
************/

body {
  background-color: #485f46;
}

/***********
bg
************/

.t-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100lvh;
  background-position: center center;
  background-size: cover;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: 1s;
}
.t-bg.-no01 {
  background-image: url(../../img/bg01.jpg) ;
}
.t-bg.-no02 {
  background-image: url(../../img/bg02.jpg) ;
}
.t-bg.-no03 {
  background: var(--color-base);
}

.t-bg.-no01 {
  opacity: 1;
}
body.is-fixed .t-bg.-no01 {
  opacity: 0;
}
body.is-bg02 .t-bg.-no02 {
  opacity: 1;
}
body.is-bg03 .t-bg.-no03 {
  opacity: 1;
}

/***********
t-wrapper
************/

.t-wrapper {
  position: relative;
  z-index: 2;
}

.l-contents {
  position: relative;
  z-index: 2;
}

/***********
mv
************/

.t-mv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100svh;
}
.t-mv-title {
  width: clamp(600px,46vw, 1200px);
  margin: 0 auto;
  user-select: none;
  opacity: 0;
  transition: 2s;
  transition-delay: 0.3s;
  filter: blur(1em);
}
body.is-loaded .t-mv-title {
  opacity: 1;
  filter: blur(0);
}

@media screen and (max-width:834px) {

  .t-mv-title {
    width: clamp(240px,80vw, 640px);
  }
}

/***********
intro
************/

.t-intro {
  padding: min(30vw,20em) 3vw 0;
  text-align: center;
  color: var(--color-base);
}
.t-intro-text {
  font-family: var(--font-family-serif);
  font-size: clamp(0.8rem,4vw, 1.2rem);
  line-height: 2;
}

@media screen and (max-width:640px) {

  .t-intro-text {
    font-size: clamp(0.7rem,3.5vw, 1.2rem);
  }

}

/***********
info
************/

.t-info {
  padding: min(20vw,15em) 0 0;
  text-align: center;
}
.t-info-wrapper {
  padding-inline: 3vw;
}

.t-info-container {
}
.t-info-tips {
  background: url(../../img/bg03.jpg) repeat center center ;
  font-size: clamp(1vw,4.2vw, 1.4rem);
  font-weight: 500;
  font-feature-settings: "palt";
  letter-spacing: 0.06em;
  padding: 1em 1em;
  max-width: 26em;
  margin: 0 auto;
  color: var(--color-base);
  line-height: 1.4;
}

.t-info-map {
  padding-top: 6em;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

@media screen and (max-width:834px) {

  .t-info-map {
    padding-top: 3em;
  }
}



/***********
gallery
************/


.t-gallery {
  display: flex;
  justify-content: space-between;
  padding-top: 15em;
  padding-bottom: 18em;
}
.t-gallery-left {
  width: 45%;
}
.t-gallery-img01 {
  padding-top: 10%;
  transition-duration: 2500ms !important;
}
.t-gallery-img01 img {
  max-width: 100%;
}
.t-gallery-right {
  width: 52%;
}
.t-gallery-img02 {
  padding-left: 20%;
  padding-bottom: 6%;
  transition-duration: 2500ms !important;
}
.t-gallery-img02 img {
  max-width: 100%;
}
.t-gallery-img03 {
  padding-right: 40%;
  transition-duration: 2500ms !important;
}
.t-gallery-img03 img {
  max-width: 100%;
}

@media screen and (max-width:834px) {

  .t-gallery {
    display: block;
    padding-top: 8em;
    padding-bottom: 8em;
    overflow: hidden;
  }
  .t-gallery-left {
    width: auto;
  }
  .t-gallery-img01 {
    padding-top: 0;
    padding-right: 25%;
  }
  .t-gallery-right {
    width: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .t-gallery-img02 {
    width: 60%;
    padding: 0;
    margin-top: 5%;
    margin-right: -5%;
  }
  .t-gallery-img03 {
    width: 55%;
    padding: 0;
    margin-top: 30%;
    margin-left: -15%;
  }


}

/***********
t-map
************/

.t-map {
}
.t-map iframe{
  width: 100%;
  height: 80vh;
  min-height: 500px;
  vertical-align: middle;
}

@media screen and (max-width:834px) {

  .map {
  }
  .map iframe{
  }

}


/***********
note
************/

.note {
  background-color: #f7f6f3;
  font-family: var(--font-family-serif);
}
.note-container {
  display: flex;
  justify-content: space-between;
}
.note-block {
  width: 32%;
  background-color: #fff;
  padding: 2em 2.5%;
}
.note-img {
}

.note-subTitle {
  font-size: 1.3rem;
  font-weight: 600;
  padding-top: 0.8em;
  padding-bottom: 0.2em;
  text-align: center;
  position: relative;
}

.note-title {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  position: relative;
}
.note-title::after {
  content: "";
  display: block;
  width: 3em;
  height: 1px;
  background-color: var(--color-main);
  margin: 0.8em auto 1em;
}

.note-task {
  text-align: center;
  opacity: 0.8;
  font-size: 0.85rem;
}

.note-text {
  padding-top: 0.8em;
  text-align: center;
}


@media screen and (max-width:834px) {

  .note-container {
    display: block;
  }
  .note-block {
    width: auto;
    padding: min(2em,5vw);
    margin-bottom: 2em;
  }
  .note-title {
    font-size: 139%;
  }

}


/***********
btn
************/

.t-btn {
  display: block;
  width: auto;
  padding: 1.5em 2em;
  font-size: 1.2rem;
  font-family: var(--font-family-serif);
  font-weight: normal;
  color: var(--color-base);
  text-decoration: none !important;
  background-color: var(--color-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
  letter-spacing: 0.1em;
  position: relative;
}
.t-btn::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../../img/calendar_check.png) no-repeat 0 0 / 100% auto;
  vertical-align: middle;
  transform: scale(1.5) translateY(-0.1em);
  margin-right: 1em;
}
body.is-pc .t-btn:hover {
  animation: anim-cvBtn 1.5s forwards 1;
}


.t-btn.-disabled {
  pointer-events: none;
  opacity: 0.3;
  filter: grayscale(100%);
}
@keyframes anim-cvBtn {
  0% { background-color: #000;}
  2% { background-color: #447040;}
  100% { background-color: #000;}
}

@media screen and (max-width:834px) {


  .t-btn {
    padding: 1.5em 1em;
    letter-spacing: 0;
  }
}



/***********
t-instagramBtn
************/

.t-instagramBtn {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
.t-instagramBtn img {
  max-width: 200px;
}
.t-instagramBtn span {
  display: block;
  font-family: Alial;
  font-size: 0.7rem;
  padding-top: 0.5em;
}

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/
