@charset "utf-8";

/*-------------------------------------
変数
-------------------------------------*/

:root {
  --NotoSans: "Noto Sans JP", sans-serif;
  --Roboto: "Roboto", sans-serif;
  --Mplus1p: "M PLUS 1p", sans-serif;
  --Mplus1: "M PLUS 1", sans-serif;
  --Sen: "Sen", sans-serif;
  --Inter: "Inter", sans-serif;
  --DMSans: "DM Sans", sans-serif;
  --ZenKaku: "Zen Kaku Gothic New", sans-serif;
}

:root {
  --BaseColor: #333;
  --BlackColor: #2F2F2F;
  --OrangeColor: #FD5800;
  --GreenBgColor: #FFE6DA;
}



/*-------------------------------------
共通
-------------------------------------*/

/********************/
/* タグ */
/********************/

.body {
  font-family: var(--NotoSans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--BaseColor);
}
.body.no-scroll {
  overflow: hidden;
}

.main {
  margin-top: 108px;
}
.top-main {
  overflow: hidden;
}
@media screen and (max-width: 767.98px) {
  .main {
    margin-top: 80px;
  }
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

figure {
  margin: 0;
}



/********************/
/* PC版とsp版で表示非表示の切り替え */
/********************/

.sp-only {
  display: none;
}

@media screen and (max-width: 767.98px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}



/********************/
/* スマホはタップで通話できるが、PCではクリックさせない */
/********************/

@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}



/********************/
/* ボタン */
/********************/

a {
  display: inline-block;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

button {
  display: inline-block;
  transition: 0.3s;
}
@media (hover: hover) {
  button:hover {
    opacity: 0.7;
  }
}



/********************/
/* インナー */
/********************/

.common-inner {
  margin-inline: auto;
  padding-inline: 20px;
}





/*-------------------------------------
ヘッダー
-------------------------------------*/

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 108px;
  background-color: #232537;
  z-index: 999;
}

.header__inner {
  width: 100%;
  height: 100%;
  padding-inline: min(calc(100vw / 1440 * 37), 37px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 14px;
}

.header__logo {
  width: min(calc(100vw / 1440 * 241), 241px);
  position: relative;
  z-index: 9999;
}

.header__logo-link {
  position: relative;
  width: 100%;
  height: 100%;
}

.header__menu {
  display: flex;
}

.header__nav {
  padding-right: min(calc(100vw / 1440 * 40), 40px);
}

.header__nav-list {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px min(calc(100vw / 1440 * 40), 40px);
}

.header__nav-item {
  position: relative;
}

.header__nav-link {
  display: inline-block;
  font-size: 14px;
  line-height: calc(22 / 14);
  color: #fff;
}
.header__nav-link.header__nav-link--contact {
  border-radius: 24px;
  padding: 12px 36px;
  background-color: var(--OrangeColor);
  font-weight: 700;
  font-size: 13px;
  line-height: calc(16 / 13);
  color: #fff;
}

.hamburger {
  display: none;
}


@media screen and (max-width: 767.98px) {

  .header {
    height: 80px;
  }

  .header__inner {
    padding-left: 16px;
    padding-right: 0;
  }

  .header__logo {
    width: min(calc(100vw / 390 * 241), 241px);
  }

  .header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    padding-top: 100px;
    background-color: #222;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 999;
  }
  .header__menu.is-active {
    opacity: 1;
    visibility: visible;
  }

  .header__nav {
    width: 100%;
    margin-inline: auto;
    padding: 36px min(calc(100vw / 390 * 48), 48px) 80px;
    overflow: auto;
  }

  .header__nav-list {
    width: 100%;
    padding: 0 8px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }

  .header__nav-item {
    width: 100%;
  }
  .header__nav-item:not(:first-child) {
    margin-top: 17px;
  }
  .header__nav-item:last-child {
    margin-left: -8px;
    margin-top: 48px;
  }

  .header__nav-link {
    font-size: min(calc(100vw / 375 * 18), 18px);
    line-height: calc(22 / 18);
  }
  .header__nav-link.header__nav-link--contact {
    width: min(calc(100vw / 390 * 280), 280px);
    padding: 13px;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
  }

  .hamburger {
    display: block;
    position: fixed;
    top: 21px;
    right: 23px;
    width: 42px;
    height: 35px;
    padding: 5px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 9999;
  }

  @media (hover: hover) {
    .hamburger:hover {
      opacity: 0.7;
    }
  }

  .hamburger__line-zone {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .hamburger__line {
    display: inline-block;
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
  }
  .hamburger__line:nth-child(1) {
    top: 0;
  }
  .hamburger__line:nth-child(2) {
    top: 11px;
  }
  .hamburger__line:nth-child(3) {
    top: 23px;
  }
  .hamburger.is-active .hamburger__line:nth-child(1) {
    top: 17px;
    width: 118%;
    transform: rotate(-45deg);
  }
  .hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active .hamburger__line:nth-child(3) {
    top: 17px;
    width: 118%;
    transform: rotate(45deg);
  }

}





/*-------------------------------------
top-section-title
-------------------------------------*/

.top-section-title--white {
  color: #fff;
}

.top-section-title__ja {
  font-weight: 800;
  font-size: 96px;
  line-height: 1;
}

.top-section-title__en {
  margin-top: 28px;
  font-family: var(--Roboto);
  font-weight: 500;
  font-size: 36px;
  line-height: calc(44 / 36);
}

@media screen and (max-width: 767.98px) {
  .top-section-title__ja {
    font-size: 64px;
  }
  .top-section-title__en {
    margin-top: 21px;
  }
}





/*-------------------------------------
common-button
-------------------------------------*/

.common-button {
  display: flex;
}
.common-button--center {
  justify-content: center;
}

.common-button__link {
  border-radius: 80px;
  background-color: var(--OrangeColor);
  text-align: center;
  color: #fff;
}
.common-button__link--en {
  padding: 16px 48px;
  font-family: var(--Sen);
  font-weight: 700;
  font-size: 18px;
  line-height: calc(24 / 18);
}
.common-button__link--ja {
  border: 1px solid #fff;
  min-width: min(20.5vw, 205px);
  padding: 16px 48px;
  line-height: calc(19 / 16);
}
.common-button__link--white {
  background-color: #fff;
  color: var(--OrangeColor);
}

@media screen and (max-width: 767.98px) {
  .common-button__link--ja {
    min-width: auto;
    width: 200px;
  }
}





/*-------------------------------------
top-fv
-------------------------------------*/

.top-fv {
  padding-top: 50px;
  padding-bottom: 72px;
  background-image: url(../image/top_fv_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.top-fv__inner {
  max-width: 1280px;
  position: relative;
  z-index: 1;
}

.top-fv__title {
  font-family: var(--Mplus1);
  font-weight: 900;
  font-size: min(6.4vw, 64px);
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: #fff;
}
.top-fv__title-big {
  font-size: min(12.8vw, 128px);
  line-height: 1;
}

.top-fv__sliderZone {
  margin-top: 55px;
  position: relative;
  z-index: 1;
}

.top-fv__sliderZone .slick-slide {
  padding-inline: 19px;
}

.top-fv__sliderZone .slick-slide img {
  border-radius: 30px;
}

.top-fv__circle {
  border-radius: 50%;
  background-color: var(--OrangeColor);
}

.top-fv__circle01 {
  position: absolute;
  top: 50%;
  left: -122px;
  width: min(calc(100vw / 1440 * 121), 121px);
  height: min(calc(100vw / 1440 * 121), 121px);
  animation-name: anime-top-circle01;
  animation-delay: 9s;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes anime-top-circle01 {
  0% {
    top: 50%;
    left: -122px;
  }
  100% {
    top: 20%;
    left: 101%;
  }
}

.top-fv__circle02 {
  position: absolute;
  top: 60%;
  left: -205px;
  width: min(calc(100vw / 1440 * 204), 204px);
  height: min(calc(100vw / 1440 * 204), 204px);
  animation-name: anime-top-circle02;
  animation-delay: 4s;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes anime-top-circle02 {
  0% {
    top: 60%;
    left: -205px;
  }
  100% {
    top: 30%;
    left: 101%;
  }
}

.top-fv__circle03 {
  position: absolute;
  top: 25%;
  left: -302px;
  width: min(calc(100vw / 1440 * 302), 302px);
  height: min(calc(100vw / 1440 * 302), 302px);
  animation-name: anime-top-circle03;
  animation-delay: 0s;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes anime-top-circle03 {
  0% {
    top: 25%;
    left: -302px;
  }
  100% {
    top: 40%;
    left: 101%;
  }
}

.top-fv__circle04 {
  position: absolute;
  top: 90%;
  left: -122px;
  width: min(calc(100vw / 1440 * 121), 121px);
  height: min(calc(100vw / 1440 * 121), 121px);
  animation-name: anime-top-circle04;
  animation-delay: 10.5s;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes anime-top-circle04 {
  0% {
    top: 90%;
    left: -122px;
  }
  100% {
    top: 95%;
    left: 101%;
  }
}

.top-fv__circle05 {
  position: absolute;
  top: 40%;
  left: -302px;
  width: min(calc(100vw / 1440 * 302), 302px);
  height: min(calc(100vw / 1440 * 302), 302px);
  animation-name: anime-top-circle05;
  animation-delay: 6.5s;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes anime-top-circle05 {
  0% {
    top: 40%;
    left: -302px;
  }
  100% {
    top: 70%;
    left: 101%;
  }
}

.top-fv__circle06 {
  position: absolute;
  top: 70%;
  left: -205px;
  width: min(calc(100vw / 1440 * 204), 204px);
  height: min(calc(100vw / 1440 * 204), 204px);
  animation-name: anime-top-circle06;
  animation-delay: 2s;
  animation-duration: 12s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@keyframes anime-top-circle06 {
  0% {
    top: 70%;
    left: -205px;
  }
  100% {
    top: 100%;
    left: 101%;
  }
}


@media screen and (max-width: 767.98px) {

  .top-fv {
    padding-top: 95px;
    padding-bottom: 42px;
  }

  .top-fv__inner {
    padding-inline: min(calc(100vw / 390 * 25), 25px);
  }

  .top-fv__title {
    font-size: min(calc(100vw / 390 * 40), 40px);
    letter-spacing: 0.07em;
    line-height: 1.5;
  }

  .top-fv__title-big {
    font-size: min(calc(100vw / 390 * 96), 96px);
  }

  .top-fv__sliderZone {
    margin-top: 85px;
  }

  .top-fv__sliderZone .slick-slide {
    padding-inline: 13px;
  }

  .top-fv__circle01 {
    width: 70px;
    height: 70px;
  }
  @keyframes anime-top-circle01 {
    0% {
      top: 60%;
    }
    100% {
      top: 40%;
    }
  }

  .top-fv__circle02 {
    width: 100px;
    height: 100px;
  }
  @keyframes anime-top-circle02 {
    0% {
      top: 70%;
      left: -205px;
    }
    100% {
      top: 50%;
      left: 101%;
    }
  }

  .top-fv__circle03 {
    width: 200px;
    height: 200px;
  }

  .top-fv__circle04 {
    width: 70px;
    height: 70px;
  }

  .top-fv__circle05 {
    width: 200px;
    height: 200px;
  }
  @keyframes anime-top-circle05 {
    0% {
      top: 58%;
    }
    100% {
      top: 75%;
    }
  }

  .top-fv__circle06 {
    width: 100px;
    height: 100px;
  }

}





/*-------------------------------------
top-news
-------------------------------------*/

.top-news {
  padding-top: 76px;
  padding-bottom: 85px;
  background-color: #FFF6F2;
}

.top-news__inner {
  max-width: 1290px;
}

.top-news__title {
  padding-left: 4px;
  font-family: var(--Roboto);
  font-size: 45px;
  line-height: calc(52 / 45);
}

.top-news__body {
  margin-top: 42px;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.top-news__article {
  width: calc((100% - 26px * 2) / 3);
  display: block;
}

.top-news__article-link {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  border: 1px solid rgba(204, 204, 204, 0.4667);
  background-color: #fff;
  padding: 33px 32px 28px;
}

.top-news__article-date {
  display: block;
  font-family: var(--Inter);
  font-weight: 500;
  font-size: 14px;
  line-height: calc(20 / 14);
  color: #4C4C4C;
  text-shadow:
    1px 1px 0 rgba(204, 204, 204, 0.4667),
    -1px 1px 0 rgba(204, 204, 204, 0.4667),
    1px -1px 0 rgba(204, 204, 204, 0.4667),
    -1px -1px 0 rgba(204, 204, 204, 0.4667),
    0px 1px 0 rgba(204, 204, 204, 0.4667),
    0px -1px 0 rgba(204, 204, 204, 0.4667),
    1px 0px 0 rgba(204, 204, 204, 0.4667),
    -1px 0px 0 rgba(204, 204, 204, 0.4667);
}

.top-news__article-title {
  margin-top: 8px;
  font-family: var(--Mplus1p);
  font-weight: 800;
  font-size: 24px;
  line-height: calc(32 / 24);
  color: #232536;
  text-shadow:
    1px 1px 0 rgba(204, 204, 204, 0.4667),
    -1px 1px 0 rgba(204, 204, 204, 0.4667),
    1px -1px 0 rgba(204, 204, 204, 0.4667),
    -1px -1px 0 rgba(204, 204, 204, 0.4667),
    0px 1px 0 rgba(204, 204, 204, 0.4667),
    0px -1px 0 rgba(204, 204, 204, 0.4667),
    1px 0px 0 rgba(204, 204, 204, 0.4667),
    -1px 0px 0 rgba(204, 204, 204, 0.4667);
}

.top-news__article-text {
  margin-top: 8px;
  line-height: calc(28 / 16);
  color: #6D6E76;
  text-shadow:
    1px 1px 0 rgba(204, 204, 204, 0.4667),
    -1px 1px 0 rgba(204, 204, 204, 0.4667),
    1px -1px 0 rgba(204, 204, 204, 0.4667),
    -1px -1px 0 rgba(204, 204, 204, 0.4667),
    0px 1px 0 rgba(204, 204, 204, 0.4667),
    0px -1px 0 rgba(204, 204, 204, 0.4667),
    1px 0px 0 rgba(204, 204, 204, 0.4667),
    -1px 0px 0 rgba(204, 204, 204, 0.4667);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.top-news__button {
  margin-top: 53px;
}


@media screen and (max-width: 767.98px) {

  .top-news {
    padding-top: 34px;
    padding-bottom: 70px;
  }

  .top-news__inner {
    padding-inline: min(calc(100vw / 390 * 33), 33px);
  }

  .top-news__title {
    padding-left: 0;
  }

  .top-news__body {
    margin-top: 26px;
    gap: 20px;
  }

  .top-news__article {
    width: 100%;
  }

  .top-news__article-link {
    padding: 33px min(calc(100vw / 390 * 26), 26px) 27px;
  }

  .top-news__button {
    margin-top: 50px;
  }

}





/*-------------------------------------
top-concept
-------------------------------------*/

.top-concept {
  padding-top: 124px;
  padding-bottom: 100px;
}

.top-concept__inner {
  max-width: 1186px;
}

.top-concept__heading {
  text-align: center;
}

.top-concept__lead{
  margin-top: 80px;
}

.top-concept__principle{
  font-size: 28px;
  font-weight: 700;
  color: #000;
}
.top-concept__principle:not(:first-child) {
  margin-top: 45px;
}

.top-concept__under-line{
  background-image: linear-gradient(var(--OrangeColor), var(--OrangeColor));
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 5px;
  padding-bottom: 3px;
}

.top-concept__button {
  margin-top: 80px;
}


@media screen and (max-width: 767.98px) {

  .top-concept {
    padding-top: 105px;
    padding-bottom: 72px;
  }

  .top-concept__inner {
    padding-inline: min(calc(100vw / 390 * 35), 35px);
  }

  .top-concept__principle {
    font-size: 20px;
    line-height: 1.78;
  }

  .top-concept__lead {
    margin-top: 55px;
  }

  .top-concept__principle:not(:first-child) {
    margin-top: 32px;
  }

  .top-concept__button {
    margin-top: 58px;
  }

}





/*-------------------------------------
top-business
-------------------------------------*/

.top-business {
  padding-top: 175px;
  padding-bottom: 135px;
  background-color: var(--OrangeColor);
  position: relative;
  z-index: 1;
}
.top-business::before {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1441 / 48.29;
  background-image: url(../image/top_business_before.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.top-business::after {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  content: "";
  width: 100%;
  height: auto;
  aspect-ratio: 1441 / 48.29;
  background-image: url(../image/top_business_after.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

.top-business__inner {
  max-width: 1300px;
}

.top-business__body {
  margin-top: 60px;
}

.top-business__list {
  display: flex;
  flex-wrap: wrap;
  gap: 39px 29px;
}

.top-business__item {
  width: 100%;
  min-height: 400px;
  background-color: #fff;
  padding: 41px min(calc(100vw / 1440 * 42), 42px) 48px;
  border-radius: 40px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.top-business__item.top-business__item--row {
  width: calc((100% - 29px * 2) / 3);
}

.top-business__item-content {
  max-width: min(calc(100vw / 1440 * 587), 587px);
}

.top-business__item-title {
  font-family: var(--Mplus1);
  font-weight: 900;
  font-size: min(calc(100vw / 1440 * 64), 64px);
  line-height: 1;
}

.top-business__item-text {
  margin-top: 40px;
  font-size: 20px;
  line-height: 1.44;
}

.top-business__button {
  margin-top: 40px;
}

.top-business__item-logo01 {
  max-width: 561px;
}
.top-business__item-logo04 {
  max-width: 328px;
  height: 95px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-business__item-logo05 {
  max-width: 328px;
  margin-bottom: 62px;
}
.top-business__item-logo06 {
  max-width: 328px;
  margin-bottom: -15px;
}

.top-business__item-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 51%;
  height: 100%;
  z-index: -1;
}
.top-business__item--row .top-business__item-image {
  width: 100%;
  height: auto;
  top: auto;
  bottom: 0;
}

.top-business__item-image img {
  height: 100%;
  object-position: left;
}
.top-business__item--row .top-business__item-image img {
  height: auto;
}

.top-business__item:first-child .top-business__item-image img {
  border-radius: 40px 0 0 40px;
}


@media screen and (max-width: 767.98px) {

  .top-business {
    padding-top: 102px;
    padding-bottom: 60px;
  }
  .top-business::before {
    aspect-ratio: 390 / 22.07;
    background-image: url(../image/top_business_before_sp.svg);
  }
  .top-business::after {
    aspect-ratio: 390 / 22.07;
    background-image: url(../image/top_business_after_sp.svg);
  }

  .top-business__inner {
    padding-inline: min(calc(100vw / 390 * 35), 35px);
  }

  .top-business__heading {
    text-align: center;
  }

  .top-business__body {
    margin-top: 50px;
  }

  .top-business__list {
    row-gap: 25px;
  }

  .top-business__item {
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    border-radius: 20px;
    padding: 0;
  }
  .top-business__item.top-business__item--row {
    width: 100%;
  }

  .top-business__item-content {
    max-width: 100%;
    padding: 22px 12px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .top-business__item-image {
    position: relative;
    top: 0;
    right: auto;
    width: 100%;
    height: auto;
    z-index: 1;
  }

  .top-business__item-image img {
    object-position: center;
  }
  .top-business__item:first-child .top-business__item-image img {
    border-radius: 0;
  }

  .top-business__item-title {
    text-align: center;
    font-size: min(calc(100vw / 390 * 32), 32px);
  }

  .top-business__item-text {
    margin-top: 25px;
    font-size: 16px;
    line-height: 1.44;
  }

  .top-business__button {
    margin-top: 22px;
    justify-content: center;
  }

  .top-business__item-logo04 {
    width: 100%;
    height: 100px;
  }

  .top-business__item:nth-child(4) .top-business__item-logo04 img {
    width: 90%;
  }

}





/*-------------------------------------
top-recruit
-------------------------------------*/

.top-recruit {
  padding-top: 240px;
  padding-bottom: 170px;
  background-image: url(../image/top_recruit_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.top-recruit__inner {
  max-width: 1280px;
}

.top-recruit__body {
  margin-top: 40px;
}

.top-recruit__text-ja {
  font-family: var(--DMSans);
  font-weight: 700;
  font-size: min(4.8vw, 48px);
  line-height: 1;
}

.top-recruit__text-en {
  margin-top: 23px;
  font-family: var(--DMSans);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
}

.top-recruit__button {
  margin-top: 35px;
}


@media screen and (max-width: 767.98px) {

  .top-recruit {
    padding-top: 77px;
    padding-bottom: 70px;
    background-position-x: 47%;
  }

  .top-recruit__inner {
    padding-inline: min(calc(100vw / 390 * 35), 35px);
  }

  .top-recruit__heading {
    text-align: center;
  }

  .top-recruit__body {
    margin-top: 72px;
  }

  .top-recruit__text-ja {
    font-size: min(calc(100vw / 390 * 32), 32px);
    line-height: calc(40 / 32);
  }

  .top-recruit__text-en {
    margin-top: 20px;
    font-size: min(calc(100vw / 390 * 24), 24px);
    line-height: calc(25 / 24);
  }

  .top-recruit__button {
    margin-top: 355px;
    justify-content: center;
  }

}





/*-------------------------------------
top-contact
-------------------------------------*/

.top-contact {
  padding-top: 122px;
  padding-bottom: 95px;
  background-color: var(--OrangeColor);
}

.top-contact__inner {
  max-width: 1300px;
}

.top-contact__text {
  margin-top: 45px;
  font-weight: 700;
  font-size: 20px;
  line-height: calc(28 / 20);
  color: #fff;
}

.top-contact__button {
  margin-top: 45px;
}





/*-------------------------------------
フッター
-------------------------------------*/

.footer {
  padding-top: 80px;
  padding-bottom: 76px;
  background-color: #232537;
}

.footer__inner {
  max-width: 1040px;
}

.footer__flex {
  display: flex;
  column-gap: min(8vw, 80px);
}

.footer__logo {
  width: 241px;
}

.footer__nav-list {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  padding-top: 4px;
}

.footer__nav-link {
  font-size: 14px;
  line-height: calc(22 / 14);
  color: #fff;
}
.footer__nav-link.footer__nav-link--contact {
  font-weight: 700;
  font-size: 13px;
  line-height: calc(16 / 13);
  padding: 12px 36px;
  border-radius: 24px;
  background-color: var(--OrangeColor);
  color: #fff;
}

.footer__company {
  margin-top: 48px;
}

.footer__copy {
  display: block;
  margin-top: 48px;
  text-align: center;
  font-size: 13px;
  line-height: calc(16 / 13);
  color: #fff;
}


@media screen and (max-width: 767.98px) {

  .footer {
    padding-block: 52px;
  }

  .footer__inner {
    padding-inline: 16px;
  }

  .footer__flex {
    flex-direction: column;
  }

  .footer__logo {
    margin-left: 22px;
  }

  .footer__nav-list {
    padding-top: 57px;
    padding-inline: min(calc(100vw / 390 * 26), 26px);
    flex-direction: column;
    align-items: flex-start;
    row-gap: 14px;
  }

  .footer__nav-item:last-child {
    margin-top: 65px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .footer__nav-link {
    font-weight: 700;
    font-size: 18px;
    line-height: calc(22 / 18);
  }

  .footer__nav-link.footer__nav-link--contact {
    width: min(calc(100vw / 390 * 280), 280px);
    border-radius: 50px;
    padding: 24px;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
    position: relative;
  }

  .footer__company {
    margin-top: 24px;
  }

  .footer__company-button .common-button__link--ja {
    width: min(calc(100vw / 390 * 280), 280px);
    border-radius: 50px;
    padding: 24px 20px;
    text-align: center;
    font-weight: 400;
    font-size: 20px;
  }

  .footer__copy {
    margin-top: 80px;
    border-top: 2px solid #fff;
    padding-top: 55px;
  }

}

@media screen and (max-width: 374.98px) {
  .footer__company-button .common-button__link--ja {
    font-size: 16px;
  }
}





/*-------------------------------------
パンくずリスト
-------------------------------------*/

.breadcrumb {
  padding-top: 38px;
  padding-bottom: 18px;
}

.breadcrumb__inner {
  max-width: 1320px;
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 12px;
}

.breadcrumb__item {
  font-weight: 500;
}

.breadcrumb__item:not(:first-child) {
  margin-left: 28px;
  position: relative;
}
.breadcrumb__item:not(:first-child)::before {
  position: absolute;
  top: 50%;
  left: -19px;
  transform: translateY(-50%) rotate(45deg);
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid var(--BaseColor);
  border-right: 1px solid var(--BaseColor);
}

@media screen and (max-width: 767.98px) {
  .breadcrumb {
    display: none;
  }
}





/*-------------------------------------
page-mv
-------------------------------------*/

.page-mv {
  padding-inline: 16px;
  padding-bottom: 10px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 512px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-mv--about {
  background-image: url(../image/about_mv.jpg);
}
.page-mv--renovation {
  background-image: url(../image/renovation_mv.jpg);
}
.page-mv--apartments {
  background-image: url(../image/apartments_mv.jpg);
}
.page-mv--news {
  background-image: url(../image/news_mv.jpg);
}
.page-mv--contact {
  background-image: url(../image/contact_mv.jpg);
}

.page-mv__title {
  text-align: center;
  font-weight: 800;
  font-size: 72px;
  letter-spacing: -0.01em;
  color: #fff;
  filter: drop-shadow(0 4px 4px rgba(0, 0, 0, 0.25));
}

.page-mv__title span {
  display: inline-block;
}

.page-mv__title--mark {
  padding-inline: 20px;
  font-size: 62px;
}


@media screen and (min-width: 1920px) {
  .page-mv--contact {
    background-position-y: 30%;
  }
}

@media screen and (max-width: 767.98px) {

  .page-mv {
    padding-bottom: 0;
  }

  .page-mv--about {
    padding-inline: 32px;
    background-image: url(../image/about_mv_sp.jpg);
  }
  .page-mv--renovation {
    background-image: url(../image/renovation_mv_sp.jpg);
  }
  .page-mv--apartments {
    background-image: url(../image/apartments_mv_sp.jpg);
  }
  .page-mv--news {
    background-image: url(../image/news_mv_sp.jpg);
  }
  .page-mv--contact {
    background-image: url(../image/contact_mv_sp.jpg);
  }

  .page-mv__title {
    font-size: min(calc(100vw / 390 * 40), 40px);
    line-height: calc(53 / 40);
    letter-spacing: 0.075em;
  }
  .page-mv--renovation .page-mv__title {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .page-mv__title--mark {
    display: block;
    font-size: min(calc(100vw / 390 * 36), 36px);
  }

}

@media screen and (min-width: 500px) and (max-width: 767.98px) {
  .page-mv--contact {
    background-position-y: 25%;
  }
}





/*-------------------------------------
sub-page-section common-parts
-------------------------------------*/

.sub-page-section{
  padding-block: 100px;
}

.sub-section-title{
  text-align: center;
  color: #000;
}

.sub-section-title__ja{
  font-size: 64px;
  font-weight: 800;
  line-height: 1.4;
  padding-bottom: 6px;
  position: relative;
}

.sub-section-title__ja::after{
  position: absolute;
  content: "";
  width: 122px;
  height: 3px;
  background-color: var(--OrangeColor);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.sub-section-title__en{
  margin-top: 27px;
  font-family: var(--Roboto);
  font-size: 36px;
  line-height: calc(44/36);
  font-weight: 500;
}

.sub-section-heading{
  font-size: 72px;
  font-weight: 800;
  line-height: 1.5;
  color: var(--BlackColor);
}

.text-white{
  color: #fff;
}

.lp-show{
  display: none;
}

.sp-only-inline{
  display: none;
}

@media screen and (max-width:1023.98px){
  .lp-show{
    display: block;
  }
}

@media screen and (max-width:767.98px){
  .sub-section-title__ja{
    font-size: 40px;
  }
  .sub-section-title__ja::after{
    bottom: -19px;
    width: 87px;
  }
  .sub-section-title__en{
    margin-top: 35px;
  }
  .sub-section-heading{
    font-size: 32px;
    line-height: calc(42/32);
  }
  .sub-section-title.sub-section-heading{
    text-align: left;
  }
  .sp-only-inline{
    display: inline;
  }
}

@media screen and (max-width:389.98px){
  .sub-section-title__ja{
    font-size: 36px;
  }
  .sub-section-title__en{
    font-size: 30px;
  }
}





/*-------------------------------------
about-message
-------------------------------------*/

.sub-page-section.about-message{
  padding-block: 100px 126px;
}

.about-message__inner.common-inner{
  max-width: 1120px;
}

.about-message__container{
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-message__img-body{
  width: 100%;
  height: auto;
  border-radius: 40px;
  overflow: hidden;
}

.about-message__img-body img{
  aspect-ratio: 1/1;
}

.about-message__text-body{
  color: var(--BlackColor);
  width: 100%;
}

.about-message__lead{
  font-size: 36px;
  font-weight: 700;
  line-height: 1.6;
}

.about-message__text{
  margin-top: 32px;
  font-weight: 500;
}

.about-message__name{
  margin-top: 32px;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width:767.98px){
  .sub-page-section.about-message{
    padding-block: 100px 51px;
  }
  .about-message__inner.common-inner{
    padding-inline: 34px;
  }
  .about-message__container{
    margin-top: 69px;
    flex-direction: column;
    gap: 69px;
  }
  .about-message__lead{
    font-size: 32px;
    line-height: calc(42/32);
  }
  .about-message__name{
    padding-right: 3px;
  }
}





/*-------------------------------------
about-philosophy
-------------------------------------*/

.sub-page-section.about-philosophy{
  padding-block: 100px 149px;
  background-color: var(--BaseColor);
}

.about-philosophy__inner.common-inner{
  max-width: 1096px;
}

.about-philosophy__principles{
  margin-top: 120px;
  display: grid;
  grid-template-rows: repeat(5,180px);
  grid-template-columns: repeat(2,1fr);
  grid-auto-flow: column;
  gap: 20px;
}

.about-philosophy__principle{
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 20px 19px;
}

.philosophy-principle__title{
  font-family: var(--Inter);
  font-size: 32px;
  font-weight: 600;
  line-height: calc(39/32);
  color: var(--OrangeColor);
  text-indent: -1.3em;
  padding-left: 1.3em;
}

.philosophy-principle__content{
  margin-top: 24px;
  max-height: none;
  overflow: visible;
  transition: none;
}

.philosophy-principle__text{
  color: #000;
}

@media screen and (max-width:1023.98px){
  .about-philosophy__principles{
    gap: 10px;
  }
  .philosophy-principle__title{
    font-size: 24px;
    line-height: calc(29/24);
  }
}

@media screen and (max-width:767.98px){
  .sub-page-section.about-philosophy{
    padding-block: 99px 101px;
  }
  .about-philosophy__principles{
    margin-top: 29px;
    grid-auto-flow: row;
    grid-template-rows: none;
    grid-template-columns: 1fr;
  }
  .about-philosophy__principle{
    padding-right: 16px;
  }
  .about-philosophy__principle:nth-child(8),
  .about-philosophy__principle:nth-child(9){
    padding-block: 5.5px 4.5px;
  }
  .philosophy-principle__title{
    font-size: 24px;
    line-height: calc(29/24);
    position: relative;
    cursor: pointer;
  }
  .philosophy-principle__title::after{
    position: absolute;
    top: 5px;
    right: 0;
    content: "";
    width: 36px;
    height: 21px;
    background-image: url(../image/triangle.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    transition: transform 0.3s;
  }
  .about-philosophy__principle:nth-child(8) .philosophy-principle__title::after,
  .about-philosophy__principle:nth-child(9) .philosophy-principle__title::after{
    top: 21px;
  }
  .philosophy-principle__title.is-open::after{
    top: 0;
    right: -1px;
    transform: scaleY(-1);
  }
  .letter-spacing-4{
    letter-spacing: -0.04em;
  }
  .letter-spacing-9{
    letter-spacing: -0.09em;
  }
  .letter-spacing-13{
    letter-spacing: -0.13em;
  }
  .philosophy-principle__content{
    display: none;
    margin-top: 16px;
  }
}

@media screen and (max-width:389.98px){
  .philosophy-principle__title{
    font-size: 18px;
  }
  .philosophy-principle__title::after{
    top: 3px;
    width: 20px;
    height: 15px;
  }
  .about-philosophy__principle:nth-child(8) .philosophy-principle__title::after,
  .about-philosophy__principle:nth-child(9) .philosophy-principle__title::after{
    top: 14px;
  }
}





/*-------------------------------------
about-history
-------------------------------------*/

.sub-page-section.about-history{
  padding-block: 173px 120px;
}
.common-inner.about-history__inner{
  max-width: 1080px;
}

.about-history__list{
  margin-top: 140px;
}

.about-history__item{
  display: flex;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background-color: #FFF6F2;
}

.about-history__item:not(:first-child){
  margin-top: 23px;
}

.about-history__item:nth-child(3),
.about-history__item:nth-child(5),
.about-history__item:nth-child(6){
  padding-bottom: 21px;
}

.about-history__datetime{
  font-family: var(--Inter);
  color: var(--OrangeColor);
  font-weight: 600;
  display: flex;
  align-items: center;
  width: 290px;
}

.about-history__datetime::after{
  content: "";
  width: 64px;
  height: 1px;
  background-color: var(--OrangeColor);
  margin-left: auto;
}

.about-history__year{
  font-size: 48px;
  line-height: calc(58/48);
  letter-spacing: 0.07em
}

.about-history__item:nth-child(2) .about-history__datetime::after{
  margin-left: 30px;
}

.about-history__item:nth-child(2) .about-history__year{
  letter-spacing: 0.04em;
}

.about-history__item:nth-child(2) .about-history__event-title:not(:first-child){
  margin-top: 26px;
}

.about-history__era{
  margin-left: 10px;
  font-size: 14px;
}

.about-history__event{
  margin-left: 24px;
  color: #000;
  flex: 1;
  font-weight: 500;
}

.about-history__event-title:not(:first-child){
  margin-top: 24px;
}

@media screen and (max-width:767.98px){
  .sub-page-section.about-history{
    padding-block: 100px 103px;
  }
  .about-history__list{
    margin-top: 50px;
  }
  .about-history__item{
    flex-direction: column;
    align-items: start;
  }
  .about-history__item:not(:first-child){
    margin-top: 20px;
  }
  .about-history__datetime{
    width: fit-content;
  }
  .about-history__datetime::after{
    content: none;
  }
  .about-history__event{
    margin-top: 10px;
    margin-left: 0;
  }
  .about-history__event-title:not(:first-child){
    margin-top: 30px;
  }
}





/*-------------------------------------
about-company
-------------------------------------*/

.sub-page-section.about-company{
  background-color: #FFE6DA;
}

.common-inner.about-company__inner{
  max-width: 841px;
}

.about-company__profiles{
  margin-top: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-company__profile{
  display: flex;
  column-gap: 5px;
  align-items: stretch;
  width: 100%;
}

.about-company__profile:not(:first-child){
  margin-top: 10px;
}


.about-company__profile-title{
  max-width: 208px;
  flex: 0 0 calc(100% * 208/801);
  padding: 16px 24px;
  background-color: var(--OrangeColor);
  border-radius: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #F5F5F5;
  display: flex;
  align-items: center;
}

.about-company__profile-text{
  max-width: 588px;
  flex: 0 0 calc(100% * 588/801);
  padding: 15px 23px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  line-height: 1.5;
}

.about-company__profile-text:has(.about-company__profile-branch){
  padding: 4px 23px;
}

.branch-under-line{
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-company__profile-text:has(.about-company__profile-business),
.about-company__profile-text:has(.about-company__profile-bank){
  padding: 13px 23px;
}

.about-company__profile-text:has(.about-company__profile-license),
.about-company__profile-text:has(.about-company__profile-organization){
  padding: 6px 23px;
}

@media screen and (max-width:767.98px){
  .sub-page-section.about-company{
    padding-block: 117px 100px;
  }
  .common-inner.about-company__inner{
    padding-inline: 16px;
  }
  .about-company__profiles{
    margin-top: 62px;
  }
  .about-company__profile{
    flex-direction: column;
  }
  .about-company__profile:not(:first-child){
    margin-top: 18px;
  }
  .about-company__profile-title{
    max-width: 100%;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding: 3px 24px;
  }
  .about-company__profile-text{
    max-width: 100%;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    padding: 16px 19px 16px 24px;
  }
  .about-company__profile-text:has(.about-company__profile-branch){
    padding: 8.5px 19px 8.5px 24px;
  }
  .about-company__profile-text:has(.about-company__profile-business),
  .about-company__profile-text:has(.about-company__profile-bank){
    padding: 10px 19px 10px 24px;
  }
  .about-company__profile-text:has(.about-company__profile-license),
  .about-company__profile-text:has(.about-company__profile-organization){
    padding: 8px 19px 8px 24px;
  }
}





/*-------------------------------------
renovation-intro
-------------------------------------*/

.common-inner.renovation-intro__inner{
  max-width: 1080px;
}

.renovation-intro__text{
  margin-top: 40px;
  color: var(--BlackColor);
  max-width: 781px;
  margin-inline: auto;
  font-weight: 500;
}

@media screen and (max-width:767.98px){
  .sub-page-section.renovation-intro{
    padding-block: 86px 88px;
  }
  .common-inner.renovation-intro__inner{
    padding-inline: 35px;
  }
  .renovation-intro__text{
    margin-top: 32px;
  }
}

@media screen and (max-width:389.98px){
  .common-inner.renovation-intro__inner{
    padding-inline: 20px;
  }
  .renovation-intro__text{
    margin-top: 32px;
  }
  .sub-section-heading.renovation-intro__title{
    font-size: 28px;
  }
}





/*-------------------------------------
renovation-strengths
-------------------------------------*/

.sub-page-section.renovation-strengths{
  padding-block: 101px 149px;
  background-color: var(--BaseColor);
}

.common-inner.renovation-strengths__inner{
  max-width: 1020px;
}

.renovation-strengths__list{
  margin-top: 49px;
}

.renovation-strengths__item{
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.renovation-strengths__item:not(:first-child){
  margin-top: 48px;
}

.renovation-strengths__item:nth-child(odd){
  flex-direction: row-reverse;
}

.renovation-strengths__img-body{
  flex: 0 0 calc(100% * 400/980);
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}

.renovation-strengths__img-body img{
  aspect-ratio: 4/3;
  border-radius: 20px;
}

.renovation-strengths__text-body{
  flex: 0 0 calc(100% * 540/980);
  padding-right: 17px;
}

.renovation-strengths__item:nth-child(odd) .renovation-strengths__text-body{
  padding-right: 14px;
}

.renovation-strengths__item:nth-child(4) .renovation-strengths__text-body{
  padding-right: 11px;
}

.renovation-strengths__text-main{
  margin-top: -1px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.5;
}

.renovation-strengths__under-line{
  background-image: linear-gradient(var(--OrangeColor), var(--OrangeColor));
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 5px;
  padding-bottom: 1px;
}

.renovation-strengths__text{
  margin-top: 24px;
  font-weight: 500;
}

@media screen and (max-width:767.98px){
  .sub-page-section.renovation-strengths{
    padding-block: 103px 65px;
  }
  .common-inner.renovation-strengths__inner{
    padding-inline: 16px;
  }
  .renovation-strengths__list{
    margin-top: 16px;
  }
  .renovation-strengths__item{
    flex-direction: column;
    gap: 23px;
  }
  .renovation-strengths__item:nth-child(odd){
    flex-direction: column;
  }
  .renovation-strengths__item:not(:first-child){
    margin-top: 48px;
  }
  .renovation-strengths__img-body img{
    aspect-ratio: 358/269;
  }
  .renovation-strengths__text-body{
    padding-right: 0;
  }
  .renovation-strengths__item:nth-child(odd) .renovation-strengths__text-body{
    padding-right: 0;
  }
  .renovation-strengths__item:nth-child(4) .renovation-strengths__text-body{
    padding-right: 0;
  }
  .renovation-strengths__text-main{
    margin-top: 0;
    font-size: 20px;
  }
  .renovation-strengths__text{
    margin-top: 20px;
    font-size: 14px;
  }
}

@media screen and (max-width:389.98px){
  .renovation-strengths__text-main{
    font-size: 18px;
  }
}





/*-------------------------------------
renovation-achievements
-------------------------------------*/

.sub-page-section.renovation-achievements{
  padding-block: 100px 52px;
}

.common-inner.renovation-achievements__inner{
  max-width: 1158px;
}

.renovation-achievements__cards{
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  justify-content: center;
  align-items: stretch;
}

.achievements-card{
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.achievements-card__img-body{
  background-color: #D9D9D9;
  aspect-ratio: 1/1;
}

.achievements-card__img-body img{
  aspect-ratio: 1/1;
}

.achievements-card__text-body{
  background-color: #FFE6DA;
  padding: 10px 18px 21px;
  color: var(--BlackColor);
  flex: 1;
}

.achievements-card__text{
  font-weight: 500;
}

@media screen and (max-width:767.98px){
  .sub-page-section.renovation-achievements{
    padding-block: 100px;
  }
  .common-inner.renovation-achievements__inner{
    padding-inline: 16px;
  }
  .renovation-achievements__cards{
    margin-top: 50px;
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .achievements-card__img-body{
    aspect-ratio: 358/346;
  }
  .achievements-card__img-body img{
    aspect-ratio: 358/346;
  }
  .achievements-card__text-body{
    padding: 14px 20px 28px;
  }
}





/*-------------------------------------
apartments-intro
-------------------------------------*/

.common-inner.apartments-intro__inner{
  max-width: 1190px;
}

.apartments-intro__text{
  max-width: 846px;
  margin-inline: auto;
  margin-top: 40px;
  color: var(--BlackColor);
  text-align: center;
  font-weight: 500;
}

.apartments-intro__lp-show{
    display: none;
  }

@media screen and (max-width:1150px){
  .apartments-intro__lp-show{
    display: block;
  }
}

@media screen and (max-width:767.98px){
  .sub-page-section.apartments-intro{
    padding-block: 86px 71px;
  }
  .common-inner.apartments-intro__inner{
    padding-inline: 35px;
  }
  .apartments-intro__text{
    margin-top: 32px;
    text-align: left;
  }
}

@media screen and (max-width:389.98px){
  .common-inner.apartments-intro__inner{
    padding-inline: 30px;
  }
}





/*-------------------------------------
apartments-message
-------------------------------------*/

.apartments-message{
  background-color: #FFE6DA;
}

.common-inner.apartments-message__inner{
  max-width: 1160px;
}

.apartments-message__items{
  margin-top: 41px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 250px));
  gap: 40px;
  justify-content: center;

}

.apartments-message__item{
  background-color: var(--OrangeColor);
  border-radius: 20px;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.apartments-message__item-title{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.09;
}

.apartments-message__item-title-large{
  font-size: 96px;
  font-weight: 700;
}

.apartments-message__item-row{
  display: flex;
  align-items: flex-end;
}

.apartments-message__item-title-large2{
  font-size: 85px;
  font-weight: 700;
}

.apartments-message__item-title-tight{
  letter-spacing: -0.09em;
}

.apartments-message__item-title-medium{
  font-size: 48px;
}

.apartments-message__caution {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.09;
}

@media screen and (max-width:767.98px){
  .common-inner.apartments-message__inner{
    padding-inline: 16px;
  }
}





/*-------------------------------------
apartments-commitment
-------------------------------------*/

.common-inner.apartments-commitment__inner{
  max-width: 1020px;
}

.apartments-commitment__list{
  margin-top: 48px;
}

.apartments-commitment__item{
  display: flex;
  align-items: center;
  gap: 40px;
  width: 100%;
}

.apartments-commitment__item:not(:first-child){
  margin-top: 48px;
}

.apartments-commitment__item:nth-child(even){
  flex-direction: row-reverse;
}

.apartments-commitment__img-body{
  flex: 0 0 calc(100% * 400/980);
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}

.apartments-commitment__img-body img{
  aspect-ratio: 4/3;
}

.apartments-commitment__text-body{
  flex: 0 0 calc(100% * 540/980);
  padding-right: 17px;
  color: var(--BlackColor);
}

.apartments-commitment__item:nth-child(even) .apartments-commitment__text-body{
  padding-right: 14px;
}

.apartments-commitment__item:nth-child(3) .apartments-commitment__text-body{
  padding-right: 11px;
}

.apartments-commitment__text-main{
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
}

.apartments-commitment__under-line{
  background-image: linear-gradient(var(--OrangeColor), var(--OrangeColor));
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: 100% 5px;
  padding-bottom: 1px;
}

.apartments-commitment__text{
  margin-top: 24px;
  font-weight: 500;
}

@media screen and (max-width:767.98px){
  .common-inner.apartments-commitment__inner{
    padding-inline: 16px;
  }
  .apartments-commitment__list{
    margin-top: 40px;
  }
  .apartments-commitment__item{
    flex-direction: column;
    gap: 23px;
  }
  .apartments-commitment__item:not(:first-child){
    margin-top: 58px;
  }
  .apartments-commitment__item:nth-child(even){
    flex-direction: column;
  }
  .apartments-commitment__img-body img{
    aspect-ratio: 358/269;
  }
  .apartments-commitment__text-body{
    padding-right: 0;
  }
  .apartments-commitment__item:nth-child(even) .apartments-commitment__text-body{
    padding-right: 0;
  }
  .apartments-commitment__item:nth-child(3) .apartments-commitment__text-body{
    padding-right: 0;
  }
  .apartments-commitment__text-main{
    font-size: 20px;
    line-height: 1.5;
  }
  .apartments-commitment__text{
    margin-top: 20px;
    font-size: 14px;
  }
}

@media screen and (max-width:389.98px){
  .apartments-commitment__text-main{
    font-size: 18px;
  }
}





/*-------------------------------------
news
-------------------------------------*/

.news {
  padding-top: 90px;
  padding-bottom: 100px;
}

.news__inner {
  max-width: 1040px;
}

.news__article {
  padding-bottom: 32px;
  border-bottom: 1px solid #ddd;
}
.news__article:not(:first-child) {
  margin-top: 32px;
}

.news__article-link {
  display: block;
  width: 100%;
  padding-left: 24px;
  padding-right: 53px;
  display: flex;
  align-items: center;
  position: relative;
}
.news__article-link::after {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%) rotate(45deg);
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--BaseColor);
  border-right: 2px solid var(--BaseColor);
}

.news__article-heading {
  display: flex;
  align-items: center;
}

.news__article-date {
  font-size: 16px;
  letter-spacing: 0.04em;
  line-height: calc(19 / 16);
  color: #777;
}

.news__article-categoryZone {
  margin-left: 21px;
  width: 132px;
}

.news__article-category {
  width: 100%;
  border-radius: 50px;
  border: 1px solid var(--BaseColor);
  padding: 4px;
  text-align: center;
  font-size: 14px;
  line-height: calc(17 / 14);
}

.news__article-body {
  margin-left: 16px;
  flex: 1;
}

/* ページネーション */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 64px;
}

.pagination ul {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.pagination li {
  width: 44px;
  height: 44px;
}

.pagination li a {
  width: 100%;
  height: 100%;
  border: 1px solid #777;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ZenKaku);
  font-weight: 500;
  font-size: 16px;
  color: var(--BlackColor);
}

.pagination li span.current {
  width: 100%;
  height: 100%;
  border: 1px solid var(--OrangeColor);
  border-radius: 4px;
  background: var(--OrangeColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ZenKaku);
  font-weight: 700;
  font-size: 16px;
  color: #fff;
}

.pagination li:has(span.dots) {
  position: relative;
}
.pagination li:has(span.dots)::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  width: 40px;
  height: 3px;
  background-image: radial-gradient(circle, #2f2f2f 1.5px, transparent 1.5px);
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 13px 3px;
}
.pagination li span.dots {
  opacity: 0;
}

.pagination .arrow {
  width: 100%;
  height: 100%;
  position: relative;
}
.pagination .prev::before {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(75%, -50%) rotate(-45deg);
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #777;
  border-left: 2px solid #777;
}
.pagination .next::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-75%, -50%) rotate(45deg);
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #777;
  border-right: 2px solid #777;
}


@media screen and (max-width: 767.98px) {

  .news {
    padding-top: 83px;
  }

  .news__inner {
    padding-inline: min(calc(100vw / 390 * 16), 16px);
  }

  .news__article {
    padding-inline: 19px;
  }
  .news__article:not(:first-child) {
    margin-top: 26px;
  }

  .news__article-link {
    padding-inline: min(calc(100vw / 390 * 13), 13px);
    flex-direction: column;
    align-items: flex-start;
  }
  .news__article-link::after {
    display: none;
  }

  .news__article-heading {
    width: 100%;
    padding-right: 22px;
    flex-wrap: wrap;
    gap: 8px 14px;
    position: relative;
  }
  .news__article-heading::after {
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%) rotate(45deg);
    content: "";
    width: 6px;
    height: 6px;
    border-top: 2px solid var(--BaseColor);
    border-right: 2px solid var(--BaseColor);
  }

  .news__article-categoryZone {
    margin-left: 0;
    width: 100%;
    max-width: 132px;
  }

  .news__article-body {
    margin-top: 17px;
    margin-left: 0;
    width: 100%;
  }

  .news__article-text {
    font-size: 16px;
    line-height: 1.8;
  }

}

@media screen and (max-width: 499.98px) {
  .pagination ul {
    gap: calc(100vw / 500 * 8);
  }
  .pagination li {
    width: calc(100vw / 500 * 44);
    height: calc(100vw / 500 * 44);
  }
  .pagination li a,
  .pagination li span.current {
    font-size: min(calc(100vw / 375 * 16), 16px);
  }
  .pagination li:has(span.dots)::before {
    width: 30px;
    background-size: 10px 3px;
  }
}

@media screen and (max-width: 389.98px) {
  .news__article {
    padding-inline: 0;
  }
}





/*-------------------------------------
single
-------------------------------------*/

.single {
  padding-block: 100px;
}

.single__inner {
  max-width: 962px;
}

.single__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  column-gap: 16px;
}

.single__category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.single__category-item {
  padding: 4px;
  min-width: 132px;
  border: 1px solid var(--OrangeColor);
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: calc(17 / 14);
  color: var(--OrangeColor);
}

.single__dateZone {
  padding-top: 5px;
  line-height: 1;
}

.single__date {
  font-weight: 700;
  font-size: 14px;
  line-height: calc(17 / 14);
  color: #777;
}

.single__title {
  margin-top: 24px;
  font-weight: 700;
  font-size: 28px;
  line-height: calc(32 / 28);
}

.single__content {
  margin-top: 24px;
}

.single__content img {
  margin-bottom: 24px;
}

.single__content p {
  margin-bottom: 16px;
  line-height: calc(24 / 16);
}

.single__content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 24px;
  line-height: calc(29 / 24);
  letter-spacing: 0.11em;
  background-color: var(--GreenBgColor);
  border-bottom: 4px solid var(--OrangeColor);
}

.single__content h3 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 700;
  font-size: 18px;
  line-height: calc(24 / 18);
  padding-left: 21px;
  position: relative;
}
.single__content h3::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 4px;
  height: 24px;
  background-color: var(--OrangeColor);
}

.single__content h4 {
  margin-top: 32px;
  font-weight: 700;
  font-size: 17px;
  line-height: calc(24 / 17);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.single__content h5 {
  margin-top: 32px;
  font-weight: 700;
  line-height: calc(24 / 17);
}

.single__content blockquote {
  margin-top: 32px;
  border-left: 3px solid var(--OrangeColor);
  border-right: 3px solid var(--OrangeColor);
  background-color: #FAFAFA;
  padding: 48px 26px 78px;
  position: relative;
}
.single__content blockquote::before {
  position: absolute;
  top: 3px;
  left: 12px;
  content: "‘‘";
  font-weight: 700;
  font-size: 40px;
  color: var(--OrangeColor);
  letter-spacing: -0.07em;
  line-height: 1;
}
.single__content blockquote::after {
  position: absolute;
  bottom: 7px;
  right: 12px;
  content: "’’";
  font-weight: 700;
  font-size: 40px;
  color: var(--OrangeColor);
  letter-spacing: -0.07em;
  line-height: 1;
}
.single__content blockquote p {
  line-height: calc(19 / 16);
}
.single__content blockquote p:last-child {
  margin-bottom: 0;
}

.single__content .wp-block-group ul {
  margin-top: 32px;
}
.single__content .wp-block-group ul li {
  padding-left: 25px;
  line-height: calc(19 / 16);
  position: relative;
}
.single__content .wp-block-group ul li:not(:first-child) {
  margin-top: 12px;
}
.single__content .wp-block-group ul li::before {
  position: absolute;
  top: 6px;
  left: 6px;
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: var(--OrangeColor);
}

.single__content .wp-block-group ol {
  margin-top: 32px;
  counter-reset: item;
}
.single__content .wp-block-group ol li {
  line-height: calc(19 / 16);
  counter-increment: item;
  padding-left: 25px;
  position: relative;
}
.single__content .wp-block-group ol li:not(:first-child) {
  margin-top: 12px;
}
.single__content .wp-block-group ol li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(item) ".";
  color: var(--OrangeColor);
}

.single__content .wp-block-group.box {
  margin-top: 32px;
  padding: 24px 32px;
  border: 1px solid var(--OrangeColor);
  background-color: #FAFAFA;
}

.single__content .wp-block-group.box p {
  line-height: calc(23 / 16);
}
.single__content .wp-block-group.box p:last-child {
  margin-bottom: 0;
}


@media screen and (max-width: 767.98px) {

  .single__inner {
    padding-inline: min(calc(100vw / 390 * 16), 16px);
  }

  .single__content h2 {
    margin-top: 26px;
  }

  .single__content h3 {
    margin-top: 26px;
    padding-left: 8px;
  }

  .single__content h4,
  .single__content h5 {
    margin-top: 26px;
  }

  .single__content blockquote {
    padding-inline: min(calc(100vw / 390 * 21), 21px);
    padding-bottom: 32px;
  }
  .single__content blockquote::after {
    bottom: 0;
  }

  .single__content .wp-block-group ul li:not(:first-child) {
    margin-top: 8px;
  }

  .single__content .wp-block-group ol li:not(:first-child) {
    margin-top: 8px;
  }

  .single__content .wp-block-group.box p {
    line-height: calc(19 / 16);
  }

}

@media screen and (max-width: 499.98px) {
  .single__content img {
    aspect-ratio: 358 / 411;
  }
}





/*-------------------------------------
404
-------------------------------------*/

.p-404 {
  height: calc(100vh - 108px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.p-404__title {
  text-align: center;
  font-weight: 700;
  font-size: 28px;
  text-transform: uppercase;
}

.p-404__text {
  margin-top: 32px;
  text-align: center;
  font-size: 20px;
}

.p-404__back {
  margin-top: 56px;
}

@media screen and (max-width: 767.98px) {
  .p-404 {
    height: calc(100vh - 80px);
  }
  .p-404__title {
    font-size: 24px;
  }
  .p-404__text {
    font-size: 16px;
  }
}





/*-------------------------------------
contact
-------------------------------------*/

.p-contact-wrapper {
  margin-top: 60px;
  margin-bottom: 123px;
}

.p-contact-lead {
  padding-top: 60px;
  text-align: center;
  font-weight: 500;
  font-size: 14px;
  line-height: 2;
  color: var(--BlackColor);
}

.p-contact-form {
  margin-top: 48px;
  margin-inline: auto;
  max-width: 920px;
  padding: 75px 40px 80px;
  border-radius: 20px;
  background-color: #FFE6DA;
}

.p-contact-form__list {
  margin-inline: auto;
  max-width: 640px;
}
.p-contact-form__list:not(:first-child) {
  margin-top: 27px;
}
.confirm_area .p-contact-form__list:not(:first-child) {
  margin-top: 36px;
}

.p-contact-form__label-zone {
  display: inline-block;
}

.p-contact-form__label {
  font-size: 16px;
  line-height: calc(24 / 16);
  display: flex;
  align-items: center;
}
.p-contact-form__label-must {
  padding: 3px 8px;
  border-radius: 50px;
  background-color: var(--OrangeColor);
  font-size: 10px;
  line-height: 1;
  color: #fff;
  margin-right: 8px;
}

.p-contact-form__data {
  margin: 8px 0 0 0;
}

.p-contact-form__input {
  width: 100%;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  text-align: left;
  font-size: 16px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.p-contact-form__textarea {
  width: 100%;
  height: 240px;
  padding: 10px 16px;
  border-radius: 20px;
  border: 1px solid #ddd;
  background-color: #fff;
  font-weight: 400;
  font-size: 16px;
  resize: vertical;
}

/* プライバシーポリシーチェック */
input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  visibility: hidden;
}
.p-contact-form__check {
  margin-top: 27px;
  margin-inline: auto;
  max-width: 640px;
}
.p-contact-form__check-label {
  display: inline-block;
}
.p-contact-form__check-label .wpcf7-list-item {
  margin-left: 0;
}
.p-contact-form__check-text {
  display: block;
  padding-left: 31px;
  font-weight: 500;
  font-size: 14px;
  line-height: calc(17 / 14);
  position: relative;
  cursor: pointer;
}
.p-contact-form__check-label span.wpcf7-list-item-label {
  display: block;
}
.p-contact-form__check-label .wpcf7-list-item-label::before {
  position: absolute;
  top: 4px;
  left: 0;
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid #ddd;
  background-color: #fff;
  vertical-align: middle;
}
.p-contact-form__check-label input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background-color: #ddd;
}
.p-contact-form__check-label input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
  position: absolute;
  top: 8px;
  left: 3px;
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  cursor: pointer;
}
.p-contact-form__policy-link {
  display: inline-block;
  text-decoration: underline;
}

/* 入力してください */
.wpcf7-not-valid-tip {
  color: var(--OrangeColor);
  font-size: 14px;
}
.p-contact-form__select-zone:has(.wpcf7-not-valid-tip) {
  margin-bottom: 36px;
}

/* ボタン */
.p-contact-form__submit {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.p-contact-form__submit-button {
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background-color: var(--OrangeColor);
  padding: 16px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: calc(23 / 16);
  color: #fff;
  transition: all 0.3s;
  cursor: pointer;
}
.p-contact-form__submit-button:disabled {
  cursor: not-allowed;
}
.p-contact-form:has(.wpcf7-not-valid-tip) .p-contact-form__submit-buttonZone {
  cursor: not-allowed;
}
.p-contact-form:has(.wpcf7-not-valid-tip) .p-contact-form__submit-button {
  pointer-events: none;
}
@media (hover: hover) {
  .p-contact-form__submit-button:hover {
    opacity: 0.7;
  }
  .p-contact-form__submit-buttonZone:has(.p-contact-form__submit-button:disabled) .p-contact-form__submit-button:hover {
    opacity: 1;
  }
}
.p-contact-form__submit-buttonZone .wpcf7-spinner {
  display: none;
}

/* 最初は確認画面を非表示 */
.confirm_area {
  display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output{
  display: none;
}

/* ボタン */
.p-contact-button {
  margin-top: 56px;
}

.p-contact-button .common-button__link--ja {
  min-width: 220px;
}

.p-contact-form__back-buttonZone {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}

.p-contact-form__back-button {
  width: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  background-color: #fff;
  padding: 16px;
  text-align: center;
  font-weight: 500;
  font-size: 16px;
  line-height: calc(23 / 16);
  color: var(--OrangeColor);
  transition: all 0.3s;
  cursor: pointer;
}
@media (hover: hover) {
  .p-contact-form__back-button:hover {
    opacity: 0.7;
  }
}


@media screen and (max-width: 767.98px) {

  .p-contact-wrapper {
    margin-top: 43px;
    margin-bottom: 90px;
  }

  .common-inner.p-contact-inner {
    padding-inline: min(calc(100vw / 375 * 16), 16px);
  }

  .p-contact-lead {
    padding-top: 43px;
  }

  .p-contact-lead span {
    display: inline-block;
  }

  .p-contact-form {
    padding: 78px 20px 80px;
  }

  .p-contact-form__check-label span.wpcf7-list-item-label {
    position: relative;
  }

  .p-contact-form__check-label .wpcf7-list-item-label::before {
    top: 1px;
  }
  .p-contact-form__check-label input[type="checkbox"]:checked + .wpcf7-list-item-label::after {
    top: 5px;
  }

}