@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
/* Text Reveal Animation
------------------------------------------------*/
@-webkit-keyframes textAnime_w {
  0% {
    color: transparent;
    background: transparent;
  }
  50% {
    color: transparent;
    background: transparent;
  }
  51% {
    color: #161616;
    background: #fff;
  }
  100% {
    color: #161616;
    background: #fff;
  }
}
@keyframes textAnime_w {
  0% {
    color: transparent;
    background: transparent;
  }
  50% {
    color: transparent;
    background: transparent;
  }
  51% {
    color: #161616;
    background: #fff;
  }
  100% {
    color: #161616;
    background: #fff;
  }
}
@-webkit-keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  68% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes barAnime {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  68% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
.u-reveal-mask {
  position: relative;
  overflow: hidden;
  display: inline-block;
  color: transparent;
  opacity: 0;
  /* Black bar element */
}
.u-reveal-mask::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: #000;
}
.u-reveal-mask.is-active {
  opacity: 1;
  -webkit-animation: textAnime_w 1s forwards;
          animation: textAnime_w 1s forwards;
}
.u-reveal-mask.is-active::before {
  -webkit-animation: barAnime 1s forwards;
          animation: barAnime 1s forwards;
}

body {
  color: #40220f;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
  font-weight: normal;
  line-height: 1.5;
  overflow-x: clip;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

/* #plans 頭出し */
html {
  scroll-padding-top: 60px;
}
@media print, screen and (min-width: 701px) {
  html {
    scroll-padding-top: 80px;
  }
}

main {
  background-color: #f7f8f8;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
.header:has(.is-active) .header__icon-white {
  display: none !important;
}
.header.-active .header__icon-white {
  display: none !important;
}
.header:not(:has(.is-active)):not(.-active) {
  background-color: transparent;
}
.header:not(:has(.is-active)):not(.-active) .header__icon-black {
  display: none !important;
}
.header:not(:has(.is-active)):not(.-active) .header__cv-text {
  color: #fff;
}
.header:not(:has(.is-active)):not(.-active) .header__hamburger span {
  background-color: #fff;
}

.mv {
  position: relative;
  margin-bottom: 80px;
}

.search-wrap {
  position: absolute;
  left: 50%;
  top: 80px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
}
@media print, screen and (min-width: 701px) {
  .search-wrap {
    top: 100px;
  }
}

.point-img {
  margin-top: -80px;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}
.point-img.-yutori {
  -webkit-transform: translateX(-25px) scale(1.05);
          transform: translateX(-25px) scale(1.05);
}
.point-img.-madori {
  -webkit-transform: translateX(-20px) scale(1.05);
          transform: translateX(-20px) scale(1.05);
}

.section-heading {
  text-align: center;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: bold;
  font-size: 26px;
}

.section-sub-copy {
  position: relative;
  margin-top: 15px;
  padding-top: 15px;
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 5px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.section-sub-copy::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 110%;
}

.section-copy {
  text-align: center;
  font-size: 22px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  margin-top: 10px;
  font-weight: bold;
}

.section-sub-heading {
  padding-top: 20px;
  margin-top: 20px;
  position: relative;
  font-size: 17px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: bold;
}
.section-sub-heading::before {
  content: "";
  display: block;
  height: 1px;
  width: 40px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #000;
}

.section-text {
  text-align: center;
  font-size: 13px;
  line-height: 2;
  margin-top: 20px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.section-text2 {
  font-size: 12px;
  line-height: 1.75;
  margin-top: 20px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

.merit {
  margin-top: 30px;
}

.and {
  position: absolute;
  top: 50px;
  left: 60%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 200px;
  z-index: -1;
}

.point {
  margin-top: 50px;
}

.plan-big {
  margin-top: 50px;
  position: relative;
  width: 83%;
  margin: 0 auto;
  padding-left: 30px;
}

@-webkit-keyframes anime {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.8, 1.8);
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}

@keyframes anime {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 1;
  }
  70% {
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.8, 1.8);
    transform: scale(1.8, 1.8);
    opacity: 0;
  }
}
.plan-num {
  position: absolute;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  background-color: #d80c18;
  line-height: 1;
  height: 20px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 2;
}
.plan-num::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #d80c18;
  -webkit-animation: anime 2s ease-out 1s infinite;
          animation: anime 2s ease-out 1s infinite;
  z-index: -1;
}
.plan-num.-n1 {
  bottom: 46%;
  left: 26%;
}
.plan-num.-n2 {
  bottom: 39%;
  right: 56%;
}
.plan-num.-n3 {
  bottom: 28%;
  right: 34.3%;
}
.plan-num.-n4 {
  bottom: 22%;
  right: 44%;
}
.plan-num.-n5 {
  bottom: 2%;
  left: 56%;
}
.plan-num.-n6 {
  bottom: 18%;
  right: 19%;
}
.plan-num.-n7 {
  bottom: 8%;
  left: 22%;
}
.plan-num.-n8 {
  bottom: 9%;
  left: 45%;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
}
.modal.is-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__inner {
  position: relative;
  width: 98%;
  max-height: 80%;
  background-color: #fff;
  padding: 20px;
  overflow-y: auto;
}
@media print, screen and (min-width: 701px) {
  .modal__inner {
    width: 500px;
  }
}

.modal__close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background-color: #000;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.modal__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: 14px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-weight: bold;
}
@media print, screen and (min-width: 701px) {
  .modal__heading {
    font-size: 20px;
  }
}
.modal__heading span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  color: #fff;
  font-size: 12px;
  border-radius: 50%;
  background-color: #d80c18;
  line-height: 1;
  height: 20px;
  width: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modal__img {
  margin-top: 10px;
}

.modal__text {
  font-size: 12px;
  line-height: 1.75;
  margin-top: 20px;
}
@media print, screen and (min-width: 701px) {
  .modal__text {
    font-size: 16px;
  }
}

.plab-block {
  padding: 50px 30px 0;
}

.plan-heading {
  text-align: center;
  line-height: 1;
  font-weight: bold;
  font-size: 30px;
  padding-bottom: 10px;
  position: relative;
  color: #000;
}
.plan-heading::before {
  content: "";
  display: block;
  height: 1px;
  width: 100px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #000;
}

.plan-link {
  display: block;
  margin-top: 20px;
}

.view-img {
  margin: -30px auto 0;
  -webkit-transform: translateX(10px) scale(1.15);
          transform: translateX(10px) scale(1.15);
  width: 80%;
}

.long-view {
  margin-top: 20px;
  margin-right: calc(50% - 50vw);
  margin-left: calc(50% - 50vw);
  overflow-x: scroll;
  width: 100vw;
  max-width: 700px;
  position: relative;
}
@media print, screen and (min-width: 701px) {
  .long-view {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
.long-view img {
  width: 300vw;
  max-width: none;
}
@media print, screen and (min-width: 701px) {
  .long-view img {
    width: 100vw;
  }
}

.long-view-wrap {
  position: relative;
}

.long-map-icon {
  margin-top: 30px;
}

.envArea {
  background: #c0e1ca;
  padding: 30px 20px;
  margin-top: 50px;
  border-radius: 20px;
}

.envTxt {
  font-size: 12.5px;
  text-align: center;
  line-height: 2;
  margin: 0px auto 0px;
  font-weight: bold;
  color: #000;
}
@media print, screen and (min-width: 701px) {
  .envTxt {
    font-size: 16px;
  }
}

.env {
  width: 80%;
  margin-right: auto;
  margin-left: auto;
  margin-top: 20px;
}

.contents-wrap.-white {
  background: #FFF;
  padding-bottom: 20px;
  
}

.bottom-slider-area {
  margin-top: 0;
}

.plan-detail {
  margin-top: 30px;
}

.info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "Jost", 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
}

.type {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 10px 20px;
  font-size: 16px;
}
.type span {
  font-size: 30px;
}
@media print, screen and (min-width: 701px) {
  .type {
    font-size: 21px;
    padding: 10px 15px;
  }
  .type span {
    font-size: 36px;
  }
}

.info-box__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  gap: 3px;
  padding: 10px;
  border: 1px solid #000;
  border-right: none;
  width: 100%;
}
.info-box__label {
  line-height: 1.6;
  font-size: 13px;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  -ms-flex-negative: 0;
      flex-shrink: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.info-box__num {
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
  line-height: 1;
  font-size: 35px;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.info-box__num span {
  font-size: 14px;
}
@media print, screen and (min-width: 701px) {
  .info-box__num {
    font-size: 50px;
  }
  .info-box__num span {
    font-size: 30px;
  }
}

.info-box__tsubo {
  line-height: 1.7;
  font-size: 12px;
}

.type-info {
  text-align: center;
  margin-top: 15px;
  font-size: 30px;
  line-height: 1;
}
@media print, screen and (min-width: 701px) {
  .type-info {
    font-size: 40px;
    margin-top: 20px;
  }
}
.type-info {
  font-family: "Jost", 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
}
.type-info span {
  font-size: 20px;
}
@media print, screen and (min-width: 701px) {
  .type-info span {
    font-size: 30px;
  }
}

.list {
  margin: 20px auto;
  width: 70%;
}
.list li {
  font-size: 12px;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.list li::before {
  content: "●";
  font-size: 12px;
  color: #d80c18;
}
.list li + li {
  margin-top: 5px;
}