@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
:root {
  font-size: 16px;
}

header {
  background-color:#fff;
  width:100%;
  position:fixed;
  top:0;
  z-index:99;
}

.breadcrumbs__wrapper {
  margin: 10px;
  padding: 0;
}
@media (max-width: 768px) {
  .breadcrumbs__wrapper {
    margin: 8px 18px 0 18px;
    line-height: 32px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    word-break: keep-all;
  }
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .breadcrumbs__list {
    margin: 0;
    padding: 0;
    font-size: 0.8rem;
    flex-wrap: nowrap;
  }
}
.breadcrumbs__item:not(:last-of-type)::after {
  content: ">";
  margin: 0 0.6rem;
  color: #8f8f8f;
  font-family: "Courier New", Courier, monospace;
}
.breadcrumbs__link {
  color: #8f8f8f;
  text-decoration: none;
}
.breadcrumbs__link:hover {
  text-decoration: underline;
}

.content-heading__wrapper {
  display: block;
  margin: 0 auto;
  padding: 18px 0 18px 0;
  text-align: center;
}
@media (max-width: 768px) {
  .content-heading__wrapper {
    padding: 36px 0 36px 0;
  }
}
.content-heading__lead {
  margin: 0;
  padding: 0;
  color: #39a79c;
  font-size: 1.2rem;
  font-weight: 400;
  font-family: "Istok Web", sans-serif;
}
@media (max-width: 768px) {
  .content-heading__lead {
    font-size: 1rem;
  }
}
.content-heading__title {
  margin: 0;
  padding: 0;
  font-size: 2.2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .content-heading__title {
    font-size: 1.8rem;
  }
}

.search-property-tab__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 30px 40px 30px 40px;
}
@media (max-width: 768px) {
  .search-property-tab__wrapper {
    padding: 0;
  }
}
.search-property-tab__label {
  color: #8f8f8f;
  order: -1;
  background: #efefef;
  border-radius: 40px;
  width: 50%;
  line-height: 50px;
  font-size: 1.2rem;
  color: #999;
  letter-spacing: 0.2rem;
  text-align: center;
  z-index: 4;
  cursor: pointer;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
@media (max-width: 768px) {
  .search-property-tab__label {
    width: 46%;
    position: relative;
    top: 30px;
    font-size: 1rem;
  }
}
.search-property-tab__content {
  width: 100%;
  height: 0;
  overflow: hidden;
  opacity: 0;
}
.search-property-tab__switch:checked + .search-property-tab__label {
  background: #0d2725;
  border-radius: 40px;
  color: #fff;
  font-weight: 500;
  cursor: default;
}
.search-property-tab__switch:checked + .search-property-tab__label + .search-property-tab__content {
  height: auto;
  overflow: auto;
  opacity: 1;
  transition: 0.5s opacity;
}
.search-property-tab__switch {
  display: none;
}
.search-property-tab__mask {
  position: absolute;
  top: 30px;
  left: 60px;
  width: 80%;
  height: 50px;
  background-color: #efefef;
  z-index: 3;
}
@media (max-width: 768px) {
  .search-property-tab__mask {
    left: 70px;
    width: 64%;
  }
}

.search-property__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.search-property__wrapper::after {
  content: "";
  display: block;
  width: calc(33.3333333333% - 12px);
}
@media (max-width: 768px) {
  .search-property__wrapper {
    flex-direction: column;
    margin-top: 80px;
  }
}
.search-property__item {
  width: calc(33.3333333333% - 12px);
}
@media (max-width: 1000px) {
  .search-property__item {
    width: calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .search-property__item {
    width: 100%;
  }
}
.search-property__checkbox-label {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 10px 14px 10px 14px;
  background-color: #2aab9f;
  color: #fff;
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.search-property__checkbox-label--small {
  position: relative;
  bottom: -3px;
  font-size: 0.8rem;
  font-family: "Inter", sans-serif;
}
.search-property__checkbox-label--disabled {
  background-color: #b1b1b1;
  color: #fff;
  cursor: default;
}
@media (max-width: 768px) {
  .search-property__checkbox-label {
    padding: 10px 18px 10px 18px;
  }
}
.search-property__checkbox {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  background-color: #f5f5f5;
  border: 2px solid #d3d3d3;
  border-radius: 4px;
  margin-right: 10px;
}
.search-property__checkbox:checked {
  background-color: #ffaa32;
  border: none;
}
.search-property__checkbox:checked::before {
  content: "";
  display: block;
  position: relative;
  top: 1px;
  left: 5px;
  width: 8px;
  height: 14px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}
.search-property__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 18px 0 18px 0;
  padding: 0;
}
.search-property__checkbox-list-label {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 4px 14px 4px 14px;
  color: #333;
  font-size: 1rem;
  letter-spacing: 0.2rem;
  font-weight: 500;
  cursor: pointer;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
@media (max-width: 768px) {
  .search-property__checkbox-list-label {
    padding: 4px 18px 4px 18px;
  }
}

.search-panel__wrapper {
  margin: 0;
  padding: 0 40px 30px 40px;
}
@media (max-width: 500px) {
  .search-panel__wrapper {
    padding: 0 12px 30px 12px;
  }
}
.search-panel__heading {
  margin: 0;
  padding: 0;
  font-size: 1.5rem;
}
@media (max-width: 768px) {
  .search-panel__heading {
    margin-bottom: 20px;
    font-size: 1.3rem;
    text-align: center;
  }
}
.search-panel__content {
  margin: 14px 3px 14px 3px;
  padding: 30px 18px 30px 30px;
  border: 1px solid #b1b1b1;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .search-panel__content {
    padding: 20px 15px 20px 20px;
    flex-direction: column;
  }
}

.search-panel-container__wrapper {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .search-panel-container__wrapper {
    flex-direction: column;
    gap: 16px;
  }
}
.search-panel-container__line-full {
  width: 100%;
}
.search-panel-container__item2 {
  width: 50%;
}
@media (max-width: 768px) {
  .search-panel-container__item2 {
    width: 100%;
  }
}
.search-panel-container__item4 {
  width: calc(25% - 4px);
}
@media (max-width: 1000px) {
  .search-panel-container__item4 {
    width: calc(33.3333333333% - 3px);
  }
}
@media (max-width: 768px) {
  .search-panel-container__item4 {
    width: calc(50% - 2px);
  }
}
.search-panel-container__heading {
  margin: 0;
  padding-top: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.2rem;
}
.search-panel-container__range {
  width: 85%;
  margin: 10px 0 10px 0;
  cursor: pointer;
}
.search-panel-container__range-slider {
  width: 90%;
  margin: 30px 0 20px 0;
}
@media (max-width: 768px) {
  .search-panel-container__range-slider {
    width: 98%;
  }
}
.search-panel-container__range-text {
  display: flex;
  justify-content: flex-start;
  margin-top: 10px;
  margin-bottom: 10px;
}
.search-panel-container__range-text-items {
  display: flex;
  align-items: center;
}
.search-panel-container__text {
  width: 72%;
  height: 32px;
  padding: 8px 12px 8px 12px;
  border-radius: 8px;
  border: 1px solid #d3d3d3;
  font-size: 1.1rem;
  text-align: right;
  color: #333;
  font-family: "Inter", sans-serif;
}
@media (max-width: 768px) {
  .search-panel-container__text {
    font-size: 0.9rem;
  }
}
.search-panel-container__text-unit {
  margin-left: 5px;
  margin-right: 2px;
  font-size: 0.8rem;
  color: #002160;
  letter-spacing: 0.2rem;
}
.search-panel-container__checkbox-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4px;
  width: 100%;
  margin-top: 6px;
}
.search-panel-container__checkbox-list::after {
  content: "";
  display: block;
  width: calc(25% - 4px);
}
.search-panel-container__checkbox-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96%;
  height: 42px;
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  border: 1px solid #b1b1b1;
  border-radius: 30px;
  cursor: pointer;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
@media (max-width: 500px) {
  .search-panel-container__checkbox-label {
    font-size: 0.8rem;
  }
}
.search-panel-container__checkbox {
  display: none;
  cursor: pointer;
}
.search-panel-container__checkbox:checked + .search-panel-container__checkbox-label {
  background-color: #2aab9f;
  border: 1px solid #2aab9f;
  color: #fff;
  font-weight: 600;
}
.search-panel-container__radio-list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 4px;
  width: 100%;
  margin-top: 6px;
  margin-bottom: 20px;
}
.search-panel-container__radio-list::after {
  content: "";
  display: block;
  width: calc(25% - 4px);
}
.search-panel-container__radio-label {
  display: flex;
  text-align: center;
  gap: 2px;
  margin-top: 8px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
  cursor: pointer;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
}
.search-panel-container__radio {
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 22px;
  min-width: 22px;
  height: 22px;
  min-height: 22px;
  background-color: #f5f5f5;
  border: 2px solid #d3d3d3;
  border-radius: 4px;
  margin-right: 10px;
  cursor: pointer;
}
.search-panel-container__radio:checked {
  background-color: #ffaa32;
  border: none;
}
.search-panel-container__radio:checked::before {
  content: "";
  display: block;
  position: relative;
  top: 1px;
  left: 5px;
  width: 8px;
  height: 14px;
  border: solid #fff;
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.inquiry-information__wrapper {
  position: relative;
  width: 100vw;
  height: 400px;
  margin: 0 calc(50% - 50vw);
  background-image: url(../images/inquiry-image.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .inquiry-information__wrapper {
    height: 320px;
  }
}
.inquiry-information__overlay {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(53, 67, 65, 0.7);
  width: 100%;
  height: 100%;
  z-index: 12;
}
.inquiry-information__heading {
  position: relative;
  margin: 0 auto;
  padding-top: 72px;
  text-align: center;
  color: #fff;
  /* font-size: 2.4rem; */
  font-size:28px;
  line-height: 130%;
  z-index: 13;
}
@media (max-width: 768px) {
  .inquiry-information__heading {
    padding-top: 40px;
    font-size: 1.4rem;
  }
}
.inquiry-information__lead {
  position: relative;
  margin: 0 auto;
  padding-top: 24px;
  text-align: center;
  color: #fff;
  /* font-size: 1.1rem; */
  font-size:16px;
  font-weight: 300;
  z-index: 13;
}
@media (max-width: 768px) {
  .inquiry-information__lead {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 1rem;
  }
}
.inquiry-information__button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 280px; */
  width:380px;
  height: 60px;
  background-color: #2aab9f;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  /* font-size: 1.1rem; */
  font-size:20px;
  font-weight: 600;
  z-index: 13;
  margin: 46px auto;
}
.inquiry-information__button:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .inquiry-information__button {
    margin: 28px auto;
  }
}

.inquiry-tel__wrapper {
  width: 100vw;
  height: 100px;
  margin: 0 calc(50% - 50vw);
  background-color: #0d2725;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inquiry-tel__lead {
  color: #fff;
  font-family: "DM Sans", sans-serif;
  margin-bottom:0;
  font-weight:500;
}
@media (max-width: 768px) {
  .inquiry-tel__lead {
    font-size: 0.8rem;
  }
}
.inquiry-tel__tel {
  margin-left: 16px;
  margin-right: 16px;
  /* font-size: 2rem; */
  font-size:28px;
  display:inline-flex;
  align-items:baseline;
  
}
@media (max-width: 768px) {
  .inquiry-tel__tel {
    display: block;
    font-size: 1.8rem;
  }
}
.inquiry-tel__icon {
  display: inline-block;
  /*width: 7%;*/
  width:40px;
  position: relative;
  /*top: 4px;*/
  top:8px;
  margin-right:10px;
}
@media (max-width: 768px) {
  .inquiry-tel__icon {
    width: 17%;
  }
}
@media (max-width: 768px) {
  .inquiry-tel__reception-text {
    display: block;
    text-align: center;
  }
}

.footer-link__wrapper {
  margin: 0 auto;
  max-width: 1300px;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .footer-link__wrapper {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 0 50px 0;
  }
}

.footer-link-company__wrapper {
  flex: 2;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .footer-link-company__wrapper {
    margin: 30px auto;
    padding-bottom: 30px;
    flex: 0 0 100%;
  }
}
.footer-link-company__logo {
  display: inline-block;
}
.footer-link-company__link {
  position: relative;
  top: 14px;
  left: 30px;
}
.footer-link-company__link:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer-link-company__link {
    left: 0;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
}
.footer-link-company__text {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif, 'Noto Sans JP', sans-serif;
  color: #606060;
  font-weight: 300;
  opacity: 0.6;
  position: relative;
  top: 30px;
  left: 30px;
}
@media (max-width: 768px) {
  .footer-link-company__text {
    left: 0;
    text-align: center;
  }
}

.footer-link-content__wrapper {
  flex: 1;
  margin: 0;
}
@media (max-width: 768px) {
  .footer-link-content__wrapper {
    flex: 0 0 calc(25% - 20px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
@media (max-width: 500px) {
  .footer-link-content__wrapper {
    flex: 0 0 calc(50% - 40px);
    margin-left: 10px;
    margin-right: 10px;
  }
}
.footer-link-content__heading {
  margin-top: 16px;
  padding-bottom: 12px;
  font-size: 1.1rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer-link-content__heading {
    font-size: 1rem;
  }
}
.footer-link-content__item {
  margin: 0;
  padding: 4px 0;
}
.footer-link-content__link {
  color: #272d2c;
  opacity: 0.6;
  font-size: 0.9rem;
  text-decoration: none;
  font-family: "Open Sans", sans-serif, 'Noto Sans JP', sans-serif;
}
.footer-link-content__link:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer-link-content__link {
    font-size: 0.8rem;
  }
}

.footer-copyright__wrapper {
  margin: 0 auto;
  text-align: center;
  padding-bottom: 106px;
}
@media (max-width: 768px) {
  .footer-copyright__wrapper {
    padding-bottom: 86px;
  }
}
.footer-copyright__text {
  margin: 0;
  padding: 0;
  color: #606060;
  opacity: 0.6;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif, 'Noto Sans JP', sans-serif;
}
@media (max-width: 768px) {
  .footer-copyright__text {
    font-size: 0.8rem;
  }
}

/** noUiSlider オーバーライド */
.noUi-horizontal {
  height: 8px;
}

.noUi-target {
  background: #d3d3d3;
  border-radius: 20px;
  border: none;
  box-shadow: none;
}

.noUi-connect {
  background: #2aab9f;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 30px;
  background: #FFF;
  cursor: pointer;
  box-shadow: 0 3px 3px #d3d3d3;
}

.noUi-handle:before,
.noUi-handle:after {
  display: none;
}

.noUi-horizontal .noUi-handle {
  width: 22px;
  height: 22px;
  right: -10px;
  top: -7px;
}

body {
  margin: 0;
  padding: 105px 0 0;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  position: relative;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.header__wrapper {
  margin: 0 auto;
  padding: 0;
  max-width: 1300px;
  height: 100px;
  position: relative;
  top: 0;
  overflow-x: hidden;
  overflow-y: hidden;
  z-index: 11;
}
@media (max-width: 768px) {
  body {
    padding-top:65px;
  }
  .header__wrapper {
    height: 70px;
  }
}
@media (max-width: 500px) {
  .header__wrapper {
    height: 60px;
  }
}
.header__border {
  display: block;
  z-index: 8;
  height: 5px;
  background: linear-gradient(rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.001)) repeat-x 0 0;
  border-top: 1px solid #ccc;
}

.header-logo__wrapper {
  display: block;
  position: relative;
  top: 20px;
  left: 20px;
}
@media (max-width: 768px) {
  .header-logo__wrapper {
    top: 8px;
    left: 8px;
  }
}
.header-logo__heading {
  margin: 0;
  padding: 0;
  font-size: 0.7rem;
  font-weight: 500;
  color: #333;
}
@media (max-width: 768px) {
  .header-logo__heading {
    font-size: 0.6rem;
  }
}
@media (max-width: 500px) {
  .header-logo__heading {
    font-size: 0.5rem;
  }
}
.header-logo__link {
  display: block;
  margin-top: 12px;
  width: 170px;
}
.header-logo__link:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .header-logo__link {
    margin-top: 8px;
    width: 130px;
  }
}
@media (max-width: 500px) {
  .header-logo__link {
    margin-top: 6px;
    width: 120px;
  }
}
.header-logo__img {
  width: 170px;
  height: 35px;
}
@media (max-width: 768px) {
  .header-logo__img {
    width: 130px;
    height: 27px;
  }
}
@media (max-width: 500px) {
  .header-logo__img {
    width: 120px;
    height: 25px;
  }
}

.header-sub-nav__wrapper {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 26px;
}
@media (max-width: 768px) {
  .header-sub-nav__wrapper {
    display: none;
  }
}
.header-sub-nav__list {
  list-style: none;
  margin: 10px 4px 20px 0;
}
.header-sub-nav__item {
  display: inline;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.header-sub-nav__link--leave {
  /* background-image: url(../images/leave.svg);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left center; */
  margin-right: 12px;
  /* padding-left: 16px; */
  padding-left: 20px;
  text-decoration: none;
  color: #333;
  position:relative;
}
.header-sub-nav__link--leave::before {
  content:'\f086';
  font-family:'Font Awesome 6 Free';
  position:absolute;
  top:calc(50% - 6px);
  left:0;
  color:#2aab9f;
}
.header-sub-nav__link--leave:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.header-sub-nav__link--question {
  background-image: url(../images/question.svg);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left center;
  margin-right: 12px;
  padding-left: 16px;
  text-decoration: none;
  color: #333;
}
.header-sub-nav__link--question:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.header-sub-nav__link--favorite {
  background-image: url(../images/favorite.svg);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left center;
  margin-right: 12px;
  padding-left: 16px;
  text-decoration: none;
  color: #333;
}
.header-sub-nav__link--favorite:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.header-sub-nav__link--user {
  background-image: url(../images/user.svg);
  background-size: 14px 14px;
  background-repeat: no-repeat;
  background-position: left center;
  margin-right: 12px;
  padding-left: 16px;
  text-decoration: none;
  color: #333;
}
.header-sub-nav__link--user:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.header-nav__wrapper {
  display: inline-block;
  position: relative;
  top: -10px;
  left: 240px;
}
@media (max-width: 768px) {
  .header-nav__wrapper {
    display: none;
  }
}
.header-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-nav__item {
  display: inline-block;
  margin: 0 0 0 20px;
}
.header-nav__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
  display:flex;
}
.header-nav__link:hover {
  opacity: 0.8;
  text-decoration: underline;
}
.header-nav__img {
  display: inline-block;
  position: relative;
  /* top: 2px; */
  left: 2px;
  transition: transform 0.3s;
}
.header-nav__img.is-rotate {
  transform: rotate(-180deg);
}
@media (max-width: 1260px) {
  .header-nav--xl-only {
    display: none;
  }
}
.header-nav__item_overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 158px;
  height: 30px;
  z-index: 22;
}

.header-button__wrapper {
  display: inline-block;
  position: absolute;
  top: 42px;
  right: 30px;
}
@media (max-width: 768px) {
  .header-button__wrapper {
    display: none;
  }
}
.header-button__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-button__item {
  display: inline-block;
  margin: 0 0 0 20px;
}
.header-button__link--sign-up {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 45px;
  background-color: #ffaa32;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}
.header-button__link--sign-up:hover {
  opacity: 0.8;
}
@media (max-width: 1000px) {
  .header-button__link--sign-up {
    width: 160px;
  }
}
@media (max-width: 500px) {
  .header-button__link--sign-up {
    width: 128px;
    height: 36px;
  }
}
.header-button__link--inquiry {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 45px;
  background-color: #2aab9f;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}
.header-button__link--inquiry:hover {
  opacity: 0.8;
}
@media (max-width: 1000px) {
  .header-button__link--inquiry {
    width: 160px;
  }
}
@media (max-width: 500px) {
  .header-button__link--inquiry {
    width: 128px;
    height: 36px;
  }
}

.header-sp-button__wrapper {
  display: none;
}
@media (max-width: 768px) {
  .header-sp-button__wrapper {
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.header-sp-button-favorite__link {
  background-image: url(../images/favorite-sp.svg);
  background-repeat: no-repeat;
  background-position: 20px 14px;
  background-size: 30px;
  width: 70px;
  height: 70px;
  background-color: #ff6363;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: #f9f9f9;
  text-decoration: none;
  font-size: 0.6rem;
  font-weight: 500;
  box-sizing: border-box;
  padding-bottom: 6px;
  cursor: pointer;
}
.header-sp-button-favorite__link:hover {
  opacity: 0.8;
}
@media (max-width: 500px) {
  .header-sp-button-favorite__link {
    width: 60px;
    height: 60px;
    font-size: 0.5rem;
    padding-bottom: 4px;
  }
}
@media (max-width: 500px) {
  .header-sp-button-favorite__link {
    background-position: 18px 12px;
    background-size: 24px;
  }
}

.header-sp-button-inquiry__link {
  background-image: url(../images/inquiry.svg);
  background-repeat: no-repeat;
  background-position: 12px 12px;
  background-size: 46px;
  width: 70px;
  height: 70px;
  background-color: #2aab9f;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: #f9f9f9;
  text-decoration: none;
  font-size: 0.6rem;
  font-weight: 500;
  box-sizing: border-box;
  padding-bottom: 6px;
  cursor: pointer;
}
.header-sp-button-inquiry__link:hover {
  opacity: 0.8;
}
@media (max-width: 500px) {
  .header-sp-button-inquiry__link {
    width: 60px;
    height: 60px;
    font-size: 0.5rem;
    padding-bottom: 4px;
  }
}
@media (max-width: 500px) {
  .header-sp-button-inquiry__link {
    background-position: 11px 10px;
    background-size: 38px;
  }
}

.header-sp-button-menu__link {
  width: 70px;
  height: 70px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  color: #002160;
  text-decoration: none;
  font-size: 0.6rem;
  font-weight: 500;
  box-sizing: border-box;
  padding-bottom: 6px;
  cursor: pointer;
}
.header-sp-button-menu__link:hover {
  opacity: 0.8;
}
@media (max-width: 500px) {
  .header-sp-button-menu__link {
    width: 60px;
    height: 60px;
    font-size: 0.5rem;
    padding-bottom: 4px;
  }
}
.header-sp-button-menu__text {
  margin: 0;
  padding: 0;
}
.header-sp-button-menu__dot-line {
  display: block;
  margin: 0;
  border: none;
  background-image: linear-gradient(-90deg, #2aab9f 10%, transparent 10%), linear-gradient(-90deg, #2aab9f 60%, transparent 20%);
  background-size: 14px;
  width: 44px;
  height: 10px;
  position: absolute;
  top: 10px;
  right: 15px;
  transform-origin: 80% 80%;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .header-sp-button-menu__dot-line {
    background-size: 12px;
    width: 40px;
    height: 8px;
    top: 8px;
    right: 10px;
  }
}
.header-sp-button-menu__dot-line:nth-of-type(2) {
  top: 24px;
}
@media (max-width: 500px) {
  .header-sp-button-menu__dot-line:nth-of-type(2) {
    top: 21px;
  }
}
.header-sp-button-menu__dot-line:nth-of-type(3) {
  top: 38px;
}
@media (max-width: 500px) {
  .header-sp-button-menu__dot-line:nth-of-type(3) {
    top: 34px;
  }
}
.header-sp-button-menu--close .header-sp-button-menu__dot-line {
  display: block;
  margin: 0;
  border: none;
  width: 46px;
  height: 6px;
  background: #2aab9f;
  position: absolute;
  transition: 0.3s;
}
@media (max-width: 500px) {
  .header-sp-button-menu--close .header-sp-button-menu__dot-line {
    width: 40px;
    height: 5px;
    background-size: 16px 16px;
  }
}
.header-sp-button-menu--close .header-sp-button-menu__dot-line:nth-last-of-type(1) {
  top: 36px;
  right: 18px;
  transform: rotate(45deg);
}
@media (max-width: 500px) {
  .header-sp-button-menu--close .header-sp-button-menu__dot-line:nth-last-of-type(1) {
    top: 30px;
    right: 15px;
  }
}
.header-sp-button-menu--close .header-sp-button-menu__dot-line:nth-last-of-type(2) {
  opacity: 0;
}
.header-sp-button-menu--close .header-sp-button-menu__dot-line:nth-last-of-type(3) {
  top: 16px;
  right: 16px;
  transform: rotate(-45deg);
}
@media (max-width: 500px) {
  .header-sp-button-menu--close .header-sp-button-menu__dot-line:nth-last-of-type(3) {
    top: 13px;
    right: 13px;
  }
}

.mega-menu__wrapper {
  position: absolute;
  top: 100px;
  left: 0;
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  z-index: 9;
  width: 100%;
  height: 320px;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow-x: hidden;
  opacity: 0;
  will-change: opacity, visibility, transform;
  visibility: hidden;
  transform: translateY(-30px);
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out, transform 0.3s ease-out;
}
@media (max-width: 1260px) {
  .mega-menu__wrapper {
    height: 360px;
  }
}
@media (max-width: 1000px) {
  .mega-menu__wrapper {
    height: 390px;
  }
}
.mega-menu__wrapper.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu__container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  height: 100%;
  min-width: 100%;
  gap: 10px;
}
@media (max-width: 1260px) {
  .mega-menu__container {
    height: 80%;
  }
}
@media (max-width: 1000px) {
  .mega-menu__container {
    height: 90%;
  }
}
.mega-menu__label {
  width: 30%;
  min-width: 200px;
  font-size: 1.1rem;
  white-space: nowrap;
  order: -1;
  display: flex;
  justify-content: flex-end;
  margin-top: 5px;
  margin-bottom: 5px;
  position: relative;
  top: 30px;
  font-weight: 600;
  transition:width 0.3s;
}
@media (max-width: 1200px) {
  .mega-menu__label {
    width: 22%;
  }
}
.mega-menu__label-right {
  width: 160px;
  cursor: pointer;
}
.mega-menu__content {
  display: none;
}
.mega-menu__radio:checked + .mega-menu__label {
  color: #2aab9f;
}
.mega-menu__radio:checked + .mega-menu__label + .mega-menu__content {
  flex: 1 1 100%;
  display: block;
  width: 70%;
  padding: 10px 20px 10px 20px;
  border-left: 2px solid #ccc;
  animation: accordion-fade-in 0.5s ease;
}
@keyframes accordion-fade-in {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.mega-menu__radio {
  display: none;
}

.mega-menu-area__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  position:relative;
}
.mega-menu-area__tokyo {
  flex: 2;
}
.mega-menu-area__kanagawa {
  flex: 40px;
}
.mega-menu-area__heading {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  padding: 0 0 0 20px;
}
.mega-menu-area__list {
  list-style: none;
  margin-top: 5px;
  margin-bottom: -24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 230px;
}
@media (max-width: 1000px) {
  .mega-menu-area__list {
    height: 260px;
  }
}
.mega-menu-area__item {
  margin: 10px 0 10px 20px;
  padding-left: 24px;
  line-height: 1.2rem;
  background: url(../images/line-green.svg) left 0 top 9px no-repeat;
  min-width: 120px;
}
.mega-menu-area__item.disp1400,
.mega-menu-area__item.disp1200 {
  display:block;
}
@media (max-width: 1200px) {
  .mega-menu-area__item.disp1400 {
    display:none;
  }
}
@media (max-width: 1000px) {
  .mega-menu-area__item.disp1200 {
    display:none;
  }
}

.mega-menu-area__link {
  text-decoration: none;
  color: #333;
  font-size: 0.9rem;
  font-weight: 400;
}
.mega-menu-area__link:hover {
  text-decoration: underline;
}

.mega-menu-other-nav__wrapper {
  display: none;
}
@media (max-width: 1260px) {
  .mega-menu-other-nav__wrapper {
    width: 100%;
    display: inline-block;
    text-align: right;
    position: relative;
    top: 40px;
    right: 40px;
  }
}
@media (max-width: 1260px) and (max-width: 1000px) {
  .mega-menu-other-nav__wrapper {
    top: 20px;
  }
}
.mega-menu-other-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-menu-other-nav__item {
  display: inline-block;
  margin: 0 0 0 20px;
}
.mega-menu-other-nav__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: #333;
  text-decoration: none;
}
.mega-menu-other-nav__link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.morekdwrlink {
  position:absolute;
  right:0;
  bottom:-20px;
}

.drawer-menu__wrapper {
  width: 0;
  height: calc(100vh - 70px);
  background-color: #fff;
  opacity: 0;
  position: absolute;
  top: 70px;
  bottom: 76px;
  right: 0;
  z-index: 99;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out, width 0.3s ease-out;
  transform: translateX(100%);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior-y: none;
}
@media (max-width: 500px) {
  .drawer-menu__wrapper {
    height: calc(100vh - 60px);
    top: 60px;
    bottom: 70px;
  }
}
.drawer-menu--open {
  width: 90%;
  opacity: 0.94;
  transform: translateX(0);
}
.drawer-menu__list {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 20px;
  margin: 30px 0 30px 0;
  padding-bottom: 120px;
}
@media (max-width: 500px) {
  .drawer-menu__list {
    padding-bottom: 100px;
  }
}
.drawer-menu__item {
  width: 100%;
  margin: 0 auto;
}
.drawer-menu__item--center {
  text-align: center;
}

.drawer-menu-button__block {
  display: block;
  margin: 0 auto;
}
.drawer-menu-button__link--sign-up {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 48px;
  background-color: #ffaa32;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}
.drawer-menu-button__link--sign-up:hover {
  opacity: 0.8;
}
.drawer-menu-button__link--inquiry {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 48px;
  background-color: #2aab9f;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 600;
}
.drawer-menu-button__link--inquiry:hover {
  opacity: 0.8;
}
.drawer-menu-button__link-text {
  text-decoration: none;
  font-size: 0.8rem;
  color: #333;
}
.drawer-menu-button__link-text:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.drawer-menu-sub-nav__list {
  list-style: none;
  margin-top: 14px;
  padding: 0;
}
.drawer-menu-sub-nav__item {
  margin: 5px 0 0 54px;
  padding-left: 24px;
  line-height: 2rem;
  background: url(../images/ellipse.svg) left 0 top 12px no-repeat;
  font-size: 1.1rem;
  font-weight: 600;
}
.drawer-menu-sub-nav__link {
  text-decoration: none;
  color: #333;
}
.drawer-menu-sub-nav__link:hover {
  text-decoration: underline;
}

.drawer-menu-accordion__details[open] .icon {
  background-image: url(../images/line.svg);
  transform: rotate(180deg);
}
.drawer-menu-accordion__summary {
  display: block;
  margin: 0 40px 0 40px;
  padding: 4px;
  border-bottom: 1px solid #ccc;
  font-size: 1.1rem;
  font-weight: 600;
}
.drawer-menu-accordion__summary::-webkit-details-marker {
  display: none;
}
.drawer-menu-accordion__summary .icon {
  width: 14px;
  height: 18px;
  background-image: url(../images/plus.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: center;
  margin-right: 2px;
  transition: transform 0.3s ease-out;
}
.drawer-menu-accordion__summary--inner {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.drawer-menu-accordion__content {
  animation: accordion-fade-in 0.5s ease;
}
@keyframes accordion-fade-in {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.drawer-menu-accordion__heading {
  margin: 20px 0 0 44px;
  font-size: 1rem;
  font-weight: 600;
}
.drawer-menu-accordion__list {
  list-style: none;
  margin-top: 24px;
  margin-bottom: 24px;
  padding: 0;
}
.drawer-menu-accordion__item {
  margin: 14px 0 14px 46px;
  padding-left: 24px;
  line-height: 1.2rem;
  background: url(../images/line-green.svg) left 0 top 9px no-repeat;
}
.drawer-menu-accordion__link {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
}
.drawer-menu-accordion__link:hover {
  text-decoration: underline;
}

.drawer-menu-sub-button__wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 30px;
  gap: 16px;
}
.drawer-menu-sub-button__button {
  flex: 0 2 calc(50% - 50px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 40px;
  background-color: #fff9f1;
  border-radius: 6px;
  color: #333;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.8rem;
}
.drawer-menu-sub-button__button:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  .drawer-menu-sub-button__button {
    flex: 0 2 calc(50% - 20px);
  }
}

.footer__border {
  display: block;
  z-index: 30;
  position: fixed;
  height: 5px;
  bottom: 86px;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.001), rgba(0, 0, 0, 0.12)) repeat-x 0 0;
  border-bottom: 1px solid #ccc;
}
@media (max-width: 768px) {
  .footer__border {
    bottom: 76px;
  }
}
@media (max-width: 500px) {
  .footer__border {
    bottom: 70px;
  }
}
.footer__wrapper {
  z-index: 10;
  height: 86px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #fff9f1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .footer__wrapper {
    height: 76px;
    gap: 10px;
  }
}
@media (max-width: 500px) {
  .footer__wrapper {
    height: 70px;
    gap: 10px;
  }
}
.footer__text {
  margin: 0;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  font-family: "Inter", sans-serif;
  display:flex;
  align-items:baseline;
}
@media (max-width: 768px) {
  .footer__text {
    padding-left: 24px;
    padding-right: 24px;
    font-size: 0.8rem;
  }
}

.footer__text br.only-sp {
  display:none;
}
@media (max-width: 550px) {
  .footer__text {
    align-items:end;
  }
  .footer__text br.only-sp {
    display:block;
  }
}
@media (max-width: 500px) {
  .footer__text {
    padding-left: 16px;
    /* padding-right: 16px; */
    padding-right: 8px;
    font-size: 0.7rem;
  }
}
.footer__text--border {
  background: linear-gradient(70deg, transparent 0%, transparent 50%, #ffaa32 50%, #ffaa32 50.8%, transparent 50.8%, transparent 100%), linear-gradient(110deg, transparent 0%, transparent 50%, #ffaa32 50%, #ffaa32 50.8%, transparent 50.8%, transparent 100%);
  background-repeat: no-repeat, no-repeat;
  background-position: -174px 0px, 168px 0px;
}
@media (max-width: 768px) {
  .footer__text--border {
    background-position: -126px 0px, 120px 0px;
  }
}
@media (max-width: 500px) {
  .footer__text--border {
    background-position: -106px 0px, 100px 0px;
  }
}
.footer__text--accent {
  color: #ffaa32;
}
.footer__text--accent-large {
  margin-left: 4px;
  margin-right: 4px;
  color: #ffaa32;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .footer__text--accent-large {
    font-size: 1.7rem;
  }
}
.footer__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 45px;
  background-color: #ffaa32;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  cursor: pointer;
}
.footer__link:hover {
  opacity: 0.8;
}
@media (max-width: 1000px) {
  .footer__link {
    width: 160px;
  }
}
@media (max-width: 500px) {
  .footer__link {
    width: 128px;
    height: 36px;
  }
}
.footer__search-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .footer__search-wrapper {
    margin-right: 2px;
  }
}
@media (max-width: 500px) {
  .footer__search-wrapper {
    margin-right: 10px;
  }
}
.footer__reset-condition {
  font-size: 0.8rem;
  color: #333;
  margin: 0 auto;
  padding-bottom: 5px;
  text-decoration: underline;
}
.footer__reset-condition:hover {
  text-decoration: none;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .footer__reset-condition {
    font-size: 0.6rem;
  }
}

.overlay {
  position: absolute;
  /* top: 70px; */
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 98;
  transition: opacity 0.3s ease-out;
  opacity: 1;
}
@media (max-width: 500px) {
  .overlay {
    top: 60px;
  }
}

.is-hidden {
  opacity: 0;
  transition: opacity 0.3s ease-out;
}

.is-display-none {
  display: none;
}

.is-overflow-hidden {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.main__wrapper {
  margin: 0 auto;
  max-width: 1300px;
  padding-left: 50px;
  padding-right: 50px;
  padding-bottom: 40px;
}
@media (max-width: 1000px) {
  .main__wrapper {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  .main__wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
  }
}/*# sourceMappingURL=style.css.map */