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

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

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

/* 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 {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.25vw;
  }
}
@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #333;
}

section {
  padding: 4.375rem 0;
}
@media screen and (min-width: 768px) {
  section {
    padding: 5.625rem 0;
  }
}

a {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.l-inner {
  max-width: 640px;
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding: 0 25px;
    max-width: 1280px;
  }
}

.p-breadcrumb {
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb {
    margin-bottom: 2.5rem;
  }
}

.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  color: #888;
}
@media screen and (min-width: 768px) {
  .p-breadcrumb__list {
    font-size: 0.8125rem;
  }
}
.p-breadcrumb__list li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.p-breadcrumb__list li::after {
  content: ">";
  color: #ccc;
}
.p-breadcrumb__list li:last-child::after {
  content: none;
}
.p-breadcrumb__list a {
  color: #389CCD;
  text-decoration: none;
}
.p-breadcrumb__list a:hover {
  text-decoration: underline;
}
.p-breadcrumb__list .current-item {
  color: #333;
}

.c-btn {
  display: inline-block;
  padding: 0.625rem 1.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: #389CCD;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid #389CCD;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
  }
}
.c-btn:hover {
  background-color: #389CCD;
  color: #fff;
  box-shadow: 0 0.25rem 0.75rem rgba(56, 156, 205, 0.3);
  opacity: 1;
}

.c-section-title {
  position: relative;
  font-weight: 500;
  text-align: center;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title {
    font-size: 1.5rem;
  }
}

.p-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-404 {
    padding-top: 4.375rem;
  }
}

.p-404__title {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-404__title {
    font-size: 1.5rem;
  }
}

.p-404__btnWrap {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-404__btnWrap {
    margin-top: 2.5rem;
  }
}

.p-404__btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #389CCD;
  text-decoration: none;
  border: 1px solid #389CCD;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-404__btn {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
  }
}
.p-404__btn:hover {
  background-color: #389CCD;
  color: #fff;
  box-shadow: 0 0.25rem 0.75rem rgba(56, 156, 205, 0.3);
  opacity: 1;
}

.p-company {
  background-color: #FFFEED;
}

.c-section-title--company::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.1875rem;
  transform: translateX(-50%);
  background: url("../images/top/underline.png") no-repeat center center/cover;
  width: 4.5625rem;
  height: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title--company::after {
    width: 6rem;
    height: 0.375rem;
  }
}

.p-company__body {
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .p-company__body {
    margin-top: 6.875rem;
    display: flex;
    align-items: flex-start;
  }
}

@media screen and (min-width: 768px) {
  .p-company__data {
    width: 37.5rem;
  }
}

.p-company-table {
  border-top: 1px solid #BBBCC0;
}

.p-company-table__row {
  border-bottom: 1px solid #BBBCC0;
  display: flex;
}

.p-company-table__term {
  font-weight: 500;
  width: 6.5625rem;
  padding: 1.25rem 0.3125rem;
  border-right: 1px dotted #BBBCC0;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-company-table__term {
    font-size: 1.25rem;
    width: 11.25rem;
    flex: 0 0 auto;
    padding: 1.75rem 1.125rem;
  }
}

.p-company-table__desc {
  display: flex;
  align-items: center;
  flex: 1;
  margin-left: 0.5rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-company-table__desc {
    font-size: 1.125rem;
    margin-left: 1.375rem;
    margin-top: 0;
  }
}

.p-company__right {
  flex: 1;
  margin-top: 3.625rem;
}
@media screen and (min-width: 768px) {
  .p-company__right {
    margin-left: 2.8125rem;
    margin-top: 0;
  }
}

.p-company__map {
  max-width: 27.5rem;
  width: 100%;
  margin: 0 auto;
}
.p-company__map iframe {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 440/380;
}

.p-company__mark {
  max-width: 23.75rem;
  width: 100%;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-company__mark {
    margin-top: 2.8125rem;
  }
}
.p-company__mark img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 380/278;
}

.p-concept {
  background: url("../images/top/concept-bg.png") no-repeat center center/cover;
  background-color: #fff;
}

.c-section-title--concept::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.1875rem;
  transform: translateX(-50%);
  background: url("../images/top/underline.png") no-repeat center center/cover;
  width: 4.6875rem;
  height: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title--concept::after {
    width: 6.25rem;
    height: 0.375rem;
  }
}

.p-concept__body {
  margin-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .p-concept__body {
    margin-top: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.p-concept__content {
  margin: 2.875rem auto 0;
  max-width: 19.625rem;
}
@media screen and (min-width: 768px) {
  .p-concept__content {
    margin-top: 0;
    margin-left: 5.75rem;
    max-width: 27.9375rem;
  }
}

.p-concept__media {
  margin: 0 auto;
  width: 100%;
  max-width: 11.25rem;
}
@media screen and (min-width: 768px) {
  .p-concept__media {
    max-width: 24.8125rem;
  }
}

.p-concept__label {
  font-size: 0.875rem;
  line-height: 1.5;
  padding-left: 1.375rem;
}

.p-concept__frame {
  border: 2px solid #389CCD;
}

.p-concept__img {
  height: auto;
  box-shadow: 0.125rem 0.1875rem 0.25rem rgba(0, 0, 0, 0.25);
  transform: translate(0.5rem, 0.5rem);
}
@media screen and (min-width: 768px) {
  .p-concept__img {
    transform: translate(1rem, 1rem);
  }
}

.p-concept__text {
  font-size: 0.8125rem;
  line-height: 2.4615384615;
}
@media screen and (min-width: 768px) {
  .p-concept__text {
    line-height: 2;
    font-size: 1rem;
  }
}

.p-concept__text + .p-concept__text {
  margin-top: 3rem;
}

.p-contact {
  position: relative;
  overflow: clip;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-contact {
    padding: 4.6875rem 0 6.25rem;
  }
}

.p-contact__bg img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.p-contact__head {
  text-align: center;
  color: #fff;
}

.p-contact__title {
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-contact__title {
    font-size: 1.5rem;
  }
}

.p-contact__lead {
  margin-top: 0.125rem;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__lead {
    margin-top: 1.5625rem;
    font-size: 0.875rem;
  }
}

.p-contact__form {
  margin: 1.875rem auto;
  padding: 1.875rem 1.5625rem;
  background: rgba(251, 252, 255, 0.6);
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    max-width: 45.3125rem;
    margin-top: 3.375rem;
    padding: 3.125rem 2.5rem;
  }
}

.p-contact__form-item + .p-contact__form-item {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form-item + .p-contact__form-item {
    margin-top: 1.25rem;
  }
}

.p-contact__label {
  display: block;
  margin-bottom: 0.3125rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-contact__label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
  }
}

.p-contact__required {
  color: #DE2828;
  margin-left: 0.125rem;
}

.p-contact__input {
  width: 100%;
  padding: 0.625rem 0.9375rem;
  font-size: 0.875rem;
  background: #fff;
  border: none;
  border-radius: 0.5rem;
  outline: none;
  font-family: inherit;
}
@media screen and (min-width: 768px) {
  .p-contact__input {
    padding: 0.75rem 0.9375rem;
    font-size: 1rem;
  }
}
.p-contact__input:focus {
  box-shadow: 0 0 0 2px rgba(56, 156, 205, 0.3);
}

.p-contact__textarea {
  width: 100%;
  min-height: 7.5rem;
  padding: 0.625rem 0.9375rem;
  font-size: 0.875rem;
  background: #fff;
  border: none;
  border-radius: 0.5rem;
  outline: none;
  font-family: inherit;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .p-contact__textarea {
    min-height: 9.375rem;
    padding: 0.75rem 0.9375rem;
    font-size: 1rem;
  }
}
.p-contact__textarea:focus {
  box-shadow: 0 0 0 2px rgba(56, 156, 205, 0.3);
}

.p-contact__form-submit {
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-contact__form-submit {
    margin-top: 4.875rem;
  }
}

.p-contact__btn {
  display: inline-block;
  min-width: 12.5rem;
  padding: 0.75rem 2.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: inherit;
  color: #333;
  background: #fff;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-contact__btn {
    min-width: 18.75rem;
    padding: 0.875rem 3.125rem;
    font-size: 1rem;
  }
}
.p-contact__btn:hover {
  background-color: #389CCD;
  color: #fff;
  box-shadow: 0 0.25rem 0.75rem rgba(56, 156, 205, 0.3);
  opacity: 1;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-not-valid-tip {
  margin-top: 0.3125rem;
  font-size: 0.75rem;
  color: #DE2828;
}

.wpcf7-response-output {
  margin-top: 1.25rem;
  padding: 0.625rem 0.9375rem;
  font-size: 0.8125rem;
  border-radius: 0.5rem;
  text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
  color: #fff;
}

.p-faq {
  background-color: #F9F9F9;
}

.c-section-title--faq::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.1875rem;
  transform: translateX(-50%);
  background: url("../images/top/underline.png") no-repeat center center/cover;
  width: 6.875rem;
  height: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title--faq::after {
    width: 9rem;
    height: 0.375rem;
  }
}

.p-faq__list {
  margin: 3.5625rem auto 0;
  max-width: 20.0625rem;
}
@media screen and (min-width: 768px) {
  .p-faq__list {
    max-width: 36.5rem;
    margin-top: 4.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-faq-item + .p-faq-item {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-faq-item + .p-faq-item {
    margin-top: 2.3125rem;
  }
}

.p-faq-item__q {
  display: flex;
  font-size: 0.875rem;
  font-weight: 500;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-faq-item__q {
    gap: 0.8125rem;
    font-size: 1.25rem;
  }
}
.p-faq-item__q img {
  width: 0.6875rem;
  margin-top: 0.375rem;
  height: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-faq-item__q img {
    width: 1.0625rem;
    height: 1.0625rem;
    margin-top: 0.5rem;
  }
}

.p-faq-item__a {
  display: flex;
  font-size: 0.75rem;
  margin-top: 0.3125rem;
  gap: 0.3125rem;
  padding-left: 1.5em;
}
@media screen and (min-width: 768px) {
  .p-faq-item__a {
    padding-left: 1.9em;
    gap: 0.8125rem;
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}
.p-faq-item__a img {
  width: 0.6875rem;
  margin-top: 0.25rem;
  height: 0.6875rem;
}
@media screen and (min-width: 768px) {
  .p-faq-item__a img {
    width: 1.0625rem;
    height: 1.0625rem;
    margin-top: 0.3125rem;
  }
}

.p-flow {
  background-color: #fff;
}

.c-section-title--flow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.1875rem;
  transform: translateX(-50%);
  background: url("../images/top/underline.png") no-repeat center center/cover;
  width: 6.875rem;
  height: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title--flow::after {
    width: 9rem;
    height: 0.375rem;
  }
}

.p-flow__lead {
  margin-top: 1.3125rem;
  text-align: center;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-flow__lead {
    font-size: 1rem;
  }
}

.p-flow__list {
  margin: 3.75rem auto 0;
  max-width: 21rem;
}
@media screen and (min-width: 768px) {
  .p-flow__list {
    max-width: 50.3125rem;
    margin-top: 4.375rem;
  }
}

.p-flow-step {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
  border: 0.09375rem solid #389CCD;
}
@media screen and (min-width: 768px) {
  .p-flow-step {
    border: 0.1875rem solid #389CCD;
    gap: 1.875rem;
  }
}

.p-flow-step__step {
  color: #fff;
  font-family: "Noto Sans Georgian", sans-serif;
  background: url("../images/top/step-num-bg.png") no-repeat right center/cover;
  padding: 1.1875rem 3.1875rem 1.1875rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-flow-step__step {
    padding: 2.0625rem 6.25rem 2.0625rem 3rem;
  }
}

.p-flow-step + .p-flow-step {
  margin-top: 2.5rem;
}

.p-flow-step__step-label {
  font-size: 0.75rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-flow-step__step-label {
    font-size: 1.25rem;
  }
}

.p-flow-step__step-number {
  font-size: 1.5rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-flow-step__step-number {
    font-size: 2.75rem;
  }
}

.p-flow-step__body {
  padding-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-flow-step__body {
    padding-right: 1.5625rem;
  }
}

.p-flow-step__title {
  font-size: 0.8125rem;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-flow-step__title {
    font-size: 1.25rem;
  }
}

.p-flow-step__text {
  font-size: 0.75rem;
  line-height: 1.0833333333;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-flow-step__text {
    margin-top: 0.625rem;
    line-height: 2;
    font-size: 1rem;
  }
}

.p-flow__btnWrap {
  text-align: center;
  margin-top: 5.1875rem;
}
@media screen and (min-width: 768px) {
  .p-flow__btnWrap {
    margin-top: 5.625rem;
  }
}

.p-flow__btn {
  display: inline-block;
  width: 100%;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #389CCD;
  color: #333;
  max-width: 10.5rem;
  padding: 0.625rem 0;
  font-size: 0.875rem;
  border-radius: 0.3125rem;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-flow__btn {
    border-radius: 0.625rem;
    font-size: 1.25rem;
    padding: 1.25rem 1.25rem;
    max-width: 18.75rem;
  }
}

.p-flow__btn:hover {
  background-color: #389CCD;
  color: #fff;
  box-shadow: 0 0.25rem 0.75rem rgba(56, 156, 205, 0.3);
  opacity: 1;
}

.p-footer {
  padding: 1.875rem 0 1rem;
  background-color: #035279;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-footer {
    padding: 3.125rem 0 1.125rem;
  }
}
.p-footer .l-inner {
  max-width: 67.5rem;
}

@media screen and (min-width: 768px) {
  .p-footer__body {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.p-footer__logo {
  display: block;
  text-decoration: none;
  color: #fff;
}

.p-footer__logo-en {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Noto Sans Georgian", sans-serif;
}

.p-footer__logo-ja {
  display: block;
  margin-top: 0.125rem;
  font-size: 1rem;
  font-weight: 500;
}

.p-footer__service {
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-footer__service {
    margin-top: 0.9375rem;
    margin-left: 2em;
  }
}

.p-footer__service-item {
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__service-item {
    font-size: 0.875rem;
  }
}
.p-footer__service-item a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.p-footer__service-item a:hover {
  opacity: 0.8;
}

.p-footer__service-item + .p-footer__service-item {
  margin-top: 0.25rem;
}

.p-footer__nav {
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    margin-top: 0;
    width: 10rem;
  }
}

.p-footer__contact {
  margin-top: 1.125rem;
}
@media screen and (min-width: 768px) {
  .p-footer__contact {
    margin-top: 0;
    width: 15.3125rem;
  }
}

.p-footer__heading {
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .p-footer__heading {
    font-size: 1.125rem;
  }
}

.p-footer-nav {
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-footer-nav {
    margin-top: 0.625rem;
  }
}

.p-footer-nav__item + .p-footer-nav__item {
  margin-top: 0.1875rem;
}
@media screen and (min-width: 768px) {
  .p-footer-nav__item + .p-footer-nav__item {
    margin-top: 0.625rem;
  }
}

.p-footer-nav__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.2s, opacity 0.2s;
}
@media screen and (min-width: 768px) {
  .p-footer-nav__link {
    font-size: 1rem;
  }
}

.p-footer-nav__link:hover {
  color: #ffffff;
  opacity: 0.95;
}

.p-footer-contact {
  margin-top: 0.625rem;
}

.p-footer-contact__item {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-footer-contact__item {
    font-size: 1rem;
  }
}

.p-footer-contact__item + .p-footer-contact__item {
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-footer-contact__item + .p-footer-contact__item {
    margin-top: 0.625rem;
  }
}

.p-footer__bottom {
  margin-top: 1.6875rem;
  text-align: center;
}

.p-footer__copy {
  font-size: 0.75rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer__copy {
    font-size: 0.875rem;
  }
}

.p-header {
  height: 2.5rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-header {
    height: 4.375rem;
  }
}

.p-header__inner {
  padding-left: 0.9375rem;
  padding-right: 0;
  height: inherit;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-header__inner {
    padding: 0 1.25rem;
  }
}

.p-header__logo {
  max-width: 6.25rem;
  width: 100%;
}
.p-header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 132/70;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    max-width: 8.25rem;
  }
}

.p-header__logo a {
  height: inherit;
  display: flex;
  align-items: center;
}

.p-header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__nav-list {
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-item.p-header__nav-item--contact {
  margin-left: 3.75rem;
  display: flex;
  align-items: center;
}

.p-header__nav-item a {
  padding: 0 1.25rem;
  height: inherit;
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1;
  color: #333;
  text-transform: uppercase;
}

.p-header__nav-item.p-header__nav-item--contact a {
  padding: 0.625rem 1.125rem;
  position: relative;
  height: initial;
  color: #fff;
  background-color: #389CCD;
  border-radius: 0.3125rem;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
.p-header__nav-item.p-header__nav-item--contact a:hover {
  background-color: #035279;
  box-shadow: 0 0.25rem 0.75rem rgba(3, 82, 121, 0.35);
  opacity: 1;
}

.p-header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: inherit;
  background-color: #389CCD;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .p-header__hamburger {
    display: none;
  }
}

.p-header__hamburger.is-open {
  background-color: transparent;
}

.p-header__hamburger span {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 0.9375rem;
  height: 1px;
  background-color: #fff;
  transition: 0.5s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -0.25rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 0.25rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -0.125rem;
  transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  padding: 14.25rem 0;
  position: absolute;
  z-index: 900;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background-color: rgba(56, 156, 205, 0.95);
  overflow-y: scroll;
  scrollbar-width: none;
  transition: 0.6s;
}

.p-header__drawer.is-open {
  right: 0;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item a {
  padding: 0.9375rem 0;
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
}

.p-mv {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  color: #fff;
  overflow: hidden;
  min-height: 41.6875rem;
  margin-top: 2.5rem;
  background-image: url("../images/top/sp/mv.jpg");
}
@media screen and (min-width: 768px) {
  .p-mv {
    background-image: url("../images/top/mv.jpg");
    margin-top: 4.375rem;
    min-height: 43.75rem;
  }
}

.p-mv__inner {
  position: relative;
}

.p-mv__logo {
  position: absolute;
  right: 1.25rem;
  bottom: -15.625rem;
}
@media screen and (min-width: 768px) {
  .p-mv__logo {
    bottom: -14.375rem;
  }
}

.p-mv__logo-img {
  max-width: 9.75rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-mv__logo-img {
    max-width: 14rem;
  }
}
.p-mv__logo-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 224/69;
}

.p-mv__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.0416666667;
  margin-top: 4.1875rem;
  filter: drop-shadow(0 0 1.875rem rgba(3, 35, 59, 0.87));
}
@media screen and (min-width: 768px) {
  .p-mv__title {
    margin-top: 5rem;
    line-height: 1.5625;
    font-size: 3rem;
    filter: none;
  }
}

.p-mv__lead {
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-mv__lead {
    font-size: 0.875rem;
  }
}

.p-mv__btnWrap {
  text-align: center;
  margin-top: 7.5rem;
}
@media screen and (min-width: 768px) {
  .p-mv__btnWrap {
    margin-top: 5.625rem;
  }
}

.p-mv__btn {
  display: inline-block;
  padding: 0.6875rem 1.0625rem;
  border-radius: 0.3125rem;
  line-height: 1;
  background-color: #fff;
  border: 1px solid #035279;
  color: #333;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.p-mv__btn:hover {
  background-color: #035279;
  color: #fff;
  box-shadow: 0 0.25rem 0.75rem rgba(3, 82, 121, 0.35);
  opacity: 1;
}

.p-opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-opening__logo {
  opacity: 0;
  transform: scale(0.9);
  max-width: 12.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-opening__logo {
    max-width: 18.75rem;
  }
}
.p-opening__logo img {
  width: 100%;
  height: auto;
}

.p-opening__text {
  opacity: 0;
  transform: translateY(10px);
  font-size: 0.875rem;
  font-weight: 600;
  color: #035279;
  margin-top: 1rem;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 768px) {
  .p-opening__text {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

.p-opening__line {
  width: 2.5rem;
  height: 1px;
  background-color: #389CCD;
  margin-top: 0.875rem;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: center;
}
@media screen and (min-width: 768px) {
  .p-opening__line {
    width: 3.125rem;
    margin-top: 1.125rem;
  }
}

.p-privacy {
  padding: 3.75rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-privacy {
    padding: 5rem 0 7.5rem;
  }
}

.p-privacy__title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-privacy__title {
    font-size: 1.75rem;
  }
}

.p-privacy__body {
  max-width: 50rem;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .p-privacy__body {
    margin-top: 3.75rem;
  }
}

.p-privacy__lead {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-privacy__lead {
    font-size: 1rem;
  }
}

.p-privacy__section {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__section {
    margin-top: 3rem;
  }
}

.p-privacy__heading {
  font-size: 1rem;
  font-weight: 600;
  color: #035279;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #389CCD;
}
@media screen and (min-width: 768px) {
  .p-privacy__heading {
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
  }
}

.p-privacy__text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-privacy__text {
    margin-top: 1.25rem;
    font-size: 1rem;
  }
}

.p-privacy__list {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
  list-style: disc;
}
@media screen and (min-width: 768px) {
  .p-privacy__list {
    margin-top: 1rem;
  }
}
.p-privacy__list li {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-privacy__list li {
    font-size: 1rem;
  }
}

.p-privacy__dl {
  margin-top: 1rem;
  border-top: 1px solid #BBBCC0;
}
@media screen and (min-width: 768px) {
  .p-privacy__dl {
    margin-top: 1.25rem;
  }
}

.p-privacy__dl-row {
  display: flex;
  border-bottom: 1px solid #BBBCC0;
}

.p-privacy__dt {
  width: 6.5625rem;
  padding: 1rem 0.3125rem;
  font-size: 0.8125rem;
  font-weight: 500;
  border-right: 1px dotted #BBBCC0;
}
@media screen and (min-width: 768px) {
  .p-privacy__dt {
    width: 10rem;
    padding: 1.25rem 1.125rem;
    font-size: 1rem;
  }
}

.p-privacy__dd {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 1rem 0.5rem;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-privacy__dd {
    padding: 1.25rem 1.375rem;
    font-size: 1rem;
  }
}

.p-property-archive {
  padding: 3.75rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-property-archive {
    padding: 5rem 0 7.5rem;
  }
}

.p-property-archive__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-property-archive__head {
    margin-bottom: 3.75rem;
  }
}

.p-property-archive__type-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-property-archive__type-nav {
    gap: 0.75rem;
    margin-top: 2rem;
  }
}

.p-property-archive__type-link {
  display: inline-block;
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  color: #389CCD;
  text-decoration: none;
  border: 1px solid #389CCD;
  border-radius: 1.25rem;
  transition: background-color 0.2s, color 0.2s;
}
@media screen and (min-width: 768px) {
  .p-property-archive__type-link {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
  }
}
.p-property-archive__type-link:hover, .p-property-archive__type-link.is-active {
  background-color: #389CCD;
  color: #fff;
}

.p-property-archive__list {
  display: grid;
  gap: 1.5rem;
  max-width: 20rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-property-archive__list {
    max-width: initial;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.875rem;
  }
}

.p-property-archive-card {
  display: block;
  text-decoration: none;
  color: #333;
  border-radius: 0.625rem 0.625rem 0 0;
  box-shadow: 0.0625rem 0.125rem 0.25rem rgba(0, 0, 0, 0.15);
  overflow: hidden;
  background-color: #fff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.p-property-archive-card:hover {
  box-shadow: 0.125rem 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
  transform: translateY(-0.125rem);
}

.p-property-archive-card__media img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}

.p-property-archive-card__body {
  padding: 0.875rem 1rem;
}
@media screen and (min-width: 768px) {
  .p-property-archive-card__body {
    padding: 1.125rem 1.25rem;
  }
}

.p-property-archive-card__type {
  display: inline-block;
  padding: 0.125rem 0.625rem;
  font-size: 0.6875rem;
  color: #fff;
  background-color: #389CCD;
  border-radius: 0.1875rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-property-archive-card__type {
    font-size: 0.75rem;
  }
}

.p-property-archive-card__price {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .p-property-archive-card__price {
    font-size: 1.125rem;
  }
}

.p-property-archive-card__price-label {
  font-size: 0.75rem;
  font-weight: 400;
  margin-right: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-property-archive-card__price-label {
    font-size: 0.8125rem;
  }
}

.p-property-archive-card__price-value {
  color: #DE2828;
}

.p-property-archive-card__address {
  font-size: 0.75rem;
  color: #666;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-property-archive-card__address {
    font-size: 0.875rem;
  }
}

.p-property-archive-card__access {
  font-size: 0.6875rem;
  color: #888;
}
@media screen and (min-width: 768px) {
  .p-property-archive-card__access {
    font-size: 0.8125rem;
  }
}

.p-property-archive__pagination {
  margin-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .p-property-archive__pagination {
    margin-top: 4.375rem;
  }
}
.p-property-archive__pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.375rem;
}
.p-property-archive__pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 0.875rem;
  text-decoration: none;
  color: #389CCD;
  border: 1px solid #389CCD;
  border-radius: 0.25rem;
  transition: background-color 0.2s, color 0.2s;
}
.p-property-archive__pagination .page-numbers:hover, .p-property-archive__pagination .page-numbers.current {
  background-color: #389CCD;
  color: #fff;
}

.p-property-archive__empty {
  text-align: center;
  font-size: 0.875rem;
  color: #888;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  .p-property-archive__empty {
    font-size: 1rem;
    padding: 6.25rem 0;
  }
}

.p-property-single {
  padding: 3.75rem 0 5rem;
}
@media screen and (min-width: 768px) {
  .p-property-single {
    padding: 5rem 0 7.5rem;
  }
}

.p-property-single__head {
  text-align: center;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-property-single__head {
    margin-bottom: 3.125rem;
  }
}

.p-property-single__type {
  display: inline-block;
  padding: 0.25rem 1rem;
  font-size: 0.75rem;
  color: #fff;
  background-color: #389CCD;
  border-radius: 0.1875rem;
  margin-bottom: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-property-single__type {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

.p-property-single__title {
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-property-single__title {
    font-size: 1.75rem;
  }
}

.p-property-single__catchcopy {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  color: #035279;
}
@media screen and (min-width: 768px) {
  .p-property-single__catchcopy {
    font-size: 0.9375rem;
    margin-top: 0.875rem;
  }
}

.p-property-single__photo {
  max-width: 50rem;
  margin: 0 auto 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-property-single__photo {
    margin-bottom: 3.75rem;
  }
}
.p-property-single__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.625rem;
}

.p-property-single__gallery {
  max-width: 50rem;
  margin: 0 auto 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-property-single__gallery {
    margin-bottom: 3.75rem;
  }
}
.p-property-single__gallery .splide__track {
  border-radius: 0.625rem;
  overflow: hidden;
}
.p-property-single__gallery .splide__slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-property-single__gallery .splide__pagination {
  bottom: -1.875rem;
}
.p-property-single__gallery .splide__pagination__page {
  background: #ccc;
}
.p-property-single__gallery .splide__pagination__page.is-active {
  background: #389CCD;
}
.p-property-single__gallery .splide__arrow {
  background: rgba(255, 255, 255, 0.8);
  width: 2.25rem;
  height: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-property-single__gallery .splide__arrow {
    width: 2.75rem;
    height: 2.75rem;
  }
}
.p-property-single__gallery .splide__arrow svg {
  fill: #389CCD;
  width: 1rem;
  height: 1rem;
}
@media screen and (min-width: 768px) {
  .p-property-single__gallery .splide__arrow svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.p-property-single__gallery .splide__arrow:hover {
  background: rgba(255, 255, 255, 0.95);
}

.p-property-single__floorplan {
  max-width: 50rem;
  margin: 0 auto 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-property-single__floorplan {
    margin-bottom: 3.75rem;
  }
}

.p-property-single__floorplan-title {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #035279;
  padding-bottom: 0.625rem;
  margin-bottom: 0.875rem;
  border-bottom: 2px solid #389CCD;
}
@media screen and (min-width: 768px) {
  .p-property-single__floorplan-title {
    font-size: 1.0625rem;
    margin-bottom: 1.125rem;
  }
}

.p-property-single__floorplan-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-property-single__floorplan-list {
    gap: 0.875rem;
  }
}

.p-property-single__floorplan-item {
  position: relative;
  width: calc(50% - 0.3125rem);
  height: 10rem;
  padding: 0;
  border: 1px solid #e0e0e0;
  border-radius: 0.375rem;
  background-color: #f8f9fa;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
@media screen and (min-width: 768px) {
  .p-property-single__floorplan-item {
    width: calc(33.333% - 0.625rem);
    height: 13.75rem;
  }
}
.p-property-single__floorplan-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.p-property-single__floorplan-item:hover {
  border-color: #389CCD;
  box-shadow: 0 0.125rem 0.625rem rgba(56, 156, 205, 0.2);
}
.p-property-single__floorplan-item:hover .p-property-single__floorplan-zoom {
  opacity: 1;
}

.p-property-single__floorplan-zoom {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.2s ease;
}
@media (max-width: 767px) {
  .p-property-single__floorplan-zoom {
    opacity: 0.5;
  }
}
.p-property-single__floorplan-zoom::after {
  content: "";
  display: block;
  width: 2.25rem;
  height: 2.25rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23389CCD' stroke-width='2.5' stroke-linecap='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cline x1='16.5' y1='16.5' x2='21' y2='21'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E");
  background-size: 1.25rem 1.25rem;
  background-repeat: no-repeat;
  background-position: center;
}

.p-floorplan-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-floorplan-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.p-floorplan-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.88);
  cursor: pointer;
}

.p-floorplan-modal__container {
  position: relative;
  z-index: 1;
  width: min(92vw, 37.5rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-floorplan-modal__close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.625rem;
  line-height: 1;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.2s;
}
.p-floorplan-modal__close:hover {
  opacity: 1;
}

.p-floorplan-modal__counter {
  color: #fff;
  font-size: 0.8125rem;
  margin-bottom: 0.5rem;
  min-height: 1.125rem;
  line-height: 1;
}

.p-floorplan-modal__body {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-floorplan-modal__body {
    gap: 1rem;
  }
}

.p-floorplan-modal__nav {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.625rem;
  line-height: 1;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
@media screen and (min-width: 768px) {
  .p-floorplan-modal__nav {
    width: 2.75rem;
    height: 2.75rem;
    font-size: 1.875rem;
  }
}
.p-floorplan-modal__nav:hover {
  background: rgba(255, 255, 255, 0.3);
}
.p-floorplan-modal__nav[style*=none] {
  visibility: hidden;
}

.p-floorplan-modal__img {
  flex: 1;
  max-width: 100%;
  max-height: 75vh;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border-radius: 0.25rem;
  background-color: #fff;
}

.p-property-single__info {
  max-width: 50rem;
  margin: 0 auto;
}

.p-property-single__table {
  width: 100%;
  border-collapse: collapse;
}

.p-property-single__row {
  border-bottom: 1px solid #e0e0e0;
}
.p-property-single__row:first-child {
  border-top: 1px solid #e0e0e0;
}

.p-property-single__th {
  display: block;
  padding: 0.75rem 0.625rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #389CCD;
  text-align: left;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-property-single__th {
    display: table-cell;
    width: 11.25rem;
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    vertical-align: top;
    background-color: #f8f9fa;
  }
}

.p-property-single__td {
  display: block;
  padding: 0.25rem 0.625rem 0.75rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-property-single__td {
    display: table-cell;
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }
}

.p-property-single__back {
  max-width: 50rem;
  margin: 3.125rem auto 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-property-single__back {
    margin-top: 4.375rem;
  }
}

.p-property-single__back-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.875rem;
  font-size: 0.875rem;
  color: #389CCD;
  text-decoration: none;
  border: 1px solid #389CCD;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-property-single__back-btn {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
  }
}
.p-property-single__back-btn:hover {
  background-color: #389CCD;
  color: #fff;
  box-shadow: 0 0.25rem 0.75rem rgba(56, 156, 205, 0.3);
  opacity: 1;
}
.p-property-single__back-btn::before {
  content: "←";
  margin-right: 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}
.p-property-single__back-btn:hover::before {
  transform: translateX(-0.25rem);
}

.p-property {
  background-color: #fff;
}

.c-section-title--property::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.1875rem;
  transform: translateX(-50%);
  background: url("../images/top/underline.png") no-repeat center center/cover;
  width: 4.5625rem;
  height: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title--property::after {
    width: 6rem;
    height: 0.375rem;
  }
}

.p-property__lead {
  margin-top: 1.3125rem;
  text-align: center;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-property__lead {
    font-size: 1rem;
  }
}

.p-property__list {
  margin: 4.0625rem auto 0;
  max-width: 13.5625rem;
  display: grid;
  gap: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-property__list {
    max-width: initial;
    gap: 1.3125rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 7.8125rem;
  }
}

.p-property-card {
  border-radius: 0.625rem 0.625rem 0 0;
  box-shadow: 0.0625rem 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background-color: #fff;
}

.p-property-card__body {
  padding: 0.875rem 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-property-card__body {
    padding: 1.25rem 1.875rem;
  }
}

.p-property-card__title {
  font-weight: 500;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-property-card__title {
    font-size: 1.25rem;
  }
}

.p-property-card__media img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 290/217;
}

.p-property-card__cta {
  margin-top: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .p-property-card__cta {
    margin-top: 1.25rem;
  }
}

.p-property__btn {
  padding: 0.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.5rem;
  border: 1px solid #389CCD;
  background-color: #389CCD;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-property__btn {
    padding: 0.75rem;
    font-size: 1rem;
  }
}

.p-property__btn:hover {
  background-color: #fff;
  color: #389CCD;
  opacity: 1;
}

.p-property__btn::after {
  content: "→";
  margin-left: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: inherit;
  line-height: 1;
  transition: transform 0.3s ease;
}

.p-property__btn:hover::after {
  transform: translateX(0.25rem);
}

.p-question {
  background-color: #FFFEED;
}

.c-section-title--question::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.1875rem;
  transform: translateX(-50%);
  background: url("../images/top/underline.png") no-repeat center center/cover;
  width: 18.75rem;
  height: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title--question::after {
    width: 25.5rem;
    height: 0.375rem;
  }
}

.p-question__list {
  margin: 4.625rem auto 0;
  display: grid;
  gap: 2.75rem;
  max-width: 20rem;
}
@media screen and (min-width: 768px) {
  .p-question__list {
    max-width: 67.5rem;
    margin-top: 8.5rem;
    gap: 4.125rem 8.3125rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-question-card {
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.16);
  box-shadow: 0 0.1875rem 0.1875rem rgba(0, 0, 0, 0.25);
  border: 1px solid #389CCD;
}

.p-question-card__head {
  position: relative;
  background-color: #389CCD;
  -webkit-clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  padding: 0.8125rem 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-question-card__head {
    padding: 1.125rem 3rem;
  }
}

.p-question-card__title {
  font-weight: 500;
  color: #fff;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-question-card__title {
    font-size: 1.25rem;
  }
}

.p-question-card__body {
  padding: 1.25rem 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-question-card__body {
    padding: 1.4375rem 2.875rem;
  }
}

.p-question-card__text {
  font-size: 0.8125rem;
  line-height: 2.4615384615;
}
@media screen and (min-width: 768px) {
  .p-question-card__text {
    line-height: 2;
    font-size: 1rem;
  }
}

.p-reason {
  background-color: #FFFEED;
}

.c-section-title--reason::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.1875rem;
  transform: translateX(-50%);
  background: url("../images/top/underline.png") no-repeat center center/cover;
  width: 7.1875rem;
  height: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title--reason::after {
    width: 9.0625rem;
    height: 0.375rem;
  }
}

.p-reason__cards {
  margin: 2.1875rem auto 0;
  max-width: 68.4375rem;
  gap: 3.25rem;
  display: grid;
}
@media screen and (min-width: 768px) {
  .p-reason__cards {
    margin-top: 7.5625rem;
    gap: 11.875rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-reason-card {
  position: relative;
  padding: 2.8125rem 2.25rem;
  background: url("../images/top/reason-card-bg.png") no-repeat center center/contain;
  margin: 0 auto;
  max-width: 19.8125rem;
}
@media screen and (min-width: 768px) {
  .p-reason-card {
    max-width: 28.4375rem;
    padding: 3.4375rem;
  }
}

.p-reason-card__title {
  font-size: 0.875rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .p-reason-card__title {
    font-size: 1.25rem;
  }
}

.p-reason-card__text {
  margin-top: 1.25rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-reason-card__text {
    margin-top: 1.4375rem;
    font-size: 1rem;
    line-height: 1.625;
  }
}

.p-rental {
  background-color: #FFFEED;
}

.c-section-title--rental::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -0.1875rem;
  transform: translateX(-50%);
  background: url("../images/top/underline.png") no-repeat center center/cover;
  width: 4.5625rem;
  height: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .c-section-title--rental::after {
    width: 6rem;
    height: 0.375rem;
  }
}

.p-rental__lead {
  margin-top: 1.3125rem;
  text-align: center;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-rental__lead {
    font-size: 1rem;
  }
}

.p-rental__list {
  margin: 4.0625rem auto 0;
  max-width: 13.5625rem;
  display: grid;
  gap: 2.8125rem;
}
@media screen and (min-width: 768px) {
  .p-rental__list {
    max-width: initial;
    gap: 1.3125rem;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 7.8125rem;
  }
}

.p-rental-card {
  border-radius: 0.625rem 0.625rem 0 0;
  box-shadow: 0.0625rem 0.125rem 0.25rem rgba(0, 0, 0, 0.25);
  overflow: hidden;
  background-color: #fff;
}

.p-rental-card__body {
  padding: 0.875rem 1.3125rem;
}
@media screen and (min-width: 768px) {
  .p-rental-card__body {
    padding: 1.25rem 1.875rem;
  }
}

.p-rental-card__title {
  font-weight: 500;
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-rental-card__title {
    font-size: 1.25rem;
  }
}

.p-rental-card__text {
  font-size: 0.75rem;
  line-height: 1.5;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-rental-card__text {
    line-height: 1.5625;
    font-size: 1rem;
  }
}

.p-rental-card__media img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 290/217;
}

.p-rental-card__cta {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-rental-card__cta {
    margin-top: 0.625rem;
  }
}

.p-rental__btn {
  padding: 0.3125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  border-radius: 0.5rem;
  border: 1px solid #389CCD;
  background-color: #389CCD;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .p-rental__btn {
    padding: 0.75rem;
    font-size: 1rem;
  }
}

.p-rental__btn:hover {
  background-color: #fff;
  color: #389CCD;
  opacity: 1;
}

.p-rental__btn::after {
  content: "→";
  margin-left: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: inherit;
  line-height: 1;
  transition: transform 0.3s ease;
}

.p-rental__btn:hover::after {
  transform: translateX(0.25rem);
}

.u-pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */
