@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Libre+Caslon+Display&family=Shippori+Mincho+B1&family=Zen+Old+Mincho&display=swap");
/* setting //////////////////////////////////////////////////*/
/*color*/
/*font-family*/
/*filler color*/
/*text-shadow*/
/*media query break point*/
/*mainBP*/
/*gHeader用*/
/*// mixin //////////////////////////////////////////////////*/
/* media query */
/* hover */
main {
  overflow: hidden;
}

.p-intro {
  margin-top: 15rem;
  position: relative;
}

.p-limited-nav {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
html:lang(en) .p-limited-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media only screen and (max-width: 767px) {
  .p-limited-nav {
    grid-template-columns: 1fr;
  }
  html:lang(en) .p-limited-nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-limited-nav__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #00996a;
  color: #fff;
  padding: 2rem;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #00996a;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: relative;
  font-family: "Libre Caslon Display", serif;
}
@media only screen and (max-width: 767px) {
  .p-limited-nav__btn {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .p-limited-nav__btn {
    font-size: 1.6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-limited-nav__btn:hover {
    background-color: #fff;
    color: #00996a;
  }
}
.p-limited-nav__btn.new {
  position: relative;
}
.p-limited-nav__btn.new i {
  position: absolute;
  top: -5px;
  right: -5px;
  border-radius: 10rem;
  display: block;
  padding: 0.5rem 2rem;
  background-color: #8e2121;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}
.p-limited-nav__btn.nolink {
  background-color: rgba(0, 153, 107, 0.3);
  border: 1px solid rgba(0, 153, 107, 0);
  pointer-events: none;
}

.p-limited-gallery {
  border-top: 1px solid #00996a;
}
.p-limited-gallery__heading {
  font-size: 2rem;
  line-height: 1.2;
  color: #00996a;
  text-align: center;
}
.p-limited-gallery__heading em {
  font-size: 1.8em;
}
.p-limited-gallery__info {
  text-align: center;
  font-size: 3rem;
  border-bottom: 1px solid #006d4c;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #9e833f;
}
.p-limited-gallery__info em {
  font-size: 1.5em;
}
@media only screen and (max-width: 767px) {
  .p-limited-gallery__info {
    font-size: 2.4rem;
  }
}
.p-limited-gallery__lead {
  font-size: 2rem;
  text-align: center;
}
.p-limited-gallery .slick-dots {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  width: 100%;
  margin-inline: auto;
}
.p-limited-gallery .slick-dots li {
  cursor: pointer;
  background-color: #010101;
}
.p-limited-gallery .slick-dots li img {
  opacity: 0.5;
}
.p-limited-gallery .slick-dots li.slick-active img {
  opacity: 1;
}

.p-step {
  background-color: #dfeae2;
}
.p-step__inner {
  padding: 5rem 0;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5rem;
}
@media only screen and (max-width: 767px) {
  .p-step__inner {
    gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-step__num__ttl {
  padding: 1rem 1rem 0;
  border-top: 1px solid #00996a;
  border-bottom: 1px solid #00996a;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1;
  font-family: "Libre Caslon Display", serif;
  text-align: center;
  color: #00996a;
  background-color: #dfeae2;
}
@media only screen and (max-width: 767px) {
  .p-step__num__ttl {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .p-step__num__ttl {
    font-size: 1.2rem;
  }
}
.p-step__num__ttl em {
  display: block;
  font-size: 3em;
}
@media only screen and (max-width: 767px) {
  .p-step__num__ttl em {
    display: inline-block;
  }
}
.p-step__detail {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #00996a;
}
.p-step__detail__obi {
  background-color: #00996a;
  color: #fff;
  padding: 1rem;
  display: inline-block;
  line-height: 1;
}
.p-step__detail__flexwrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3rem;
}
@media only screen and (max-width: 1080px) {
  .p-step__detail__flexwrap {
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-step__detail__txt01 {
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .p-step__detail__txt01 {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .p-step__detail__txt01 {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-step__detail__txt01 {
    text-align: center;
  }
}
.p-step__detail__txt02 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.4;
  color: #262626;
}
@media only screen and (max-width: 767px) {
  .p-step__detail__txt02 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .p-step__detail__txt02 {
    font-size: 1.8rem;
  }
}
.p-step__detail__btn {
  border: 1px solid #00996a;
  background-color: #00996a;
  color: #fff;
  padding: 1rem 3rem;
  line-height: 1.2;
  text-align: center;
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  min-height: 6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 1080px) {
  .p-step__detail__btn {
    -webkit-flex-shrink: unset;
        -ms-flex-negative: unset;
            flex-shrink: unset;
    width: 100%;
  }
}
.p-step__detail__btn small {
  display: block;
  font-size: 0.8em;
}
.p-step__detail__btn:hover, .p-step__detail__btn:active, .p-step__detail__btn:visited {
  /*color: $color_grn;*/
}
.p-step__detail__btn:hover {
  background-color: #fff;
}
.p-step__detail__btn.nolink {
  color: #777777;
  pointer-events: none;
  background-color: #ededed;
  color: #00996a;
}
.p-step__detail__btn.grow {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-step__detail__flow {
  margin-top: 3rem;
  background-color: rgba(0, 153, 106, 0.2);
  padding: 3rem;
}
.p-step__detail__flow h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-step__detail__flow h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .p-step__detail__flow h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-step__detail__flow h3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.p-step__detail__flow h3 em {
  font-size: 2em;
}
.p-step__detail__flowlist {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
@media only screen and (max-width: 1080px) {
  .p-step__detail__flowlist {
    grid-template-columns: 1fr;
  }
}
.p-step__detail__flowlist dl {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media only screen and (max-width: 1080px) {
  .p-step__detail__flowlist dl {
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
}
.p-step__detail__flowlist dl:not(:last-child):after {
  position: absolute;
  right: -2.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 2rem;
  height: 2rem;
  background-color: #fff;
  -webkit-clip-path: polygon(25% 0, 25% 100%, 75% 50%);
          clip-path: polygon(25% 0, 25% 100%, 75% 50%);
}
@media only screen and (max-width: 1080px) {
  .p-step__detail__flowlist dl:not(:last-child):after {
    right: unset;
    top: unset;
    bottom: -3.5rem;
    left: 50%;
    rotate: 90deg;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-step__detail__flowlist dl dt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1.5rem;
  background-color: #00996a;
  color: #fff;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0;
  line-height: 1.4;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media only screen and (max-width: 767px) {
  .p-step__detail__flowlist dl dt {
    font-size: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .p-step__detail__flowlist dl dt {
    font-size: 1.2rem;
  }
}

.p-concept-movie {
  border-top: 1px solid #00996a;
}
.p-concept-movie__heading {
  font-size: 2rem;
  line-height: 1.2;
  color: #00996a;
  text-align: center;
}
.p-concept-movie__heading em {
  font-size: 1.8em;
}
.p-concept-movie__mov {
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  aspect-ratio: 16/9;
}
.p-concept-movie__mov__thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-concept-movie__mov__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-concept-movie__mov__txt {
  position: absolute;
  top: calc(50% - 6rem);
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
  font-size: 30px;
  font-size: 3rem;
  color: #fff;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .p-concept-movie__mov__txt {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .p-concept-movie__mov__txt {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-concept-movie__mov__txt {
    top: calc(50% - 3rem);
  }
}
.p-concept-movie__mov iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16/9;
}

.p-preparation {
  margin-top: 5rem;
}
.p-preparation h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-preparation h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .p-preparation h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-preparation h3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.p-preparation h3 em {
  font-size: 2em;
}
.p-preparation__wrap {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
}
@media only screen and (max-width: 1080px) {
  .p-preparation__wrap {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .p-preparation__wrap {
    grid-template-columns: 1fr;
  }
}
.p-preparation__txt__list {
  margin-top: 0.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.p-preparation__txt__list li {
  display: table;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.2;
}
@media only screen and (max-width: 767px) {
  .p-preparation__txt__list li {
    font-size: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .p-preparation__txt__list li {
    font-size: 1rem;
  }
}
.p-preparation__txt__list li > span {
  display: table-cell;
  width: 1em;
}

.p-recomend {
  margin-top: 5rem;
}
.p-recomend h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-recomend h3 {
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .p-recomend h3 {
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-recomend h3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.p-recomend h3 em {
  font-size: 2em;
}
.p-recomend__checklist {
  margin-top: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
}
.p-recomend__checklist__item {
  display: inline-block;
  width: 100%;
  padding: 1rem 2rem;
  background-color: #fff;
  display: grid;
  grid-template-columns: 1em auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .p-recomend__checklist__item {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .p-recomend__checklist__item {
    font-size: 1.6rem;
  }
}
.p-recomend__checklist__item__icon {
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../../images/common/icon_ckbox.svg);
  background-repeat: no-repeat;
}

.p-modelroom {
  margin-top: 3rem;
  background-color: rgba(0, 153, 106, 0.2);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 1080px) {
  .p-modelroom {
    grid-template-columns: 1fr;
  }
}
.p-modelroom h3 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  gap: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-modelroom h3 {
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .p-modelroom h3 {
    font-size: 1.6rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-modelroom h3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.p-modelroom h3 em {
  font-size: 2em;
}
.p-modelroom__txtarea {
  padding: 4rem;
}
@media only screen and (max-width: 767px) {
  .p-modelroom__txtarea {
    padding: 2rem;
  }
}
.p-modelroom__txtarea__txt01 {
  color: #00996a;
}
.p-modelroom__txtarea__txt01 span {
  display: inline-block;
  background-color: #00996a;
  line-height: 1;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  color: #fff;
  font-size: 0.8em;
}
@media only screen and (max-width: 767px) {
  .p-modelroom__txtarea__txt01 span {
    display: block;
    text-align: center;
    margin-right: 0;
  }
}
.p-modelroom__txtarea__txt02 {
  margin-top: 1rem;
  color: #262626;
  line-height: 1.6;
  font-size: 2rem;
}
@media only screen and (max-width: 767px) {
  .p-modelroom__txtarea__txt02 {
    font-size: 1.6rem;
  }
}
.p-modelroom__txtarea__txt02 small {
  display: block;
  font-size: 0.8em;
}

.p-plan {
  border-top: 1px solid #00996a;
}
.p-plan__heading {
  font-size: 2rem;
  line-height: 1.2;
  color: #00996a;
  text-align: center;
}
.p-plan__heading em {
  font-size: 1.8em;
}

.p-eq {
  border-top: 1px solid #00996a;
}
.p-eq__heading {
  font-size: 2rem;
  line-height: 1.2;
  color: #00996a;
  text-align: center;
}
.p-eq__heading em {
  font-size: 1.8em;
}
.p-eq__detail__heading {
  line-height: 1.2;
  color: #9e833f;
  border-bottom: 3px solid #9e833f;
  font-size: 3rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.p-eq__detail__heading span {
  font-size: 0.7em;
  white-space: nowrap;
}
.p-eq-nav__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-eq-nav__list {
    gap: 0.5rem;
  }
  html:lang(en) .p-eq-nav__list {
    grid-template-columns: 1fr;
  }
}
.p-eq-nav__list__item button {
  cursor: pointer;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2;
  background-color: #044931;
  color: #fff;
  padding: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-eq-nav__list__item button {
    padding: 1.5rem 0.5rem;
  }
  .p-eq-nav__list__item button span:nth-child(1) {
    display: none;
  }
  html:lang(en) .p-eq-nav__list__item button span:nth-child(1) {
    display: inline;
  }
}
@media only screen and (max-width: 767px) {
  .p-eq-nav__list__item:nth-child(3) button {
    letter-spacing: -0.1em;
  }
}
.p-eq-nav__list__item.is-active button {
  background-color: #9e833f;
}
.p-eq-tabContent {
  display: none;
}
.p-eq-list {
  gap: 5rem 2rem !important;
}
@media only screen and (max-width: 767px) {
  .p-eq-list {
    gap: 4rem 2rem !important;
  }
}
.p-eq-list__item__img--mx800 {
  width: 90%;
  max-width: 800px;
  margin-inline: auto;
}
.p-eq-list__item__name {
  color: #9e833f;
  font-size: 1.8rem;
  letter-spacing: 0;
  border-bottom: 1px solid #9e833f;
  line-height: 1.4;
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.p-eq-list__item__name small {
  font-size: 0.7em;
}
.p-eq-list__item__name span {
  display: inline-block;
}
.p-eq-list__item__lead {
  margin-top: 1rem;
  font-size: 1.4rem;
  line-height: 1.6;
  letter-spacing: 0;
}
.p-eq-list__item__lead small {
  font-size: 0.8em;
  display: block;
  margin-top: 0.5rem;
}
.p-eq-list__item__bousai {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, auto);
}
.p-eq-list__item__bousai ._01 {
  grid-area: 1/1/3/2;
}
.p-eq-list__item__bousai ._02 {
  grid-area: 1/2/2/3;
}
.p-eq-list__item__bousai ._03 {
  grid-area: 1/3/2/4;
}
.p-eq-list__item__bousai ._04 {
  grid-area: 1/4/2/5;
}
.p-eq-list__item__bousai ._05 {
  grid-area: 1/5/2/6;
}
.p-eq-list__item__bousai ._06 {
  grid-area: 1/6/2/7;
}
.p-eq-list__item__bousai ._07 {
  grid-area: 2/2/3/3;
}
.p-eq-list__item__bousai ._08 {
  grid-area: 2/3/3/4;
}
.p-eq-list__item__bousai ._09 {
  grid-area: 2/4/3/5;
}
.p-eq-list__item__bousai ._10 {
  grid-area: 2/5/3/6;
}
.p-eq-list__item__bousai ._11 {
  grid-area: 2/6/3/7;
}
@media only screen and (max-width: 1080px) {
  .p-eq-list__item__bousai {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
  }
  .p-eq-list__item__bousai ._01 {
    grid-area: 1/1/3/2;
  }
  .p-eq-list__item__bousai ._02 {
    grid-area: 1/2/2/3;
  }
  .p-eq-list__item__bousai ._03 {
    grid-area: 1/3/2/4;
  }
  .p-eq-list__item__bousai ._04 {
    grid-area: 2/2/3/3;
  }
  .p-eq-list__item__bousai ._05 {
    grid-area: 2/3/3/4;
  }
  .p-eq-list__item__bousai ._06 {
    grid-area: 3/1/4/2;
  }
  .p-eq-list__item__bousai ._07 {
    grid-area: 3/2/4/3;
  }
  .p-eq-list__item__bousai ._08 {
    grid-area: 3/3/4/4;
  }
  .p-eq-list__item__bousai ._09 {
    grid-area: 4/1/5/2;
  }
  .p-eq-list__item__bousai ._10 {
    grid-area: 4/2/5/3;
  }
  .p-eq-list__item__bousai ._11 {
    grid-area: 4/3/5/4;
  }
}
@media only screen and (max-width: 767px) {
  .p-eq-list__item__bousai {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 1fr);
  }
  .p-eq-list__item__bousai ._01 {
    grid-area: 1/1/3/2;
  }
  .p-eq-list__item__bousai ._02 {
    grid-area: 1/2/2/3;
  }
  .p-eq-list__item__bousai ._03 {
    grid-area: 2/2/3/3;
  }
  .p-eq-list__item__bousai ._04 {
    grid-area: 3/1/4/2;
  }
  .p-eq-list__item__bousai ._05 {
    grid-area: 3/2/4/3;
  }
  .p-eq-list__item__bousai ._06 {
    grid-area: 4/1/5/2;
  }
  .p-eq-list__item__bousai ._07 {
    grid-area: 4/2/5/3;
  }
  .p-eq-list__item__bousai ._08 {
    grid-area: 5/1/6/2;
  }
  .p-eq-list__item__bousai ._09 {
    grid-area: 5/2/6/3;
  }
  .p-eq-list__item__bousai ._10 {
    grid-area: 6/1/7/2;
  }
  .p-eq-list__item__bousai ._11 {
    grid-area: 6/2/7/3;
  }
}

/*
ログインページ
*/
.p-login {
  margin-top: 3rem;
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  background-color: #dfeae2;
  padding: 5rem;
  border-radius: 5px;
}
.p-login__lead {
  text-align: center;
}
.p-login__inputArea {
  margin-top: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
@media only screen and (max-width: 767px) {
  .p-login__inputArea {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-login__inputArea__pass {
  width: 30%;
  max-width: 400px;
  font-size: 18px;
  font-size: 1.8rem;
  padding: 0 1rem;
}
@media only screen and (max-width: 767px) {
  .p-login__inputArea__pass {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .p-login__inputArea__pass {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-login__inputArea__pass {
    width: 100%;
    padding: 1rem;
    text-align: center;
  }
}
.p-login__inputArea__btn {
  background-color: #777777;
  color: #fff;
  padding: 1rem;
  border-radius: 3px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  pointer-events: none;
}
@media only screen and (max-width: 767px) {
  .p-login__inputArea__btn {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.p-login__inputArea__btn i {
  position: relative;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-login__inputArea__btn i:after {
  content: "";
  display: inline-block;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 48%);
          clip-path: polygon(0 0, 0% 100%, 100% 48%);
  width: 0.35em;
  height: 0.5em;
  background-color: #00996a;
}
.p-login__inputArea__btn.active {
  background-color: #00996a;
  pointer-events: all;
}
.p-login__inputArea__btn:hover {
  background-color: #fff;
}

.p-limited {
  margin-top: 5rem;
  background-color: #ededed;
  padding: 5rem 0;
}
.p-limited__inner {
  width: 90%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.p-limited h3 {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.4;
}
.p-limited h3 span {
  font-size: 24px;
  font-size: 2.4rem;
  padding: 0 1rem;
}
@media only screen and (max-width: 767px) {
  .p-limited h3 span {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .p-limited h3 span {
    font-size: 1.4rem;
  }
}
.p-limited h3::before, .p-limited h3:after {
  content: "";
  display: inline-block;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  height: 1px;
  background-color: #fff;
}
.p-limited__wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-flow: row nowrap;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0 auto;
  margin-top: 3rem;
}
@media only screen and (max-width: 1080px) {
  .p-limited__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
.p-limited__step {
  background: #fff;
  color: #010101;
  text-align: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
  padding: 2.5rem 0;
}
.p-limited__step::before, .p-limited__step::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 55%;
  background: #ededed;
}
@media only screen and (max-width: 1080px) {
  .p-limited__step::before, .p-limited__step::after {
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 2.5rem solid transparent;
    border-left: 2.5rem solid transparent;
    border-top: 2.5rem solid #ededed;
    border-bottom: 0;
    background-color: unset;
  }
}
.p-limited__step:first-child::before, .p-limited__step:first-child::after {
  display: none;
}
.p-limited__step:before {
  top: 0;
  left: -3%;
  bottom: auto;
  right: auto;
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
  -webkit-transform: rotate(-15deg) translateY(-5px);
      -ms-transform: rotate(-15deg) translateY(-5px);
          transform: rotate(-15deg) translateY(-5px);
}
@media only screen and (max-width: 1080px) {
  .p-limited__step:before {
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    top: -1rem;
  }
}
.p-limited__step:after {
  bottom: 0;
  left: -3%;
  top: auto;
  right: auto;
  -webkit-transform-origin: right bottom;
      -ms-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transform: rotate(15deg) translateY(5px);
      -ms-transform: rotate(15deg) translateY(5px);
          transform: rotate(15deg) translateY(5px);
}
@media only screen and (max-width: 1080px) {
  .p-limited__step:after {
    display: none;
  }
}
.p-limited__step-icon {
  color: #00996a;
  line-height: 1.4;
  font-size: 2rem;
}
.p-limited__step-icon span {
  font-size: 1.5em;
}
.p-limited__step-title {
  color: #00996a;
}
.p-limited__step-text {
  font-size: 1.4rem;
  margin-top: 1rem;
}
.p-limited__btn {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  padding: 1rem 8rem;
  letter-spacing: 0;
  font-size: 18px;
  font-size: 1.8rem;
  margin: 3rem auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .p-limited__btn {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .p-limited__btn {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 767px) {
  .p-limited__btn {
    padding: 1rem;
    width: 100%;
  }
}
.p-limited__btn em {
  color: #00996a;
  font-size: 1.5em;
  margin-right: 1rem;
}
.p-limited__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: #00996a;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}
@media (hover: hover) and (pointer: fine) {
  .p-limited__btn:hover {
    color: #fff;
  }
  .p-limited__btn:hover em {
    color: #fff;
  }
  .p-limited__btn:hover::before {
    width: 100%;
  }
}
/*# sourceMappingURL=../../map/limited/style.css.map */