html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  -webkit-padding-start: 0;
  line-height: 1;
  -webkit-text-size-adjust: none;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0; }

ol,
ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

input[type="password"],
input[type="text"],
input[type="submit"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="button"],
button,
textarea,
select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none; }

input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px; }

*, *::before, *::after {
  box-sizing: border-box; }

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
  border: none; }

body, html {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  color: #3c3c3c;
  min-height: 100vh; }

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s; }
  a:hover {
    opacity: 0.7; }

.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px; }

.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9998;
  background: transparent; }

.header-fixed {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none; }
  .header-fixed.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto; }

.header .header__inner,
.header-fixed .header__inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  @media (max-width: 768px) {
    .header .header__inner,
    .header-fixed .header__inner {
      height: 60px; } }
.header .header__logo,
.header-fixed .header__logo {
  display: block; }
  .header .header__logo img,
  .header-fixed .header__logo img {
    height: 40px;
    width: auto; }
    @media (max-width: 768px) {
      .header .header__logo img,
      .header-fixed .header__logo img {
        height: 30px; } }
@media (max-width: 768px) {
  .header .header__nav,
  .header-fixed .header__nav {
    display: none; } }
.header .header__nav-list,
.header-fixed .header__nav-list {
  display: flex;
  align-items: center;
  gap: 0; }
  .header .header__nav-list li a,
  .header-fixed .header__nav-list li a {
    display: block;
    padding: 0 18px;
    font-size: 14px;
    font-weight: 500;
    color: #3c3c3c;
    height: 60px;
    line-height: 60px;
    transition: color 0.3s; }
    .header .header__nav-list li a:hover,
    .header-fixed .header__nav-list li a:hover {
      color: #00a0e9;
      opacity: 1; }
.header .header__nav-contact,
.header-fixed .header__nav-contact {
  background: linear-gradient(135deg, #00a0e9, #4dc7ff);
  color: #ffffff !important;
  border-radius: 8px;
  height: 44px !important;
  line-height: 44px !important;
  padding: 0 24px !important;
  margin-left: 10px; }
  .header .header__nav-contact:hover,
  .header-fixed .header__nav-contact:hover {
    opacity: 0.8 !important;
    color: #ffffff !important; }
.header .header__hamburger,
.header-fixed .header__hamburger {
  display: none; }
  @media (max-width: 768px) {
    .header .header__hamburger,
    .header-fixed .header__hamburger {
      display: block;
      width: 30px;
      height: 24px;
      position: relative;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0; }
      .header .header__hamburger span,
      .header-fixed .header__hamburger span {
        display: block;
        width: 100%;
        height: 2px;
        background: #3c3c3c;
        position: absolute;
        left: 0;
        transition: all 0.3s; }
        .header .header__hamburger span:nth-child(1),
        .header-fixed .header__hamburger span:nth-child(1) {
          top: 0; }
        .header .header__hamburger span:nth-child(2),
        .header-fixed .header__hamburger span:nth-child(2) {
          top: 11px; }
        .header .header__hamburger span:nth-child(3),
        .header-fixed .header__hamburger span:nth-child(3) {
          top: 22px; } }
  .header .header__hamburger.active span:nth-child(1),
  .header-fixed .header__hamburger.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg); }
  .header .header__hamburger.active span:nth-child(2),
  .header-fixed .header__hamburger.active span:nth-child(2) {
    opacity: 0; }
  .header .header__hamburger.active span:nth-child(3),
  .header-fixed .header__hamburger.active span:nth-child(3) {
    top: 11px;
    transform: rotate(-45deg); }
.header .header__sp-menu,
.header-fixed .header__sp-menu {
  display: none; }
  @media (max-width: 768px) {
    .header .header__sp-menu,
    .header-fixed .header__sp-menu {
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      background: #ffffff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); }
      .header .header__sp-menu.active,
      .header-fixed .header__sp-menu.active {
        display: block; }
      .header .header__sp-menu ul li,
      .header-fixed .header__sp-menu ul li {
        border-bottom: 1px solid #eee; }
        .header .header__sp-menu ul li a,
        .header-fixed .header__sp-menu ul li a {
          display: block;
          padding: 16px 20px;
          font-size: 15px;
          font-weight: 500; }
          .header .header__sp-menu ul li a:hover,
          .header-fixed .header__sp-menu ul li a:hover {
            background: #f5f5f5;
            opacity: 1; } }

.section-heading {
  text-align: center;
  margin-bottom: 50px; }
  @media (max-width: 768px) {
    .section-heading {
      margin-bottom: 30px; } }
  .section-heading__en {
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 400;
    color: #00a0e9;
    letter-spacing: 0.1em;
    margin-bottom: 8px; }
    @media (max-width: 768px) {
      .section-heading__en {
        font-size: 18px; } }
  .section-heading__ja {
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 400;
    color: #3c3c3c; }
    @media (max-width: 768px) {
      .section-heading__ja {
        font-size: 26px; } }
  .section-heading__line {
    display: block;
    width: 1px;
    height: 80px;
    background: #00a0e9;
    margin: 20px auto 0; }
  .section-heading__icon {
    display: block;
    font-size: 36px;
    color: #00a0e9;
    margin-bottom: 10px; }
  .section-heading--left {
    text-align: left;
    margin-bottom: 20px; }

.mv {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 500px;
  margin-top: 60px;
  overflow: hidden;
  clip-path: inset(0 0 0 0); }
  @media (max-width: 768px) {
    .mv {
      height: 60vh;
      min-height: 400px;
      margin-top: 60px; } }
  .mv__bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh; }
    .mv__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .mv__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #92d5ff;
    mix-blend-mode: multiply;
    opacity: 0.6; }
  .mv__text {
    position: absolute;
    top: 60px;
    left: 60px;
    z-index: 1; }
    @media (max-width: 768px) {
      .mv__text {
        top: 40px;
        left: 20px; } }
  .mv__catch {
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 0 7px rgba(0, 0, 0, 0.9);
    line-height: 1.5; }
    @media (max-width: 768px) {
      .mv__catch {
        font-size: 26px; } }

.section-business {
  padding: 100px 0 80px; }
  @media (max-width: 768px) {
    .section-business {
      padding: 60px 0 50px; } }
  .section-business .business__grid {
    display: flex;
    justify-content: center;
    gap: 180px;
    width: 100%; }
    @media (max-width: 768px) {
      .section-business .business__grid {
        flex-direction: column;
        gap: 30px;
        padding: 0 20px; } }
  .section-business .business__item {
    position: relative;
    flex: 0 0 calc(50% - 90px);
    max-width: 540px; }
    @media (max-width: 768px) {
      .section-business .business__item {
        flex: 1;
        max-width: 100%; } }
  .section-business .business__item-en {
    position: absolute;
    top: 0;
    z-index: 2;
    font-family: "Noto Serif JP", serif;
    font-size: 48px;
    font-weight: 400;
    color: #00a0e9;
    line-height: 1; }
    @media (max-width: 768px) {
      .section-business .business__item-en {
        font-size: 30px; } }
  .section-business .business__item--left .business__item-en {
    left: 0; }
  .section-business .business__item--right .business__item-en {
    right: 0; }
  .section-business .business__item-img {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 20px; }
    .section-business .business__item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .section-business .business__item-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 160, 233, 0.8);
    backdrop-filter: blur(2px);
    padding: 20px 40px; }
    .section-business .business__item-label span {
      font-family: "Noto Serif JP", serif;
      font-size: 40px;
      font-weight: 600;
      color: #ffffff;
      white-space: nowrap; }
      @media (max-width: 768px) {
        .section-business .business__item-label span {
          font-size: 24px; } }
    @media (max-width: 768px) {
      .section-business .business__item-label {
        padding: 15px 25px; } }

.section-about {
  padding: 100px 0; }
  @media (max-width: 768px) {
    .section-about {
      padding: 60px 0; } }
  .section-about .about__content {
    display: flex;
    align-items: flex-start;
    gap: 50px; }
    @media (max-width: 768px) {
      .section-about .about__content {
        flex-direction: column;
        gap: 30px; } }
  .section-about .about__img {
    flex: 0 0 45%;
    overflow: hidden; }
    .section-about .about__img img {
      width: 100%;
      height: auto; }
  .section-about .about__text {
    flex: 1; }
  .section-about .about__desc {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 30px; }

.section-news {
  padding: 80px 0; }
  @media (max-width: 768px) {
    .section-news {
      padding: 60px 0; } }
  .section-news .news__list {
    max-width: 800px;
    margin: 0 auto; }
  .section-news .news__item {
    display: flex;
    align-items: baseline;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    gap: 20px; }
    .section-news .news__item:hover {
      opacity: 1; }
      .section-news .news__item:hover .news__title {
        color: #00a0e9; }
    @media (max-width: 768px) {
      .section-news .news__item {
        flex-direction: column;
        gap: 5px;
        padding: 15px 0; } }
  .section-news .news__date {
    font-family: "Oswald", sans-serif;
    font-size: 14px;
    color: #999;
    white-space: nowrap; }
  .section-news .news__title {
    font-size: 13px;
    transition: color 0.3s; }

.section-contact {
  position: relative;
  padding: 100px 0; }
  @media (max-width: 768px) {
    .section-contact {
      padding: 60px 0; } }
  .section-contact__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .section-contact__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .section-contact__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #92d5ff;
    mix-blend-mode: multiply;
    opacity: 0.6; }
  .section-contact .inner {
    position: relative;
    z-index: 1; }
  .section-contact .contact__card {
    background: #ffffff;
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25); }
    @media (max-width: 768px) {
      .section-contact .contact__card {
        padding: 40px 20px; } }
  .section-contact .contact__text {
    font-size: 13px;
    margin-bottom: 30px; }

.section-access {
  padding: 80px 0;
  text-align: center; }
  @media (max-width: 768px) {
    .section-access {
      padding: 60px 0; } }
  .section-access .access__address {
    font-size: 16px;
    margin-bottom: 30px; }
  .section-access .access__map iframe {
    width: 100%;
    max-width: 800px;
    height: 450px; }
    @media (max-width: 768px) {
      .section-access .access__map iframe {
        height: 300px; } }

.footer {
  background: #3c3c3c;
  color: #ffffff;
  padding: 60px 0 30px; }
  .footer__inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center; }
  .footer__logo {
    margin-bottom: 30px; }
    .footer__logo img {
      height: 40px;
      width: auto;
      filter: brightness(0) invert(1); }
  .footer__nav {
    margin-bottom: 30px; }
    .footer__nav ul {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px 30px; }
      .footer__nav ul li a {
        font-size: 13px;
        color: rgba(255, 255, 255, 0.8); }
        .footer__nav ul li a:hover {
          color: #ffffff;
          opacity: 1; }
  .footer__copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5); }

.btn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #00a0e9;
  transition: gap 0.3s; }
  .btn-more:hover {
    gap: 12px;
    opacity: 1; }
  .btn-more i {
    font-size: 12px; }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #00a0e9, #4dc7ff);
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  padding: 16px 40px;
  border-radius: 8px;
  transition: opacity 0.3s, transform 0.3s; }
  .btn-primary:hover {
    opacity: 0.85;
    transform: translateY(-2px); }
  .btn-primary i {
    font-size: 14px; }
  .btn-primary--block {
    display: flex;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    height: 60px; }
    @media (max-width: 768px) {
      .btn-primary--block {
        max-width: 100%;
        font-size: 18px; } }

.js-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease; }
  .js-fadein.is-visible {
    opacity: 1;
    transform: translateY(0); }

.opening {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  opacity: 1;
  transition: opacity 0.8s ease; }
  .opening.is-hidden {
    opacity: 0;
    pointer-events: none; }
  .opening__content {
    text-align: center;
    opacity: 0;
    transform: translateY(10px);
    animation: openingFadeIn 1s ease 0.3s forwards; }
  .opening__logo {
    width: 160px;
    height: auto;
    margin-bottom: 30px; }
    @media (max-width: 768px) {
      .opening__logo {
        width: 120px;
        margin-bottom: 20px; } }
  .opening__text {
    font-family: "Noto Serif JP", serif;
    font-size: 20px;
    font-weight: 400;
    color: #00a0e9;
    line-height: 1.8; }
    @media (max-width: 768px) {
      .opening__text {
        font-size: 16px; } }

@keyframes openingFadeIn {
  to {
    opacity: 1;
    transform: translateY(0); } }
.page-kv {
  position: relative;
  width: 100%;
  height: 278px;
  margin-top: 60px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .page-kv {
      height: 200px;
      margin-top: 60px; } }
  .page-kv__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .page-kv__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .page-kv__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #92d5ff;
    mix-blend-mode: multiply;
    opacity: 0.6; }
  .page-kv__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 160, 233, 0.8);
    backdrop-filter: blur(2px);
    padding: 20px 60px;
    text-align: center; }
    @media (max-width: 768px) {
      .page-kv__title {
        padding: 15px 40px; } }
  .page-kv__title-en {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2; }
    @media (max-width: 768px) {
      .page-kv__title-en {
        font-size: 18px; } }
  .page-kv__title-ja {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.5; }
    @media (max-width: 768px) {
      .page-kv__title-ja {
        font-size: 26px; } }

.section-re-intro {
  padding: 80px 0 60px;
  text-align: center; }
  @media (max-width: 768px) {
    .section-re-intro {
      padding: 50px 0 40px; } }
  .section-re-intro .re-intro__img {
    max-width: 720px;
    margin: 0 auto 40px;
    aspect-ratio: 720 / 400;
    overflow: hidden; }
    .section-re-intro .re-intro__img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    @media (max-width: 768px) {
      .section-re-intro .re-intro__img {
        margin-bottom: 30px; } }
  .section-re-intro .re-intro__heading {
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 400;
    color: #3c3c3c;
    margin-bottom: 30px; }
    @media (max-width: 768px) {
      .section-re-intro .re-intro__heading {
        font-size: 24px;
        margin-bottom: 20px; } }
  .section-re-intro .re-intro__desc {
    max-width: 720px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 2;
    text-align: left; }

.section-re-category {
  padding: 0 0 80px; }
  @media (max-width: 768px) {
    .section-re-category {
      padding: 0 0 50px; } }
  .section-re-category .re-category__grid {
    display: flex;
    justify-content: center;
    gap: 30px; }
    @media (max-width: 768px) {
      .section-re-category .re-category__grid {
        flex-direction: column;
        gap: 20px;
        padding: 0 20px; } }
  .section-re-category .re-category__item {
    flex: 0 0 320px; }
    @media (max-width: 768px) {
      .section-re-category .re-category__item {
        flex: 1; } }
  .section-re-category .re-category__img {
    position: relative;
    width: 100%;
    aspect-ratio: 320 / 240;
    overflow: hidden; }
    .section-re-category .re-category__img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .section-re-category .re-category__label {
    position: absolute;
    bottom: 0;
    right: 0;
    background: rgba(0, 160, 233, 0.8);
    backdrop-filter: blur(2px);
    padding: 10px 24px;
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff; }
    @media (max-width: 768px) {
      .section-re-category .re-category__label {
        font-size: 18px;
        padding: 8px 18px; } }

.section-re-recommend {
  padding: 0 0 80px; }
  @media (max-width: 768px) {
    .section-re-recommend {
      padding: 0 0 50px; } }
  .section-re-recommend .re-recommend__banner {
    background: #00a0e9;
    max-width: 353px;
    margin: 0 auto 40px;
    padding: 14px 20px;
    text-align: center; }
    .section-re-recommend .re-recommend__banner span {
      font-size: 24px;
      font-weight: 600;
      color: #ffffff; }
      @media (max-width: 768px) {
        .section-re-recommend .re-recommend__banner span {
          font-size: 18px; } }
    @media (max-width: 768px) {
      .section-re-recommend .re-recommend__banner {
        max-width: 280px;
        margin-bottom: 30px; } }
  .section-re-recommend .re-recommend__grid {
    display: flex;
    justify-content: center;
    gap: 15px; }
    @media (max-width: 768px) {
      .section-re-recommend .re-recommend__grid {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 10px; } }
  .section-re-recommend .re-recommend__item {
    flex: 0 0 249px;
    border: 2px solid #00a0e9;
    padding: 20px 10px 15px;
    text-align: center; }
    @media (max-width: 768px) {
      .section-re-recommend .re-recommend__item {
        flex: 0 0 calc(50% - 10px); } }
  .section-re-recommend .re-recommend__icon {
    margin-bottom: 10px; }
    .section-re-recommend .re-recommend__icon img {
      width: 46px;
      height: 46px; }
      @media (max-width: 768px) {
        .section-re-recommend .re-recommend__icon img {
          width: 36px;
          height: 36px; } }
  .section-re-recommend .re-recommend__text {
    font-size: 16px;
    font-weight: 500;
    color: #00a0e9; }
    @media (max-width: 768px) {
      .section-re-recommend .re-recommend__text {
        font-size: 13px; } }

.re-property-heading {
  padding: 80px 0 50px;
  text-align: center; }
  @media (max-width: 768px) {
    .re-property-heading {
      padding: 50px 0 30px; } }
  .re-property-heading .re-property__heading {
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 400;
    color: #3c3c3c; }
    @media (max-width: 768px) {
      .re-property-heading .re-property__heading {
        font-size: 26px; } }

.section-re-property {
  padding: 60px 0 80px;
  background: rgba(146, 213, 255, 0.2); }
  @media (max-width: 768px) {
    .section-re-property {
      padding: 40px 0 50px; } }
  .section-re-property .re-property__grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px; }
    @media (max-width: 768px) {
      .section-re-property .re-property__grid {
        flex-wrap: wrap;
        gap: 15px;
        padding: 0 10px; } }
  .section-re-property .re-property__card {
    flex: 0 0 calc(25% - 15px);
    max-width: 277px;
    background: #ffffff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden; }
    @media (max-width: 768px) {
      .section-re-property .re-property__card {
        flex: 0 0 calc(50% - 10px);
        max-width: none; } }
  .section-re-property .re-property__card-img {
    width: 100%;
    aspect-ratio: 254 / 191;
    overflow: hidden;
    padding: 12px 12px 0; }
    .section-re-property .re-property__card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .section-re-property .re-property__card-body {
    padding: 15px 12px 20px; }
  .section-re-property .re-property__card-title {
    font-size: 16px;
    font-weight: 400;
    color: #3c3c3c;
    margin-bottom: 8px;
    text-align: center; }
  .section-re-property .re-property__card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 10px; }
  .section-re-property .re-property__card-tag {
    display: inline-block;
    border: 1px solid #00a0e9;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    color: #00a0e9;
    text-align: center; }
  .section-re-property .re-property__card-desc {
    font-size: 12px;
    line-height: 1.8;
    color: #3c3c3c;
    margin-bottom: 15px; }
  .section-re-property .re-property__card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #00a0e9, #4dc7ff);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0;
    border-radius: 46px;
    transition: opacity 0.3s; }
    .section-re-property .re-property__card-btn i {
      font-size: 12px; }
    .section-re-property .re-property__card-btn:hover {
      opacity: 0.85; }
  .section-re-property .re-property__action {
    text-align: center; }

.section-property-list {
  padding: 60px 0 80px;
  background: rgba(146, 213, 255, 0.2); }
  @media (max-width: 768px) {
    .section-property-list {
      padding: 40px 0 50px; } }
  .section-property-list .re-property__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
    margin-bottom: 50px; }
    @media (max-width: 768px) {
      .section-property-list .re-property__grid {
        gap: 15px;
        padding: 0 10px; } }
  .section-property-list .re-property__card {
    flex: 0 0 calc(25% - 15px);
    max-width: 277px;
    background: #ffffff;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s; }
    .section-property-list .re-property__card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); }
    @media (max-width: 768px) {
      .section-property-list .re-property__card {
        flex: 0 0 calc(50% - 10px);
        max-width: none; } }
  .section-property-list .re-property__card-img {
    width: 100%;
    aspect-ratio: 254 / 191;
    overflow: hidden;
    padding: 12px 12px 0; }
    .section-property-list .re-property__card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .section-property-list .re-property__card-body {
    padding: 15px 12px 20px; }
  .section-property-list .re-property__card-title {
    font-size: 16px;
    font-weight: 400;
    color: #3c3c3c;
    margin-bottom: 8px;
    text-align: center; }
  .section-property-list .re-property__card-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 10px; }
  .section-property-list .re-property__card-tag {
    display: inline-block;
    border: 1px solid #00a0e9;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 500;
    color: #00a0e9;
    text-align: center; }
  .section-property-list .re-property__card-desc {
    font-size: 12px;
    line-height: 1.8;
    color: #3c3c3c;
    margin-bottom: 15px; }
  .section-property-list .re-property__card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #00a0e9, #4dc7ff);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0;
    border-radius: 46px;
    transition: opacity 0.3s; }
    .section-property-list .re-property__card-btn i {
      font-size: 12px; }
    .section-property-list .re-property__card-btn:hover {
      opacity: 0.85; }
  .section-property-list .no-posts {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #666;
    padding: 40px 0; }
  .section-property-list .pagination {
    text-align: center; }

.section-cs-intro {
  padding: 80px 0 60px;
  text-align: center; }
  @media (max-width: 768px) {
    .section-cs-intro {
      padding: 50px 0 40px; } }
  .section-cs-intro .cs-intro__img {
    max-width: 720px;
    margin: 0 auto 40px;
    aspect-ratio: 720 / 400;
    overflow: hidden; }
    .section-cs-intro .cs-intro__img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    @media (max-width: 768px) {
      .section-cs-intro .cs-intro__img {
        margin-bottom: 30px; } }
  .section-cs-intro .cs-intro__heading {
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 400;
    color: #3c3c3c;
    line-height: 1.5;
    margin-bottom: 30px; }
    @media (max-width: 768px) {
      .section-cs-intro .cs-intro__heading {
        font-size: 24px;
        margin-bottom: 20px; } }
  .section-cs-intro .cs-intro__desc {
    max-width: 720px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 2;
    text-align: left; }

.section-cs-cost {
  padding: 60px 0 80px; }
  @media (max-width: 768px) {
    .section-cs-cost {
      padding: 40px 0 50px; } }
  .section-cs-cost .cs-cost__content {
    display: flex;
    align-items: flex-start;
    gap: 40px; }
    @media (max-width: 768px) {
      .section-cs-cost .cs-cost__content {
        flex-direction: column;
        gap: 25px; } }
  .section-cs-cost .cs-cost__img {
    flex: 0 0 45%;
    overflow: hidden; }
    .section-cs-cost .cs-cost__img img {
      width: 100%;
      height: auto; }
  .section-cs-cost .cs-cost__text {
    flex: 1; }
  .section-cs-cost .cs-cost__heading {
    font-family: "Noto Serif JP", serif;
    font-size: 30px;
    font-weight: 400;
    color: #3c3c3c;
    margin-bottom: 20px; }
    @media (max-width: 768px) {
      .section-cs-cost .cs-cost__heading {
        font-size: 22px; } }
  .section-cs-cost .cs-cost__desc {
    font-size: 13px;
    line-height: 2; }

.section-cs-paint {
  position: relative;
  padding: 120px 0 60px;
  overflow: hidden; }
  @media (max-width: 768px) {
    .section-cs-paint {
      padding: 80px 0 50px; } }
  .section-cs-paint .cs-paint__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .section-cs-paint .cs-paint__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .section-cs-paint .cs-paint__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #92d5ff;
    mix-blend-mode: multiply;
    opacity: 0.6; }
  .section-cs-paint .inner {
    position: relative;
    z-index: 1; }
  .section-cs-paint .cs-paint__card {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    background: #ffffff;
    max-width: 957px;
    margin: 0 auto;
    padding: 40px;
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
    overflow: visible; }
    @media (max-width: 768px) {
      .section-cs-paint .cs-paint__card {
        flex-direction: column;
        gap: 25px;
        padding: 25px 20px; } }
  .section-cs-paint .cs-paint__card-img {
    flex: 0 0 200px;
    margin-top: -130px; }
    .section-cs-paint .cs-paint__card-img img {
      width: 100%;
      height: auto; }
    @media (max-width: 768px) {
      .section-cs-paint .cs-paint__card-img {
        flex: none;
        width: 150px;
        margin: 0 auto; } }
  .section-cs-paint .cs-paint__card-text {
    flex: 1; }
  .section-cs-paint .cs-paint__card-heading {
    font-size: 20px;
    font-weight: 600;
    color: #00a0e9;
    margin-bottom: 15px; }
    @media (max-width: 768px) {
      .section-cs-paint .cs-paint__card-heading {
        font-size: 18px; } }
  .section-cs-paint .cs-paint__card-desc {
    font-size: 13px;
    line-height: 2;
    margin-bottom: 25px; }
  .section-cs-paint .cs-paint__card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #00a0e9, #4dc7ff);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 46px;
    transition: opacity 0.3s; }
    .section-cs-paint .cs-paint__card-btn i {
      font-size: 12px; }
    .section-cs-paint .cs-paint__card-btn:hover {
      opacity: 0.85; }

.section-cs-service {
  padding: 80px 0; }
  @media (max-width: 768px) {
    .section-cs-service {
      padding: 50px 0; } }
  .section-cs-service .cs-service__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; }
    @media (max-width: 768px) {
      .section-cs-service .cs-service__grid {
        gap: 20px; } }
  .section-cs-service .cs-service__item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: 298px;
    border: 1px solid #ddd;
    overflow: hidden; }
    @media (max-width: 768px) {
      .section-cs-service .cs-service__item {
        flex: 0 0 calc(50% - 10px);
        max-width: none; } }
  .section-cs-service .cs-service__item-title {
    background: #3c3c3c;
    padding: 12px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    line-height: 1.6;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .section-cs-service .cs-service__item-img {
    width: 100%;
    aspect-ratio: 298 / 171;
    overflow: hidden; }
    .section-cs-service .cs-service__item-img img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .section-cs-service .cs-service__item-desc {
    padding: 15px;
    font-size: 12px;
    line-height: 1.8;
    color: #3c3c3c; }

.section-about-vision {
  padding: 80px 0 60px;
  text-align: center; }
  @media (max-width: 768px) {
    .section-about-vision {
      padding: 50px 0 40px; } }
  .section-about-vision .about-vision__label {
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 400;
    color: #00a0e9;
    margin-bottom: 10px; }
  .section-about-vision .about-vision__heading {
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 400;
    color: #3c3c3c;
    line-height: 1.9;
    margin-bottom: 40px; }
    @media (max-width: 768px) {
      .section-about-vision .about-vision__heading {
        font-size: 22px;
        margin-bottom: 30px; } }
  .section-about-vision .about-vision__img {
    max-width: 737px;
    margin: 0 auto 40px; }
    .section-about-vision .about-vision__img img {
      width: 100%;
      height: auto; }
    @media (max-width: 768px) {
      .section-about-vision .about-vision__img {
        margin-bottom: 30px; } }
  .section-about-vision .about-vision__desc {
    max-width: 913px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 2;
    text-align: left; }

.section-about-message {
  padding: 60px 0 80px; }
  @media (max-width: 768px) {
    .section-about-message {
      padding: 40px 0 50px; } }
  .section-about-message .about-message__label {
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 400;
    color: #00a0e9;
    line-height: 1;
    margin-bottom: 16px; }
  .section-about-message .about-message__heading {
    font-family: "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 400;
    color: #3c3c3c;
    line-height: 1;
    margin-bottom: 60px; }
    @media (max-width: 768px) {
      .section-about-message .about-message__heading {
        font-size: 24px;
        margin-bottom: 40px; } }
  .section-about-message .about-message__content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto; }
    @media (max-width: 768px) {
      .section-about-message .about-message__content {
        flex-direction: column;
        gap: 30px; } }
  .section-about-message .about-message__photo {
    flex: 0 0 440px;
    background: #d9d9d9;
    aspect-ratio: 440 / 561;
    overflow: hidden; }
    .section-about-message .about-message__photo img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    @media (max-width: 768px) {
      .section-about-message .about-message__photo {
        flex: none;
        width: 100%;
        max-width: 300px;
        margin: 0 auto; } }
  .section-about-message .about-message__text {
    flex: 1; }
  .section-about-message .about-message__name {
    font-size: 24px;
    font-weight: 400;
    color: #3c3c3c;
    line-height: 1;
    margin-bottom: 37px; }
    @media (max-width: 768px) {
      .section-about-message .about-message__name {
        font-size: 18px;
        margin-bottom: 25px; } }
  .section-about-message .about-message__body {
    font-size: 13px; }
    .section-about-message .about-message__body p {
      margin-bottom: 27px;
      line-height: 2.08; }
      .section-about-message .about-message__body p:last-child {
        margin-bottom: 0; }

.section-about-company {
  padding: 60px 0 100px; }
  @media (max-width: 768px) {
    .section-about-company {
      padding: 40px 0 60px; } }
  .section-about-company .about-company__label {
    font-family: "Noto Serif JP", serif;
    font-size: 24px;
    font-weight: 400;
    color: #00a0e9;
    text-align: center;
    margin-bottom: 10px; }
  .section-about-company .about-company__heading {
    font-family: "Noto Serif JP", serif;
    font-size: 40px;
    font-weight: 400;
    color: #3c3c3c;
    text-align: center;
    margin-bottom: 20px; }
    @media (max-width: 768px) {
      .section-about-company .about-company__heading {
        font-size: 28px; } }
  .section-about-company .about-company__divider {
    width: 1px;
    height: 80px;
    background: #00a0e9;
    margin: 0 auto 50px; }
    @media (max-width: 768px) {
      .section-about-company .about-company__divider {
        height: 50px;
        margin-bottom: 30px; } }
  .section-about-company .about-company__table {
    max-width: 800px;
    margin: 0 auto; }
  .section-about-company .about-company__row {
    display: flex;
    border-top: 1px solid #ddd; }
    .section-about-company .about-company__row:last-child {
      border-bottom: 1px solid #ddd; }
    @media (max-width: 768px) {
      .section-about-company .about-company__row {
        flex-direction: column; } }
  .section-about-company .about-company__row dt {
    flex: 0 0 150px;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #00a0e9; }
    @media (max-width: 768px) {
      .section-about-company .about-company__row dt {
        flex: none;
        padding: 12px 15px 5px; } }
  .section-about-company .about-company__row dd {
    flex: 1;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #3c3c3c; }
    @media (max-width: 768px) {
      .section-about-company .about-company__row dd {
        padding: 5px 15px 12px; } }

.section-contact-form {
  padding: 60px 0 100px; }
  @media (max-width: 768px) {
    .section-contact-form {
      padding: 40px 0 60px; } }
  .section-contact-form .contact-form__intro {
    font-size: 13px;
    text-align: center;
    margin-bottom: 40px; }
  .section-contact-form .contact-form__wrap {
    max-width: 600px;
    margin: 0 auto; }

.wpcf7 .wpcf7-form p {
  margin-bottom: 25px; }
.wpcf7 .wpcf7-form label {
  display: block;
  font-size: 13px;
  color: #3c3c3c;
  margin-bottom: 8px; }
.wpcf7 .wpcf7-form .required {
  display: inline-block;
  background: #00a0e9;
  color: #ffffff;
  font-size: 11px;
  font-weight: 500;
  padding: 2px 10px;
  margin-left: 10px;
  vertical-align: middle; }
.wpcf7 .wpcf7-form input[type="text"],
.wpcf7 .wpcf7-form input[type="email"],
.wpcf7 .wpcf7-form input[type="tel"] {
  width: 100%;
  height: 51px;
  padding: 0 15px;
  font-size: 14px;
  background: #ffffff;
  border: 1px solid #999;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s; }
  .wpcf7 .wpcf7-form input[type="text"]:focus,
  .wpcf7 .wpcf7-form input[type="email"]:focus,
  .wpcf7 .wpcf7-form input[type="tel"]:focus {
    border-color: #00a0e9; }
.wpcf7 .wpcf7-form textarea {
  width: 100%;
  height: 286px;
  padding: 15px;
  font-size: 14px;
  background: #ffffff;
  border: 1px solid #999;
  border-radius: 5px;
  outline: none;
  resize: vertical;
  transition: border-color 0.3s; }
  .wpcf7 .wpcf7-form textarea:focus {
    border-color: #00a0e9; }
.wpcf7 .wpcf7-form .form-submit {
  text-align: center;
  margin-top: 40px; }
.wpcf7 .wpcf7-form input[type="submit"] {
  position: relative;
  display: inline-block;
  width: 400px;
  max-width: 100%;
  height: 60px;
  background: linear-gradient(to right, #00a0e9, #4dc7ff);
  border: none;
  border-radius: 8px;
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s; }
  .wpcf7 .wpcf7-form input[type="submit"]:hover {
    opacity: 0.8; }
  @media (max-width: 768px) {
    .wpcf7 .wpcf7-form input[type="submit"] {
      width: 100%;
      font-size: 18px;
      height: 50px; } }
.wpcf7 .wpcf7-form .wpcf7-not-valid-tip {
  color: #c00;
  font-size: 12px;
  margin-top: 5px; }
.wpcf7 .wpcf7-form .wpcf7-response-output {
  margin: 20px 0 0;
  padding: 15px;
  border-radius: 5px;
  font-size: 14px;
  text-align: center; }
.wpcf7 .wpcf7-form .wpcf7-mail-sent-ok {
  border-color: #46b450;
  color: #46b450; }
.wpcf7 .wpcf7-form .wpcf7-validation-errors {
  border-color: #c00;
  color: #c00; }

.section-property-detail {
  padding: 60px 0 80px; }
  @media (max-width: 768px) {
    .section-property-detail {
      padding: 40px 0 50px; } }
  .section-property-detail .inner {
    max-width: 800px; }

.property-detail__title {
  font-size: 32px;
  font-weight: 400;
  color: #00a0e9;
  margin-bottom: 15px; }
  @media (max-width: 768px) {
    .property-detail__title {
      font-size: 24px; } }

.property-detail__tags {
  display: flex;
  gap: 10px;
  margin-bottom: 20px; }

.property-detail__tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  color: #00a0e9;
  border: 1px solid #00a0e9;
  padding: 4px 12px;
  line-height: 1; }

.property-detail__divider {
  width: 100%;
  height: 1px;
  background: #00a0e9;
  margin-bottom: 30px; }

.property-detail__gallery {
  margin-bottom: 30px; }

.property-detail__main-img {
  width: 100%;
  aspect-ratio: 720 / 540;
  overflow: hidden;
  margin-bottom: 15px; }
  .property-detail__main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; }

.property-detail__thumbs {
  display: flex;
  gap: 15px; }
  @media (max-width: 768px) {
    .property-detail__thumbs {
      gap: 10px; } }

.property-detail__thumb {
  flex: 1;
  aspect-ratio: 137 / 103;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s; }
  .property-detail__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s; }
  .property-detail__thumb:hover img {
    opacity: 0.8; }
  .property-detail__thumb.is-active {
    border-color: #00a0e9; }

.property-detail__desc {
  font-size: 13px;
  line-height: 2;
  margin-bottom: 30px; }

.property-detail__info {
  border-top: 1px solid #ddd; }

.property-detail__info-row {
  display: flex;
  border-bottom: 1px solid #ddd; }
  @media (max-width: 768px) {
    .property-detail__info-row {
      flex-direction: column; } }
  .property-detail__info-row dt {
    flex: 0 0 150px;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #00a0e9; }
    @media (max-width: 768px) {
      .property-detail__info-row dt {
        flex: none;
        padding: 12px 15px 5px; } }
  .property-detail__info-row dd {
    flex: 1;
    padding: 15px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #3c3c3c; }
    @media (max-width: 768px) {
      .property-detail__info-row dd {
        padding: 5px 15px 12px; } }

.section-property-contact {
  padding: 60px 0 100px; }
  @media (max-width: 768px) {
    .section-property-contact {
      padding: 40px 0 60px; } }

.property-contact__heading {
  font-family: "Noto Serif JP", serif;
  font-size: 40px;
  font-weight: 400;
  color: #3c3c3c;
  text-align: center;
  margin-bottom: 20px; }
  @media (max-width: 768px) {
    .property-contact__heading {
      font-size: 24px; } }

.property-contact__line {
  width: 1px;
  height: 80px;
  background: #00a0e9;
  margin: 0 auto 50px; }
  @media (max-width: 768px) {
    .property-contact__line {
      height: 50px;
      margin-bottom: 30px; } }

.property-contact__form {
  max-width: 600px;
  margin: 0 auto; }
