@charset "UTF-8";

/* -----------------------------------------------------------------
 Foundation
----------------------------------------------------------------- */

/*======================
  reset
======================*/

*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

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

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

ul,
ol {
  padding: 0;
}

li {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

th {
  font-weight: normal;
  text-align: left;
}

small {
  font-size: inherit;
}

address {
  font-style: inherit;
}

summary {
  outline: none;
}

summary::-webkit-details-marker {
  display: none;
  outline: none;
}

figure {
  margin: 0;
}

button {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
  outline: none;
  padding: 0;
}

/************************
　スクロールアニメーション用
*************************/

.fadeIn {
  opacity: 0;
  transition: 800ms;
}

.fadeIn.is-scrolled {
  opacity: 1;
}

.fadeInUp {
  -webkit-transform: translateY(20px);
  opacity: 0;
  transform: translateY(20px);
  transition: 800ms;
}

.fadeInUp.is-scrolled {
  -webkit-transform: translateY(0);
  opacity: 1;
  transform: translateY(0);
}

.fadeInLeft {
  -webkit-transform: translateX(-20px);
  opacity: 0;
  transform: translateX(-20px);
  transition: 800ms;
}

.fadeInLeft.is-scrolled {
  -webkit-transform: translateX(0);
  opacity: 1;
  transform: translateX(0);
}

.fadeInRight {
  -webkit-transform: translateX(20px);
  opacity: 0;
  transform: translateX(20px);
  transition: 800ms;
}

.fadeInRight.is-scrolled {
  -webkit-transform: translateX(0);
  opacity: 1;
  transform: translateX(0);
}

.fadeInZoomOut {
  -webkit-transform: scale(1.05);
  opacity: 0;
  transform: scale(1.05);
  transition: 800ms;
}

.fadeInZoomOut.is-scrolled {
  -webkit-transform: scale(1);
  opacity: 1;
  transform: scale(1);
}

.fadeInZoomIn {
  -webkit-transform: scale(0.95);
  opacity: 0;
  transform: scale(0.95);
  transition: 800ms;
}

.fadeInZoomIn.is-scrolled {
  -webkit-transform: scale(1);
  opacity: 1;
  transform: scale(1);
}

/* ----------------------
  keyframes
---------------------- */

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
    visibility: visible;
  }

  to {
    opacity: 0;
    visibility: hidden;
  }
}

@-webkit-keyframes accordion {
  0% {
    -webkit-transform: translateY(-10px);
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes accordion {
  0% {
    -webkit-transform: translateY(-10px);
    opacity: 0;
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    opacity: 1;
    transform: translateY(0);
  }
}

@-webkit-keyframes btnLine {
  from {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }

  to {
    -webkit-transform: scale(2, 1);
    transform: scale(2, 1);
  }
}

@keyframes btnLine {
  from {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
  }

  to {
    -webkit-transform: scale(2, 1);
    transform: scale(2, 1);
  }
}

@-webkit-keyframes scrollLine {
  from {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
  }

  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

@keyframes scrollLine {
  from {
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
  }

  to {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}

/*======================
  base
======================*/

body {
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  color: #000;
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic Std", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", YuGothic, sans-serif;
  font-size: 15px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.8;
  overflow-wrap: break-word;
}

body.is-fixed {
  overflow: hidden;
}

:target {
  scroll-margin-top: 72px;
}

/* -----------------------------------------------------------------
 Layout
----------------------------------------------------------------- */

/*=======================
  inner
=======================*/

.l-inner {
  box-sizing: content-box;
  margin: 0 auto;
  max-width: 520px;
  padding-left: 20px;
  padding-right: 20px;
}

.l-inner.m-p-relative {
  position: relative;
}

/*=======================
  header
=======================*/

.l-header {
  background: #fff;
  height: 72px;
  left: 0;
  position: fixed;
  top: 0;
  transition: 0.5s;
  width: 100%;
  z-index: 990;
}

.l-header__inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  max-width: none;
  padding: 0;
  position: relative;
}

.l-header__logo {
  display: inline-block;
  font-size: 0;
  margin-left: 20px;
  width: 85px;
}

.l-header__logo a {
  display: block;
}

.l-header__logo a:hover {
  opacity: 0.6;
}

.l-header__logo a img {
  width: 100%;
}

.l-header__menu {
  align-items: center;
  display: flex;
  margin-right: 62px;
}

.l-header__menu-item > a,
.l-header__menu-item > div {
  -webkit-transform-origin: center;
  display: block;
  font-size: 10px;
  line-height: 1.15;
  text-align: center;
  transform-origin: center;
}

.l-header__menu-item > a:hover,
.l-header__menu-item > div:hover {
  opacity: 0.7;
}

.l-header__menu-item.m-history > a,
.l-header__menu-item.m-favorite > a {
  background: transparent no-repeat center top/auto 18px;
  padding-top: 21px;
}

.l-header__menu-item.m-history > a {
  background-image: url(../img/common/icon_history.webp);
}

.l-header__menu-item.m-favorite {
  margin-right: 5px;
}

.l-header__menu-item.m-favorite > a {
  background-image: url(../img/common/icon_favorite_2.webp);
  position: relative;
}

.l-header__menu-item.m-favorite > a.is-active {
  background-image: url(../img/common/icon_favorite_active.svg);
}

.l-header__menu-item.m-search {
  flex-shrink: 0;
}

.l-header__menu-item.m-search > a,
.l-header__menu-item.m-search > div {
  background: transparent no-repeat center top 7px/auto 18px;
  border: 2px solid #000;
  font-size: 10px;
  font-weight: 600;
  padding: 28px 5px 5px;
  width: 48px;
}

.l-header__menu-item.m-multilingual {
  cursor: pointer;
}

.l-header__menu-item.m-multilingual > div {
  background-image: url(../img/common/icon_search_mc_2.webp);
  padding-left: 0;
  padding-right: 0;
}

.l-header__menu-item.m-station {
  margin-right: 5px;
}

.l-header__menu-item.m-station > a {
  background-image: url(../img/common/icon_station.webp);
}

.l-header__menu-item.m-area {
  margin-right: 5px;
}

.l-header__menu-item.m-area > a {
  background-image: url(../img/common/icon_area.webp);
}

.l-header__menu-item.m-map {
  margin-right: 5px;
}

.l-header__menu-item.m-map > a {
  background-image: url(../img/common/icon_map.webp);
}

.l-header__menu-item.m-commute > a {
  background-image: url(../img/common/icon_commute.webp);
  padding-left: 0;
  padding-right: 0;
}

.l-header__menu-item.m-topics {
  margin-right: 30px;
  padding-top: 28px;
  position: relative;
}

.l-header__menu-contact {
  flex-shrink: 0;
  margin-left: 20px;
}

.l-header__menu-contact .snss {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}

.l-header__menu-contact .snss .sns.m-fb {
  margin-bottom: 7px;
}

.l-header__menu-contact .c-btn.m-line a {
  font-size: 13px;
  min-width: 136px;
  padding: 1px 9px;
}

.l-header__latest-post-date {
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
  padding: 4px;
  position: relative;
}

.l-header__latest-post-date::before {
  -webkit-transform: translate(-50%, 100%);
  border-bottom: 4px solid transparent;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #000;
  bottom: 0;
  content: "";
  display: block;
  height: 0;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 100%);
  width: 0;
}

.l-header__latest-post-date.m-pc {
  -webkit-transform: translateY(-100%);
  left: 0;
  position: absolute;
  top: 20px;
  transform: translateY(-100%);
}

.l-header__latest-post-date.m-sp {
  left: 12px;
  margin-top: 4px;
  top: 10px;
}

.l-header.m-multilingual-home .l-header__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.l-header.m-multilingual-home .l-header__text {
  display: none;
}

.l-header.m-multilingual-home .l-header__mail > a {
  font-size: 12px;
  min-width: 114px;
  padding: 7px 12px;
}

.l-gnav-btn {
  -webkit-transform: translateY(-50%);
  background: transparent;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  right: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
}

.l-gnav-btn__bar {
  background-color: #00E600;
  bottom: -6px;
  height: 3px;
  left: 50%;
  opacity: 0;
  position: absolute;
  transition: 0.3s;
  width: 16px;
}

.l-gnav-btn__bar:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% - 7px));
  transform: translate(-50%, calc(-50% - 7px));
}

.l-gnav-btn__bar:nth-child(2) {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.l-gnav-btn__bar:nth-child(3) {
  -webkit-transform: translate(-50%, calc(-50% + 7px));
  transform: translate(-50%, calc(-50% + 7px));
}

.l-gnav-btn__text {
  display: inline-block;
  padding: 0 12px 0 0;
  position: relative;
}

.l-gnav-btn__text::before {
  content: "MENU";
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.l-gnav-btn__text::after {
  -webkit-transform: translateY(-50%);
  border-bottom: 8px solid transparent;
  border-left: 8px solid transparent;
  border-right: 8px solid #00E600;
  border-top: 8px solid transparent;
  content: "";
  display: block;
  height: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
}

.l-gnav {
  background-color: #fff;
  box-sizing: border-box;
  display: none;
  height: 100vh;
  max-width: 296px;
  overflow-y: scroll;
  padding: 24px 20px 120px;
  position: fixed;
  right: 0;
  top: 0;
  width: 78.9333333333%;
  z-index: 998;
}

.l-gnav__outer {
  margin: 0 auto;
  max-width: 208px;
}

.l-gnav__logo {
  font-size: 0;
  margin: 0 0 30px;
  width: 120px;
}

.l-gnav__logo > a {
  display: block;
}

.l-gnav__logo > a img {
  width: 100%;
}

.l-gnav__search {
  background-color: #E5FDE5;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-left: -28px;
  padding: 15px 28px;
  width: calc(100% + 56px);
}

.l-gnav__houses {
  display: flex;
  justify-content: space-between;
  padding: 15px 0 18px;
}

.l-gnav__houses > li {
  width: calc(50% - 3px);
}

.l-gnav__houses > li > a {
  background: transparent no-repeat center top 8px/auto 18px;
  border: 2px solid #000;
  display: block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  padding: 28px 5px 8px;
  text-align: center;
}

.l-gnav__houses > li > a:hover {
  opacity: 0.7;
}

.l-gnav__houses > li.m-history > a {
  background-image: url(../img/common/icon_history.webp);
}

.l-gnav__houses > li.m-favorite > a {
  background-image: url(../img/common/icon_favorite_2.webp);
  position: relative;
}

.l-gnav__houses > li.m-favorite > a.is-active {
  background-image: url(../img/common/icon_favorite_active.svg);
}

.l-gnav__list {
  border-top: 1px solid #ddd;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.l-gnav__list > li {
  border-bottom: 1px solid #ddd;
  position: relative;
}

.l-gnav__list > li > a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 16px 12px;
}

.l-gnav__list > li > a:hover {
  opacity: 0.7;
}

.l-gnav__list > li.m-external {
  border-bottom: 0;
}

.l-gnav__list > li.m-external > a {
  font-size: 12px;
  font-weight: 300;
}

.l-gnav__list > li.m-external > a > span {
  background: transparent url(../img/common/icon_link.webp) no-repeat left center/13px auto;
  padding-left: 1.5em;
}

.l-gnav__list > li.m-contact {
  border-bottom: 0;
}

.l-gnav__list > li.m-contact > a {
  display: flex;
  line-height: 1.4;
  padding: 12px 12px;
  text-align: center;
}

.l-gnav__list > li.m-tel {
  border-bottom: 0;
}

.l-gnav__list > li.m-tel > a {
  font-size: 14px;
  font-weight: 400;
  text-align: center;
}

.l-gnav__list > li.m-tel > a > span {
  background: transparent url(../img/common/icon_tel.webp) no-repeat left center/14px auto;
  display: inline-block;
  padding-left: 1.5em;
}

.l-gnav__list > li.m-tel .opening {
  font-size: 12px;
  letter-spacing: 0;
  margin-bottom: 6px;
  margin-top: -6px;
  text-align: center;
}

.l-gnav__sns {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 16px;
  justify-content: center;
  margin: 12px 0 0;
  position: relative;
}

.l-gnav__sns::before {
  content: "Follow Us";
  display: block;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
  width: 100%;
}

.l-gnav__sns > li > a {
  display: block;
}

.l-gnav__sns > li > a:hover {
  opacity: 0.7;
}

.l-gnav-backlayer {
  background: rgba(0, 0, 0, 0.5);
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: 0.3s;
  visibility: hidden;
  width: 100vw;
}

.l-gnav-backlayer.is-open {
  opacity: 1;
  visibility: visible;
}

.p-multilingual-search-modal {
  background-color: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  display: none;
  height: calc(100vh - 72px);
  overflow-y: scroll;
  padding: 20px 20px 120px;
  position: fixed;
  right: 0;
  top: 72px;
  width: 100%;
  z-index: 998;
}

.p-multilingual-search-modal__inner {
  background-color: rgba(0, 230, 0, 0.2);
  margin: 0 auto;
  max-width: 520px;
  padding: 50px 12px 30px;
  position: relative;
}

.p-multilingual-search-modal__close {
  align-items: center;
  background-color: #000;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  gap: 8px;
  padding: 8px 10px 8px 36px;
  position: absolute;
  right: 0;
  top: 0;
}

.p-multilingual-search-modal__close::after {
  background: transparent url(../img/common/icon_close_2.webp) no-repeat center center/contain;
  content: "";
  display: block;
  height: 16px;
  width: 16px;
}

.is-open.l-gnav-btn .l-gnav-btn__bar {
  opacity: 1;
}

.is-open.l-gnav-btn .l-gnav-btn__bar:nth-child(1) {
  -webkit-transform: translate(-50%, 0) rotate(45deg);
  transform: translate(-50%, 0) rotate(45deg);
}

.is-open.l-gnav-btn .l-gnav-btn__bar:nth-child(2) {
  display: none;
}

.is-open.l-gnav-btn .l-gnav-btn__bar:nth-child(3) {
  -webkit-transform: translate(-50%, 0) rotate(-45deg);
  transform: translate(-50%, 0) rotate(-45deg);
}

.is-open.l-gnav-btn .l-gnav-btn__text::before {
  content: "CLOSE";
}

.is-open.l-gnav-btn .l-gnav-btn__text::after {
  content: none;
}

/*=======================
  main
=======================*/

.l-main {
  display: block;
  padding-top: 72px;
}

/*=======================
  footer
=======================*/

.l-footer {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}

.l-footer::before {
  background: transparent url(../img/common/bg_footer_sp.webp) no-repeat center top/cover;
  content: "";
  display: block;
  height: 16vw;
  width: 100%;
}

.l-footer__box {
  padding: 50px 0 36px;
}

.l-footer__logo {
  display: block;
  font-size: 0;
  margin: 0 auto 50px;
  width: 98px;
}

.l-footer__logo img {
  width: 100%;
}

.l-footer__copyright {
  background-color: #000;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 20px 0;
  text-align: center;
  width: 100%;
}

.l-footer__sns {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 24px;
  justify-content: center;
  margin: 0 0 48px;
  position: relative;
}

.l-footer__sns::before {
  content: "Follow Us";
  display: block;
  font-size: 12px;
  line-height: 1.1;
  text-align: center;
  width: 100%;
}

.l-footer__sns > li > a {
  display: block;
}

.l-footer__sns > li > a:hover {
  opacity: 0.7;
}

.l-footer__notion {
  color: #535353;
  font-size: 12px;
  line-height: 1.5;
  margin: 28px 0;
}

.l-footer.m-param-type-is-only-single-area-or-station-or-line::before {
  order: 1;
}

.l-footer.m-param-type-is-only-single-area-or-station-or-line .l-footer__menus {
  order: 2;
}

.l-footer.m-param-type-is-only-single-area-or-station-or-line .l-footer__links {
  order: 0;
}

.l-footer.m-param-type-is-only-single-area-or-station-or-line .l-footer__notion {
  order: 3;
}

.l-footer.m-param-type-is-only-single-area-or-station-or-line .l-footer__copyright {
  order: 4;
}

.l-footer.m-param-type-is-only-single-area-or-station-or-line .l-footer__sns {
  margin-bottom: 0;
}

.l-footer.m-homehub::before {
  content: none;
}

.l-footer.m-multilingual-home .l-footer__logo {
  margin: 50px auto;
}

.l-footer-search {
  margin: 0 auto;
  max-width: 216px;
}

.l-footer-search .about {
  margin: 0 0 24px;
}

.l-footer-search .about > a {
  align-items: center;
  display: flex;
  font-size: 10px;
  font-weight: 600;
  justify-content: center;
  line-height: 1;
  padding-left: 0;
  padding-right: 0;
}

.l-footer-search .about > a > span {
  border-bottom: 2px solid #00E600;
  display: inline-block;
  padding-bottom: 6px;
  position: relative;
}

.l-footer-search .about > a > span::before {
  background: transparent url(../img/common/arrow_under.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  right: -24px;
  top: calc(50% - 6px);
  width: 18px;
}

.l-footer-nav {
  margin: 0 auto;
  max-width: 216px;
}

.l-footer-nav > li {
  border-bottom: 1px solid #000;
  position: relative;
}

.l-footer-nav > li > a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 16px 0;
}

.l-footer-nav > li > a:hover {
  opacity: 0.7;
}

.l-footer-nav > li.m-external {
  border-bottom: 0;
  text-align: center;
}

.l-footer-nav > li.m-external > a {
  font-size: 11px;
  font-weight: 300;
}

.l-footer-nav > li.m-external > a > span {
  background: transparent url(../img/common/icon_link.webp) no-repeat left center/13px auto;
  padding-left: 1.65em;
}

.l-footer-links {
  background-color: #F3F3F3;
  padding: 36px 0;
}

.l-footer-links__item:not(:last-child) {
  margin-bottom: 28px;
}

.l-footer-links-item__title {
  border-bottom: 2px solid #000;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
  padding-bottom: 8px;
}

.l-footer-links-item__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.l-footer-links-item__list > li {
  font-size: 13px;
}

.l-footer-links-item__list > li::after {
  content: "|";
  display: inline-block;
  padding: 0 0.5em;
}

.l-footer-links-item__list > li a:hover {
  opacity: 0.7;
}

/* -----------------------------------------------------------------
 Component
----------------------------------------------------------------- */

/*=======================
  btn
=======================*/

.c-btn > a,
.c-btn > div {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 200px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 1em;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
  min-width: 200px;
  overflow: hidden;
  padding: 12px 16px;
  position: relative;
  z-index: 1;
}

.c-btn > a::before,
.c-btn > div::before {
  background-color: #000;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: 0.3s;
  width: 100%;
  z-index: -1;
}

.c-btn > a:hover,
.c-btn > div:hover {
  color: #000;
}

.c-btn > a:hover::before,
.c-btn > div:hover::before {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.c-btn.is-disabled {
  opacity: 0.9;
  pointer-events: none;
}

.c-btn.is-disabled > a {
  background-color: #F3F3F3;
  border-color: #fff;
  color: #000;
}

.c-btn.is-disabled > a::before {
  content: none;
}

.c-btn.m-ta-center {
  text-align: center;
}

.c-btn.m-ta-right {
  text-align: right;
}

.c-btn.m-white > a,
.c-btn.m-white div {
  background-color: #000;
  color: #000;
}

.c-btn.m-white > a::before,
.c-btn.m-white div::before {
  background-color: #fff;
}

.c-btn.m-white > a:hover,
.c-btn.m-white div:hover {
  color: #fff;
}

.c-btn.m-white > a:hover::before,
.c-btn.m-white div:hover::before {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.c-btn.m-homehub {
  text-align: center;
}

.c-btn.m-homehub > a {
  background-color: #000;
  font-size: 14px;
  line-height: 1.5;
  min-width: 240px;
}

.c-btn.m-homehub > a::before {
  content: none;
}

.c-btn.m-homehub > a:hover {
  background-color: #fff;
  color: #000;
}

.c-btn.m-homehub.m-transparent > a {
  background-color: transparent;
  color: #000;
}

.c-btn.m-homehub.m-transparent > a:hover {
  background-color: #000;
  color: #fff;
}

.c-btn.m-sharehouse > a {
  background-color: #00E600;
  border-color: #00E600;
  color: #000;
  font-size: 14px;
  min-width: 244px;
  padding: 18.5px 16px;
}

.c-btn.m-sharehouse > a::before {
  content: none;
}

.c-btn.m-sharehouse > a > span {
  background: transparent url(../img/common/icon_house_black.svg) no-repeat left center/15px auto;
  display: inline-block;
  padding-left: 20px;
}

.c-btn.m-sharehouse > a:hover {
  opacity: 0.7;
}

.c-btn.m-mail > a,
.c-btn.m-mail > div {
  background-color: #000;
  color: #000;
  flex-direction: row-reverse;
  font-size: 14px;
  gap: 5px;
  line-height: 1.5;
}

.c-btn.m-mail > a::before,
.c-btn.m-mail > div::before {
  background-color: #fff;
}

.c-btn.m-mail > a::after,
.c-btn.m-mail > div::after {
  background: transparent url(../img/common/icon_mail.svg) no-repeat center center/contain;
  content: "";
  display: block;
  height: 14px;
  width: 19px;
}

.c-btn.m-mail > a:hover,
.c-btn.m-mail > div:hover {
  color: #fff;
}

.c-btn.m-mail > a:hover::before,
.c-btn.m-mail > div:hover::before {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.c-btn.m-line > a {
  background-color: #06c755;
  flex-direction: row-reverse;
  font-size: 14px;
  font-weight: 600;
  padding: 7.5px 12px;
}

.c-btn.m-line > a::after {
  background: transparent url(../img/common/icon_line.webp) no-repeat left center/contain;
  content: "";
  display: block;
  height: 30px;
  width: 30px;
}

.c-btn.m-line > a::before {
  content: none;
}

.c-btn.m-line > a:hover {
  color: #fff;
  opacity: 0.8;
}

.c-search-btn > a {
  background-color: #fff;
  border: 2px solid #000;
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em !important;
  line-height: 1.4;
  max-width: 200px;
  padding: 10px 4px 10px 16px;
  width: 100%;
}

.c-search-btn > a > span {
  background: transparent no-repeat left center;
  display: inline-block;
  padding: 4px 0 4px 32px;
}

.c-search-btn > a:hover {
  opacity: 0.7;
}

.c-search-btn.m-map > a > span {
  background-image: url(../img/common/icon_map.webp);
  background-size: 19px auto;
}

.c-search-btn.m-query > a > span {
  background-image: url(../img/common/icon_home.webp);
  background-size: 15px auto;
}

.c-search-btn.m-station > a > span {
  background-image: url(../img/common/icon_station.webp);
  background-size: 19px auto;
}

.c-search-btn.m-area > a > span {
  background-image: url(../img/common/icon_area.webp);
  background-size: 24px auto;
}

.c-search-btn.m-commute > a > span {
  background-image: url(../img/common/icon_commute.webp);
  background-size: 26px auto;
}

.c-to-top-btn {
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  bottom: 60px;
  cursor: pointer;
  display: block;
  height: 42px;
  position: fixed;
  right: 6px;
  transition: 0.3s;
  width: 42px;
  z-index: 10;
}

.c-to-top-btn:hover {
  opacity: 0.7;
}

.c-to-top-btn::after {
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  border: 3px solid transparent;
  border-bottom-color: #00E600;
  border-left-color: #00E600;
  content: "";
  display: block;
  height: 12px;
  left: calc(50% + 1px);
  position: absolute;
  top: calc(50% + 3px);
  transform: translate(-50%, -50%) rotate(135deg);
  width: 12px;
}

.c-favorite-btn {
  align-items: center;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: opacity 0.3s;
}

.c-favorite-btn::after {
  content: attr(data-text) "";
  display: block;
  font-size: 9px;
  line-height: 1;
  margin: 4px 0 0;
  text-align: center;
}

.c-favorite-btn svg {
  fill: #7B7B7B;
  width: 21px;
}

.c-favorite-btn:hover {
  opacity: 0.7;
}

.c-favorite-btn.is-favorited::after {
  content: attr(data-text-favorited) "";
}

.c-favorite-btn.is-favorited svg {
  fill: #00E600;
}

.c-favorite-btn.m-bd {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 200px;
  display: inline-flex;
  flex-direction: row;
  font-weight: 600;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
  min-width: 200px;
  padding: 13.5px 16px;
}

.c-favorite-btn.m-bd::after {
  font-size: 12px;
  margin: 0;
}

.c-favorite-btn.m-bd svg {
  flex-shrink: 0;
}

/*=======================
  content-area
=======================*/

.c-content-area {
  word-break: break-word;
}

.c-content-area h1 {
  font-size: 1.5em;
  font-weight: 600;
  margin: 2.4em 0 2em;
}

.c-content-area h2 {
  border-bottom: 3px solid #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  margin: 40px 0 40px;
  padding: 0 0 12px;
}

.c-content-area h2:first-of-type {
  margin-top: 0;
}

.c-content-area h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 40px 0 40px;
  padding: 0 0 0 20px;
  position: relative;
}

.c-content-area h3::before {
  background: transparent url(../img/common/deco_heading.webp) no-repeat left center/contain;
  content: "";
  display: inline-block;
  height: 30px;
  left: -30px;
  position: absolute;
  top: -3px;
  width: 40px;
}

.c-content-area h4 {
  font-size: 1.1em;
  font-weight: 600;
  margin: 1.5em 0 1em;
}

.c-content-area h5 {
  font-size: 1em;
  font-weight: 600;
  margin: 1.5em 0 1em;
}

.c-content-area h6 {
  font-size: 0.8em;
  font-weight: 600;
  margin: 1.5em 0 1em;
}

.c-content-area p {
  font-size: 1em;
  font-weight: 400;
  margin-bottom: 1.7em;
}

.c-content-area p a {
  -webkit-text-decoration-line: underline;
  -webkit-text-decoration-color: #00E600;
  text-decoration-color: #00E600;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
}

.c-content-area p a:hover {
  opacity: 0.75;
}

.c-content-area table {
  border: 2px solid #e0e0e0;
  margin: 1em 0;
  width: 100%;
}

.c-content-area table caption {
  color: #9fa6b4;
  font-size: 0.75em;
  letter-spacing: 1px;
  margin: 0 0 7px;
}

.c-content-area table tr:not(:last-child) {
  border-bottom: 2px solid #e0e0e0;
}

.c-content-area table tr td {
  border-right: 2px solid #e0e0e0;
  padding: 7px;
  word-break: break-all;
}

.c-content-area table tr td:last-child {
  border-right: 0;
}

.c-content-area table tr th {
  background: #f8f9fa;
  border-bottom: 2px solid #e0e0e0;
  border-right: 2px solid #e0e0e0;
  padding: 7px;
}

.c-content-area table tr th:last-child {
  border-right: 0;
}

.c-content-area table tfoot {
  background: #f8f9fa;
  border-top: 2px dotted #c5c7ca;
}

.c-content-area blockquote {
  border-left: 3px solid #464646;
  box-sizing: border-box;
  color: #464646;
  margin: 1.5em 0;
  padding: 0.1em 0 0.1em 0.75em;
  position: relative;
}

.c-content-area blockquote p {
  line-height: 1.7;
  margin: 10px 0;
  padding: 0;
}

.c-content-area blockquote cite {
  color: #888;
  display: block;
  font-size: 0.9em;
  text-align: right;
}

.c-content-area blockquote ul,
.c-content-area blockquote ol {
  background: transparent;
  border: none;
  margin: 0;
  padding: 5px 0 5px 22px;
}

.c-content-area ul,
.c-content-area ol {
  border: solid 2px #e8e8e8;
  border-radius: 3px;
  margin-bottom: 1.5em;
  padding: 1em 1em 1em 2.5em;
}

.c-content-area ul {
  list-style-type: disc;
}

.c-content-area ul li {
  list-style: disc;
  padding: 5px 0;
}

.c-content-area ol {
  list-style-type: decimal;
}

.c-content-area ol > li {
  list-style: decimal;
}

.c-content-area ul li ul,
.c-content-area ul li ol,
.c-content-area ol li ul,
.c-content-area ol li ol {
  border: none;
  margin: 0;
  padding: 0.5em 0 0.5em 1.3em;
}

.c-content-area dd {
  color: #787878;
  font-size: 0.9em;
  margin-bottom: 1.5em;
  margin-left: 0;
}

.c-content-area img {
  height: auto;
  max-width: 100%;
}

.c-content-area .gallery-caption {
  color: gray;
  font-size: 0.75em;
  margin: 5px 0;
  text-align: center;
}

.c-content-area .wp-caption {
  border: #eaedf2 2px solid;
  margin: 0 0 1.5em;
  max-width: 100%;
  padding: 8px;
}

.c-content-area .wp-caption .aligncenter {
  margin: 0 auto 1em;
}

.c-content-area .wp-caption img {
  margin-bottom: 0;
  max-width: 100%;
  width: 100%;
}

.c-content-area .wp-caption p.wp-caption-text {
  font-size: 0.85em;
  margin: 10px 0 0;
  text-align: center;
}

.c-content-area code {
  background: #f1f2f3;
  border-radius: 5px;
  color: #404040;
  font-size: 0.9em;
  margin: 0 0.2em;
  padding: 0.2em 0.3em;
}

.c-content-area pre {
  background: #f3f6fc;
  border: solid 1px #eaedf2;
  color: #54687c;
  margin: 0 0 1.5em;
  padding: 1em;
}

.c-content-area pre code {
  background: transparent;
  padding: 0;
}

/*=======================
  form-element
  フォームの各要素を初期化して、
  各ブラウザ間の差異をなくす
=======================*/

.c-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 2px solid #000;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: 1em;
  padding: 0.55em 1.25em;
  width: 100%;
}

.c-text:focus {
  border: 2px solid rgba(0, 0, 0, 0.32);
  border-color: rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

.c-text::-webkit-input-placeholder {
  color: #A8A8A8;
}

.c-text::-moz-placeholder {
  color: #A8A8A8;
}

.c-text:-ms-input-placeholder {
  color: #A8A8A8;
}

.c-text::-ms-input-placeholder {
  color: #A8A8A8;
}

.c-text::placeholder {
  color: #A8A8A8;
}

.c-textarea {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 2px solid #000;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: clamp(16px, 1em, 1em);
  height: 150px;
  padding: 0.55em 1.25em;
  width: 100%;
  word-break: break-all;
}

.c-textarea:focus {
  border: 2px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

.c-textarea::-webkit-input-placeholder {
  color: #A8A8A8;
}

.c-textarea::-moz-placeholder {
  color: #A8A8A8;
}

.c-textarea:-ms-input-placeholder {
  color: #A8A8A8;
}

.c-textarea::-ms-input-placeholder {
  color: #A8A8A8;
}

.c-textarea::placeholder {
  color: #A8A8A8;
}

.c-radio {
  display: none;
}

.c-radio + span {
  cursor: pointer;
  display: inline-block;
  font-weight: 600;
  margin: 0 1em 0.5em 0.25em;
  padding: 0 0 0 32px;
  position: relative;
}

.c-radio + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 2px solid #000;
  border-radius: 50%;
  content: "";
  display: block;
  height: 24px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}

.c-radio + span::after {
  -webkit-transform: translateY(-50%);
  background: #00E600;
  border: 0;
  border-radius: 50%;
  content: "";
  height: 12px;
  left: 6px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease 0s;
  width: 12px;
}

.c-radio[type=radio]:checked + span:after {
  opacity: 1;
}

.c-checkbox {
  display: none;
}

.c-checkbox + span {
  cursor: pointer;
  display: inline-block;
  font-size: 15px;
  line-height: 1.43;
  margin: 0 0.2em 0;
  padding: 0 0 0 1.7em;
  position: relative;
  vertical-align: middle;
}

.c-checkbox + span::before {
  background: #fff;
  border: 1px solid #000;
  border-radius: 0;
  content: "";
  display: block;
  height: 18px;
  left: 0;
  position: absolute;
  top: 2px;
  width: 18px;
}

.c-checkbox + span::after {
  background: transparent url(../img/common/icon_checked.webp) no-repeat center center/contain;
  border-radius: 0;
  content: "";
  display: block;
  height: 16px;
  left: 1px;
  opacity: 0;
  position: absolute;
  top: 3px;
  width: 16px;
}

.c-checkbox[type=checkbox]:checked + span:after {
  opacity: 1;
}

.c-select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #fff url("../img/common/arrow_select.svg") no-repeat center right 12px/16px auto;
  border: 2px solid #000;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font-family: inherit;
  font-size: 1em;
  line-height: 1;
  padding: 0.925em 36px 0.925em 1.25em;
  width: 100%;
}

.c-select::-ms-expand {
  display: none;
}

.c-select:focus {
  border: 2px solid rgba(0, 0, 0, 0.32);
  box-shadow: none;
  outline: none;
}

.c-select::-webkit-input-placeholder {
  color: #A8A8A8;
}

.c-select::-moz-placeholder {
  color: #A8A8A8;
}

.c-select:-ms-input-placeholder {
  color: #A8A8A8;
}

.c-select::-ms-input-placeholder {
  color: #A8A8A8;
}

.c-select::placeholder {
  color: #A8A8A8;
}

.c-submit {
  -webkit-appearance: none;
  align-items: center;
  background-color: #000;
  border: 2px solid #000;
  border-radius: 200px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  height: 50px;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin: 0;
  min-width: 200px;
  padding: 0 16px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  white-space: normal;
}

.c-submit:hover {
  background-color: #fff;
  color: #000;
}

.c-submit:hover,
.c-submit:focus {
  outline: none;
}

.c-submit::-moz-foucus-inner {
  border: none;
  padding: 0;
}

.c-submit.m-back {
  background-color: #fff;
  color: #000;
}

.c-submit.m-homehub {
  min-width: 240px;
}

.c-submit:not(:last-child) {
  margin-bottom: 1em;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  -moz-appearance: textfield;
  margin: 0;
}

.c-loading {
  display: none;
}

.c-loading.is-active {
  background: #fff url(../img/common/logo_mv.webp) no-repeat center center/214px auto;
  display: block;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1001;
}

/*=======================
  heading
=======================*/

.c-page-heading {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  padding: 20px 0;
}

.c-page-heading span {
  box-sizing: content-box;
  display: block;
  margin: 0 auto;
  max-width: 520px;
  padding-left: 20px;
  padding-right: 20px;
}

.c-page-heading.m-ta-center {
  text-align: center;
}

.c-page-heading.m-icon span {
  align-items: center;
  display: flex;
}

.c-page-heading.m-icon span::before {
  background: transparent no-repeat center center/contain;
  content: "";
  display: inline-block;
  vertical-align: baseline;
}

.c-page-heading.m-map span::before {
  background-image: url(../img/common/icon_map.webp);
  height: 20px;
  margin: 0 13px 0 0;
  width: 15px;
}

.c-page-heading.m-query span::before {
  background-image: url(../img/common/icon_home.webp);
  height: 18px;
  margin: 0 8px 0 0;
  width: 20px;
}

.c-page-heading.m-area span::before {
  background-image: url(../img/common/icon_area.webp);
  height: 20px;
  margin: 0 10px 0 0;
  width: 24px;
}

.c-page-heading.m-station span::before {
  background-image: url(../img/common/icon_station.webp);
  height: 25px;
  margin: 0 10px 0 0;
  width: 19px;
}

.c-page-heading.m-commute span::before {
  background-image: url(../img/common/icon_commute.webp);
  height: 25px;
  margin: 0 10px 0 0;
  width: 26px;
}

.c-section-heading {
  line-height: 1;
  margin: 0 0 0 -40px;
  padding: 0 0 0 95px;
  position: relative;
}

.c-section-heading::before {
  -webkit-transform: translateY(-50%);
  background: transparent url(../img/common/deco_heading.webp) no-repeat left center/contain;
  content: "";
  display: inline-block;
  height: 60px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
}

.c-section-heading__en {
  display: block;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 4px;
}

.c-section-heading__ja {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

.c-section-heading__ja.m-large {
  font-size: 20px;
}

.c-section-subheading {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  padding: 0 0 0 20px;
  position: relative;
}

.c-section-subheading::before {
  background: transparent url(../img/common/deco_heading.webp) no-repeat left center/contain;
  content: "";
  display: inline-block;
  height: 30px;
  left: -30px;
  position: absolute;
  top: -3px;
  width: 40px;
}

.c-point-heading {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.2em;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.c-point-heading::before,
.c-point-heading::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 4px;
}

.c-point-heading::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.c-point-heading::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

/*=======================
  page-template
=======================*/

.c-page-template {
  padding: 40px 0 80px;
}

.c-page-template__title {
  font-size: 1.5em;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 2em;
  padding-bottom: 0.5em;
  position: relative;
  text-align: center;
}

.c-page-template__title::after {
  -webkit-transform: translateX(-50%);
  background: #000;
  bottom: 0;
  content: "";
  display: block;
  height: 1px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 44px;
}

.c-search-form {
  border: 2px solid #000;
  display: block;
  display: flex;
  justify-content: space-between;
}

.c-search-form > input[type=text] {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #fff;
  background-image: none;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  color: inherit;
  font-family: inherit;
  font-size: 16px;
  line-height: 1;
  padding: 3px 16px;
  width: 100%;
}

.c-search-form > input[type=text]:focus {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.16);
  outline: none;
}

.c-search-form > input[type=text]::-webkit-input-placeholder {
  color: #000;
  font-size: 14px;
}

.c-search-form > input[type=text]::-moz-placeholder {
  color: #000;
  font-size: 14px;
}

.c-search-form > input[type=text]:-ms-input-placeholder {
  color: #000;
  font-size: 14px;
}

.c-search-form > input[type=text]::-ms-input-placeholder {
  color: #000;
  font-size: 14px;
}

.c-search-form > input[type=text]::placeholder {
  color: #000;
  font-size: 14px;
}

.c-search-form > input[type=submit] {
  -webkit-appearance: none;
  background: #000 url(../img/common/icon_search.webp) no-repeat center center/16px auto;
  border: none;
  border-radius: 0;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
  font-family: inherit;
  font-size: 0;
  margin: 0;
  padding: 0;
  text-align: center;
  text-decoration: none;
  width: 40px;
}

.c-search-form > input[type=submit]:hover,
.c-search-form > input[type=submit]:focus {
  opacity: 0.7;
  outline: none;
}

.c-search-form > input[type=submit]::-moz-foucus-inner {
  border: none;
  padding: 0;
}

/* -----------------------------------------------------------------
 Utility
----------------------------------------------------------------- */

.u-none {
  display: none !important;
}

.u-fit-img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.u-fw-300 {
  font-weight: 300;
}

.u-fw-400 {
  font-weight: 400;
}

.u-fw-500 {
  font-weight: 500;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-700 {
  font-weight: 700;
}

.u-fw-800 {
  font-weight: 800;
}

.u-mt0 {
  margin-top: 00px !important;
}

.u-mt1 {
  margin-top: 10px !important;
}

.u-mt2 {
  margin-top: 20px !important;
}

.u-mt3 {
  margin-top: 30px !important;
}

.u-mt4 {
  margin-top: 40px !important;
}

.u-mt5 {
  margin-top: 50px !important;
}

.u-mt6 {
  margin-top: 60px !important;
}

.u-mt7 {
  margin-top: 70px !important;
}

.u-mt8 {
  margin-top: 80px !important;
}

.u-mt9 {
  margin-top: 90px !important;
}

.u-mt10 {
  margin-top: 100px !important;
}

.u-mt11 {
  margin-top: 110px !important;
}

.u-mt12 {
  margin-top: 120px !important;
}

.u-mt13 {
  margin-top: 130px !important;
}

.u-mt14 {
  margin-top: 140px !important;
}

.u-mt15 {
  margin-top: 150px !important;
}

.u-mt16 {
  margin-top: 160px !important;
}

.u-mt17 {
  margin-top: 170px !important;
}

.u-mt18 {
  margin-top: 180px !important;
}

.u-mt19 {
  margin-top: 190px !important;
}

.u-mt20 {
  margin-top: 200px !important;
}

.u-mr0 {
  margin-right: 00px !important;
}

.u-mr1 {
  margin-right: 10px !important;
}

.u-mr2 {
  margin-right: 20px !important;
}

.u-mr3 {
  margin-right: 30px !important;
}

.u-mr4 {
  margin-right: 40px !important;
}

.u-mr5 {
  margin-right: 50px !important;
}

.u-mr6 {
  margin-right: 60px !important;
}

.u-mr7 {
  margin-right: 70px !important;
}

.u-mr8 {
  margin-right: 80px !important;
}

.u-mr9 {
  margin-right: 90px !important;
}

.u-mr10 {
  margin-right: 100px !important;
}

.u-mr11 {
  margin-right: 110px !important;
}

.u-mr12 {
  margin-right: 120px !important;
}

.u-mr13 {
  margin-right: 130px !important;
}

.u-mr14 {
  margin-right: 140px !important;
}

.u-mr15 {
  margin-right: 150px !important;
}

.u-mr16 {
  margin-right: 160px !important;
}

.u-mr17 {
  margin-right: 170px !important;
}

.u-mr18 {
  margin-right: 180px !important;
}

.u-mr19 {
  margin-right: 190px !important;
}

.u-mr20 {
  margin-right: 200px !important;
}

.u-mb0 {
  margin-bottom: 00px !important;
}

.u-mb1 {
  margin-bottom: 10px !important;
}

.u-mb2 {
  margin-bottom: 20px !important;
}

.u-mb3 {
  margin-bottom: 30px !important;
}

.u-mb4 {
  margin-bottom: 40px !important;
}

.u-mb5 {
  margin-bottom: 50px !important;
}

.u-mb6 {
  margin-bottom: 60px !important;
}

.u-mb7 {
  margin-bottom: 70px !important;
}

.u-mb8 {
  margin-bottom: 80px !important;
}

.u-mb9 {
  margin-bottom: 90px !important;
}

.u-mb10 {
  margin-bottom: 100px !important;
}

.u-mb11 {
  margin-bottom: 110px !important;
}

.u-mb12 {
  margin-bottom: 120px !important;
}

.u-mb13 {
  margin-bottom: 130px !important;
}

.u-mb14 {
  margin-bottom: 140px !important;
}

.u-mb15 {
  margin-bottom: 150px !important;
}

.u-mb16 {
  margin-bottom: 160px !important;
}

.u-mb17 {
  margin-bottom: 170px !important;
}

.u-mb18 {
  margin-bottom: 180px !important;
}

.u-mb19 {
  margin-bottom: 190px !important;
}

.u-mb20 {
  margin-bottom: 200px !important;
}

.u-ml0 {
  margin-left: 00px !important;
}

.u-ml1 {
  margin-left: 10px !important;
}

.u-ml2 {
  margin-left: 20px !important;
}

.u-ml3 {
  margin-left: 30px !important;
}

.u-ml4 {
  margin-left: 40px !important;
}

.u-ml5 {
  margin-left: 50px !important;
}

.u-ml6 {
  margin-left: 60px !important;
}

.u-ml7 {
  margin-left: 70px !important;
}

.u-ml8 {
  margin-left: 80px !important;
}

.u-ml9 {
  margin-left: 90px !important;
}

.u-ml10 {
  margin-left: 100px !important;
}

.u-ml11 {
  margin-left: 110px !important;
}

.u-ml12 {
  margin-left: 120px !important;
}

.u-ml13 {
  margin-left: 130px !important;
}

.u-ml14 {
  margin-left: 140px !important;
}

.u-ml15 {
  margin-left: 150px !important;
}

.u-ml16 {
  margin-left: 160px !important;
}

.u-ml17 {
  margin-left: 170px !important;
}

.u-ml18 {
  margin-left: 180px !important;
}

.u-ml19 {
  margin-left: 190px !important;
}

.u-ml20 {
  margin-left: 200px !important;
}

.u-ta-center {
  text-align: center;
}

.u-ta-left {
  text-align: left;
}

.u-ta-right {
  text-align: right;
}

/* -----------------------------------------------------------------
Project
----------------------------------------------------------------- */

/*=======================
  404
=======================*/

.p-404 {
  padding: 60px 0 80px;
}

.p-404__title {
  font-size: 2em;
  font-size: clamp(2em, 4.4vw, 3em);
  font-weight: 600;
  line-height: 1.6;
  margin: 0 0 1em;
  text-align: center;
}

.p-404__description {
  font-size: clamp(14px, 3.6vw, 16px);
  font-weight: 700;
  text-align: center;
}

.p-404__link {
  color: #0877B6;
  display: block;
  font-size: clamp(14px, 3.6vw, 16px);
  margin: 1em auto 0;
  text-decoration: underline;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-archive {
  overflow: hidden;
  position: relative;
}

.p-archive__contents {
  margin: 40px 0 0;
}

.p-archive__contents .p-related-posts {
  margin: 60px 0 0;
}

.p-archive__outer {
  position: relative;
}

.p-single {
  overflow: hidden;
  position: relative;
}

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

.p-single__contents {
  margin: 16px 0 0;
}

.p-single__contents .p-single-supervisor {
  margin: 0 0 80px;
}

.p-single__outer {
  margin: 0 0 50px;
  position: relative;
}

.p-single__date {
  font-size: 12px;
  text-align: right;
}

.p-single__content {
  margin: 20px 0 0;
}

.p-single-search {
  background-color: #F3F3F3;
  padding: 50px 0;
}

.p-single-search__list {
  display: flex;
  flex-direction: column;
  gap: 66px;
  margin-top: 35px;
}

.p-single-search__item {
  align-items: center;
  background: transparent no-repeat center center/cover;
  display: flex;
  height: 160px;
  justify-content: center;
  position: relative;
}

.p-single-search__item .title {
  -webkit-transform: translateY(calc(-100% - 12px));
  background: transparent no-repeat left center;
  font-weight: 600;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateY(calc(-100% - 12px));
}

.p-single-search__item.m-map {
  background-image: url(../img/other/img_map_sp.webp);
}

.p-single-search__item.m-map .title {
  background-image: url(../img/common/icon_map.webp);
  background-size: 17px auto;
  padding-left: 27px;
}

.p-single-search__item.m-query {
  background-image: url(../img/other/img_query_sp.webp);
}

.p-single-search__item.m-query .title {
  background-image: url(../img/common/icon_home.webp);
  background-size: 24px auto;
  padding-left: 34px;
}

.p-single-supervisor__content {
  grid-column-gap: 15px;
  grid-row-gap: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
  display: grid;
  grid-template-columns: 100px auto;
  grid-template-rows: repeat(3, auto);
  padding: 20px;
}

.p-single-supervisor__image {
  grid-column: 1/2;
  grid-row: 1/2;
  height: 100px;
}

.p-single-supervisor__info {
  align-self: center;
  grid-column: 2/3;
  grid-row: 1/2;
  line-height: 1.5;
}

.p-single-supervisor__lead {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 2px;
}

.p-single-supervisor__name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.p-single-supervisor__position {
  font-size: 12px;
}

.p-single-supervisor__certification {
  grid-column: 1/3;
  grid-row: 2/3;
  line-height: 1.5;
}

.p-single-supervisor__certification > .title {
  background-color: #535353;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 8px;
  padding: 2px 5px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-single-supervisor__certification > .desc {
  font-size: 12px;
}

.p-single-supervisor__career {
  grid-column: 1/3;
  grid-row: 3/4;
  margin: 4px 0 0;
}

.p-single-cta-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.p-single-cta-box a {
  margin-bottom: 1.7em;
  text-align: center;
}

/*=======================
  pagination
=======================*/

.p-pagination {
  width: 100%;
  /* WP-Pagenavi用 */
}

.p-pagination .wp-pagenavi {
  margin: 30px 0 0;
  position: relative;
  text-align: center;
  width: 100%;
}

.p-pagination .wp-pagenavi span,
.p-pagination .wp-pagenavi a {
  background-color: transparent;
  border: 0;
  border-bottom: 2px solid #000;
  border-radius: 0;
  box-sizing: border-box;
  color: #000;
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  height: 50px;
  letter-spacing: 0;
  line-height: 48px;
  margin: 0 5px 0.5em;
  padding: 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  width: 50px;
}

.p-pagination .wp-pagenavi span.current,
.p-pagination .wp-pagenavi span:hover,
.p-pagination .wp-pagenavi a.current,
.p-pagination .wp-pagenavi a:hover {
  border-color: #00E600;
  color: #009F00;
}

.p-pagination .wp-pagenavi .pages {
  display: none;
}

.p-pagination .wp-pagenavi .previouspostslink,
.p-pagination .wp-pagenavi .nextpostslink {
  border: 0;
  font-size: 0;
  position: relative;
}

.p-pagination .wp-pagenavi .previouspostslink::after,
.p-pagination .wp-pagenavi .nextpostslink::after {
  border: 3px solid transparent;
  border-bottom-color: #ddd;
  border-left-color: #ddd;
  content: "";
  display: block;
  height: 26px;
  left: auto;
  position: absolute;
  right: auto;
  top: 50%;
  transition: 0.3s;
  width: 26px;
}

.p-pagination .wp-pagenavi .previouspostslink:hover::after,
.p-pagination .wp-pagenavi .nextpostslink:hover::after {
  border-bottom-color: #00E600;
  border-left-color: #00E600;
}

.p-pagination .wp-pagenavi .previouspostslink::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.p-pagination .wp-pagenavi .nextpostslink::after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}

.p-pagination .wp-pagenavi .extend {
  border-bottom: 0;
}

.p-pagination .wp-pagenavi .first,
.p-pagination .wp-pagenavi .last {
  border: 0;
  font-size: 0;
  position: relative;
}

.p-pagination .wp-pagenavi .first::after,
.p-pagination .wp-pagenavi .last::after {
  border: 8px double transparent;
  border-bottom-color: #ddd;
  border-left-color: #ddd;
  content: "";
  display: block;
  height: 26px;
  left: auto;
  position: absolute;
  right: auto;
  top: 50%;
  transition: 0.3s;
  width: 26px;
}

.p-pagination .wp-pagenavi .first:hover::after,
.p-pagination .wp-pagenavi .last:hover::after {
  border-bottom-color: #00E600;
  border-left-color: #00E600;
}

.p-pagination .wp-pagenavi .first::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}

.p-pagination .wp-pagenavi .last::after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  left: 0;
  transform: translateY(-50%) rotate(-135deg);
}

/*=======================
  post-card
=======================*/

.p-post-card {
  position: relative;
}

.p-post-card__link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.p-post-card__link:hover .p-post-card__thumbnail::before {
  opacity: 1;
}

.p-post-card__link:hover .p-post-card__thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-post-card__link:hover .p-post-card__title {
  color: #009F00;
}

.p-post-card__thumbnail {
  display: block;
  height: clamp(104px, 27.7333333333vw, 120px);
  overflow: hidden;
  position: relative;
  width: 38.2089552239%;
}

.p-post-card__thumbnail::before {
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 0.3s;
  width: 100%;
  z-index: 1;
}

.p-post-card__thumbnail img {
  transition: 0.3s;
}

.p-post-card__body {
  width: 57.3134328358%;
}

.p-post-card__box {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 0 14px;
}

.p-post-card__category {
  background-color: #535353;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  padding: 3px 11px;
}

.p-post-card__date {
  font-size: 12px;
  line-height: 1;
}

.p-post-card__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
}

.p-post-card__excerpt {
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 12px;
  margin: 12px 0 0;
  overflow: hidden;
}

.p-post-card__new {
  font-size: 14px;
  font-weight: 500;
  left: -6px;
  position: absolute;
  top: -18px;
}

.p-post-card__new span {
  display: inline-block;
  position: relative;
}

.p-post-card__new::before {
  background-color: #00E600;
  bottom: 1px;
  content: "";
  display: block;
  height: 12px;
  left: 6px;
  position: absolute;
  width: 46px;
}

.p-post-card.m-simple .p-post-card__link {
  display: block;
}

.p-post-card.m-simple .p-post-card__thumbnail {
  margin: 0 0 14px;
  width: auto;
}

.p-post-card.m-simple .p-post-card__body {
  width: auto;
}

.p-post-card.m-simple .p-post-card__title {
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 300;
  max-height: 42px;
  overflow: hidden;
}

.p-post-card.m-related .p-post-card__link {
  align-items: center;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0 15px;
  padding: 20px;
}

.p-post-card.m-related .p-post-card__thumbnail {
  flex-shrink: 0;
  height: clamp(70px, 20.8vw, 78px);
  margin: 0;
  width: 118px;
}

.p-post-card.m-related .p-post-card__body {
  flex-grow: 1;
  width: auto;
}

.p-post-card.m-related .p-post-card__box {
  margin: 0 0 8px;
}

.p-post-card.m-related .p-post-card__category {
  display: none;
}

.p-post-card.m-related .p-post-card__title {
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 300;
  max-height: 63px;
  overflow: hidden;
}

.p-post-card.swiper-slide {
  background-color: #fff;
  height: auto;
}

.p-post-card.swiper-slide .p-post-card__link {
  display: block;
}

.p-post-card.swiper-slide .p-post-card__thumbnail {
  margin: 0;
  width: auto;
}

.p-post-card.swiper-slide .p-post-card__body {
  padding: 14px 20px 20px;
  width: auto;
}

.p-post-card.swiper-slide .p-post-card__title {
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-text-size-adjust: none;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: 14px;
  font-weight: 300;
  max-height: 42px;
  overflow: hidden;
}

.p-post-card.m-bg-gray {
  background-color: #F3F3F3;
}

/*=======================
  post-cards
=======================*/

.p-post-cards {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.p-post-cards.m-type-voice {
  gap: 20px;
}

.p-post-cards.swiper-wrapper {
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 0;
}

.p-post-cards.swiper-wrapper .swiper-slide {
  width: auto;
}

/*=======================
  breadcrumb
=======================*/

.p-breadcrumb {
  background-color: #F3F3F3;
  font-size: 10px;
  line-height: 1.2;
  overflow-x: scroll;
  padding: 7px 0;
}

.p-breadcrumb__inner {
  box-sizing: content-box;
  margin: 0 auto;
  max-width: 1440px;
  padding: 0 20px;
  white-space: nowrap;
}

.p-breadcrumb__item:not(:last-child) {
  margin-bottom: 4px;
}

.p-breadcrumb a {
  text-decoration: underline;
}

.p-breadcrumb.m-1200 .p-breadcrumb__inner {
  max-width: 1200px;
}

.p-breadcrumb.m-960 .p-breadcrumb__inner {
  max-width: 960px;
}

.p-breadcrumb.m-928 .p-breadcrumb__inner {
  max-width: 928px;
}

.p-slider {
  margin-right: calc(50% - 50vw);
  margin-top: 44px;
  position: relative;
}

.p-slider > .swiper-nav-box {
  align-items: flex-start;
  display: flex;
  margin: 20px 0 0;
  padding: 0 20px;
}

.p-slider > .swiper-nav-box > .swiper-pagination {
  margin: 0 0 0 56px;
  max-width: 640px;
  position: static;
  text-align: left;
}

.p-slider > .swiper-nav-box > .swiper-pagination > .swiper-pagination-bullet {
  background: #fff;
  border: 0;
  border-radius: 0;
  height: 10px;
  margin: 0 6px;
  opacity: 1;
  width: 10px;
}

.p-slider > .swiper-nav-box > .swiper-pagination > .swiper-pagination-bullet-active {
  background: #00E600 !important;
}

.p-slider > .swiper-nav-box > .swiper-pagination.m-gray > .swiper-pagination-bullet {
  background: #ddd;
}

.p-slider > .swiper-nav-box > .swiper-button-prev,
.p-slider > .swiper-nav-box > .swiper-button-next {
  color: #fff;
  display: inline-flex;
  height: 39px;
  margin-top: 0;
  position: static;
  width: 26px;
}

.p-slider > .swiper-nav-box > .swiper-button-prev:focus,
.p-slider > .swiper-nav-box > .swiper-button-next:focus {
  outline: 0;
}

.p-slider > .swiper-nav-box > .swiper-button-prev:hover,
.p-slider > .swiper-nav-box > .swiper-button-next:hover {
  color: #00E600 !important;
}

.p-slider > .swiper-nav-box > .swiper-button-prev.m-gray,
.p-slider > .swiper-nav-box > .swiper-button-next.m-gray {
  color: #ddd;
}

.p-slider > .swiper-nav-box > .swiper-button-prev {
  margin-right: 20px;
}

.p-slider > .swiper-nav-box.m-gray > .swiper-pagination > .swiper-pagination-bullet {
  background: #F3F3F3;
}

.p-slider > .swiper-nav-box.m-gray > .swiper-button-prev,
.p-slider > .swiper-nav-box.m-gray > .swiper-button-next {
  color: #DDDDDD;
}

/**
 * $list_item_class
 * NULL         : 検索結果一覧
 * map          : 地図から探す
 * related      : 検索結果のサイドバー
 * simple       : トップの新着物件・人気物件
 * swiper-slide : トップのおすすめ物件
 * param-type-is-only-single-area : 検索結果のエリア一覧（単一のエリアのみでの検索結果）
 */

.p-sharehouse-card {
  position: relative;
}

.p-sharehouse-card__link {
  grid-column-gap: 15px;
  grid-row-gap: 0px;
  background-color: #fff;
  display: grid;
  grid-template-columns: 168px auto;
  grid-template-rows: repeat(4, auto);
  height: 100%;
  padding: 0 0 12px;
}

.p-sharehouse-card__thumbnail {
  display: block;
  grid-column: 1/2;
  grid-row: 1/3;
  height: clamp(100px, 29.6vw, 120px);
  overflow: hidden;
  position: relative;
}

.p-sharehouse-card__thumbnail::before {
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: 0.3s;
  width: 100%;
  z-index: 1;
}

.p-sharehouse-card__thumbnail img {
  transition: 0.3s;
}

.p-sharehouse-card__thumbnail:hover::before {
  opacity: 1;
}

.p-sharehouse-card__gallery {
  height: 100%;
}

.p-sharehouse-card__gallery > .swiper-wrapper > .swiper-slide {
  width: 100% !important;
}

.p-sharehouse-card__gallery > .swiper-button-prev,
.p-sharehouse-card__gallery > .swiper-button-next {
  -webkit-transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.3);
  height: 30px;
  margin: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
}

.p-sharehouse-card__gallery > .swiper-button-prev:focus,
.p-sharehouse-card__gallery > .swiper-button-next:focus {
  outline: 0;
}

.p-sharehouse-card__gallery > .swiper-button-prev::after,
.p-sharehouse-card__gallery > .swiper-button-next::after {
  border: 2px solid transparent;
  border-bottom-color: #fff;
  border-left-color: #fff;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  top: 50%;
  width: 10px;
}

.p-sharehouse-card__gallery > .swiper-button-prev:hover::after,
.p-sharehouse-card__gallery > .swiper-button-next:hover::after {
  border-bottom-color: #00E600;
  border-left-color: #00E600;
}

.p-sharehouse-card__gallery > .swiper-button-prev {
  left: 0;
}

.p-sharehouse-card__gallery > .swiper-button-prev::after {
  -webkit-transform: translate(20%, -50%) rotate(45deg);
  transform: translate(20%, -50%) rotate(45deg);
}

.p-sharehouse-card__gallery > .swiper-button-next {
  right: 0;
}

.p-sharehouse-card__gallery > .swiper-button-next::after {
  -webkit-transform: translate(-20%, -50%) rotate(-135deg);
  transform: translate(-20%, -50%) rotate(-135deg);
}

.p-sharehouse-card__thumbnail-label {
  align-items: stretch;
  bottom: 0;
  display: flex;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.p-sharehouse-card__rent {
  background-color: #fff;
  color: #009F00;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 2px 6px;
}

.p-sharehouse-card__status {
  align-items: center;
  background-color: #00E600;
  display: flex;
  flex-grow: 1;
  font-size: 10px;
  font-weight: 600;
  justify-content: center;
}

.p-sharehouse-card__body {
  padding: 12px 15px 0;
}

.p-sharehouse-card__title {
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  font-size: 15px;
  font-weight: 600;
  grid-column: 2/3;
  grid-row: 1/2;
  line-height: 1.5;
  margin: 0 0 8px;
  max-height: 68px;
  overflow: hidden;
  padding: 10px 12px 0 0;
}

.p-sharehouse-card__title:hover {
  color: #009F00;
}

.p-sharehouse-card__terms {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  grid-column: 2/3;
  grid-row: 2/3;
  padding: 0 12px 0 0;
}

.p-sharehouse-card__terms > li {
  background-color: #00E600;
  font-size: 10px;
  line-height: 1.1;
  padding: 4px 4px;
}

.p-sharehouse-card__detail {
  grid-column: 1/3;
  grid-row: 3/4;
  margin: 12px 0 0;
  padding: 0 12px;
}

.p-sharehouse-card__detail > li {
  align-items: baseline;
  border-bottom: 1px solid #DDDDDD;
  display: flex;
  font-size: 12px;
  padding: 4px 0;
}

.p-sharehouse-card__detail > li .title {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 600;
  width: 70px;
}

.p-sharehouse-card__detail > li .text {
  flex-grow: 1;
  font-size: 12px;
  line-height: 1.5;
}

.p-sharehouse-card__detail > li:nth-child(1) .text {
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  max-height: 18px;
  overflow: hidden;
}

.p-sharehouse-card__station,
.p-sharehouse-card__address {
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  font-size: 12px;
  line-height: 1.5;
  max-height: 36px;
  overflow: hidden;
}

.p-sharehouse-card__info {
  grid-column: 1/3;
  grid-row: 4/5;
  margin-top: 12px;
  padding: 0 12px;
}

.p-sharehouse-card__excerpt {
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  display: -webkit-box;
  font-size: 12px;
  line-height: 1.5;
  max-height: 90px;
  overflow: hidden;
  word-break: break-all;
}

.p-sharehouse-card__btns {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 12px 0 0;
}

.p-sharehouse-card__btns .c-btn > a {
  font-size: 10px;
  line-height: 1.5;
  min-width: unset;
  width: 100%;
}

.p-sharehouse-card__btns .c-btn:nth-child(1) {
  max-width: 120px;
  min-width: 108px;
  width: 32.8358208955%;
}

.p-sharehouse-card__btns .c-btn:nth-child(1) > a {
  padding: 1px 4px;
}

.p-sharehouse-card__btns .c-btn:nth-child(1) > a::after {
  height: 23px;
  width: 23px;
}

.p-sharehouse-card__btns .c-btn:nth-child(2) {
  max-width: 140px;
  min-width: 108px;
  width: 35.8208955224%;
}

.p-sharehouse-card__btns .c-btn:nth-child(2) > a {
  padding: 5px 4px;
}

.p-sharehouse-card__more {
  line-height: 1;
  margin: 8px 0 0;
  text-align: right;
}

.p-sharehouse-card__more span {
  border-bottom: 2px solid #00E600;
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 4px;
}

.p-sharehouse-card__new {
  font-size: 14px;
  font-weight: 500;
  left: -6px;
  position: absolute;
  top: -18px;
}

.p-sharehouse-card__new span {
  display: inline-block;
  position: relative;
}

.p-sharehouse-card__new::before {
  background-color: #00E600;
  bottom: 1px;
  content: "";
  display: block;
  height: 12px;
  left: 6px;
  position: absolute;
  width: 46px;
}

.p-sharehouse-card__commute {
  background: #fff;
  font-size: 12px;
  line-height: 1.5;
  padding: 0 20px 20px;
}

.p-sharehouse-card__commute a {
  color: #4F88F5;
  text-decoration: underline;
}

.p-sharehouse-card__commute a:hover {
  opacity: 0.7;
}

.p-sharehouse-card__company {
  bottom: 4px;
  color: #ddd;
  font-size: 10px;
  line-height: 1;
  position: absolute;
  right: 4px;
}

.p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__link {
  grid-template-rows: repeat(5, auto);
}

.p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__thumbnail {
  grid-row: 1/4;
}

.p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__area {
  align-self: end;
  background-color: #000;
  color: #fff;
  display: inline-block;
  font-size: 11px;
  font-weight: 300;
  grid-column: 2/3;
  grid-row: 1/2;
  justify-self: left;
  line-height: 1.1;
  margin: 0 0 2px;
  padding: 4px 5px;
}

.p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__title {
  grid-row: 2/3;
}

.p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__terms {
  grid-row: 3/4;
}

.p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__detail {
  grid-row: 4/5;
}

.p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__info {
  grid-row: 5/6;
}

.p-sharehouse-card.m-simple .p-sharehouse-card__link {
  display: block;
  padding: 0;
}

.p-sharehouse-card.m-simple .p-sharehouse-card__link:hover .p-sharehouse-card__thumbnail::before {
  opacity: 1;
}

.p-sharehouse-card.m-simple .p-sharehouse-card__link:hover .p-sharehouse-card__thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-sharehouse-card.m-simple .p-sharehouse-card__link:hover .p-sharehouse-card__title {
  color: #009F00;
}

.p-sharehouse-card.m-simple .p-sharehouse-card__thumbnail {
  width: auto;
}

.p-sharehouse-card.m-simple .p-sharehouse-card__thumbnail-label {
  left: auto;
  right: 0;
}

.p-sharehouse-card.m-simple .p-sharehouse-card__body {
  padding: 0;
  width: auto;
}

.p-sharehouse-card.m-simple .p-sharehouse-card__title {
  font-size: 14px;
  margin: 14px 0 10px;
  padding: 0;
}

.p-sharehouse-card.m-related .p-sharehouse-card__link {
  grid-column-gap: 12px;
  grid-row-gap: 0px;
  display: grid;
  grid-template-columns: 118px auto;
  grid-template-rows: repeat(3, auto);
  padding: 18px 20px 20px;
}

.p-sharehouse-card.m-related .p-sharehouse-card__link:hover .p-sharehouse-card__thumbnail::before {
  opacity: 1;
}

.p-sharehouse-card.m-related .p-sharehouse-card__link:hover .p-sharehouse-card__thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-sharehouse-card.m-related .p-sharehouse-card__link:hover .p-sharehouse-card__title {
  color: #009F00;
}

.p-sharehouse-card.m-related .p-sharehouse-card__thumbnail {
  grid-column: 1/2;
  grid-row: 2/4;
  height: clamp(70px, 20.8vw, 78px);
  width: auto;
}

.p-sharehouse-card.m-related .p-sharehouse-card__rent .max {
  display: none;
}

.p-sharehouse-card.m-related .p-sharehouse-card__title {
  -webkit-line-clamp: 1;
  font-size: 14px;
  grid-column: 1/3;
  grid-row: 1/2;
  max-height: 21px;
  padding: 0;
}

.p-sharehouse-card.m-related .p-sharehouse-card__address {
  align-self: start;
  grid-column: 2/3;
  grid-row: 2/3;
}

.p-sharehouse-card.m-related .p-sharehouse-card__station {
  align-self: end;
  grid-column: 2/3;
  grid-row: 3/4;
}

.p-sharehouse-card.swiper-slide {
  height: auto;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__link {
  background-color: #fff;
  display: block;
  padding: 0;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__link:hover .p-sharehouse-card__thumbnail::before {
  opacity: 1;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__link:hover .p-sharehouse-card__thumbnail img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__link:hover .p-sharehouse-card__title {
  color: #009F00;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__link:hover .p-sharehouse-card__more {
  color: #009F00;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__thumbnail {
  height: clamp(160px, 52.2666666667vw, 196px);
  width: auto;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__thumbnail-label {
  left: auto;
  right: 0;
  width: auto;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__rent {
  left: auto;
  right: 0;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__status {
  flex-grow: 0;
  padding: 0 16px;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__body {
  padding: 20px 30px;
  width: auto;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__title {
  -webkit-text-size-adjust: none;
  font-size: 15px;
  margin: 0 0 10px;
  max-height: 45px;
  padding: 0;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__station {
  -webkit-text-size-adjust: none;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__info {
  margin: 0;
  padding: 0 30px 20px;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__excerpt {
  -webkit-text-size-adjust: none;
  -webkit-line-clamp: 4;
  font-size: 15px;
  max-height: 90px;
}

.p-sharehouse-card.swiper-slide .p-sharehouse-card__btns {
  margin-top: 28px;
}

.p-sharehouse-card.m-map .p-sharehouse-card__btns .c-btn {
  max-width: 170px;
}

.p-sharehouse-card.m-map .p-sharehouse-card__btns .c-btn.m-line > a span {
  display: none;
}

.p-page.m-bb .p-page__head {
  border-bottom: 1px solid #ddd;
}

.p-search-query-form__type:not(:last-child) {
  margin-bottom: 20px;
}

.p-search-query-form__submit {
  text-align: center;
}

.p-search-query-form.m-page-search {
  padding: 0 0 30px;
  position: relative;
}

.p-search-query-form.m-page-search .p-search-query-form__submit {
  -webkit-transform: translateX(-50%);
  bottom: 64px;
  left: 50%;
  position: fixed;
  transform: translateX(-50%);
  z-index: 10;
}

.p-search-query-form.m-page-search .p-search-query-form__submit.is-fixed {
  bottom: -20px;
  position: absolute;
}

.p-search-query-form-type__title {
  border-bottom: 3px solid #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0 0 10px;
  padding-bottom: 11px;
}

.p-search-query-form-type__list {
  background-color: #fff;
  display: flex;
  flex-wrap: wrap;
  padding: 20px 25px 20px 25px;
  position: relative;
}

.p-search-query-form-type__item:not(:last-child) {
  margin-bottom: 8px;
}

.p-search-query-form-type__tab {
  display: flex;
}

.p-search-query-form-type__tab > li {
  cursor: pointer;
  padding: 12px 12px 12px 20px;
  width: 50%;
}

.p-search-query-form-type__tab > li.is-active {
  background-color: #fff;
}

.p-search-query-form-type__luup {
  font-size: 12px;
  text-align: right;
}

.p-search-query-form-type__luup a {
  color: #0877B6;
  text-decoration: underline;
}

.p-search-query-form-type-item {
  line-height: 1;
}

.p-search-query-form-type-item.m-col-1 {
  width: 100%;
}

.p-search-query-form-type-item__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 0 1em;
}

.p-search-query-form-type-item__item.m-col-1 {
  width: 100%;
}

.p-search-query-form-type-item__item .child-name {
  background-color: #DDDDDD;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 0 -10px;
  padding: 12px 20px;
  position: relative;
  width: calc(100% + 20px);
}

.p-search-query-form-type-item__item .child-name::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border: 1.5px solid transparent;
  border-bottom-color: #000;
  border-left-color: #000;
  content: "";
  display: block;
  height: 10px;
  left: auto;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
  width: 10px;
}

.p-search-query-form-type-item__item .child-name.is-open::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.p-search-query-form-type-item__item .child-list {
  margin: 15px 0 10px;
}

.p-search-query-form-type-item__item .child-list .child-item:not(:last-child) {
  margin-bottom: 20px;
}

.p-search-query-form-type-item__item .child-list .child-item > label {
  display: block;
  font-weight: 600;
  margin: 0 0 15px;
}

.p-search-query-form-type-item__item .gchild-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 0 10px;
}

.p-search-query-form-type-item__item .gchild-list .gchild-item {
  width: calc(50% - 5px);
}

.p-search-query-form-rent-range {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 16px auto 0;
  max-width: 720px;
  position: relative;
}

.p-search-query-form-rent-range .noUi-target {
  background: #fff;
  border: 0;
  border-radius: 36px;
  box-shadow: none;
  height: 36px;
  margin: 0 0 4px;
  width: 100%;
}

.p-search-query-form-rent-range .noUi-target .noUi-base {
  -webkit-transform: translate(0, -50%);
  height: 12px;
  top: 50%;
  transform: translate(0, -50%);
}

.p-search-query-form-rent-range .noUi-target .noUi-base .noUi-connects .noUi-connect {
  background: #00E600;
}

.p-search-query-form-rent-range .noUi-target .noUi-origin {
  top: 50%;
}

.p-search-query-form-rent-range .noUi-target .noUi-origin .noUi-handle {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 2px solid #00E600;
  border-radius: 50%;
  box-shadow: none;
  height: 24px;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
}

.p-search-query-form-rent-range .noUi-target .noUi-origin .noUi-handle::before,
.p-search-query-form-rent-range .noUi-target .noUi-origin .noUi-handle::after {
  content: none;
}

.p-concept {
  background-color: #fff;
  padding: 80px 0 60px;
}

.p-concept__box {
  grid-column-gap: 30px;
  grid-row-gap: 36px;
  display: grid;
  grid-template-columns: 50% auto;
  grid-template-rows: auto auto;
  position: relative;
}

.p-concept__box::before {
  background: transparent url(../img/common/bg_about_sp.webp) no-repeat center center/contain;
  content: "";
  display: block;
  height: 90px;
  position: absolute;
  right: 0;
  top: -30px;
  width: 76.1194029851%;
}

.p-concept__image {
  grid-column: 1/2;
  grid-row: 1/2;
  position: relative;
}

.p-concept__image img {
  width: 100%;
}

.p-concept__heading {
  align-self: end;
  grid-column: 2/3;
  grid-row: 1/2;
  line-height: 1;
}

.p-concept__heading .en {
  display: block;
  margin: 0 0 18px;
}

.p-concept__heading .en img {
  width: 100%;
}

.p-concept__heading .ja {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.5;
}

.p-concept__desc {
  font-size: 14px;
  font-weight: 600;
  grid-column: 1/3;
  grid-row: 2/3;
  line-height: 2;
  padding: 0 24px;
}

.p-concept__desc p:not(:last-child) {
  margin-bottom: 1.8em;
}

.p-reasons {
  background-color: #F3F3F3;
  padding: 0 0 30px;
}

.p-reasons__image {
  display: block;
  margin: 0 auto;
  max-width: 1200px;
}

.p-reasons__image img {
  width: 100%;
}

.p-reasons__heading {
  align-items: flex-start;
  background: transparent url(../img/home/img_2_sp.webp) no-repeat center center/cover;
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 600;
  gap: 8px;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 30px 0 158px;
}

.p-reasons__heading span {
  background-color: #fff;
  display: inline-block;
  padding: 8px 20px;
}

.p-reasons__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: -20px 0 0;
}

.p-reasons__slider {
  margin-top: -20px;
}

.p-reasons__slider .swiper > .swiper-wrapper {
  align-items: stretch;
}

.p-reasons__slider .swiper > .swiper-wrapper > .swiper-slide {
  height: auto;
}

.p-reasons.m-home .p-reasons__heading {
  background: #fff;
  display: block;
  margin: 20px auto;
  max-width: none;
  padding: 8px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-reasons.m-home .p-reasons__heading > span {
  padding: 0;
}

.p-reasons.m-home .p-reasons__list {
  margin-top: 0;
}

.p-reasons.m-about {
  background-color: transparent;
  padding: 0;
}

.p-reasons.m-about .p-reasons__visual {
  background-color: #F3F3F3;
  margin: 0 auto;
  max-width: 960px;
  position: relative;
}

.p-reasons.m-about .p-reasons__image {
  max-width: none;
}

.p-reasons.m-about .p-reasons__heading {
  align-items: center;
  background: none;
  display: flex;
  flex-direction: column;
  font-size: 15px;
  gap: 8px;
  letter-spacing: 0.05em;
  margin: 0;
  margin-top: 20px;
  max-width: none;
  padding: 0;
}

.p-reasons.m-about .p-reasons__heading > span {
  padding: 8px 12px;
}

.p-reasons.m-about .p-reasons__heading > div {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.p-reasons.m-about .p-reasons__heading > div > span {
  padding: 8px 8px;
}

.p-reasons.m-about .p-reasons__heading.m-vi_VN {
  letter-spacing: -0.03em;
}

.p-reasons.m-about .p-reasons__content {
  background-color: #F3F3F3;
  padding: 30px 0 50px;
}

.p-reasons.m-about .p-reasons__list {
  margin-top: 0;
}

.p-reasons-item {
  background-color: #fff;
  padding: 30px;
  position: relative;
}

.p-reasons-item__num {
  background-color: #00E600;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  height: 40px;
  left: 0;
  line-height: 40px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 40px;
}

.p-reasons-item__image {
  text-align: center;
}

.p-reasons-item__image img {
  height: 80px;
  width: auto;
}

.p-reasons-item__title {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.5;
  margin: 18px 0 16px;
  text-align: center;
}

.p-reasons-item__desc {
  font-size: 12px;
  line-height: 1.5;
}

.p-reasons-item.m-about {
  align-items: center;
  border: 1px solid transparent;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 20px 24px;
}

.p-reasons-item.m-about:hover {
  border-color: #00E600;
}

.p-reasons-item.m-about .p-reasons-item__num {
  left: -1px;
  top: -1px;
}

.p-reasons-item.m-about .p-reasons-item__image {
  flex-shrink: 0;
  width: 108px;
}

.p-reasons-item.m-about .p-reasons-item__image img {
  height: auto;
  width: 100%;
}

.p-reasons-item.m-about .p-reasons-item__title {
  font-size: 13px;
  margin: 0;
  text-align: left;
}

.p-reasons-item.m-about .p-reasons-item__remark {
  color: #FF0000;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.3333333333;
  margin: -5px 0 10px;
}

.p-reasons-item.m-about .p-reasons-item__btn > div {
  font-size: 12px;
  min-width: 126px;
  padding: 8px 12px;
  pointer-events: none;
}

.p-reasons-modal {
  background-color: rgba(255, 255, 255, 0.8);
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 2;
}

.p-reasons-modal.is-show {
  display: block;
}

.p-reasons-modal__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: center;
  margin: 0 auto;
  max-width: 520px;
  width: calc(100% - 40px);
}

.p-reasons-modal__item {
  display: none;
}

.p-reasons-modal__item.is-show {
  display: block;
}

.p-reasons-modal__grid {
  grid-column-gap: 12px;
  background-color: #fff;
  border: 1px solid #00E600;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.16);
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto auto;
  padding: 30px 20px;
  position: relative;
}

.p-reasons-modal__num {
  background-color: #00E600;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  height: 28px;
  left: 0;
  line-height: 28px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 28px;
}

.p-reasons-modal__image {
  grid-column: 1/2;
  grid-row: 1/2;
  margin: 0 0 20px;
  width: 108px;
}

.p-reasons-modal__image img {
  width: 100%;
}

.p-reasons-modal__title {
  align-self: center;
  font-size: 13px;
  font-weight: 600;
  grid-column: 2/3;
  grid-row: 1/2;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.p-reasons-modal__remark {
  align-items: center;
  border-bottom: 1px solid #FF0000;
  color: #FF0000;
  display: flex;
  font-size: 12px;
  font-weight: 600;
  gap: 10px;
  grid-column: 1/3;
  grid-row: 2/3;
  line-height: 1.5;
  margin: 0 0 15px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.p-reasons-modal__remark::after {
  border-bottom: 5px solid transparent;
  border-left: 6px solid #FF0000;
  border-right: 6px solid transparent;
  border-top: 5px solid transparent;
  content: "";
  display: block;
  height: 0;
  width: 0;
}

.p-reasons-modal__desc {
  font-size: 13px;
  grid-column: 1/3;
  grid-row: 3/4;
  line-height: 1.6666666667;
}

.p-reasons-modal__btn {
  grid-column: 1/3;
  grid-row: 4/5;
  margin: 20px 0 0;
  text-align: center;
}

.p-reasons-modal__btn > div {
  font-size: 12px;
  min-width: 110px;
  padding: 8px 12px;
}

.p-categories {
  background-color: #F3F3F3;
  padding: 40px 0 60px;
}

.p-categories__inner {
  margin: 0 auto;
  max-width: 520px;
  padding: 0 20px;
}

.p-categories__title {
  border-bottom: 3px solid #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-bottom: 11px;
}

.p-categories__list a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  padding: 12px 20px;
}

.p-categories__list a:hover {
  opacity: 0.7;
}

.p-categories__list > li {
  border-bottom: 1px solid #ddd;
}

.p-categories__list > li > ul > li {
  border-top: 1px solid #ddd;
  padding-left: 20px;
}

.p-related-posts__content {
  padding: 46px 0 40px;
}

.p-related-posts__content:nth-child(odd) {
  background-color: #F3F3F3;
}

.p-related-posts__content:nth-child(even) .swiper-nav-box > .swiper-button-prev,
.p-related-posts__content:nth-child(even) .swiper-nav-box > .swiper-button-next {
  color: #ddd;
}

.p-related-posts__content:nth-child(even) .swiper-nav-box > .swiper-pagination > .swiper-pagination-bullet {
  background: #ddd;
}

.p-related-posts__slider .swiper {
  margin-left: 52px;
}

.p-wpml-language-switcher__title {
  line-height: 1;
}

.p-wpml-language-switcher__title img {
  width: 60px;
}

.p-wpml-language-switcher__box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal {
  border: 0;
  padding: 0;
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li {
  line-height: 1;
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li a {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  gap: 4px;
  padding: 0;
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li a:hover {
  opacity: 0.7;
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li a::before {
  background: transparent no-repeat left center/contain;
  content: "";
  display: inline-block;
  height: 20px;
  width: 32px;
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li a > span {
  display: none;
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li.wpml-ls-current-language a {
  border: 0;
  color: #009F00;
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li.wpml-ls-item-ja a::before {
  background-image: url(../img/common/icon_flag_ja.svg);
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li.wpml-ls-item-en a::before {
  background-image: url(../img/common/icon_flag_en.svg);
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li.wpml-ls-item-zh a::before {
  background-image: url(../img/common/icon_flag_zh.svg);
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li.wpml-ls-item-ko a::before {
  background-image: url(../img/common/icon_flag_ko.svg);
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li.wpml-ls-item-vi a::before {
  background-image: url(../img/common/icon_flag_vi.svg);
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li.wpml-ls-item-si a::before {
  background-image: url(../img/common/icon_flag_si.svg);
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li.wpml-ls-item-ne a::before {
  background-image: url(../img/common/icon_flag_ne.svg);
}

.p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li.wpml-ls-item-my a::before {
  background-image: url(../img/common/icon_flag_my.svg);
}

.p-wpml-language-switcher.m-gnav {
  background-color: #F3F3F3;
  margin: 0;
  padding: 16px 12px 20px 20px;
}

.p-wpml-language-switcher.m-gnav .p-wpml-language-switcher__title {
  margin: 0 0 16px;
}

.p-wpml-language-switcher.m-btn .p-wpml-language-switcher__title {
  -webkit-transform: translate(0, 100%);
  background-color: #F3F3F3;
  bottom: 0;
  cursor: pointer;
  padding: 4px 8px 4px 9px;
  position: absolute;
  right: 0;
  transform: translate(0, 100%);
}

.p-wpml-language-switcher.m-btn .p-wpml-language-switcher__title:hover {
  opacity: 0.7;
}

.p-wpml-language-switcher.m-btn .p-wpml-language-switcher__box {
  -webkit-transform: translate(-50%, -50%);
  background-color: #fff;
  display: none;
  left: 50%;
  max-width: 612px;
  padding: 60px 32px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  z-index: 1;
}

.p-wpml-language-switcher.m-btn .p-wpml-language-switcher__close {
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 20px;
  width: 51px;
}

.p-wpml-language-switcher.m-btn .p-wpml-language-switcher__close:hover {
  opacity: 0.7;
}

.p-wpml-language-switcher.m-btn .p-wpml-language-switcher__subtitle {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 48px;
  text-align: center;
}

.p-wpml-language-switcher.m-btn .p-wpml-language-switcher__menu {
  margin: 0 auto;
  max-width: 340px;
}

.p-wpml-language-switcher.m-btn .p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul {
  gap: 16px 28px;
}

.p-wpml-language-switcher.m-btn .p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li a {
  font-size: 14px;
}

.p-wpml-language-switcher.m-btn .p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li a::before {
  height: 29px;
  width: 45px;
}

.p-wpml-language-switcher.m-home-search {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 0;
}

.p-wpml-language-switcher.m-home-search .p-wpml-language-switcher__title {
  flex-shrink: 0;
}

.p-wpml-language-switcher.m-home-search .p-wpml-language-switcher__box {
  gap: 10px;
}

.p-wpml-language-switcher.m-home-search .p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul {
  gap: 10px;
}

.p-wpml-language-switcher.m-home-search .p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li a::before {
  height: 16px;
  width: 24px;
}

.p-line-bnr {
  margin-left: auto;
  margin-right: auto;
  max-width: 730px;
}

.p-line-bnr a {
  display: block;
}

.p-line-bnr a:hover {
  opacity: 0.7;
}

.p-line-bnr img {
  width: 100%;
}

.p-movie-card {
  position: relative;
}

.p-movie-card__link {
  cursor: pointer;
  display: block;
}

.p-movie-card__link:hover {
  opacity: 0.7;
}

.p-movie-card__thumbnail {
  height: clamp(80px, 23.4666666667vw, 120px);
  margin: 0 0 12px;
  position: relative;
}

.p-movie-card__thumbnail::before {
  -webkit-transform: translate(-50%, -50%);
  background: transparent url(../img/common/icon_play.webp) no-repeat center center/contain;
  content: "";
  display: block;
  height: 30px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 30px;
}

.p-movie-card__title {
  font-size: 14px;
  font-weight: 400;
}

.p-movie-card__new {
  font-size: 14px;
  font-weight: 500;
  left: -6px;
  position: absolute;
  top: -18px;
}

.p-movie-card__new span {
  display: inline-block;
  position: relative;
}

.p-movie-card__new::before {
  background-color: #00E600;
  bottom: 1px;
  content: "";
  display: block;
  height: 12px;
  left: 6px;
  position: absolute;
  width: 46px;
}

.p-voice-card {
  position: relative;
}

.p-voice-card__link {
  display: block;
}

.p-voice-card__link:hover {
  opacity: 0.7;
}

.p-voice-card__thumbnail {
  height: 222px;
  position: relative;
}

.p-voice-card__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  padding: 12px 0 0 56px;
  position: relative;
}

.p-voice-card__title::before {
  background: transparent url(../img/common/deco_heading.webp) no-repeat center center/contain;
  content: "";
  display: block;
  height: 42px;
  left: -10px;
  position: absolute;
  top: -10px;
  width: 56px;
}

.p-voice-card__title > span {
  /*! autoprefixer: ignore next */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  max-height: 42px;
  overflow: hidden;
}

.p-voice-card__new {
  font-size: 14px;
  font-weight: 500;
  left: -6px;
  position: absolute;
  top: -18px;
}

.p-voice-card__new span {
  display: inline-block;
  position: relative;
}

.p-voice-card__new::before {
  background-color: #00E600;
  bottom: 1px;
  content: "";
  display: block;
  height: 12px;
  left: 6px;
  position: absolute;
  width: 46px;
}

.p-cta-section__inner {
  background: #F3F3F3 url(../img/about/deco_1.webp) no-repeat left top/157px auto;
  padding: 60px 0;
}

.p-cta-section__content {
  background: #fff url(../img/about/bg_1.webp) no-repeat right 10px bottom/133px auto;
  background-color: #fff;
  margin: 0 auto;
  max-width: 420px;
  padding: 40px 20px 54px;
}

.p-cta-section__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.2em;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-cta-section__title::before,
.p-cta-section__title::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 4px;
}

.p-cta-section__title::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-cta-section__title::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-cta-section__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 10px;
}

.p-cta-section__btn {
  width: calc(50% - 4px);
}

.p-cta-section__btn > a {
  align-items: center;
  border: 2px solid #000;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.01em;
  line-height: 1.38;
  min-height: 60px;
  padding: 10px 8px;
}

.p-cta-section__btn > a > span {
  background: transparent no-repeat left center;
  display: inline-block;
  padding-left: 24px;
}

.p-cta-section__btn > a:hover {
  opacity: 0.7;
}

.p-cta-section__btn.m-map > a > span {
  background-image: url(../img/common/icon_map.webp);
  background-size: 12px auto;
}

.p-cta-section__btn.m-query > a > span {
  background-image: url(../img/common/icon_home.webp);
  background-size: 14px auto;
}

.p-cta-section__btn.m-station > a > span {
  background-image: url(../img/common/icon_station.webp);
  background-size: 14px auto;
}

.p-cta-section__btn.m-area > a > span {
  background-image: url(../img/common/icon_area.webp);
  background-size: 15px auto;
}

.p-cta-section__btn.m-commute > a > span {
  background-image: url(../img/common/icon_commute.webp);
  background-size: 17px auto;
}

.p-cta-section.m-bg-gray {
  background-color: #F3F3F3;
  padding: 60px 0 40px;
}

.p-initial-cost-detail {
  margin: 0 auto;
  max-width: 928px;
}

.p-initial-cost-detail__table {
  text-align: center;
  width: 100%;
}

.p-initial-cost-detail__table > thead::after {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
}

.p-initial-cost-detail__table > tfoot::before {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
}

.p-initial-cost-detail__table > thead > tr > td,
.p-initial-cost-detail__table > tfoot > tr > td {
  background-color: #F3F3F3;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.5;
  padding: 15px 0;
}

.p-initial-cost-detail__table > thead > tr > td.m-colored,
.p-initial-cost-detail__table > tfoot > tr > td.m-colored {
  background-color: #00E600;
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
}

.p-initial-cost-detail__table > thead > tr > td.m-price,
.p-initial-cost-detail__table > tfoot > tr > td.m-price {
  font-size: 13px;
  line-height: 1.4;
}

.p-initial-cost-detail__table > thead > tr > td.m-price > .price .num,
.p-initial-cost-detail__table > tfoot > tr > td.m-price > .price .num {
  font-size: 20px;
}

.p-initial-cost-detail__table > tbody > tr {
  border-bottom: 1px solid #ddd;
}

.p-initial-cost-detail__table > tbody > tr:first-child {
  border-top: 1px solid #ddd;
}

.p-initial-cost-detail__table > tbody > tr.is-strong > th > span,
.p-initial-cost-detail__table > tbody > tr.is-strong > td > span {
  background: linear-gradient(transparent 70%, #00E600 70%);
  padding: 2px 8px;
}

.p-initial-cost-detail__table > tbody > tr > th {
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  width: 33.3333333333%;
}

.p-initial-cost-detail__table > tbody > tr > td {
  font-size: 15px;
  padding: 13.5px 0;
  position: relative;
  width: 33.3333333333%;
}

.p-initial-cost-detail__table > tbody > tr > td:nth-child(2)::before,
.p-initial-cost-detail__table > tbody > tr > td:nth-child(2)::after {
  -webkit-transform: translateY(-50%);
  background-color: #ddd;
  content: "";
  display: block;
  height: 25px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.p-initial-cost-detail__table > tbody > tr > td:nth-child(2)::before {
  left: 0;
}

.p-initial-cost-detail__table > tbody > tr > td:nth-child(2)::after {
  right: 0;
}

.p-initial-cost-detail__table > tbody > tr > td:nth-child(3) {
  color: #009F00;
  font-weight: 600;
}

.p-initial-cost-detail__table-attention {
  font-size: 14px;
  text-align: right;
}

.p-monthly-cost-detail__wrap {
  background-color: #F3F3F3;
  padding: 40px 0;
}

.p-monthly-cost-detail__lead {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-align: center;
}

.p-monthly-cost-detail__lead > span {
  font-size: clamp(28px, 7.4666666667vw, 32px);
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-monthly-cost-detail__table {
  text-align: center;
  width: 100%;
}

.p-monthly-cost-detail__table > thead::after {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
}

.p-monthly-cost-detail__table > thead > tr > td {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-monthly-cost-detail__table > thead > tr > td > span {
  background: transparent url(../img/compare/icon_apartment_2.webp) no-repeat center top/47px auto;
  display: inline-block;
  padding: 50px 0 0;
}

.p-monthly-cost-detail__table > thead > tr > td.m-colored {
  color: #009F00;
}

.p-monthly-cost-detail__table > thead > tr > td.m-colored > span {
  background-image: url(../img/compare/icon_apartment_1.webp);
}

.p-monthly-cost-detail__table > thead > tr > td.m-white {
  background-color: #fff;
}

.p-monthly-cost-detail__table > thead > tr > td.m-large {
  font-size: 14px;
}

.p-monthly-cost-detail__table > tfoot::before {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
}

.p-monthly-cost-detail__table > tfoot > tr > th {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  position: relative;
  text-align: center;
  width: 33.3333333333%;
}

.p-monthly-cost-detail__table > tfoot > tr > td {
  background-color: #F3F3F3;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  padding: 15px 0;
}

.p-monthly-cost-detail__table > tfoot > tr > td > span {
  font-size: 15px;
  letter-spacing: -0.015em;
}

.p-monthly-cost-detail__table > tfoot > tr > td > span > span {
  font-size: 12px;
}

.p-monthly-cost-detail__table > tfoot > tr > td.m-colored {
  background-color: #00E600;
  color: #fff;
}

.p-monthly-cost-detail__table > tfoot > tr > td.m-white {
  background-color: #fff;
}

.p-monthly-cost-detail__table > tfoot > tr > td.m-text-colored {
  color: #009F00;
}

.p-monthly-cost-detail__table > tfoot > tr > td.m-three-data {
  position: relative;
}

.p-monthly-cost-detail__table > tfoot > tr > td.m-three-data::after {
  -webkit-transform: translateY(-50%);
  background-color: #F3F3F3;
  content: "";
  display: block;
  height: 101%;
  left: -1.5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
}

.p-monthly-cost-detail__table > tbody.m-mt::before {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
}

.p-monthly-cost-detail__table > tbody > tr {
  border-bottom: 1px solid #ddd;
}

.p-monthly-cost-detail__table > tbody > tr:first-child {
  border-top: 1px solid #ddd;
}

.p-monthly-cost-detail__table > tbody > tr > th {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.25;
  position: relative;
  text-align: center;
  width: 33.3333333333%;
}

.p-monthly-cost-detail__table > tbody > tr > th::after {
  -webkit-transform: translateY(-50%);
  background-color: #ddd;
  content: "";
  display: block;
  height: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.p-monthly-cost-detail__table > tbody > tr > td {
  font-size: 14px;
  letter-spacing: 0;
  padding: 13.5px 0;
  position: relative;
  width: 33.3333333333%;
}

.p-monthly-cost-detail__table > tbody > tr > td.m-with-line::after {
  -webkit-transform: translateY(-50%);
  background-color: #ddd;
  content: "";
  display: block;
  height: 50%;
  left: -1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.p-monthly-cost-detail__table > tbody > tr > td.m-colored {
  color: #009F00;
  font-weight: 600;
}

.p-monthly-cost-detail__table > tbody > tr > td.m-white {
  padding: 0;
}

.p-monthly-cost-detail__table > tbody > tr > td.m-white span {
  background-color: #fff;
  display: block;
  font-weight: 600;
  padding: 9px 0;
}

.p-monthly-cost-detail__table > tbody > tr > td.m-with-icon {
  font-size: 12px;
  line-height: 1.5;
  padding: 10px 0 8px;
}

.p-monthly-cost-detail__table > tbody > tr > td.m-with-icon > .icon {
  background: transparent no-repeat center center/contain;
  display: block;
  height: 30px;
  margin: 0 auto 4px;
  width: 30px;
}

.p-monthly-cost-detail__attention {
  counter-reset: list-counter;
  list-style: none;
}

.p-monthly-cost-detail__attention > li {
  color: #535353;
  counter-increment: list-counter;
  font-size: 12px;
  line-height: 1.5;
  padding-left: 2em;
  position: relative;
}

.p-monthly-cost-detail__attention > li::before {
  content: "※" counter(list-counter);
  left: 0;
  position: absolute;
}

.p-monthly-cost-detail__question {
  background: transparent url(../img/common/arrow.webp) no-repeat left top/30px auto;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 auto;
  padding: 5px 0 0 40px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-search-list {
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-search-list__item {
  width: calc(50% - 5px);
}

.p-search-list__item > a {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  display: flex;
  height: 100%;
  justify-content: center;
  padding: 9px 8px;
}

.p-search-list__item > a:hover {
  background-color: #000;
  color: #fff;
}

.p-search-list__item > a .icon {
  display: block;
  margin: 0 auto 5px;
  text-align: center;
}

.p-search-list__item > a .icon img {
  height: 25px;
  width: auto;
}

.p-search-list__item > a .text {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

.p-search-list__item.m-rent a {
  min-height: 70px;
}

.p-search-list__item.m-rent .text {
  align-items: center;
  display: flex;
  gap: 3px;
  justify-content: center;
  text-align: left;
}

.p-search-list__item.m-rent .text > .num {
  color: #00E600;
  font-size: 36px;
  font-weight: bold;
  line-height: 1;
}

.p-home-campaign-bnr {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

.p-home-campaign-bnr a {
  display: block;
}

.p-home-campaign-bnr a:hover {
  opacity: 0.7;
}

.p-home-campaign-bnr img {
  width: 100%;
}

.p-home-mv {
  position: relative;
}

.p-home-mv__inner {
  position: relative;
}

.p-home-mv__card {
  display: block;
}

.p-home-mv__card::before {
  background-color: rgba(0, 0, 0, 0.16);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s;
  width: 100%;
  z-index: 2;
}

.p-home-mv__card:hover::before {
  opacity: 1;
}

.p-home-mv__image {
  display: block;
  height: clamp(250px, 66.6666666667vw, 400px) !important;
  overflow: hidden;
}

.p-home-mv__image img {
  -o-object-fit: cover;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.p-home-mv__heading {
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  left: 20px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: absolute;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
  top: 8px;
  width: 90%;
  z-index: 1;
}

.p-home-mv__copy {
  -webkit-transform: translateY(-50%);
  color: #fff;
  font-size: clamp(18px, 4.8vw, 30px);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}

.p-home-mv__btn {
  -webkit-transform: translateX(-50%);
  bottom: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  z-index: 2;
}

.p-home-mv__btn > a {
  align-items: center;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 40px;
  color: #000;
  display: flex;
  font-size: 11px;
  font-weight: 600;
  justify-content: center;
  line-height: 1.2;
  padding: 11px 22px;
}

.p-home-mv__btn > a > span {
  display: inline-block;
  padding-right: 15px;
  position: relative;
}

.p-home-mv__btn > a > span::after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  border: 2px solid transparent;
  border-bottom-color: #00E600;
  border-left-color: #00E600;
  content: "";
  display: block;
  height: 9px;
  left: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
  width: 9px;
}

.p-home-mv__btn > a:hover {
  background-color: #000;
  color: #fff;
}

.p-home-search {
  background-color: #E5FDE5;
  margin: 0 auto;
  max-width: 928px;
  padding: 20px 0 30px;
  position: relative;
}

.p-home-search__lead {
  font-size: 12px;
  margin: 0 0 10px;
  text-align: center;
}

.p-home-search__bnr {
  margin: 0 auto;
  max-width: clamp(160px, 60.8vw, 832px);
}

.p-home-introduction {
  padding: 30px 0 0;
}

.p-home-introduction__list {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-home-introduction__item.m-col-1 {
  width: 100%;
}

.p-home-introduction__item.m-col-2 {
  width: calc(50% - 5px);
}

.p-home-introduction__item figure {
  margin: 0;
}

.p-home-introduction__item a {
  display: block;
}

.p-home-introduction__item a:hover {
  opacity: 0.7;
}

.p-home-introduction__item img {
  width: 100%;
}

.p-home-posts {
  padding: 46px 0 30px;
}

.p-home-posts__cards {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px 20px;
  margin: 54px 0 0;
}

.p-home-posts__cards > article {
  width: calc(50% - 10px);
}

.p-home-posts.m-news {
  background-color: #F3F3F3;
}

.p-home-sharehouse-reccomend {
  overflow: hidden;
  padding: 46px 0 40px;
  position: relative;
}

.p-home-sharehouse-reccomend::before {
  background-color: #F3F3F3;
  bottom: 0;
  content: "";
  display: block;
  height: 81%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}

.p-home-bnrs {
  padding: 30px 0 46px;
}

.p-home-bnrs__title {
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.75em;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-home-bnrs__title::before,
.p-home-bnrs__title::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 4px;
}

.p-home-bnrs__title::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-home-bnrs__title::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-home-bnrs__list {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-home-bnrs__item.m-col-1 {
  width: 100%;
}

.p-home-bnrs__item.m-col-2 {
  width: calc(50% - 5px);
}

.p-home-bnrs__item figure {
  margin: 0;
}

.p-home-bnrs__item a {
  display: block;
}

.p-home-bnrs__item a:hover {
  opacity: 0.7;
}

.p-home-bnrs__item img {
  width: 100%;
}

.p-home-movies {
  padding: 0 0 60px;
}

.p-home-movies__cards {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px 20px;
  margin: 54px 0 0;
}

.p-home-movies__card {
  width: calc(50% - 10px);
}

.p-home-brand {
  padding: 40px 0;
}

.p-home-brand__story .c-section-heading {
  margin-bottom: 52px;
}

.p-home-brand__voice {
  margin-top: 60px;
}

.p-home-brand__voice .c-section-heading {
  margin-bottom: 52px;
}

.p-home-brand__cards {
  gap: 20px !important;
}

.p-search__outer {
  background-color: #F3F3F3;
  padding: 30px 0 60px;
}

.p-search-result-query {
  background-color: #F3F3F3;
  margin: 0 auto;
  max-width: 540px;
  padding: 16px 0 20px;
  width: 94.6666666667%;
}

.p-search-result-query__content {
  position: relative;
}

.p-search-result-query__heading {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 12px;
}

.p-search-result-query__condition {
  background-color: #fff;
  font-size: 12px;
  padding: 8px 10px;
}

.p-search-result-query__change {
  flex-shrink: 0;
  max-width: 150px;
}

.p-search-result-query__change > a {
  font-size: 10px;
  min-width: unset;
  padding: 5px 18px;
}

.p-search-result-query__count {
  background-color: #00E600;
  border-radius: 5px;
  bottom: 0;
  font-size: 10px;
  font-weight: 600;
  padding: 4px 8px;
  position: fixed;
  right: 56px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 10;
}

.p-search-result-query__count span {
  display: inline-block;
  font-size: 15px;
  margin: 0 2px 0 0;
}

.p-search-result-pager {
  padding: 20px 0;
}

.p-search-result-pager__content {
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
}

.p-search-result-pager__lead {
  font-size: 10px;
  font-weight: 600;
  grid-column: 1/2;
  grid-row: 1/2;
  line-height: 1.2;
  position: relative;
}

.p-search-result-pager__lead > span {
  display: inline-block;
  font-size: 1.7em;
  padding: 0 0.2em;
}

.p-search-result-pager__num {
  display: flex;
  grid-column: 2/3;
  grid-row: 1/2;
  justify-content: center;
  justify-self: right;
  margin: 0 0 16px;
}

.p-search-result-pager__num .num {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.2;
}

.p-search-result-pager__num .num span {
  font-size: 1.4em;
  margin: 0 2px;
}

.p-search-result-pager__num .slash {
  -webkit-transform: rotate(45deg);
  background-color: #000;
  display: block;
  height: 30px;
  margin: 0 8px 0 10px;
  transform: rotate(45deg);
  width: 1px;
}

.p-search-result-pager .p-pagination {
  grid-column: 1/3;
  grid-row: 2/3;
  width: auto;
}

.p-search-result-pager .p-pagination .wp-pagenavi {
  margin-top: 0;
}

.p-search-result-map {
  margin: 0 0 10px;
}

.p-search-result-map__content {
  background-color: #F3F3F3;
}

.p-search-result-map__heading {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  padding: 20px;
  position: relative;
}

.p-search-result-map__heading::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border: 3px solid transparent;
  border-bottom-color: #00E600;
  border-left-color: #00E600;
  content: "";
  display: block;
  height: 12px;
  left: auto;
  position: absolute;
  right: 20px;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(-45deg);
  width: 12px;
}

.p-search-result-map__heading > span {
  background: transparent url(../img/common/icon_map.webp) no-repeat left center/21px auto;
  display: inline-block;
  padding-left: 36px;
}

.p-search-result-map__heading.is-open::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  top: calc(50% + 2px);
  transform: translateY(-50%) rotate(135deg);
}

.p-search-result-line {
  margin: 0 0 10px;
}

.p-search-result-line__content {
  background-color: #F3F3F3;
}

.p-search-result-line__heading {
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  padding: 20px;
  position: relative;
}

.p-search-result-line__heading::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border: 3px solid transparent;
  border-bottom-color: #00E600;
  border-left-color: #00E600;
  content: "";
  display: block;
  height: 12px;
  left: auto;
  position: absolute;
  right: 20px;
  top: calc(50% - 2px);
  transform: translateY(-50%) rotate(-45deg);
  width: 12px;
}

.p-search-result-line__heading > span {
  background: transparent url(../img/common/icon_station.webp) no-repeat left center/21px auto;
  display: inline-block;
  padding-left: 36px;
}

.p-search-result-line__heading.is-open::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  top: calc(50% + 2px);
  transform: translateY(-50%) rotate(135deg);
}

.p-search-result-line__main {
  display: none;
  padding: 5px 40px 30px;
}

.p-search-result-line__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 0 10px;
}

.p-search-result-line__item {
  display: block;
  line-height: 1.2;
  width: calc(50% - 5px);
}

.p-search-result-line__item a {
  border-bottom: 1px solid #000;
}

.p-search-result-line__item a:hover {
  opacity: 0.7;
}

.p-search-result-line .c-checkbox + span::after {
  opacity: 0 !important;
}

.p-search-result-posts {
  background-color: #F3F3F3;
  padding: 28px 0 60px;
}

.p-search-result-posts .c-section-subheading {
  margin: 0 0 28px 10px;
}

.p-search-result-posts__sort {
  position: absolute;
  right: 10px;
  top: -1px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  z-index: 5;
}

.p-search-result-posts__cards {
  flex-direction: column;
  gap: 8px;
}

.p-search-result-posts__cards .p-sharehouse-card {
  width: 100%;
}

.p-search-result-posts__pagination > .l-inner {
  padding-left: 0;
  padding-right: 0;
}

.p-search-result-posts__related {
  margin: 40px 0 0;
  padding: 0 10px;
}

.p-search-result-related-posts-content:not(:last-child) {
  margin-bottom: 28px;
}

.p-search-result-related-posts-content__title {
  border-bottom: 2px solid #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  padding-bottom: 4px;
}

.p-search-result-related-posts-content__cards {
  gap: 5px !important;
}

.p-search-result-related-posts-content__cards .p-sharehouse-card,
.p-search-result-related-posts-content__cards .p-post-card {
  width: 100%;
}

.p-search-result-sort {
  font-size: 12px;
  font-weight: 600;
  min-width: 152px;
}

.p-search-result-sort:hover .p-search-result-sort__list {
  display: block;
}

.p-search-result-sort__current {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 8px;
  margin-bottom: 4px;
}

.p-search-result-sort__current::before {
  background: transparent url(../img/common/icon_sort.webp) no-repeat center center/contain;
  content: "";
  display: block;
  height: 18px;
  width: 21px;
}

.p-search-result-sort__list {
  background-color: #fff;
  border: 2px solid #000;
  display: none;
  line-height: 2.5;
  padding: 16px 12px 16px 20px;
  position: relative;
  z-index: 1;
}

.p-search-result-sort__list a:hover {
  color: #009F00;
}

.p-single-param-content__info {
  background-color: #F3F3F3;
  padding: 36px 0 36px;
}

.p-single-param-content__item:not(:last-child) {
  margin-bottom: 40px;
}

.p-single-param-content__guidance {
  background-color: #fff;
  padding: 56px 0;
}

.p-single-param-content__guidance .desc {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 auto;
  max-width: 612px;
}

.p-single-param-content-item__title {
  border-bottom: 3px solid #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  padding-bottom: 4px;
}

.p-single-param-content-item__image img {
  width: 100%;
}

.p-single-param-content-item__row:not(:last-child) {
  margin-bottom: 30px;
}

.p-single-param-content-item__row .title {
  background-color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0 0 20px;
  padding: 9px 20px;
}

.p-single-param-content-item__row .image img {
  width: 100%;
}

.p-single-param-content-item__row .box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-search-result-no {
  padding: 40px 0 60px;
  text-align: center;
}

.p-search-result-no__form {
  margin: 32px auto 0;
  max-width: 580px;
}

.p-search-result-more {
  background-color: #fff;
  padding: 40px 0;
}

.p-search-result-more__item:not(:last-child) {
  margin-bottom: 28px;
}

.p-search-result-more-item__title {
  border-bottom: 3px solid #000;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 16px;
  padding-bottom: 4px;
}

.p-search-result-more-item__list {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
}

.p-search-result-more-item__list > li {
  font-size: 13px;
}

.p-search-result-more-item__list > li::after {
  content: "|";
  display: inline-block;
  padding: 0 0.5em;
}

.p-search-result-more-item__list > li a:hover {
  opacity: 0.7;
}

.p-privacy__outer {
  background-color: #F3F3F3;
  padding: 30px 0 50px;
}

.p-privacy__item:not(:last-child) {
  margin-bottom: 56px;
}

.p-privacy__item .title {
  border-bottom: 3px solid #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  padding-bottom: 2px;
}

.p-privacy__item .title .num {
  font-size: 24px;
  font-weight: 600;
  margin-right: 8px;
}

.p-privacy__item .desc dl {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-privacy__item .desc dl dt {
  background-color: #ddd;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 20px;
}

.p-privacy__item .desc dl dd {
  font-size: 12px;
  line-height: 1.5;
  padding: 10px 20px 0;
}

.p-privacy__item .desc ol {
  padding: 0 0 0 1.5em;
}

.p-privacy__item .desc ol li {
  list-style: decimal;
}

.p-privacy__item .desc ol li::marker {
  font-weight: 600;
}

.p-privacy__item .desc ol li:not(:last-child) {
  margin-bottom: 48px;
}

.p-privacy__sign {
  padding: 50px 0 0;
}

.p-contact__outer {
  background-color: #F3F3F3;
  padding: 20px 0 60px;
}

.p-contact.m-confirm {
  padding: 0 0 60px;
}

.p-contact.m-thanks {
  padding: 0 0 60px;
}

.p-contact.m-application-form .p-contact__outer {
  background-color: transparent;
}

.p-contact.m-application-form .p-contact-steps {
  background-color: #F3F3F3;
}

.p-contact-steps {
  background-color: #fff;
  margin: 0 auto;
  max-width: 454px;
  padding: 14px 20px 16px;
}

.p-contact-steps__list {
  display: flex;
  justify-content: space-between;
}

.p-contact-steps__item {
  position: relative;
  text-align: center;
  width: calc(33.33% - 21.3333333333px);
}

.p-contact-steps__item:not(:last-child)::after {
  -webkit-transform: translate(50%, -50%) rotate(-135deg);
  border: 3px solid transparent;
  border-bottom-color: #ddd;
  border-left-color: #ddd;
  content: "";
  display: block;
  height: 26px;
  left: auto;
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translate(50%, -50%) rotate(-135deg);
  width: 26px;
}

.p-contact-steps__item > .num {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 0 0 8px;
}

.p-contact-steps__item > .text {
  display: block;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.p-contact-steps__item.is-current {
  color: #009F00;
}

.p-contact-form {
  margin: 0 auto;
}

.p-contact-form__lead {
  font-size: 12px;
  line-height: 1.5;
}

.p-contact-form__lead.m-homehub {
  font-size: 15px;
  line-height: 1.8;
  text-align: center;
}

.p-contact-form__items {
  margin: 0 auto;
  max-width: 612px;
  width: 100%;
}

.p-contact-form__category:not(:last-child) {
  margin-bottom: 30px;
}

.p-contact-form__cat-title {
  border-bottom: 3px solid #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  padding: 0 0 4px 0;
}

.p-contact-form__item {
  display: block;
  margin: 0 0 28px;
}

.p-contact-form__item.m-col-2 {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px 20px;
}

.p-contact-form__item .title {
  align-items: flex-start;
  display: flex;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 12px;
}

.p-contact-form__item .data {
  display: block;
  font-size: 16px;
}

.p-contact-form__item .data .unit {
  font-size: 16px;
  font-weight: 600;
  margin-left: 10px;
}

.p-contact-form__item .data.m-small input {
  max-width: 216px;
}

.p-contact-form__item .data.m-medium input {
  max-width: 300px;
}

.p-contact-form__item .data.m-col-2 {
  display: flex;
  gap: 20px;
}

.p-contact-form__item .data.m-col-2 > * {
  width: calc(50% - 10px);
}

.p-contact-form__item .data.m-flex {
  align-items: center;
  display: flex;
}

.p-contact-form__item .data.m-radio .mwform-radio-field {
  margin-left: 0;
}

.p-contact-form__item .data.m-checkbox .mwform-checkbox-field {
  margin-left: 0;
}

.p-contact-form__item .data.m-age > input {
  width: 98px;
}

.p-contact-form__item .data.m-birthday {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.p-contact-form__item .data.m-birthday > * {
  align-items: center;
  display: flex;
}

.p-contact-form__item .data.m-birthday input {
  max-width: 120px;
}

.p-contact-form__item .data.m-address > .zip {
  align-items: center;
  display: flex;
}

.p-contact-form__item .data.m-address > .zip .icon {
  font-size: 16px;
  font-weight: 600;
  margin-right: 10px;
}

.p-contact-form__item .data.m-address > .zip input {
  max-width: 217px;
}

.p-contact-form__item .data.m-address > .address {
  margin: 10px 0 0;
}

.p-contact-form__item .data.m-other {
  display: flex;
  flex-wrap: wrap;
  gap: 0 12px;
}

.p-contact-form__item .data.m-other .mwform-checkbox-field {
  margin-left: 0;
}

.p-contact-form__item .policy-checks {
  margin: 30px auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-contact-form__item .policy-checks .mwform-checkbox-field {
  display: block;
}

.p-contact-form__item .policy-checks .mwform-checkbox-field:not(:last-child) {
  margin-bottom: 16px;
}

.p-contact-form__item .policy-checks .c-checkbox + span {
  font-size: 15px;
  font-weight: 600;
  padding-left: 2.5em;
}

.p-contact-form__item .policy-checks .c-checkbox + span::before,
.p-contact-form__item .policy-checks .c-checkbox + span::after {
  -webkit-transform: translateY(-50%);
  top: 50%;
  transform: translateY(-50%);
}

.p-contact-form__item .policy-checks .c-checkbox + span::before {
  border-width: 2px;
  height: 26px;
  width: 26px;
}

.p-contact-form__item .policy-checks .c-checkbox + span::after {
  height: 22px;
  left: 2px;
  width: 22px;
}

.p-contact-form__item .policy {
  background-color: #fff;
  border: 2px solid #000;
  max-height: 260px;
  overflow-y: scroll;
  padding: 36px 20px;
}

.p-contact-form__item .policy ol {
  counter-reset: item;
  list-style-type: none;
}

.p-contact-form__item .policy ol > li {
  line-height: 1.5;
  position: relative;
}

.p-contact-form__item .policy ol > li::before {
  align-items: center;
  content: counter(item) ".";
  counter-increment: item;
  display: inline-flex;
  font-size: 20px;
  font-weight: 600;
  justify-content: center;
  left: 0;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: 2px;
}

.p-contact-form__item .policy ol > li:not(:last-child) {
  margin-bottom: 48px;
}

.p-contact-form__item .policy ol > li .subtitle {
  border-bottom: 3px solid #000;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px;
  padding-bottom: 12px;
  padding-left: 30px;
}

.p-contact-form__item .policy ol > li .text {
  font-size: 12px;
}

.p-contact-form__box {
  background-color: #fff;
  padding: 16px 20px;
}

.p-contact-form__box.m-alert {
  background-color: #EECDCD;
}

.p-contact-form__box.m-alert .lead {
  color: #FF0000;
  font-weight: 600;
}

.p-contact-form__caution {
  background-color: #EDCDCD;
  color: #FF0000;
  font-weight: 600;
  padding: 16px 20px;
}

.p-contact-form__required {
  border: 2px solid #00E600;
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  margin: 0 10px 0 0;
  padding: 3px 6px;
}

.p-contact-form__required.m-option {
  background-color: #535353;
  border-color: #535353;
  color: #fff;
}

.p-contact-form__notion {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.3;
  margin: 16px 0 0;
}

.p-contact-form__notion.m-alert {
  color: #FF0000;
}

.p-contact-form__notion.m-item-title-bottom {
  margin: -6px 0 12px;
}

.p-contact-form__count {
  font-size: 12px;
  text-align: right;
}

.p-contact-form__policy .text {
  font-size: 13px;
  font-weight: 600;
}

.p-contact-form__policy .text a {
  border-bottom: 2px solid #00E600;
  padding-bottom: 3px;
}

.p-contact-form__policy .text a:hover {
  color: #009F00;
}

.p-contact-form__policy .c-checkbox + span::before,
.p-contact-form__policy .c-checkbox + span::after {
  -webkit-transform: translateY(-50%);
  top: 50%;
  transform: translateY(-50%);
}

.p-contact-form__btns {
  margin: 40px 0 0;
  text-align: center;
}

.p-contact-form__more {
  background-color: #fff;
  padding: 20px;
}

.p-contact-form__more .p-contact-form__notion {
  line-height: 1.5;
  margin: 0 0 28px;
}

.p-contact-form__more .p-contact-form__item:nth-of-type(3),
.p-contact-form__more .p-contact-form__item:nth-of-type(4) {
  width: 100%;
}

.p-contact-form__more .p-contact-form__item:nth-of-type(3) .data,
.p-contact-form__more .p-contact-form__item:nth-of-type(4) .data {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
}

.p-contact-form__more .p-contact-form__item:nth-of-type(3) .data .mwform-checkbox-field,
.p-contact-form__more .p-contact-form__item:nth-of-type(4) .data .mwform-checkbox-field {
  margin: 0 !important;
  width: calc(50% - 4px);
}

.p-contact-form .p-country-name {
  display: none;
}

.p-contact-form.m-application-form .p-contact-form__content:not(:last-child) {
  margin-bottom: 32px;
}

.p-contact-form.m-application-form .p-contact-form__subheading {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 32px;
  padding: 0 0 0 40px;
  position: relative;
}

.p-contact-form.m-application-form .p-contact-form__subheading::before {
  background: transparent url(../img/common/deco_heading.webp) no-repeat left center/contain;
  content: "";
  display: inline-block;
  height: 30px;
  left: -10px;
  position: absolute;
  top: -3px;
  width: 40px;
}

.p-contact-form.m-application-form .p-contact-form__content-lead {
  font-weight: 600;
  margin: 0 0 30px;
  text-align: center;
}

.p-contact-form.m-application-form .p-contact-form__content-lead.m-radio .mwform-radio-field {
  margin-left: 0;
}

.p-contact-form.m-application-form .p-contact-form__content-inner {
  background-color: #F3F3F3;
  margin: 0 calc(50% - 50vw);
  padding: 30px 20px 32px;
}

.p-contact-form__luup {
  font-size: 12px;
  text-align: right;
}

.p-contact-form__luup a {
  color: #0877B6;
  text-decoration: underline;
}

.mw_wp_form_input .p-contact-steps > ol > li:nth-child(1) {
  color: #009F00;
}

.mw_wp_form_input .m-confirm {
  display: none !important;
}

.mw_wp_form_confirm .p-contact-steps > ol > li:nth-child(2) {
  color: #009F00;
}

.mw_wp_form_confirm .p-contact-form__box {
  background-color: transparent;
  padding: 0;
}

.mw_wp_form_confirm .p-contact-form__btns {
  align-items: center;
  display: flex;
  flex-direction: column-reverse;
  gap: 20px;
}

.mw_wp_form_confirm .m-input,
.mw_wp_form_confirm .p-contact-form__notion,
.mw_wp_form_confirm .p-contact-form__policy,
.mw_wp_form_confirm .p-contact-form__more > .text {
  display: none !important;
}

.mw_wp_form_complete .p-contact-steps > ol > li:nth-child(3) {
  color: #009F00;
}

.mw_wp_form_complete .m-input,
.mw_wp_form_complete .m-confirm {
  display: none !important;
}

.p-contact-thanks__title {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0 1em;
  text-align: center;
}

.p-contact-thanks__tel {
  margin: 28px 0;
  text-align: center;
}

.p-contact-thanks__tel > a {
  background-color: #fff;
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  padding: 8px 10px;
}

.p-contact-thanks__tel > a span {
  background: transparent url(../img/common/icon_tel.webp) no-repeat left center/20px auto;
  display: inline-block;
  padding-left: 30px;
}

.p-id-card-list {
  margin: 0 auto;
  max-width: 772px;
}

.p-id-card-list__head {
  display: none;
  position: relative;
}

.p-id-card-list__type {
  align-items: center;
  background-color: #000;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 700;
  height: 110px;
  justify-content: center;
  padding: 4px 12px;
  text-align: center;
  width: 148px;
}

.p-id-card-list__type span {
  display: block;
}

.p-id-card-list__type span:nth-child(2) {
  font-size: 10px;
  font-weight: 300;
  line-height: 1.4;
  text-align: left;
}

.p-id-card-list__type.m-foreign {
  height: 70px;
}

.p-id-card-list__item:not(:last-child) {
  margin-bottom: 20px;
}

.p-id-card-list__title {
  background-color: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 18.5px;
  position: relative;
  text-align: center;
}

.p-id-card-list__body {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
}

.p-id-card-list__body > .item > .files {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 148px;
}

.p-id-card-list__body > .item > .files > .file {
  background-color: #fff;
  border: 2px solid #000;
  cursor: pointer;
  display: block;
  height: 128px;
  padding: 13px 2px 8px 15px;
  position: relative;
}

.p-id-card-list__body > .item > .files > .file::before,
.p-id-card-list__body > .item > .files > .file::after {
  -webkit-transform: translateY(-50%);
  background-color: #00E600;
  content: "";
  display: block;
  height: 3px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
}

.p-id-card-list__body > .item > .files > .file::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.p-id-card-list__body > .item > .files > .file > .title {
  font-weight: 700;
  line-height: 1;
  margin: 0 0 4px;
}

.p-id-card-list__body > .item > .files > .file > .text {
  font-size: 12px;
  line-height: 1;
}

.p-id-card-list__body > .item > .files > .file > .text::before {
  content: attr(data-not-attached);
}

.p-id-card-list__body > .item > .files > .file.is-attached {
  background-color: #00E600;
}

.p-id-card-list__body > .item > .files > .file.is-attached::before,
.p-id-card-list__body > .item > .files > .file.is-attached::after {
  background-color: #fff;
}

.p-id-card-list__body > .item > .files > .file.is-attached::after {
  content: none;
}

.p-id-card-list__body > .item > .files > .file.is-attached > .text::before {
  content: attr(data-attached);
}

.p-id-card-list__body > .item > .files > .file.is-confirm > .text::before {
  content: attr(data-confirm);
}

.p-id-card-list__body > .item > .files > .file input {
  display: none;
}

.p-id-card-list__body > .item > .files > .file .mwform-file-delete {
  display: none;
}

.p-id-card-list__body > .item > .files > .none {
  align-items: center;
  background-color: #fff;
  display: flex;
  font-size: 12px;
  height: 128px;
  justify-content: center;
}

.p-id-card-list__body > .item > .files.m-row-1 > .file {
  padding-top: 48px;
}

.p-id-card-list__body > .item > .files.m-row-2 > .file {
  height: 60px;
  padding-top: 13px;
}

.single-sharehouse {
  background-color: #F3F3F3;
}

.p-sharehouse {
  background-color: #fff;
  margin: 0 auto;
  max-width: 960px;
  padding: 20px 0 50px;
}

.p-sharehouse__head {
  margin: 0 0 30px;
  position: relative;
}

.p-sharehouse__head .l-inner {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(2, auto);
  padding-bottom: 20px;
  padding-top: 20px;
}

.p-sharehouse__head .c-favorite-btn {
  grid-column: 2/3;
  grid-row: 1/2;
  justify-self: end;
}

.p-sharehouse__head .c-btn {
  margin: 15px auto 0;
  max-width: 520px;
  position: relative;
  width: calc(100% - 40px);
  z-index: 1;
}

.p-sharehouse__head .c-btn > a {
  min-width: 256px;
}

.p-sharehouse__title {
  font-size: 20px;
  font-weight: 600;
  grid-column: 1/2;
  grid-row: 1/2;
  line-height: 1.5;
}

.p-sharehouse__id {
  color: #535353;
  font-size: 12px;
  grid-column: 1/3;
  grid-row: 2/3;
  line-height: 1.5;
}

.p-sharehouse__gallery {
  margin: 0 auto !important;
  max-width: 1000px;
  position: relative;
}

.p-sharehouse__gallery > .swiper > .swiper-wrapper > .swiper-slide {
  height: clamp(220px, 66.1333333333vw, 264px) !important;
  margin: 0;
  position: relative;
}

.p-sharehouse__gallery > .swiper > .swiper-wrapper > .swiper-slide img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.p-sharehouse__thumbnail {
  margin: 10px auto 0;
  max-width: 1000px;
  position: relative;
}

.p-sharehouse__thumbnail > .swiper {
  width: 62.6666666667%;
}

.p-sharehouse__thumbnail > .swiper > .swiper-wrapper > .swiper-slide {
  cursor: pointer;
  height: clamp(44px, 13.3333333333vw, 72px) !important;
  margin: 0;
  position: relative;
}

.p-sharehouse__thumbnail > .swiper > .swiper-wrapper > .swiper-slide::before {
  background-color: rgba(0, 0, 0, 0.4);
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-sharehouse__thumbnail > .swiper > .swiper-wrapper > .swiper-slide img {
  -o-object-fit: contain;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.p-sharehouse__thumbnail > .swiper > .swiper-wrapper > .swiper-slide.swiper-slide-thumb-active {
  border: 2px solid #00E600;
}

.p-sharehouse__thumbnail > .swiper > .swiper-wrapper > .swiper-slide.swiper-slide-thumb-active::before {
  content: none;
}

.p-sharehouse__thumbnail > .swiper-button-prev,
.p-sharehouse__thumbnail > .swiper-button-next {
  color: #ddd;
}

.p-sharehouse__thumbnail > .swiper-button-prev::before,
.p-sharehouse__thumbnail > .swiper-button-prev::after,
.p-sharehouse__thumbnail > .swiper-button-next::before,
.p-sharehouse__thumbnail > .swiper-button-next::after {
  font-size: 40px;
}

.p-sharehouse__thumbnail > .swiper-button-prev:focus,
.p-sharehouse__thumbnail > .swiper-button-next:focus {
  outline: 0;
}

.p-sharehouse__thumbnail > .swiper-button-prev:hover,
.p-sharehouse__thumbnail > .swiper-button-next:hover {
  color: #00E600 !important;
}

.p-sharehouse__thumbnail > .swiper-button-prev {
  left: 20px;
}

.p-sharehouse__thumbnail > .swiper-button-next {
  right: 20px;
}

.p-sharehouse__status {
  background-color: #00E600;
  font-size: 12px;
  font-weight: 600;
  left: 0;
  line-height: 1;
  padding: 11px 20px;
  position: absolute;
  top: 0;
  z-index: 2;
}

.p-sharehouse__rent {
  background-color: #fff;
  bottom: 0;
  color: #009F00;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 10px;
  position: absolute;
  right: 0;
  z-index: 1;
}

.p-sharehouse__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.p-sharehouse__tags.m-icon {
  gap: 15px 20px;
}

.p-sharehouse__tag {
  border: 1px solid #000;
  border-radius: 200px;
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1;
  padding: 7px 10px;
}

.p-sharehouse__tag.m-icon {
  background: transparent no-repeat left 10px center/15px auto;
  border: 0;
  padding: 0 0 0 30px;
}

.p-sharehouse__tag.m-refrigerator {
  background-size: auto 17px;
}

.p-sharehouse__tag.m-kitchen {
  background-image: url(../img/facility/icon_kitchen.webp);
}

.p-sharehouse__tag.m-wc {
  background-image: url(../img/facility/icon_wc.webp);
}

.p-sharehouse__tag.m-shower {
  background-image: url(../img/facility/icon_shower.webp);
}

.p-sharehouse__tag.m-pot {
  background-image: url(../img/facility/icon_pot.webp);
}

.p-sharehouse__tag.m-frying-pan {
  background-image: url(../img/facility/icon_frying-pan.webp);
}

.p-sharehouse__tag.m-kitchenware {
  background-image: url(../img/facility/icon_kitchenware.webp);
}

.p-sharehouse__tag.m-microwave-oven {
  background-image: url(../img/facility/icon_microwave-oven.webp);
}

.p-sharehouse__tag.m-toaster {
  background-image: url(../img/facility/icon_toaster.webp);
}

.p-sharehouse__tag.m-rice-cooker {
  background-image: url(../img/facility/icon_rice-cooker.webp);
}

.p-sharehouse__tag.m-kettle {
  background-image: url(../img/facility/icon_kettle.webp);
}

.p-sharehouse__tag.m-washing-machine {
  background-image: url(../img/facility/icon_washing-machine.webp);
}

.p-sharehouse__tag.m-hairdryer {
  background-image: url(../img/facility/icon_hairdryer.webp);
}

.p-sharehouse__tag.m-bicycle-parking {
  background-image: url(../img/facility/icon_bicycle-parking.webp);
}

.p-sharehouse__tag.m-communal-mailbox {
  background-image: url(../img/facility/icon_communal-mailbox.webp);
}

.p-sharehouse__tag.m-dryer {
  background-image: url(../img/facility/icon_dryer.webp);
}

.p-sharehouse__tag.m-motorbike-parking {
  background-image: url(../img/facility/icon_motorbike-parking.webp);
}

.p-sharehouse__tag.m-living-dining {
  background-image: url(../img/facility/icon_living-dining.webp);
}

.p-sharehouse__tag.m-individual-mailbox {
  background-image: url(../img/facility/icon_individual-mailbox.webp);
}

.p-sharehouse__tag.m-refrigerator {
  background-image: url(../img/facility/icon_refrigerator.webp);
}

.p-sharehouse__tag.m-tv {
  background-image: url(../img/facility/icon_tv.webp);
}

.p-sharehouse__tag.m-bed {
  background-image: url(../img/facility/icon_bed.webp);
}

.p-sharehouse__tag.m-desk {
  background-image: url(../img/facility/icon_desk.webp);
}

.p-sharehouse__tag.m-chair {
  background-image: url(../img/facility/icon_chair.webp);
}

.p-sharehouse__tag.m-air-conditioner {
  background-image: url(../img/facility/icon_air-conditioner.webp);
}

.p-sharehouse__tag.m-lighting-equipment {
  background-image: url(../img/facility/icon_lighting-equipment.webp);
}

.p-sharehouse__tag.m-curtain {
  background-image: url(../img/facility/icon_curtain.webp);
}

.p-sharehouse__tag.m-wifi {
  background-image: url(../img/facility/icon_wifi.webp);
}

.p-sharehouse__tag.m-desk-lamp {
  background-image: url(../img/facility/icon_desk-lamp.webp);
}

.p-sharehouse__tag.m-hanger-rack {
  background-image: url(../img/facility/icon_hanger-rack.webp);
}

.p-sharehouse__tag.m-storage {
  background-image: url(../img/facility/icon_storage.webp);
}

.p-sharehouse__tag.m-double-bed {
  background-image: url(../img/facility/icon_double-bed.webp);
}

.p-sharehouse__tag.m-private-room-kitchen {
  background-image: url(../img/facility/icon_private-room-kitchen.webp);
}

.p-sharehouse__panorama {
  background-color: gray;
  height: clamp(210px, 59.2vw, 252px);
  margin: 0 0 20px;
  overflow: hidden;
  position: relative;
}

.p-sharehouse__panorama iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-sharehouse__content h2 {
  border-bottom: 3px solid #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 40px 0 20px;
  padding-bottom: 8px;
}

.p-sharehouse__content h3 {
  font-size: 1em;
  font-weight: 600;
  margin: 1.4em 0;
}

.p-sharehouse__content p {
  font-size: 1em;
  margin: 0 0 1em;
}

.p-sharehouse__content p a {
  -webkit-text-decoration-line: underline;
  -webkit-text-decoration-color: #00E600;
  text-decoration-color: #00E600;
  text-decoration-line: underline;
  text-decoration-thickness: 2px;
}

.p-sharehouse__content p a:hover {
  opacity: 0.75;
}

.p-sharehouse-info__list {
  border: 1px solid #DDDDDD;
  border-bottom: 0;
  margin: 0 0 40px;
}

.p-sharehouse-info__item {
  border-bottom: 1px solid #DDDDDD;
  display: flex;
}

.p-sharehouse-info__name {
  align-items: center;
  background-color: #F3F3F3;
  display: flex;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  width: 60px;
}

.p-sharehouse-info__desc {
  padding: 12px 10px;
}

.p-sharehouse-info__desc.m-sub-color {
  color: #009F00;
}

.p-sharehouse-info__desc.m-fz-large {
  font-size: 18px;
  font-weight: 600;
}

.p-sharehouse-info__desc .p-sharehouse__tags {
  padding: 4px 0;
}

.p-sharehouse-info__map-btn > a {
  font-size: 12px;
  justify-content: flex-start;
  padding: 15px 22px 15px 46px;
}

.p-sharehouse-info__map-btn > a::after {
  -webkit-transform: translateY(-50%);
  background: transparent url(../img/common/icon_map.webp) no-repeat center center/contain;
  content: "";
  display: block;
  height: 18px;
  left: 22px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
}

.p-sharehouse-map-modal {
  -webkit-transform: translate(-50%, -50%);
  background-color: #fff;
  display: none;
  left: 50%;
  max-width: 730px;
  position: fixed;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
  z-index: 1001;
}

.p-sharehouse-map-modal__map {
  height: 221px;
  height: clamp(210px, 58.6666666667vw, 400px);
  width: 100%;
}

.p-sharehouse-map-modal__map img {
  max-width: inherit !important;
}

.p-sharehouse-map-modal__close {
  -webkit-transform: translate(0, -100%);
  border-radius: 50%;
  cursor: pointer;
  height: 50px;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, -100%);
  width: 50px;
}

.p-sharehouse-map-modal__close::before,
.p-sharehouse-map-modal__close::after {
  background-color: #fff;
  border-radius: 999px;
  content: "";
  display: block;
  height: 30px;
  left: 50%;
  position: absolute;
  top: 50%;
  width: 3px;
}

.p-sharehouse-map-modal__close::before {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-sharehouse-map-modal__close::after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-sharehouse-map-modal__layer {
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  z-index: 1000;
}

.p-sharehouse-related-posts {
  background-color: #fff;
  padding: 46px 0 60px;
}

.p-sharehouse-related-posts__cards {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px 20px;
  margin: 54px 0 0;
}

.p-sharehouse-related-posts__cards > article {
  width: calc(50% - 10px);
}

.p-sharehouse-cta {
  align-items: center;
  background-color: #00E600;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  padding: 6px 6px 6px 12px;
  position: fixed;
  width: 100vw;
  z-index: 10;
}

.p-sharehouse-cta .text {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin: 0 6px 0 0;
  position: relative;
}

.p-sharehouse-cta .text::before,
.p-sharehouse-cta .text::after {
  background-color: #fff;
  bottom: 0;
  content: "";
  display: none;
  height: 16px;
  position: absolute;
  width: 3px;
}

.p-sharehouse-cta .text::before {
  -webkit-transform: rotate(-45deg);
  left: -13px;
  transform: rotate(-45deg);
}

.p-sharehouse-cta .text::after {
  -webkit-transform: rotate(45deg);
  right: -11px;
  transform: rotate(45deg);
}

.p-sharehouse-cta .c-btn {
  margin: 0 4px 0 0;
}

.p-sharehouse-cta .c-btn > a {
  font-size: 12px;
  height: 38px;
  letter-spacing: 0.05em;
  min-width: unset;
  padding: 4px;
  width: clamp(86px, 25.0666666667vw, 94px);
}

.p-sharehouse-cta .line {
  margin: 0 4px 0 0;
}

.p-sharehouse-cta .line > a {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 30px;
  color: #06C755;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  height: 38px;
  justify-content: center;
  width: clamp(72px, 23.4666666667vw, 88px);
}

.p-sharehouse-cta .line > a span {
  background: transparent url(../img/common/icon_line_2.webp) no-repeat left center/20px auto;
  display: inline-block;
  padding: 0 0 0 25px;
}

.p-sharehouse-cta .c-favorite-btn {
  gap: 4px;
  height: 38px;
  min-width: unset;
  padding: 4px 6px;
  width: clamp(84px, 25.0666666667vw, 94px);
}

.p-sharehouse-cta .c-favorite-btn::after {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.025em;
  text-align: left;
}

.p-sharehouse-contact {
  background: #F3F3F3 url(../img/other/deco.webp) no-repeat left -172px top 24px/auto 100px;
  margin: 0 calc(50% - 50vw);
  padding: 80px 20px 50px;
  position: relative;
}

.p-sharehouse-contact__inner {
  background-color: #fff;
  margin: 0 auto;
  max-width: 520px;
  padding: 40px 12px 48px;
  position: relative;
}

.p-sharehouse-contact__inner::after {
  background: transparent url(../img/other/icon_contact.webp) no-repeat center center/contain;
  bottom: 0;
  content: "";
  display: block;
  height: 52px;
  position: absolute;
  right: 10px;
  width: 133px;
}

.p-sharehouse-contact__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}

.p-sharehouse-contact__title span {
  display: inline-block;
  position: relative;
}

.p-sharehouse-contact__title span::before,
.p-sharehouse-contact__title span::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 3px;
}

.p-sharehouse-contact__title span::before {
  -webkit-transform: rotate(-45deg);
  left: -24px;
  transform: rotate(-45deg);
}

.p-sharehouse-contact__title span::after {
  -webkit-transform: rotate(45deg);
  right: -22px;
  transform: rotate(45deg);
}

.p-sharehouse-contact__box {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 10px;
}

.p-sharehouse-contact__box .tel > a {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 40px;
  display: inline-flex;
  height: 49px;
  justify-content: center;
  width: 200px;
}

.p-sharehouse-contact__box .tel > a > span {
  background: transparent url(../img/common/icon_tel.webp) no-repeat left center/14px auto;
  display: inline-block;
  font-size: 14px;
  padding: 0 0 0 20px;
}

.p-sharehouse-contact__box .tel > a > span > span {
  font-size: 12px;
}

.p-sharehouse-contact__box .tel > a:hover {
  opacity: 0.7;
}

.p-sharehouse-contact__desc {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.p-sharehouse-cv {
  background: #F3F3F3 url(../img/common/deco_1.webp) no-repeat left top 20px/157px auto;
  margin: 30px calc(50% - 50vw);
  padding: 50px 0;
}

.p-sharehouse-cv__content {
  background: #fff url(../img/common/bg_1.webp) no-repeat right 10px bottom/133px auto;
  background-color: #fff;
  margin: 0 auto;
  max-width: 335px;
  padding: 40px 0 50px;
}

.p-sharehouse-cv__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.2em;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-sharehouse-cv__title::before,
.p-sharehouse-cv__title::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 4px;
}

.p-sharehouse-cv__title::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-sharehouse-cv__title::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-sharehouse-cv__list {
  align-items: center;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
}

.p-sharehouse-cv__item.m-tel > a {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 40px;
  display: inline-flex;
  height: 49px;
  justify-content: center;
  width: 200px;
}

.p-sharehouse-cv__item.m-tel > a > span {
  background: transparent url(../img/common/icon_tel.webp) no-repeat left center/14px auto;
  display: inline-block;
  font-size: 14px;
  padding: 0 0 0 20px;
}

.p-sharehouse-cv__item.m-tel > a > span > span {
  font-size: 12px;
}

.p-sharehouse-cv__item.m-tel > a:hover {
  opacity: 0.7;
}

.p-sharehouse-cv__desc {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-sharehouse-initial-cost {
  background-color: #F3F3F3;
  line-height: 1.5;
  padding: 20px;
}

.p-sharehouse-initial-cost__outer {
  background-color: #fff;
}

.p-sharehouse-initial-cost__title {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 20px;
  position: relative;
}

.p-sharehouse-initial-cost__title::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border: 3px solid transparent;
  border-bottom-color: #00E600;
  border-left-color: #00E600;
  content: "";
  display: block;
  height: 12px;
  left: auto;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
  width: 12px;
}

.p-sharehouse-initial-cost__title.is-open::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.p-sharehouse-initial-cost__body {
  padding: 4px 20px 20px;
}

.p-sharehouse-initial-cost__list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 12px;
}

.p-sharehouse-initial-cost__item {
  align-items: center;
  display: flex;
  font-size: 14px;
  gap: 5px;
  line-height: 1.1;
  width: calc(50% - 6px);
}

.p-sharehouse-initial-cost__item > dt {
  background-color: #DDDDDD;
  border-radius: 4px;
  flex-shrink: 0;
  letter-spacing: 0;
  padding: 3px;
  text-align: center;
  width: 68px;
}

.p-sharehouse-initial-cost__item > dd {
  letter-spacing: 0.05em;
}

.p-sharehouse-initial-cost__sum {
  border-top: 1px solid #000;
  margin: 18px 0 18px;
  padding: 16px 0 0;
}

.p-sharehouse-initial-cost__sum > .price {
  align-items: baseline;
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
}

.p-sharehouse-initial-cost__sum > .caution {
  font-size: 12px;
  margin: 16px 0 0;
}

.p-sharehouse-manager {
  padding: 10px 16px;
}

.p-sharehouse-manager__info {
  margin: 20px 0 45px;
}

.p-sharehouse-manager__logo {
  margin: 0 auto 20px;
  text-align: center;
}

.p-sharehouse-manager__name {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 25px;
  text-align: center;
}

.p-sharehouse-manager__tel {
  text-align: center;
}

.p-sharehouse-manager__tel > a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.p-sharehouse-manager__tel > a > span {
  display: inline-block;
}

.p-sharehouse-manager__tel > a > span:nth-child(1) {
  background: transparent url(../img/common/icon_tel_gray.svg) no-repeat left center/11px auto;
  font-size: 11px;
  margin-right: 4px;
  padding-left: 16px;
}

.p-sharehouse-manager__hours {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  margin: 5px auto 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-sharehouse-manager__subtitle {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 24px !important;
}

.p-sharehouse-bnr {
  display: block;
}

.p-sharehouse-bnr a {
  display: block;
}

.p-sharehouse-bnr img {
  width: 100%;
}

.p-map-search {
  padding: 0 0 60px;
}

.p-map-result__area.is-hide {
  display: none;
}

.p-map-result__showing {
  display: none;
}

.p-map-result__showing.is-show {
  display: block;
}

.p-map-result__back {
  display: none;
}

.p-map-result__back.is-show {
  display: block;
}

.p-map-result.m-search-result {
  display: none;
}

.p-map-result.m-search-result .p-map-result__showing {
  display: block;
}

.p-map-result-showing__inner {
  background-color: #E5FDE5;
  padding: 28px 0 0;
}

.p-map-result-showing__step {
  padding: 0 20px;
}

.p-map-result-showing__head {
  margin: 0 0 4px;
  padding: 0 20px;
}

.p-map-result-showing__map {
  background-color: #F3F3F3;
  height: 300px;
  position: relative;
  position: relative;
  width: 100%;
}

.p-map-result-showing__map > .acf-map {
  height: 100%;
  width: 100%;
}

.p-map-result-showing__map > .acf-map img {
  max-width: inherit !important;
}

.p-map-result-showing__post {
  padding: 30px 0 60px;
}

.p-map-result-showing.m-search-result .p-map-result-showing__inner {
  background-color: transparent;
  padding: 10px 0 0;
}

.p-map-result-showing.m-search-result .p-map-result-showing__main {
  padding: 0;
}

.p-map-result-showing.m-search-result .p-map-result-showing__map {
  height: 284px;
}

.p-map-result-showing.m-search-result .p-map-result-showing__post {
  background-color: #ddd;
}

.p-map-result-post {
  min-height: 274px;
  position: relative;
}

.p-map-result-post__guide {
  -webkit-transform: translate(-50%, -50%);
  font-size: 12px;
  font-weight: 600;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 75%;
}

.p-map-result-area {
  background-color: #E5FDE5;
  padding: 16px 20px 28px;
}

.p-map-result-area__content {
  margin: 0 auto;
  max-width: 372px;
  position: relative;
}

.p-map-result-area__map img {
  width: 100%;
}

.p-map-result-area__item {
  position: absolute;
}

.p-map-result-area__item > button {
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  max-width: 76px;
  min-width: 60px;
  padding: 8px 8px;
  transition: 0.3s;
}

.p-map-result-area__item > button:hover {
  background-color: #333;
  color: #fff;
}

.p-map-result-area__item > button.m-en {
  border-radius: 24px;
  font-size: 12px;
}

.p-map-result-area__item > button.m-ko {
  font-size: 13px;
}

.p-map-result-area__item > button.m-vi {
  border-radius: 24px;
  font-size: 10px;
  letter-spacing: 0;
}

.p-map-result-area__item.m-east {
  right: clamp(40px, 12.5333333333vw, 64px);
  top: clamp(80px, 22.9333333333vw, 93px);
}

.p-map-result-area__item.m-west {
  left: clamp(30px, 9.6vw, 44px);
  top: clamp(110px, 32vw, 135px);
}

.p-map-result-area__item.m-south {
  bottom: clamp(62px, 19.2vw, 82px);
  left: clamp(106px, 30.9333333333vw, 130px);
}

.p-map-result-area__item.m-north {
  left: clamp(102px, 29.8666666667vw, 125px);
  top: clamp(53px, 16.8vw, 74px);
}

.p-map-result-area__item.m-middle {
  left: clamp(96px, 28.2666666667vw, 122px);
  top: clamp(138px, 39.4666666667vw, 166px);
}

.p-map-result-step {
  align-items: center;
  display: flex;
  gap: 10px;
}

.p-map-result-step__num {
  background-color: #009F00;
  color: #fff;
  flex-shrink: 0;
  font-size: 10px;
  letter-spacing: 0.1em;
  padding: 2px 14px;
}

.p-map-result-step__text {
  line-height: 1.4;
}

.p-map-result-step__text > h2 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.p-map-result-step__text > .small {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-map-search-btns {
  display: flex;
  gap: 15px;
}

.p-map-search-btns > li .c-radio + span {
  font-size: 14px;
  margin: 0;
  padding-left: 25px;
}

.p-map-search-btns > li .c-radio + span::before {
  height: 20px;
  width: 20px;
}

.p-map-search-btns > li .c-radio + span::after {
  height: 10px;
  left: 5px;
  width: 10px;
}

.p-map-result-flgs {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.p-map-result-flgs > li span {
  background: transparent no-repeat left center/17px auto;
  font-size: 12px;
  padding: 6px 0 6px 23px;
}

.p-map-result-flgs > li span.m-empty {
  background-image: url(../img/common/icon_marker_2.webp);
}

.p-map-result-flgs > li span.m-all {
  background-image: url(../img/common/icon_marker_noempty_2.webp);
}

.p-flow__outer {
  background-color: #F3F3F3;
  padding: 48px 0 0;
}

.p-flow__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-flow-item {
  background-color: #fff;
  padding: 36px 20px 30px;
  position: relative;
}

.p-flow-item:not(:last-child)::after {
  -webkit-transform: translate(-50%, 100%) rotate(90deg);
  background: transparent url(../img/common/arrow.webp) no-repeat center center/contain;
  bottom: -10px;
  content: "";
  display: block;
  height: 30px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 100%) rotate(90deg);
  width: 30px;
  z-index: 1;
}

.p-flow-item__num {
  -webkit-transform: translate(18px, -50%);
  color: #00E600;
  font-size: 40px;
  font-weight: 600;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 0;
  transform: translate(18px, -50%);
}

.p-flow-item__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 1em;
}

.p-flow-item__btns {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-flow-btn > a {
  font-size: 14px;
  min-width: 244px;
}

.p-flow-btn > a:hover {
  opacity: 0.7;
}

.p-flow-btn > a::before {
  content: none;
}

.p-flow-btn.m-search > a {
  background-color: #00E600;
  border: 2px solid #00E600;
  color: #000;
  padding: 18.5px 16px;
}

.p-flow-btn.m-search > a > span {
  background: transparent url(../img/common/icon_search_black.svg) no-repeat left center/15px auto;
  display: inline-block;
  padding-left: 20px;
}

.p-flow-btn.m-contact > a {
  background-color: #000;
  color: #fff;
  flex-direction: column;
  padding: 7px 16px 13px;
}

.p-flow-btn.m-contact > a > span {
  display: inline-block;
}

.p-flow-btn.m-contact > a > span:nth-child(1) {
  font-size: 11px;
  font-weight: 300;
  margin: 0 0 2px;
}

.p-flow-btn.m-contact > a > span:nth-child(2) {
  background: transparent url(../img/common/icon_contact_white.svg) no-repeat left center/15px auto;
  padding-left: 20px;
}

.p-flow-search {
  background: transparent url(../img/about/deco_1.webp) no-repeat left top/157px auto;
  margin: 30px 0 0;
  padding: 30px 0 0;
}

.p-flow-search__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.2em;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-flow-search__title::before,
.p-flow-search__title::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 4px;
}

.p-flow-search__title::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-flow-search__title::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-flow-search__content {
  background: #fff url(../img/about/bg_1.webp) no-repeat right 10px bottom/133px auto;
  background-color: #fff;
  margin: 0 auto;
  max-width: 335px;
  padding: 40px 20px 40px;
}

.p-flow-search__btns {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 30px 0 0;
}

.p-faq__outer {
  background-color: #F3F3F3;
  padding: 20px 0 0;
}

.p-faq__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.p-faq-item {
  background-color: #fff;
  padding: 0 20px;
  position: relative;
}

.p-faq-item__question {
  cursor: pointer;
  font-weight: 600;
  padding: 14px 40px 14px 0;
  position: relative;
}

.p-faq-item__question::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border: 3px solid transparent;
  border-bottom-color: #00E600;
  border-left-color: #00E600;
  content: "";
  display: block;
  height: 12px;
  left: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.3s;
  width: 12px;
}

.p-faq-item__question.is-open::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.p-faq-item__answer {
  display: none;
  padding: 5px 0 14px;
}

.p-faq-glossary__inner {
  background: #F3F3F3 url(../img/about/deco_1.webp) no-repeat left top/157px auto;
  padding: 60px 0 0;
}

.p-faq-glossary__content {
  background: #fff url(../img/about/bg_1.webp) no-repeat right 10px bottom/133px auto;
  background-color: #fff;
  margin: 0 auto;
  max-width: 335px;
  padding: 40px 0 54px;
}

.p-faq-glossary__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}

.p-company__outer {
  background-color: #F3F3F3;
  padding: 20px 0 60px;
}

.p-company-item {
  position: relative;
}

.p-company-item__title {
  background-color: #ddd;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 20px;
}

.p-company-item__desc {
  padding: 8px 20px 14px;
}

.p-company-item__desc .external {
  font-size: 12px;
  font-weight: 300;
}

.p-company-item__desc .external > span {
  background: transparent url(../img/common/icon_link.webp) no-repeat left center/13px auto;
  padding-left: 1.5em;
}

.p-sitemap__outer {
  background-color: #F3F3F3;
  padding: 30px 0 60px;
}

.p-sitemap__item {
  border-bottom: 1px solid #ddd;
  position: relative;
}

.p-sitemap__item:first-child {
  border-top: 1px solid #ddd;
}

.p-sitemap__item a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 11px 10px;
}

.p-favorites__count-box {
  padding: 4px 0 20px;
}

.p-favorites__count {
  align-items: center;
  display: flex;
  justify-content: center;
}

.p-favorites__count svg {
  fill: #00E600;
  display: block;
  margin: 0 10px 0 0;
  width: 21px;
}

.p-favorites__count .text {
  font-size: 12px;
  font-weight: 600;
}

.p-favorites__count .text span {
  font-size: 18px;
  margin: 0 4px 0 0;
}

.p-glossary {
  padding: 0;
}

.p-glossary__lead {
  font-size: 12px;
  margin: 16px 0;
}

.p-glossary__outer {
  background-color: #F3F3F3;
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 0 60px;
}

.p-glossary__outer.m-single {
  max-width: none;
  padding: 40px 0;
}

.p-glossary__content {
  padding-top: 28px;
}

.p-glossary-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 15px 20px;
}

.p-glossary-categories > li {
  width: calc(33.33% - 13.3333333333px);
}

.p-glossary-categories > li a {
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 200px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 9px 8px;
  padding-left: 25.5102040816%;
  position: relative;
}

.p-glossary-categories > li a::after {
  -webkit-transform: translateY(-50%);
  background: transparent url(../img/common/arrow_under.webp) no-repeat center center/contain;
  content: "";
  display: block;
  height: 9px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
}

.p-glossary-categories > li a:hover {
  background-color: #000;
  color: #fff;
}

.p-glossary-categories.m-no-arrow > li a {
  padding-left: 8px;
  text-align: center;
}

.p-glossary-categories.m-no-arrow > li a::after {
  content: none;
}

.p-glossary-content__heading {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 16px -30px;
  padding: 0 0 0 50px;
  position: relative;
}

.p-glossary-content__heading::before {
  -webkit-transform: translateY(-50%);
  background: transparent url(../img/common/deco_heading.webp) no-repeat left center/contain;
  content: "";
  display: inline-block;
  height: 30px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
}

.p-glossary-content__post:not(:last-child) {
  margin-bottom: 5px;
}

.p-glossary-post-card {
  background-color: #fff;
  padding: 0 20px;
}

.p-glossary-post-card__link {
  display: block;
}

.p-glossary-post-card__link:hover {
  opacity: 0.7;
}

.p-glossary-post-card__title {
  font-size: 15px;
  font-weight: 600;
  padding: 16px 0;
  position: relative;
}

.p-glossary-post-card__title::after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  border: 3px solid transparent;
  border-bottom-color: #00E600;
  border-left-color: #00E600;
  content: "";
  display: block;
  height: 12px;
  left: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
  transition: 0.3s;
  width: 12px;
}

.p-glossary-single {
  background-color: #fff;
  padding: 20px;
}

.p-glossary-single__title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 20px;
}

.p-glossary-single__title > span {
  display: inline-block;
  padding: 1px 40px;
  position: relative;
}

.p-glossary-single__title > span::before,
.p-glossary-single__title > span::after {
  -webkit-transform: translateY(-50%);
  background: transparent url(../img/common/deco_2.webp) no-repeat center center/contain;
  content: "";
  display: block;
  height: 30px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}

.p-glossary-single__title > span::before {
  left: 0;
}

.p-glossary-single__title > span::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
  right: 0;
  transform: translateY(-50%) rotate(180deg);
}

.p-contract .c-section-heading {
  margin-bottom: 44px;
}

.p-contract__outer {
  padding: 48px 0 60px;
}

.p-contract__outer:nth-child(2) {
  background-color: #F3F3F3;
  padding: 48px 0 40px;
}

.p-contract__outer:nth-child(3) {
  padding: 48px 0 0;
}

.p-contract__steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-contract__list {
  margin: 0 0 60px;
}

.p-contract__item:not(:last-child) {
  margin-bottom: 60px;
}

.p-contract__btn-outer {
  background-color: #F3F3F3;
  margin: 0 auto;
  max-width: 928px;
  padding: 60px 20px;
  text-align: center;
}

.p-contract #js-apply-btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.p-contract-step {
  background-color: #fff;
  padding: 36px 20px 30px;
  position: relative;
}

.p-contract-step:not(:last-child)::after {
  -webkit-transform: translate(-50%, 100%) rotate(90deg);
  background: transparent url(../img/common/arrow.webp) no-repeat center center/contain;
  bottom: -10px;
  content: "";
  display: block;
  height: 30px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 100%) rotate(90deg);
  width: 30px;
  z-index: 1;
}

.p-contract-step__num {
  -webkit-transform: translate(18px, -50%);
  color: #00E600;
  font-size: 40px;
  font-weight: 600;
  left: 0;
  line-height: 1;
  position: absolute;
  top: 0;
  transform: translate(18px, -50%);
}

.p-contract-step__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 1em;
}

.p-contract-item {
  position: relative;
}

.p-contract-item__title {
  border-bottom: 3px solid #000;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 36px;
  padding-bottom: 12px;
}

.p-contract-item__lead {
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 36px;
}

.p-contract-item__citem:not(:last-child) {
  margin-bottom: 30px;
}

.p-contract-item__citem .c-checkbox + span {
  font-size: 13px;
  line-height: 2;
  padding-left: 3em;
}

.p-contract-item__citem .c-checkbox + span::before {
  border-width: 2px;
  height: 26px;
  left: 0px;
  top: 2px;
  width: 26px;
}

.p-contract-item__citem .c-checkbox + span::after {
  height: 22px;
  left: 2px;
  top: 4px;
  width: 22px;
}

.p-contract-item__citem .c-checkbox + span .underline {
  position: relative;
}

.p-contract-item__citem .c-checkbox + span .underline::before {
  background-color: #00E600;
  bottom: -8px;
  content: "";
  display: block;
  height: 3px;
  left: 0;
  position: absolute;
  width: 100%;
}

.p-voice__outer {
  padding: 32px 0 20px;
}

.p-voice__cards {
  gap: 20px !important;
}

.p-voice-single__outer {
  padding: 0 0 60px;
}

.p-voice-single__main {
  margin: 0 auto 76px;
  max-width: 928px;
}

.p-voice-single__contents {
  background-color: #fff;
  padding: 20px 0 60px;
  position: relative;
}

.p-voice-single__contents::before {
  background: transparent url(../img/common/deco_3.webp) no-repeat center center/contain;
  content: "";
  display: block;
  height: 92px;
  left: 0;
  position: absolute;
  top: 0;
  width: 212px;
}

.p-voice-single__date {
  font-size: 12px;
  margin: 0 0 20px;
  text-align: right;
}

.p-voice-single__head {
  margin: 0 0 80px;
  position: relative;
}

.p-voice-single__thumbnail {
  margin: 0 0 28px;
}

.p-voice-single__related .c-section-heading {
  margin-bottom: 52px;
}

.p-voice-single-profile {
  border: 2px solid #000;
  padding: 32px 0 30px;
  position: relative;
}

.p-voice-single-profile__title {
  -webkit-transform: translateY(-50%);
  align-items: baseline;
  background-color: #fff;
  display: flex;
  font-size: 12px;
  gap: 5px;
  left: 15px;
  padding: 0 8px;
  position: absolute;
  top: 0;
  transform: translateY(-50%);
}

.p-voice-single-profile__title picture {
  display: block;
}

.p-voice-single-profile__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 0;
}

.p-voice-single-profile__list > li {
  font-size: 14px;
  line-height: 24px;
  padding: 0 8px;
  text-align: center;
  width: 50%;
}

.p-voice-single-point {
  background-color: rgba(0, 230, 0, 0.05);
  padding: 48px 0 56px;
}

.p-voice-single-point__title {
  background: transparent url(../img/common/deco_heading.webp) no-repeat left top/40px auto;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0 0 40px;
  padding-left: 50px;
}

.p-voice-single-point__list > li:not(:last-child) {
  margin-bottom: 40px;
}

.p-voice-single-point-item {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.p-voice-single-point-item__image {
  background-color: gray;
}

.p-voice-single-point-item__subtitle {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 28px;
}

.p-about-cv {
  align-items: center;
  background-color: #00E600;
  bottom: 0;
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 6px 60px 6px 24px;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 3;
}

.p-about-cv__text {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  position: relative;
  word-break: break-word;
}

.p-about-cv__text::before,
.p-about-cv__text::after {
  background-color: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  width: 3px;
}

.p-about-cv__text::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-about-cv__text::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-about-cv__btn {
  flex-shrink: 0;
}

.p-about-cv__btn > a {
  font-size: 12px;
  max-width: 110px;
  min-width: 110px;
  padding: 8.5px 12px;
}

.p-about-section-outer {
  background-color: #F3F3F3;
  padding: 30px 0 30px;
}

.p-about-section-outer.m-search {
  padding: 20px 0;
}

.p-about-point {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.2em;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-about-point::before,
.p-about-point::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 4px;
}

.p-about-point::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-about-point::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-about-recommend {
  background-color: #F3F3F3;
  padding: 0 0 50px;
}

.p-about-recommend__image img {
  width: 100%;
}

.p-about-recommend__heading {
  background-color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  margin: 20px auto;
  padding: 8px 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-about-recommend__heading span {
  display: inline-block;
}

.p-about-recommend__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.p-about-recommend-item {
  background: #fff url(../img/common/icon_checked.webp) no-repeat left 20px top 20px/25px auto;
  background-color: #fff;
  padding: 19px 22px 19px 65px;
  position: relative;
}

.p-about-recommend-item__desc {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.p-about-service {
  padding: 0 0 68px;
}

.p-about-service__lead {
  margin: 44px 0 30px;
}

.p-about-service__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 20px;
}

.p-about-service__item {
  width: calc(50% - 10px);
}

.p-about-service-item__title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 16px;
  text-align: center;
}

.p-about-cost {
  padding: 46px 0 66px;
}

.p-about-life {
  padding: 0 0 50px;
}

.p-about-life__content {
  margin: 54px 0 0;
}

.p-about-flow {
  padding: 72px 0 66px;
}

.p-about-flow__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-height: 750px;
  overflow: hidden;
  padding: 72px 0 0;
  position: relative;
  transition: max-height 0.8s;
}

.p-about-flow__list.is-open {
  max-height: 400vh;
}

.p-about-flow__list.is-open::before {
  content: none;
}

.p-about-flow__list::before {
  background: linear-gradient(to bottom, rgba(242, 242, 242, 0.09) 0%, #f3f3f3 50%, #F3F3F3 100%);
  bottom: 0;
  content: "";
  display: block;
  height: 35%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.p-about-flow__btn {
  margin-top: -100px;
}

.p-about-faq {
  padding: 0 0 50px;
}

.p-about-faq__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 58px 0 0;
}

.p-about-posts {
  padding: 0 0 50px;
}

.p-about-bnr a {
  display: block;
  margin: 0 auto;
  max-width: clamp(160px, 60.8vw, 832px);
}

.p-commute__outer {
  background-color: #F3F3F3;
  padding: 30px 0 60px;
}

.p-commute-form__inner {
  margin: 0 auto;
  max-width: 520px;
  padding: 0 20px;
}

.p-commute-form__content {
  margin: 0 auto;
  max-width: 960px;
}

.p-commute-form__rows {
  margin: 0 0 30px;
}

.p-commute-form__row:not(:last-child) {
  margin-bottom: 40px;
}

.p-commute-form__row:not(:first-child) {
  position: relative;
}

.p-commute-form__row:not(:first-child)::before {
  -webkit-transform: translate(-50%, -100%);
  content: "かつ";
  display: block;
  font-size: 14px;
  font-weight: bold;
  left: 50%;
  position: absolute;
  text-align: center;
  top: -7px;
  transform: translate(-50%, -100%);
}

.p-commute-form__more {
  background-color: #C7C7C7;
  cursor: pointer;
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 15px;
  text-align: center;
}

.p-commute-form__more.is-disabled {
  color: #888;
  pointer-events: none;
}

.p-commute-form__submit > .c-submit {
  min-width: 248px;
}

.p-commute-form-row {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 20px 28px;
  position: relative;
}

.p-commute-form-row__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 4px;
}

.p-commute-form-row__delete {
  align-items: center;
  background-color: #C7C7C7;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 600;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  width: 40px;
}

.p-compare-point {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.2em;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-compare-point::before,
.p-compare-point::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 4px;
}

.p-compare-point::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-compare-point::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-compare-reccomend {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-compare-reccomend > p {
  background: transparent url(../img/common/arrow.webp) no-repeat left top/30px auto;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 0 0 40px;
}

.p-compare-table table {
  text-align: center;
  width: 100%;
}

.p-compare-table table > thead::after {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
}

.p-compare-table table > thead > tr > td {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
}

.p-compare-table table > thead > tr > td > span {
  background: transparent url(../img/compare/icon_apartment_2.webp) no-repeat center top/47px auto;
  display: inline-block;
  padding: 50px 0 0;
}

.p-compare-table table > thead > tr > td.m-colored {
  color: #009F00;
}

.p-compare-table table > thead > tr > td.m-colored > span {
  background-image: url(../img/compare/icon_apartment_1.webp);
}

.p-compare-table table > thead > tr > td.m-white {
  background-color: #fff;
}

.p-compare-table table > thead > tr > td.m-large {
  font-size: 14px;
}

.p-compare-table table > tfoot::before {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
}

.p-compare-table table > tfoot > tr > td {
  background-color: #F3F3F3;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  padding: 15px 0;
}

.p-compare-table table > tfoot > tr > td span {
  font-size: 20px;
}

.p-compare-table table > tfoot > tr > td.en_US span {
  font-size: 17.5px;
}

.p-compare-table table > tfoot > tr > td.m-colored {
  background-color: #00E600;
  color: #fff;
}

.p-compare-table table > tfoot > tr > td.m-white {
  background-color: #fff;
}

.p-compare-table table > tfoot > tr > td.m-text-colored {
  color: #009F00;
}

.p-compare-table table > tfoot > tr > td.m-three-data {
  position: relative;
}

.p-compare-table table > tfoot > tr > td.m-three-data::after {
  -webkit-transform: translateY(-50%);
  background-color: #F3F3F3;
  content: "";
  display: block;
  height: 101%;
  left: -1.5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
}

.p-compare-table table > tbody.m-mt::before {
  content: "";
  display: block;
  height: 10px;
  width: 100%;
}

.p-compare-table table > tbody > tr {
  border-bottom: 1px solid #ddd;
}

.p-compare-table table > tbody > tr:first-child {
  border-top: 1px solid #ddd;
}

.p-compare-table table > tbody > tr > th {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  position: relative;
  text-align: center;
  width: 33.3333333333%;
}

.p-compare-table table > tbody > tr > th::after {
  -webkit-transform: translateY(-50%);
  background-color: #ddd;
  content: "";
  display: block;
  height: 50%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.p-compare-table table > tbody > tr > td {
  font-size: 15px;
  padding: 13.5px 0;
  position: relative;
  width: 33.3333333333%;
}

.p-compare-table table > tbody > tr > td.m-with-line::after {
  -webkit-transform: translateY(-50%);
  background-color: #ddd;
  content: "";
  display: block;
  height: 50%;
  left: -1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.p-compare-table table > tbody > tr > td.m-colored {
  color: #009F00;
  font-weight: 600;
}

.p-compare-table table > tbody > tr > td.m-white {
  padding: 0;
}

.p-compare-table table > tbody > tr > td.m-white span {
  background-color: #fff;
  display: block;
  font-weight: 600;
  padding: 9px 0;
}

.p-compare-table table > tbody > tr > td.m-with-icon {
  font-size: 12px;
  line-height: 1.5;
  padding: 10px 0 8px;
}

.p-compare-table table > tbody > tr > td.m-with-icon > .icon {
  background: transparent no-repeat center center/contain;
  display: block;
  height: 30px;
  margin: 0 auto 4px;
  width: 30px;
}

.p-compare-table__attention {
  font-size: 14px;
  text-align: right;
}

.p-compare-search {
  background-color: #00E600;
  padding: 16px 20px;
}

.p-compare-search__content {
  background: #fff url(../img/about/bg_1.webp) no-repeat right 10px bottom/133px auto;
  margin: 0 auto;
  max-width: 335px;
  padding: 25px 0 36px;
}

.p-compare-search__title {
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 12px;
  text-align: center;
}

.p-compare-search__title > span {
  background: transparent url(../img/common/icon_search_mc.webp) no-repeat left center/38px auto;
  display: inline-block;
  padding-left: 48px;
  text-align: left;
}

.p-compare-search__list {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.p-compare-search__list > li > a {
  align-items: center;
  border: 2px solid #000;
  display: flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.01em;
  padding: 10px 18px 8px;
}

.p-compare-search__list > li > a > span {
  background: transparent no-repeat center top/auto 22px;
  display: inline-block;
  padding-top: 25px;
}

.p-compare-search__list > li > a:hover {
  opacity: 0.7;
}

.p-compare-search__list > li.m-map > a > span {
  background-image: url(../img/common/icon_map.webp);
}

.p-compare-search__list > li.m-query > a > span {
  background-image: url(../img/common/icon_home.webp);
}

.p-compare-search__contact {
  margin-top: 32px;
}

.p-compare-search__contact > .title {
  letter-spacing: 0.05em;
}

.p-compare-search__contact > .list {
  display: flex;
  flex-direction: column;
  margin: 8px 0 24px;
  padding: 0 0 0 clamp(36px, 14.9333333333vw, 56px);
}

.p-compare-search__contact > .list > li {
  align-items: center;
  display: flex;
  font-size: 12px;
  gap: 7px;
  letter-spacing: 0;
}

.p-compare-search__contact > .list > li::before {
  background: transparent url(../img/common/icon_checked.webp) no-repeat center center/contain;
  content: "";
  display: block;
  height: 12px;
  width: 12px;
}

.p-compare-introduction {
  position: relative;
}

.p-compare-introduction__image img {
  width: 100%;
}

.p-compare-introduction__heading {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1;
  position: relative;
}

.p-compare-introduction__heading::before {
  background-color: #00E600;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-compare-introduction__heading span {
  -webkit-transform: translateY(-50%);
  background-color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  position: relative;
  transform: translateY(-50%);
}

.p-compare-feature {
  background-color: #F3F3F3;
  padding: 40px 0 80px;
}

.p-compare-feature__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 36px 0 50px;
}

.p-compare-feature__item {
  background-color: #fff;
  padding: 40px 30px;
}

.p-compare-feature__item > h3 {
  align-items: center;
  display: flex;
  font-size: 18px;
  font-weight: 600;
  gap: 20px;
  justify-content: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin: 0 0 30px;
}

.p-compare-feature__item > h3::before {
  background: transparent url(../img/compare/icon_apartment_2.webp) no-repeat center center/100% auto;
  content: "";
  display: block;
  height: 60px;
  width: 73px;
}

.p-compare-feature__item > p {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.p-compare-feature__item:nth-child(1) > h3 {
  color: #009F00;
}

.p-compare-feature__item:nth-child(1) > h3::before {
  background-image: url(../img/compare/icon_apartment_1.webp);
}

.p-compare-same-range {
  padding: 60px 0 60px;
}

.p-compare-same-range__contents {
  margin: 0 0 70px;
}

.p-compare-same-range__content {
  margin: 60px 0 0;
  position: relative;
}

.p-compare-same-range__content > .title {
  border-bottom: 3px solid #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  padding: 0 0 12px;
}

.p-compare-same-range__content > .slider {
  margin-top: 0;
}

.p-compare-same-range__content > .slider img {
  width: 100%;
}

.p-compare-same-range__content > .slider > .swiper-nav-box {
  align-items: center;
  padding: 0;
}

.p-compare-same-range__content > .slider > .swiper-nav-box > .swiper-pagination {
  margin-left: 48px;
}

.p-compare-same-range__content > .slider > .swiper-nav-box > .swiper-pagination > .swiper-pagination-bullet {
  background: #F3F3F3;
}

.p-compare-same-range__content > .slider > .swiper-nav-box > .swiper-button-prev,
.p-compare-same-range__content > .slider > .swiper-nav-box > .swiper-button-next {
  color: #DDDDDD;
}

.p-compare-same-range__content > .caution {
  bottom: 31px;
  font-size: 12px;
  position: absolute;
  right: 0;
}

.p-compare-initial-cost {
  padding: 60px 0 0;
}

.p-compare-apartments {
  background-color: #F3F3F3;
  padding: 60px 0;
}

.p-compare-apartments__point {
  font-size: 13px;
  margin: 40px auto 20px;
}

.p-compare-apartments__cards {
  gap: 15px;
  margin: 40px auto 0;
  max-width: 680px;
}

.p-compare-apartments__cards > .p-sharehouse-card {
  flex-grow: 1;
}

.p-corporate-contact {
  background-color: #00E600;
  padding: 16px 20px;
  position: relative;
}

.p-corporate-contact__inner {
  background-color: #fff;
  margin: 0 auto;
  max-width: 520px;
  padding: 30px 12px 40px;
  position: relative;
}

.p-corporate-contact__inner::after {
  background: transparent url(../img/other/icon_contact.webp) no-repeat center center/contain;
  bottom: 0;
  content: "";
  display: block;
  height: 52px;
  position: absolute;
  right: 10px;
  width: 133px;
}

.p-corporate-contact__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 20px;
  text-align: center;
}

.p-corporate-contact__title span {
  display: inline-block;
  position: relative;
}

.p-corporate-contact__title span::before,
.p-corporate-contact__title span::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 3px;
}

.p-corporate-contact__title span::before {
  -webkit-transform: rotate(-45deg);
  left: -24px;
  transform: rotate(-45deg);
}

.p-corporate-contact__title span::after {
  -webkit-transform: rotate(45deg);
  right: -22px;
  transform: rotate(45deg);
}

.p-corporate-contact__box {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-corporate-contact__box .tel > a {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 40px;
  display: inline-flex;
  height: 49px;
  justify-content: center;
  width: 200px;
}

.p-corporate-contact__box .tel > a > span {
  background: transparent url(../img/common/icon_tel.webp) no-repeat left center/14px auto;
  display: inline-block;
  font-size: 14px;
  padding: 0 0 0 20px;
}

.p-corporate-contact__box .tel > a > span > span {
  font-size: 12px;
}

.p-corporate-contact__box .tel > a:hover {
  opacity: 0.7;
}

.p-corporate-contact__desc {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}

.p-corporate-introduction {
  position: relative;
}

.p-corporate-introduction__image img {
  width: 100%;
}

.p-corporate-introduction__heading {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
  line-height: 1;
  position: relative;
}

.p-corporate-introduction__heading::before {
  background-color: #00E600;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-corporate-introduction__heading span {
  -webkit-transform: translateY(-50%);
  background-color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 20px;
  position: relative;
  transform: translateY(-50%);
}

.p-corporate-benefits {
  background-color: #F3F3F3;
  padding: 40px 0 50px;
}

.p-corporate-benefits__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 36px 0 0;
}

.p-corporate-benefits-item {
  background-color: #fff;
  padding: 50px 20px 30px;
  position: relative;
}

.p-corporate-benefits-item__num {
  background-color: #00E600;
  color: #fff;
  font-size: 20px;
  left: 0;
  padding: 4px 8px;
  position: absolute;
  top: 0;
}

.p-corporate-benefits-item__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 16px;
  text-align: center;
}

.p-corporate-benefits-item__desc {
  font-size: 12px;
  text-align: center;
}

.p-corporate-example {
  padding: 50px 0 36px;
}

.p-corporate-example__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin: 50px 0 0;
}

.p-corporate-example__item > .title {
  border-bottom: 3px solid #000;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin: 0 0 20px;
  padding: 0 0 20px;
  text-align: center;
}

.p-corporate-sharehouse {
  padding: 36px 0 0;
}

.p-corporate-sharehouse__slider {
  margin-top: 50px;
}

.p-corporate-sharehouse__slider img {
  width: 100%;
}

.p-corporate-sharehouse__slider > .swiper-nav-box {
  align-items: center;
  padding: 0;
}

.p-corporate-sharehouse__slider > .swiper-nav-box > .swiper-pagination {
  margin-left: 48px;
}

.p-corporate-sharehouse__slider > .swiper-nav-box > .swiper-pagination > .swiper-pagination-bullet {
  background: #F3F3F3;
}

.p-corporate-sharehouse__slider > .swiper-nav-box > .swiper-button-prev,
.p-corporate-sharehouse__slider > .swiper-nav-box > .swiper-button-next {
  color: #DDDDDD;
}

.p-multilingual-home-cv {
  align-items: center;
  background-color: #00E600;
  border-radius: 0 24px 0 0;
  bottom: 0;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  left: 0;
  padding: 6px 6px 6px 20px;
  position: fixed;
  width: 85.8666666667%;
  z-index: 10;
}

.p-multilingual-home-cv__text {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
}

.p-multilingual-home-cv__btn > a {
  font-size: 12px;
  min-width: 114px;
  padding: 7px 12px;
}

.p-multilingual-home-mv {
  position: relative;
}

.p-multilingual-home-mv__inner {
  position: relative;
}

.p-multilingual-home-mv__image {
  display: block;
}

.p-multilingual-home-mv__image img {
  width: 100%;
}

.p-multilingual-home-mv__copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 0;
  position: absolute;
  top: 20px;
  z-index: 1;
}

.p-multilingual-home-mv__copy > span {
  background-color: #fff;
  display: block;
  font-size: clamp(16px, 4.2666666667vw, 20px);
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 4px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-multilingual-home-sharehouse {
  overflow: hidden;
  padding: 40px 0 60px;
}

.p-multilingual-home-sharehouse__slider {
  margin-bottom: 60px;
  margin-top: 30px;
}

.p-multilingual-home-sharehouse__slider img {
  width: 100%;
}

.p-multilingual-home-sharehouse__slider > .swiper-nav-box {
  align-items: center;
  padding: 0;
}

.p-multilingual-home-sharehouse__slider > .swiper-nav-box > .swiper-pagination {
  margin-left: 48px;
}

.p-multilingual-home-sharehouse__slider > .swiper-nav-box > .swiper-pagination > .swiper-pagination-bullet {
  background: #F3F3F3;
}

.p-multilingual-home-sharehouse__slider > .swiper-nav-box > .swiper-button-prev,
.p-multilingual-home-sharehouse__slider > .swiper-nav-box > .swiper-button-next {
  color: #DDDDDD;
}

.p-multilingual-home-plan__title {
  border-bottom: 3px solid #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  padding: 0 0 10px;
}

.p-multilingual-home-plan__image {
  margin: 0;
}

.p-multilingual-home-plan__image img {
  width: 100%;
}

.p-multilingual-home-recommend {
  background-color: #F3F3F3;
  padding: 0 0 80px;
}

.p-multilingual-home-recommend__heading {
  background: transparent url(../img/about/img_2_sp.webp) no-repeat center center/cover;
  line-height: 1;
  padding: 20px 0 136px;
}

.p-multilingual-home-recommend__heading > div {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-multilingual-home-recommend__heading > div span {
  background-color: #fff;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 8px 20px;
}

.p-multilingual-home-recommend__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: -20px 0 0;
}

.p-multilingual-home-recommend-item {
  background: #fff url(../img/common/icon_checked.webp) no-repeat left 20px top 20px/25px auto;
  background-color: #fff;
  padding: 19px 22px 19px 65px;
  position: relative;
}

.p-multilingual-home-recommend-item__desc {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.p-multilingual-home-reasons {
  padding: 0 0 50px;
}

.p-multilingual-home-reasons__item img {
  width: 100%;
}

.p-multilingual-home-facility {
  background-color: #F3F3F3;
  padding: 40px 0 60px;
}

.p-multilingual-home-facility__content {
  margin: 36px 0 0;
}

.p-multilingual-home-facility__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px 20px;
  margin: 0 0 40px;
}

.p-multilingual-home-facility__item {
  width: calc(50% - 10px);
}

.p-multilingual-home-facility__item > .image {
  margin: 0 0 12px;
}

.p-multilingual-home-facility__item > .image img {
  width: 100%;
}

.p-multilingual-home-facility__item > .title {
  font-size: 14px;
  line-height: 1.5;
}

.p-multilingual-home-facility__caution {
  font-size: 12px;
  text-align: right;
}

.p-multilingual-home-access {
  padding: 40px 0 60px;
}

.p-multilingual-home-access__content {
  margin: 36px 0 0;
}

.p-multilingual-home-access__image {
  margin: 0 auto 30px;
  max-width: 612px;
}

.p-multilingual-home-access__image img {
  width: 100%;
}

.p-multilingual-home-access__text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}

.p-multilingual-home-flow {
  background-color: #F3F3F3;
  padding: 40px 0 60px;
}

.p-multilingual-home-flow__content {
  margin: 36px 0 0;
}

.p-multilingual-home-flow__lead {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.p-multilingual-home-flow__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-height: 740px;
  overflow: hidden;
  padding: 60px 0 0;
  position: relative;
  transition: max-height 0.8s;
}

.p-multilingual-home-flow__list.is-open {
  max-height: 400vh;
}

.p-multilingual-home-flow__list.is-open::before {
  content: none;
}

.p-multilingual-home-flow__list::before {
  background: linear-gradient(to bottom, rgba(242, 242, 242, 0.09) 0%, #f3f3f3 50%, #F3F3F3 100%);
  bottom: 0;
  content: "";
  display: block;
  height: 35%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.p-multilingual-home-flow__item:nth-child(4)::before {
  content: none !important;
}

.p-multilingual-home-flow__btn {
  margin-top: -100px;
}

.p-multilingual-home-faq {
  padding: 40px 0 60px;
}

.p-multilingual-home-faq__content {
  margin: 36px 0 0;
}

.p-multilingual-home-faq__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 58px 0 0;
}

.p-multilingual-home-faq__item {
  background-color: #F3F3F3;
}

.p-multilingual-home-contact {
  background-color: #F3F3F3;
  padding: 40px 0 60px;
}

.p-multilingual-home-contact__content {
  margin: 36px 0 0;
}

.p-multilingual-home-to-home {
  overflow: hidden;
  padding: 120px 0 60px;
}

.p-multilingual-home-to-home__content {
  position: relative;
}

.p-multilingual-home-to-home__image {
  margin-bottom: -20px;
  margin-left: -20px;
  position: relative;
  width: clamp(150px, 46.6666666667vw, 240px);
}

.p-multilingual-home-to-home__image img {
  width: 100%;
}

.p-multilingual-home-to-home__image::before {
  -webkit-transform: translate(100%, 0);
  background: transparent url(../img/multilingual-home/deco_1_sp.png) no-repeat center center/contain;
  content: "";
  display: block;
  height: 144px;
  position: absolute;
  right: 48px;
  top: -60px;
  transform: translate(100%, 0);
  width: 260px;
  z-index: -1;
}

.p-multilingual-home-to-home__image::after {
  -webkit-transform: translate(100%, 0);
  background: transparent url(../img/multilingual-home/text_about.webp) no-repeat center center/contain;
  bottom: 36px;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  right: -12px;
  transform: translate(100%, 0);
  width: 170px;
}

.p-multilingual-home-to-home__body {
  background-color: #F3F3F3;
  padding: 60px 28px 40px;
}

.p-multilingual-home-to-home__text {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-multilingual-home-to-home__text::before,
.p-multilingual-home-to-home__text::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 4px;
}

.p-multilingual-home-to-home__text::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-multilingual-home-to-home__text::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-multilingual-home-to-home__btn {
  margin: 0 0 20px;
  text-align: center;
}

.p-multilingual-home-to-home__caution {
  font-size: 12px;
  text-align: center;
}

.p-buddybeta-section-heading {
  line-height: 1;
  margin: 0 0 0 -40px;
  padding: 0 0 0 90px;
  position: relative;
}

.p-buddybeta-section-heading::before {
  -webkit-transform: translateY(-50%);
  background: transparent url(../img/common/deco_heading.webp) no-repeat left center/contain;
  content: "";
  display: inline-block;
  height: 60px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
}

.p-buddybeta-section-heading__text {
  display: block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.p-buddybeta-cv {
  align-items: center;
  background-color: rgba(0, 230, 0, 0.8);
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 7px 24px 5px;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 10;
}

.p-buddybeta-cv__text {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  padding: 0 1em;
  position: relative;
  word-break: break-word;
}

.p-buddybeta-cv__text::before,
.p-buddybeta-cv__text::after {
  background-color: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  width: 3px;
}

.p-buddybeta-cv__text::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-buddybeta-cv__text::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-buddybeta-cv__btn.m-line > a {
  background-color: #fff !important;
  border: 2px solid #000;
  color: #06C755;
  font-size: 13px !important;
  gap: 5px;
  max-width: 3000px;
  min-width: 250px;
  padding: 4px 12px !important;
}

.p-buddybeta-cv__btn.m-line > a::after {
  background: transparent url(../img/common/icon_line_2.webp) no-repeat left center/contain;
  height: 20px;
  width: 20px;
}

.p-buddybeta-cv__btn.m-line > a:hover {
  color: #06C755;
  opacity: 0.9;
}

.p-buddybeta-mv {
  position: relative;
}

.p-buddybeta-mv__image img {
  width: 100%;
}

.p-buddybeta-mv__heading {
  -webkit-transform: translate(-50%, -50%);
  font-size: 0;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 40px);
}

.p-buddybeta-mv__heading img {
  max-width: 574px;
  width: 100%;
}

.p-buddybeta-mv__btn {
  -webkit-transform: translateX(-50%);
  bottom: 20px;
  left: 50%;
  position: absolute;
  text-align: center;
  transform: translateX(-50%);
  width: calc(100% - 40px);
}

.p-buddybeta-mv__btn a {
  align-items: center;
  background: transparent linear-gradient(90deg, #EBD854 0%, #62D9E0 100%) 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 6px #00000029;
  color: #fff;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  height: 60px;
  justify-content: center;
  letter-spacing: 0.1em;
  max-width: 400px;
  opacity: 0.9;
  position: relative;
  width: 100%;
}

.p-buddybeta-mv__btn a::after {
  -webkit-transform: translateY(25%) rotate(-45deg);
  border: 6px solid transparent;
  border-bottom-color: #fff;
  border-left-color: #fff;
  bottom: 0;
  box-shadow: 0px 3px 6px #00000029;
  content: "";
  display: block;
  height: 28px;
  left: 50%;
  position: absolute;
  transform: translateY(25%) rotate(-45deg);
  width: 28px;
}

.p-buddybeta-mv__btn a:hover {
  opacity: 0.7;
}

.p-buddybeta-introduction__heading {
  background: transparent url(../img/buddy-beta/deco_1_sp.png) no-repeat center bottom/contain;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.3333333333;
  margin: 0 auto 28px;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-buddybeta-introduction__desc {
  font-size: 14px;
  line-height: 1.72;
  text-align: center;
}

.p-buddybeta-introduction__desc > p:not(:last-child) {
  margin-bottom: 1em;
}

.p-buddybeta-reccomend {
  position: relative;
}

.p-buddybeta-reccomend::before {
  background: transparent linear-gradient(90deg, #FEFADA 0%, #D6F9FB 100%) 0% 0% no-repeat padding-box;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-buddybeta-reccomend > .l-inner {
  padding-bottom: 40px;
  padding-top: 50px;
  position: relative;
}

.p-buddybeta-reccomend__heading {
  -webkit-transform: translate(0, -50%);
  left: 20px;
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
}

.p-buddybeta-reccomend__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin: 0 0 40px;
}

.p-buddybeta-reccomend__item {
  width: calc(50% - 20px);
}

.p-buddybeta-reccomend__more {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 10px;
  text-align: center;
}

.p-buddybeta-reccomend__btn a {
  min-width: 250px;
}

.p-buddybeta-reccomend-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-buddybeta-reccomend-item__heading {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.72;
  margin: 0 0 8px;
}

.p-buddybeta-reccomend-item__desc {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.8;
}

.p-buddybeta-example-sections {
  padding: 70px 0 0;
}

.p-buddybeta-example-sections__bnr .title {
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.75em;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-buddybeta-example-sections__bnr .title::before,
.p-buddybeta-example-sections__bnr .title::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 4px;
}

.p-buddybeta-example-sections__bnr .title::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-buddybeta-example-sections__bnr .title::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-buddybeta-example-sections__bnr .bnr {
  display: block;
}

.p-buddybeta-example-sections__bnr .bnr:hover {
  opacity: 0.7;
}

.p-buddybeta-example-sections__bnr .bnr img {
  width: 100%;
}

.p-buddybeta-example-section {
  position: relative;
}

.p-buddybeta-example-section::before {
  background: transparent linear-gradient(90deg, #FEFADA 0%, #D6F9FB 100%) 0% 0% no-repeat padding-box;
  content: "";
  display: block;
  height: 164px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-buddybeta-example-section > .l-inner {
  padding-top: 50px;
  position: relative;
}

.p-buddybeta-example-section__heading {
  -webkit-transform: translate(0, -50%);
  left: 20px;
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
}

.p-buddybeta-example {
  background-color: #fff;
  box-shadow: 0px 3px 6px #00000029;
}

.p-buddybeta-example__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 20px;
}

.p-buddybeta-example__gallery-wrap > .p-sharehouse__gallery {
  position: relative;
}

.p-buddybeta-example__gallery-wrap > .p-sharehouse__gallery .p-sharehouse__status {
  -webkit-transform: none;
  transform: none;
}

.p-buddybeta-example__gallery-wrap > .p-sharehouse__gallery > .swiper > .swiper-wrapper > .swiper-slide {
  height: clamp(200px, 60.8vw, 268px) !important;
}

.p-buddybeta-example__gallery-wrap > .p-sharehouse__thumbnail > .swiper {
  width: 67.5%;
}

.p-buddybeta-example__gallery-wrap > .p-sharehouse__thumbnail > .swiper > .swiper-wrapper > .swiper-slide {
  height: clamp(44px, 13.3333333333vw, 68px) !important;
}

.p-buddybeta-example__layout {
  height: clamp(180px, 53.3333333333vw, 240px);
  padding: 0 20px;
}

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

.p-buddybeta-example__btns {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 28px;
  padding: 0 20px;
}

.p-buddybeta-example__btns .c-btn > a,
.p-buddybeta-example__btns .c-favorite-btn {
  width: 248px;
}

.p-buddybeta-example .p-sharehouse__content {
  padding: 0 20px 20px;
}

.p-buddybeta-example .p-sharehouse__content h2 {
  cursor: pointer;
  margin-top: 0;
  position: relative;
}

.p-buddybeta-example .p-sharehouse__content h2::after {
  -webkit-transform: translateY(calc(-50% - 5px)) rotate(-45deg);
  border: 2px solid transparent;
  border-bottom-color: #00E600;
  border-left-color: #00E600;
  content: "";
  display: block;
  height: 10px;
  left: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(calc(-50% - 5px)) rotate(-45deg);
  width: 10px;
}

.p-buddybeta-example .p-sharehouse__content h2.is-open::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.p-buddybeta-example .p-sharehouse__content .accordionContent {
  display: none;
}

.p-buddybeta-flow {
  background-color: #F3F3F3;
}

.p-buddybeta-flow > .l-inner {
  padding-bottom: 72px;
  padding-top: 52px;
  position: relative;
}

.p-buddybeta-flow__heading {
  -webkit-transform: translate(0, -50%);
  left: 20px;
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
}

.p-buddybeta-flow__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-height: 750px;
  overflow: hidden;
  padding: 20px 0 0;
  position: relative;
  transition: max-height 0.8s;
}

.p-buddybeta-flow__list::before {
  background: linear-gradient(to bottom, rgba(242, 242, 242, 0.09) 0%, #f3f3f3 50%, #F3F3F3 100%);
  bottom: 0;
  content: "";
  display: block;
  height: 35%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.p-buddybeta-flow__list.is-open {
  max-height: 400vh;
}

.p-buddybeta-flow__list.is-open::before {
  content: none;
}

.p-buddybeta-flow__btn {
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.p-buddybeta-faq {
  background-color: #F3F3F3;
  padding: 0 0 40px;
}

.p-buddybeta-faq__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 58px 0 0;
}

.p-buddybeta-contact {
  background: transparent linear-gradient(90deg, #FEFADA 0%, #D6F9FB 100%) 0% 0% no-repeat padding-box;
  padding: 20px;
  position: relative;
}

.p-buddybeta-contact__inner {
  background-color: #fff;
  margin: 0 auto;
  max-width: 520px;
  padding: 30px 12px 40px;
  position: relative;
}

.p-buddybeta-contact__inner::after {
  background: transparent url(../img/other/icon_contact.webp) no-repeat center center/contain;
  bottom: 0;
  content: "";
  display: block;
  height: 52px;
  position: absolute;
  right: 10px;
  width: 133px;
}

.p-buddybeta-contact__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 20px;
  text-align: center;
}

.p-buddybeta-contact__title span {
  display: inline-block;
  position: relative;
}

.p-buddybeta-contact__title span::before,
.p-buddybeta-contact__title span::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 3px;
}

.p-buddybeta-contact__title span::before {
  -webkit-transform: rotate(-45deg);
  left: -24px;
  transform: rotate(-45deg);
}

.p-buddybeta-contact__title span::after {
  -webkit-transform: rotate(45deg);
  right: -22px;
  transform: rotate(45deg);
}

.p-buddybeta-contact__box {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-buddybeta-contact__box .tel > a {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 40px;
  display: inline-flex;
  height: 49px;
  justify-content: center;
  width: 200px;
}

.p-buddybeta-contact__box .tel > a > span {
  background: transparent url(../img/common/icon_tel.webp) no-repeat left center/14px auto;
  display: inline-block;
  font-size: 14px;
  padding: 0 0 0 20px;
}

.p-buddybeta-contact__box .tel > a > span > span {
  font-size: 12px;
}

.p-buddybeta-contact__box .tel > a:hover {
  opacity: 0.7;
}

.p-buddybeta-contact__desc {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}

.p-utaha-mv {
  position: relative;
}

.p-utaha-mv__image {
  font-size: 0;
}

.p-utaha-mv__image img {
  width: 100%;
}

.p-utaha-introduction {
  margin: 36px 0 80px;
  position: relative;
}

.p-utaha-introduction__heading {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-content: center;
  margin: 0 0 30px;
}

.p-utaha-introduction__heading .text {
  display: block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}

.p-utaha-introduction__heading .text.m-green {
  background-color: #00E600;
}

.p-utaha-introduction__heading .text.m-red {
  background-color: #FF0054;
  color: #fff;
}

.p-utaha-introduction__heading .cross {
  display: block;
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}

.p-utaha-introduction__desc {
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
  margin: 0 0 30px;
}

.p-utaha-introduction__image img {
  width: 100%;
}

.p-utaha-campaign {
  position: relative;
}

.p-utaha-campaign::before {
  background-color: #F3F3F3;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-utaha-campaign__inner {
  padding-bottom: 60px;
  padding-top: 70px;
  position: relative;
}

.p-utaha-campaign__heading {
  -webkit-transform: translate(0, -50%);
  left: 20px;
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
}

.p-utaha-campaign__stop {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 50px;
  text-align: center;
}

.p-utaha-campaign__period {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 auto 30px;
  padding: 0 20px;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-utaha-campaign__period > span {
  color: #009F00;
  font-size: 16px;
}

.p-utaha-campaign__period::before,
.p-utaha-campaign__period::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 4px;
}

.p-utaha-campaign__period::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-utaha-campaign__period::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-utaha-campaign__lead {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  text-align: center;
}

.p-utaha-campaign__lead > span {
  background-color: #fff;
  display: inline-block;
  margin: 0 0 8px;
  padding: 4px 20px;
}

.p-utaha-campaign__lead > span .colored {
  color: #009F00;
}

.p-utaha-campaign__desc {
  font-size: 12px;
  text-align: center;
}

.p-utaha-campaign-house {
  background-color: #fff;
  padding: 30px 20px;
}

.p-utaha-campaign-house__heading {
  border-bottom: 3px solid #000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
  padding-bottom: 12px;
}

.p-utaha-campaign-house__table {
  border: 1px solid #ddd;
  border-bottom: 0;
  width: 100%;
}

.p-utaha-campaign-house__table tr {
  border-bottom: 1px solid #ddd;
}

.p-utaha-campaign-house__table tr > th {
  background-color: #F3F3F3;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.1;
  padding: 14px 2px;
  text-align: center;
  width: 60px;
}

.p-utaha-campaign-house__table tr > td {
  padding: 14px;
}

.p-utaha-campaign-house__btn > a {
  min-width: 254px;
}

.p-utaha-gallery {
  padding: 80px 0 40px;
}

.p-utaha-gallery__content {
  margin: 60px 0 0;
}

.p-utaha-gallery img {
  width: 100%;
}

.p-utaha-detail {
  padding: 40px 0 80px;
}

.p-utaha-detail__list {
  margin: 60px 0 0;
}

.p-utaha-detail__item {
  align-items: flex-start;
  display: flex;
  gap: 2px;
  position: relative;
}

.p-utaha-detail__item::before {
  content: "●";
  display: block;
}

.p-utaha-detail__item.m-alert {
  color: #FF0054;
}

.p-utaha-detail__item:not(:last-child) {
  margin-bottom: 30px;
}

.p-utaha-detail__btns {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-utaha-detail__btn > a {
  min-width: 258px;
}

.p-utaha-cta__inner {
  background: #F3F3F3 url(../img/about/deco_1.webp) no-repeat left top 20px/157px auto;
  padding: 60px 0;
}

.p-utaha-cta__content {
  background: #fff url(../img/about/bg_1.webp) no-repeat right 10px bottom/133px auto;
  background-color: #fff;
  margin: 0 auto;
  max-width: 335px;
  padding: 40px 0 54px;
}

.p-utaha-cta__title {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.2em;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-utaha-cta__title::before,
.p-utaha-cta__title::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 4px;
}

.p-utaha-cta__title::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-utaha-cta__title::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-utaha-cta__contact {
  font-size: 14px;
}

.p-utaha-cta__contact > a {
  min-width: 284px;
}

.p-minimalist-section-heading {
  line-height: 1;
  margin: 0 0 0 -40px;
  padding: 0 0 0 90px;
  position: relative;
}

.p-minimalist-section-heading::before {
  -webkit-transform: translateY(-50%);
  background: transparent url(../img/common/deco_heading.webp) no-repeat left center/contain;
  content: "";
  display: inline-block;
  height: 60px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
}

.p-minimalist-section-heading__text {
  display: block;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

.p-minimalist-cv {
  align-items: center;
  background-color: rgba(0, 230, 0, 0.8);
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 7px 24px 5px;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 10;
}

.p-minimalist-cv__text {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.5;
  padding: 0 1em;
  position: relative;
  word-break: break-word;
}

.p-minimalist-cv__text::before,
.p-minimalist-cv__text::after {
  background-color: #fff;
  bottom: 0;
  content: "";
  display: block;
  height: 16px;
  position: absolute;
  width: 3px;
}

.p-minimalist-cv__text::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-minimalist-cv__text::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-minimalist-cv__btn.m-line > a {
  background-color: #fff !important;
  border: 2px solid #000;
  color: #06C755;
  font-size: 13px !important;
  gap: 5px;
  max-width: 3000px;
  min-width: 250px;
  padding: 4px 12px !important;
}

.p-minimalist-cv__btn.m-line > a::after {
  background: transparent url(../img/common/icon_line_2.webp) no-repeat left center/contain;
  height: 20px;
  width: 20px;
}

.p-minimalist-cv__btn.m-line > a:hover {
  color: #06C755;
  opacity: 0.9;
}

.p-minimalist-mv {
  margin: 0 0 25px;
  position: relative;
}

.p-minimalist-mv__image-wrap {
  margin: 0 0 40px;
  position: relative;
}

.p-minimalist-mv__image img {
  width: 100%;
}

.p-minimalist-mv__en-slogan {
  -webkit-transform: translate(-50%, 60%);
  bottom: 0;
  left: calc(50% - 20px);
  max-width: 322px;
  position: absolute;
  transform: translate(-50%, 60%);
  width: 95%;
}

.p-minimalist-mv__en-slogan img {
  width: 100%;
}

.p-minimalist-mv__slogan {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  font-size: 14px;
  position: absolute;
  right: 5.3333333333vw;
  top: 5.3333333333vw;
  writing-mode: vertical-rl;
}

.p-minimalist-mv__slogan > span {
  background-color: #fff;
  display: inline-block;
  padding: 7px 0;
}

.p-minimalist-mv__heading {
  font-size: 25px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 20px;
  text-align: center;
}

.p-minimalist-mv__btn {
  text-align: center;
}

.p-minimalist-mv__btn a {
  min-width: 250px;
}

.p-minimalist-introduction__heading {
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  margin: 0 0 12px;
  text-align: center;
}

.p-minimalist-introduction__desc {
  font-size: 14px;
  line-height: 1.72;
  text-align: center;
}

.p-minimalist-about {
  position: relative;
}

.p-minimalist-about::before {
  background-color: #F3F3F3;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-minimalist-about > .l-inner {
  padding-bottom: 40px;
  padding-top: 50px;
  position: relative;
}

.p-minimalist-about__heading {
  -webkit-transform: translate(0, -50%);
  left: 20px;
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
}

.p-minimalist-about__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 40px;
}

.p-minimalist-about__subheading {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.44;
  margin: 0 0 20px;
  text-align: center;
}

.p-minimalist-about__points {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.p-minimalist-about__point {
  width: calc(50% - 20px);
}

.p-minimalist-about-item {
  background-color: #fff;
  padding: 50px clamp(20px, 7.4666666667vw, 28px) 25px;
  position: relative;
}

.p-minimalist-about-item__num {
  background-color: #00E600;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  height: 40px;
  left: 0;
  line-height: 40px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 40px;
}

.p-minimalist-about-item__image {
  margin: 0 auto 15px;
  max-width: 224px;
}

.p-minimalist-about-item__desc {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}

.p-minimalist-about-point__image {
  margin: 0 0 5px;
}

.p-minimalist-about-point__desc {
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
}

.p-minimalist-cost__heading {
  margin-bottom: 40px;
}

.p-minimalist-reccomend {
  padding-top: 70px;
  position: relative;
}

.p-minimalist-reccomend::before {
  background: transparent linear-gradient(56deg, #FFEAFD 0%, #E0FFF8 100%) 0% 0% no-repeat padding-box;
  content: "";
  display: block;
  height: calc(100% - 70px);
  left: 0;
  opacity: 0.35;
  position: absolute;
  top: 70px;
  width: 100%;
}

.p-minimalist-reccomend > .l-inner {
  padding-bottom: 40px;
  padding-top: 50px;
  position: relative;
}

.p-minimalist-reccomend__heading {
  -webkit-transform: translate(0, -50%);
  left: 20px;
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
}

.p-minimalist-reccomend__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}

.p-minimalist-reccomend__item {
  width: calc(50% - 20px);
}

.p-minimalist-reccomend-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-minimalist-reccomend-item:nth-child(7),
.p-minimalist-reccomend-item:nth-child(8) {
  border-bottom: 0;
}

.p-minimalist-reccomend-item__image img {
  width: 100%;
}

.p-minimalist-reccomend-item__desc {
  align-items: flex-start;
  display: flex;
  font-size: 14px;
  gap: 20px;
  line-height: 1.72;
}

.p-minimalist-reccomend-item__desc::before {
  background: transparent url(../img/common/icon_checked.webp) no-repeat center center/contain;
  content: "";
  display: block;
  flex-shrink: 0;
  height: 19px;
  margin-top: 5px;
  width: 19px;
}

.p-minimalist-example-sections__bnr .title {
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.75em;
  position: relative;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-minimalist-example-sections__bnr .title::before,
.p-minimalist-example-sections__bnr .title::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 4px;
}

.p-minimalist-example-sections__bnr .title::before {
  -webkit-transform: rotate(-40deg);
  left: 0;
  transform: rotate(-40deg);
}

.p-minimalist-example-sections__bnr .title::after {
  -webkit-transform: rotate(40deg);
  right: 0;
  transform: rotate(40deg);
}

.p-minimalist-example-sections__bnr .bnr {
  display: block;
}

.p-minimalist-example-sections__bnr .bnr:hover {
  opacity: 0.7;
}

.p-minimalist-example-sections__bnr .bnr img {
  width: 100%;
}

.p-minimalist-example-section {
  position: relative;
}

.p-minimalist-example-section::before {
  background: transparent linear-gradient(90deg, #FFEAFD 0%, #E0FFF8 100%) 0% 0% no-repeat padding-box;
  content: "";
  display: block;
  height: 164px;
  left: 0;
  opacity: 0.35;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-minimalist-example-section > .l-inner {
  padding-top: 50px;
  position: relative;
}

.p-minimalist-example-section__heading {
  -webkit-transform: translate(0, -50%);
  left: 20px;
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
}

.p-minimalist-example-section__id {
  -webkit-transform: translateY(60%);
  font-size: 12px;
  font-weight: 600;
  left: 70px;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  transform: translateY(60%);
}

.p-minimalist-example {
  background-color: #fff;
  box-shadow: 0px 3px 6px #00000029;
}

.p-minimalist-example__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 20px;
}

.p-minimalist-example__gallery-wrap > .p-sharehouse__gallery {
  position: relative;
}

.p-minimalist-example__gallery-wrap > .p-sharehouse__gallery .p-sharehouse__status {
  -webkit-transform: none;
  transform: none;
}

.p-minimalist-example__gallery-wrap > .p-sharehouse__gallery > .swiper > .swiper-wrapper > .swiper-slide {
  height: clamp(200px, 60.8vw, 268px) !important;
}

.p-minimalist-example__gallery-wrap > .p-sharehouse__thumbnail > .swiper {
  width: 67.5%;
}

.p-minimalist-example__gallery-wrap > .p-sharehouse__thumbnail > .swiper > .swiper-wrapper > .swiper-slide {
  height: clamp(44px, 13.3333333333vw, 68px) !important;
}

.p-minimalist-example__layout {
  height: clamp(180px, 53.3333333333vw, 240px);
  padding: 0 20px;
}

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

.p-minimalist-example__btns {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 28px;
  padding: 0 20px;
}

.p-minimalist-example__btns .c-btn > a,
.p-minimalist-example__btns .c-favorite-btn {
  width: 248px;
}

.p-minimalist-example .p-sharehouse__content {
  padding: 0 20px 20px;
}

.p-minimalist-example .p-sharehouse__content h2 {
  cursor: pointer;
  margin-top: 0;
  position: relative;
}

.p-minimalist-example .p-sharehouse__content h2::after {
  -webkit-transform: translateY(calc(-50% - 5px)) rotate(-45deg);
  border: 2px solid transparent;
  border-bottom-color: #00E600;
  border-left-color: #00E600;
  content: "";
  display: block;
  height: 10px;
  left: auto;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(calc(-50% - 5px)) rotate(-45deg);
  width: 10px;
}

.p-minimalist-example .p-sharehouse__content h2.is-open::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.p-minimalist-example .p-sharehouse__content .accordionContent {
  display: none;
}

.p-cta-section.m-minimalist {
  background-color: #F3F3F3;
  padding: 20px 0 0;
}

.p-minimalist-flow {
  background-color: #F3F3F3;
}

.p-minimalist-flow > .l-inner {
  padding-bottom: 72px;
  padding-top: 52px;
  position: relative;
}

.p-minimalist-flow__heading {
  -webkit-transform: translate(0, -50%);
  left: 20px;
  position: absolute;
  top: 0;
  transform: translate(0, -50%);
}

.p-minimalist-flow__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-height: 750px;
  overflow: hidden;
  padding: 20px 0 0;
  position: relative;
  transition: max-height 0.8s;
}

.p-minimalist-flow__list::before {
  background: linear-gradient(to bottom, rgba(242, 242, 242, 0.09) 0%, #f3f3f3 50%, #F3F3F3 100%);
  bottom: 0;
  content: "";
  display: block;
  height: 35%;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.p-minimalist-flow__list.is-open {
  max-height: 400vh;
}

.p-minimalist-flow__list.is-open::before {
  content: none;
}

.p-minimalist-flow__btn {
  margin-top: -100px;
  position: relative;
  z-index: 2;
}

.p-minimalist-faq {
  background-color: #F3F3F3;
  padding: 0 0 40px;
}

.p-minimalist-faq__list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 58px 0 0;
}

.p-minimalist-contact {
  padding: 20px;
  position: relative;
}

.p-minimalist-contact::before {
  background: transparent linear-gradient(90deg, #FFEAFD 0%, #E0FFF8 100%) 0% 0% no-repeat padding-box;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  opacity: 0.35;
  position: absolute;
  top: 0;
  width: 100%;
}

.p-minimalist-contact__inner {
  background-color: #fff;
  margin: 0 auto;
  max-width: 520px;
  padding: 30px 12px 40px;
  position: relative;
}

.p-minimalist-contact__inner::after {
  background: transparent url(../img/other/icon_contact.webp) no-repeat center center/contain;
  bottom: 0;
  content: "";
  display: block;
  height: 52px;
  position: absolute;
  right: 10px;
  width: 133px;
}

.p-minimalist-contact__title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 20px;
  text-align: center;
}

.p-minimalist-contact__title span {
  display: inline-block;
  position: relative;
}

.p-minimalist-contact__title span::before,
.p-minimalist-contact__title span::after {
  background-color: #00E600;
  bottom: 0;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 3px;
}

.p-minimalist-contact__title span::before {
  -webkit-transform: rotate(-45deg);
  left: -24px;
  transform: rotate(-45deg);
}

.p-minimalist-contact__title span::after {
  -webkit-transform: rotate(45deg);
  right: -22px;
  transform: rotate(45deg);
}

.p-minimalist-contact__box {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-minimalist-contact__box .tel > a {
  align-items: center;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 40px;
  display: inline-flex;
  height: 49px;
  justify-content: center;
  width: 200px;
}

.p-minimalist-contact__box .tel > a > span {
  background: transparent url(../img/common/icon_tel.webp) no-repeat left center/14px auto;
  display: inline-block;
  font-size: 14px;
  padding: 0 0 0 20px;
}

.p-minimalist-contact__box .tel > a > span > span {
  font-size: 12px;
}

.p-minimalist-contact__box .tel > a:hover {
  opacity: 0.7;
}

.p-minimalist-contact__desc {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  margin-top: 10px;
  text-align: center;
}

.p-homehub-application {
  background-color: #F3F3F3;
  padding: 0 0 233px;
}

.p-homehub-application__mv {
  background: transparent url(../img/homehub/application/mv_1.webp) no-repeat center center/cover;
  height: clamp(140px, 42.6666666667vw, 240px);
  margin: 0 0 36px;
  position: relative;
}

.p-homehub-application__image {
  -webkit-transform: translateX(-50%);
  bottom: -24px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 94px;
}

.p-homehub-application__heading {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 28px;
  text-align: center;
}

.p-homehub-application__item:not(:last-child) {
  margin-bottom: 10px;
}

.p-homehub-application__item a {
  background-color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 16px 48px 16px 30px;
  position: relative;
}

.p-homehub-application__item a::after {
  -webkit-transform: translateY(-50%) rotate(-135deg);
  border: 2.5px solid transparent;
  border-bottom-color: #00E600;
  border-left-color: #00E600;
  content: "";
  display: block;
  height: 12px;
  left: auto;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
  width: 12px;
}

.p-homehub-benefits {
  background-color: #F3F3F3;
}

.p-homehub-benefits-mv {
  background-color: #00E600;
  padding: 30px 0 40px;
}

.p-homehub-benefits-mv__heading {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin: 0 0 16px;
  text-align: center;
}

.p-homehub-benefits-mv__image {
  margin: 0 auto 10px;
  text-align: center;
}

.p-homehub-benefits-mv__image img {
  width: 100%;
}

.p-homehub-benefits-merits {
  padding: 52px 0 64px;
}

.p-homehub-benefits-merits__list {
  margin: 30px 0 0;
}

.p-homehub-benefits-merits__item:not(:last-child) {
  margin-bottom: 10px;
}

.p-homehub-benefits-merits-item {
  align-items: center;
  background-color: #fff;
  display: flex;
  gap: 22px;
  padding: 28px 24px 28px 52px;
  position: relative;
}

.p-homehub-benefits-merits-item__num {
  background-color: #00E600;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  height: 40px;
  left: 0;
  letter-spacing: 0;
  line-height: 40px;
  position: absolute;
  text-align: center;
  top: 0;
  width: 40px;
}

.p-homehub-benefits-merits-item__image {
  flex-shrink: 0;
  width: 88px;
}

.p-homehub-benefits-merits-item__desc {
  flex-grow: 1;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.9285714286;
}

.p-homehub-benefits-flow {
  padding: 0 0 50px;
}

.p-homehub-benefits-flow__list {
  margin: 54px 0 0;
}

.p-homehub-benefits-flow-item {
  background-color: #fff;
  padding: 28px 20px;
  position: relative;
}

.p-homehub-benefits-flow-item:not(:last-child) {
  margin-bottom: 50px;
}

.p-homehub-benefits-flow-item:not(:last-child)::after {
  -webkit-transform: translate(-50%, 100%) rotate(90deg);
  background: transparent url(../img/common/arrow.webp) no-repeat center center/contain;
  bottom: -10px;
  content: "";
  display: block;
  height: 30px;
  left: 50%;
  position: absolute;
  transform: translate(-50%, 100%) rotate(90deg);
  width: 30px;
  z-index: 1;
}

.p-homehub-benefits-flow-item__num {
  -webkit-transform: translateY(-60%);
  color: #00E600;
  font-size: 26px;
  font-weight: 600;
  left: 20px;
  letter-spacing: 0;
  line-height: 1;
  position: absolute;
  top: 0;
  transform: translateY(-60%);
}

.p-homehub-benefits-flow-item__title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.75;
}

.p-homehub-benefits-flow-item__caution {
  font-size: 12px;
}

.p-homehub-benefits-flow-item__desc {
  margin: 16px 0 0;
}

.p-homehub-benefits-navi {
  padding: 0 0 50px;
}

.p-homehub-benefits-navi__logo {
  margin: 30px auto 0;
  width: 118px;
}

.p-homehub-form-template {
  background-color: #F3F3F3;
  padding: 60px 0 100px;
}

.p-homehub-form-template__back {
  margin: -40px 0 20px;
}

.p-homehub-form-template__back a {
  padding: 0 0 0 16px;
  position: relative;
}

.p-homehub-form-template__back a::after {
  -webkit-transform: translateY(-50%) rotate(45deg);
  border: 2.5px solid transparent;
  border-bottom-color: #000;
  border-left-color: #000;
  content: "";
  display: block;
  height: 10px;
  left: 0;
  position: absolute;
  right: auto;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
}

.p-homehub-form-template__heading {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 28px;
  text-align: center;
}

.p-homehub-form-template__caution {
  background-color: #EDCDCD;
  color: #FF0000;
  font-weight: 600;
  padding: 16px 20px;
  text-align: center;
}

.p-homehub-form-template__lead {
  text-align: center;
}

.p-homehub-form-template__form .checkbox .c-checkbox + span {
  font-size: 13px;
  font-weight: 600;
}

.p-homehub-form-template__form .checkbox .c-checkbox + span::before {
  border-width: 2px;
  content: "";
  display: block;
  top: 0;
}

.p-homehub-form-template__form .checkbox .c-checkbox + span::after {
  top: 1px;
}

.p-homehub-form-template #js-apply-btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

@media screen and (min-width: 768px) {
  :target {
    scroll-margin-top: 72px;
  }

  .l-inner {
    padding-left: 48px;
    padding-right: 48px;
  }

  .l-header {
    height: 72px;
  }

  .p-multilingual-search-modal {
    height: calc(100vh - 72px);
    top: 72px;
  }

  .l-main {
    padding-top: 72px;
  }

  .u-only-sp {
    display: none !important;
  }

  .p-post-card__link {
    flex-direction: column;
  }

  .p-post-card__thumbnail {
    height: clamp(120px, 10.2857142857vw, 144px);
    margin: 0 0 16px;
    width: auto;
  }

  .p-post-card__body {
    width: auto;
  }

  .p-post-card__title {
    font-size: 14px;
    font-weight: 300;
  }

  .p-post-card__excerpt {
    display: none;
  }

  .p-post-cards {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 48px 20px;
  }

  .p-post-cards__card {
    width: calc(50% - 10px);
  }

  .p-post-cards.m-type-voice {
    gap: 40px 20px;
  }

  .p-post-cards.m-type-voice .p-post-cards__card {
    width: calc(50% - 10px);
  }

  .p-related-posts__slider .swiper {
    margin-left: 0;
  }

  .p-voice-card__thumbnail {
    height: 180px;
  }

  .p-home-brand__cards {
    gap: 40px 20px !important;
  }

  .p-home-brand__card {
    width: calc(50% - 10px);
  }

  .p-search-result-related-posts-content__cards {
    flex-direction: column;
  }

  .p-sharehouse-map-modal {
    width: calc(100% - 96px);
  }

  .p-voice__cards {
    gap: 40px 20px !important;
  }

  .p-voice__card {
    width: calc(50% - 10px);
  }

  .p-about-life__card {
    width: calc(50% - 10px);
  }
}

@media screen and (min-width: 1024px) {
  body {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }

  :target {
    scroll-margin-top: 100px;
  }

  .l-inner {
    max-width: 928px;
  }

  .l-inner.m-960 {
    max-width: 960px;
  }

  .l-header {
    height: 100px;
  }

  .l-header__logo {
    margin-left: clamp(24px, 3.4722222222vw, 50px);
    margin-right: 12px;
    width: clamp(100px, 9.375vw, 135px);
  }

  .l-header__menu {
    margin-right: 108px;
  }

  .l-header__menu-item > a,
  .l-header__menu-item > div {
    font-size: 12px;
    font-weight: 600;
  }

  .l-header__menu-item.m-history > a,
  .l-header__menu-item.m-favorite > a {
    padding-top: 28px;
  }

  .l-header__menu-item.m-history {
    margin-right: 15px;
  }

  .l-header__menu-item.m-favorite {
    margin-right: 15px;
  }

  .l-header__menu-item.m-search > a,
  .l-header__menu-item.m-search > div {
    background-position: center top 15px;
    letter-spacing: 0.01em;
    padding: 38px 3px 12px;
    width: 92px;
  }

  .l-header__menu-item.m-search.vi_VN > a,
  .l-header__menu-item.m-search.zh > a {
    font-size: 12px;
  }

  .l-header__menu-item.m-multilingual > div {
    font-size: 12px;
  }

  .l-header.m-multilingual-home .l-header__inner {
    padding-left: 48px;
    padding-right: 48px;
  }

  .l-header.m-multilingual-home .l-header__box {
    align-items: center;
    display: flex;
    gap: 20px;
  }

  .l-header.m-multilingual-home .l-header__logo {
    margin-left: 0;
    margin-right: 0;
  }

  .l-header.m-multilingual-home .l-header__text {
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
  }

  .l-header.m-multilingual-home .l-header__mail > a {
    font-size: 14px;
    min-width: 200px;
    padding: 12px 16px;
  }

  .l-gnav-btn__text {
    padding: 0 30px 0 12px;
  }

  .l-gnav-btn__text::before {
    font-size: 15px;
  }

  .l-gnav-btn__text::after {
    border-width: 12px;
  }

  .l-gnav {
    max-width: 340px;
    padding: 50px 30px 120px;
  }

  .l-gnav__houses > li > a {
    padding-top: 28px;
    width: auto;
  }

  .p-multilingual-search-modal {
    height: calc(100vh - 100px);
    padding: 80px 0;
    top: 100px;
  }

  .p-multilingual-search-modal__inner {
    max-width: 928px;
    padding: 50px 48px 40px;
  }

  .p-multilingual-search-modal__form {
    margin-left: auto;
    max-width: 296px;
  }

  .l-main {
    padding-top: 100px;
  }

  .l-footer::before {
    background-image: url(../img/common/bg_footer.webp);
    height: 6.8571428571vw;
  }

  .l-footer__menus > .l-inner {
    max-width: 978px;
  }

  .l-footer__box {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 60px 0 24px;
  }

  .l-footer__logo {
    flex-shrink: 0;
    margin: 0 140px 0 0;
  }

  .l-footer__copyright {
    padding: 25px 0;
  }

  .l-footer__navs {
    align-items: flex-start;
    display: flex;
    flex-grow: 1;
    gap: 37px;
  }

  .l-footer__sns {
    flex-wrap: nowrap;
    gap: 16px;
    justify-content: flex-end;
    margin: 0 0 48px;
  }

  .l-footer__sns::before {
    margin-right: 4px;
    width: auto;
  }

  .l-footer__notion {
    font-size: 11px;
    line-height: 1.6363636364;
    margin: 36px 0;
  }

  .l-footer.m-multilingual-home .l-footer__logo {
    margin: 60px auto;
  }

  .l-footer-search {
    margin: 0;
    max-width: none;
  }

  .l-footer-search .about > a {
    font-size: 12px;
  }

  .l-footer-nav {
    border-top: 1px solid #000;
    flex-grow: 1;
    margin: 0;
    max-width: 227px;
  }

  .l-footer-nav > li.m-external {
    text-align: left;
  }

  .l-footer-links {
    padding: 48px 0;
  }

  .l-footer-links-item__title {
    font-size: 12px;
  }

  .l-footer-links-item__list > li {
    font-size: 12px;
  }

  .c-to-top-btn {
    bottom: 5%;
    right: 20px;
  }

  .c-to-top-btn.m-about {
    bottom: auto;
    top: calc(41% + 100px);
  }

  .c-content-area h2 {
    font-size: 16px;
  }

  .c-content-area h3 {
    font-size: 14px;
  }

  .c-content-area h3::before {
    top: -5px;
  }

  .c-checkbox + span {
    font-size: 13px;
    padding-left: 2em;
  }

  .c-checkbox + span::before {
    top: 0px;
  }

  .c-checkbox + span::after {
    top: 1px;
  }

  .c-page-heading {
    font-size: 32px;
    padding: 36px 0 40px;
  }

  .c-page-heading span {
    max-width: 928px;
    padding-left: 48px;
    padding-right: 48px;
  }

  .c-page-heading.m-map span::before {
    height: 27px;
    margin-right: 25px;
    width: 20px;
  }

  .c-page-heading.m-query span::before {
    height: 27px;
    margin-right: 20px;
    width: 30px;
  }

  .c-page-heading.m-area span::before {
    height: 32px;
    margin-right: 20px;
    width: 38px;
  }

  .c-page-heading.m-station span::before {
    height: 38px;
    margin-right: 20px;
    width: 28px;
  }

  .c-page-heading.m-commute span::before {
    height: 36.5px;
    margin-right: 20px;
    width: 38px;
  }

  .c-section-heading__en {
    font-size: 12px;
    margin-bottom: 6px;
  }

  .c-section-heading__ja {
    font-size: 20px;
    line-height: 1.5;
  }

  .c-section-heading__ja.m-large {
    font-size: 30px;
  }

  .c-section-subheading {
    font-size: 12px;
  }

  .c-section-subheading::before {
    top: -5px;
  }

  .c-page-template {
    padding: 80px 0 120px;
  }

  .c-page-template__title {
    font-size: 1.8em;
  }

  .c-search-form > input[type=text]::-webkit-input-placeholder {
    font-size: 16px;
  }

  .c-search-form > input[type=text]::-moz-placeholder {
    font-size: 16px;
  }

  .c-search-form > input[type=text]:-ms-input-placeholder {
    font-size: 16px;
  }

  .c-search-form > input[type=text]::-ms-input-placeholder {
    font-size: 16px;
  }

  .c-search-form > input[type=text]::placeholder {
    font-size: 16px;
  }

  .u-pc-none {
    display: none !important;
  }

  .u-pc-mt0 {
    margin-top: 00px !important;
  }

  .u-pc-mt1 {
    margin-top: 10px !important;
  }

  .u-pc-mt2 {
    margin-top: 20px !important;
  }

  .u-pc-mt3 {
    margin-top: 30px !important;
  }

  .u-pc-mt4 {
    margin-top: 40px !important;
  }

  .u-pc-mt5 {
    margin-top: 50px !important;
  }

  .u-pc-mt6 {
    margin-top: 60px !important;
  }

  .u-pc-mt7 {
    margin-top: 70px !important;
  }

  .u-pc-mt8 {
    margin-top: 80px !important;
  }

  .u-pc-mt9 {
    margin-top: 90px !important;
  }

  .u-pc-mt10 {
    margin-top: 100px !important;
  }

  .u-pc-mt11 {
    margin-top: 110px !important;
  }

  .u-pc-mt12 {
    margin-top: 120px !important;
  }

  .u-pc-mt13 {
    margin-top: 130px !important;
  }

  .u-pc-mt14 {
    margin-top: 140px !important;
  }

  .u-pc-mt15 {
    margin-top: 150px !important;
  }

  .u-pc-mt16 {
    margin-top: 160px !important;
  }

  .u-pc-mt17 {
    margin-top: 170px !important;
  }

  .u-pc-mt18 {
    margin-top: 180px !important;
  }

  .u-pc-mt19 {
    margin-top: 190px !important;
  }

  .u-pc-mt20 {
    margin-top: 200px !important;
  }

  .u-pc-mr0 {
    margin-right: 00px !important;
  }

  .u-pc-mr1 {
    margin-right: 10px !important;
  }

  .u-pc-mr2 {
    margin-right: 20px !important;
  }

  .u-pc-mr3 {
    margin-right: 30px !important;
  }

  .u-pc-mr4 {
    margin-right: 40px !important;
  }

  .u-pc-mr5 {
    margin-right: 50px !important;
  }

  .u-pc-mr6 {
    margin-right: 60px !important;
  }

  .u-pc-mr7 {
    margin-right: 70px !important;
  }

  .u-pc-mr8 {
    margin-right: 80px !important;
  }

  .u-pc-mr9 {
    margin-right: 90px !important;
  }

  .u-pc-mr10 {
    margin-right: 100px !important;
  }

  .u-pc-mr11 {
    margin-right: 110px !important;
  }

  .u-pc-mr12 {
    margin-right: 120px !important;
  }

  .u-pc-mr13 {
    margin-right: 130px !important;
  }

  .u-pc-mr14 {
    margin-right: 140px !important;
  }

  .u-pc-mr15 {
    margin-right: 150px !important;
  }

  .u-pc-mr16 {
    margin-right: 160px !important;
  }

  .u-pc-mr17 {
    margin-right: 170px !important;
  }

  .u-pc-mr18 {
    margin-right: 180px !important;
  }

  .u-pc-mr19 {
    margin-right: 190px !important;
  }

  .u-pc-mr20 {
    margin-right: 200px !important;
  }

  .u-pc-mb0 {
    margin-bottom: 00px !important;
  }

  .u-pc-mb1 {
    margin-bottom: 10px !important;
  }

  .u-pc-mb2 {
    margin-bottom: 20px !important;
  }

  .u-pc-mb3 {
    margin-bottom: 30px !important;
  }

  .u-pc-mb4 {
    margin-bottom: 40px !important;
  }

  .u-pc-mb5 {
    margin-bottom: 50px !important;
  }

  .u-pc-mb6 {
    margin-bottom: 60px !important;
  }

  .u-pc-mb7 {
    margin-bottom: 70px !important;
  }

  .u-pc-mb8 {
    margin-bottom: 80px !important;
  }

  .u-pc-mb9 {
    margin-bottom: 90px !important;
  }

  .u-pc-mb10 {
    margin-bottom: 100px !important;
  }

  .u-pc-mb11 {
    margin-bottom: 110px !important;
  }

  .u-pc-mb12 {
    margin-bottom: 120px !important;
  }

  .u-pc-mb13 {
    margin-bottom: 130px !important;
  }

  .u-pc-mb14 {
    margin-bottom: 140px !important;
  }

  .u-pc-mb15 {
    margin-bottom: 150px !important;
  }

  .u-pc-mb16 {
    margin-bottom: 160px !important;
  }

  .u-pc-mb17 {
    margin-bottom: 170px !important;
  }

  .u-pc-mb18 {
    margin-bottom: 180px !important;
  }

  .u-pc-mb19 {
    margin-bottom: 190px !important;
  }

  .u-pc-mb20 {
    margin-bottom: 200px !important;
  }

  .u-pc-ml0 {
    margin-left: 00px !important;
  }

  .u-pc-ml1 {
    margin-left: 10px !important;
  }

  .u-pc-ml2 {
    margin-left: 20px !important;
  }

  .u-pc-ml3 {
    margin-left: 30px !important;
  }

  .u-pc-ml4 {
    margin-left: 40px !important;
  }

  .u-pc-ml5 {
    margin-left: 50px !important;
  }

  .u-pc-ml6 {
    margin-left: 60px !important;
  }

  .u-pc-ml7 {
    margin-left: 70px !important;
  }

  .u-pc-ml8 {
    margin-left: 80px !important;
  }

  .u-pc-ml9 {
    margin-left: 90px !important;
  }

  .u-pc-ml10 {
    margin-left: 100px !important;
  }

  .u-pc-ml11 {
    margin-left: 110px !important;
  }

  .u-pc-ml12 {
    margin-left: 120px !important;
  }

  .u-pc-ml13 {
    margin-left: 130px !important;
  }

  .u-pc-ml14 {
    margin-left: 140px !important;
  }

  .u-pc-ml15 {
    margin-left: 150px !important;
  }

  .u-pc-ml16 {
    margin-left: 160px !important;
  }

  .u-pc-ml17 {
    margin-left: 170px !important;
  }

  .u-pc-ml18 {
    margin-left: 180px !important;
  }

  .u-pc-ml19 {
    margin-left: 190px !important;
  }

  .u-pc-ml20 {
    margin-left: 200px !important;
  }

  .p-404 {
    padding: 120px 0 160px;
  }

  .p-archive__contents {
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    display: grid;
    grid-template-columns: auto 233px;
    grid-template-rows: repeat(2, auto);
    margin: 50px auto 0;
    max-width: 928px;
  }

  .p-archive__contents .p-related-posts {
    grid-column: 1/3;
    grid-row: 2/3;
    margin: 80px calc(50% - 50vw) 0;
  }

  .p-archive__contents .p-categories {
    align-self: start;
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .p-archive__outer {
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .p-archive__outer .l-inner {
    padding: 0;
  }

  .p-single {
    background-color: #F3F3F3;
  }

  .p-single__contents {
    grid-column-gap: 20px;
    grid-row-gap: 0px;
    display: grid;
    grid-template-columns: auto 233px;
    grid-template-rows: repeat(4, auto);
    margin: 50px auto 0;
    max-width: 928px;
  }

  .p-single__contents .p-single-supervisor {
    grid-column: 1/2;
    grid-row: 2/3;
    margin-bottom: 50px;
  }

  .p-single__contents .p-single-search {
    grid-column: 1/3;
    grid-row: 3/4;
    margin: 0 calc(50% - 50vw) 0;
  }

  .p-single__contents .p-related-posts {
    grid-column: 1/3;
    grid-row: 5/6;
    margin: 0 calc(50% - 50vw) 0;
  }

  .p-single__contents .p-categories {
    align-self: start;
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .p-single__outer {
    background-color: #fff;
    max-width: 690px;
    padding: 20px clamp(48px, 5.3571428571vw, 75px) 60px;
  }

  .p-single__outer .l-inner {
    padding: 0;
  }

  .p-single__date {
    margin-right: -40px;
  }

  .p-single-search {
    background-color: #fff;
    padding: 60px 0;
  }

  .p-single-search__list {
    flex-direction: row;
    gap: 20px;
    margin: 0;
  }

  .p-single-search__item {
    display: block;
    width: calc(50% - 10px);
  }

  .p-single-search__item .title {
    -webkit-transform: none;
    background-color: #fff;
    background-position: left 10px center;
    display: inline-block;
    font-size: 16px;
    padding: 8px 20px 8px 37px;
    position: static;
    transform: none;
  }

  .p-single-search__item .c-btn {
    bottom: 20px;
    position: absolute;
    right: 20px;
  }

  .p-single-search__item.m-map {
    background-image: url(../img/other/img_map.webp);
  }

  .p-single-search__item.m-map .title {
    padding-left: 37px;
  }

  .p-single-search__item.m-query {
    background-image: url(../img/other/img_query.webp);
  }

  .p-single-search__item.m-query .title {
    padding-left: 44px;
  }

  .p-single-supervisor > .l-inner {
    padding: 0;
  }

  .p-single-supervisor__content {
    grid-column-gap: 15px;
    grid-row-gap: 20px;
    border: 0;
    grid-template-columns: 150px auto;
    grid-template-rows: auto 1fr auto;
    padding: 40px 68px;
  }

  .p-single-supervisor__image {
    grid-row: 1/3;
    height: 150px;
  }

  .p-single-supervisor__info {
    align-self: start;
  }

  .p-single-supervisor__lead {
    font-size: 14px;
  }

  .p-single-supervisor__box {
    align-items: baseline;
    display: flex;
    gap: 10px;
  }

  .p-single-supervisor__name {
    font-size: 20px;
  }

  .p-single-supervisor__position {
    font-size: 15px;
  }

  .p-single-supervisor__certification {
    grid-column: 2/3;
  }

  .p-single-supervisor__certification > .desc {
    font-size: 14px;
  }

  .p-single-supervisor__career {
    margin: 0;
  }

  .p-single-cta-box {
    flex-direction: row;
    margin: 0;
  }

  .p-pagination .wp-pagenavi {
    margin-top: 50px;
  }

  .p-post-cards {
    gap: 48px 20px;
  }

  .p-post-cards__card {
    width: calc(33.33% - 13.3333333333px);
  }

  .p-breadcrumb {
    background-color: transparent;
    padding: 10px 0;
  }

  .p-breadcrumb__inner {
    text-align: right;
  }

  .p-slider {
    margin-top: 68px;
  }

  .p-slider > .swiper-nav-box > .swiper-pagination {
    margin-left: 28%;
  }

  .p-sharehouse-card__link {
    grid-column-gap: 0;
    grid-template-columns: 237px auto;
    grid-template-rows: repeat(4, auto);
    padding: 24px 30px 20px;
  }

  .p-sharehouse-card__thumbnail {
    grid-column: 1/2;
    grid-row: 1/4;
    height: clamp(120px, 38.4vw, 144px);
    margin-right: 20px;
  }

  .p-sharehouse-card__thumbnail-label {
    width: auto;
  }

  .p-sharehouse-card__rent {
    padding: 3px 8px;
  }

  .p-sharehouse-card__status {
    flex-grow: 0;
    padding: 0 10px;
  }

  .p-sharehouse-card__body {
    padding: 18px 20px 0;
  }

  .p-sharehouse-card__title {
    -webkit-line-clamp: 2;
    margin: 0 0 8px;
    max-height: 45px;
    padding: 0;
  }

  .p-sharehouse-card__terms {
    grid-column: 2/3;
    grid-row: 3/4;
    padding: 0;
  }

  .p-sharehouse-card__terms > li {
    font-size: 11px;
    padding: 4px 8px;
  }

  .p-sharehouse-card__detail {
    grid-column: 2/3;
    grid-row: 2/3;
    margin: 0 0 8px;
    padding: 0;
  }

  .p-sharehouse-card__info {
    margin-top: 16px;
    padding: 0;
  }

  .p-sharehouse-card__excerpt {
    -webkit-line-clamp: 3;
    max-height: 54px;
  }

  .p-sharehouse-card__btns {
    gap: 10px;
  }

  .p-sharehouse-card__btns .c-btn:nth-child(1) {
    max-width: 148px;
    width: 26.523297491%;
  }

  .p-sharehouse-card__btns .c-btn:nth-child(2) {
    max-width: 290px;
    width: 51.9713261649%;
  }

  .p-sharehouse-card__commute {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    margin-top: -8px;
    padding: 0 30px 30px;
  }

  .p-sharehouse-card__company {
    bottom: 8px;
    right: 8px;
  }

  .p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__link {
    grid-template-columns: 237px auto 1fr;
  }

  .p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__thumbnail {
    margin: 0 20px 0 0;
  }

  .p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__area {
    align-self: start;
    grid-column: 2/3;
    grid-row: 3/4;
    margin: 0 2px 0 0;
  }

  .p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__title {
    grid-column: 2/4;
    grid-row: 1/2;
  }

  .p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__terms {
    align-self: start;
    grid-column: 3/4;
  }

  .p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__detail {
    grid-column: 2/4;
    grid-row: 2/3;
  }

  .p-sharehouse-card.m-param-type-is-only-single-area .p-sharehouse-card__info {
    grid-column: 1/4;
  }

  .p-sharehouse-card.m-simple .p-sharehouse-card__rent {
    font-size: 18px;
  }

  .p-sharehouse-card.m-simple .p-sharehouse-card__status {
    padding: 0 16px;
  }

  .p-sharehouse-card.m-simple .p-sharehouse-card__title {
    font-size: 15px;
    max-height: 45px;
  }

  .p-sharehouse-card.swiper-slide .p-sharehouse-card__rent {
    font-size: 18px;
  }

  .p-sharehouse-card.m-map .p-sharehouse-card__link {
    grid-template-columns: 190px auto;
    padding: 20px;
  }

  .p-page__head {
    display: flex;
    flex-direction: column-reverse;
  }

  .p-search-query-form__type:not(:last-child) {
    margin-bottom: 30px;
  }

  .p-search-query-form.m-page-search .p-search-query-form__submit {
    bottom: 5%;
  }

  .p-search-query-form-type__title {
    margin-bottom: 20px;
    padding-bottom: 17px;
  }

  .p-search-query-form-type__list {
    padding: 25px 30px;
  }

  .p-search-query-form-type__item:not(:last-child) {
    margin-bottom: 10px;
  }

  .p-search-query-form-type-item.m-pc-col-4 {
    width: calc(25% - 7.5px);
  }

  .p-search-query-form-type-item__list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .p-search-query-form-type-item__item.m-col-5 {
    width: calc(20% - 8px);
  }

  .p-search-query-form-type-item__item .child-name {
    margin: 0;
    width: auto;
  }

  .p-search-query-form-type-item__item .child-name::after {
    right: 40px;
  }

  .p-search-query-form-type-item__item .gchild-list {
    margin-left: 1em;
  }

  .p-search-query-form-type-item__item .gchild-list .gchild-item {
    width: calc(16.66% - 8.3333333333px);
  }

  .p-concept {
    padding: 160px 0 120px;
  }

  .p-concept__box {
    grid-column-gap: 178px;
    grid-row-gap: 48px;
    grid-template-columns: 49% auto;
  }

  .p-concept__box::before {
    background-image: url(../img/common/bg_about.webp);
    height: 288px;
    left: 113px;
    right: auto;
    top: -60px;
    width: 44.8275862069%;
  }

  .p-concept__image {
    grid-column: 1/2;
    grid-row: 1/3;
    margin-top: 100px;
  }

  .p-concept__heading {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .p-concept__heading .en {
    margin-bottom: 24px;
  }

  .p-concept__heading .ja {
    font-size: 28px;
    letter-spacing: 0.1em;
  }

  .p-concept__desc {
    grid-column: 2/3;
    grid-row: 2/3;
    padding: 0;
  }

  .p-reasons {
    padding-bottom: 60px;
  }

  .p-reasons__heading {
    background-image: url(../img/home/img_2.webp);
    font-size: 20px;
    gap: 14px;
    margin: 0 auto;
    max-width: 1200px;
    padding: 76px 0 198px 200px;
  }

  .p-reasons__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: -80px;
  }

  .p-reasons__item {
    width: calc(50% - 10px);
  }

  .p-reasons__slider {
    margin-top: -80px;
  }

  .p-reasons.m-home {
    background-image: url(../img/home/deco_1.webp);
    background-position: left top 40px;
    background-repeat: no-repeat;
    background-size: 394px auto;
    padding-top: 85px;
  }

  .p-reasons.m-about .p-reasons__visual {
    background-color: transparent;
    margin-bottom: 30px;
  }

  .p-reasons.m-about .p-reasons__heading {
    -webkit-transform: translateY(-50%);
    align-items: flex-start;
    font-size: 20px;
    gap: 14px;
    left: clamp(24px, 2.1428571429vw, 30px);
    margin-top: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .p-reasons.m-about .p-reasons__heading > div {
    align-items: flex-start;
    background-color: #fff;
    flex-direction: row;
    gap: 0;
    padding: 8px 12px;
  }

  .p-reasons.m-about .p-reasons__heading > div > span {
    padding: 0;
  }

  .p-reasons.m-about .p-reasons__content {
    padding-bottom: 60px;
  }

  .p-reasons-item {
    padding: 50px;
  }

  .p-reasons-item__image img {
    height: 120px;
  }

  .p-reasons-item__title {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin: 28px 0 24px;
  }

  .p-reasons-item__desc {
    font-size: 15px;
  }

  .p-reasons-item.m-about {
    align-items: center;
    flex-direction: column;
    gap: 30px;
    padding: 36px 40px;
  }

  .p-reasons-item.m-about .p-reasons-item__image {
    width: 220px;
  }

  .p-reasons-item.m-about .p-reasons-item__title {
    font-size: 20px;
    text-align: center;
  }

  .p-reasons-item.m-about .p-reasons-item__remark {
    font-size: 18px;
    letter-spacing: 0.05em;
    margin: -20px 0 15px;
    text-align: center;
  }

  .p-reasons-item.m-about .p-reasons-item__btn {
    text-align: center;
  }

  .p-reasons-item.m-about .p-reasons-item__btn > div {
    font-size: 14px;
    min-width: 200px;
    padding: 13px 12px;
  }

  .p-reasons-modal__list {
    max-width: 960px;
  }

  .p-reasons-modal__grid {
    grid-column-gap: 56px;
    border-width: 2px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.16);
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto auto;
    padding: 50px 50px 50px 72px;
  }

  .p-reasons-modal__num {
    font-size: 24px;
    height: 54px;
    line-height: 54px;
    width: 54px;
  }

  .p-reasons-modal__image {
    align-self: center;
    grid-column: 1/2;
    grid-row: 1/5;
    margin: 0;
    width: 320px;
  }

  .p-reasons-modal__title {
    align-self: auto;
    font-size: 20px;
    grid-column: 2/3;
    grid-row: 1/2;
    margin: 0 0 12px;
  }

  .p-reasons-modal__remark {
    font-size: 18px;
    grid-column: 2/3;
    grid-row: 2/3;
    margin-bottom: 20px;
  }

  .p-reasons-modal__desc {
    font-size: 15px;
    grid-column: 2/3;
    grid-row: 3/4;
  }

  .p-reasons-modal__btn {
    grid-column: 2/3;
    grid-row: 4/5;
    text-align: left;
  }

  .p-reasons-modal__btn > div {
    font-size: 14px;
    min-width: 200px;
    padding: 13px 12px;
  }

  .p-categories {
    padding: 30px 0 24px;
  }

  .p-categories__inner {
    padding: 0 30px;
  }

  .p-categories .c-btn > a {
    font-size: 12px;
    height: 28px;
    letter-spacing: 0.05em;
    min-width: 133px;
  }

  .p-related-posts__content {
    padding: 72px 0 60px;
  }

  .p-wpml-language-switcher.m-gnav {
    padding: 20px 30px 30px;
  }

  .p-wpml-language-switcher.m-btn .p-wpml-language-switcher__title {
    -webkit-transform: none;
    background-color: #000;
    bottom: auto;
    padding: 6px 6px 6px 8px;
    right: 0;
    top: 0;
    transform: none;
  }

  .p-wpml-language-switcher.m-btn .p-wpml-language-switcher__close {
    right: 32px;
    top: 32px;
  }

  .p-wpml-language-switcher.m-home-search {
    gap: 20px;
  }

  .p-wpml-language-switcher.m-home-search .p-wpml-language-switcher__title {
    margin-bottom: 4px;
  }

  .p-wpml-language-switcher.m-home-search .p-wpml-language-switcher__box {
    gap: 12px 20px;
  }

  .p-wpml-language-switcher.m-home-search .p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul {
    gap: 12px 20px;
  }

  .p-wpml-language-switcher.m-home-search .p-wpml-language-switcher__menu .wpml-ls-legacy-list-horizontal ul li a::before {
    height: 26px;
    width: 40px;
  }

  .p-movie-card__thumbnail {
    height: clamp(100px, 8.7142857143vw, 122px);
    margin-bottom: 16px;
  }

  .p-voice-card__thumbnail {
    height: 300px;
  }

  .p-cta-section__inner {
    background: #F3F3F3 url(../img/about/deco_2.webp) no-repeat left top/591px auto;
    padding: 30px 0;
  }

  .p-cta-section__content {
    max-width: 880px;
    padding: 45px 50px;
  }

  .p-cta-section__title {
    margin-bottom: 20px;
  }

  .p-cta-section__list {
    gap: 20px;
    justify-content: center;
    margin: 0 0 20px;
  }

  .p-cta-section__btn {
    width: calc(25% - 15px);
  }

  .p-cta-section__btn > a {
    min-height: 50px;
    padding: 14px 8px;
  }

  .p-cta-section.m-bg-gray {
    padding: 110px 0 90px;
  }

  .p-initial-cost-detail__table > thead > tr > td,
  .p-initial-cost-detail__table > tfoot > tr > td {
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .p-initial-cost-detail__table > thead > tr > td.m-colored,
  .p-initial-cost-detail__table > tfoot > tr > td.m-colored {
    font-size: 16px;
  }

  .p-initial-cost-detail__table > thead > tr > td.m-price,
  .p-initial-cost-detail__table > tfoot > tr > td.m-price {
    font-size: 16px;
  }

  .p-initial-cost-detail__table > thead > tr > td.m-price > .price .num,
  .p-initial-cost-detail__table > tfoot > tr > td.m-price > .price .num {
    font-size: 32px;
  }

  .p-initial-cost-detail__table > tbody > tr > th {
    font-size: 14px;
  }

  .p-monthly-cost-detail__wrap {
    margin: 0 auto;
    max-width: 1200px;
    padding: 80px 0;
  }

  .p-monthly-cost-detail__inner {
    display: flex;
    flex-direction: column;
  }

  .p-monthly-cost-detail__lead {
    order: 0;
  }

  .p-monthly-cost-detail__table-wrap {
    order: 1;
  }

  .p-monthly-cost-detail__table > thead > tr > td {
    font-size: 14px;
  }

  .p-monthly-cost-detail__table > thead > tr > td > span {
    background-position: left center;
    padding: 0 0 0 67px;
    text-align: left;
  }

  .p-monthly-cost-detail__table > thead > tr > td.m-large {
    padding: 32px 0;
  }

  .p-monthly-cost-detail__table > thead > tr > td.m-deco div {
    display: inline-block;
    padding: 0 2em;
    position: relative;
  }

  .p-monthly-cost-detail__table > thead > tr > td.m-deco div::before,
  .p-monthly-cost-detail__table > thead > tr > td.m-deco div::after {
    background-color: #00E600;
    bottom: 0;
    content: "";
    display: block;
    height: 20px;
    position: absolute;
    width: 4px;
  }

  .p-monthly-cost-detail__table > thead > tr > td.m-deco div::before {
    -webkit-transform: rotate(-40deg);
    left: 0;
    transform: rotate(-40deg);
  }

  .p-monthly-cost-detail__table > thead > tr > td.m-deco div::after {
    -webkit-transform: rotate(40deg);
    right: 0;
    transform: rotate(40deg);
  }

  .p-monthly-cost-detail__table > tfoot > tr > th {
    font-size: 20px;
    letter-spacing: 0.05em;
  }

  .p-monthly-cost-detail__table > tfoot > tr > td {
    font-size: 16px;
    letter-spacing: 0.05em;
  }

  .p-monthly-cost-detail__table > tfoot > tr > td > span {
    font-size: 32px;
    letter-spacing: inherit;
  }

  .p-monthly-cost-detail__table > tfoot > tr > td > span > span {
    font-size: 27px;
  }

  .p-monthly-cost-detail__table > tfoot > tr > td.m-three-data::after {
    left: -6px;
    width: 12px;
  }

  .p-monthly-cost-detail__table > tbody.m-mt::before {
    height: 20px;
  }

  .p-monthly-cost-detail__table > tbody > tr > th {
    font-size: 14px;
    letter-spacing: 0.05em;
  }

  .p-monthly-cost-detail__table > tbody > tr > td {
    font-size: 15px;
    letter-spacing: 0.05em;
  }

  .p-monthly-cost-detail__table > tbody > tr > td.m-with-icon {
    padding: 12.5px 0 9.5px;
  }

  .p-monthly-cost-detail__attention {
    order: 2;
  }

  .p-monthly-cost-detail__question {
    background-position: left center;
    font-size: 20px;
    order: 3;
    padding: 0 0 0 40px;
  }

  .p-search-list__item {
    width: calc(25% - 7.5px);
  }

  .p-search-list__item > a {
    padding: 14.5px 8px 14.5px 12px;
  }

  .p-search-list__item > a .content {
    align-items: center;
    display: flex;
    gap: 12px;
  }

  .p-search-list__item > a .icon img {
    height: 32px;
  }

  .p-search-list__item > a .text {
    font-size: 16px;
    letter-spacing: 0.025em;
    text-align: left;
  }

  .p-search-list__item.m-rent a {
    padding: 12px 8px;
  }

  .p-search-list__item.m-rent .text {
    gap: 5px;
  }

  .p-search-list__item.m-rent .text > .num {
    font-size: 42px;
  }

  .p-home-mv::before {
    background: transparent url(../img/home/bg_mv_2.webp) repeat-x top left/1400px auto;
    bottom: -48px;
    content: "";
    display: block;
    height: 336px;
    position: absolute;
    right: 0;
    width: 100vw;
    z-index: -1;
  }

  .p-home-mv__inner {
    margin: 0 auto;
    max-width: 1200px;
  }

  .p-home-mv__image {
    height: 400px !important;
  }

  .p-home-mv__heading {
    font-size: 14px;
    left: 40px;
    top: 16px;
  }

  .p-home-mv__copy {
    font-size: clamp(38px, 2.5vw, 35px);
    right: 105px;
  }

  .p-home-mv__btn {
    -webkit-transform: none;
    bottom: 72px;
    left: clamp(60px, 13vw, 182px);
    transform: none;
  }

  .p-home-mv__btn > a {
    font-size: 13px;
    padding: 15px 22px;
  }

  .p-home-search {
    padding: 30px 0 20px;
  }

  .p-home-search__lead {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .p-home-search__form {
    margin-left: auto;
    max-width: 296px;
  }

  .p-home-search__bnr {
    max-width: 960px;
  }

  .p-home-introduction {
    padding: 45px 0 0;
  }

  .p-home-introduction__list {
    gap: 20px;
  }

  .p-home-introduction__item.m-col-2 {
    width: calc(50% - 10px);
  }

  .p-home-posts {
    padding: 72px 0 60px;
  }

  .p-home-posts__cards {
    margin: 68px 0 0;
  }

  .p-home-posts__cards > article {
    width: calc(25% - 15px);
  }

  .p-home-sharehouse-reccomend {
    padding: 32px 0 40px;
  }

  .p-home-sharehouse-reccomend::before {
    height: 76.8%;
  }

  .p-home-bnrs {
    padding: 40px 0 92px;
  }

  .p-home-bnrs__list {
    gap: 20px;
  }

  .p-home-bnrs__item.m-col-2 {
    width: calc(50% - 10px);
  }

  .p-home-movies {
    padding: 0 0 80px;
  }

  .p-home-movies__cards {
    margin-top: 68px;
  }

  .p-home-movies__card {
    width: calc(25% - 15px);
  }

  .p-home-brand {
    padding: 20px 0;
  }

  .p-home-brand__story .c-section-heading {
    margin-bottom: 68px;
  }

  .p-home-brand__voice {
    margin-top: 112px;
  }

  .p-home-brand__voice .c-section-heading {
    margin-bottom: 68px;
  }

  .p-search {
    padding: 0 0 120px;
  }

  .p-search__outer {
    margin: 0 auto;
    max-width: 1200px;
    padding: 40px 0 50px;
  }

  .p-search-result-query {
    max-width: none;
    padding: 10px 0;
    width: auto;
  }

  .p-search-result-query__content {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }

  .p-search-result-query__heading {
    flex-shrink: 0;
    margin: 0;
  }

  .p-search-result-query__condition {
    flex-grow: 1;
  }

  .p-search-result-query__count {
    bottom: 5%;
    padding: 12px 14px;
    right: 72px;
  }

  .p-search-result-pager__content {
    grid-column-gap: 32px;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: 1;
  }

  .p-search-result-pager__lead {
    align-self: center;
    grid-column: 1/2;
    grid-row: 1/2;
  }

  .p-search-result-pager__lead > span {
    font-size: 2.3em;
  }

  .p-search-result-pager__num {
    align-items: center;
    align-self: center;
    grid-column: 2/3;
    grid-row: 1/2;
    margin: 0;
  }

  .p-search-result-pager__num .slash {
    margin: 0 22px 0 22px;
  }

  .p-search-result-pager .p-pagination {
    grid-column: 3/4;
    grid-row: 1/2;
  }

  .p-search-result-pager .p-pagination .wp-pagenavi {
    text-align: right;
  }

  .p-search-result-line__list {
    margin-left: 1em;
  }

  .p-search-result-line__item {
    width: calc(16.66% - 8.3333333333px);
  }

  .p-search-result-posts {
    padding: 40px 0 70px;
  }

  .p-search-result-posts .c-section-subheading {
    margin: 0 0 44px 0;
  }

  .p-search-result-posts__sort {
    right: 30px;
  }

  .p-search-result-posts__outer {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .p-search-result-posts__cards {
    flex-direction: column;
    gap: 10px;
    order: 1;
    width: 66.5948275862%;
  }

  .p-search-result-posts__pagination {
    order: 3;
    width: 100%;
  }

  .p-search-result-posts__related {
    margin: 0;
    order: 2;
    padding: 0;
    width: 31.8965517241%;
  }

  .p-search-result-sort {
    min-width: 210px;
  }

  .p-single-param-content__info {
    padding: 56px 0 80px;
  }

  .p-single-param-content__guidance {
    padding: 96px 0 116px;
  }

  .p-single-param-content-item__row:not(:last-child) {
    margin-bottom: 40px;
  }

  .p-single-param-content-item__row .title {
    margin-bottom: 30px;
  }

  .p-single-param-content-item__row .box {
    flex-direction: row;
    gap: 20px;
  }

  .p-single-param-content-item__row .box > .image {
    flex-shrink: 0;
    width: 40.4094827586%;
  }

  .p-single-param-content-item__row .box > .desc {
    flex-grow: 1;
  }

  .p-search-result-no {
    padding: 60px 0 120px;
  }

  .p-search-result-more {
    padding: 60px 0;
  }

  .p-search-result-more__item:not(:last-child) {
    margin-bottom: 36px;
  }

  .p-search-result-more-item__title {
    font-size: 12px;
  }

  .p-search-result-more-item__list > li {
    font-size: 12px;
  }

  .p-privacy__outer {
    padding: 50px 0 60px;
  }

  .p-privacy__item:not(:last-child) {
    margin-bottom: 76px;
  }

  .p-privacy__item .desc dl {
    flex-direction: row;
    gap: 20px;
  }

  .p-privacy__item .desc dl .item {
    width: calc(50% - 10px);
  }

  .p-privacy__item .desc ol li:not(:last-child) {
    margin-bottom: 38px;
  }

  .p-privacy__sign {
    padding: 60px 0 0;
  }

  .p-contact__outer {
    margin: 0 auto;
    max-width: 928px;
    padding: 50px 79px 60px;
  }

  .p-contact__outer .l-inner {
    max-width: none;
    padding: 0;
  }

  .p-contact.m-confirm {
    padding-bottom: 100px;
  }

  .p-contact.m-thanks {
    padding-bottom: 100px;
  }

  .p-contact.m-application-form .p-contact__outer {
    padding: 48px 0 60px;
  }

  .p-contact.m-application-form .p-contact-steps {
    padding: 32px 40px;
  }

  .p-contact-form__lead {
    text-align: center;
  }

  .p-contact-form__item.m-col-2 {
    gap: 28px 60px;
  }

  .p-contact-form__item .data.m-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 20px;
  }

  .p-contact-form__item .data.m-checkbox .mwform-checkbox-field {
    width: calc(50% - 10px);
  }

  .p-contact-form__item .data.m-birthday {
    gap: 20px;
  }

  .p-contact-form__item .policy {
    max-height: 200px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .p-contact-form__more {
    padding: 30px 79px 50px;
  }

  .p-contact-form__more .p-contact-form__notion {
    text-align: center;
  }

  .p-contact-form__more .p-contact-form__item:nth-of-type(2) {
    width: 50%;
  }

  .p-contact-form__more .p-contact-form__item:nth-of-type(3) .data .mwform-checkbox-field,
  .p-contact-form__more .p-contact-form__item:nth-of-type(4) .data .mwform-checkbox-field {
    width: calc(33.33% - 5.3333333333px);
  }

  .p-contact-form.m-application-form .p-contact-form__content:not(:last-child) {
    margin-bottom: 48px;
  }

  .p-contact-form.m-application-form .p-contact-form__subheading {
    font-size: 14px;
  }

  .p-contact-form.m-application-form .p-contact-form__subheading::before {
    top: -5px;
  }

  .p-contact-form.m-application-form .p-contact-form__content-inner {
    margin: 0 auto;
    padding: 52px 20px 32px;
  }

  .p-contact-form.m-application-form .p-contact-form__content-inner.m-last {
    margin: 0 calc(50% - 50vw);
  }

  .mw_wp_form_confirm .p-contact-form__btns {
    flex-direction: row;
    justify-content: center;
  }

  .p-contact-thanks__desc {
    text-align: center;
  }

  .p-id-card-list {
    max-width: 928px;
  }

  .p-id-card-list__head {
    display: flex;
    gap: 8px;
    margin: 0 0 8px;
  }

  .p-id-card-list__head::before {
    content: "";
    display: block;
    height: 110px;
    width: 148px;
  }

  .p-id-card-list__head.m-foreign::before {
    height: 70px;
  }

  .p-id-card-list__item {
    display: flex;
    gap: 8px;
  }

  .p-id-card-list__item:not(:last-child) {
    margin-bottom: 10px;
  }

  .p-id-card-list__title {
    align-items: center;
    cursor: inherit;
    display: flex;
    justify-content: center;
    padding: 24px;
    width: 148px;
  }

  .p-id-card-list__body > .item {
    width: 148px;
  }

  .p-sharehouse {
    margin-top: 50px;
    padding: 0 0 50px;
  }

  .p-sharehouse__head .l-inner {
    padding-bottom: 36px;
    padding-top: 36px;
  }

  .p-sharehouse__head .c-btn {
    margin-top: -10px;
    max-width: 928px;
    width: calc(100% - 96px);
  }

  .p-sharehouse__gallery {
    position: static;
  }

  .p-sharehouse__gallery > .swiper > .swiper-wrapper > .swiper-slide {
    height: clamp(296px, 22.5vw, 315px) !important;
  }

  .p-sharehouse__thumbnail {
    margin-top: 5px;
  }

  .p-sharehouse__thumbnail > .swiper {
    width: 81.1688311688%;
  }

  .p-sharehouse__thumbnail > .swiper > .swiper-wrapper > .swiper-slide {
    height: clamp(72px, 6.0714285714vw, 85px) !important;
  }

  .p-sharehouse__status {
    -webkit-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%);
  }

  .p-sharehouse__inner {
    max-width: 1000px;
  }

  .p-sharehouse__panorama {
    height: clamp(480px, 36.5vw, 511px);
  }

  .p-sharehouse__content h2 {
    margin: 50px 0 20px;
    padding-bottom: 16px;
  }

  .p-sharehouse-info__list {
    margin-bottom: 50px;
  }

  .p-sharehouse-info__name {
    padding: 0 12px;
    width: 148px;
  }

  .p-sharehouse-info__desc {
    padding: 12px 15px;
  }

  .p-sharehouse-map-modal__map {
    height: 400px;
  }

  .p-sharehouse-related-posts {
    padding: 72px 0 100px;
  }

  .p-sharehouse-related-posts__cards {
    margin: 68px 0 0;
  }

  .p-sharehouse-related-posts__cards > article {
    width: calc(25% - 15px);
  }

  .p-sharehouse-cta {
    border-radius: 5px 0 0 5px;
    bottom: 12%;
    flex-direction: column;
    left: auto;
    margin: 0;
    padding: 10px 13px 10px;
    right: 0;
    width: auto;
  }

  .p-sharehouse-cta .text {
    line-height: 1.5;
    margin: 0 0 6px 0;
  }

  .p-sharehouse-cta .text::before,
  .p-sharehouse-cta .text::after {
    display: block;
  }

  .p-sharehouse-cta .c-btn {
    margin: 0 0 4px 0;
  }

  .p-sharehouse-cta .c-btn > a {
    height: 40px;
    width: 100px;
  }

  .p-sharehouse-cta .line {
    margin: 0 0 4px 0;
  }

  .p-sharehouse-cta .line > a {
    height: 40px;
    width: 100px;
  }

  .p-sharehouse-cta .c-favorite-btn {
    height: 40px;
    padding: 4px 12px;
    width: 100px;
  }

  .p-sharehouse-cta .c-favorite-btn::after {
    font-weight: 600;
  }

  .p-sharehouse-contact {
    background: #F3F3F3 url(../img/other/deco.webp) no-repeat left -200px top/auto 200px;
    margin: 0 0 0 -80px;
    padding: 20px 0;
    width: calc(100% + 160px);
  }

  .p-sharehouse-contact__inner {
    max-width: 1000px;
    padding: 40px 32px 38px;
  }

  .p-sharehouse-contact__title {
    line-height: 1;
  }

  .p-sharehouse-contact__box {
    align-items: center;
    flex-direction: row;
    justify-content: center;
    margin: 20px 0 8px;
  }

  .p-sharehouse-contact__box .tel > a {
    border-radius: 40px;
    height: 49px;
  }

  .p-sharehouse-cv {
    background: #F3F3F3 url(../img/common/deco_1.webp) no-repeat left top/auto 100%;
    margin: 50px 0 100px -80px;
    padding: 20px;
    width: calc(100% + 160px);
  }

  .p-sharehouse-cv__content {
    max-width: 1000px;
    padding: 30px 0;
  }

  .p-sharehouse-cv__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .p-sharehouse-cv__item.m-tel > a {
    border-radius: 40px;
    height: 49px;
  }

  .p-sharehouse-initial-cost__list {
    gap: 12px 40px;
  }

  .p-sharehouse-initial-cost__item {
    font-size: 15px;
    justify-content: space-between;
    width: calc(50% - 20px);
  }

  .p-sharehouse-initial-cost__item > dt {
    letter-spacing: 0.05em;
    width: 136px;
  }

  .p-sharehouse-initial-cost__sum {
    align-items: center;
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    justify-content: space-between;
  }

  .p-sharehouse-initial-cost__sum > .caution {
    margin: 0;
  }

  .p-sharehouse-manager {
    align-items: center;
    display: flex;
    padding: 30px 20px 10px;
  }

  .p-sharehouse-manager__info {
    margin: 0;
    width: 50%;
  }

  .p-sharehouse-manager__body {
    width: 50%;
  }

  .p-sharehouse-manager__subtitle {
    margin-bottom: 16px !important;
  }

  .p-map-search {
    padding: 0 0 120px;
  }

  .p-map-search__outer {
    background-color: #F3F3F3;
    margin: 0 auto;
    max-width: 1200px;
    padding: 50px 0;
  }

  .p-map-result-showing__inner {
    display: flex;
    padding: 0;
  }

  .p-map-result-showing__main {
    padding: 32px 16px 60px;
    width: 49.4791666667%;
  }

  .p-map-result-showing__step {
    padding: 0;
  }

  .p-map-result-showing__head {
    padding: 0;
  }

  .p-map-result-showing__map {
    height: 400px;
  }

  .p-map-result-showing__post {
    background-color: #D0EFD0;
    padding: 148px 16px 60px;
    width: 50.5208333333%;
  }

  .p-map-result-showing.m-search-result .p-map-result-showing__inner {
    gap: 16px;
    padding: 10px 15px 40px;
  }

  .p-map-result-showing.m-search-result .p-map-result-showing__head {
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }

  .p-map-result-showing.m-search-result .p-map-result-showing__map {
    height: 320px;
  }

  .p-map-result-showing.m-search-result .p-map-result-showing__post {
    background-color: #F3F3F3;
    padding: 42px 0 0;
  }

  .p-map-result-area {
    padding: 20px 16px;
  }

  .p-map-search-btns > li .c-radio + span {
    font-size: 12px;
  }

  .p-flow__outer {
    padding: 68px 0 0;
  }

  .p-flow__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 58px 20px;
    justify-content: center;
  }

  .p-flow__item {
    width: calc(50% - 10px);
  }

  .p-flow__item:nth-child(1) {
    width: 100%;
  }

  .p-flow-item {
    padding: 36px 30px 40px;
  }

  .p-flow-item:not(:last-child)::after {
    -webkit-transform: translate(100%, -50%);
    bottom: auto;
    left: auto;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
  }

  .p-flow-item:nth-child(4)::before {
    -webkit-transform: translate(-50%, -50%);
    background: transparent url(../img/common/arrow.webp) no-repeat center center/contain;
    content: "";
    display: block;
    height: 30px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    z-index: 1;
  }

  .p-flow-item__btns {
    flex-direction: row;
    gap: 45px;
    justify-content: center;
  }

  .p-flow-search {
    background: transparent url(../img/about/deco_2.webp) no-repeat left top/504px auto;
    margin-top: 50px;
  }

  .p-flow-search__content {
    max-width: 770px;
  }

  .p-flow-search__btns {
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
  }

  .p-faq__outer {
    padding: 40px 0 0;
  }

  .p-faq-item {
    padding: 0 30px;
  }

  .p-faq-glossary__inner {
    background: #F3F3F3 url(../img/about/deco_2.webp) no-repeat left top/591px auto;
    padding: 30px 0 0;
  }

  .p-faq-glossary__content {
    max-width: 770px;
    padding: 45px 0;
  }

  .p-company__outer {
    padding: 50px 0 120px;
  }

  .p-company-item {
    border-bottom: 1px solid #ddd;
    display: flex;
    padding: 23px 0;
  }

  .p-company-item:first-child {
    border-top: 1px solid #ddd;
  }

  .p-company-item__title {
    background-color: transparent;
    padding: 3px 0 0 79px;
    width: 34%;
  }

  .p-company-item__desc {
    padding: 0;
    width: 66%;
  }

  .p-sitemap__outer {
    padding: 50px 0 120px;
  }

  .p-sitemap__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0 20px;
  }

  .p-sitemap__item {
    width: calc(50% - 10px);
  }

  .p-sitemap__item:first-child {
    width: 100%;
  }

  .p-sitemap__item a {
    padding: 16px 10px;
  }

  .p-favorites__count-box {
    padding: 0 0 28px;
  }

  .p-favorites__count {
    justify-content: flex-start;
  }

  .p-favorites__posts {
    padding-bottom: 120px;
  }

  .p-glossary__lead {
    font-size: 15px;
    margin: 16px 0 28px;
  }

  .p-glossary__outer {
    padding: 28px 0 80px;
  }

  .p-glossary__outer.m-single {
    padding: 80px 0;
  }

  .p-glossary__content {
    padding-top: 36px;
  }

  .p-glossary-categories {
    gap: 20px;
  }

  .p-glossary-categories > li {
    width: calc(16.66% - 16.6666666667px);
  }

  .p-glossary-categories > li a {
    padding-left: 8px;
    text-align: center;
  }

  .p-glossary-categories > li a::after {
    right: 20px;
  }

  .p-glossary-content__heading {
    font-size: 20px;
  }

  .p-glossary-single {
    padding: 30px;
  }

  .p-glossary-single__title {
    font-size: 20px;
  }

  .p-contract .c-section-heading {
    margin-bottom: 96px;
  }

  .p-contract__outer {
    padding: 68px 0 120px;
  }

  .p-contract__outer:nth-child(2) {
    padding: 72px 0 80px;
  }

  .p-contract__outer:nth-child(3) {
    padding: 72px 0 120px;
  }

  .p-contract__steps {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 58px 20px;
    justify-content: center;
  }

  .p-contract__step {
    width: calc(33.33% - 13.3333333333px);
  }

  .p-contract-step {
    padding: 36px 30px 40px;
  }

  .p-contract-step:not(:last-child)::after {
    -webkit-transform: translate(100%, -50%);
    bottom: auto;
    left: auto;
    right: 0;
    top: 50%;
    transform: translate(100%, -50%);
  }

  .p-contract-step:nth-child(4)::before {
    -webkit-transform: translate(-50%, -50%);
    background: transparent url(../img/common/arrow.webp) no-repeat center center/contain;
    content: "";
    display: block;
    height: 30px;
    left: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    z-index: 1;
  }

  .p-voice__outer {
    padding: 50px 0 0;
  }

  .p-voice-single__outer {
    background-color: #F3F3F3;
    padding: 30px 0 120px;
  }

  .p-voice-single__main {
    margin-bottom: 92px;
  }

  .p-voice-single__contents {
    padding: 20px 0 80px;
  }

  .p-voice-single__contents > .l-inner {
    padding-left: 80px;
    padding-right: 80px;
  }

  .p-voice-single__contents::before {
    height: 118px;
    width: 272px;
  }

  .p-voice-single__date {
    margin: 0 -52px 40px 0;
  }

  .p-voice-single__thumbnail {
    margin-bottom: 40px;
  }

  .p-voice-single__point > .l-inner {
    padding-left: 80px;
    padding-right: 80px;
  }

  .p-voice-single__related .c-section-heading {
    margin-bottom: 68px;
  }

  .p-voice-single-profile {
    padding: 28px 0;
  }

  .p-voice-single-profile__list {
    gap: 0;
  }

  .p-voice-single-profile__list > li {
    width: 20%;
  }

  .p-voice-single-profile__list > li:not(:nth-child(5n)) {
    border-right: 1px solid #DDDDDD;
  }

  .p-voice-single-point {
    padding: 60px 0 100px;
  }

  .p-voice-single-point__title {
    margin-left: -20px;
  }

  .p-voice-single-point__list > li:not(:last-child) {
    margin-bottom: 60px;
  }

  .p-voice-single-point-item {
    flex-direction: row;
    gap: 20px;
  }

  .p-voice-single-point-item__image {
    flex-shrink: 0;
    width: 48.828125%;
  }

  .p-voice-single-point-item__body {
    flex-grow: 1;
  }

  .p-about-cv {
    background-color: rgba(0, 230, 0, 0.8);
    border-radius: 5px 0 0 5px;
    bottom: auto;
    flex-direction: column;
    gap: 8px;
    max-width: 120px;
    padding: 10px 12px 12px;
    top: 40%;
    width: auto;
  }

  .p-about-cv__text {
    font-size: 10px;
    padding: 0 1.2em;
    text-align: center;
  }

  .p-about-cv__btn > a {
    font-size: 11px;
    min-width: unset;
    padding: 10px 9px;
  }

  .p-about-section-outer {
    padding: 40px 0 60px;
  }

  .p-about-section-outer.m-search {
    padding-bottom: 30px;
  }

  .p-about-recommend {
    padding-bottom: 60px;
  }

  .p-about-recommend__heading {
    font-size: 20px;
    margin: 40px auto;
  }

  .p-about-recommend__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .p-about-recommend__item {
    width: calc(33.33% - 13.3333333333px);
  }

  .p-about-recommend-item {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 162px;
    padding: 52px 20px 52px;
  }

  .p-about-recommend-item__desc {
    letter-spacing: 0.1em;
    text-align: center;
  }

  .p-about-service {
    padding: 0 0 72px;
  }

  .p-about-service__lead {
    margin: 60px 0;
  }

  .p-about-service__item {
    width: calc(25% - 15px);
  }

  .p-about-cost {
    padding: 72px 0;
  }

  .p-about-life {
    padding-bottom: 80px;
  }

  .p-about-life__content {
    margin-top: 68px;
  }

  .p-about-flow {
    padding-bottom: 76px;
  }

  .p-about-flow__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 58px 20px;
    justify-content: center;
    max-height: none;
    overflow: inherit;
    padding-top: 76px;
  }

  .p-about-flow__list::before {
    content: none;
  }

  .p-about-flow__item {
    width: calc(33.33% - 13.3333333333px);
  }

  .p-about-flow__btn {
    display: none;
  }

  .p-about-faq {
    padding-bottom: 80px;
  }

  .p-about-faq__list {
    margin-top: 48px;
  }

  .p-about-posts {
    padding: 0 0 60px;
  }

  .p-about-bnr a {
    max-width: 960px;
  }

  .p-history__posts {
    padding-bottom: 120px;
  }

  .p-commute__outer {
    background-color: transparent;
    padding: 0 0 120px;
  }

  .p-commute-form__inner {
    background-color: #F3F3F3;
    max-width: 1200px;
    padding: 50px 0;
  }

  .p-commute-form__rows {
    margin-bottom: 20px;
  }

  .p-commute-form-row {
    align-items: end;
    flex-direction: row;
    gap: 20px;
    padding: 20px 40px 24px;
  }

  .p-commute-form-row__item:nth-child(1) {
    width: 300px;
  }

  .p-commute-form-row__item:nth-child(2) {
    width: 200px;
  }

  .p-commute-form-row__item:nth-child(3) {
    width: 200px;
  }

  .p-commute-form-row__delete {
    font-size: 24px;
    height: 100%;
    width: 124px;
  }

  .p-compare-reccomend > p {
    background-position: left center;
    font-size: 20px;
    padding: 0 0 0 40px;
  }

  .p-compare-table table > thead > tr > td {
    font-size: 14px;
  }

  .p-compare-table table > thead > tr > td > span {
    background-position: left center;
    padding: 0 0 0 67px;
    text-align: left;
  }

  .p-compare-table table > thead > tr > td.m-large {
    padding: 32px 0;
  }

  .p-compare-table table > thead > tr > td.m-deco div {
    display: inline-block;
    padding: 0 2em;
    position: relative;
  }

  .p-compare-table table > thead > tr > td.m-deco div::before,
  .p-compare-table table > thead > tr > td.m-deco div::after {
    background-color: #00E600;
    bottom: 0;
    content: "";
    display: block;
    height: 20px;
    position: absolute;
    width: 4px;
  }

  .p-compare-table table > thead > tr > td.m-deco div::before {
    -webkit-transform: rotate(-40deg);
    left: 0;
    transform: rotate(-40deg);
  }

  .p-compare-table table > thead > tr > td.m-deco div::after {
    -webkit-transform: rotate(40deg);
    right: 0;
    transform: rotate(40deg);
  }

  .p-compare-table table > tfoot > tr > td {
    font-size: 16px;
  }

  .p-compare-table table > tfoot > tr > td span {
    font-size: 32px;
  }

  .p-compare-table table > tfoot > tr > td.en_US span {
    font-size: 26px;
  }

  .p-compare-table table > tfoot > tr > td.m-three-data::after {
    left: -6px;
    width: 12px;
  }

  .p-compare-table table > tbody.m-mt::before {
    height: 20px;
  }

  .p-compare-table table > tbody > tr > th {
    font-size: 14px;
  }

  .p-compare-table table > tbody > tr > td.m-with-icon {
    padding: 12.5px 0 9.5px;
  }

  .p-compare-search {
    background: #F3F3F3 url(../img/about/deco_2.webp) no-repeat left -18% top/auto 52%;
    padding: 28px 0;
  }

  .p-compare-search__content {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 80px 52px;
    justify-content: center;
    max-width: 928px;
    padding: 35px;
  }

  .p-compare-search__title {
    font-size: 16px;
    letter-spacing: 0.1em;
    margin: 0;
  }

  .p-compare-search__title > span {
    background-size: 56px;
    padding-left: 74px;
  }

  .p-compare-search__list {
    gap: 20px;
  }

  .p-compare-search__list > li > a {
    font-size: 16px;
    min-width: 180px;
    padding: 14px 20px;
  }

  .p-compare-search__list > li > a > span {
    background-position: left center;
    padding: 0 0 0 28px;
  }

  .p-compare-search__list > li.m-map > a > span {
    background-size: 20px auto;
  }

  .p-compare-search__list > li.m-query > a > span {
    background-size: 22px auto;
  }

  .p-compare-search__contact {
    grid-column-gap: 30px;
    grid-row-gap: 16px;
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: repeat(2, auto);
    margin-top: 0;
  }

  .p-compare-search__contact > .title {
    grid-column: 2/3;
    grid-row: 1/2;
  }

  .p-compare-search__contact > .list {
    gap: 8px;
    grid-column: 1/2;
    grid-row: 1/3;
    margin: 0;
    padding: 0;
  }

  .p-compare-search__contact > .list > li {
    font-size: 14px;
    gap: 10px;
  }

  .p-compare-search__contact > .list > li::before {
    height: 19px;
    width: 19px;
  }

  .p-compare-search__contact > .btn {
    grid-column: 2/3;
    grid-row: 2/3;
  }

  .p-compare-introduction__heading {
    -webkit-transform: translate(-50%, -50%);
    align-items: center;
    gap: 14px;
    left: 50%;
    max-width: 928px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .p-compare-introduction__heading::before {
    content: none;
  }

  .p-compare-introduction__heading span {
    -webkit-transform: none;
    font-size: 20px;
    transform: none;
  }

  .p-compare-feature {
    padding: 65px 0 80px;
  }

  .p-compare-feature__list {
    flex-direction: row;
    gap: 20px;
    margin: 55px 0 60px;
  }

  .p-compare-feature__item {
    padding: 60px 80px 50px;
    width: calc(50% - 10px);
  }

  .p-compare-same-range {
    padding: 65px 0 80px;
  }

  .p-compare-same-range__contents {
    margin-bottom: 90px;
  }

  .p-compare-same-range__content {
    margin-top: 80px;
  }

  .p-compare-same-range__content > .slider > .swiper-nav-box {
    bottom: 20px;
    left: 20px;
    position: absolute;
    width: 100%;
  }

  .p-compare-same-range__content > .slider > .swiper-nav-box > .swiper-pagination {
    margin-left: 48px;
  }

  .p-compare-same-range__content > .caution {
    bottom: -40px;
  }

  .p-compare-initial-cost {
    padding: 80px 0;
  }

  .p-compare-reasons {
    padding-top: 60px;
  }

  .p-compare-apartments {
    padding: 72px 0 120px;
  }

  .p-compare-apartments__cards {
    gap: 20px;
  }

  .p-compare-apartments__cards > .p-sharehouse-card .p-sharehouse-card__link {
    grid-template-columns: 237px auto;
  }

  .p-corporate-contact {
    background: #F3F3F3 url(../img/other/deco.webp) no-repeat left -36% center/auto 100%;
    padding: 28px 0;
  }

  .p-corporate-contact__inner {
    max-width: 928px;
    padding: 30px 32px 25px;
  }

  .p-corporate-contact__title {
    letter-spacing: 0.1em;
    line-height: 1;
  }

  .p-corporate-contact__box {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }

  .p-corporate-contact__box .tel > a {
    border: 2px solid #00E600;
    border-radius: 0;
    height: 46px;
  }

  .p-corporate-introduction__heading {
    -webkit-transform: translate(-50%, -50%);
    align-items: center;
    gap: 14px;
    left: 50%;
    max-width: 928px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .p-corporate-introduction__heading::before {
    content: none;
  }

  .p-corporate-introduction__heading span {
    -webkit-transform: none;
    font-size: 20px;
    transform: none;
  }

  .p-corporate-benefits {
    padding: 65px 0 80px;
  }

  .p-corporate-benefits__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 55px;
  }

  .p-corporate-benefits__item {
    width: calc(33.33% - 13.3333333333px);
  }

  .p-corporate-benefits__item:nth-child(4) {
    width: 100%;
  }

  .p-corporate-benefits-item {
    padding: 50px 32px 40px;
  }

  .p-corporate-example {
    padding: 80px 0 50px;
  }

  .p-corporate-example__list {
    flex-direction: row;
    gap: 20px;
    margin-top: 80px;
  }

  .p-corporate-example__item {
    width: calc(50% - 10px);
  }

  .p-corporate-example__item > .title {
    font-size: 16px;
  }

  .p-corporate-sharehouse {
    padding: 50px 0 0;
  }

  .p-corporate-sharehouse__slider {
    margin-top: 80px;
  }

  .p-corporate-sharehouse__slider > .swiper-nav-box {
    bottom: 20px;
    left: 20px;
    position: absolute;
    width: 100%;
  }

  .p-corporate-sharehouse__slider > .swiper-nav-box > .swiper-pagination {
    margin-left: 48px;
  }

  .p-multilingual-home-cv {
    align-items: center;
    border-radius: 5px 0 0 5px;
    bottom: auto;
    flex-direction: column;
    justify-content: inherit;
    left: auto;
    padding: 15px 11px 12px;
    right: 0;
    top: 25%;
    width: 120px;
  }

  .p-multilingual-home-cv__text {
    line-height: 1.5;
  }

  .p-multilingual-home-cv__btn > a {
    font-size: 11px;
    min-width: 94px;
  }

  .p-multilingual-home-mv {
    padding-bottom: 48px;
  }

  .p-multilingual-home-mv::before {
    background: transparent url(../img/home/bg_mv_2.webp) repeat-x top left/1400px auto;
    bottom: 0;
    content: "";
    display: block;
    height: 336px;
    position: absolute;
    right: 0;
    width: 100vw;
    z-index: -1;
  }

  .p-multilingual-home-mv__inner {
    margin: 0 auto;
    max-width: 1200px;
    width: 85.7142857143vw;
  }

  .p-multilingual-home-mv__image {
    height: 400px;
  }

  .p-multilingual-home-mv__image img {
    -o-object-fit: cover;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .p-multilingual-home-mv__copy {
    align-items: flex-end;
    gap: 14px;
    left: auto;
    right: 136px;
    top: 136px;
  }

  .p-multilingual-home-sharehouse {
    padding: 64px 0 80px;
  }

  .p-multilingual-home-sharehouse__slider {
    margin-bottom: 76px;
    margin-top: 64px;
  }

  .p-multilingual-home-sharehouse__slider > .swiper-nav-box {
    bottom: 20px;
    left: 20px;
    position: absolute;
    width: 100%;
  }

  .p-multilingual-home-sharehouse__slider > .swiper-nav-box > .swiper-pagination {
    margin-left: 48px;
  }

  .p-multilingual-home-recommend {
    padding-bottom: 100px;
  }

  .p-multilingual-home-recommend__heading {
    background-image: url(../img/about/img_2.webp);
    padding: 157px 0;
  }

  .p-multilingual-home-recommend__heading > div {
    gap: 14px;
    margin: 0 auto;
    max-width: 928px;
  }

  .p-multilingual-home-recommend__heading > div span {
    font-size: 20px;
  }

  .p-multilingual-home-recommend__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: -80px;
  }

  .p-multilingual-home-recommend__item {
    width: calc(33.33% - 13.3333333333px);
  }

  .p-multilingual-home-recommend-item {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 162px;
    padding: 52px 20px 52px;
  }

  .p-multilingual-home-recommend-item__desc {
    letter-spacing: 0.1em;
    text-align: center;
  }

  .p-multilingual-home-reasons {
    padding-bottom: 100px;
  }

  .p-multilingual-home-reasons__slider > .swiper-nav-box > .swiper-pagination {
    margin-left: 60px;
  }

  .p-multilingual-home-facility {
    padding: 65px 0 80px;
  }

  .p-multilingual-home-facility__content {
    margin-top: 64px;
  }

  .p-multilingual-home-facility__item {
    width: calc(25% - 15px);
  }

  .p-multilingual-home-facility__item > .image {
    margin-bottom: 16px;
  }

  .p-multilingual-home-facility__item > .title {
    font-size: 15px;
  }

  .p-multilingual-home-access {
    padding: 65px 0 80px;
  }

  .p-multilingual-home-access__content {
    margin-top: 64px;
  }

  .p-multilingual-home-flow {
    padding: 65px 0 80px;
  }

  .p-multilingual-home-flow__content {
    margin-top: 64px;
  }

  .p-multilingual-home-flow__lead {
    text-align: center;
  }

  .p-multilingual-home-flow__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 58px 20px;
    justify-content: center;
    margin: 0 auto;
    max-height: none;
    max-width: 612px;
    overflow: inherit;
    padding-top: 76px;
  }

  .p-multilingual-home-flow__list::before {
    content: none;
  }

  .p-multilingual-home-flow__item {
    width: calc(50% - 10px);
  }

  .p-multilingual-home-flow__btn {
    display: none;
  }

  .p-multilingual-home-faq {
    padding: 65px 0 80px;
  }

  .p-multilingual-home-faq__content {
    margin-top: 64px;
  }

  .p-multilingual-home-faq__list {
    margin-top: 48px;
  }

  .p-multilingual-home-contact {
    background-color: transparent;
    padding: 65px 0 80px;
  }

  .p-multilingual-home-contact__content {
    background-color: #F3F3F3;
    margin-top: 60px;
    padding: 50px 20px 60px;
  }

  .p-multilingual-home-to-home {
    padding: 230px 0;
  }

  .p-multilingual-home-to-home__image {
    width: clamp(360px, 32.4285714286vw, 454px);
    z-index: 1;
  }

  .p-multilingual-home-to-home__image::before {
    -webkit-transform: none;
    background-image: url(../img/multilingual-home/deco_1.png);
    height: 288px;
    left: 112px;
    right: auto;
    top: -150px;
    transform: none;
    width: clamp(300px, 29.7142857143vw, 416px);
  }

  .p-multilingual-home-to-home__image::after {
    -webkit-transform: translate(0, 100%);
    bottom: -30px;
    height: 35px;
    left: 0;
    right: auto;
    transform: translate(0, 100%);
    width: clamp(220px, 21.1428571429vw, 296px);
  }

  .p-multilingual-home-to-home__body {
    bottom: -112px;
    left: clamp(312px, 28.8571428571vw, 404px);
    padding: 140px 60px;
    position: absolute;
    width: 660px;
  }

  .p-multilingual-home-to-home__text {
    margin-bottom: 40px;
  }

  .p-buddybeta-section-heading__text {
    font-size: 30px;
  }

  .p-buddybeta-cv {
    background-color: rgba(0, 230, 0, 0.8);
    border-radius: 5px 0 0 5px;
    bottom: auto;
    max-width: 120px;
    padding: 10px 12px 12px;
    top: 37.5%;
    width: auto;
  }

  .p-buddybeta-cv__text {
    font-size: 10px;
    text-align: center;
  }

  .p-buddybeta-cv__btn.m-line > a {
    font-size: 11px !important;
    min-width: unset;
  }

  .p-buddybeta-mv__btn a {
    font-size: 20px;
    height: 80px;
  }

  .p-buddybeta-introduction__heading {
    background-image: url(../img/buddy-beta/deco_1.png);
    margin-bottom: 40px;
  }

  .p-buddybeta-introduction__desc {
    font-size: 16px;
  }

  .p-buddybeta-reccomend::before {
    left: auto;
    right: 0;
    width: 92.8571428571%;
  }

  .p-buddybeta-reccomend__heading {
    left: 48px;
  }

  .p-buddybeta-reccomend__more {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .p-buddybeta-reccomend-item {
    flex-direction: row;
    gap: 20px;
  }

  .p-buddybeta-reccomend-item__image {
    flex-shrink: 0;
    width: 200px;
  }

  .p-buddybeta-reccomend-item__body {
    flex-grow: 1;
  }

  .p-buddybeta-reccomend-item__heading {
    font-size: 16px;
    line-height: 1.6;
  }

  .p-buddybeta-reccomend-item__desc {
    font-size: 14px;
    line-height: 1.72;
  }

  .p-buddybeta-example-sections {
    padding-top: 110px;
  }

  .p-buddybeta-example-section::before {
    height: 300px;
  }

  .p-buddybeta-example-section__heading {
    left: 48px;
  }

  .p-buddybeta-example__head {
    flex-direction: row;
    gap: 40px;
    padding: 20px 20px 0;
  }

  .p-buddybeta-example__gallery-wrap {
    width: calc(50% - 20px);
  }

  .p-buddybeta-example__gallery-wrap > .p-sharehouse__gallery > .swiper > .swiper-wrapper > .swiper-slide {
    height: clamp(280px, 21.4285714286vw, 300px) !important;
  }

  .p-buddybeta-example__gallery-wrap > .p-sharehouse__thumbnail > .swiper > .swiper-wrapper > .swiper-slide {
    height: clamp(58px, 4.6428571429vw, 65px) !important;
  }

  .p-buddybeta-example__layout {
    height: clamp(280px, 21.4285714286vw, 300px);
    padding: 0;
    width: calc(50% - 20px);
  }

  .p-buddybeta-example__btns {
    flex-direction: row;
    gap: 44px;
    justify-content: center;
  }

  .p-buddybeta-flow > .l-inner {
    padding-bottom: 92px;
  }

  .p-buddybeta-flow__heading {
    left: 48px;
  }

  .p-buddybeta-flow__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 58px 20px;
    justify-content: center;
    max-height: none;
    overflow: inherit;
  }

  .p-buddybeta-flow__list::before {
    content: none;
  }

  .p-buddybeta-flow__item {
    width: calc(33.33% - 13.3333333333px);
  }

  .p-buddybeta-flow__btn {
    display: none;
  }

  .p-buddybeta-faq__list {
    margin-top: 48px;
  }

  .p-buddybeta-contact {
    padding: 40px;
  }

  .p-buddybeta-contact__inner {
    max-width: 770px;
    padding: 30px 32px;
  }

  .p-buddybeta-contact__title {
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 32px;
  }

  .p-buddybeta-contact__title span {
    background: transparent url(../img/buddy-beta/deco_1.png) no-repeat center bottom/contain;
    padding: 0 12px 10px;
  }

  .p-buddybeta-contact__title span::before,
  .p-buddybeta-contact__title span::after {
    content: none;
  }

  .p-buddybeta-contact__box {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }

  .p-buddybeta-contact__box .tel > a {
    border: 2px solid #00E600;
    border-radius: 0;
    height: 46px;
  }

  .p-utaha-introduction {
    margin: 52px 0 92px;
  }

  .p-utaha-introduction__body {
    margin-left: 49.7916666667%;
  }

  .p-utaha-introduction__heading {
    margin: 0 auto 50px;
    max-width: 360px;
  }

  .p-utaha-introduction__heading .text {
    font-size: 26px;
  }

  .p-utaha-introduction__desc {
    margin: 0;
  }

  .p-utaha-introduction__image {
    height: clamp(400px, 33.2142857143vw, 465px);
    left: 0;
    max-height: 465px;
    position: absolute;
    top: 0;
    width: 41.5714285714%;
  }

  .p-utaha-introduction__image img {
    -o-object-fit: cover;
    height: 100%;
    object-fit: cover;
  }

  .p-utaha-campaign::before {
    width: 92.8571428571%;
  }

  .p-utaha-campaign__inner {
    padding-bottom: 90px;
    padding-top: 90px;
  }

  .p-utaha-campaign__heading {
    left: 48px;
  }

  .p-utaha-campaign__stop {
    font-size: 20px;
  }

  .p-utaha-campaign__period {
    font-size: 16px;
    padding: 0 32px;
  }

  .p-utaha-campaign__period > span {
    font-size: 18px;
  }

  .p-utaha-campaign__lead {
    font-size: 20px;
  }

  .p-utaha-campaign__lead > span {
    margin-bottom: 14px;
  }

  .p-utaha-campaign__lead > span:nth-of-type(1) {
    padding-right: 0;
  }

  .p-utaha-campaign__lead > span:nth-of-type(2) {
    padding-left: 0;
  }

  .p-utaha-campaign__lead > span:nth-of-type(3) {
    padding-right: 0;
  }

  .p-utaha-campaign__lead > span:nth-of-type(4) {
    padding-left: 0;
  }

  .p-utaha-campaign__desc {
    font-size: 14px;
  }

  .p-utaha-campaign-house {
    padding: 70px clamp(60px, 5.7142857143vw, 80px);
  }

  .p-utaha-campaign-house__table tr > th {
    width: 85px;
  }

  .p-utaha-gallery {
    padding: 92px 0 46px;
  }

  .p-utaha-gallery__content {
    margin-top: 72px;
  }

  .p-utaha-detail {
    padding: 46px 0 80px;
  }

  .p-utaha-detail__list {
    margin-top: 72px;
  }

  .p-utaha-detail__btns {
    flex-direction: row;
    justify-content: flex-start;
  }

  .p-utaha-cta__inner {
    background: #F3F3F3 url(../img/about/deco_2.webp) no-repeat left -25% top/auto 100%;
    padding: 30px 0;
  }

  .p-utaha-cta__content {
    max-width: 926px;
    padding: 30px 0;
  }

  .p-utaha-cta__title {
    font-size: 30px;
    margin-bottom: 24px;
  }

  .p-utaha-cta__contact > a {
    min-width: 312px;
  }

  .p-minimalist-section-heading__text {
    font-size: clamp(28px, 2.1428571429vw, 30px);
  }

  .p-minimalist-cv {
    display: none;
  }

  .p-minimalist-cv__text {
    font-size: 10px;
    text-align: center;
  }

  .p-minimalist-cv__btn.m-line > a {
    font-size: 11px !important;
    min-width: unset;
  }

  .p-minimalist-mv {
    margin-bottom: 50px;
  }

  .p-minimalist-mv__image {
    margin-left: auto;
    min-width: 760px;
    width: 66.3571428571vw;
  }

  .p-minimalist-mv__en-slogan {
    -webkit-transform: none;
    left: 7.8571428571vw;
    max-width: none;
    top: 4vw;
    transform: none;
    width: clamp(400px, 40vw, 1000px);
  }

  .p-minimalist-mv__slogan {
    font-size: 16px;
    right: 26px;
    top: 26px;
  }

  .p-minimalist-mv__slogan > span {
    padding: 10px 4px;
  }

  .p-minimalist-mv__body {
    bottom: 5.8571428571vw;
    left: 12.8571428571vw;
    position: absolute;
  }

  .p-minimalist-mv__heading {
    font-size: clamp(30px, 2.5vw, 44px);
    margin-bottom: 50px;
    text-align: left;
  }

  .p-minimalist-mv__btn {
    text-align: left;
  }

  .p-minimalist-introduction__heading {
    font-size: clamp(19px, 1.5714285714vw, 22px);
  }

  .p-minimalist-introduction__desc {
    font-size: 16px;
  }

  .p-minimalist-about::before {
    left: auto;
    right: 0;
    width: 92.8571428571%;
  }

  .p-minimalist-about > .l-inner {
    padding-bottom: 50px;
  }

  .p-minimalist-about__heading {
    left: 48px;
  }

  .p-minimalist-about__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
  }

  .p-minimalist-about__item {
    width: calc(50% - 10px);
  }

  .p-minimalist-about__subheading {
    font-size: clamp(26px, 2.1428571429vw, 30px);
    letter-spacing: 0.1em;
    margin-bottom: 40px;
  }

  .p-minimalist-about__points {
    gap: 20px;
  }

  .p-minimalist-about__point {
    width: calc(50% - 10px);
  }

  .p-minimalist-about-item {
    align-items: center;
    display: flex;
    gap: 14px;
    padding: 60px 20px 20px 20px;
  }

  .p-minimalist-about-item__image {
    flex-shrink: 0;
    margin: 0;
    max-width: none;
    width: 45.3488372093%;
  }

  .p-minimalist-about-item__desc {
    flex-grow: 1;
    font-size: clamp(18px, 1.4285714286vw, 20px);
    text-align: left;
  }

  .p-minimalist-about-point {
    align-items: center;
    display: flex;
    gap: 14px;
  }

  .p-minimalist-about-point__image {
    flex-shrink: 0;
    margin: 0;
    width: 50.2127659574%;
  }

  .p-minimalist-about-point__desc {
    flex-grow: 1;
    font-size: 16px;
  }

  .p-minimalist-cost__heading {
    margin-bottom: 60px;
  }

  .p-minimalist-reccomend {
    padding-top: 110px;
  }

  .p-minimalist-reccomend::before {
    height: calc(100% - 110px);
    top: 110px;
    width: 92.8571428571%;
  }

  .p-minimalist-reccomend > .l-inner {
    padding-bottom: 56px;
    padding-top: 56px;
  }

  .p-minimalist-reccomend__heading {
    left: 48px;
  }

  .p-minimalist-reccomend__list {
    gap: 0 25px;
  }

  .p-minimalist-reccomend__item {
    width: calc(33.33% - 16.6666666667px);
  }

  .p-minimalist-reccomend-item {
    border-bottom: 1px solid #DDDDDD;
    flex-direction: row-reverse;
    gap: 8px;
    padding: 20px 0;
  }

  .p-minimalist-reccomend-item__image {
    flex-shrink: 0;
    width: 120px;
  }

  .p-minimalist-reccomend-item__body {
    flex-grow: 1;
  }

  .p-minimalist-reccomend-item__desc {
    font-size: 16px;
    gap: 10px;
    letter-spacing: 0.1em;
  }

  .p-minimalist-example-section::before {
    height: 300px;
  }

  .p-minimalist-example-section__heading {
    left: 48px;
  }

  .p-minimalist-example-section__id {
    -webkit-transform: translateY(80%);
    left: 100px;
    transform: translateY(80%);
  }

  .p-minimalist-example__head {
    flex-direction: row;
    gap: 40px;
    padding: 20px 20px 0;
  }

  .p-minimalist-example__gallery-wrap {
    width: calc(50% - 20px);
  }

  .p-minimalist-example__gallery-wrap > .p-sharehouse__gallery > .swiper > .swiper-wrapper > .swiper-slide {
    height: clamp(280px, 21.4285714286vw, 300px) !important;
  }

  .p-minimalist-example__gallery-wrap > .p-sharehouse__thumbnail > .swiper > .swiper-wrapper > .swiper-slide {
    height: clamp(58px, 4.6428571429vw, 65px) !important;
  }

  .p-minimalist-example__layout {
    height: clamp(280px, 21.4285714286vw, 300px);
    padding: 0;
    width: calc(50% - 20px);
  }

  .p-minimalist-example__btns {
    flex-direction: row;
    gap: 44px;
    justify-content: center;
  }

  .p-cta-section.m-minimalist {
    padding: 40px 0 30px;
  }

  .p-minimalist-flow > .l-inner {
    padding-bottom: 92px;
  }

  .p-minimalist-flow__heading {
    left: 48px;
  }

  .p-minimalist-flow__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 58px 20px;
    justify-content: center;
    max-height: none;
    overflow: inherit;
  }

  .p-minimalist-flow__list::before {
    content: none;
  }

  .p-minimalist-flow__item {
    width: calc(33.33% - 13.3333333333px);
  }

  .p-minimalist-flow__btn {
    display: none;
  }

  .p-minimalist-faq {
    padding-bottom: 100px;
  }

  .p-minimalist-faq__list {
    margin-top: 48px;
  }

  .p-minimalist-contact {
    padding: 40px;
  }

  .p-minimalist-contact__inner {
    max-width: 770px;
    padding: 30px 32px;
  }

  .p-minimalist-contact__title {
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: 32px;
  }

  .p-minimalist-contact__title span {
    background: transparent url(../img/buddy-beta/deco_1.png) no-repeat center bottom/contain;
    padding: 0 12px 10px;
  }

  .p-minimalist-contact__title span::before,
  .p-minimalist-contact__title span::after {
    content: none;
  }

  .p-minimalist-contact__box {
    align-items: center;
    flex-direction: row;
    justify-content: center;
  }

  .p-minimalist-contact__box .tel > a {
    border: 2px solid #00E600;
    border-radius: 0;
    height: 46px;
  }
}

@media (min-width: 1200px) {
  .p-sharehouse {
    max-width: 1200px;
  }
}

@media (min-width: 1380px) {
  .p-home-mv__heading.ja,
  .p-home-mv__heading.en_US,
  .p-home-mv__heading.zh,
  .p-home-mv__heading.ko_KR {
    color: #000;
    display: block;
    font-size: clamp(12px, 1vw, 14px);
    left: 205px;
    position: fixed;
    text-shadow: none;
    top: 33px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    z-index: 990;
  }

  .p-home-mv__heading.ja.en_US,
  .p-home-mv__heading.en_US.en_US,
  .p-home-mv__heading.zh.en_US,
  .p-home-mv__heading.ko_KR.en_US {
    font-size: 12px;
  }
}

@media screen and (max-width: 1023px) {
  .l-header__menu-item.m-history > a {
    letter-spacing: 0.03em;
    width: 46px;
  }

  .l-header__menu-item.m-favorite > a {
    letter-spacing: 0.03em;
    width: 52px;
  }

  .l-header__menu-item.m-map.en_US,
  .l-header__menu-item.m-map.zh,
  .l-header__menu-item.m-map.ko_KR,
  .l-header__menu-item.m-map.vi_VN {
    display: none;
  }

  .l-header__menu-item.m-commute.en_US,
  .l-header__menu-item.m-commute.zh,
  .l-header__menu-item.m-commute.ko_KR,
  .l-header__menu-item.m-commute.vi_VN {
    display: none;
  }

  .l-footer-search .c-search-btn {
    border-bottom: 1px solid #000;
    margin-bottom: 0 !important;
    text-align: left;
  }

  .l-footer-search .c-search-btn > a {
    border: 0;
    display: block;
    font-size: 13px;
    font-weight: 600;
    height: auto;
    letter-spacing: 0.1em;
    line-height: 1.4;
    max-width: none;
    padding: 16px 0;
    width: auto;
  }

  .l-footer-search .c-search-btn > a > span {
    background-image: none !important;
    padding: 0;
  }

  .l-footer-search .c-search-btn.m-map {
    border-top: 1px solid #000;
  }

  .c-to-top-btn.m-about {
    bottom: 5.5px;
    height: 38px;
    width: 38px;
  }

  .u-sp-none {
    display: none !important;
  }

  .u-sp-mt0 {
    margin-top: 00px !important;
  }

  .u-sp-mt1 {
    margin-top: 10px !important;
  }

  .u-sp-mt2 {
    margin-top: 20px !important;
  }

  .u-sp-mt3 {
    margin-top: 30px !important;
  }

  .u-sp-mt4 {
    margin-top: 40px !important;
  }

  .u-sp-mt5 {
    margin-top: 50px !important;
  }

  .u-sp-mt6 {
    margin-top: 60px !important;
  }

  .u-sp-mt7 {
    margin-top: 70px !important;
  }

  .u-sp-mt8 {
    margin-top: 80px !important;
  }

  .u-sp-mt9 {
    margin-top: 90px !important;
  }

  .u-sp-mt10 {
    margin-top: 100px !important;
  }

  .u-sp-mt11 {
    margin-top: 110px !important;
  }

  .u-sp-mt12 {
    margin-top: 120px !important;
  }

  .u-sp-mt13 {
    margin-top: 130px !important;
  }

  .u-sp-mt14 {
    margin-top: 140px !important;
  }

  .u-sp-mt15 {
    margin-top: 150px !important;
  }

  .u-sp-mt16 {
    margin-top: 160px !important;
  }

  .u-sp-mt17 {
    margin-top: 170px !important;
  }

  .u-sp-mt18 {
    margin-top: 180px !important;
  }

  .u-sp-mt19 {
    margin-top: 190px !important;
  }

  .u-sp-mt20 {
    margin-top: 200px !important;
  }

  .u-sp-mr0 {
    margin-right: 00px !important;
  }

  .u-sp-mr1 {
    margin-right: 10px !important;
  }

  .u-sp-mr2 {
    margin-right: 20px !important;
  }

  .u-sp-mr3 {
    margin-right: 30px !important;
  }

  .u-sp-mr4 {
    margin-right: 40px !important;
  }

  .u-sp-mr5 {
    margin-right: 50px !important;
  }

  .u-sp-mr6 {
    margin-right: 60px !important;
  }

  .u-sp-mr7 {
    margin-right: 70px !important;
  }

  .u-sp-mr8 {
    margin-right: 80px !important;
  }

  .u-sp-mr9 {
    margin-right: 90px !important;
  }

  .u-sp-mr10 {
    margin-right: 100px !important;
  }

  .u-sp-mr11 {
    margin-right: 110px !important;
  }

  .u-sp-mr12 {
    margin-right: 120px !important;
  }

  .u-sp-mr13 {
    margin-right: 130px !important;
  }

  .u-sp-mr14 {
    margin-right: 140px !important;
  }

  .u-sp-mr15 {
    margin-right: 150px !important;
  }

  .u-sp-mr16 {
    margin-right: 160px !important;
  }

  .u-sp-mr17 {
    margin-right: 170px !important;
  }

  .u-sp-mr18 {
    margin-right: 180px !important;
  }

  .u-sp-mr19 {
    margin-right: 190px !important;
  }

  .u-sp-mr20 {
    margin-right: 200px !important;
  }

  .u-sp-mb0 {
    margin-bottom: 00px !important;
  }

  .u-sp-mb1 {
    margin-bottom: 10px !important;
  }

  .u-sp-mb2 {
    margin-bottom: 20px !important;
  }

  .u-sp-mb3 {
    margin-bottom: 30px !important;
  }

  .u-sp-mb4 {
    margin-bottom: 40px !important;
  }

  .u-sp-mb5 {
    margin-bottom: 50px !important;
  }

  .u-sp-mb6 {
    margin-bottom: 60px !important;
  }

  .u-sp-mb7 {
    margin-bottom: 70px !important;
  }

  .u-sp-mb8 {
    margin-bottom: 80px !important;
  }

  .u-sp-mb9 {
    margin-bottom: 90px !important;
  }

  .u-sp-mb10 {
    margin-bottom: 100px !important;
  }

  .u-sp-mb11 {
    margin-bottom: 110px !important;
  }

  .u-sp-mb12 {
    margin-bottom: 120px !important;
  }

  .u-sp-mb13 {
    margin-bottom: 130px !important;
  }

  .u-sp-mb14 {
    margin-bottom: 140px !important;
  }

  .u-sp-mb15 {
    margin-bottom: 150px !important;
  }

  .u-sp-mb16 {
    margin-bottom: 160px !important;
  }

  .u-sp-mb17 {
    margin-bottom: 170px !important;
  }

  .u-sp-mb18 {
    margin-bottom: 180px !important;
  }

  .u-sp-mb19 {
    margin-bottom: 190px !important;
  }

  .u-sp-mb20 {
    margin-bottom: 200px !important;
  }

  .u-sp-ml0 {
    margin-left: 00px !important;
  }

  .u-sp-ml1 {
    margin-left: 10px !important;
  }

  .u-sp-ml2 {
    margin-left: 20px !important;
  }

  .u-sp-ml3 {
    margin-left: 30px !important;
  }

  .u-sp-ml4 {
    margin-left: 40px !important;
  }

  .u-sp-ml5 {
    margin-left: 50px !important;
  }

  .u-sp-ml6 {
    margin-left: 60px !important;
  }

  .u-sp-ml7 {
    margin-left: 70px !important;
  }

  .u-sp-ml8 {
    margin-left: 80px !important;
  }

  .u-sp-ml9 {
    margin-left: 90px !important;
  }

  .u-sp-ml10 {
    margin-left: 100px !important;
  }

  .u-sp-ml11 {
    margin-left: 110px !important;
  }

  .u-sp-ml12 {
    margin-left: 120px !important;
  }

  .u-sp-ml13 {
    margin-left: 130px !important;
  }

  .u-sp-ml14 {
    margin-left: 140px !important;
  }

  .u-sp-ml15 {
    margin-left: 150px !important;
  }

  .u-sp-ml16 {
    margin-left: 160px !important;
  }

  .u-sp-ml17 {
    margin-left: 170px !important;
  }

  .u-sp-ml18 {
    margin-left: 180px !important;
  }

  .u-sp-ml19 {
    margin-left: 190px !important;
  }

  .u-sp-ml20 {
    margin-left: 200px !important;
  }

  .u-sp-ta-center {
    text-align: center;
  }

  .u-sp-ta-left {
    text-align: left;
  }

  .u-sp-ta-right {
    text-align: right;
  }

  .p-sharehouse-card.m-simple .p-sharehouse-card__thumbnail {
    height: clamp(104px, 27.7333333333vw, 120px);
  }

  .p-page.m-sp-bb .p-page__head {
    border-bottom: 1px solid #ddd;
  }

  .p-search-query-form-type-item.m-sp-col-2 {
    width: calc(50% - 5px);
  }

  .p-reasons.m-about .p-reasons__heading.m-vi_VN {
    font-size: 14px;
  }

  .p-reasons-item.m-about .p-reasons-item__num {
    font-size: 15px;
    height: 28px;
    line-height: 28px;
    width: 28px;
  }

  .p-voice-card.m-sp-col-2 {
    width: calc(50% - 10px);
  }

  .p-voice-card.m-sp-col-2 .p-voice-card__thumbnail {
    height: clamp(104px, 27.7333333333vw, 160px);
  }

  .p-voice-card.m-sp-col-2 .p-voice-card__title {
    font-weight: 400;
    padding-left: 0;
  }

  .p-voice-card.m-sp-col-2 .p-voice-card__title::before {
    content: none;
  }

  .p-search-result-query__change {
    position: absolute;
    right: 0;
    top: -5px;
  }

  .p-search-result-pager__num .num:nth-of-type(1) {
    align-self: flex-start;
  }

  .p-search-result-pager__num .num:nth-of-type(2) {
    align-self: flex-end;
  }

  .p-search-result-map > .l-inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .p-search-result-line > .l-inner {
    padding-left: 10px;
    padding-right: 10px;
  }

  .p-contact.m-application-form .p-page__head {
    border-bottom: 1px solid #ddd;
  }

  .p-contact-form__item .data.m-smaller input {
    max-width: 110px;
  }

  .p-contact-form__item .data.m-birthday > * {
    width: 46%;
  }

  .p-contact-form__item .data.m-birthday > *:nth-child(1) {
    width: 100%;
  }

  .p-contact-form.m-application-form .p-contact-form__content-lead.m-radio {
    text-align: left;
  }

  .p-id-card-list__body {
    margin: 20px calc(50% - 50vw) 0 0;
    overflow-x: scroll;
  }

  .p-id-card-list__body > .item > .files {
    margin-top: 8px;
  }

  .p-sharehouse__initial-cost {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .p-sharehouse__initial-cost > div {
    margin: 0 auto;
    max-width: 520px;
  }

  .p-sharehouse-contact__title span {
    max-width: 240px;
  }

  .p-map-search__outer > .l-inner {
    padding-left: 0;
    padding-right: 0;
  }

  .p-map-result-post__content {
    box-sizing: content-box;
    display: block;
    margin: 0 auto;
    max-width: 520px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .p-contract .c-section-heading:nth-of-type(1) {
    margin-bottom: 60px;
  }

  .p-voice-single-profile__list > li:nth-child(1) {
    width: 100%;
  }

  .p-voice-single-profile__list > li:nth-child(2n+2) {
    border-right: 1px solid #DDDDDD;
  }

  .p-about-cv__text::before,
  .p-about-cv__text::after {
    content: none;
  }

  .p-about-life__cards {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px 20px;
  }

  .p-commute-form__row:not(:first-child) {
    padding-top: 28px;
  }

  .p-compare-table table > tfoot > tr > td.m-three-data {
    font-size: 12px;
  }

  .p-compare-table table > tfoot > tr > td.m-three-data > span {
    font-size: 15px;
  }

  .p-corporate-contact__title span {
    max-width: 240px;
  }

  .p-buddybeta-contact__title span {
    max-width: 240px;
  }

  .p-minimalist-contact__title span {
    max-width: 240px;
  }
}

@media screen and (max-width: 767px) {
  .l-header__menu-item > a > span,
  .l-header__menu-item > div > span {
    -webkit-transform: scale(0.9);
    -webkit-transform-origin: top center;
    display: block;
    transform: scale(0.9);
    transform-origin: top center;
  }

  .u-only-tl {
    display: none !important;
  }

  .p-search-result-posts .l-inner {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*# sourceMappingURL=sourcemaps/main.css.map */