@charset "utf-8";
/* CSS Document */
/* 共通 */
:root {
  --col-yellow: #8F7000;
}
/* h2タイトル共通 */
h2.sec-tit {
  position: relative;
  width: min(90%, 1300px);
  margin-inline: auto;
  padding-top: clamp(54px, 10vw, 60px);
  font-size: var(--sec-tit);
  word-break: auto-phrase;
  letter-spacing: 0.1em;
}
h2.sec-tit::after {
  content: attr(data-en);
  font-size: clamp(3.4rem, 16vw, 20.0rem);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(5,62,98,0.5);
  opacity: .2;
  z-index: -9;
}
/* ============== キービジュアル ここから ============== */
.sec-kv {
  position: relative;
  max-width: 2000px;
  min-height: 460px;
  margin-inline: auto;
}
.kv-tit {
  width: 90%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, 0.4));
  word-break: auto-phrase;
  z-index: 10;
}
.kv-tit h1 {
  display: inline-block;
  font-size: clamp(2.2rem, 4vw, 5.0rem);
}
.kv-tit h1::after {
  content: "";
  display: block;
  width: min(90%, 1000px);
  height: 2px;
  background-color: #fff;
  margin: 16px auto;
}
.kv-tit p {
  font-size: clamp(1.6rem, 3.8vw, 2.6rem);
}
.fade-splide {
  min-height: 460px;
}
.fade-splide .splide__slide {
  min-height: 460px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.fade-splide .splide__slide picture {
  height: 100%;
}
.fade-splide .splide__slide img {
  height: 100%;
  object-fit: cover;
}
.fade-splide .splide__progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.3);
}
.fade-splide .splide__progress__bar {
  height: 100%;
  background: #fff;
}
/* ============== コンセプト ここから ============== */
.bg-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fdfdfd;
  background-image:  repeating-radial-gradient( circle at 0 0, transparent 0, #fdfdfd 37px ), repeating-linear-gradient( #eeeeee55, #eeeeee );
}
.bg-inner {
  position: relative;
  width: min(90%, 1820px);
}
.breadcrumb-wrap {
  background-color: unset;
  padding-bottom: 0;
}
.breadcrumb {
  width: unset;
  margin-inline: unset;
}
.sec-concept {
  margin: clamp(80px, 12vw, 180px) auto;
  text-align: center;
}
.concept-tit {
  font-size: clamp(3.4rem, 4.5vw, 6.0rem);
  word-break: auto-phrase;
}
.concept-subtit {
  margin: clamp(40px, 4vw, 80px) auto;
  font-size: clamp(2.0rem, 2.8vw, 3.2rem);
  word-break: auto-phrase;
}
.concept-txt {
  line-height: 1.8;
  text-align: left;
  max-width: 880px;
  margin: 0 auto;
}
/* コンセプト　左からフェードインここから　*/
.slideinLeft, .slideinLeft01 {
  opacity: 0;
  transform: translateX(-100px);
}
.slideinLeft.active, .slideinLeft01.active {
  opacity: 1;
  animation: slideIn01 0.4s ease-out forwards;
}
@keyframes slideIn01 {
  0% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideinRight {
  opacity: 0;
  transform: translateX(100px);
}
.slideinRight.active {
  opacity: 1;
  animation: slideIn02 0.4s ease-out forwards;
}
@keyframes slideIn02 {
  0% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(0);
  }
}
/* コンセプトのリード文　下からフェードインここから　*/
.slideinBottom, .slideinBottom01 {
  opacity: 0;
  transform: translateY(80px);
}
.slideinBottom.active, .slideinBottom01.active {
  opacity: 1;
  animation: slideinBottom 0.4s ease-out forwards;
}

@keyframes slideinBottom {
  0% {
    transform: translateY(80px);
  }
  100% {
    transform: translateY(0);
  }
}
/* ============== 新着物件情報 ここから ============== */
.sec-bukken {
  background-color: #172348;
  padding-top: clamp(60px, 10vw, 180px);
  container: bukken-container / inline-size;
}
.sec-bukken h2[data-en] {
  color: #fff;
  font-size: var(--sec-tit);
  font-weight: bold;
  letter-spacing: 0.1em;
}
.sec-bukken h2[data-en]::after {
  content: attr(data-en);
  display: block;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  color: #fff;
  margin-top: 5px;
  text-transform: uppercase;
}
.bukken-grid {
  width: min(90%, 1400px);
  display: grid;
  gap: 30px;
  margin: clamp(40px, 4vw, 80px) auto clamp(60px, 7vw, 100px);
}
.bukken {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.bukken .pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*　物件データ　*/
.bukkendata {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
  padding: clamp(18px, 2vw, 20px) clamp(16px, 1.8vw, 24px) clamp(20px, 4vw, 28px);
  background-color: #fff;
}
.bukkendata .detail {
  flex-grow: 1; 
}
.bukkendata .detail .tag {
  color: #fff;
  font-size: 1.2rem;
  display: inline-block;
  padding: 2px 1rem 3px;
  background-color: var(--col-yellow);
}
.bukkendata .detail h3 {
  font-size: clamp(2.0rem, 2.4vw, 2.2rem);
  line-height: normal;
  margin: clamp(8px, 1.2vw, 10px) 0 clamp(4px, 1vw, 6px)
}
.bukkendata .detail h4 {
  font-size: clamp(2.0rem, 2.4vw, 2.2rem);
  line-height: normal;
  margin-bottom: 4px;
  color: var(--col-yellow);
}
.bukkendata .detail h4 span {
  font-size: clamp(1.4rem, 2vw, 1.6rem);
  color: #333;
}
.bukkendata .detail p {
  color: #777;
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  line-height: 1.4;
  margin-top: clamp(4px, 1vw, 8px);
}
@container bukken-container (min-width: 600px) {
  .bukken-grid {
    grid-template-columns: repeat(2,1fr);
  }
}
@container bukken-container (min-width: 1000px) {
  .bukken-grid {
    grid-template-columns: repeat(3,1fr);
    gap: clamp(30px, 5vw, 80px) clamp(20px, 1.8vw, 30px);
  }
}
/*　物件一覧　リンク　*/
.moreBtn {
  width: min(90%, 360px);
  border: solid 1px #fff;
  padding: 18px 1rem;
  display: block;
  outline: none;
  color: #fff;
	font-size: clamp(1.6rem, 2vw, 1.8rem);
  text-align: center;
  margin: 0 auto;
}
/*　物件一覧　リンク　*/
.link-kaitori {
  display: block;
  margin: clamp(60px, 6vw, 140px) auto 0;
  max-width: 2000px;
}
/* ============== 問い合わせ　リンク ここから ============== */
.sec-linkform {
  background-color: #D5D9DC;
  padding: clamp(60px, 6vw, 140px) calc(100% - 95%);
  container: linkform-container / inline-size;
}
.sec-linkform h2 {
  font-size: var(--sec-tit);
  letter-spacing: 0.1em;
  color: #172348;
  word-break: auto-phrase;
}
.linkform_list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:2rem; 
}
.linkform-btn {
  background-color: #4C5E71;
  padding: clamp(6px, 5vw, 20px);
  width: 100%;
}
.btn02 {
  background-color: #555E68;
}
.linkform-btn a {
  font-size: clamp(1.8rem, 5vw, 2.2rem);
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.8vw, 20px);
  align-items: center;
}
.linkform-btn a::after {
  content: " ";
  background: url("../img/common/arrow.svg")center no-repeat;
  width: clamp(28px, 4vw, 40px);
  height: clamp(28px, 4vw, 40px);
}

@container linkform-container (min-width: 600px) {
  .linkform_list {
    flex-direction: row;
  }
  .linkform-btn {
    width: min(100%, 360px);
    position: relative;
    z-index: 1;
  }
  .linkform-btn a {
    font-size: clamp(2.2rem, 3.4vw, 2.6rem);
  }
}
@container linkform-container (min-width: 1000px) {
  .linkform-btn {
    width: min(100%, 560px);
  }
  .linkform-btn a {
    font-size: 2.8rem;
  }
}
/* ============== サポート ここから ============== */
.sec-support {
  padding: clamp(60px, 10vw, 180px) 0 clamp(80px, 12vw, 180px);
  background-color: #F4F4F2;
  container: support-container / inline-size;
}
.support_lead {
  line-height: 1.8;
  text-align: left;
  width: min(90%, 980px);
  margin: clamp(30px, 5vw, 80px) auto;
}
.support-inner {
  margin-inline: auto;
  max-width: 600px;
}
.inner-wrap {
  margin-top: clamp(60px, 10vw, 120px);
  counter-increment: number 1;
}
.inner-wrap__Box {
  overflow-x: hidden;
  overflow-y: hidden;
}
.inner-wrap__img {
  width: 100%;
  max-width: 500px;
  display: block;
  position: relative;
  z-index: 5;
  margin-inline: auto;
}
.inner-wrap__txtBox {
  position: relative;
  background-color: #fff;
  padding: 60px 3rem 42px;
  width: 100%;
  z-index: 1;
}
.inner-wrap__txtBox::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 53px;
  background-color: #fff;
  top: -53px;
  left: 0;
  z-index: -1;
}
.inner-wrap__number::before {
  position: absolute;
  font-size: clamp(7.0rem, 10.4vw, 12.0rem);
  letter-spacing: 0.1em;
  color: var(--col-yellow);
  right: 25px;
  content: "0"counter(number) " ";
  top: 0;
  opacity: 0.3;
  z-index: -1;
}
h3.inner-wrap__tit {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  word-break: auto-phrase;
  max-width: 500px;
}
.inner-wrap__txt {
  margin-top: 40px;
  text-align: left;
  color: var(--col-txt);
}
@container support-container (min-width: 900px) {
  .support-inner {  
    max-width: 1400px;
    width: 90%;
  } 
  .inner-wrap__Box {
    display: flex;
  }
  .inner-wrap__img {
    max-width: 800px;
  }
  .inner-wrap__img img {
    aspect-ratio: 600 / 400;
    object-fit: cover;
  }
  .inner-wrap__txtBox {
    padding: clamp(80px, 8vw, 100px) clamp(20px, 4.5vw, 100px) clamp(20px, 10vw, 60px);
    margin-top: 50px;
  }
  .inner-wrap__txtBox::before {
    height: 100%;
    top: 0;
    left: -150px;
  }
  .inner-wrap__number::before {
    right: 32px;
    top: -64px;
    opacity: 1;
  }
  .inner-wrap:nth-child(even) .inner-wrap__Box {
    flex-direction: row-reverse;
  }
  .inner-wrap:nth-child(even) .inner-wrap__txtBox::before {
    left: initial;
    right: -150px;
  }
  .inner-wrap:nth-child(even) .inner-wrap__number::before {
    right: initial;
    left: 32px;
  }
  .inner-wrap__tit {
    text-align: left;
  }
}
@container support-container (min-width: 1100px) {
  .inner-wrap__number::before {
    top: -100px;
  }
}
/* ============== ４大リスク ここから ============== */
.sec-risk {
  width: min(90%, 1400px);
  margin: clamp(60px, 12vw, 180px) auto clamp(80px, 12vw, 180px);
}
.sec-risk h2 {
  width: min(84%, 600px);
  margin-inline: auto;
}
.sec-risk .risk_lead {
  line-height: 1.8;
  text-align: left;
  max-width: 980px;
  margin: clamp(30px, 5vw, 60px) auto clamp(60px, 10vw, 80px);
}
.risk-inner {
  container: risk-container / inline-size;
}
.risk-inner:is(.merit) {
  margin-bottom: clamp(40px, 12vw, 100px);
}
.risk-inner>h3 {
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  color: #172348;
  border: solid 2px #172348;
  padding: 18px 1rem;
}
.risk-inner__list {
  margin-top: clamp(30px, 10vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:clamp(30px, 10vw, 80px);
}
.risk-inner__list li {
  width: min(100%, 400px);
}
.risk-inner__img {
  width: min(80%, 360px);
  margin: 0 auto 20px;
}
.risk-inner__txtBox h4 {
 font-size: clamp(2.0rem, 4.2vw, 2.6rem);
 color: #172348;
}  
.risk-inner__txtBox p {
  text-align: left;
  margin-top: 6px;
}
@container risk-container (min-width: 680px) {
  .risk-inner__list {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(10px, 3vw, 60px);
  }
}
/* ============== よくある質問 ここから ============== */
.sec-faq {
  width: min(90%, 1400px);
  margin: clamp(60px, 12vw, 180px) auto clamp(80px, 12vw, 180px);
  container: faq-container / inline-size;
}
.sec-faq h2 {
  margin-bottom: clamp(40px, 5vw, 60px);
}
.faq-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:clamp(30px, 10vw, 80px);
}
.faq-innerBox {
  width: 100%;
}
.faq-innerBox h3 {
  font-size: clamp(2.0rem, 4.2vw, 2.6rem);
  color: #172348;
  background-color: #fff;
  border: solid 2px #172348;
  padding: 18px 1rem;
  margin-bottom: clamp(20px, 5vw, 40px);
}
/*　アコーディオン　*/
.accordion-check {
  display: none;
}
.accordion-label::before {
  content: ' ';
  display: inline-block;
  background: url("../img/common/Q.webp") no-repeat center/ contain;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.accordion-label {
  display: flex;
  align-items: center;
  text-align: left;
  margin-bottom: 1px;
  padding: 18px 0;
  border-bottom: 1px solid #333;
  height: 86px;
}
.accordion-label::after {
  content: "";
  background: url("../img/common/icon-plus.svg") no-repeat;
  background-size: 22px 22px;
  display: inline-block;
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-left: auto;
  padding-left: 8px;
}
.accordion-label>span {
  display: block;
  width: fit-content;
  font-size: clamp(1.6rem, 1.3vw, 2.0rem);
}
.accordion-content {
  position: absolute;
  top: 0;
  height: 0;
  opacity: 0;
  transition: .1s;
  visibility: hidden;
}
.accordion-content::before {
  content: ' ';
  display: inline-block;
  background: url("../img/common/A.webp") no-repeat center/ contain;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  margin-top: 8px;
}
.accordion-content>div {
  width: fit-content;
}
.accordion-content>div p {
  color: var(--col-txt);
}
.accordion-check:checked + .accordion-label:after{
  content: "";
  background: url("../img/common/icon-minus.svg") no-repeat;
  background-size: 22px 22px;
}
.accordion-check:checked + .accordion-label + .accordion-content{
  position: relative;
  height: fit-content;
  opacity: 1;
  padding: 20px 0 30px;
  visibility: visible;
  display: flex;
  text-align: left;
}
@container faq-container (min-width: 680px) {
  .faq-wrap {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: clamp(10px, 5vw, 60px);
  }
  .accordion-label::before, .accordion-content::before {
    width: 28px;
    height: 28px;
  }
}
/* ============== CONTACT ここから ============== */ 
.sec-contact {
  background: url("../img/column/bg-contact.webp") no-repeat 85% center / cover;
  padding: clamp(60px, 6vw, 100px) 0 clamp(80px, 8vw, 130px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}
.contact-tit {
  width: min(86% ,600px);
  color: #fff;
}
.contact-tit h2 {
  font-size: clamp(2.8rem, 14vw, 4.0rem);
  font-weight: normal;
}
.contact-tit p {
  margin: 2rem auto 0;
}
.sec-contact ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 2rem; 
  width: min(80%, 360px);
}
.sec-contact ul li {
  border: 1px solid #fff;
  background-color: #373737;
  padding: clamp(8px, 5vw, 40px);
  width: 100%;
}
.sec-contact ul li a {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #fff;
  align-items: center;
}
/* ============== テキスト　フェードイン ここから ============== */
.fadeUpTrigger{
  opacity: 0;
}
/* 下から */
.fadeUp{
  animation-name:fadeUpAnime;
  animation-duration:1s;
  animation-fill-mode:forwards;
  opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.time05{
  animation-duration: 0.5s;
}

.time1{
  animation-duration: 1s;
}

.time15{
  animation-duration: 1.5s;
}
/* ============== TAB(600px)レスポンシブ ============== */
@media(min-width:600px) {
  /*  物件一覧　リンク ここから  */
  .moreBtn {
	  position: relative;
    transition: all .2s linear;
  }
  /*矢印と下線の形状*/
  .moreBtn::before{
    content:"";
    position: absolute;
    top:50%;
    right:-74px;
    width:90px;
    height:0.5px;
    background-color:#fff;
    transition: all .2s linear;
  } 
  /* ============== CONTACT ここから ============== */
  .sec-contact ul {
    width: min(80%, 1200px);
    flex-direction: row;
    column-gap: 0;
    justify-content: center;
  } 
  .sec-contact ul li:hover {
    background-color: #666;
    transition: 0.3s;
  }
  .sec-contact ul li:first-child a {
    pointer-events: none;
  }
  .sec-contact ul li:first-child a::after {
    content: "06-6910-7500";
    font-size: clamp(2.0rem, 2vw, 3.8rem);
    letter-spacing: 2px;
    margin-top: 10px;
  }
  .sec-contact ul li:not(.time05) a::after {
    content: " ";
    background: url("../img/column/arrow.svg") center no-repeat;
    width: clamp(28px, 5vw, 40px);
    height: clamp(28px, 5vw, 40px);
    margin-top: 20px;
  }
}
@media(min-width:1000px) {
  /*  物件一覧　リンク ここから  */ 
  .moreBtn:hover {
    background-color:#000;
    color:#fff;
    opacity: 1;
  }
  .moreBtn:hover::before{
    right: -90px;
  }
  /*  問い合わせ　リンク ここから  */ 
  .linkform-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #333;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
  }
  .linkform-btn:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
  }
}







