@charset "UTF-8";

/* 全体的な設定 */
html {
    height: 100%;
    scroll-padding-top: 100px;
    scroll-behavior: smooth;
    visibility: hidden;
  }
  html.wf-active {
    visibility: visible;
  }
body {
    height: 100%;
    height: 100dvh;
}
body,
input,
select,
textarea {
    font-family: "hiragino-mincho-pron", sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 2px;
    color: #000;
    background-color: #fff;
    margin: 0;
    padding: 0;
    }
.font-h {
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-weight: 300;
  font-style: normal;
}
p {
  line-height: 1.8;
}
/* 見出し */
    h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    }
/* リンク */
    a {
    text-decoration: none;
    }
/* 画像 */
    img {
    width: 100%;
    height: auto;
    }
    *,
    *::before,
    *::after {
    box-sizing: border-box;
    }
@media screen and (max-width: 600px) {
  body,
  input,
  select,
  textarea {
    font-size: 14px;
  }
  p {
    line-height: 1.6;
  }
}

/* 問い合わせフォームで削除するclasss */
.wpcf7-spinner {
  display: none !important;
}

/* CSS変数カスタムプロパティ */
:root {
  --header-height: 80px; /* PCでのヘッダーの高さ */
}
@media screen and (max-width: 1024px) {
  :root {
  --header-height: 70px;
  }
}
@media screen and (max-width: 850px) {
  :root {
  --header-height: 65px;
  }
}
@media screen and (max-width: 600px) {
  :root {
  --header-height: 60px;
  }
}

/*---------------------*/
/* ヘッダー */
.l-header {
  display: block;
  z-index: 999;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #fff;
}
.header-title-a {
  position: absolute;
  top: 6px;
  left: 20px;
}
.header-title {
  max-width: 300px;
  margin-bottom: 0;
}
header .menu-inner {
  width: 1200px;
  margin: 0 auto;
}
.p-hamburger {
  display: none;
}
.c-hamburger {
  position: relative;
  width: inherit;
  height: inherit;
  margin: 0;
  border: transparent;
  background-color: transparent;
  cursor: pointer;
}
.c-hamburger span {
  display: block;
  position: relative;
  left: 50%;
  width: 24px;
  height: 2px;
  transform: translateX(-50%);
  background: #2680EA;
  transition: all 0.4s;
}
.c-hamburger span:nth-of-type(1) {
  top: -4px;
}
.c-hamburger span:nth-of-type(2) {
  top: 1px;
  transform: translateX(-0.45deg);
}
.c-hamburger span:nth-of-type(3) {
  top: 6px;
  transform: translateX(-0.45deg);
}
.c-hamburger.is-active span:nth-of-type(1) {
  top: 0;
  transform: translateX(-50%) rotate(225deg);
}
.c-hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.c-hamburger.is-active span:nth-of-type(3) {
  top: -4px;
  transform: translateX(-50%) rotate(-225deg);
}
.header-box {
  display: flex;
  z-index: 10;
  position: static;
  top: 0;
  right: auto;
  align-items: center;
  justify-content: right;
  height: inherit;
  background: transparent;
  opacity: 1;
  transition: top 0.6s, right 0.6s, opacity 0.6s;
  background-color: #fff;
}
.header-inner {
  display: flex;
  align-items: flex-end;
  height: inherit;
  padding: 20px;
}
.p-hamburger {
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
}
.nav-inner {
  display: flex;
}
.nav-list {
  padding-right: 0;
  padding-left: 0;
  display: flex;
  column-gap: 50px;;
}
.nav-item {
  position: relative;
  width: auto;
}
.nav-link {
  color: #000;
  display: block;
  width: 100%;
  font-size: 18px;
}
.nav-link .e-span {
  display: none;
}
header .tel-area {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header-title {
    max-width: 270px;
  }
  .nav-link {
    font-size: 16px;
  }
  .nav-list {
    column-gap: 25px;
  }
}
@media screen and (max-width: 850px)  {
  .header-title {
    max-width: 210px;
  }
}
@media screen and (max-width: 767px) {
  .p-hamburger {
    display: block;
  }
  .nav-inner {
    margin-right: auto;
    margin-left: auto;
    max-width: initial;
    width: 100%;
  }
  .header-box {
    position: fixed;
    opacity: 0; 
    height: 100vh;
    width: 100%;
    top: 0;
    left: auto;
    right: -100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    overflow-y: auto; 
    -webkit-overflow-scrolling: touch;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0 40px;
  }
  .header-box.is-active {
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    opacity: .95;
  }
  .nav-list {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    padding-left: 40px;
  }
  .nav-item {
    margin-bottom: 20px;
  }
  .nav-link {
    font-size: 18px;
    width: 100%;
    display: flex;
    column-gap: 20px;
  }
  .nav-link span {
    display: block;
  }
  .nav-link .j-span {
    width: 170px;
  }
  .nav-link .e-span {
    display: block;
    border-left: 1px solid #afafaf;
    padding-left: 20px;
    color: #2680EA;
  }
  header .tel-area {
    display: block;
    padding-top: 10px;
  }
  header .tel-area a {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    align-items: flex-end;
}
header .tel-num {
    font-size: 28px;
    color: #2680EA;
    position: relative;
    padding-left: 40px;
}
header .tel-num::before {
    content: "";
    position: absolute;
    top: 0px;
    left: 0;
    background-image: url(../images/common/icon_tel_b.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
}
}
@media screen and (max-width: 600px) {
  .header-title {
    max-width: 220px;
  }
  .nav-list {
    max-width: 345px;
  }
  .nav-link {
    font-size: 16px;
  }
  .nav-link .j-span {
    width: 150px;
  }
}
@media screen and (max-width: 390px) {
  .nav-link {
    font-size: 15px;
    column-gap: 10px;
  }
  .nav-link .j-span {
    width: 140px;
  }
  header .tel-num {
      font-size: 24px;
      padding-left: 32px;
  }
  header .tel-num::before {
    width: 24px;
    height: 24px;
  }
}

/*---------------------*/
/* フッター */
footer {
  text-align: center;
  padding-bottom: 20px;
}
.footer-nav ul {
  display: flex;
  justify-content: center;
  column-gap: 60px;
  margin-bottom: 60px;
}
.footer-nav ul li a {
  font-size: 18px;
  line-height: 1.4;
}
footer .logo-area {
  max-width: 360px;
  margin: 0 auto 10px;
}
footer .text-area .text {
  text-align: left; 
}
footer .access-area {
  display: grid;
  grid-template-columns: 40% 58%;
  column-gap: 2%;
  margin-bottom: 60px;
}
footer small {
  font-size: 14px;
}
footer .p-br {
  display: none;
}
@media screen and (max-width: 1024px) {
  .footer-nav ul {
    margin-bottom: 40px;
  }
  footer .access-area {
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
  }
  footer .logo-area {
    margin-bottom: 20px;
  }
  footer .text-area .text {
    text-align: center;
    margin-bottom: 40px;
  }
  footer .map-area iframe {
    height: 300px;
  }
}
@media screen and (max-width: 767px) {
  .footer-nav ul {
    display: grid;
    grid-template-columns: repeat(3,2fr);
    max-width: 400px;
    gap: 10px;
    margin: 0 auto 30px;
    padding-left: 36px;
  }
  .footer-nav ul li {
    text-align: left;
  }
  footer .logo-area {
    width: 280px;
  }
  footer .text-area .text {
    margin-bottom: 30px;
  }
  footer small {
    font-size: 12px;
  }
  footer .p-br {
    display: block;
  }
}
@media screen and (max-width: 600px) {
  .footer-nav ul li a {
    font-size: 16px;
  }
  footer .map-area iframe {
    height: 250px;
  }
}
@media screen and (max-width: 450px) {
  .footer-nav ul {
    max-width: 300px;
    padding-left: 10px;
  }
  .footer-nav ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 390px) {
  footer .text-area .text p {
    text-align: left;
    font-size: 12px;
  }
  footer .map-area iframe {
    height: 220px;
  }
}


/*---------------------*/
/* 全体共通 */
.page-top {
  margin-top: var(--header-height);
}
.section {
  padding-top: 50px;
  margin-bottom: 50px;
}
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width:1250px) {
  .section-inner {
    padding: 0 30px;
  }
}
@media screen and (max-width:1024px) {
  .section {
    padding-top: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width:600px) {
  .section-inner {
    padding: 0 20px;
  }
}

/* タイトル */
.title-area {
  text-align: center;
  margin-bottom: 60px;
}
.title-area .t-big {
  font-size: 42px;
  font-weight: bold;
  color: #2680EA;
  line-height: 1;
  margin-bottom: 10px;
}
.title-area .t-small {
  font-weight: initial;
}
.title-area2 {
  margin-bottom: 40px;
}
.title-area2 .t-big {
  font-size: 32px;
  margin-bottom: 10px;
}
.title-area2 .t-small {
  color: #2680EA;
  font-weight: initial;
}
@media screen and (max-width:1024px) {
  .title-area .t-big {
    font-size: 36px;
  }
  .title-area2 .t-big {
    font-size: 26px;
  }
}
@media screen and (max-width:767px) {
  .title-area {
    margin-bottom: 40px;
  }
  .title-area2 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width:600px) {
  .title-area .t-big {
    font-size: 32px;
  }
  .title-area2 .t-big {
    font-size: 22px;
  }
}
@media screen and (max-width:390px) {
  .title-area .t-big {
    font-size: 28px;
    margin-bottom: 8px;
  }
}


/* レイアウト */
.layout01 {
  position: relative;
}
.layout01 .content {
    display: grid;
    grid-template-columns: 47%;
    position: relative;
    z-index: 2;
}
.layout01 .title-area2 {
  padding-top: 40px;
}
.layout01 .img-area {
    position: absolute; 
    width: 50vw; 
    height: 100%;
    right: 0;
    top: 0;
    z-index: 1;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    right: calc((100vw - 100%) / -2);
}
@media screen and (max-width: 1024px) {
  .layout01 .title-area2 {
      padding-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .layout01 .title-area2 {
      padding-top: 0px;
  }
  .layout01 .content {
    display: block;
  }
  .layout01 .img-area {
    position: relative;
    width: 100%;
    right: auto;
  }
}

/* ボタン */
.btn-area {
  text-align: center;
}
.btn-area a {
  position: relative;
  z-index: 1; 
  overflow: hidden;
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  color: #2680EA;
  background: #fff;
  border: 2px solid #2680EA;
  border-radius: 100px;
  padding: 10px 40px;
  margin: 0 auto;
  text-decoration: none;
  transition: color .8s ease;
}
.btn-area a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  display: block;
  width: 10px; 
  height: 10px;
  background: #2680EA;
  border-radius: 50%; 
  z-index: -1; 
  transition: transform 0.5s ease, border-radius 0.5s ease;
}
.btn-area a:hover {
  color: #fff;
}
.btn-area a:hover::before {
  transform: translate(-50%, -50%) scale(50);
  transition: transform 0.8s ease;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .btn-area a {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .btn-area a {
    font-size: 18px;
    padding: 8px;
    width: 170px;
  }
}
@media screen and (max-width: 390px) {
  .btn-area a {
    font-size: 16px;
  }
}

/* 表 */
.info-table {
    width: 100%;
    margin-bottom: 60px;
    border-collapse: collapse;
}
.info-table th,.info-table td {
    padding: 15px 0;
    border-bottom: 1px solid #2680EA;
    font-size: 18px;
}
.info-table th {
    font-weight: initial;
    width: 20%;
    text-align: center;
    vertical-align: middle;
    background-color: #D2E5FB;
}
.info-table tr:last-child th,.info-table tr:last-child td {
    border-bottom: none;
}
.info-table td {
    text-align: left;
    padding-left: 50px;
    padding-right: 30px;
    line-height: 1.8;
}
@media screen and (max-width: 1024px) {
  .info-table {
    margin-bottom: 30px;
  }
  .info-table th,.info-table td {
    font-size: 18px;
  }
  .info-table th {
    padding: 20px 0;
  }
  .info-table td {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .info-table th,.info-table td {
        font-size: 16px;
    }
  .info-table th {
        padding: 15px 0;
    }
  .info-table td {
        padding: 15px;
    }
}
@media screen and (max-width: 600px) {  
  .info-table {
    margin-bottom: 20px;
  }
  .info-table th,.info-table td {
    display: block;
    width: 100%;
    font-size: 14px;
    border: none;
    line-height: 1.5;
  }
  .info-table th {
    padding: 10px 10px;
  }
  .info-table td {
    padding: 5px 0 15px;
  }
}


/* フッター前のcontact */
#contact .box {
  border: 3px solid #2680EA;
  padding: 40px 20px;
}
#contact .title-area {
  margin-bottom: 30px;
}
#contact .content {
  text-align: center;
}
#contact .tel-link {
  margin-bottom: 6px;
}
#contact .tel-link a {
  font-size: 38px;
  font-weight: bold;
  letter-spacing: 4px;
  transition: all 0.3s ease-in-out;
}
#contact .tel-link a:hover {
  color: #2680EA;
}
@media screen and (max-width:767px) {
  .contact {
    padding-top: 20px;
  }
}
@media screen and (max-width: 600px) {
  #contact .box {
      padding: 20px;
  }
  #contact .title-area {
    margin-bottom: 20px;
  }
  #contact .tel-link a {
    font-size: 32px;
  }
}
@media screen and (max-width: 390px) {
  #contact .box {
      padding: 15px;
  }
  #contact .title-area {
    margin-bottom: 15px;
  }
  #contact .tel-link a {
    font-size: 26px;
  }
}

/* property 物件情報 */
.property {
    background-color: #2680EA;
    padding: 50px 0 50px;
    margin-bottom: 0;
}
.property .title-area .t-big,.property .title-area .t-small {
    color: #fff;
}
.property .content {
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    column-gap: 30px;
    row-gap: 50px;
    margin-bottom: 50px;
}
.property .gallery-container {
    display: flex;
    gap: 10px;
}
.property .gallery-container .gallery-item:not(:first-child) {
    display: none; 
}
.property .gallery-item {
    width: 100%;
}
.property .gallery-item img,.property .no-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s;
}
.property .gallery-item img:hover {
    opacity: 0.8;
}
.property h3 {
    color: #fff;
    padding: 15px 0;
    font-size: 21px;
    border-bottom: 2px solid #fff;
    text-align: center;
    margin-bottom: 15px;
    line-height: 1.2;
}
.property .detail-row {
    display: flex;
    gap: 10px;
    color: #fff;
    font-size: 17px;
    line-height: 1.4;
}
.property .detail-row dt {
    font-weight: initial;
    width: 6em;
    white-space: nowrap;
    margin-bottom: 3px;
    flex-shrink: 0;
}
.property .detail-row dd {
    flex-grow: 1;
    margin-left: 0;
}
.property .main-thumb {
    position: relative;
    display: block;
    transition: opacity 0.3s ease;
    background-color: rgba(0, 0, 0, 0.7);
}
.property .click-text {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.2); 
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    pointer-events: none;
    z-index: 5;
    opacity: 0.7; 
    transition: opacity 0.3s ease;
}
.property .main-thumb:hover .click-text {
    opacity: 1; 
}
.property .main-thumb:hover img {
    opacity: 0.8; 
    background-color: rgba(0, 0, 0, 0.7);
}
.property .btn-area a {
  border: 1px solid #fff;
}
@media screen and (max-width: 1250px) {
  .property h3 {
    font-size: 1.7vw;
  }
  .property .detail-row {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
    .property .content {
        column-gap: 20px;
        row-gap: 40px;
        margin-bottom: 30px;
    }
    .property .gallery-item img,.property .no-image {
        height: 200px;
    }
    .property .detail-row {
        font-size: 14px;
    }
}
@media screen and (max-width: 767px) {
   .property .content {
    grid-template-columns: repeat(2,3fr);
   }
    .property h3 {
        font-size: 16px;
    }
}
@media screen and (max-width: 600px) {
   .property .content {
    display: flex;
    flex-direction: column;
    max-width: 290px;
    margin: 0 auto 30px;
   }
    .property h3 {
        padding: 8px 0;
        margin-bottom: 8px;
    }
    .property .click-text {
        font-size: 14px;
        height: 30px;
    }
}

/*---------------------*/
/* アニメーション */
/* 下からスライドイン */
.slideInBottom {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1.3s, transform 1.3s;
}
.slideInBottom.is-show {
  opacity: 1;
  transform: translateY(0);
}

/* テキストアンダーライン */
.t-li {
  background-image: linear-gradient(#2680EA, #2680EA);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 0 3px;
  transition: background-size 0.3s;
  padding-bottom: 5px;
}
.t-li:hover {
  background-position: center bottom;
  background-size: 100% 3px;
}

/* 画像をぼかして徐々に表示 */
.fadeBlurIn {
    opacity: 0;
    filter: blur(5px);
    transition: 
        opacity 1.3s ease-out,
        filter 1.3s ease-out;
    will-change: opacity, filter; 
}
.fadeBlurIn.is-show {
    opacity: 1;
    filter: blur(0);
}