@charset "UTF-8";
/*====================================
# color
====================================*/
/*====================================
# font
====================================*/
/*フォントの読み込み*/
@font-face {
  font-family: "futene-font";
  src: url("../../fonts/shirokuma-font.woff2") format("woff2"), url("../../fonts/shirokuma-font.woff") format("woff");
}
/*====================================
# レイアウト幅
====================================*/
/* ブレークポイント
-------------------------------------*/
/* メディアクエリー
-------------------------------------*/
/*====================================
# 共通クラス
====================================*/
body {
  background: #fcfcfc;
  font-family: "Kaisei Decol", serif;
  color: #104A83;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.inner {
  max-width: 1100px;
  margin: 0 auto;
  box-sizing: content-box;
}
@media (max-width: 767px) {
  .inner {
    max-width: calc(100% - 30px);
    margin: 0 auto;
    box-sizing: content-box;
  }
}

@media (min-width: 1100px) {
  .is-sp {
    display: none;
  }
}

@media (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

.section {
  margin: 160px auto 0;
}
@media (max-width: 900px) {
  .section {
    margin-top: 90px;
  }
}

.to-top {
  position: fixed;
  right: 41px;
  bottom: 47px;
  z-index: 100;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .to-top {
    right: 16px;
    bottom: 16px;
  }
}
.to-top.is-show {
  opacity: 1;
  visibility: visible;
}
.to-top a {
  transition: all 0.3s ease 0s;
}
.to-top img {
  width: 100px;
  vertical-align: bottom;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 60px;
  background: rgba(252, 252, 252, 0.7);
}
@media (max-width: 767px) {
  .header {
    display: none;
  }
}

.header__nav {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
}

.header-nav__list-left,
.header-nav__list-right {
  display: flex;
}
.header-nav__list-left li:first-child,
.header-nav__list-right li:first-child {
  margin-right: 40px;
}
.header-nav__list-left li a,
.header-nav__list-right li a {
  display: inline-block;
  color: #104A83;
  line-height: 60px;
  font-size: 18px;
}

.header__logo {
  margin: 0 40px;
}
.header__logo h1 a {
  display: inline-block;
  height: 60px;
  padding-top: 5px;
}
.header__logo h1 a img {
  width: 50px;
}

.drawer-content {
  position: fixed;
  top: 0;
  right: 0;
  width: 80%;
  z-index: 15;
  background: #104A83;
  padding: 10px 15px;
  height: 100%;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-icon {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 500;
  background: #104A83;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  transition: all 0.5s ease 0s;
  opacity: 0;
}
@media (max-width: 767px) {
  .drawer-icon {
    opacity: 1;
    visibility: visible;
    cursor: pointer;
  }
  .drawer-icon:hover {
    opacity: 0.7;
  }
}
.drawer-icon.is-active {
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
.drawer-icon.is-active .drawer-icon__bars {
  width: 27px;
  height: 20px;
  display: block;
  position: relative;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  background: #104A83;
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  background: #104A83;
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon__bars {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 27px;
  height: 20px;
  display: block;
  transition: all 0.3s ease;
}
.drawer-icon__bars::before {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}
.drawer-icon__bars::after {
  position: absolute;
  width: 22px;
  height: 4px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 27px;
  height: 2.25px;
  background: #fff;
  top: 0;
  left: 0;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content__items {
  margin-top: 56px;
  margin-left: 22px;
}

.drawer-content__item + .drawer-content__item {
  margin-top: 33px;
}
.drawer-content__item a {
  display: inline-block;
  color: #fff;
  font-size: 24px;
  line-height: 1.18em;
  letter-spacing: 0.1em;
  padding-left: 4px;
}
.drawer-content__item a span {
  font-size: 10px;
  line-height: 0.9em;
  padding-left: 2px;
  letter-spacing: -0.1em;
  margin-left: 32px;
  position: relative;
}
.drawer-content__item a span::before {
  content: "／";
  position: absolute;
  left: -21px;
  top: 0;
  width: 10px;
  height: 10px;
  color: #fff;
}
.drawer-content__item a:hover {
  opacity: 0.7;
}

.drawer-background {
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  display: none;
}
.drawer-background.is-active {
  display: block;
}

.top {
  margin-top: 60px;
  position: relative;
}
@media (max-width: 767px) {
  .top {
    margin-top: 0;
  }
}
.top h1 {
  position: absolute;
  text-align: center;
  top: 60px;
  left: 20%;
  font-size: 70px;
  font-family: "Kaisei Decol", serif;
  line-height: 1.35em;
  z-index: 10;
  color: #fff;
}
@media (max-width: 900px) {
  .top h1 {
    font-size: 50px;
  }
}
@media (max-width: 767px) {
  .top h1 {
    font-size: 36px;
  }
}
.top h1 span {
  font-size: 120px;
  color: rgba(16, 74, 131, 0.6);
}
@media (max-width: 900px) {
  .top h1 span {
    font-size: 90px;
  }
}
@media (max-width: 767px) {
  .top h1 span {
    font-size: 60px;
  }
}
.top h1::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 46px;
  width: 371px;
  height: 372px;
  background: transparent;
  border: 1px solid #fff;
  border-radius: 50%;
  z-index: -5;
}
@media (max-width: 900px) {
  .top h1::before {
    left: 15px;
    width: 273px;
    height: 273px;
  }
}
@media (max-width: 767px) {
  .top h1::before {
    left: 22px;
    width: 200px;
    height: 200px;
  }
}

.swiper-wrapper {
  width: 85%;
  height: 800px;
  margin-left: auto;
  overflow: hidden;
  border-radius: 195px 0 0 195px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .swiper-wrapper {
    height: 600px;
  }
}
@media (max-width: 767px) {
  .swiper-wrapper {
    width: 90%;
    border-radius: 50px 0 0 50px;
  }
}

@-webkit-keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide {
  width: inherit;
  height: inherit;
  position: relative;
}
.swiper-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
}
.swiper-slide img {
  border-radius: 195px 0 0 195px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  object-position: left;
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .swiper-slide img {
    border-radius: 50px 0 0 50px;
    -o-object-position: center;
       object-position: center;
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
          animation: zoomUp 10s linear 0s 1 normal both;
}

.swiper-pagination {
  margin-left: 15px;
}

.swiper-pagination-bullet {
  background: #fff;
  cursor: pointer;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
}

.swiper-pagination-bullet-active {
  background: #104A83;
}

.top__btn a {
  padding: 20px;
  display: inline-block;
  color: #fff;
  font-size: 24px;
  background: #FFCD1E;
  border-radius: 20px;
  text-align: center;
  line-height: 1.6em;
  position: absolute;
  left: 65px;
  bottom: 100px;
  z-index: 10;
  transition: all 0.3s ease;
}
.top__btn a:hover {
  background: #fff;
  color: #FFCD1E;
}
.top__btn a:hover::after {
  content: "";
  position: absolute;
  width: 99%;
  height: 98%;
  top: 0;
  left: 0;
  border: 2px solid #FFCD1E;
  background: transparent;
  border-radius: 20px;
}
@media (max-width: 900px) {
  .top__btn a {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .top__btn a {
    font-size: 16px;
    left: 15px;
  }
}

.section__title {
  font-size: 54px;
  text-align: center;
}
@media (max-width: 767px) {
  .section__title {
    font-size: 38px;
  }
}

.concept {
  position: relative;
}
.concept::after {
  content: "";
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: url(../../img/onsenmark.png) no-repeat center center/contain;
}
@media (max-width: 767px) {
  .concept::after {
    display: none;
  }
}

.concept__content {
  display: flex;
  margin-top: 40px;
  background-size: 450px;
  padding: 80px 0 60px 0;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .concept__content {
    display: block;
    padding-bottom: 0;
  }
}

.row-reverse {
  flex-flow: row-reverse;
  padding: 0;
}

.concept__img {
  width: 45%;
  height: 450px;
  position: relative;
}
@media (max-width: 900px) {
  .concept__img {
    width: 55%;
  }
}
@media (max-width: 767px) {
  .concept__img {
    width: 85%;
    height: 300px;
  }
}
.concept__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
}
.concept__img img {
  border-radius: 0 80px 80px 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept__img2 {
  width: 40%;
  height: 450px;
  position: relative;
}
@media (max-width: 767px) {
  .concept__img2 {
    width: 85%;
    height: 300px;
    margin-left: auto;
  }
}
.concept__img2::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.2);
}
.concept__img2 img {
  border-radius: 80px 0 0 80px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.concept__body {
  text-align: center;
  font-size: 30px;
  line-height: 1.6em;
  margin-top: 40px;
  margin-left: 140px;
}
@media (max-width: 1099px) {
  .concept__body {
    padding-right: 20px;
    margin-left: 70px;
  }
}
@media (max-width: 900px) {
  .concept__body {
    font-size: 28px;
    margin-left: 30px;
  }
}
@media (max-width: 767px) {
  .concept__body {
    font-size: 20px;
  }
}
.concept__body p {
  margin-top: 40px;
}

.concept-body__img {
  margin-left: 0;
  margin-right: 140px;
  position: relative;
}
@media (max-width: 1099px) {
  .concept-body__img {
    padding-left: 20px;
    padding-right: 0;
    margin-right: 100px;
  }
}
@media (max-width: 900px) {
  .concept-body__img {
    margin-right: 50px;
  }
}
@media (max-width: 767px) {
  .concept-body__img {
    margin: 20px auto;
  }
}
.concept-body__img::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -233px;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  background: url(../../img/towa2.png) no-repeat center center/contain;
}
@media (max-width: 900px) {
  .concept-body__img::after {
    left: 39px;
    top: 18%;
    z-index: -10;
  }
}

.advisor {
  position: relative;
  margin-top: 200px;
}
.advisor::before {
  content: "";
  position: absolute;
  width: 80%;
  height: 118%;
  top: 53%;
  left: 0;
  transform: translateY(-50%);
  border-radius: 0 80px 80px 0;
  background: rgba(212, 231, 252, 0.4);
  z-index: -10;
}

.advisor__head p {
  text-align: center;
  margin-top: 30px;
  font-size: 18px;
}

.advisor__content {
  width: 80%;
  margin: 80px auto;
}
@media (max-width: 767px) {
  .advisor__content {
    margin-top: 60px;
  }
}

.advisor__comments1 {
  display: flex;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .advisor__comments1 {
    display: block;
  }
}

.advisor__comments2 {
  margin-top: 220px;
  transition: all 0.3s ease;
}
@media (max-width: 900px) {
  .advisor__comments2 {
    margin-top: 223px;
  }
}
@media (max-width: 767px) {
  .advisor__comments2 {
    margin-top: 145px;
  }
}

@media (max-width: 767px) {
  .comment-img {
    display: none;
  }
}

.comment-sp {
  display: none;
}
@media (max-width: 767px) {
  .comment-sp {
    display: block;
  }
}

.advisor__text1,
.advisor__text2 {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
}

.advisor__text1 {
  width: 65%;
  text-align: center;
}
@media (max-width: 767px) {
  .advisor__text1 {
    width: 80%;
  }
}
.advisor__text1 img {
  width: 85%;
}
@media (max-width: 767px) {
  .advisor__text1 img {
    width: 100%;
  }
}

.advisor__text2 {
  width: 80%;
  text-align: right;
}
@media (max-width: 900px) {
  .advisor__text2 {
    text-align: center;
  }
}
@media (max-width: 767px) {
  .advisor__text2 {
    width: 70%;
  }
}
.advisor__text2 img {
  width: 60%;
}
@media (max-width: 900px) {
  .advisor__text2 img {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .advisor__text2 img {
    width: 100%;
  }
}

.advisor__body1 p,
.advisor__body2 p {
  margin-top: 15px;
}
@media (max-width: 900px) {
  .advisor__body1 p,
.advisor__body2 p {
    font-size: 12px;
  }
}

.advisor__body1 {
  max-width: 400px;
  position: relative;
}
@media (max-width: 767px) {
  .advisor__body1 {
    max-width: 270px;
    margin-left: auto;
  }
}
.advisor__body1::before {
  content: "";
  position: absolute;
  top: 125px;
  right: 21px;
  height: 350px;
  width: 350px;
  background: url(../../img/towa.png) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .advisor__body1::before {
    top: 3px;
    right: -12px;
    height: 239px;
    width: 266px;
  }
}

.advisor__body2 {
  padding-left: 362px;
  position: relative;
}
@media (max-width: 900px) {
  .advisor__body2 {
    padding-left: 200px;
  }
}
@media (max-width: 767px) {
  .advisor__body2 {
    padding-left: 112px;
  }
}
.advisor__body2::before {
  content: "";
  position: absolute;
  left: 197px;
  top: -32px;
  height: 284px;
  width: 124px;
  background: url(../../img/haruno.png) no-repeat center bottom/cover;
}
@media (max-width: 900px) {
  .advisor__body2::before {
    left: 61px;
  }
}
@media (max-width: 767px) {
  .advisor__body2::before {
    top: -15px;
    left: 22px;
    height: 200px;
    width: 100px;
  }
}

.adivisor__name1,
.adivisor__name2 {
  font-size: 38px;
  padding-top: 40px;
}
@media (max-width: 900px) {
  .adivisor__name1,
.adivisor__name2 {
    font-size: 28px;
  }
}

.schedule {
  margin-top: 240px;
  padding: 15px;
}

.schedule__text {
  text-align: center;
  width: 280px;
  margin: 60px auto;
  text-align: center;
  font-size: 24px;
  position: relative;
}
@media (max-width: 767px) {
  .schedule__text {
    font-size: 18px;
  }
}
.schedule__text::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 4px;
  width: 2px;
  height: 100%;
  transform: rotate(-45deg);
  background: #104A83;
}
@media (max-width: 900px) {
  .schedule__text::before {
    left: -7px;
  }
}
@media (max-width: 767px) {
  .schedule__text::before {
    left: 7%;
  }
}
.schedule__text::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 4px;
  width: 2px;
  height: 100%;
  transform: rotate(45deg);
  background: #104A83;
}
@media (max-width: 900px) {
  .schedule__text::after {
    right: -7px;
  }
}
@media (max-width: 767px) {
  .schedule__text::after {
    right: 7%;
  }
}

.schedule__content {
  margin-top: 60px;
}

.schedule__plan + .schedule__plan {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .schedule__plan + .schedule__plan {
    margin-top: 30px;
  }
}

.plan__item {
  display: flex;
}

.plan-date {
  color: #104A83;
  line-height: 80px;
  text-align: center;
  background: #fff;
  border: 1px solid #104A83;
  border-radius: 50%;
  width: 80px;
  height: 80px;
}
@media (max-width: 767px) {
  .plan-date {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 14px;
  }
}

.plan__body {
  height: 80px;
  margin-left: 40px;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .plan__body {
    margin-left: 10px;
    width: calc(100% - 60px);
    font-size: 14px;
  }
}

.plan__detail {
  margin-top: 10px;
}

.detail-link {
  margin-top: 22px;
}

.detail-link-btn {
  color: #104A83;
  border: 1px solid #104A83;
  font-weight: bold;
  position: relative;
}
.detail-link-btn::after {
  content: "click!";
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 20px;
  background: #fff;
}
.detail-link-btn:hover {
  background: #104A83;
  color: #fff;
}
.detail-link-btn:hover::after {
  opacity: 0;
}

.tab-content {
  background: #fff;
  border-radius: 0 0 20px 20px;
  border-bottom: 1px solid #104A83;
  border-left: 1px solid #104A83;
  border-right: 1px solid #104A83;
} /* 全体を覆うdiv */
.tab-container {
  width: 70%;
  margin: 60px auto;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 767px) {
  .tab-container {
    width: 100%;
    margin: 30px auto;
  }
}

/*タブ(label)のスタイル*/
.tab-item {
  width: 20%;
  height: 70px;
  padding: 20px;
  background-color: lightgray;
  text-align: center;
  display: block;
  float: left;
  flex-wrap: nowrap;
  color: gray;
  text-align: center;
  transition: all 0.2s;
  font-weight: bold;
  border-radius: 20px 20px 0 0;
  border-top: 1px solid #104A83;
  border-left: 1px solid #104A83;
  border-right: 1px solid #104A83;
}
@media (max-width: 767px) {
  .tab-item {
    padding: 10px;
    font-size: 12px;
    padding: 10px 3px 0 3px;
    line-height: 1.4em;
    height: 53px;
  }
}

/* inputボタンは目には見えないところで働いてもらう */
input[name=tab-item] {
  display: none;
}

/* タブで切り替えたいコンテンツの部分。ここはお好みで */
.tab-content {
  display: none;
  padding: 40px;
  overflow: hidden;
  clear: both;
}
@media (max-width: 767px) {
  .tab-content {
    padding: 20px;
  }
}

/* 選択されているタブのコンテンツを表示させる */
#a:checked ~ #a-content,
#b:checked ~ #b-content,
#c:checked ~ #c-content,
#d:checked ~ #d-content,
#e:checked ~ #e-content {
  display: block;
}

/* 選択されていることがわかるように、選択されているタブはスタイルを変える */
.tab-container input:checked + .tab-item {
  background-color: #104A83;
  color: #fff;
}

.memory__content {
  margin: 60px 0 160px;
}
.memory__content h1 {
  font-size: 24px;
  text-align: center;
}
@media (max-width: 767px) {
  .memory__content {
    margin-top: 40px;
  }
}

.footer {
  padding: 20px;
  background: #104A83;
}

.footer__content {
  text-align: center;
}

.footer__nav {
  display: flex;
}

.footer-nav__list {
  display: flex;
  margin: 40px auto;
}
.footer-nav__list li {
  margin-left: 40px;
}
@media (max-width: 767px) {
  .footer-nav__list li {
    margin-top: 20px;
    margin-left: 0;
  }
}
.footer-nav__list li:first-child {
  margin-left: 0;
}
@media (max-width: 767px) {
  .footer-nav__list li:first-child {
    margin-top: 0;
  }
}
.footer-nav__list li a {
  display: inline-block;
  color: #fff;
}
@media (max-width: 767px) {
  .footer-nav__list {
    display: block;
  }
}

.copy__right {
  font-size: 12px;
  color: #fff;
}
/*# sourceMappingURL=style.css.map */