@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Vidaloka&display=swap');

:root {
  --color-pink: #ffbcb7;
  --color-blue: #00b2cd;
  --color-red: #e51018;
}

.font-kumbh {
  font-family: 'Kumbh Sans', sans-serif;
}
.font-vidaloka {
  font-family: 'Vidaloka', serif;
}

.tRight {
  text-align: right;
}

.color-pink {
  color: var(--color-pink);
}
.color-blue {
  color: var(--color-blue);
}
.color-red {
  color: var(--color-red);
}

.mt-1 {
  margin-top: 1em;
}
.mt-2 {
  margin-top: 2em;
}
.ml-1 {
  margin-left: 1em;
}

.hover {
  transition: all 0.3s ease;
  &:hover {
    opacity: 0.75;
  }
}

.title-recom-primary {
  text-align: center;
  margin-bottom: 50px;
  .en {
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .small {
    display: block;
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .ja {
    display: block;
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0.17em;
  }
}

.page-template-lp-renovation .l-catnavi {
  top: 126px;
}
.page-template-lp-renovation.logged-in .l-catnavi {
  top: 158px;
}
.h2-kos {
  display: flex;
  align-items: center;
}
.h2-kos .en {
  font-size: 32px;
  font-weight: bold;
  font-family: 'Kumbh Sans', sans-serif;
  letter-spacing: 0.17em;
  line-height: 1.1;
  border-right: 2px solid #333;
  padding-right: 68px;
  margin-right: 38px;
}
.h2-kos .ja {
  font-size: 14px;
  font-weight: bold;
}

.kosHeader {
  height: 126px;
  background-color: #fff;
}
.kosHeader__inner {
  max-width: 1242px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 126px;
}
.kosHeader__left {
  display: flex;
  align-items: center;
}
.kosHeader__h1 {
  font-size: 16px;
  font-weight: 500;
  margin-left: 50px;
}
.kosHeader__menu {
  text-align: center;
}
.kosHeader__menu .inner {
  display: inline-block;
  position: relative;
  width: 32px;
  height: 26px;
}
.kosHeader__menu span {
  width: 100%;
  height: 3px;
  background-color: #323333;
  position: absolute;
}
.kosHeader__menu span:nth-child(1) {
  top: 0px;
  left: 0px;
}
.kosHeader__menu span:nth-child(2) {
  top: calc(50% - 1px);
  left: 0px;
}
.kosHeader__menu span:nth-child(3) {
  bottom: 0px;
  left: 0px;
}
.kosHeader__menu p {
  font-size: 10px;
}

.main {
  padding-top: 40px;
}

.kosMv {
  padding: 0 60px;
}
.kosMv__movie {
  border-top-left-radius: 60px;
  overflow: hidden;
}
.kosMv__movie video {
  width: 100%;
  height: calc(100vh - 180px);
  object-fit: cover;
}
.kosMv__inner {
  position: relative;
}
.kosMv__text {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  span {
    display: block;
    background-color: #000000;
    color: #fff;
    font-size: 22px;
    padding: 2px 0.5em;
    font-weight: 500;
  }
}
.kosMv__bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
.kosMv__scroll {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.06em;
}
.kosMv__scroll:before {
  content: "";
  background: url(../img/icon_angle_down.svg) no-repeat center/contain;
  width: 15px;
  height: 15px;
  display: inline-block;
  margin-right: 12px;
  vertical-align: -2px;
}
.kosMv__h1 {
  font-size: 14px;
  font-weight: 500;
}

.kosNavi {
  margin-top: 80px;
  display: flex;
  justify-content: center;
  gap: 35px;
}
.kosNavi__item {
  width: 240px;
  border: 1px solid #999999;
  a {
    display: block;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 10px 0;
  }
}

.kosIntro {
  margin-top: 80px;
}
.kosIntro__inner {
  max-width: 1242px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
}
.kosIntro__left {
  width: 45%;
  border-top-right-radius: 60px;
  overflow: hidden;
}
.kosIntro__right {
  width: 42%;
  margin-left: 80px;
}
.kosIntro .slider img {
  height: 240px;
  max-width: initial;
  width: auto;
}
.kosIntro .slider {
  display: flex;
}
.kosIntro .slider__inner {
  display: flex;
}
.slider__inner:first-child {
  animation: loop 180s linear infinite;
}
.slider__inner:nth-child(2) {
  animation: loop2 180s -120s linear infinite;
}
.slider__inner:last-child {
  animation: loop3 180s -60s linear infinite;
}
@keyframes loop {
  0% {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(200%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes loop3 {
  0% {
    transform: translateX(-300%);
  }
  to {
    transform: translateX(0%);
  }
}
.kosIntro__title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.kosIntro__text {
  font-size: 14px;
  line-height: 2;
  font-weight: 500;
  margin-top: 10px;
}
.kosIntro__h3 {
  margin-top: 10px;
  font-size: 16px;
  font-weight: bold;
}
.kosEvent {
  margin: 120px 0 0;
}
.kosEvent__inner {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
}
.kosEvent__title {
  height: 81px;
  padding-top: 26px;
  padding-left: 44px;
  font-size: 24px;
  letter-spacing: 0.17em;
  background: url(../img/dot.svg) no-repeat left center/contain;
}
.kosEvent__subtitle {
  writing-mode: vertical-rl;
  position: absolute;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.3em;
  top: 12px;
  left: -66px;
}
.kosEvent__btn {
  position: absolute;
  top: 28px;
  left: 215px;
}
.kosEvent__btn a {
  display: inline-block;
  color: inherit;
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.15em;
  border: 1px solid #333333;
  border-radius: 4px;
  text-align: center;
  width: 135px;
  height: 28px;
  padding-top: 1px;
  text-decoration: none;
  transition: .3s ease-in-out;
}
.kosEvent__btn a:hover {
  background-color: #333;
  color: #fff;
}
.kosEventList {
  margin: 30px -15px 0;
  display: flex;
  flex-wrap: wrap;
}
.kosEventList__item {
  width: calc(33.3% - 30px);
  margin: 0 15px 30px;
}
.kosEventList__thumb a {
  display: block;
  position: relative;
}
.kosEventList__thumb img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}
.kosEventList__thumb .tag {
  position: absolute;
  top: -9px;
  right: -9px;
  display: inline-block;
  min-width: 110px;
  text-align: center;
  height: 36px;
  padding: 4px 4px 0;
  border: 1px solid #333;
  background-color: #333;
  color: #fff;
  font-size: 14px;
}
.kosEventList__thumb .tag em {
  display: inline-block;
  border-bottom: 1px dashed #fff;
}
.kosEventList__thumb .tag.-white {
  color: #333;
  background-color: #fff;
}
.kosEventList__thumb .tag.-white em {
  border-bottom: 1px dashed #333;
}
.kosEventList__cat {
  display: inline-block;
  width: 120px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  background-color: #f5efe5;
  margin-top: 10px;
}
.kosEventList__info {
  margin-top: 10px;
}
.kosEventList__date {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.kosEventList__area {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.kosEventList__title {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 1em;
}

.kosWorks {
  margin-top: 80px;
}
.kosWorks__inner {
  max-width: 1242px;
  margin: 0 auto;
}
.kosWorks__title {
  text-align: center;
  .en {
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .ja {
    display: block;
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0.17em;
  }
}
.kosWorksList {
  display: flex;
  margin-top: 40px;
}
.kosWorksList__item {
  width: 20%;
  border-right: 1px solid #cccccc;
  a {
    display: block;
    padding: 0 25px;
    text-decoration: none;
    color: inherit;
  }
}
.kosWorksList__thumb img {
  width: 100%;
  aspect-ratio: 202 / 133;
  object-fit: cover;
}
.kosWorksList__name {
  margin-top: 10px;
  .name {
    font-size: 14px;
    font-weight: 500;
    color: #00b2cd;
  }
}
.kosWorksList__title {
  font-size: 14px;
  margin-top: 10px;
}
.kosWorksList__check {
  display: flex;
  align-items: center;
  margin-top: 10px;
  li {
    width: 50%;
    display: flex;
    align-items: center;
  }
  .icon {
    width: 24px;
  }
  .text {
    font-size: 11px;
    margin-left: 0.1em;
  }
}
.kosWorksList__cat {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  span {
    width: calc(50% - 5px);
    text-align: center;
    font-size: 12px;
    padding: 1px 0;
    &.year {
      background-color: #e6e6e6;
    }
    &.cat {
      background-color: #cad9d5;
    }
  }
}
.kosWorksList {
  .prev {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url(../img/prev.svg) no-repeat center/contain;
    z-index: 2;
  }
  .next {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url(../img/next.svg) no-repeat center/contain;
    z-index: 2;
  }
}
.kosWorks__btn {
  margin-top: 60px;
  text-align: center;
}
.kosEstate {
  margin-top: 120px;
}
.kosEstate__inner {
  max-width: 1242px;
  margin: 0 auto;
}
.kosEstate__title {
  text-align: center;
  span {
    display: block;
    padding-bottom: 10px;
    border-bottom: 2px dashed #333333;
    width: 100%;
    text-align: center;
    font-size: 32px;
    font-weight: bold;
  }
}
.kosEstateSlider {
  margin-top: 50px;
  .prev {
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url(../img/prev.svg) no-repeat center/contain;
    z-index: 2;
  }
  .next {
    position: absolute;
    top: 50%;
    right: -50px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: url(../img/next.svg) no-repeat center/contain;
    z-index: 2;
  }
}
.kosEstateList {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
}
.kosEstateList__item {
  width: 25%;
  padding: 0 25px;
  border-right: 1px solid #cccccc;
  @media screen and (min-width: 751px){
  }
}
.kosEstateList__thumb {
  position: relative;
}
.kosEstateList__thumb img {
  width: 100%;
  aspect-ratio: 264 / 174;
  object-fit: cover;
}
.kosEstateList__finished {
  position: absolute;
  top: 5px;
  left: 5px;
  background-color: #cad9d5;
  font-size: 12px;
  padding: 1px 0.5em;
}
.kosEstateList__area {
  font-size: 16px;
  margin-top: 4px;
}
.kosEstateList__madori {
  font-size: 16px;
  padding: 0 0.3em;
  background-color: #e6e6e6;
  margin-top: 4px;
}
.kosEstateList__access {
  font-size: 16px;
  margin-top: 4px;
}
.kosEstateList__price {
  font-size: 18px;
  font-weight: 500;
  .large {
    font-size: 24px;
    font-weight: bold;
    color: #f70116;
  }
}
.kosEstateList__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
  li {
    font-size: 16px;
    text-align: center;
    font-weight: 500;
    border: 1px solid #919191;
    border-radius: 50vh;
  }
}
.kosEstateList__button {
  margin-top: 15px;
  a {
    display: block;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    position: relative;
    border-radius: 5px;
    padding: 5px 0;
    text-align: center;
    &:after {
      content: "→";
      position: absolute;
      right: 35px;
      top: 50%;
      transform: translateY(-50%);
    }
  }
}

.kosEstate__btn {
  margin-top: 60px;
  text-align: center;
  .button-default {
    width: 360px;
  }
}
.kosEstateArchive__title {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  border-bottom: 2px dashed #333333;
  max-width: 866px;
  margin: 0 auto 50px;
}
.kosEstateArchiveList {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 0;
}

.kosSearch {
  margin-top: 120px;
}
.kosSearchList {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.kosSearchList__item {
  width: 25%;
}


.kosArea {
  margin-top: 120px;
}
.kosArea__inner {
  max-width: 1242px;
  margin: 0 auto;
  padding: 50px 0 66px;
  border-top-right-radius: 80px;
  background-color: #f5efe5;
}
.kosArea__title {
  width: 1092px;
  margin: 0 auto;
}
.kosAreaList {
  width: 1092px;
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
}
.kosAreaList__item {
  overflow: hidden;
  position: relative;
}
@media (hover: hover) {
  .kosAreaList__item {
    transition: opacity .3s ease-in-out;
  }
  .kosAreaList__item:hover {
    opacity: 0.7;
  }
}
.kosAreaList__item a {
  position: absolute;
  display: flex;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.kosAreaList__item.-kitaku {
  width: 50%;
  border-bottom: 10px solid #cad9d5;
}
.kosAreaList__item.-nakaku {
  width: 50%;
  border-top-right-radius: 60px;
  border-bottom: 10px solid #cecbd9;
}
.kosAreaList__item.-minamiku {
  width: 33.33%;
  border-bottom: 10px solid #e7c9b9;
}
.kosAreaList__item.-higashiku {
  width: 33.33%;
  border-bottom: 10px solid #f8e0e8;
}
.kosAreaList__item.-kurashiki {
  width: 33.33%;
  border-bottom: 10px solid #b8d6e7;
}
.kosAreaList__en {
  font-size: 34px;
  font-weight: bold;
  position: relative;
  color: #fff;
  letter-spacing: 0.097em;
  padding-bottom: 6px;
  margin-bottom: 8px;
}
.kosAreaList__en:after {
  content: "";
  height: 3px;
  width: 130px;
  position: absolute;
  bottom: 0px;
  left: calc(50% - 65px);
  background-color: #fff;
}
.kosAreaList__ja {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: .2em;
  padding-left: 0.1em;
  color: #fff;
}
.kosAreaList__ja small {
  font-size: 26px;
}
.kosAreaList__arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
.kosAreaList__arrow img {
  width: 9px;
}
.-kitaku .kosAreaList__arrow {
  background-color: #cad9d5;
}
.-nakaku .kosAreaList__arrow {
  background-color: #cecbd9;
}
.-minamiku .kosAreaList__arrow {
  background-color: #e7c9b9;
}
.-higashiku .kosAreaList__arrow {
  background-color: #f8e0e8;
}
.-kurashiki .kosAreaList__arrow {
  background-color: #b8d6e7;
}

.kosMap {
  margin-top: 130px;
}
.kosMap__inner {
  max-width: 1242px;
  margin: 0 auto;
}
.kosMap__title {
  width: 1092px;
  margin: 0 auto;
}
#kosMapField {
  width: 100%;
  height: 560px;
  margin-top: 48px;
}

.kosHouse {
  margin-top: 120px;
}
.kosHouse__inner {
  max-width: 1242px;
  margin: 0 auto;
  position: relative;
}
.kosHouse__title {
  text-align: center;
  margin-bottom: 40px;
  .block {
    display: block;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-bottom: 2px dashed #333333;
    padding: 0 0.8em 10px;
  }
  .num {
    font-size: 150%;
  }
}
.kosHouse__btn {
  position: absolute;
  top: 0px;
  right: 100px;
}
.kosHouse__btn:after {
  content: "";
  display: inline-block;
  width: 17px;
  height: 17px;
  background: url(../img/icon_arrow_black.svg) no-repeat center/contain;
  margin-left: 20px;
  vertical-align: -4px;
}
.kosHouse__btn a {
  text-decoration: none;
  color: inherit;
  font-size: 12px;
  font-weight: bold;
}
.kosHouseList {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 80px 54px;
}
.kosHouseList__item {
  width: calc((100% - 108px) / 3);
  position: relative;
}
.kosHouseList__thumb a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  width: 100%;
  height: 250px;
  border-radius: 0 0 30px 0;
  border: 1px solid #eeeeee;
  text-decoration: none;
}
.kosHouseList__title {
  margin-top: 8px;
  color: var(--color-pink);
  font-weight: bold;
  font-size: 18px;
}
.kosHouseList__info {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  margin-top: 12px;
}
.kosHouseList__name {
  margin-top: 12px;
  font-size: 16px;
  font-weight: bold;
}
.kosHouseList__button {
  margin-top: 36px;
  + .kosHouseList__button {
    margin-top: 15px;
  }
  a {
    display: block;
    padding: 8px 0;
    text-align: center;
    text-decoration: none;
    &.detail {
      border: 1px solid #999999;
      color: #333;
    }
    &.reserve {
      background-color: #333333;
      color: #fff;
    }
  }
}

.kosClient {
  margin-top: 120px;
}
.kosClient__inner {
  max-width: 1242px;
  margin: 0 auto;
  position: relative;
}
.kosClient__title {
  text-align: center;
  margin-bottom: 40px;
  .block {
    display: block;
    font-size: 32px;
    font-weight: bold;
    letter-spacing: 0.05em;
    border-bottom: 2px dashed #333333;
    padding: 0 0.8em 10px;
  }
  .num {
    font-size: 150%;
  }
}
.kosClientList {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
  gap: 80px 54px;
}
.kosClientList__item {
  width: calc((100% - 108px) / 3);
  position: relative;
}
.kosClientList__thumb img {
  aspect-ratio: 366 / 250;
  object-fit: cover;
}
.kosClientList__tags {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  li {
    font-size: 12px;
    font-weight: 500;
    background-color: var(--color-blue);
    color: #fff;
    padding: 0 1em;
    line-height: 1.4;
    border-radius: 50vh;
  }
}
.kosClientList__name {
  margin-top: 24px;
  font-weight: bold;
  font-size: 16px;
}
.kosClientList__copy {
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  font-size: 14px;
  font-weight: bold;
  margin-top: 12px;
}
.kosClientList__info {
  font-size: 14px;
  font-weight: 500;
  margin-top: 8px;
}
.kosClientList__button {
  margin-top: 36px;
  + .kosClientList__button {
    margin-top: 15px;
  }
  a {
    display: block;
    padding: 8px 0;
    text-align: center;
    text-decoration: none;
    &.detail {
      border: 1px solid #999999;
      color: #333;
    }
    &.reserve {
      background-color: #333333;
      color: #fff;
    }
  }
}

.recomMv {
  max-width: 1246px;
  margin: 0 auto;
}
.recomMvSlider {
  .slider-dots {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: center;
    max-width: 640px;
    gap: 18px;
    li {
      flex: 1;
    }
    button {
      position: relative;
      width: 100%;
      height: 6px;
      border: 0;
      background-color: #e6e6e6;
      font-size: 0;
      &:after {
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        display: block;
        width: 0%;
        height: 100%;
      }
    }
  }
  .slick-active {
    button:after {
      background-color: #666666;
      animation: progress 5s linear forwards;
    }
  }
}
@keyframes progress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}
.recomComment {
  margin-top: 80px;
  display: flex;
  justify-content: center;
}
.recomComment__left {
  text-align: center;
}
.recomComment__icon {
  width: 113px;
  margin: 0 auto;
}
.recomComment__name {
  font-size: 14px;
  font-weight: bold;
  margin-top: 4px;
}
.recomComment__text {
  border: 5px solid #999999;
  border-radius: 20px;
  position: relative;
  padding: 15px 30px;
  max-width: 860px;
  margin-left: 30px;
  &:before {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    width: 27px;
    height: 50px;
    background-color: #999999;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
  }
  &:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    width: 22px;
    height: 40px;
    background-color: #ffffff;
    clip-path: polygon(0 50%, 100% 0, 100% 100%);
  }
}
.recomFeatures {
  margin-top: 80px;
}
.recomFeatures__inner {
  max-width: 1166px;
  margin: 0 auto;
}
.recomFeatures__title {
  text-align: center;
  .en {
    display: block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .ja {
    display: block;
    font-weight: bold;
    font-size: 26px;
    letter-spacing: 0.17em;
  }
}
.recomFeatures__row {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
  align-items: flex-start;
}
.recomFeatures__left {
  width: 600px;
}
.recomFeatures__copy {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 60px;
}
.recomFeatures__text {
  font-size: 16px;
  line-height: 2;
}
.recomFeatures__right {
  border: 1px solid #999999;
  border-radius: 20px;
  padding: 24px;
  width: 400px;
}
.recomFeatures__name {
  display: flex;
  align-items: center;
  gap: 20px;
  .logo {
    width: 38px;
  }
  .name {
    font-size: 18px;
    font-weight: 500;
  }
}
.recomFeatures__thumb {
  margin-top: 10px;
}
.recomFeatures__info {
  margin-top: 10px;
  letter-spacing: 0.05em;
}
.recomFeatures__sns {
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 18px;
  li {
    width: 35px;
  }
}
.recomFeaturesBlock {
  position: relative;
  img {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 24px;
  }
  .recomFeatures__cat {
    padding-left: 28px;
    + .recomFeatures__cat {
      margin-top: 0;
    }
  }
}
.recomFeatures__cat {
  margin-top: 30px;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  dt {
    img {
      position: relative;
      top: -1px;
      width: 24px;
      margin-right: 0.2em;
    }
  }
  dd {
    .tag {
      &:after {
        content: " / ";
      }
      &:last-child {
        &:after {
          content: "";
        }
      }
    }
  }
}

.recomPlan {
  margin-top: 90px;
  padding-top: 110px;
  clip-path: polygon(0 100px, 50% 0, 100% 100px, 100% 100%, 0 100%);
  background-color: #f6f6f6;
  padding-bottom: 90px;
}
.recomPlanHead {
  text-align: center;
  max-width: 308px;
  margin: 0 auto;
  border-bottom: 1px solid #d9d9d9;
  position: relative;
  padding-bottom: 16px;
}
.recomPlanHead__text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .05em;
}
.recomPlanHead__img {
  width: 74px;
  position: absolute;
  right: -15px;
  bottom: 6px;
}
.recomPlan__name {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: .05em;
  text-align: center;
  margin-top: 24px;
}
.recomPlan__title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: .05em;
  text-align: center;
  margin-top: 10px;
}
.recomPlan__row {
  width: 100%;
  max-width: 1124px;
  margin: 90px auto 0;
  display: flex;
  justify-content: space-between;
}
.recomPlan__left {
  width: 488px;
}
.recomPlan__right {
  width: 560px;
}
.recomPlan__h3 {
  font-size: 22px;
  font-weight: bold;
  color: var(--color-pink);
}
.recomPlan__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  margin-top: 30px;
  line-height: 1.6;
}
.recomPlan__thumb {
  margin-top: 24px;
}
.recomPlan__note {
  color: #727172;
  font-size: 15px;
  font-weight: 500;
  margin-top: 16px;
  text-align: right;
}
.recomPlan__btn {
  margin-top: 100px;
  text-align: center;
}

.recomInfo {
  background-color: #edeeed;
  margin-top: 80px;
  padding: 40px 0;
}
.recomInfo__inner {
  max-width: 1166px;
  margin: 0 auto;
}
.recomInfo__row {
  display: flex;
  justify-content: space-between;
  gap: 45px;
}
.recomInfo__left {
  flex: 1;
}
.recomInfo__right {
  width: 450px;
}
.recomInfo__title {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding-bottom: 10px;
  border-bottom: 2px dashed #333333;
  margin-bottom: 48px;
}
.recomInfo__list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 1em;
  li {
    width: calc((100% - 1em) / 2);
    font-size: 16px;
    font-weight: 500;
    display: flex;
    &:before {
      content: "";
      width: 30px;
      height: 30px;
      background: url(../img/icon_check_2.svg) no-repeat center/contain;
      margin-right: 0.2em;
    }
  }
}
.recomInfo__price {
  li {
    background-color: #fff;
    padding: 5px 15px;
    font-weight: 500;
    + li {
      margin-top: 12px;
    }
    &.caution {
      font-size: 14px;
      margin-top: 4px;
      margin-bottom: 10px;
      padding: 0;
      background-color: transparent;
    }
  }
}
.recomPoint {
  margin-top: 55px;
}
.recomPoint__inner {
  max-width: 1122px;
  margin: 0 auto;
}
.recomPointList {
  display: flex;
  gap: 65px;
  flex-wrap: wrap;
}
.recomPointList__item {
  width: calc((100% - 130px) / 3);
}
.recomPointList__thumb {
  border-radius: 20px;
  overflow: hidden;
  img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
}
.recomPointList__title {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  padding: 4px 1em;
  border-radius: 50vh;
  background-color: #00b2d1;
  color: #fff;
  margin-top: 20px;
}
.recomPointList__text {
  margin-top: 10px;
}
.recomButtons {
  margin-top: 120px;
  display: flex;
  justify-content: center;
  gap: 58px;
  li {
    width: 350px;
    a {
      display: block;
      border: 2px solid #006cbb;
      background-color: #006cbb;
      color: #fff;
      border-radius: 10px;
      text-align: center;
      font-size: 22.5px;
      font-weight: 500;
      text-decoration: none;
      padding: 12px 0;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      &:hover {
        background-color: #fff;
        color: #006cbb;
      }
    }
  }
}
@media screen and (min-width: 751px){
  .recomButtons.-four {
    gap: 20px;
    li {
      width: 266px;
      a {
        font-size: 20px;
      }
    }
  }
}

.recontactHeader {

}
.recontact__wrapper {
  max-width: 866px;
  margin: 0 auto;
}
.recontactHeader__title {
  font-size: 32px;
  font-weight: bold;
  padding-bottom: 10px;
  border-bottom: 2px dashed #000;
  text-align: center;
  margin-bottom: 70px;
}
.recontact__block {
  display: flex;
  gap: 40px;
  + .recontact__block {
    margin-top: 40px;
  }
  .parent {
    padding-left: 72px;
    position: relative;
    font-size: 18px;
    .required {
      position: absolute;
      top: 1px;
      left: 0;
      font-size: 14px;
      color: #fff;
      letter-spacing: 0.1em;
      padding: 2px 0;
      background-color: #c5171e;
      width: 45px;
      text-align: center;
    }
    .free {
      position: absolute;
      top: 1px;
      left: 0;
      font-size: 14px;
      color: #fff;
      letter-spacing: 0.1em;
      padding: 2px 0;
      background-color: #333333;
      width: 45px;
      text-align: center;
    }
  }
  .child {
    flex: 1;
    .small {
      font-size: 14px;
    }
    .indent {
      margin-left: 3em;
      text-indent: -1em;
    }
  }
  &.-name {
    gap: 0px;
    .parent {
      width: 180px;
    }
    + .-name {
      margin-top: 10px;
    }
  }
  &.-block {
    display: block;
    .child {
      width: 100%;
      margin-top: 18px;
      padding-left: 130px;
    }
  }
}
.estate-select {
  margin-top: 1em;
  display: none;
}
.mw_wp_form_confirm .estate-select {
  display: block !important;
}
.recontactSec {
  margin-top: 75px;
  padding: 45px 15px 68px;
  background-color: #edeeed;
  .recontact__block {
    padding-right: 100px;
  }
}
.recontactSec__title {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 35px;
}
.recform-text {
  width: 100%;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  height: 35px;
  padding: 0 0.8em;
  &::placeholder {
    color: #999999;
  }
  &.-tel {
    width: 270px;
    @media screen and (max-width: 750px){
      width: 100%;
    }
  }
  &.-price {
    width: 90px;
    @media screen and (max-width: 750px){
      width: 80px;
    }
  }
}
.recform-select {
  width: 100%;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  height: 35px;
  padding: 0 0.8em;
}
.recform-textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid #dbdbdb;
  padding: 0.5em 0.8em;
}
.recontact {
  .mwform-checkbox-field {
    &.horizontal-item {
      display: inline-block;
      margin-right: 20px;
      + .horizontal-item {
        margin-left: 0;
      }
    }
    label {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      input {
        -webkit-appearance: none;
        width: 20px;
        height: 20px;
        background-color: #fff;
        border: 1px solid #dbdbdb;
        border-radius: 0px;
        position: relative;
        margin-right: 0;
        &:after {
          content: "";
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          background: url(../img/icon_checkbox_on.svg) no-repeat center/16px;
          width: 20px;
          height: 20px;
          background-color: #fff;
          border: 1px solid #dbdbdb;
          opacity: 0;
        }
        &:checked {
          &:after {
            opacity: 1;
          }
        }
      }
    }
  }
}


@media screen and (max-width: 750px){
  .h2-kos {
    flex-direction: column;
    align-items: center;
  }
  .h2-kos .en {
    text-align: center;
    font-size: 20px;
    padding: 0 0 10px;
    margin: 0 0 16px;
    border-bottom: 2px solid #303030;
    border-right-style: none;
  }
  .h2-kos .ja {
    font-size: 12px;
  }
  .kosArea__title {
    width: auto;
  }
  .kosAreaList {
    width: auto;
  }
  .kosHeader {
    height: 50px;
  }
  .kosHeader__inner {
    height: 50px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .kosHeader__logo {
    width: 88px;
  }
  .kosHeader__h1 {
    font-size: 10px;
    margin-left: 10px;
  }
  .kosHeader__menu p {
    display: none;
  }
  .kosMv {
    padding: 0 15px;
  }
  .kosMv__bottom {
    padding: 0 15px;
  }
  .kosMv__scroll {
    display: none;
  }
  .kosNavi {
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
    padding: 0 15px;
  }
  .kosNavi__item {
    width: calc(50% - 8px);
    a {
      font-size: 14px;
      padding: 4px 0;
    }
  }
  .kosIntro {
    margin-top: 60px;
    padding: 0 15px;
  }
  .kosIntro__inner {
    display: block;
  }
  .kosIntro__left {
    width: 100%;
    margin-bottom: 20px;
  }
  .kosIntro__right {
    width: 100%;
    margin-left: 0;
  }
  .kosIntro__title {
    font-size: 20px;
  }
  .kosEvent {
    margin-top: 60px;
    padding: 0 15px 0 50px;
  }
  .kosEvent-plan {
    padding: 0 15px 0;
  }
  .single-renovation-company .kosEvent {
    padding: 0 15px 0 15px;
  }
  .kosEvent__subtitle {
    left: -37px;
    font-size: 18px;
  }
  .kosEvent__btn {
    position: static;
    text-align: center;
  }
  .kosEventList {
    display: block;
  }
  .kosEventList__item {
    width: 100%;
    max-width: 300px;
    margin: 0 auto 40px;
  }
  .kosArea {
    margin-top: 60px;
  }
  .kosArea__inner {
    padding: 30px 15px;
    border-radius: 0px;
  }
  .kosAreaList__item {
    height: calc(100vw - 30px);
  }
  .kosAreaList__thumb img {
    width: 100%;
    height: calc(100vw - 30px);
    object-fit: cover;
  }
  .kosAreaList__item.-kitaku {
    width: 100%;
  }
  .kosAreaList__item.-nakaku {
    width: 100%;
  }
  .kosAreaList__item.-minamiku {
    width: 100%;
  }
  .kosAreaList__item.-higashiku {
    width: 100%;
  }
  .kosAreaList__item.-kurashiki {
    width: 100%;
  }
  .kosHouse {
    margin-top: 40px;
  }
  .kosHouse__inner {
    padding: 0 15px;
  }
  .kosHouse__title {
    .block {
      display: block;
      font-size: 20px;
      width: 100%;
    }
  }
  .kosHouseList {
    flex-direction: column;
    gap: 60px;
    margin-top: 20px;
  }
  .kosHouseList__item {
    width: 100%;
  }
  .kosHouseList__title {
    font-size: 16px;
  }
  .kosHouseList__info {
    font-size: 13px;
  }
  .kosHouseList__name {
    font-size: 14px;
  }
  .kosClient {
    margin: 80px 15px 0;
  }
  .kosClient__title {
    .block {
      display: block;
      font-size: 20px;
      width: 100%;
    }
  }
  .kosClientList {
    flex-direction: column;
    gap: 60px;
    margin-top: 20px;
  }
  .kosClientList__item {
    width: 100%;
  }
  .kosClientList__copy {
    font-size: 13px;
  }
  .kosClientList__info {
    font-size: 13px;
  }
  .kosWorks {
    margin-top: 60px;
    padding: 0 15px;
  }
  .kosWorksList {
    display: block;
  }
  .kosWorksList__item {
    width: 250px;
  }
  .kosWorks__btn {
    margin-top: 30px;
  }
  .kosEstate {
    margin-top: 30px;
    padding: 0 15px 0;
  }
  .kosEstate__title {
    span {
      font-size: 20px;
      border-style: none;
    }
  }
  .kosEstateSlider__item,
  .kosEstateList {
    display: contents;
  }
  .kosEstateList__item {
    width: 250px;
  }
  .kosEstateWrapper {
    position: relative;
  }
  .kosEstateWrapper:before {
    content: "";
    background: url(../../common/img/arrow_scroll.png) no-repeat center left/72px auto;
    width: 72px;
    height: 14px;
    display: block;
    position: absolute;
    top: -44px;
    left: calc(100% - 72px);
    transform-origin: left center;
    animation: arrowmove 2s ease-in-out infinite;
  }
  .kosEstateWrapper .wrap {
    overflow: auto;
    padding-bottom: 12px;
  }
  .kosEstateSlider {
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 10px 0;
  }
  .kosEstate__btn {
    margin-top: 30px;
    .button-default {
      font-size: 13px;
    }
  }
  .kosMerit {
    margin-top: 60px;
    padding: 0 15px;
  }
  .kosMerit__inner {
    display: block;
  }
  .kosMerit__clm {
    width: 100%;
  }
  .kosMerit__clm + .kosMerit__clm{
    margin-top: 40px;
  }
  .kosMeritBlock {
    padding: 20px 15px;
    height: auto;
    margin-top: 20px;
  }
  .kosMerit__title {
    font-size: 20px;
  }
  .kosMerit__subtitle {
    text-align: left;
  }
  .kosMeritBlock__title {
    font-size: 18px;
    padding-bottom: 6px;
  }
  .kosMeritBlock__list li {
    font-size: 16px;
    letter-spacing: normal;
    margin-bottom: 6px;
  }
  .kosMerit__text {
    margin-top: 20px;
    text-align: left;
  }
  .kosLast {
    margin-top: 60px;
    padding: 0 15px;
    text-align: left;
    font-size: 16px;
  }
}

.kosDetailHeader {
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 48px 0 0 64px;
  z-index: 2;
}
.kosDetailHero {
  position: relative;
}
.kosDetailHero__inner {
  position: absolute;
  bottom: 120px;
  left: 60px;
  color: #fff;
}
.kosDetailHero__title {
  font-size: 64px;
  line-height: 1.2;
  font-weight: bold;
  letter-spacing: 0.17em;
}
.kosDetailHero__subtitle {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 1em;
}

.round {
  background-color: #fff;
  position: relative;
  top: -60px;
  border-top-left-radius: 60px;
  padding-top: 80px;
}
.kosCompany {
  max-width: 1166px;
  margin: 80px auto 0;
  padding-top: 80px;
  border-top: 2px solid #333333;
}
.kosCompany:first-child {
  margin-top: 0;
  padding-top: 0;
  border-style: none;
}
.kosCompanyHeader {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 80px;
  border-bottom: 20px solid #cad9d5;
}
.kosCompanyHeader__catch {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.1em;
}
.kosCompanyHeader__right {
  width: 448px;
}
.kosCompanyHeader__text {
  font-size: 15px;
  line-height: 2;
  font-weight: 500;
  margin-top: 40px;
  max-width: 462px;
}
.kosCompanyHeader__text.-small {
  font-size: 13px;
}
.kosCompanyHeader__text + .kosCompanyHeader__text{
  margin-top: 1em;
}
.kosCompanyHeader__name {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.kosCompanyHeader__name.-thin {
  letter-spacing: -0.05em;
}
.kosCompanyHeaderInfo {
  display: flex;
  align-items: center;
  margin-top: 50px; 
}
.kosCompanyHeaderInfo__thumb {
  width: 116px;
  height: 116px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 38px;
}
.kosCompanyHeaderInfo__address {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: .1em;
}
.kosCompanyHeaderInfo__tel {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-top: 0.5em;
}
.kosCompanyDetail {
  margin-top: 96px;
  display: flex;
  justify-content: space-between;
}
.kosCompanyDetail__left {
  width: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.kosCompanyDetail__title {
  font-size: 36px;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin-bottom: 20px;
  margin-right: -1em;
}
.kosCompanyDetail__text {
  font-size: 16px;
  line-height: 1.84;
  font-weight: 500;
}
.kosCompanyDetail__text.-small {
  font-size: 13px;
  line-height: 2;
}
.kosCompanyDetail__text.-indent {
  text-indent: -1em;
  margin-left: 1em;
}
.kosCompanyDetail__right {
  width: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 30px;
}
.kosCompanyDetailSlider {
  margin-top: auto;
}
.kosCompanyDetailSlider .slick-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 10px;
  left: 0px;
  width: 100%;
}
.kosCompanyDetailSlider .slick-dots li {
  margin: 0 8px;
}
.kosCompanyDetailSlider .slick-dots button {
  -webkit-appearance: none;
  text-indent: -9999px;
  padding: 0;
  border: 1px solid #fff;
  background-color: transparent;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.kosCompanyDetailSlider .slick-dots .slick-active button {
  background-color: #fff;
}
.kosCompanyDetailPoint {
  display: flex;
  margin-top: 80px;
  align-items: center;
}
.kosCompanyDetailPoint__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 116px;
  height: 116px;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding-left: 0.05em;
  background-color: #cad9d5;
}
.kosCompanyDetailPoint__list {
  display: flex;
  padding-left: 38px;
}
.kosCompanyDetailPoint__list li {
  margin: 0 7px;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-weight: 500;
  padding: 8px 1.2em;
  border: 1px solid #333;
  border-radius: 50vh;
}
.kosCompanyDetail__btn {
  text-align: center;
  margin-top: 50px;
}
.kosCompanyDetail__btn a {
  font-size: 22px;
  letter-spacing: 0.15em;
  font-weight: bold;
  padding: 12px 2em;
  border: 1px solid #333;
  border-radius: 5px;
  color: inherit;
  text-decoration: none;
  transition: .3s ease-in-out;
}
.kosCompanyDetail__btn a:hover {
  background-color: #333;
  color: #fff;
}
.kosCompanyArchives {
  margin-top: 100px;
  padding: 30px 50px;
  background-color: #cad9d5;
}
.kosCompanyArchives__title {
  text-align: center;
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.kosCompanyArchivesList {
  padding-top: 2px;
  display: flex;
  flex-wrap: wrap;
  max-width: 1040px;
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  .kosCompanyArchivesList {
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.kosCompanyArchivesList__item {
  margin: 0 16px 20px;
  padding-bottom: 44px;
  width: 228px;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .kosCompanyArchivesList__item {
    width: 49%;
    padding: 0 0 40px;
    margin: 0 0 10px;
  }
}
.kosCompanyArchivesList__item a {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.kosCompanyArchivesList__item a:hover {
  opacity: 0.8;
}
.kosCompanyArchivesList__thumb {
  position: relative;
}
.kosCompanyArchivesList__thumb picture {
  display: inline-block;
}
.kosCompanyArchivesList__thumb .new {
  position: absolute;
  top: 7px;
  left: 7px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  background-color: #c80000;
  padding: 0 3px;
}
.kosCompanyArchivesList__name {
  font-size: 14px;
  font-feature-settings: "palt";
  margin-top: 4px;
  text-align: left;
}
.kosCompanyArchivesList__tag {
  padding: 2px 0;
}
.kosCompanyArchivesList__tag li {
  font-weight: 500;
  border: 1px solid #919191;
  font-size: 14px;
  width: 156px;
  border-radius: 12px;
  text-align: center;
  margin-top: 3px;
}
.kosCompanyArchivesList__price {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  line-height: 1.2;
}
.kosCompanyArchivesList__price .large {
  color: #004ba2;
  font-size: 20px;
  font-weight: bold;
}
.kosCompanyArchivesList__btn {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 190px;
}
@media only screen and (max-width: 750px) {
  .kosCompanyArchivesList__btn {
    width: 100%;
    left: 0px;
  }
}
.kosCompanyArchivesList__btn span {
  display: block;
  background-color: #333333;
  color: #fff;
  text-decoration: none;
  text-align: center;
  padding: 4px 0;
  border-radius: 5px;
  position: relative;
  font-size: 14px;
  border: 1px solid #333333;
}

.kosWorksArchive {
  max-width: 1242px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px 0;
  .kosWorksList__item {
    width: 25%;
    @media screen and (max-width: 750px){
      width: 100%;
      border-right-style: none;
      padding-top: 40px;
      border-top: 1px solid #cccccc;
      &:first-child {
        padding-top: 0;
        border-top-style: none;
      }
    }
  }
}

@media screen and (max-width: 750px){
  .kosDetailHeader {
    padding: 30px 0 0 20px;
  }
  .kosDetailHero__inner {
    left: 20px;
    object-position: 64px;
  }
  .kosDetailHero__title {
    font-size: 42px;
  }
  .kosDetailHero__subtitle {
    font-size: 20px;
  }
  .round {
    border-top-left-radius: 50px;
    margin-top: -50px;
    padding: 60px 30px 0;
  }
  .kosCompanyHeader {
    display: block;
    padding: 0 30px 30px;
    margin: 0 -30px 0;
  }
  .kosCompanyHeader__left {
    width: 100%;
  }
  .kosCompanyHeader__right {
    width: 100%;
    margin-top: 40px;
  }
  .kosCompanyHeader__catch {
    font-size: 19px;
  }
  .kosCompanyHeader__text {
    font-size: 15px;
    line-height: 2;
  }
  .kosCompanyHeader__name {
    font-size: 20px;
  }
  .kosCompanyHeaderInfo {
    margin-top: 16px;
  }
  .kosCompanyHeaderInfo__address {
    font-size: 12px;
  }
  .kosCompanyHeaderInfo__tel {
    font-size: 18px;
  }
  .kosCompanyHeaderInfo__thumb{
    width: 76px;
    height: 76px;
  }
  .kosCompanyDetail {
    flex-direction: column-reverse;
    margin-top: 50px;
  }
  .kosCompanyDetail__left {
    width: 100%;
  }
  .kosCompanyDetail__right {
    width: 100%;
    display: block;
    padding: 0;
    margin-bottom: 30px;
  }
  .kosCompanyDetail__title {
    font-size: 19px;
  }
  .kosCompanyDetail__text {
    font-size: 14px;
  }
  .kosCompanyDetailPoint {
    display: block;
    margin-top: 40px;
  }
  .kosCompanyDetailPoint__list {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 0;
    margin-top: 20px;
  }
  .kosCompanyDetailPoint__list li {
    margin: 4px 0;
  }
  .kosCompanyDetail__btn a {
    font-size: 15px;
  }
  .kosCompanyArchives__title {
    font-size: 20px;
  }
  .kosCompanyArchives {
    margin: 70px -30px 0;
    padding: 20px 10px;
  }
  .kosCompany {
    margin-top: 60px;
  }
  .recomMvSlider {
    .slider-dots {
      max-width: 100%;
      padding: 0 15px;
      gap: 8px;
      li {
        flex: 1;
      }
      button {
        height: 6px;
        &:after {
          width: 0%;
        }
      }
    }
  }
  .recomSoat {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    padding: 0 15px;
  }
  .recomComment {
    display: contents;
    .recomComment__left {
      width: 100%;
      order: 3;
    }
    .recomComment__text {
      width: 100%;
      margin-top: 40px;
      margin-left: 0;
      margin-bottom: 30px;
      padding: 10px;
      font-size: 14px;
      order: 2;
      &:before {
        content: "";
        top: 100%;
        right: 50%;
        transform: translateX(50%);
        width: 40px;
        height: 22px;
        clip-path: polygon(0 0%, 100% 0, 50% 100%);
      }
      &:after {
        content: "";
        top: 100%;
        right: 50%;
        transform: translateX(50%);
        width: 30px;
        height: 17px;
        clip-path: polygon(0 0%, 100% 0, 50% 100%);
      }
    }
  }
  .recomFeatures {
    display: contents;
  }
  .recomFeatures__inner {
    display: contents;
  }
  .recomFeatures__row {
    display: contents;
  }
  .recomFeatures__title {
    order: 4;
    margin-top: 30px;
  }
  .recomFeatures__left {
    order: 5;
    width: 100%;
    margin-top: 20px;
  }
  .recomFeatures__right {
    order: 1;
    width: 100%;
    padding: 20px 10px;
  }
  .recomFeatures__cat {
    order: 6;
    margin-top: 20px;
    font-size: 14px;
    display: block;
    padding-left: 30px;
    dt {
      position: relative;
      display: inline;
      img {
        position: absolute;
        top: 0px;
        left: -30px;
      }
    }
    dd {
      display: inline;
    }
  }
  .recomFeatures__note {
    order: 7;
    font-size: 12px;
    margin-top: 0.5em;
    margin-left: 30px;
  }
  .recomFeaturesBlock {
    order: 6;
    img {
      top: 18px;
    }
  }
  .recomComment__text {
    margin-top: 40px;
  }
  .recomFeatures__copy {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .recomFeatures__text {
    font-size: 14px;
    margin-bottom: 3em;
  }

  .recomPlan {
    margin-top: 70px;
    padding-top: 80px;
    clip-path: polygon(0 25px, 50% 0, 100% 25px, 100% 100%, 0 100%);
    padding-bottom: 70px;
  }
  .recomPlan__title {
    font-size: 25px;
  }
  .recomPlan__row {
    display: block;
    padding: 0 25px;
    margin-top: 40px;
  }
  .recomPlan__left {
    width: 100%;
  }
  .recomPlan__h3 {
    font-size: 22px;
  }
  .recomPlan__text {
    margin-top: 20px;
  }
  .recomPlan__thumb {
    margin-top: 45px;
  }
  .recomPlan__right {
    width: 100%;
    margin-top: 45px;
  }
  .recomPlan__note {
    margin-top: 30px;
    font-size: 12px;
    text-align: left;
  }
  .recomPlan__btn {
    margin-top: 50px;
  }

  .recomInfo {
    margin-top: 40px;
    padding: 40px 15px;
  }
  .recomInfo__row {
    flex-direction: column;
    gap: 40px;
  }
  .recomInfo__left {
    width: 100%;
  }
  .recomInfo__title {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .recomInfo__scroll-wrapper {
    position: relative;
    &:before {
      content: "";
      background: url(../../common/img/arrow_scroll.png) no-repeat center left / 72px auto;
      width: 72px;
      height: 14px;
      display: block;
      position: absolute;
      top: -22px;
      left: calc(100% - 72px);
      transform-origin: left center;
      animation: arrowmove 2s ease-in-out infinite;
    }
  }
  .recomInfo__scroll {
    overflow: auto;
    padding: 10px 0 20px;
  }
  .recomInfo__list {
    width: 600px;
    gap: 10px 0;
    li {
      width: 50%;
      display: block;
      position: relative;
      font-size: 12.8px;
      padding-left: 30px;
      padding-right: 1em;
      &:before {
        width: 24px;
        height: 24px;
        position: absolute;
        top: -2px;
        left: 0px;
      }
    }
  }
  .recomInfo__right {
    width: 100%;
  }
  .recomInfo__price {
    li {
      font-size: 12px;
      &.caution {
        font-size: 11px;
      }
    }
  }
  .recomPoint {
    margin-top: 70px;
    padding: 0 15px;
  }
  .recomPointList {
    flex-direction: column;
    gap: 35px;
  }
  .recomPointList__item {
    width: 100%;
  }
  .recomButtons {
    margin-top: 40px;
    padding: 0 15px;
    flex-direction: column;
    gap: 20px;
    li {
      width: 100%;
      a {
        font-size: 18px;
        padding: 10px 0;
      }
    }
  }
  .recontactHeader {
    padding: 30px 15px 0;
  }
  .recontactHeader__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 30px;
  }
  .recontact__block {
    display: block;
    .parent {
      font-size: 16px;
    }
    .child {
      margin-top: 10px;
      font-size: 14px;
      .small {
        font-size: 12px;
      }
    }
  }
  .recontactSec {
    margin-top: 20px;
    padding: 20px 15px 40px;
    .recontact__block {
      padding-right: 0;
      .child {
        padding-left: 45px;
      }
      &.-block {
        .child {
          padding-left: 45px;
        }
      }
    }
  }
  .contactFormPrivacy {
    padding: 0 15px;
  }
  .kosEstate__inner {
    padding: 40px 0px;
  }
  .kosEstateArchive__title {
    font-size: 20px;
  }
  .kosEstateArchiveList {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px 0;
    .kosEstateList__item {
      margin: 0 auto;
      border-style: none;
      width: 48%;
      padding: 0 0;
    }
  }
  .kosEstateList__area {
    font-size: 14px;
  }
  .kosEstateList__access {
    font-size: 14px;
  }
  .kosEstateList__price {
    font-size: 16px;
    .large {
      font-size: 20px;
    }
  }
  .kosEstateList__features {
    gap: 4px;
    li {
      font-size: 13px;
    }
  }
  .kosEstateList__button a {
    font-size: 14px;
  }
  .kosSearch {
    margin: 80px 25px 0;
  }
  .kosSearchList__item {
    width: 50%;
  }
}

.worksSingle {
  max-width: 978px;
  margin: 30px auto 0;
  padding-bottom: 100px;
}
@media only screen and (max-width: 750px) {
  .worksSingle {
    margin-top: 40px;
    padding: 0 3% 56px;
  }
}
.worksSingle__cat {
  text-align: center;
}
.worksSingle__cat span {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  min-width: 118px;
  padding: 1px 1em 2px;
  background-color: #bbbbbb;
}
.worksSingle__cat span.-reform {
  background-color: #d6b638;
}
.worksSingle__name {
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  margin-top: 40px;
}
.worksSingle__title {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
}
@media only screen and (max-width: 750px) {
  .worksSingle__title {
    font-size: 16px;
  }
}
.worksSingleMain {
  margin-top: 45px;
}
.worksSingleMain__item img {
  width: auto;
  height: 590px;
  margin: 0 auto;
}
@media only screen and (max-width: 750px) {
  .worksSingleMain__item img {
    height: 230px;
  }
}
.worksSingleMain__caption {
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 12px;
  padding: 6px;
}
.worksSingleSub {
  margin: 40px -3px 0;
}
@media only screen and (max-width: 750px) {
  .worksSingleSub {
    margin-top: 10px;
  }
}
.worksSingleSub__item figure {
  padding: 0 3px;
}
.worksSingleSub__item img {
  width: auto;
  height: 145px;
}
@media only screen and (max-width: 750px) {
  .worksSingleSub__item img {
    height: 90px;
  }
}
.worksSingleSub .slick-prev {
  width: 40px;
  height: 40px;
  background: url(../img/works/prev.svg) no-repeat center/contain;
  position: absolute;
  top: calc(50% - 20px);
  left: -56px;
  z-index: 2;
}
@media only screen and (max-width: 750px) {
  .worksSingleSub .slick-prev {
    width: 26px;
    height: 26px;
    top: calc(50% - 13px);
    left: 0px;
  }
}
.worksSingleSub .slick-next {
  width: 40px;
  height: 40px;
  background: url(../img/works/next.svg) no-repeat center/contain;
  position: absolute;
  top: calc(50% - 20px);
  right: -56px;
  z-index: 2;
}
@media only screen and (max-width: 750px) {
  .worksSingleSub .slick-next {
    width: 26px;
    height: 26px;
    top: calc(50% - 13px);
    right: 0px;
  }
}
.worksSingle__catch {
  margin-top: 100px;
  text-align: center;
  font-size: 22px;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .worksSingle__catch {
    margin-top: 50px;
    font-size: 16px;
  }
}
.worksSingle__text {
  max-width: 672px;
  margin: 40px auto 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
@media only screen and (max-width: 750px) {
  .worksSingle__text {
    font-size: 14px;
    margin: 36px 3% 0;
  }
}
.worksSingleGallery {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media only screen and (max-width: 750px) {
  .worksSingleGallery {
    display: block;
    margin-top: 40px;
  }
}
.worksSingleGallery__item {
  margin: 60px 0 0;
  width: 47.8%;
}
@media only screen and (max-width: 750px) {
  .worksSingleGallery__item {
    width: 100%;
    max-width: 320px;
    margin: 20px auto 0;
  }
}
.worksSingleGallery__thumb img {
  aspect-ratio: 478/320;
  -o-object-fit: cover;
     object-fit: cover;
}
.worksSingleGallery__text {
  margin-top: 12px;
  font-size: 15px;
}
.worksSingleLinks {
  margin-top: 110px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 750px) {
  .worksSingleLinks {
    flex-direction: column;
    margin-top: 10px;
  }
}
.worksSingleLinks__item {
  width: 380px;
  margin: 0 48px;
}
@media only screen and (max-width: 750px) {
  .worksSingleLinks__item {
    width: 100%;
    max-width: 320px;
    margin: 48px auto 0;
  }
}
.worksSingleLinks__thumb {
  margin-top: 20px;
}
.worksSingleLinks__thumb img {
  width: 100%;
  aspect-ratio: 380/260;
  -o-object-fit: cover;
     object-fit: cover;
}
.worksSingleLinks__play {
  text-align: center;
}

.worksOthers {
  background-color: #f8f8f0;
  padding: 70px 3% 90px;
}
@media only screen and (max-width: 750px) {
  .worksOthers {
    padding: 40px 3% 30px;
  }
}
.worksOthers__inner {
  max-width: 1078px;
  margin: 0 auto;
}
.worksOthers__title .ja {
  display: block;
  background: url(../img/works/others_title_bg.svg) no-repeat center/contain;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding-top: 36px;
}
@media only screen and (max-width: 750px) {
  .worksOthers__title .ja {
    font-size: 18px;
    height: 75px;
    padding-top: 30px;
  }
}
.worksOthers__title .en {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.2em;
  padding-left: 0.1em;
  margin-top: 4px;
  text-align: center;
  display: block;
}
@media only screen and (max-width: 750px) {
  .worksOthers__title .en {
    font-size: 13px;
  }
}
.worksOthers {
  .kosWorksArchive {
    margin-top: 60px;
  }
}

.worksOutline {
  max-width: 700px;
  margin: 70px auto 0;
}
@media only screen and (max-width: 750px) {
  .worksOutline {
    margin: 60px 3% 0;
  }
}
.worksOutline__title {
  font-size: 14px;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  letter-spacing: 0.25em;
}
.worksOutline__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 24px 20px;
  border: 1px solid #192025;
  margin-top: 8px;
}
@media only screen and (max-width: 750px) {
  .worksOutline__list {
    display: block;
  }
}
.worksOutline__list li {
  font-size: 14px;
  font-weight: bold;
  padding: 4px 10px;
  font-weight: bold;
  border-bottom: 1px dotted #192025;
  width: 45%;
}
@media only screen and (max-width: 750px) {
  .worksOutline__list li {
    width: 100%;
  }
}

.worksBefoaf {
  margin-top: 70px;
}
@media only screen and (max-width: 750px) {
  .worksBefoaf {
    margin-top: 50px;
    padding-top: 24px;
    padding-bottom: 24px;
    border-top: 1px solid #192025;
  }
}
.worksBefoaf__inner {
  max-width: 950px;
  margin: 0 auto;
}
.worksBefoaf__row {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
@media only screen and (max-width: 750px) {
  .worksBefoaf__row {
    display: block;
    margin-top: 20px;
    padding: 0 3%;
  }
}
.worksBefoaf__title {
  display: flex;
  width: 100%;
  max-width: 262px;
  margin: 0 auto 24px;
  font-size: 18px;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  align-items: center;
}
.worksBefoaf__title:before {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #192025;
  margin-right: 30px;
}
.worksBefoaf__title:after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #192025;
  margin-left: 30px;
}
.worksBefoaf__item {
  width: 46%;
  position: relative;
}
@media only screen and (max-width: 750px) {
  .worksBefoaf__item {
    width: 100%;
    margin-top: 30px;
  }
}
.worksBefoaf__item:first-child .worksBefoaf__thumb:after {
  content: "";
  background: url(../img/rexample/arrow_before.svg) no-repeat center/contain;
  width: 20px;
  height: 18px;
  position: absolute;
  right: -48px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 750px) {
  .worksBefoaf__item:first-child .worksBefoaf__thumb:after {
    display: none;
  }
}
.worksBefoaf__thumb {
  width: 100%;
}
.worksBefoaf__thumb img {
  width: 100%;
  aspect-ratio: 438/300;
  -o-object-fit: cover;
     object-fit: cover;
}
.worksBefoaf__caption {
  font-size: 15px;
  font-weight: 500;
  margin-top: 12px;
}
.nextWorks {
  margin: 150px auto 0;
  width: 100%;
  max-width: 1000px;
  position: relative;
  text-align: center;
}
.nextWorks .center {
  display: inline-block;
  max-width: 280px;
}
.nextWorks .left {
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  max-width: 320px;
  font-size: 14px;
  padding-left: 32px;
}
.nextWorks .right {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  max-width: 320px;
  font-size: 14px;
  padding-right: 32px;
}
.nextWorks .right a,
.nextWorks .left a {
  text-decoration: none;
  color: inherit;
}
.nextWorks .left img {
  width: 24px;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
}
.nextWorks .right img {
  width: 24px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}
@media screen and (max-width: 750px){
  .nextWorks {
    margin-top: 40px;
  }
  .nextWorks .right,
  .nextWorks .left {
    display: none;
  }
}

.planHero {

}
.planHero__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.planHeroName {
  display: flex;
  align-items: center;
}
.planHeroName__img {
  width: 68px;
  margin-right: 8px;
}
.planHeroName__text {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.planHero__title {
  font-size: 23px;
  font-weight: bold;
  text-align: center;
  margin-top: 40px;
}
.planHeroSlider {
  margin-top: 40px;
}
.planHeroSlider .slick-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.planHeroSlider .slick-dots li {
  margin: 0 4px;
}
.planHeroSlider .slick-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border-style: none;
  -webkit-appearance: none;
  text-indent: -9999px;
  background-color: #c3c3c3;
}
.planHeroSlider .slick-dots li.slick-active button {
  background-color: #000000;
}
.planHeroSlider__item img {
  margin: 0 auto;
}

.planInfo {
  margin-top: 72px;
}
.planInfo__inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.planModel {
  width: 520px;
  display: flex;
  flex-direction: column;
}
.planModel__title {
  width: 230px;
  height: 38px;
  margin: 0 auto;
  border-top: 1px solid #dbdcdc;
  border-left: 1px solid #dbdcdc;
  border-right: 1px solid #dbdcdc;
  border-bottom: 1px solid #fff;
  border-radius: 10px 10px 0 0;
  padding: 7px 0 0;
  text-align: center;
  margin-bottom: -1px;
  position: relative;
  background-color: #fff;
  z-index: 2;
}
.planModel__title span {
  display: inline-block;
  width: 114px;
  border-bottom: 1px solid #dbdcdc;
  font-size: 19px;
  font-weight: 500;
  color: #00b2cd;
}
.planModel__block {
  flex: 1;
  border: 1px solid #dbdcdc;
  padding: 30px 30px 20px;
}
.planModel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.planModel__icon {
  width: 144px;
}
.planModel__profile li {
  margin-bottom: 12px;
  margin: 2px 0;
  padding-left: 1.2em;
  position: relative;
  font-size: 14px;
}
.planModel__profile li:before {
  content: "■ ";
  color: #a9e1e8;
  position: absolute;
  top: 0px;
  left: 0px;
}
.planNeeds {
  margin-top: 10px;
}
.planNeeds__title {
  display: flex;
  font-size: 18px;
  font-weight: bold;
  align-items: center;
}
.planNeeds__title:before {
  content: "";
  background-color: #dbdcdc;
  height: 1px;
  flex: 1;
  margin-right: 12px;
}
.planNeeds__title:after {
  content: "";
  background-color: #dbdcdc;
  height: 1px;
  flex: 1;
  margin-left: 12px;
}
.planNeeds__price {
  font-size: 16px;
  font-weight: bold;
}
.planNeeds__price small {
  font-size: 12px;
}
.planNeeds__list {
  margin-top: 10px;
  font-size: 14px;
}
.planNeeds__list li {
  padding-left: 1em;
  position: relative;
}
.planNeeds__list li:before {
  content: "・";
  position: absolute;
  top: 0px;
  left: 0px;
}
.planNeeds__note {
  font-size: 12px;
  margin-top: 10px;
}
.planLand {
  width: 520px;
  display: flex;
  flex-direction: column;
}
.planLand__title {
  width: 230px;
  height: 38px;
  margin: 0 auto;
  border-top: 1px solid #dbdcdc;
  border-left: 1px solid #dbdcdc;
  border-right: 1px solid #dbdcdc;
  border-bottom: 1px solid #fff;
  border-radius: 10px 10px 0 0;
  padding: 7px 0 0;
  text-align: center;
  margin-bottom: -1px;
  position: relative;
  background-color: #fff;
  z-index: 2;
}
.planLand__title span {
  display: inline-block;
  width: 114px;
  border-bottom: 1px solid #dbdcdc;
  font-size: 19px;
  font-weight: 500;
  color: #ffc04f;
}
.planLand__block {
  flex: 1;
  border: 1px solid #dbdcdc;
  padding: 30px 30px 20px;
}
.planLandGallery {
  display: flex;
}
.planLandGallery img {
  aspect-ratio: 235 / 174;
  object-fit: cover;
}
.planLand__tag {
  margin-top: 30px;
  gap: 6px;
  display: flex;
  flex-wrap: wrap;
}
.planLand__tag li {
  font-size: 15px;
  font-weight: 500;
  color: #ffc04f;
  border: 1px solid #ffc04f;
  border-radius: 3px;
  padding: 3px 10px;
}
.planLand__area {
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
}
.planLand__features {
  font-size: 14px;
  margin-top: 15px;
}
.planLand__features li {
  position: relative;
  padding-left: 1em;
}
.planLand__features li:after {
  content: "・";
  position: absolute;
  top: 0px;
  left: 0px;
}
.planStaff {
  max-width: 1080px;
  margin: 30px auto 0;
}
.planStaff__inner {
  background-color: #f6f6f6;
  border-radius: 10px;
  padding: 70px 20px 60px;
}
.planStaff__header {
  display: flex;
  justify-content: center;
}
.planStaffProfile {
  text-align: center;
}
.planStaffProfile__title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.17em;
}
.planStaffProfile__icon {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  overflow: hidden;
  margin-top: 10px;
}
.planStaffProfile__name {
  font-size: 17px;
  font-weight: 500;
  margin-top: 10px;
}
.planStaffProfile__name .job {
  font-size: 14px;
}
.planStaffComment {
  margin-left: 66px;
  padding-left: 60px;
  background: url(../img/plan/balloon.png) no-repeat top left/18px;
  width: 460px;
}
.planStaffComment__title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.planStaffComment__text {
  font-size: 15px;
  letter-spacing: 0.05em;
  margin-top: 20px;
}
.planPoint {
  margin-top: 60px;
  text-align: center;
}
.planPoint__title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.planPointList {
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  max-width: 834px;
  gap: 60px 32px;
}
.planPointList__item {
  width: calc((100% - 64px) / 3);
}
.planPointList__thumb {
  border-radius: 6px;
  overflow: hidden;
}
.planPointList__thumb img {
  aspect-ratio: 256 / 171;
  object-fit: cover;
}
.planPointList__num {
  margin-top: 10px;
  font-weight: bold;
  font-size: 15px;
  color: #ffbcb7;
  letter-spacing: 0.05em;
}
.planPointList__text {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 10px;
}
.planDetail {
  margin-top: 90px;
}
.planDetail__inner {
  max-width: 1120px;
  margin: 0 auto;
}
.planDetailTab {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  position: relative;
}
.planDetailTab:after {
  content: "";
  background-color: #dbdcdc;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.planDetailTab li {
  border: 1px solid #dbdcdc;
  color: #dbdcdc;
  background-color: #fff;
  width: 210px;
  padding: 8px 0;
  font-size: 21px;
  font-weight: bold;
  letter-spacing: 0.2em;
  text-align: center;
  border-radius: 6px 6px 0 0;
  margin: 0 8px;
  position: relative;
  z-index: 2;
  cursor: pointer;
}
.planDetailTab li.is-active {
  border-bottom-color: #fff;
  color: #303030;
}
.planDetail__click {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.planDetail__click img {
  width: 12px;
  margin-right: 4px;
}
.planDetailChild.is-active {
  display: flex;
}
.planDetail__left {
  width: 560px;
}
.planDetail__img {
  width: 100%;
  height: 512px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.planDetail__madori {
  position: relative;
}
@media screen and (max-width: 750px){
  .planDetail__madori img {
    width: auto;
    max-height: 316px;
  }
}
.btn-detail {
  width: 27px;
  height: 27px;
  border: 1px solid #ff002f;
  color: #ff002f;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding-top: 2px;
  border-radius: 50%;
  position: absolute;
  line-height: 1;
  cursor: pointer;
}
.btn-detail.is-active {
  background-color: #ff002f;
  color: #fff;
}
.btn-detail .arrow {
  position: absolute;
  max-width: initial;
  opacity: 0;
  pointer-events: none;
}
.btn-detail.is-active .arrow {
  opacity: 1;
}
.-madori01 .num01 {
  top: calc( 125 / 278 * 100%);
  left: calc( 262 / 507 * 100%);
}
.-madori01 .num02 {
  top: calc( 172 / 278 * 100%);
  left: calc( 114 / 507 * 100%);
}
.-madori01 .num02 .arrow {
  width: calc( 10 / 27 * 100%);
  left: calc( 8 / 27 * 100%);
  top: calc( 34 / 27 * 100% * -1);
}
.-madori01 .num03 {
  top: calc( 204 / 278 * 100%);
  left: calc( 260 / 507 * 100%);
}
.-madori01 .num04 {
  top: calc( 130 / 278 * 100%);
  left: calc( 394 / 507 * 100%);
}
.-madori02 .num05 {
  top: calc( 135 / 196 * 100%);
  left: calc( 106 / 394 * 100%);
}
.-madori03 .num06 {
  top: calc( 225 / 478 * 100%);
  left: calc( 412 / 556 * 100%);
}
.-madori04 .num01 {
  top: calc( 358 / 450 * 100%);
  left: calc( 244 / 310 * 100%);
}
.-madori04 .num02 {
  top: calc( 240 / 450 * 100%);
  left: calc( 220 / 310 * 100%);
}
.-madori04 .num03 {
  top: calc( 160 / 450 * 100%);
  left: calc( 206 / 310 * 100%);
}
.-madori04 .num04 {
  top: calc( 35 / 450 * 100%);
  left: calc( 226 / 310 * 100%);
}
.-madori04 .num05 {
  top: calc( 52 / 450 * 100%);
  left: calc( 70 / 310 * 100%);
}
.-madori05 .num06 {
  top: calc( 251 / 346 * 100%);
  left: calc( 206 / 388 * 100%);
}
.-madori05 .num07 {
  top: calc( 86 / 388 * 100%);
  left: calc( 277 / 346 * 100%);
}
.-madori05 .num08 {
  top: calc( 120 / 388 * 100%);
  left: calc( 174 / 346 * 100%);
}
.-madori05 .num09 {
  top: calc( 322 / 388 * 100%);
  left: calc( 100 / 346 * 100%);
}
.-madori06 .num10 {
  top: calc( 329 / 487 * 100%);
  left: calc( 134 / 319 * 100%);
}
.-madori06 .num11 {
  top: calc( 281 / 487 * 100%);
  left: calc( 54 / 319 * 100%);
}
.-madori07 .num01 {
  top: calc( 174 / 429 * 100%);
  left: calc( 379 / 442 * 100%);
}
.-madori07 .num01 .arrow {
  width: calc( 82 / 27 * 100%);
  left: calc( 82 / 27 * 100% * -1);
  top: calc( 84 / 27 * 100% * -1);
}
.-madori07 .num02 {
  top: calc( 149 / 429 * 100%);
  left: calc( 232 / 442 * 100%);
}
.-madori07 .num03 {
  top: calc( 74 / 429 * 100%);
  left: calc( 199 / 442 * 100%);
}
.-madori07 .num04 {
  top: calc( 154 / 429 * 100%);
  left: calc( 118 / 442 * 100%);
}
.-madori07 .num05 {
  top: calc( 318 / 429 * 100%);
  left: calc( 175 / 442 * 100%);
}
.-madori08 .num06 {
  top: calc( 172 / 420 * 100%);
  left: calc( 354 / 423 * 100%);
}
.-madori08 .num07 {
  top: calc( 256 / 420 * 100%);
  left: calc( 70 / 423 * 100%);
}
.-madori09 .num08 {
  top: calc( 316 / 495 * 100%);
  left: calc( 98 / 407 * 100%);
}
.-madori09 .num09 {
  top: calc( 89 / 495 * 100%);
  left: calc( 103 / 407 * 100%);
}
.-madori10 .num01 {
  top: calc( 340 / 430 * 100%);
  left: calc( 250 / 520 * 100%);
}
.-madori10 .num02 {
  top: calc( 316 / 430 * 100%);
  left: calc( 216 / 520 * 100%);
}
.-madori10 .num02 .arrow {
  width: calc( 368 / 27 * 100%);
  left: calc( 172 / 27 * 100% * -1);
  top: calc( 150 / 27 * 100% * -1);
}
.-madori10 .num03 {
  top: calc( 324 / 430 * 100%);
  left: calc( 460 / 520 * 100%);
}
.-madori10 .num04 {
  top: calc( 240 / 430 * 100%);
  left: calc( 402 / 520 * 100%);
}
.-madori10 .num05 {
  top: calc( 166 / 430 * 100%);
  left: calc( 468 / 520 * 100%);
}
.-madori10 .num06 {
  top: calc( 340 / 430 * 100%);
  left: calc( 38 / 520 * 100%);
}
.-madori10 .num07 {
  top: calc( 184 / 430 * 100%);
  left: calc( 224 / 520 * 100%);
}
.-madori10 .num08 {
  top: calc( 48 / 430 * 100%);
  left: calc( 72 / 520 * 100%);
}
.-madori11 .num09 {
  top: calc( 462 / 500 * 100%);
  left: calc( 96 / 441 * 100%);
}
.-madori11 .num10 {
  top: calc( 74 / 500 * 100%);
  left: calc( 185 / 441 * 100%);
}
.-madori12 .num01 {
  top: calc( 196 / 435 * 100%);
  left: calc( 56 / 507 * 100%);
}
.-madori12 .num02 {
  top: calc( 76 / 435 * 100%);
  left: calc( 295 / 507 * 100%);
}
.-madori12 .num02 .arrow {
  width: calc( 310 / 27 * 100%);
  left: calc( 150 / 27 * 100% * -1);
  top: calc( 38 / 27 * 100%);
}
.-madori12 .num03 {
  top: calc( 30 / 435 * 100%);
  left: calc( 108 / 507 * 100%);
}
.-madori12 .num04 {
  top: calc( 72 / 435 * 100%);
  left: calc( 192 / 507 * 100%);
}
.-madori12 .num05 {
  top: calc( 82 / 435 * 100%);
  left: calc( 419 / 507 * 100%);
}
.-madori12 .num06 {
  top: calc( 186 / 435 * 100%);
  left: calc( 295 / 507 * 100%);
}
.-madori12 .num07 {
  top: calc( 212 / 435 * 100%);
  left: calc( 206 / 507 * 100%);
}
.-madori13 .num08 {
  top: calc( 232 / 434 * 100%);
  left: calc( 387 / 452 * 100%);
}
.-madori13 .num09 {
  top: calc( 362 / 401 * 100%);
  left: calc( 325 / 547 * 100%);
}
.-madori14 .num10 {
  top: calc( 153 / 465 * 100%);
  left: calc( 92 / 452 * 100%);
}
.-madori14 .num11 {
  top: calc( 288 / 465 * 100%);
  left: calc( 296 / 452 * 100%);
}
.-madori15 .num06 {
  top: calc( 85 / 188 * 100%);
  left: calc( 396 / 485 * 100%);
}
.-madori15 .num07 {
  top: calc( 129 / 188 * 100%);
  left: calc( 180 / 485 * 100%);
}
.-madori15 .num08 {
  top: calc( 35 / 188 * 100%);
  left: calc( 314 / 485 * 100%);
}
.-madori16 .num01 {
  top: calc( 120 / 258 * 100%);
  left: calc( 283 / 485 * 100%);
}
.-madori16 .num02 {
  top: calc( 124 / 258 * 100%);
  left: calc( 339 / 485 * 100%);
}
.-madori16 .num02 .arrow {
  width: calc( 161 / 27 * 100%);
  left: calc( 119 / 27 * 100% * -1);
  top: calc( 10 / 27 * 100%);
}
.-madori16 .num03 {
  top: calc( 156 / 258 * 100%);
  left: calc( 433 / 485 * 100%);
}
.-madori16 .num04 {
  top: calc( 202 / 258 * 100%);
  left: calc( 276 / 485 * 100%);
}
.-madori16 .num05 {
  top: calc( 202 / 258 * 100%);
  left: calc( 50 / 485 * 100%);
}
.-madori17 .num09 {
  top: calc( 110 / 399 * 100%);
  left: calc( 363 / 546 * 100%);
}
.-madori17 .num10 {
  top: calc( 188 / 399 * 100%);
  left: calc( 104 / 546 * 100%);
}
.planDetail__right {
  width: 560px;
}
.planDetailSlider {
  width: 373px;
  margin: 0 auto;
}
.planDetailSlider__thumb {
  border-radius: 6px;
  overflow: hidden;
}
.planDetailSlider__thumb img {
  aspect-ratio: 373 / 225;
  object-fit: cover;
}
.planDetailSlider__note {
  font-size: 13px;
  font-weight: 500;
  text-align: right;
  margin-top: 5px;
}
.planDetailSlider__info {
  margin-top: 30px;
  padding: 0 34px 0 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.planDetailSlider__num {
  font-size: 19px;
  font-weight: bold;
  line-height: 1;
  border-radius: 50%;
  border: 1px solid #303030;
  text-align: center;
  width: 28px;
  height: 28px;
  padding-top: 2px;
}
.planDetailSlider__text {
  width: calc(100% - 48px);
}
.planDetailSlider .slick-dots {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.planDetailSlider .slick-dots li {
  margin: 0 4px;
}
.planDetailSlider .slick-dots button {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border-style: none;
  -webkit-appearance: none;
  text-indent: -9999px;
  background-color: #c3c3c3;
}
.planDetailSlider .slick-dots li.slick-active button {
  background-color: #000000;
}
.planDetail__info {
  font-size: 15px;
  font-weight: 500;
  margin-top: 36px;
}
.planDetail__info span {
  margin-right: 0.5em;
}
.planDetail__note {
  padding-top: 30px;
  margin-top: 15px;
  font-size: 13px;
  font-weight: 500;
  color: #727172;
  border-top: 1px solid #dbdcdc;
}
@media screen and (max-width: 750px){
  .planHero {
    padding: 20px 15px 0;
  }
  .planHeroName__text {
    font-size: 14px;
  }
  .planHero__title {
    font-size: 16px;
    margin-top: 24px;
  }
  .planHeroSlider .slick-dots {
    margin-top: 20px;
  }
  .planHeroSlider .slick-dots li {
    margin: 0 3px;
  }
  .planHeroSlider .slick-dots li button {
    width: 12px;
    height: 12px;
  }
  .planInfo {
    margin-top: 75px;
    padding: 0 15px;
  }
  .planInfo__inner {
    flex-direction: column;
    gap: 55px;
  }
  .planModel {
    width: 100%;
  }
  .planLand {
    width: 100%;
  }
  .planModel__block {
    padding: 30px 18px 20px;
  }
  .planModel__header {
    flex-direction: column;
    gap: 15px;
  }
  .planLand__block {
    padding: 30px 18px 20px;
  }
  .planLandGallery {
    max-width: 235px;
    flex-direction: column;
    margin: 0 auto;
    gap: 30px;
  }
  .planStaff {
    margin: 35px 15px 0;
  }
  .planStaff__inner {
    padding: 60px 18px 80px;
  }
  .planStaff__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .planStaffComment {
    width: 100%;
    padding: 0;
    margin: 0;
    background: none;
  }
  .planPoint {
    margin-top: 60px;
  }
  .planPointList {
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .planPointList__item {
    width: 256px;
  }
  .planDetail {
    margin-top: 50px;
  }
  .planDetailTab {
    padding: 0 12px;
  }
  .planDetailTab li {
    margin: 0 3px;
    font-size: 17px;
  }
  .planDetail__click {
    text-align: center;
  }
  .planDetailChild {
    flex-direction: column;
    padding: 0 15px;
  }
  .planDetail__left {
    width: 100%;
  }
  .planDetail__img {
    height: 316px;
  }
  .planDetail__right {
    width: 100%;
    margin-top: 27px;
    padding: 30px 24px;
  }
  .-madori01 {
    width: 325px;
  }
  .planDetailSlider {
    width: 100%;
  }
  .planDetailSlider__text {
    font-size: 14px;
    width: calc(100% - 35px);
  }
  .planDetailSlider__num {
    font-size: 16px;
    width: 24px;
    height: 24px;
  }
  .planDetailSlider .slick-dots {
    margin-top: 30px;
  }
  .planDetailSlider .slick-dots li {
    margin: 0 3px;
  }
  .planDetailSlider .slick-dots li button {
    width: 12px;
    height: 12px;
  }
  .btn-detail {
    width: 18px;
    height: 18px;
    font-size: 12px;
    padding-top: 1px;
  }
  .-madori12 .num02 .arrow {
      width: calc(335 / 27 * 100%);
      left: calc(163 / 27 * 100% * -1);
      top: calc(38 / 27 * 100%);
  }
  .-madori16 .num02 .arrow {
      width: calc(179 / 27 * 100%);
      left: calc(132 / 27 * 100% * -1);
      top: calc(10 / 27 * 100%);
  }
  .planDetail__info {
    margin: 40px 15px 0;
    display: flex;
    flex-direction: column;
  }
  .planDetail__note {
    margin: 48px 15px 0;
    padding-top: 24px;
  }
}

.plcHeader {
  padding-top: 30px;
}
.plcHeader__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.plcHeader__title {
  font-size: 32px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding-bottom: 24px;
  border-bottom: 1px dashed #303030;
  text-align: center;
}
.plcHeader__subtitle {
  font-size: 19px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 36px;
  text-align: center;
}
.plcHeader__text {
  max-width: 640px;
  margin: 15px auto 0;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
.plcFlow {
  padding-top: 90px;
}
.plcFlow__inner {
  max-width: 794px;
  margin: 0 auto;
}
.plcFlow__title {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}
.plcFlowList {
  display: flex;
  justify-content: space-between;
  margin-top: 24px;
}
.plcFlowList__item {
  width: 176px;
  height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: inherit;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.05em;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  text-decoration: none;
  position: relative;
}
.plcFlowList__item:after {
  content: "▶︎";
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  color: #cacaca;
  font-size: 15px;
}
.plcFlowList__item:last-child:after {
  content: none;
}
.plcFlowList__num {
  color: var(--color-red);
  font-size: 13px;
}
.plcCompany {
  padding-top: 100px;
}
.plcCompany__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.plcSec__title {
  display: flex;
  align-items: center;
}
.plcSec__title.-center {
  justify-content: center;
}
.plcSec__title .num {
  color: var(--color-red);
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.plcSec__title .text {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-left: 1em;
}
.plcSec__title small {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-left: 1em;
}
.plcSec__description {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-top: 1em;
}
.plcSec__description img {
  width: 14px;
  margin: 0 0.1em;
}
.plcCompanyList {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 84px;
  margin-top: 50px;
}
.plcCompanyList__item {
  width: calc((100% - 168px) / 3);
}
.plcCompanyList__thumb img {
  aspect-ratio: 274 / 170;
  object-fit: cover;
  border-radius: 4px;
}
.plcCompanyList__name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-red);
  margin-top: 12px;
}
.plcCompanyList__label {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.2;
}
.check-style {
  display: flex;
  align-items: center;
}
.check-style .text {
  flex: 1;
}
.check-style input {
  display: none;
}
.check-style__icon {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  background: url(../img/contact/icon_check_off.svg) no-repeat center/contain;
}
.check-style input:checked + .check-style__icon {
  background: url(../img/contact/icon_check_on.svg) no-repeat center/contain;
}

.plcLand {
  padding-top: 80px;
  border-top: 1px dashed #303030;
  max-width: 1000px;
  margin: 80px auto 0;
}
.plcLand__consul {
  margin-top: 30px;font-size: 15px;
  letter-spacing: 0.1em;
}
.plcLand__zoom {
  font-size: 13px;
  color: var(--color-red);
  margin-top: 20px;
}
.plcLand__zoom img {
  width: 16px;
  margin-right: 3px;
}
.plcLandList {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px 36px;
}
.plcLandList__item {
  width: calc((100% - 180px) / 6);
}
.plcLandList__thumb {
  position: relative;
}
.plcLandList__thumb img {
  aspect-ratio: 136 / 94;
  object-fit: cover;
}
.plcLandList__thumb label {
  position: absolute;
  top: 0px;
  left: 0px;
}
.plcLandList__img {
  cursor: pointer;
}
.plcLandList__name {
  font-size: 14px;
  margin-top: 0.5em;
}
.plcLandList__price {
  font-size: 12px;
  font-weight: 500;
}
.plcLandList__price .num {
  font-size: 18px;
  font-weight: bold;
  color: #004c83;
}
.plcLandList__btn {
  cursor: pointer;
  text-align: center;
  color: #fff;
  background-color: #004c83;
  font-size: 12px;
  padding: 2px 0;
  border-radius: 4px;
  margin-top: 5px;
}
.plcForm {
  margin-top: 120px;
  padding: 80px 0;
  background-color: #edefee;
}
.plcForm .required {
  width: 45px;
  background-color: #e51018;
  color: #fff;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  display: inline-block;
}
.plcForm .free {
  width: 45px;
  background-color: #303030;
  color: #fff;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.1em;
  display: inline-block;
}
.plcSec__title .required {
  margin-left: 15px;
}
.plcForm__inner {
  max-width: 1000px;
  margin: 0 auto;
}
.plcForm__table {
  padding-top: 70px;
  margin-top: 50px;
  border-top: 1px dashed #303030;
}
.plcFormBlock {
  padding-left: 70px;
  position: relative;
}
.plcFormBlock .required,
.plcFormBlock .free {
  position: absolute;
  top: 2px;
  left: 0px;
}
.plcFormBlock + .plcFormBlock {
  margin-top: 40px;
}
.plcFormBlock__item.-flex {
  display: flex;
  align-items: center;
}
.plcFormBlock__item + .plcFormBlock__item {
  margin-top: 10px;
}
.plcFormBlock__item dt {
  font-size: 16px;
  letter-spacing: 0.1em;
}
.plcFormBlock__item dd {
  margin-top: 16px;
}
.plcFormBlock__item.-flex dt {
  width: 108px;
}
.plcFormBlock__item.-flex dd {
  margin: 0;
}
.plcFormBlock__input {
  width: 580px;
  height: 35px;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  padding: 0 0.25em;
  border-radius: 4px;
}
.plcFormBlock__input.-tel {
  width: 268px;
}
.plcFormBlock__input.-short {
  width: 90px;
}
.plcFormBlock__select {
  width: 580px;
  height: 35px;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  padding: 0 0.25em;
  border-radius: 4px;
}
.plcFormBlock__textarea {
  width: 580px;
  height: 130px;
  background-color: #fff;
  border: 1px solid #dcdcdc;
  padding: 0.25em 0.25em;
  border-radius: 4px;
}
.plcSend {
  padding-top: 50px;
  text-align: center;
}
.plcSend__btn {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.btn-plc-send {
  width: 320px;
  height: 50px;
  background-color: #f4ba00;
  border-radius: 4px;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border-style: none;
}
.btn-plc-back {
  width: 320px;
  height: 50px;
  background-color: #dcdcdc;
  border-radius: 4px;
  color: #000;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  border-style: none;
}
.plcSec__text {
  margin-top: 30px;
  font-size: 14px;
}
.plcPrivacy {
  max-width: 840px;
  margin: 90px auto 0;
}
.plcPrivacy__title {
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: center;
}
.plcPrivacy__block {
  margin-top: 24px;
  border: 1px solid #dcdcdc;
  padding: 10px;
  height: 90px;
  overflow: auto;
  font-size: 14px;
}
.landPop {
  position: fixed;
  z-index: 1000;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  display: none;
}
.landPop__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
}
.landPop__item {
  width: 310px;
  padding: 20px 15px 25px;
  border: 1px solid #dfdfdf;
  position: relative;
  background-color: #fff;
}
.landPop__img {
  position: relative
}
.landPop__img img {
  aspect-ratio: 278 / 192;
  object-fit: cover;
  border-radius: 4px;
}
.landPop__img label {
  position: absolute;
  top: 15px;
  left: 15px;
}
.landPop__close {
  position: absolute;
  width: 38px;
  top: -10px;
  right: -10px;
  cursor: pointer;
}
.landPop__title {
  font-size: 18px;
  margin-top: 6px;
}
.landPop__price {
  font-size: 12px;
  font-weight: 500;
}
.landPop__price .num {
  font-size: 23px;
  font-weight: bold;
  color: #004c83;
}
.landPop__info {
  font-size: 14px;
  line-height: 1.2;
  margin-top: 10px;
}
.landPop__name {
  font-size: 15px;
  padding-top: 15px;
  margin-top: 20px;
  border-top: 1px solid #e2e2e2;
}
.landPop__tel {
  font-size: 15px;
}
.landPop__address {
  font-size: 13px;
  margin-top: 6px;
}
@media screen and (max-width: 750px){
  .plcHeader {
    padding-top: 40px;
  }
  .plcHeader__title {
    font-size: 20px;
  }
  .plcHeader__subtitle {
    font-size: 15px;
  }
  .plcHeader__text {
    padding: 0 15px;
  }
  .plcFlow {
    padding-top: 30px;
  }
  .plcFlow__title {
    font-size: 15px;
  }
  .plcFlowList {
    margin-top: 20px;
    flex-direction: column;
    gap: 27px;
    align-items: center;
  }
  .plcFlowList__item:after {
    top: calc(100% + 5px);
    right: 50%;
    transform: translateX(50%) rotate(90deg);
  }
  .plcCompany {
    padding: 45px 15px 0;
  }
  .plcSec__title {
    flex-direction: column;
  }
  .plcSec__title .text {
    font-size: 18px;
    text-align: center;
    margin: 0;
  }
  .plcSec__title small {
    font-size: 14px;
    margin: 0;
    display: block;
  }
  .plcSec__description {
    padding: 15px 0px 0;
  }
  .plcCompanyList {
    margin-top: 45px;
    flex-direction: column;
    align-items: center;
  }
  .plcCompanyList__item {
    width: 274px;
  }
  .plcLand {
    margin: 60px 15px 0;
    padding-top: 50px;
  }
  .plcLandList {
    justify-content: space-between;
    gap: 45px 0;
    max-width: 312px;
    margin: 10px auto 0;
  }
  .plcLandList__item {
    width: 137px;
  }
  .plcForm {
    margin-top: 50px;
    padding: 45px 15px 45px;
  }
  .plcFormBlock__input {
    width: 100%;
  }
  .plcFormBlock__select {
    width: 100%;
  }
  .plcFormBlock__textarea {
    width: 100%;
  }
  .plcFormBlock {
    padding-left: 0;
  }
  .plcFormBlock__item.-flex {
    display: block;
  }
  .plcFormBlock__item dt {
    padding-left: 70px;
  }
  .plcFormBlock__item.-flex dt {
    width: 100%;
  }
  .plcFormBlock__item dd,
  .plcFormBlock__item.-flex dd {
    margin-top: 10px;
  }
  .plcFormBlock__item.-flex dd {
    padding-left: 70px;
  }
  .plcSend {
    padding: 50px 15px 0;
  }
  .plcPrivacy {
    margin: 70px 15px 0;
  }
  .plcPrivacy__block {
    height: 155px;
    word-break: break-all;
  }
}