@charset "UTF-8";
:root {
  --gold: #987826;
}

/*
ログインページ
*/
.p-login {
  background-image: url(../../img/limited/limited_bg.jpg);
  background-size: cover;
  background-color: #e9e3d6;
  background-repeat: no-repeat;
}
.p-login main {
  font-family: "Noto Sans JP", sans-serif;
}
.p-login-area {
  margin-top: 3rem;
  padding: 5rem;
  border-radius: 5px;
}
.p-login-area__ttl {
  text-align: center;
  font-size: 5rem;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-weight: 100;
  letter-spacing: 0.3em;
  color: #987826;
}
.p-login-area__ttl small {
  letter-spacing: 0.1em;
  font-size: 0.5em;
}
@media (max-width: 767px) {
  .p-login-area__ttl {
    font-size: 3.6rem;
  }
}
.p-login-area__lead {
  margin-top: 3rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-login-area__lead {
    font-size: 1.4rem;
  }
}
.p-login-area__inputArea {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-login-area__inputArea {
    flex-direction: column;
  }
}
.p-login-area__inputArea__pass {
  width: 30%;
  max-width: 400px;
  padding: 0 1rem;
  border: 1px solid #ddd;
}
@media (max-width: 767px) {
  .p-login-area__inputArea__pass {
    width: 100%;
    max-width: unset;
    padding: 1rem;
    text-align: center;
  }
}
.p-login-area__inputArea__btn {
  position: relative;
  padding: 1rem 3rem;
  border-radius: 3px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: 0.3s;
  pointer-events: none;
  background-color: #ddd;
}
.p-login-area__inputArea__btn span {
  z-index: 1;
}
@media (max-width: 767px) {
  .p-login-area__inputArea__btn {
    justify-content: center;
  }
}
.p-login-area__inputArea__btn i {
  z-index: 1;
  position: relative;
  width: 1em;
  height: 1em;
  border-radius: 1em;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-login-area__inputArea__btn i:after {
  content: "";
  background-color: #920e14;
  display: inline-block;
  clip-path: polygon(0 0, 0% 100%, 100% 48%);
  width: 0.35em;
  height: 0.5em;
}
.p-login-area__inputArea__btn.active {
  pointer-events: all;
  border: 1px solid #eee;
}
.p-login-area__inputArea__btn.active::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #C6A131;
  background: linear-gradient(90deg, rgb(198, 161, 49) 0%, rgb(242, 224, 119) 50%, rgb(198, 161, 49) 100%);
  transition: 0.3s;
}
.p-login-area__inputArea__btn:hover {
  background-color: #fff;
  border: 1px solid #eee;
  color: #920e14;
}
.p-login-area__inputArea__btn:hover:after {
  opacity: 0;
}
.p-login-info {
  margin-top: 8rem;
}
.p-login-info__inner {
  width: 90%;
  max-width: 1080px;
  margin-inline: auto;
}
.p-login-info__heading {
  color: #003545;
  font-family: "Oswald", sans-serif;
  font-weight: 100;
  font-size: 3rem;
  letter-spacing: 0.2em;
  text-align: center;
  border-bottom: 1px solid #333;
}
.p-login-info__sche {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 15em auto;
}
.p-login-info__sche dt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 767px) {
  .p-login-info__sche {
    grid-template-columns: 1fr;
  }
}
.p-login-info__sche .new {
  color: #fff;
  background: #720000;
  font-size: 1.1rem;
  line-height: 1;
  padding: 0.2rem 1rem;
  background: linear-gradient(90deg, rgb(114, 0, 0) 0%, rgb(166, 32, 24) 50%, rgb(114, 0, 0) 100%);
}
.p-login-contents {
  margin-top: 8rem;
}
.p-login-contents__inner {
  width: 90%;
  max-width: 1080px;
  margin-inline: auto;
}
.p-login-contents__heading {
  color: #003545;
  font-family: "Oswald", sans-serif;
  font-weight: 100;
  font-size: 3rem;
  letter-spacing: 0.2em;
  text-align: center;
  border-bottom: 1px solid #333;
}
.p-login-contents__list {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 767px) {
  .p-login-contents__list {
    grid-template-columns: 1fr;
  }
}
.p-login-contents__list__item {
  position: relative;
  background: #002A68;
  background: linear-gradient(135deg, rgb(0, 42, 104) 0%, rgb(0, 53, 69) 50%, rgb(35, 24, 21) 100%);
}
.p-login-contents__list__item:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border: 1px solid #fff;
  pointer-events: none;
}
.p-login-contents__list__item a {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.p-login-contents__list__item a.is-inactive {
  pointer-events: none;
  cursor: default;
}
.p-login-contents i.new,
.p-login-contents i.openPrice {
  position: absolute;
  color: #fff;
  background: #720000;
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  padding: 0.2rem 1rem;
  background: linear-gradient(90deg, rgb(114, 0, 0) 0%, rgb(166, 32, 24) 50%, rgb(114, 0, 0) 100%);
  z-index: 1;
}
.p-login-contents .new {
  top: 0;
  left: 0;
}
.p-login-contents .openPrice {
  padding-left: 1.5em !important;
  font-size: 1.6rem !important;
  top: 0;
  right: 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%);
}
.p-login-contents .soon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -20%);
  font-family: "Oswald", sans-serif;
  font-weight: 100;
  width: 100%;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 10px #000, 0 0 10px #000;
  font-size: 3rem;
  line-height: 1;
  padding: 0.2rem 1rem;
  z-index: 1;
}
.p-login-contents__ttl {
  text-align: center;
  color: #fff;
  font-size: 2rem;
  padding: 1.5rem 0;
}
@media (max-width: 767px) {
  .p-login-contents__ttl {
    font-size: 1.6rem;
    flex-grow: 1;
  }
}
.p-login-contents__ttl small {
  display: none;
}
.p-login-contents__img, .p-login-contents__img--dron {
  position: relative;
  flex-grow: 1;
}
.p-login-contents__img--dron {
  filter: grayscale(0.8);
}
.p-login-contents__img img, .p-login-contents__img--dron img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-login-contents__desc {
  color: #d6bc6e;
  text-align: center;
  padding: 1.5rem 1rem 1.7rem;
}

.p-flow {
  width: 90%;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.p-flow__txt {
  margin-top: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .p-flow__txt {
    font-size: 1.4rem;
  }
}
.p-flow__btn {
  display: block;
  background-color: #003545;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 1.5rem 5rem;
  font-size: 2rem;
  text-align: center;
  border: 2px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: 0.3s;
}
.p-flow__btn:hover {
  background-color: #fff;
  color: #920e14;
}
@media (max-width: 767px) {
  .p-flow__btn {
    font-size: 1.6rem;
    padding: 1.5rem;
  }
}

/*
限定ページ
*/
.p-limited {
  background-image: url(../../img/limited/limited_bg.jpg);
  background-size: cover;
  background-color: #e9e3d6;
  background-repeat: no-repeat;
}
.p-limited main {
  font-family: "Noto Sans JP", sans-serif;
}
.p-limited-intro {
  margin-top: 3rem;
  padding: 5rem;
  border-radius: 5px;
}
.p-limited-intro__ttl {
  text-align: center;
  font-size: 5rem;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-weight: 100;
  letter-spacing: 0.3em;
  color: #987826;
}
.p-limited-intro__ttl small {
  letter-spacing: 0.1em;
  font-size: 0.5em;
}
@media (max-width: 767px) {
  .p-limited-intro__ttl {
    font-size: 3.6rem;
  }
}
.p-limited-sche__inner {
  width: 90%;
  max-width: 1080px;
  margin-inline: auto;
}
.p-limited-sche__heading {
  color: #003545;
  font-family: "Oswald", sans-serif;
  font-weight: 100;
  font-size: 3rem;
  letter-spacing: 0.2em;
  text-align: center;
}
.p-limited-sche__heading small {
  font-size: 0.6em;
  letter-spacing: 0.1em;
}
.p-limited-sche__detail {
  margin-top: 1rem;
  padding: 2rem;
  background: #ebebeb;
  background: linear-gradient(135deg, rgb(235, 235, 235) 0%, rgb(255, 255, 255) 82%, rgb(235, 235, 235) 100%);
  text-align: center;
  font-size: 2rem;
}
.p-limited-lowerTtl__inner {
  text-align: center;
  font-size: 2.4rem;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: #987826;
}
.p-limited-lowerTtl__inner em {
  display: block;
  margin-top: 1rem;
  letter-spacing: 0em;
  font-size: 1.3em;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-limited-lowerTtl__inner {
    font-size: 2rem;
  }
}
.p-limited-lowerTtl__campTxt {
  background-color: #987826;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #fff;
  font-weight: 500;
  line-height: 1;
  padding: 0.5rem 2rem 0.8rem;
  border-radius: 4rem;
  margin-top: 1.5rem;
  font-size: 2.8rem;
  letter-spacing: 0;
}
.p-limited-plan {
  font-family: YakuHanMPs, "Noto Serif JP", serif;
}
.p-limited-plan__nav {
  margin-top: 5rem;
  width: 90%;
  max-width: 1080px;
  margin-inline: auto;
}
.p-limited-plan__nav ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-limited-plan__nav ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}
.p-limited-plan__nav ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
  color: #fff;
  font-size: min(1vw, 1.7rem);
  line-height: 1;
  padding: 1.5rem;
  text-align: center;
  width: 100%;
  background: #003545;
  position: relative;
  z-index: 1;
  font-size: 1.6rem;
}
.p-limited-plan__nav ul li a em {
  font-size: 2em;
}
.p-limited-plan__nav ul li a:after {
  position: absolute;
  top: 3px;
  left: 3px;
  content: "";
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
@media (max-width: 767px) {
  .p-limited-plan__nav ul li a {
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-limited-plan__nav ul li a:hover {
    background-color: #fff;
    color: #003545;
  }
  .p-limited-plan__nav ul li a:hover:after {
    border: 1px solid rgba(0, 53, 69, 0.5);
  }
}
.p-limited-plan__list {
  width: 90%;
  max-width: 1080px;
  margin-inline: auto;
  margin-top: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 1080px) {
  .p-limited-plan__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .p-limited-plan__list {
    grid-template-columns: 1fr;
  }
}
.p-limited-plan__list__item a {
  position: relative;
  display: block;
  border-radius: 5px;
  height: 100%;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 2rem;
  font-size: 1.6rem;
  line-height: 1.4;
  letter-spacing: 0.05em;
  transition: 0.3s;
  overflow: hidden;
}
.p-limited-plan__list__item a.A601 {
  border: 3px solid #c5b48a;
}
.p-limited-plan__list__item a.A601::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../img/limited/limited_bg.jpg);
  background-size: cover;
  z-index: 1;
  mix-blend-mode: multiply;
}
.p-limited-plan__list__item a.A601:after {
  background-image: url(../../img/limited/limited_bg.jpg);
}
.p-limited-plan__list__item a:after {
  opacity: 0;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../img/limited/plan/btn-bg.jpg);
  background-size: cover;
  mix-blend-mode: multiply;
  transition: 1s;
  transform: scale(1.5);
}
.p-limited-plan__list__item a:hover:after {
  opacity: 1;
  transform: scale(1);
}
.p-limited-plan__list__item a .type {
  font-size: 1.2em;
}
.p-limited-plan__list__item a .type em {
  font-size: 2em;
}
.p-limited-plan__list__item a .type small {
  font-size: 0.7em;
}
.p-limited-plan__list__item a .type ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5rem 1.5rem;
  padding: 0.5rem 0 1rem;
}
.p-limited-plan__list__item a .type ul li {
  font-size: 1.4rem;
  border-left: 3px solid #231815;
  padding-left: 0.5rem;
}
.p-limited-plan__list__item a .type .topFloor {
  background: #5EC0D1;
  background: linear-gradient(90deg, rgb(94, 192, 209) 0%, rgb(94, 192, 209) 50%, rgba(94, 192, 209, 0) 100%);
  font-size: 1.5rem;
  color: #fff;
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
.p-limited-plan__list__item a .type:after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #1D4C6C;
  background: linear-gradient(90deg, rgb(89, 168, 121) 0%, rgb(29, 76, 108) 100%);
}
.p-limited-plan__list__item a .type i {
  font-size: 0.7em;
  letter-spacing: 0;
  text-align: right;
}
@media (max-width: 767px) {
  .p-limited-plan__list__item a .rooms {
    font-size: 1.5rem;
  }
}
.p-limited-plan__list__item a .rooms em {
  font-size: 2em;
}
.p-limited-plan__list__item a .area em {
  font-size: 2em;
}
.p-limited-plan__list__item a .price {
  color: #BE8A43;
}
.p-limited-plan__list__item a .price span {
  display: inline-block;
  line-height: 1;
  font-size: 0.7em;
}
.p-limited-plan__list__item a .price em {
  font-size: 2.5em;
}
.p-limited-plan__list__item a .feature {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.p-limited-plan__list__item a .feature li {
  padding-left: 0.5em;
  font-size: 0.8em;
  letter-spacing: -0.05em;
  border-left: 2px solid #003545;
}
.p-limited-plan__list__item a .more {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.2em;
  font-weight: 100;
  font-size: 0.9em;
  width: -moz-fit-content;
  width: fit-content;
  background: #1D4C6C;
  border-radius: 3em;
  background: linear-gradient(90deg, rgb(89, 168, 121) 0%, rgb(29, 76, 108) 100%);
  color: #fff;
  padding: 0.4em 1em;
  line-height: 1;
  margin-left: auto;
  margin-top: 2rem;
}
.p-limited-plan__list__item a .more i {
  display: inline-block;
  background-image: url(../../img/limited/plan/arrow.svg);
  background-repeat: no-repeat;
  background-position: bottom;
  height: 1em;
  width: 2em;
  margin-bottom: 2px;
}
.p-limited-plan__cap {
  font-size: 1.1rem;
  width: 90%;
  max-width: 1080px;
  margin-inline: auto;
  margin-top: 3rem;
}
.p-limited-plan__detail {
  font-family: YakuHanMPs, "Noto Serif JP", serif;
  margin-top: 3rem;
  background-color: #fff;
  width: 90%;
  max-width: 1080px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 767px) {
  .p-limited-plan__detail {
    grid-template-columns: 1fr;
  }
}
.p-limited-plan__detail__spec {
  padding: 4rem;
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .p-limited-plan__detail__spec {
    padding: 2rem;
    font-size: 1.4rem;
  }
}
.p-limited-plan__detail__spec .typeBox {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.p-limited-plan__detail__spec .typeBox .type {
  font-size: 1.2em;
}
.p-limited-plan__detail__spec .typeBox .type em {
  font-size: 2.5em;
  line-height: 1;
}
.p-limited-plan__detail__spec .typeBox .price {
  font-size: 1.25em;
  line-height: 1.4;
}
.p-limited-plan__detail__spec .typeBox .price span {
  display: inline-block;
  line-height: 1;
  font-size: 0.5em;
  margin-right: 0.5rem;
}
.p-limited-plan__detail__spec .typeBox .price em {
  font-size: 2em;
  color: var(--gold);
}
.p-limited-plan__detail__spec .typeBox .price small {
  font-size: 0.7em;
}
.p-limited-plan__detail__spec .point {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.p-limited-plan__detail__spec .line {
  margin: 2rem 0;
  width: 100%;
  height: 5px;
  background: #1D4C6C;
  background: linear-gradient(90deg, rgb(89, 168, 121) 0%, rgb(29, 76, 108) 100%);
}
.p-limited-plan__detail__spec .rooms {
  font-size: 1.5em;
}
.p-limited-plan__detail__spec .rooms em {
  font-size: 2em;
  line-height: 1;
}
.p-limited-plan__detail__spec .area {
  font-size: 1em;
}
.p-limited-plan__detail__spec .area em {
  font-size: 3em;
  line-height: 1;
}
.p-limited-plan__detail__spec .other {
  margin-top: 0.5rem;
}
.p-limited-plan__detail__spec .feature {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-limited-plan__detail__spec .feature li {
  font-size: 1.4rem;
  display: flex;
  gap: 0.5rem;
}
.p-limited-plan__detail__spec .feature li span {
  display: inline-block;
  flex-shrink: 1;
}
.p-limited-plan__detail__typeD-btns {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 767px) {
  .p-limited-plan__detail__typeD-btns {
    margin-top: 1rem;
  }
}
.p-limited-plan__detail__typeD-btns button {
  width: 100%;
  border: 1px solid #eee;
  border-radius: 3px;
  padding: 1rem;
}
.p-limited-plan__detail__typeD-btns button.active {
  color: #fff;
  background: #1D4C6C;
  background: linear-gradient(90deg, rgb(89, 168, 121) 0%, rgb(29, 76, 108) 100%);
}
.p-limited-plan__detail__typeD-plans {
  margin-top: 2rem;
}
.p-limited-plan__detail__typeD-plans li {
  display: none;
}
.p-limited-plan__detail__typeD-plans li.active {
  display: block;
}
.p-limited-plan__detail__img {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem;
}
.p-limited-plan__detail__img .guide {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  .p-limited-plan__detail__img .guide {
    padding: 0 5%;
  }
}
.p-limited-plan__detail__img .guide span {
  display: inline-flex;
  align-items: center;
}
.p-limited-plan__detail__img .guide span img {
  height: 1.2rem;
  width: auto;
}
.p-limited-plan__detail__img .guide span img.circle {
  height: 2em;
  margin-right: 0.5rem;
}
.p-limited-plan .btn-back {
  display: block;
  width: 90%;
  max-width: 350px;
  margin-inline: auto;
  margin-top: 3rem;
  text-align: center;
  padding: 1.5rem;
  border-radius: 3rem;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.p-limited-plan .btn-back:hover {
  background-color: #000;
  color: #fff;
}
.p-limited-gallery .container {
  margin: 0 auto;
  margin-top: 5rem;
  max-width: 1000px;
  width: 100%;
}
.p-limited-gallery .container .heading {
  font-size: 3rem;
  border-bottom: 3px solid #007a87;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1rem;
  margin: 0 auto;
}
.p-limited-gallery .container .txt {
  margin-top: 1rem;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1.4;
  font-weight: 500;
}
@media (max-width: 767px) {
  .p-limited-gallery .container .txt {
    font-size: 1.6rem;
  }
}
.p-limited-gallery .container .txt em {
  color: #932522;
  display: block;
}
.p-limited-gallery .container .txt sup {
  font-size: 1rem;
  vertical-align: text-top;
}
.p-limited-gallery .container .slider {
  position: relative;
}
.p-limited-gallery .container .slider .slick-img {
  opacity: 1;
  transition: opacity 0.3s linear;
}
.p-limited-gallery .container .slider .slick-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.p-limited-gallery .container .slider .slick-img picture img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
  margin: 0 auto;
}
.p-limited-gallery .container .slider .slider--cap {
  position: absolute;
  bottom: 1rem;
  color: #fff;
  text-shadow: 0 0 5px #000;
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .p-limited-gallery .container .slider .slider--cap {
    font-size: 1.6rem;
  }
}
.p-limited-gallery .container .slider .slider--cap.cap01 {
  right: 1rem;
}
.p-limited-gallery .container .slider .slider--cap.cap02 {
  right: calc(50% + 3rem);
}
.p-limited-gallery .container .slider .slider--cap.cap03 {
  right: 27%;
}
.p-limited-gallery .container .slick-prev {
  cursor: pointer;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-top: 1px solid rgb(0, 0, 0);
  border-right: 1px solid rgb(0, 0, 0);
  position: absolute;
  top: 50%;
  left: -2rem;
  transform: translate(-50%, -50%) rotate(225deg);
  z-index: 1;
}
@media (max-width: 767px) {
  .p-limited-gallery .container .slick-prev {
    left: 2rem;
    border-top: 1px solid rgb(255, 255, 255);
    border-right: 1px solid rgb(255, 255, 255);
    transition: 0.3s;
  }
}
.p-limited-gallery .container .slick-prev:hover {
  opacity: 0.5;
}
.p-limited-gallery .container .slick-next {
  cursor: pointer;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-top: 1px solid rgb(0, 0, 0);
  border-right: 1px solid rgb(0, 0, 0);
  position: absolute;
  top: 50%;
  right: -4rem;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
  transition: 0.3s;
}
@media (max-width: 767px) {
  .p-limited-gallery .container .slick-next {
    right: 0rem;
    border-top: 1px solid rgb(255, 255, 255);
    border-right: 1px solid rgb(255, 255, 255);
  }
}
.p-limited-gallery .container .slick-next:hover {
  opacity: 0.5;
}
.p-limited-gallery .container .slick-dots {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(13, 1fr);
  gap: 0.5rem;
}
.p-limited-gallery .container .slick-dots li {
  background-color: #003545;
  cursor: pointer;
}
.p-limited-gallery .container .slick-dots li img {
  opacity: 0.4;
}
.p-limited-gallery .container .slick-dots li.slick-active img {
  opacity: 1;
}

.p-A601view {
  position: relative;
  width: 90%;
  max-width: 1080px;
  margin-inline: auto;
  background-color: #fff;
  padding: 0 5rem;
}
@media (max-width: 767px) {
  .p-A601view {
    padding: 0;
    width: 100%;
    margin: -2rem 0 2rem;
  }
}
.p-A601view__txt {
  position: absolute;
  top: 3rem;
  width: 90%;
  color: #fff;
  text-align: center;
  font-size: 2.8rem;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-A601view__txt {
    font-size: 1.3rem;
    top: 1rem;
    width: 100%;
  }
}
.p-A601view__cap {
  position: absolute;
  bottom: 1rem;
  right: 5.5rem;
  font-size: 1.2rem;
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 5px #000, 0 0 5px #000;
  z-index: 1;
}
@media (max-width: 767px) {
  .p-A601view__cap {
    font-size: 0.9rem;
    padding: 0 1rem;
    text-align: right;
    right: 0;
  }
}

.p-loan {
  font-family: YakuHanMPs, "Noto Serif JP", serif;
}
.p-loan__inner {
  width: 90%;
  max-width: 1080px;
  margin-inline: auto;
  background-color: #fff;
  padding: 5rem;
}
@media (max-width: 767px) {
  .p-loan__inner {
    padding: 2rem;
  }
}
.p-loan__heading {
  background-color: #eee;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1;
  padding: 1.5rem;
}
.p-loan__heading__ttl {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #ddd;
}
.p-loan__heading__type {
  margin-top: 1rem;
  text-align: center;
  font-size: 2rem;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1rem;
}
.p-loan__heading__type em {
  font-size: 2em;
  color: var(--gold);
}
@media (max-width: 767px) {
  .p-loan__heading__type {
    font-size: 1.6rem;
    flex-direction: column;
    align-items: center;
  }
}
.p-loan__repayment {
  display: flex;
  justify-content: center;
  align-items: baseline;
  padding-bottom: 1rem;
  border-bottom: 1px solid #003545;
}
@media (max-width: 767px) {
  .p-loan__repayment {
    flex-direction: column;
    align-items: center;
    border: none;
  }
}
.p-loan__repayment__month {
  font-size: min(2.5vw, 3rem);
  line-height: 1;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .p-loan__repayment__month {
    font-size: 2rem;
    padding: 0;
  }
}
.p-loan__repayment__month em {
  font-size: 2.5em;
  color: var(--gold);
}
.p-loan__repayment__month span {
  display: inline-block;
  font-size: 2rem;
  line-height: 1;
  padding: 0.5rem 1rem;
  border-bottom: 1px solid #003545;
}
.p-loan__repayment__bonus {
  padding-right: 2rem;
  margin-right: 2rem;
  border-right: 1px solid #003545;
  font-size: 1.8rem;
  line-height: 1;
  font-size: min(2vw, 1.8rem);
  text-align: center;
}
@media (max-width: 767px) {
  .p-loan__repayment__bonus {
    font-size: 1.3rem;
    padding: 0;
    margin: 0;
    margin-top: 1rem;
    border-left: none;
    border-right: none;
    width: 100%;
  }
}
.p-loan__repayment__bonus em {
  font-size: 2.5em;
  color: #34A26B;
}
.p-loan__detail {
  font-size: 1.4rem;
  margin-top: 1rem;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .p-loan__detail {
    font-size: 1.1rem;
  }
}
.p-loan__cap {
  font-size: 1.1rem;
  margin-top: 2rem;
}
/*# sourceMappingURL=../../map/limited/style.css.map */