@charset "utf-8";

/* CSS Document */
body {
  font-family: "Noto Sans JP", serif;
}

.section_top {
  width: auto;
}

.main_image_title {
  color: #ffffff;
  position: absolute;
  top: 300px;
  left: 85px;
  opacity: 0;
  transition: .3s;
}

.main_image_title p {
  font-size: 1.7vw;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.9vw;
  width: auto;
}

.main_image_title h1 {
  font-size: 4.2vw;
  font-family: "Aboreto", serif;
  letter-spacing: 2vw;
}

@media (max-width: 790px) {
  .main_image_title {
    top: 120px;
    left: 40px;
    z-index: -1;
  }
}

@media (max-width: 500px) {
  .header_container {
    display: none;
  }

  .main_image_title {
    top: 300px;
    left: 20px;
  }

  .main_image_title p {
    font-size: 3vw;
    letter-spacing: 1.4vw;
  }

  .main_image_title h1 {
    font-size: 7vw;
    letter-spacing: 4vw;
  }
}

.section_lead {
  width: auto;
}

.lead_image_photo_sp {
  display: none;
}

.lead_wrap {
  position: relative;
}

.gradation_2 {
  position: relative;
}

.gradation_2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #ffffff, transparent);
}

.lead_description {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 80%;
  margin: 60px auto auto 50px;
}

.lead_description h2 {
  font-size: 20pt;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 7px;
  font-weight: 500;
  line-height: 50px;
}

.lead_description p {
  font-size: 16px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 3px;
  font-weight: 400;
  line-height: 50px;
  margin-top: 35px;
}

@media (max-width: 1040px) {
  .lead_description {
    margin: 50px auto auto 50px;
  }

  .lead_description h2 {
    font-size: 18px;
    letter-spacing: 4px;
    font-weight: 500;
    line-height: 31px;
  }

  .lead_description p {
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 30px;
    margin-top: 20px;
  }
}

@media (max-width: 500px) {
  .lead_image_photo {
    display: none;
  }

  .lead_image_photo_sp {
    display: block;
  }

  .lead_description {
    margin: 40px auto auto 30px;
  }

  .lead_description h2 {
    font-size: 16px;
    letter-spacing: 3px;
    font-weight: 500;
    line-height: 28px;
  }

  .lead_description p {
    font-size: 13px;
    letter-spacing: 1px;
    line-height: 32px;
    margin-top: 22px;
  }
}

/* common */
h3 {
  font-size: 70px;
  color: #A68D4E;
  font-family: "Aboreto", serif;
  margin: 115px 0 40px 0;
}

@media (max-width: 790px) {
  .width80 {
    margin-bottom: 10px;
  }

  h3 {
    font-size: 45px;
    margin: 50px 0 20px 0;
  }
}

@media (max-width: 500px) {
  .width80 {
    margin-bottom: 10px;
  }

  h3 {
    font-size: 30px;
  }
}

/* common ここまで */
.section_howto {
  margin-bottom: 100px;
}

/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
  -webkit-transition: 2s ease-in-out;
  -moz-transition: 2s ease-in-out;
  -o-transition: 2s ease-in-out;
  transition: 2s ease-in-out;
  transform: translateX(-30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_left.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

/*----------------------------
scroll_right ｜右から出現
----------------------------*/
.scroll_right {
  -webkit-transition: 2s ease-in-out;
  -moz-transition: 2s ease-in-out;
  -o-transition: 2s ease-in-out;
  transition: 2s ease-in-out;
  transform: translateX(30px);
  opacity: 0;
  filter: alpha(opacity=0);
  -moz-opacity: 0;
}

.scroll_right.on {
  opacity: 1.0;
  filter: alpha(opacity=100);
  -moz-opacity: 1.0;
  transform: translateX(0);
}

.concept_1_wrap,
.concept_2_wrap,
.concept_3_wrap {
  max-width: 600px;
  height: 900px;
  margin-left: 100px;
  margin: 0 auto 40px;
}

.concept_2_wrap {
  margin-bottom: 80px;
}

.concept_1_photo,
.concept_2_photo,
.concept_3_photo {
  width: 80%;
  height: auto;
  z-index: 1111;
  max-width: 500px;
  min-width: 330px;
  left: 0;
  top: 20px;
}

.howto_1_content,
.howto_2_content,
.howto_3_content {
  color: #ffffff;
  background-color: #0C2359;
  padding: 90px;
  margin-bottom: 50px;
  width: 31.3vw;
  margin-top: -30px;
  margin-left: 110px;
}

h4 {
  font-size: 20pt;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 14px;
  font-weight: 400;
  line-height: 50px;
}

.howto_1_content p,
.howto_2_content p,
.howto_3_content p {
  font-size: 16px;
  font-family: "Noto Sans JP", serif;
  line-height: 40px;
  letter-spacing: 3px;
  font-weight: 300;
  margin: 50px 0;
}

@media (max-width: 1040px) {

  .concept_1_wrap,
  .concept_2_wrap,
  .concept_3_wrap {
    height: 990px;
  }
}

@media (max-width: 790px) {
  .section_howto {
    margin-bottom: 30px;
  }

  .howto_1_content,
  .howto_2_content,
  .howto_3_content {
    width: 57vw;
    margin-left: 30px;
    padding: 60px;
  }

  .concept_1_wrap,
  .concept_2_wrap,
  .concept_3_wrap {
    max-width: 350px;
    height: 625px;
    margin-left: 0px;
  }

  h4 {
    font-size: 16pt;
    letter-spacing: 8px;
    line-height: 40px;
  }

  .howto_1_content p,
  .howto_2_content p,
  .howto_3_content p {
    font-size: 14px;
    line-height: 35px;
    letter-spacing: 1px;
    margin: 25px 0;
  }
}

@media (max-width: 500px) {
  h4 {
    font-size: 14pt;
    letter-spacing: 6px;
    line-height: 35px;
  }

  .concept_1_photo img,
  .concept_2_photo img,
  .concept_3_photo img {
    width: 60%;
  }

  .howto_1_content p,
  .howto_2_content p,
  .howto_3_content p {
    font-size: 13px;
    line-height: 25px;
    letter-spacing: 1px;
    margin: 25px 0;
  }

  .concept_1_wrap,
  .concept_2_wrap,
  .concept_3_wrap {
    max-width: 350px;
    height: 530px;
  }

  .concept_2_wrap {
    margin-bottom: 10px;
  }

  .howto_1_content,
  .howto_2_content,
  .howto_3_content {
    width: 190px;
    margin-left: 30px;
    padding: 40px;
  }
}

/*ボタン*/
.readmore_facilites a,
.readmore_plans a {
  background: #eee;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  max-width: 250px;
  padding: 20px 25px;
  color: #0C2359;
  line-height: 1.8;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
}

.readmore_facilites a:hover,
.readmore_plans a:hover {
  background: #A68D4E;
  color: #FFF;
}

.readmore_facilites a:after,
.readmore_plans a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: 3px solid #333;
  border-right: 3px solid #333;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 40px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

.readmore_facilites a:hover:after,
.readmore_plans a:hover:after {
  border-color: #FFF;
}

Resources .readmore_facilites span,
.readmore_plans span {
  font-weight: 500;
  color: #0C2359;
  letter-spacing: 5px;
}

@media (max-width: 790px) {

  .readmore_facilites a,
  .readmore_plans a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
  }
}

@media (max-width: 500px) {

  .readmore_facilites a,
  .readmore_plans a {
    font-size: 13px;
  }

  .readmore_facilites a:after,
  .readmore_plans a:after {
    right: 20px;
  }
}

/*ここまで*/
.section_instagram {
  width: 100%;
  margin-bottom: 100px;
}

/* スライドする要素 */
.content {
  width: 13vw;
  height: auto;
  padding: 5px;
}

/* スライドレールの枠 */
.wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: auto;
  margin-bottom: 20px;
}

/* content4つをまとめたスライドブロック */
.slideshow {
  display: flex;
  -webkit-animation: loop-slide 40s infinite linear 1s both;
  animation: loop-slide 40s infinite linear 1s both;
}

@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 500px) {
  .section_instagram {
    margin-bottom: 50px;
  }
}

.viewmore {
  font-size: 20px;
  font-family: "Aboreto", serif;
  letter-spacing: 5px;
  color: #0C2359;
  font-weight: 500;
  text-align: center;
  width: 10em;
  position: relative;
  display: block;
  vertical-align: middle;
  text-decoration: none;
  font-size: 1em;
  margin: auto;
}

.viewmore::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  content: "";
  vertical-align: middle;
  width: 0.4em;
  /* arrow size */
  height: 0.4em;
  /* arrow size */
  border-top: 1px solid #0C2359;
  /* thickness, color */
  border-right: 1px solid #0C2359;
  -webkit-transform: rotate(45deg);
  transform: rotate(135deg);
}

@media (max-width: 790px) {
  .content {
    width: 20vw;
  }
}

@media (max-width: 500px) {
  .content {
    width: 30vw;
  }
}

.reserve_button_2 {
  padding: 30px;
  overflow: hidden;
  background-color: #A68D4E;
  width: 15%;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 100px;
}

.reserve_button_2 span {
  color: #ffffff;
  margin: 0 auto;
  font-size: 16px;
}

@media (max-width: 790px) {
  .reserve_button_2 {
    width: 27%;
  }

  .reserve_button_2 span {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .reserve_button_2 {
    width: 40%;
    margin-bottom: 50px;
  }
}

.access_photo_main {
  width: 50vw;
}

.access_main p {
  font-size: 16px;
  color: #0C2359;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 40px;
  line-height: 35px;
  letter-spacing: 5px;
  font-weight: 400;
}

.access_info_wrap_1 {
  max-width: 62.5vw;
  background-color: #ffffff;
  margin: -60px 0 0 auto;
  padding: 10% 8% 50px 8%;
  width: 80%;
}

.google_map {
  width: 100%;
  margin: 0 auto;
}

.google_map iframe {
  width: 100%;
  height: 650px;
}

.transportation {
  justify-content: space-evenly;
  display: flex;
  flex-direction: column;
  margin-right: 30px;
}

.transportation p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 2px;
  font-weight: 400;
}

.address,
.by_train,
.by_car,
.elevator {
  display: flex;
}

.address {
  margin: 20px 0 50px 0;
}

.address p {
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 2px;
  font-weight: 400;
}

.icon img {
  width: 40px;
  margin-right: 25px;
}

.access_info_wrap_2 {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 110px;
}

.access_photo_wrap img {
  width: 15vw;
  height: auto;
  margin: 20px 0 10px 0;
}

.access_photo_wrap p {
  text-align: center;
  font-size: 14px;
}

@media (max-width: 790px) {
  .access_info_wrap_1 {
    width: 450px;
    margin: -30px 0 0 auto;
  }

  .access_main p {
    font-size: 14px;
    margin: 20px 0 30px 0;
    line-height: 35px;
    letter-spacing: 3px;
  }

  .google_map iframe {
    width: 56.7vw;
    height: 63.3vw;
  }

  .address {
    margin: 20px 0 20px 0;
  }

  .address p {
    line-height: 25px;
    letter-spacing: 1px;
    font-size: 14px;
  }

  .access_info_wrap_2 {
    column-gap: 20px;
  }

  .transportation p {
    font-size: 14px;
    line-height: 20px;
  }
}

@media (max-width: 500px) {
  .access_photo_main {
    width: 70vw;
  }

  .access_main p {
    font-size: 14px;
    margin: 20px 0 20px 0;
    line-height: 30px;
    letter-spacing: 2px;
  }

  .access_info_wrap_1 {
    margin: -40px 0 0 auto;
  }

  .address {
    margin-top: 12px;
  }

  .address p {
    line-height: 25px;
    letter-spacing: 1px;
    font-size: 14px;
  }

  .access_info_wrap {
    display: flex;
  }

  .access_info_wrap_2 {
    column-gap: 40px;
  }

  .transportation p {
    font-size: 14px;
    line-hight: 20px;
  }

  .google_map iframe {
    width: 230px;
  }

  .address,
  .by_train,
  .by_car,
  .elevator {
    margin-top: 25px;
  }

  .access_photo_wrap {
    display: flex;
    justify-content: space-around;
  }

  .access_photo_wrap img {
    width: 25vw;
    margin: 20px 0 0 0;
  }

  .access_photo_wrap p {
    font-size: 11px;
  }

  .access_info_wrap_1 {
    width: 250px;
    padding: 30px;
  }

  .access_info_wrap_2 {
    display: block;
  }
}

.section_forrent p {
  font-size: 16px;
  color: #0C2359;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 40px;
  line-height: 35px;
  letter-spacing: 5px;
  font-weight: 400;
}

.photo_forrent_wrap {
  height: auto;
  display: flex;
  justify-content: flex-start;
  column-gap: 20px;
}

.yoga,
.photo_spot,
.meeting {
  width: 30%
}

@media (max-width: 790px) {
  .section_forrent p {
    font-size: 14px;
    line-height: 30px;
    letter-spacing: 2px;
  }
}

@media (max-width: 500px) {
  .section_forrent p {
    font-size: 14px;
    color: #0C2359;
    font-family: "Noto Serif JP", serif;
    margin: 20px 0 20px 0;
    line-height: 30px;
    letter-spacing: 2px;
  }

  .meeting {
    display: none;
  }

  .yoga,
  .photo_spot {
    width: 40%
  }
}

.note {
  display: flex;
  justify-content: flex-start;
  column-gap: 50px;
  margin-bottom: 20px;
}

.note iframe {
  height: 200px;
  margin-right: 10px;
}

.note-embed {
  border: 0;
  display: block;
  width: 45%;
  padding: 0px;
  margin: 10px 0px;
  position: static;
  visibility: visible;
}

.article_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.article_wrap img {
  width: 18vw;
}

.article_wrap p {
  width: 18vw;
}

.topic_date {
  margin: 10px 0;
}

@media (max-width: 790px) {}

.note {
  column-gap: 20px;
}

.note iframe {
  height: 160px;
  margin-right: 10px;
}

@media (max-width: 500px) {
  .note {
    display: block;
    column-gap: 20px;
  }

  .note-embed {
    width: 100%;
  }
}

.section_qanda {
  margin-bottom: 500px;
}

.section_qanda img {
  width: 30px;
}

/*アコーディオンメニュー*/
.accordion-003 {
  margin-bottom: 25px;
  border-bottom: 1px solid #A68D4E;
}

.accordion-003 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #0C2359;
  font-weight: 400;
  cursor: pointer;
}

.accordion-003 summary::-webkit-details-marker {
  display: none;
}

.accordion-003 summary::before,
.accordion-003 summary::after {
  width: 1px;
  height: .9em;
  border-radius: 5px;
  background-color: #A68D4E;
  content: '';
}

.accordion-003 summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.accordion-003 summary::after {
  transition: rotate .3s;
}

.accordion-003[open] summary::after {
  rotate: 90deg;
}

.accordion-003 p {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: .3em 2em 1.5em;
  color: #0C2359;
  line-height: 35px;
  transition: transform .5s, opacity .5s;
}

.accordion-003[open] p {
  transform: none;
  opacity: 1;
  font-weight: 600;
}

@media (max-width: 790px) {
  .section_qanda {
    margin-bottom: 300px;
  }

  .accordion-003 summary,
  .accordion-003 p {
    font-size: 14px;
  }
}

@media (max-width: 500px) {

  .accordion-003 summary,
  .accordion-003 p {
    font-size: 14px;
  }
}