@charset "utf-8";

/*
  File Name   : top.css
  Description : コンテンツエリア関係 他
*/

/* top-title-A-wrap
============================================================ */
.top-title-A-wrap .title-en {
  font-size: 14px;
  font-weight: normal;
  font-family: "Heebo", sans-serif;
  color: #009333;
}
.top-title-A-wrap .title-ja {
  font-size: 32px;
  font-weight: normal;
  font-family: "Shippori Mincho", serif;
  line-height: 1.6;
  margin-top: 5px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .top-title-A-wrap .title-en {
    font-size: 14px;
  }
  .top-title-A-wrap .title-ja {
    font-size: 26px;
    line-height: 1.5;
  }
}

/* top-base-btn-wrap
============================================================ */
.top-base-btn-wrap {
  margin-top: 56px;
}
.top-base-btn-wrap a {
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  padding: 28px 24px;
  background-color: #009333;
  border-radius: 4px;
  width: 340px;
  display: block;
}
.top-base-btn-wrap a:hover {
  text-decoration: none;
  opacity: .7;
}
.top-base-btn-wrap span {
  position: relative;
  display: block;
}
.top-base-btn-wrap span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 16px;
  height: 12px;
  background: url(../img/top/icon-arrow-top.svg) 0 0 no-repeat;
  background-size: 16px auto;
}


/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .top-base-btn-wrap {
    margin-top: 32px;
  }
  .top-base-btn-wrap a {
    line-height: 1.6;
    padding: 24px 24px;
    padding-right: 40px;
    width: 100%;
  }
  .top-base-btn-wrap a:hover {
    opacity: 1;
  }
  .top-base-btn-wrap span {
    position: relative;
    display: block;
  }
  .top-base-btn-wrap span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 16px;
    height: 12px;
    background: url(../img/top/icon-arrow-top.svg) 0 0 no-repeat;
    background-size: 16px auto;
  }
}

/* top-kv-wrap
============================================================ */
.top-kv-wrap {
  padding: 40px 40px 0;
  position: relative;
  margin-bottom: 200px;
}
.top-kv-wrap .kv-parts {
  position: absolute;
  max-width: 1520px;
  margin: 0 auto;
  height: calc(100vh - 270px);
}
.top-kv-wrap .kv-catch {
  width: 130px;
  position: absolute;
  top: -40px;
  left: calc(50% - -122px);
  z-index: 2;
}
.top-kv-wrap .kv-leaf {
  position: absolute;
  bottom: -40px;
  left: 170px;
  width: 190px;
  height: 100px;
  background: url(../img/top/kv-leaf.svg) 0 0 no-repeat;
  background-size: 190px auto;
  z-index: 2;
}
.top-kv-wrap .top-kv-inner {
  max-width: 1520px;
  height: calc(100vh - 270px);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}
.top-kv-wrap .slider-warap .swiper-slide .slide-img,
.top-kv-wrap .slider-warap .slider-item span {
  max-width: 1520px;
  height: calc(100vh - 270px);
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}
.top-kv-wrap .slider-warap .swiper-slide .slide-img,
.top-kv-wrap .slider-warap .slider-item span {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 16px;
  overflow: hidden;
}

.swiper-slide {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 12s linear 0s;
  animation: zoomUp 12s linear 0s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes zoomUp {
  0% {
      -webkit-transform: scale(1.15);
      transform: scale(1.15);
  }
  100% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}
@keyframes zoomUp { /* 1倍させる指定 */
  0% {
      -webkit-transform: scale(1.15);
      transform: scale(1.15);
  }
  100% {
      -webkit-transform: scale(1);
      transform: scale(1);
  }
}
.swiper-pagination {
  position: absolute;
  right: 50px;
  bottom: 50px;
  display: none;
}
.swiper-pagination-bullet {
  width: 34px !important;
  height: 4px !important;
  display: inline-block;
  border-radius: 0 !important;
  background: #fff !important;
  opacity: 1 !important;
  margin-left: 2px;
}
.swiper-pagination-bullet:first-child {
  margin-left: 0;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #006b9f !important;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .top-kv-wrap {
    padding: 24px 24px 0;
    margin-bottom: 56px;
  }
  .top-kv-wrap .kv-parts {
    margin: 0 auto;
    height: auto;
  }
  .top-kv-wrap .kv-catch {
    width: 96px;
    top: -20px;
    left: 20px;
  }
  .top-kv-wrap .kv-leaf {
    display: none;
  }
  .top-kv-wrap .top-kv-inner {
    height: 325px;
    margin: 0 auto;
    border-radius: 8px;
  }
  .top-kv-wrap .slider-warap .swiper-slide .slide-img,
  .top-kv-wrap .slider-warap .slider-item span {
    height: 325px;
    border-radius: 8px;
  }
  .top-kv-wrap .slider-warap .swiper-slide .slide-img,
  .top-kv-wrap .slider-warap .slider-item span {
    border-radius: 8px;
  }
}

/* -concept
============================================================ */
.-concept {
  position: relative;
  padding-bottom: 40px;
}
.concept-flex-wrap {
  display: flex;
  flex-direction: row-reverse;
}
.concept-flex-wrap .img-wrap {
  width: 644px;
}
.concept-flex-wrap .desc-wrap {
  width: calc(100% - 644px);
  padding-top: 120px;
  padding-left: 80px;
}
.concept-text {
  margin-top: 50px;
}

/* leaf */
.leaf-A {
  position: absolute;
  top: 30px;
  right: -55px;
  width: 153px;
  height: 180px;
  background: url(../img/top/leaf-A.svg) 0 0 no-repeat;
  background-size: 153px auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .-concept {
    padding-bottom: 40px;
  }
  .concept-flex-wrap {
    display: block;
  }
  .concept-flex-wrap .img-wrap {
    width: 100%;
    margin-top: 32px;
  }
  .concept-flex-wrap .desc-wrap {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
  }
  .concept-text {
    margin-top: 32px;
  }

  /* leaf */
  .leaf-A {
    display: none;
  }
}

/* -bath-water-wrap
============================================================ */
.-bath-water-wrap .item {
  display: flex;
}
.-bath-water-wrap .top-title-B-wrap {
  width: 66px;
}
.-bath-water-wrap .desc-wrap {
  width: calc(100% - 66px);
  padding-left: 107px;
}
.-bath-water-wrap .item-desc-wrap {
  display: flex;
  width: 510px;
}
.-bath-water-wrap .item-desc-wrap .item-number {
  width: 15px;
  display: block;
}
.-bath-water-wrap .item-desc-wrap .item {
  width: calc(100% - 15px);
}
.-bath-water-wrap .item-desc-wrap .item .text {
  padding-top: 80px;
}

.-bath-water-img-wrap {
  width: calc(50% - 80px);
  height: 560px;
  position: absolute;
  top: 0;
  left: calc(50% + 80px);
}
.-bath-water-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
  border-radius: 16px 0 0 16px;
  overflow: hidden;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .-bath-water-wrap .item {
    display: block;
  }
  .-bath-water-wrap .top-title-B-wrap {
    width: 66px;
  }
  .-bath-water-wrap .desc-wrap {
    width: 100%;
    padding-left: 0;
  }
  .-bath-water-wrap .item-desc-wrap {
    display: block;
    width: 100%;
  }
  .-bath-water-wrap .item-desc-wrap .item-number {
    width: 15px;
    display: block;
  }
  .-bath-water-wrap .item-desc-wrap .item {
    width: 100%;
  }
  .-bath-water-wrap .item-desc-wrap .item .text {
    padding-top: 32px;
  }

  .-bath-water-img-wrap {
    width: calc(100% - 25px);
    height: auto;
    position: relative;
    top: 0;
    left: 25px;
    margin-top: 32px;
  }
  .-bath-water-img-wrap img {
    border-radius: 16px 0 0 16px;
  }
}

/* -bath
============================================================ */
.-bath {
  position: relative;
  min-height: 560px;
}
.-bath .com-section-inner {
  position: relative;
}
.-bath .-bath-water-img-wrap {
  /* position: relative; */
}

/* leaf */
.leaf-B {
  position: absolute;
  top: -160px;
  left: calc(50% - 90px);
  width: 100px;
  height: 80px;
  background: url(../img/top/leaf-B.svg) 0 0 no-repeat;
  background-size: 100px auto;
}
.leaf-C {
  position: absolute;
  bottom: -55px;
  left: 40px;
  width: 172px;
  height: 90px;
  background: url(../img/top/leaf-C.svg) 0 0 no-repeat;
  background-size: 172px auto;
}


/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .-bath {
    min-height: auto;
    margin-top: 15px;
  }
  .leaf-B,
  .leaf-C {
    display: none;
  }
}

/* -water
============================================================ */
.-water {
  position: relative;
  min-height: 560px;
}
.-water.-bath-water-wrap .item-desc-wrap {
  flex-direction: row-reverse;
  margin-left: auto;
}
.-water.-bath-water-wrap .item {
  flex-direction: row-reverse;
}
.-water.-bath-water-wrap .desc-wrap {
  padding-left: 0;
  padding-right: 107px;
  margin-left: auto;
}
.-water .-bath-water-img-wrap {
  width: calc(50% - 70px);
  left: auto;
  right: calc(50% + 70px);
  border-radius: 0 16px 16px 0;
}

.-water .-bath-water-img-wrap img {
  border-radius: 0 16px 16px 0;
}

/* leaf */
.leaf-D {
  position: absolute;
  top: 255px;
  right: 40px;
  width: 140px;
  height: 164px;
  background: url(../img/top/leaf-D.svg) 0 0 no-repeat;
  background-size: 140px auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .-water {
    min-height: auto;
  }
  .-water.-bath-water-wrap .item-desc-wrap {
    margin-left: 0;
  }
  .-water.-bath-water-wrap .desc-wrap {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
  }
  .-water .-bath-water-img-wrap {
    width: calc(100% - 25px);
    left: auto;
    right: 0;
    border-radius: 0 16px 16px 0;
  }

  .-water .-bath-water-img-wrap img {
    border-radius: 0 16px 16px 0;
  }

  /* leaf */
  .leaf-D {
    display: none;
  }
}

/* -sauna
============================================================ */
.sauna-body-wrap {
  padding: 80px 80px;
  border-radius: 16px;
  background-color: #fff;
  position: relative;
}
.sauna-body-wrap .sauna-flex-wrap {
  display: flex;
  flex-direction: row-reverse;
  margin-top: 43px;
}
.sauna-body-wrap .sauna-flex-wrap .desc-wrap {
  width: calc(100% - 280px);
  padding-right: 80px;
}
.sauna-body-wrap .sauna-flex-wrap .img-wrap {
  width: 280px;
}
.sauna-body-wrap .top-base-btn-wrap a {
  width: 480px;
}

/* leaf */
.leaf-E {
  position: absolute;
  bottom: -55px;
  left: 40px;
  width: 172px;
  height: 90px;
  background: url(../img/top/leaf-E.svg) 0 0 no-repeat;
  background-size: 172px auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .sauna-body-wrap {
    padding: 24px 24px;
    border-radius: 8px;
  }
  .sauna-body-wrap .sauna-flex-wrap {
    display: block;
    margin-top: 32px;
  }
  .sauna-body-wrap .sauna-flex-wrap .desc-wrap {
    width: 100%;
    padding-right: 0;
  }
  .sauna-body-wrap .sauna-flex-wrap .img-wrap {
    width: 100%;
    margin-bottom: 32px;
    text-align: center;
  }
  .sauna-body-wrap .top-base-btn-wrap a {
    width: 100%;
  }

  /* leaf */
  .leaf-E {
    display: none;
  }
}

/* -price
============================================================ */
.-price {
  max-width: 1520px;
  margin: 200px auto 0;
  padding: 160px 80px;
  background: url(../img/top/price-bg.jpg) center no-repeat;
  background-size: cover;
  border-radius: 40px;
}
.-price .top-title-A-wrap {
  text-align: center;
}
.-price .top-title-A-wrap > * {
  color: #fff;
}
.-price .price-list {
  margin-top: 56px;
}
.-price .price-list ul {
  display: flex;
  /* flex-wrap: wrap; */
}
.-price .price-list li {
  text-align: center;
  width: calc((100% - 16px * 3) / 4);
  margin-right: 16px;
  background-color: #fff;
  border-radius: 7px 7px 5px 5px;
}
.-price .price-list li:nth-child(4n) {
  margin-right: 0;
}
.-price .price-list .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 85px;
  background-color: #042c22;
  border-radius: 5px 5px 0 0;
}
.-price .price-list .title-wrap .title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
}
.-price .price-list .desc-wrap {
  padding: 24px 16px;
}
.-price .price-list .desc-wrap .text {
}
.-price .price-list .desc-wrap .text .-large {
  font-size: 32px;
  font-weight: bold;
}
.-price .price-list .desc-wrap .text .-bold {
  font-weight: bold;
  margin-left: 3px;
}
.-price .price-list .desc-wrap .text .-small {
  font-size: 16px;
  line-height: 1.4;
}
.-price .com-price-text-A {
  margin: 42px auto;
}
.-price .price-wrap .title-wrap {
  width: 50%;
  background-color: #e87634;
  border-radius: 5px 0 0 5px;
  padding: 24px 40px;
}
.-price .price-wrap .title-wrap .title {
  color: #fff;
  font-weight: bold;
}
.-price .price-wrap .price-wrap {
  width: 50%;
  background-color: #fff;
  border-radius: 0 5px 5px 0;
  padding: 24px 40px;
}
.-price .price-wrap {
  display: flex;
  justify-content: flex-end;
}
.-price .price-wrap .price {
  font-size: 18px;
}
.-price .price-wrap .price .-large {
  font-size: 32px;
  font-weight: bold;
}
.-price .price-wrap .price .-bold {
  font-weight: bold;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .-price {
    max-width: 1520px;
    margin: 56px auto 0;
    padding: 56px 25px;
    background: url(../img/top/price-bg.jpg) center no-repeat;
    background-size: cover;
    border-radius: 20px;
  }
  .-price .price-list {
    margin-top: 32px;
  }
  .-price .price-list ul {
    display: block;
  }
  .-price .price-list li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 15px;
  }
  .-price .price-list li:last-child {
    margin-bottom: 0;
  }
  .-price .price-list .title-wrap .title {
    font-size: 18px;
  }
  .-price .price-list .desc-wrap {
    padding: 16px 16px;
  }
  .-price .com-price-text-A {
    margin: 42px auto;
  }
  .-price .price-wrap .title-wrap {
    width: 100%;
    border-radius: 5px 5px 0 0;
    padding: 16px 16px;
  }
  .-price .price-wrap .price-wrap {
    border-radius: 0 0 5px 5px;
  }
  .-price .price-wrap .price-wrap {
    width: 100%;
    padding: 16px 16px;
  }
  .-price .price-wrap {
    display: block;
  }
  .-price .price-wrap .price {
    font-size: 18px;
    text-align: center;
  }
  .-price .price-wrap .price .-large {
    font-size: 32px;
    font-weight: bold;
  }
  .-price .price-wrap .price .-bold {
    font-weight: bold;
  }
}

/* js-offset-active
============================================================ */
.com-offset-target {
  position: relative;
  top: 15px;
  opacity: 0;
  transition: all .5s ease-in-out;
}
.com-offset-target.js-offset-active {
  top: 0;
  opacity: 1;
}
.-concept.com-offset-target,
.-concept.com-offset-target.js-offset-active {
  top: 0;
  opacity: 1;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .hoge {
  }
}

/* hoge
============================================================ */
.hoge {
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 1201px) {
  .hoge {
  }
}


