@charset "UTF-8";
*,
*::before,
*::after {
    box-sizing: border-box;
}


/* Remove default margin */

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul {
    margin: 0;
}


/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}


/* Set core root defaults */

html:focus-within {
    scroll-behavior: smooth;
}


/* Set core body defaults */

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";

}


/* A elements that don't have a class get default styles */

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}


/* Make images easier to work with */

img,
picture {
    max-width: 100%;
    height: inherit;
    display: block;
}


/* Inherit fonts for inputs and buttons */

input,
button,
textarea,
select {
    font: inherit;
}


/* Remove all animations and transitions for people that prefer not to see them */

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

button {
    padding: 0;
    border: none;
    outline: none;
    font: inherit;
    color: inherit;
    background: none;
}

.contact input[type=submit],
.contact input[type=button] {
    border-radius: 0px;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    background: transparent;
}

.contact input[type=submit]::-webkit-search-decoration,
.contact input[type=button]::-webkit-search-decoration {
    display: none;
}


/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/


/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/


/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/


/*****************************************
 * maxremの計算
 * 参考
******************************************/

html {
    font-size: 16px;
}

@media (max-width: 1240px) {
    html {
        font-size: 1.2903225806vw;
    }
}

@media screen and (max-width: 767px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 375px) {
    html {
        font-size: 4.2666666667vw;
    }
}

body {
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    font-weight: 400;
    color: #474747;
    line-height: 1.5;
    background-color: #ffffff;
}

body.no-scroll {
    overflow: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s;
}

a {
    opacity: 1;
}

@media (any-hover: hover) {
    a:hover {
        opacity: 0.7;
    }
}

@media screen and (any-hover: hover) and (max-width: 767px) {
    a:hover {
        opacity: 1;
    }
}

a[href^="tel:"] {
    pointer-events: none;
}

@media screen and (max-width: 767px) {
    a[href^="tel:"] {
        pointer-events: auto;
    }
}


.lead-text {
    font-size: 1.125rem;
}

.our-service-layout {
    margin-top: 5.75rem;
}
@media screen and (max-width: 767px) {
    .our-service-layout {
        margin-top: 4rem;
    }
}
.our-service-lead {
    margin-top:2rem;
}
@media screen and (max-width: 767px) {
    .our-service-lead {
        margin-top:1rem;
    }
}
/* ▼ our-service
----------------------------------*/
.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)); /* ← ここを2列固定に */
  gap: 2.5rem;
  row-gap: 5rem; /* ← 行間（＝2段目のmargin-top）を広げる */
  margin-top: 3rem;
}
/* 各ボックス */
.service-item {
     display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-item:hover {
  transform: translateY(-4px);
}

/* 画像部分：角丸をつける */
.service-thumb {
  position: relative;
  aspect-ratio: 16 / 6.5;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 auto;
}
.service-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-item:hover .service-thumb img {
  transform: scale(1.05);
}

/* タイトル（画像中央配置） */
.service-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  color: #fff;
  text-align: center;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.6;
  text-shadow:
  0 0 5px rgba(0,0,0,1),
  0 0 10px rgba(0,0,0,0.9),
  0 0 15px rgba(0,0,0,0.8);
}
.service-title span {
  display: block;
  font-size: 1.0rem;
  font-weight: 400;
  opacity: 0.9;
}

/* 本文部分 */
.service-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* h4/p/ボタンのバランスを保つ */
  padding: 1.0rem 0 0;
  text-align: center;
}
.service-body h4 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 0.8rem;
  /* 削除！ 1行のときは1行分の高さになる */
  /* min-height: 3.5em; */ 
}
.service-body p {
  text-align: left;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #333;
  /* 重要な変更点：h4 の高さ変動を吸収するために、p の flex-grow: 1; を残し、min-heightは維持*/
  margin-bottom: 0rem;
  flex-grow: 1;
  min-height: 5.4em; /* pタグを約3行分の高さに保つ */
}

/* ボタン中央揃え */
.service-body .btn-orange {
  display: inline-block;
  background: #f38b00;
  color: #fff;
  font-weight: 700;
  font-size: 1.0rem;
  padding: 1rem 1.75rem;
  border-radius: 4px;
  text-decoration: none;
  transition: background 0.3s ease, opacity 0.3s ease;
  margin: 0 auto;
  align-self: center;  /* 中央揃え */
  margin-top: auto;    /* 下に固定 */
}
.service-item .btn-orange {
  pointer-events: none; /* ← ボタンの見た目だけ残して親aにクリックを渡す */
}
.service-body {
  text-align: center; /* ← ボタンを中央揃えに */
}
.btn-orange:hover {
  background: #d97600;
  opacity: 0.9;
}

/* 追加 1つ目のサービス（不動産売却仲介）を横長にする */
/*
.service-list .service-item:first-child {
  grid-column: span 2;
}
.service-list .service-item:first-child .service-thumb {
  aspect-ratio: 400 / 95;
}*/




/* レスポンシブ */
@media (max-width: 768px) {
    .service-thumb {
  border-radius: 8px;
}
    .service-list {
    grid-template-columns: 1fr; /* タブレット以下は1列 */
    gap: 4rem;
    margin-top:2rem;
    }
    .service-body {
    padding: 1.5rem 1rem 1.75rem;
    }
    .service-title {
    width: 100%;
      font-size: 1.5rem;
    }

    .service-body {
    padding: 1.0rem 0 0;
    width: 100%;
    }
    .service-body h4 {
    font-size: 1.4rem;
    margin-bottom: 0rem;
    line-height: 1.35;
    min-height:auto;
    }
    .service-body p {
    font-size: 1rem;
    margin-top: 0.5rem;
    min-height:auto;
    margin-bottom: 0.8rem;
    font-size: 1.0rem;
    }
    .service-body .btn-orange {
        width: 85%;
        margin-top:5px;
    }

/* 追加 1つ目のサービス（不動産売却仲介）を横長にする */
    /*.service-list .service-item:first-child {
        grid-column: span 1;
      }
      .service-list .service-item:first-child .service-thumb {
        aspect-ratio: 16 / 7;
      }*/
}

  








.about-layout {
    margin-top: 8.75rem;
}

@media screen and (max-width: 767px) {
    .about-layout {
        margin-top: 5rem;
    }
}

.company-layout {
    margin-top: 8.75rem;
}

@media screen and (max-width: 767px) {
    .company-layout {
        margin-top: 5rem;
    }
}

.contact-layout {
    margin-top: 8.75rem;
}

@media screen and (max-width: 767px) {
    .contact-layout {
        margin-top: 5rem;
    }
}



.footer-layout {
    margin-top: 7.875rem;
    padding-bottom: 2.1875rem;
}

@media screen and (max-width: 767px) {
    .footer-layout {
        margin-top: 3rem;
        padding-bottom: 1.125rem;
    }
}

.header-layout {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    margin-top:15px;
}

@media screen and (max-width: 767px) {
    .header-layout {
        padding-block: 0.625rem;
    }
}

.inner-second {
    padding-inline: 30px;
    max-width: 1300px;
    width: 100%;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .inner-second {
        max-width: 656px;
        padding-inline: 28px;
    }
}

.inner {
    padding-inline: 30px;
    max-width: 1300px;
    width: 100%;
    margin: auto;
}

@media screen and (max-width: 767px) {
    .inner {
        max-width: 640px;
        padding-inline: 20px;
    }
}

.language-bar-layout {
    margin-top: 1.125rem;
    margin-bottom: 0.25rem;
}

.policy-layout {
    margin-top: 2rem;
}

@media screen and (max-width: 767px) {
    .policy-layout {
        margin-top: 2rem;
    }
}

.sell-property-layout {
    padding-top: 7.25rem;
}

@media screen and (max-width: 767px) {
    .sell-property-layout {
        padding-top: 1.5625rem;
    }
}

.c-text {
    font-size: 1.125rem;
    font-weight: 400;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #474747;
    line-height: 1.7222222222;
}

@media screen and (max-width: 767px) {
    .c-text {
        font-size: 1.0rem;
        line-height:1.55;
        /*font-size: max(10px, clamp(0.625rem, 2.041vw + 0.147rem, 1.125rem));*/
    }
}

.c-text-white {
    font-size: 1.125rem;
    font-weight: 400;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #ffffff;
    line-height: 1.7222222222;
}

@media screen and (max-width: 767px) {
    .c-text-white {
        font-size: 1.0rem;
        font-size: max(10px, clamp(0.625rem, 2.041vw + 0.147rem, 1.125rem));
    }
}

.common-btn {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #ffffff;
    line-height: 1.7222222222;
    background-color: #e69635;
    padding-block: 0.59375rem;
    max-width: 227px;
    width: 100%;
    display: block;
    text-align: center;
    border: 1px solid #e69635;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
    .common-btn {
        font-size: max(10px, clamp(0.625rem, 2.041vw + 0.147rem, 1.125rem));
    }
}

@media (any-hover: hover) {
    .common-btn:hover {
        background-color: #ffffff;
        color: #e69635;
        border: 1px solid #e69635;
    }
}

.common-title.common-title--white .common-title__en {
    color: #ffffff;
}

.common-title__en {
    font-size: 2.8125rem;
    font-weight: 300;
    font-family: "Noto Sans Thai", sans-serif;
    color: #023d7f;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .common-title__en {
        font-size: clamp(1.4375rem, 5.612vw + 0.122rem, 2.8125rem);
        /* 23 ~ 45 | 375 ~ 767 */
    }
}

.common-title__ja {
    margin-top: 0.3125rem;
    /*font-size: 1.25rem;*/
    font-size: 2.3rem;
    font-weight: 300;
    /*color: #e69635;*/
    color: #023d7f;
    line-height: 1;
}

@media screen and (max-width: 767px) {
    .common-title__ja {
        margin-top: 0.125rem;
        /*font-size: max(12px, clamp(0.75rem, 2.041vw + 0.272rem, 1.25rem));*/
        font-size: 1.8rem;
    }
}

.about__container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 4.25rem;
    margin-top: 2.625rem;
}

@media screen and (max-width: 767px) {
    .about__container {
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }
}

.about__content {
    flex: 1;
}

@media screen and (max-width: 767px) {
    .about__content {
        display: contents;
    }
}

.about__header {
    padding-top: 0.5rem;
}

@media screen and (max-width: 767px) {
    .about__header {
        padding-top: 0;
        order: 0;
    }
}

.about__catch {
    margin-top: 2rem;
  font-size: 2.5rem;
  font-weight: 700;
  font-family: "hiragino-kaku-gothic-pron", sans-serif;
  color: #023d7f;
  line-height: 1.25;
  font-feature-settings: "palt";
  width: 100%;
  max-width: none;         /* ← 制限解除 */
  flex-basis: 100%;        /* ← flex内でも全幅を取る */
}

@media screen and (max-width: 767px) {
    .about__catch {
        margin-top: 1.5rem;
        font-size: clamp(1.25rem, 5.102vw + 0.054rem, 2.5rem);
        order: 2;
        line-height: 1.35;
        font-weight: 500;
    }
}

/*
.about__text-block {
    margin-top: 4.625rem;
}*/

@media screen and (max-width: 767px) {
    .about__text-block {
        order: 4;
        margin-top: 1.125rem;
    }
}

.about__text:not(:first-child) {
    margin-top: 1.625rem;
}

@media screen and (max-width: 767px) {
    .about__text:not(:first-child) {
        margin-top: 1rem;
    }
    .about__text {
        font-size: 1.0rem;
        line-height: 1.75!important;
    }
}

.about__img {
    max-width: 554px;
    width: 44.6774193548%;
    /*aspect-ratio: 554/777;*/
    border-radius: 0.625rem;
    overflow: hidden;
}

@media screen and (max-width: 767px) {
    .about__img {
        margin-top: 1.6875rem;
        order: 3;
        max-width: 560px;
        width: 100%;
        aspect-ratio: 560/456;
        margin-inline: auto;
    }
}

.about__img img {
    width: 100%;
    height: calc(100% + 100px);
    border-radius: 0.625rem;
    -o-object-fit: cover;
    object-fit: cover;
}

@media screen and (max-width: 767px) {
    .about__img img {
        height: calc(100% + 50px);
    }
}

.all-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.main {
    flex: 1;
}

@keyframes fadeInAnime {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}


@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.js-fadeIn {
    opacity: 0;
}

.js-fadeIn.is-active {
    animation: fadeIn 1s linear forwards;
}






.company__content {
    display: flex;
    gap: 0px;
}

@media screen and (max-width: 767px) {
    .company__content {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
}

.company__header {
    width: 470px!important;
}
@media screen and (max-width: 767px) {
    .company__content {
        flex-direction: column;
    }
}



.company__logo img {
    width: 100%;
    aspect-ratio: 75/103;
    -o-object-fit: cover;
    object-fit: cover;
}
.company__info {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .company__info {
        margin-top: 2.125rem;
    }
}

.company__item {
    display: flex;
    align-items: flex-start;
    gap: 3.25rem;
}


@media screen and (max-width: 767px) {
    .company__item {
        gap: 0.625rem;
        display: block;
        margin-bottom: 30px;
    }
    .company__item:last-child {
        margin-bottom: 0px;
    }
    .company__item dt {
        font-weight:bold;
    }
    .company__item dt {
        font-size: 1.0rem;
    }
}

.company__item:not(:first-child) {
    margin-top: 1.25rem;
}

@media screen and (max-width: 767px) {
    .company__item:not(:first-child) {
        margin-top: 0.625rem;
    }
}

.company__label {
    flex: 0 0 80px;
    font-weight: 400;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #474747;
    line-height: 1.7333333333;
}

/*@media screen and (max-width: 767px) {
    .company__label {
        flex: 0 0 60px;
        font-size: max(10px, clamp(0.625rem, 1.276vw + 0.326rem, 0.9375rem));
    }
}*/

.company__text {
    flex: 1;
    font-size: 1.0rem;
    font-weight: 400;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #474747;
    line-height: 1.7333333333;
}

@media screen and (max-width: 767px) {
    .company__text {
        font-size: max(10px, clamp(0.625rem, 1.276vw + 0.326rem, 0.9375rem));
    }
}

.contact__content {
    display: flex;
    gap: 8.064516129%;
}
.contact__header {
    width: 470px!important;
}
@media screen and (max-width: 767px) {
  .company__header,
  .contact__header {
    width: 100% !important;   /* 固定幅を解除して親幅に合わせる */
  }
}


@media screen and (max-width: 767px) {
    .contact__content {
        flex-direction: column;
    }
}

@media screen and (max-width: 767px) {
    .contact__description {
        margin-top: 1.1875rem;
    }
}

.contact__info {
    margin-top: 5.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5.875rem;
}

@media screen and (max-width: 767px) {
    .contact__info {
        margin-top: 2.5rem;
        gap: 3.125rem;
        flex-direction: column;
    }
}

.contact__line {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.125rem;
}

.contact__line-id {
    font-size: 1.125rem;
    font-weight: 700;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #00b300;
    line-height: 1.4166666667;
}

@media screen and (max-width: 767px) {
    .contact__line-id {
        /*font-size: max(10px, clamp(0.625rem, 2.041vw + 0.147rem, 1.125rem));*/
        font-size: 1.0rem;
    }
}

.contact__img {
    max-width: 170px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .contact__img {
        max-width: 140px;
    }
}

.contact__img img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
}

.contact__tel {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.125rem;
}

.contact__tel-label {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #474747;
    line-height: 1.4;
}

@media screen and (max-width: 767px) {
    .contact__tel-label {
        /*font-size: max(10px, clamp(0.625rem, 2.041vw + 0.147rem, 1.125rem));*/
        font-size: 1.0rem;
    }
}

.contact__tel-number {
    display: block;
    font-size: 2.125rem;
    font-weight: 800;
    font-family: "Noto Sans Thai", sans-serif;
    color: #474747;
    line-height: 1.4117647059;
}

@media screen and (max-width: 767px) {
    .contact__tel-number {
        font-size: max(16px, clamp(1.0625rem, 4.337vw + 0.046rem, 2.125rem));
    }
}

.contact__form {
    margin-top: 5.875rem;
    max-width: 765px;
    margin-inline: auto;
}

@media screen and (max-width: 767px) {
    .contact__form {
        margin-top: 2rem;
    }
}

.contact__item:not(:first-child) {
    margin-top: 0.75rem;
}

@media screen and (max-width: 767px) {
    .contact__item:not(:first-child) {
        margin-top: 0.4375rem;
    }
}

input[type=text],
input[type=email],
textarea {
    width: 100%;
    padding: 0.5rem 0.75rem;
    background: #fbfbfb;
    border: none;
    outline: none;
    transition: 0.3s;
    font-size: max(12px, 1.125rem);
    font-weight: 400;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #474747;
    line-height: 1;
    letter-spacing: 0.1em;
    border: 1px solid #474747;
}

@media screen and (max-width: 767px) {
    input[type=text],
    input[type=email],
    textarea {
        padding: 0.34375rem 0.75rem;
        font-size: max(12px, 0.75rem);
    }
}

input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
textarea::-moz-placeholder {
    color: #474747;
}

input[type=text]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
    color: #474747;
}

textarea {
    height: 134px;
    padding: 0.5rem 0.75rem;
    line-height: 1.2857142857;
    resize: vertical;
}

@media screen and (max-width: 767px) {
    textarea {
        height: 80px;
        padding: 0.625rem 0.75rem;
    }
}

.contact__submit {
    margin-top: 0.625rem;
}

@media screen and (max-width: 767px) {
    .contact__submit {
        margin-top: 1.5rem;
    }
}

.contact__submit .contact__button.common-btn {
    margin-inline: auto;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #ffffff;
    line-height: 1.7222222222;
    background-color: #e69635;
    padding-block: 0.59375rem;
    max-width: 227px;
    width: 100%;
    display: block;
    text-align: center;
    border: 1px solid #e69635;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

@media screen and (max-width: 767px) {
    .contact__submit .contact__button.common-btn {
        /*font-size: max(10px, clamp(0.625rem, 2.041vw + 0.147rem, 1.125rem));*/
        font-size: 1.0rem;
        max-width: 150px;
        padding-block: 0.375rem;
    }
}

@media (any-hover: hover) {
    .contact__submit .contact__button.common-btn:hover {
        background-color: #ffffff;
        color: #e69635;
        border: 1px solid #e69635;
    }
}

.contact__button {
    width: 100%;
    max-width: 100%;
}

@media screen and (max-width: 767px) {
    .contact__button {
        width: 69%;
    }
}



.footer__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .footer__content {
        flex-direction: column;
        gap: 0;
    }
}

.footer__links {
    display: flex;
    gap: 2.25rem;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .footer__links {
        gap: 0.9375rem;
    }
}

.footer__sns-link {
    display: block;
    max-width: 43px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .footer__sns-link {
        max-width: 23px;
    }
}

.footer__sns-link img {
    width: 100%;
    aspect-ratio: 43/43;
    -o-object-fit: cover;
    object-fit: cover;
}

.footer__privacy-link {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #474747;
    line-height: 1.9375;
}

@media screen and (max-width: 767px) {
    .footer__privacy-link {
        font-size: max(10px, clamp(0.625rem, 1.531vw + 0.266rem, 1rem));
    }
}

.footer__copyright {
    font-size: 0.8125rem;
    font-weight: 400;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #474747;
    line-height: 1.3846153846;
}

@media screen and (max-width: 767px) {
    .footer__copyright {
        margin-top: 2.625rem;
        font-size: 10px;
    }
}

.google-reviews {
    margin-top: 8.75rem;
    /*padding-bottom: 6.875rem;*/
}
.google-reviews .common-title__ja {
    margin-bottom:40px;
}

@media screen and (max-width: 767px) {
    .google-reviews {
        margin-top: 5rem;
        padding-bottom: 2.5rem;
    }
}

.drawer {
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    transition: 0.6s;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.95);
}

.drawer-nav {
    padding: 5.9375rem 3.125rem 3.125rem;
    margin-inline: auto;
    max-width: 500px;
    opacity: 0;
}

.drawer-nav.is-open {
    animation-name: fadeInAnime;
    animation-duration: 0.8s;
    animation-delay: 0.3s;
    animation-fill-mode: forwards;
}

.drawer-nav__list {
    display: flex;
  flex-direction: column;
  align-items: flex-start; /* ← 子要素は左揃え */
  width: 220px;         /* または max-width */
  margin: 0 auto;       /* ← 中央配置 */
}

.drawer-nav__link {
    padding: 1.3rem 1.875rem;
    display: block;
    font-size: clamp(16px, 2.041vw + 0.522rem, 1.5rem);

    font-weight: 500;
    line-height: 1.4090909091;
    color: #474747;

}

.drawer-nav__contact {
    margin-top: 3.6875rem;
}

.drawer-contact__info {
    display: flex;
    align-items: center;
    justify-content: center;
}

.drawer-contact__line {
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.125rem;
}

.drawer-contact__line-id {
    font-size: max(12px, clamp(0.75rem, 2.041vw + 0.272rem, 1.25rem));
    font-weight: 700;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #00b300;
    line-height: 1.4166666667;
}

.drawer-contact__img {
    max-width: 80px;
    width: 100%;
}

.drawer-contact__img img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
}

.drawer-contact__tel {
    width: 50%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.125rem;
}

.drawer-contact__tel-label {
    font-size: 10px;
    font-weight: 500;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #474747;
    line-height: 1.4;
}

.drawer-contact__tel-number {
    display: block;
    font-size: 1.0625rem;
    font-weight: 800;
    font-family: "Noto Sans Thai", sans-serif;
    color: #474747;
    line-height: 1.4117647059;
}

.drawer-contact__button {
    margin-top: 2.5rem;
}

.drawer-contact__link-button {
    margin-inline: auto;
    font-size: 1rem;
}
.drawer-contact__sns {
    display:flex;
    width: 50%;
    gap: 0px;
    margin:0 auto;
}

.drawer-contact__sns-link {
    max-width: 32px;
    width: 32px;
    display: block;
    margin-inline: auto;
    margin-top: 2.5rem;
}

.drawer-contact__sns-link img {
    width: 100%;
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
}

.hamburger {
    position: relative;
    cursor: pointer;
    width: 2.6875rem;
    height: 2.3125rem;
    z-index: 999;
}

.hamburger__bar {
    position: absolute;
    display: block;
    width: 1.59375rem;
    height: 0.1875rem;
    background-color: #e69635;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
    border-radius: 9999px;
}

.hamburger__bar:nth-of-type(1) {
    top: 26%;
}

.hamburger__bar:nth-of-type(2) {
    top: 50%;
}

.hamburger__bar:nth-of-type(3) {
    top: 74%;
}

.hamburger.is-open .hamburger__bar:nth-of-type(1),
.hamburger.is-open .hamburger__bar:nth-of-type(3) {
    top: 50%;
    background-color: #e69635;
    width: 1.25rem;
}

.hamburger.is-open .hamburger__bar:nth-of-type(1) {
    transform: translate(-50%, -50%) rotate(47deg);
}

.hamburger.is-open .hamburger__bar:nth-of-type(2) {
    opacity: 0;
}

.hamburger.is-open .hamburger__bar:nth-of-type(3) {
    transform: translate(-50%, -50%) rotate(-47deg);
}

.header-nav__list {
    display: flex;
    align-items: center;
}

.header-nav__item.header-nav__item--contact {
    margin-left: 2.625rem;
}

.header-nav__link {
    padding: 1.0625rem 1.5625rem;
    display: block;
    font-size: max(10px, clamp(0.625rem, 1.531vw + 0.266rem, 1rem));
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: #474747;
    letter-spacing: 0.007em;
}


@media screen and (max-width: 767px) {
    .header-nav__link {
        display: none;
    }
}

.header-nav__link:hover {
    opacity: 1;
}

.header-nav__link span {
    position: relative;
}

.header-nav__link span:after {
    background-color: #e69635;
    bottom: -10px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.5s;
    width: 100%;
}

.header-nav__link:hover span:after {
    transform: scale(1, 1);
}

.header-nav__link.common-btn {
    font-size: 1.125rem;
    font-weight: 500;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #ffffff;
    line-height: 1.7222222222;
    background-color: #e69635;
    padding-block: 0.59375rem;
    max-width: 227px;
    width: clamp(145px, 11.202vw + 58.967px, 227px);
    display: block;
    text-align: center;
    border: 2px solid #e69635;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

@media (any-hover: hover) {
    .header-nav__link.common-btn:hover {
        background-color: #ffffff;
        color: #e69635;
        border: 2px solid #e69635;
    }
}

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__logo {
    z-index: 1000;
    max-width: 82px;
    width: 100%;
}

@media screen and (max-width: 767px) {
    .header__logo {
        max-width: 46px;
    }
}

.header__logo img {
    width: 100%;
    aspect-ratio: 82/101;
    -o-object-fit: contain;
    object-fit: contain;
}

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

@media screen and (max-width: 767px) {
    .header__hamburger-wrapper {
        display: flex;
        align-items: center;
        gap: 0.125rem;
    }
}

.header__hamburger {
    display: none;
}

@media screen and (max-width: 767px) {
    .header__hamburger {
        display: block;
        z-index: 999;
    }
}

.header__drawer {
    position: absolute;
    z-index: 900;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
}

.header__drawer.is-open {
    opacity: 1;
    visibility: visible;
}

.language-bar {
    position: relative;
    z-index: 999;
}

.language-bar__links {
  display: flex;
  align-items: center;
  justify-content: center; /* ← 中央に配置 */
  gap: 12px;                /* ← 旗の間隔 */
  margin-right:30px;
}


@media screen and (max-width: 767px) {
    .language-bar__links {
        margin-right: 0;
    }
}

.language-bar__link {
    font-size: max(10px, clamp(0.625rem, 1.531vw + 0.266rem, 1rem));
    line-height: 1.5;
    font-weight: 500;
    color: #474747;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    padding: 0;
}
.language-bar__link img {
  display: block;
  width: 22px;
  height: 15px;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.language-bar__link img:hover {
  opacity: 0.7;
}



.header-nav__item--services { position: static; }/* ===== Mega menu (PCのみ)  ====================== */
/* ヘッダー基準で中央配置できるように */
.header__inner{ position: relative; }

/* パネル本体：白枠なし・サイズ小さめ・中央配置 */
.mega{
  position: absolute;
  top: calc(100% - 5px);
  left: 50%;
  transform: translateX(-50%);
  display: none;
  /* 白い箱は不要にする */
  background: transparent;
  padding: 0;
  box-shadow: none;
  border-radius: 0;
  /* ひと回り小さく */
  width: min(780px, calc(100vw - 200px));
  z-index: 1001;
}

/* 開く */
.mega.is-open{ display:block; animation: fadeIn .15s ease-out; }

/* 吹き出し三角：グレーの土台と同色で */
.mega::after{
  content:"";
  position:absolute;
  top:-12px;
  left: calc( 50% - 145px);
  transform: translateX(-50%);
  width: 22px;
  height: 12px;
  background:#eef0f2;                 /* ← グレー */
  clip-path: polygon(50% 0, 0 100%, 100% 100%);
  filter: drop-shadow(0 3px 4px rgba(0,0,0,.06));
}

/* 内側ラッパ */
.mega__inner{ position: relative; }

/* グリッド：グレーの土台のみ、角丸小さめ、全体もコンパクトに */
.mega-grid{
    display: grid;
    /* 2列をキープ */
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 12px;
    padding: 12px;
    background: #eef0f2;
    border-radius: 8px;
}

.mega-card--full {
    /* grid-column: 1 / 3; と同じ意味で、1列目から3列目の線まで（2列分）を占有する */
    grid-column: span 2;
}
.mega-card--full .mega-card__bg {
    /* 既存: 360/140 = 2.57:1 */
    /* 新規: 例として 4:1 に近づける（高さをさらに低く） */
    aspect-ratio: 400/95; /* 4:1 の比率 */
}
.mega-card--full .mega-card__title {
    font-size: clamp(14px, 1.3vw, 18px); /* 他の項目より少し大きく */
}

/* カード */
.mega-card{
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

/* クリック領域：白枠なしで締め、角丸維持 */
.mega-card__link{
  display:block;
  position:relative;
  border-radius: 10px;
  outline: 1px solid rgba(0,0,0,.05);  /* ごく薄い縁取りだけ */
  background: #fff;                    /* 画像未読込時の保険 */
}

/* 画像：やや低め比率＆暗め。 */
.mega-card__bg{
  display:block;
  width:100%;
  aspect-ratio: 360/140;               /* 少し横長・高さ低め */
  background-size: cover;
  background-position: center;
  filter: brightness(.85);
  transition: transform .3s ease, filter .3s ease;
}

/* タイトル：縦横センター配置＋読みやすさを少し強化 */
.mega-card__title{
  position:absolute;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
  margin:0;
  text-align:center;
  color:#fff;
  font-weight: 800;
  font-size: clamp(13px, 1.05vw, 16px); /* ひと回り小さく */
  letter-spacing:.06em;
  text-shadow:
    0 0 6px rgba(0,0,0,.9),
    0 2px 10px rgba(0,0,0,.5);
  pointer-events: none;
}

/* ホバー演出（控えめ） */
@media (any-hover:hover){
  .mega-card__link:hover .mega-card__bg{
    transform: scale(1.03);
    filter: brightness(.95);
  }
}

/* SPでは非表示 */
@media screen and (max-width: 767px){
  .mega{ display:none !important; }
}

/* PCの hover / フォーカスで開く */
@media (hover:hover) and (min-width:768px){
  .header-nav__item--services:hover > .mega,
  .header-nav__item--services:focus-within > .mega{
    display:block;
    animation: fadeIn .15s ease-out;
  }
}


/* ===== SPドロワーのサービス内アコーディオン ===== */
.drawer-submenu {
  display: none;
  flex-direction: column;
  align-items: left;
  gap: 0.5rem;
  margin-top: 0.5rem;
  margin-left:50px!important;
  overflow: hidden;
  height: 0;
  opacity: 0;
  transition: height .3s ease, opacity .3s ease;
  will-change: height;
}
.drawer-submenu a {
  display: block;
  font-size: 1.1rem;
  color: #474747;
  text-decoration: none;
  padding: 0.5rem 0;
}
.drawer-submenu a:hover {
  opacity: 0.7;
}

/* 開いた状態 */
.drawer-submenu.is-open {
  display: flex;
  opacity: 1;
}
/* 動きを好まない環境への配慮 */
@media (prefers-reduced-motion: reduce){
  .drawer-submenu{ transition: none; }
}
/* 親ボタン */
.drawer-nav__item--services .js-drawer-accordion {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  color: #474747;
  display: flex;
  align-items: center;
  justify-content: space-between; /* ← テキストとアイコンを左右に配置 */
  gap: .25rem;
  width: 100%;
  font-size: 1.1rem;
}

.drawer-nav__item--services .js-drawer-accordion::after {
  content: "";
  display: inline-block;
  width: 16px;     /* ← お好みで調整 */
  height: 16px;
  background-image: url("/2025/wp-content/uploads/img/caret-down-solid-full.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
}
/* 開いた状態（上向き） */
.drawer-nav__item--services .js-drawer-accordion[aria-expanded="true"]::after {
  background-image: url("/2025/wp-content/uploads/img/caret-up-solid-full.svg");
}







/* ===== Hero ===== */
.yr-hero { margin-top:60px }
.yr-hero__inner { max-width: 1280px; margin: 0 auto; }

.yr-hero__media{
  position: relative;
  background: var(--hero-image-url, url('/wp-content/uploads/hero-bkk.jpg')) center/cover no-repeat;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  overflow: hidden;
  /* 比率は必要に応じて調整（デザインは横長） */
  aspect-ratio: 21 / 9.5;
}

/* 下部を少し暗くして文字を読みやすく */
.yr-hero__overlay{
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.25) 35%, rgba(0,0,0,0) 65%);
  pointer-events: none;
}

.yr-hero__copy{
  position: absolute;
  left: clamp(16px, 3vw, 40px);
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 40px);
  color: #fff;
  text-shadow: 0 4px 16px rgba(0,0,0,.35);
}

.yr-hero__title{
  margin: 0 0 8px;
  font-weight: 700;
  line-height: 1.25;
  font-size: clamp(22px, 3.6vw, 44px);
  letter-spacing: .02em;
}

.yr-hero__lead{
  margin: 0;
  line-height: 1.7;
  font-size: clamp(14px, 1.8vw, 20px);
  opacity: .98;
}

/* SP折り返し制御（必要なら） */
.yr-hero__br--sp{ display: none; }

/* ===== Responsive ===== */
@media (max-width: 1024px){
    .yr-hero {
        padding:0 20px;
    }
}
@media (max-width: 767px){
    .yr-hero {
        padding:0 28px;
        margin-top:20px
    }
  .yr-hero__media{ border-radius: 8px; aspect-ratio: 9 / 10.5; }
  .yr-hero__br--sp{ display: inline; }
}


.policy__heading {
    font-family: "Noto Sans Thai", sans-serif;
    font-weight: 800;
    line-height: 1;
    background-color: #e69635;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.5rem 3.625rem;
    border-radius: 0.625rem;
    font-size: max(30px, 2.5rem);
    line-height: 1.25;
}

@media screen and (max-width: 767px) {
    .policy__heading {
        font-size: clamp(1.25rem, 5.102vw + 0.054rem, 2.5rem);
        padding: 1.25rem 1.5625rem;
    }
}

.policy__heading.policy__heading--sub {
    background-color: transparent;
    color: #474747;
    padding: 0;
}

.policy__content {
    margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
    .policy__content {
        margin-top: 1.5rem;
    }
}

.policy__box:not(:first-child) {
    margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
    .policy__box:not(:first-child) {
        margin-top: 1.875rem;
    }
}

.policy__description {
    font-size: max(18px, clamp(1.125rem, 0.975rem + 0.4vw, 1.25rem));
    font-weight: 500;
    line-height: 1.6;
    color: #474747;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
}

@media screen and (max-width: 767px) {
    .policy__description {
        font-size: max(12px, clamp(0.75rem, 2.041vw + 0.272rem, 1.25rem));
    }
}

.policy__list {
    margin-top: 1.875rem;
}

@media screen and (max-width: 767px) {
    .policy__list {
        margin-top: 1.125rem;
    }
}

.policy__item:not(:first-child) {
    margin-top: 1.5625rem;
}

.policy__item-heading {
    font-size: max(22px, clamp(1.375rem, 0.906rem + 0.83vw, 1.5rem));
    font-weight: 700;
    line-height: 1.5;
    color: #474747;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
}

@media screen and (max-width: 767px) {
    .policy__item-heading {
        font-size: max(14px, clamp(0.875rem, 2.041vw + 0.397rem, 1.375rem));
    }
}

.policy__item-description {
    margin-top: 0.5rem;
    font-size: max(14px, clamp(0.875rem, 0.273vw + 0.744rem, 1rem));
    font-weight: 400;
    line-height: 1.5;
    color: #474747;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
}

@media screen and (max-width: 767px) {
    .policy__item-description {
        font-size: max(10px, clamp(0.625rem, 2.041vw + 0.147rem, 1.125rem));
    }
}

.policy__bottom {
    margin-top: 3.75rem;
}

@media screen and (max-width: 767px) {
    .policy__bottom {
        margin-top: 1.875rem;
    }
}

.policy__bottom-description {
    font-size: max(18px, clamp(1.125rem, 0.975rem + 0.4vw, 1.25rem));
    font-weight: 500;
    line-height: 1.6;
    color: #474747;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
}

@media screen and (max-width: 767px) {
    .policy__bottom-description {
        font-size: max(10px, clamp(0.625rem, 2.041vw + 0.147rem, 1.125rem));
    }
}






@media screen and (max-width: 767px) {
    .sell-property__header {
        order: 1;
    }
}







@media screen and (max-width: 767px) {
    .is-pc {
        display: none;
    }
}

@media screen and (min-width: 768px) {
    .is-sp {
        display: none;
    }
}


/*# sourceMappingURL=style.css.map */




a, button, [role="button"], .mega-card__link {
  cursor: pointer !important;
}



.skip-link {
    position:absolute;left:-9999px;
}







/* 視覚的に非表示（読み上げは維持） */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}






  /* ▼ 下層ページ共通レイアウト
--------------------------------------------- */
.l-wrap {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  margin-top: 40px;
}

/* 左：サイドバー */
.l-sidebar {
  flex: 0 0 240px;
  position: sticky;
  top: var(--sticky-top, 150px); /* ヘッダー＋余白ぶんに調整 */
  align-self: flex-start;       /* flex内での高さ計算を安定させる */
}




.side-nav {
  margin-bottom: 2.5rem;
}

.side-nav__list {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
  border-top: 1px solid #ddd;
}

.side-nav__item {
  border-bottom: 1px solid #ddd;
}

.side-nav__link {
  display: block;
  padding: 1.4em 0em;
  padding-right: 0;
  color: #333;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.side-nav__link:hover,
.side-nav__link:focus {
  background: #f6f6f6;
  color: #000;
}

/* サイドCTAボタン */
.side-cta {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.side-cta .btn {
  display: block;
  text-align: center;
  padding: 0.9em 1em;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}

.side-cta .btn:hover {
  opacity: 0.85;
}

.btn--primary {
   font-size: 1.125rem;
    font-weight: 500;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #ffffff;
    line-height: 1.7222222222;
    background-color: #e69635;
    padding-block: 0.59375rem;
    width: 100%;
    display: block;
    text-align: center;
    border: 1px solid #e69635;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
    .btn--primary {
        font-size: max(10px, clamp(0.625rem, 2.041vw + 0.147rem, 1.125rem));
    }
}
.btn--primary:hover {
    background-color: #ffffff;
    color: #e69635;
    border: 1px solid #e69635;
}
.btn--line {
   font-size: 1.125rem;
    font-weight: 500;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #ffffff;
    line-height: 1.7222222222;
    background-color: #00b300;
    padding-block: 0.59375rem;
    width: 100%;
    display: block;
    text-align: center;
    border: 1px solid #00b300;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
    .btn--line {
        font-size: max(10px, clamp(0.625rem, 2.041vw + 0.147rem, 1.125rem));
    }
}
.btn--line:hover {
    background-color: #ffffff;
    color: #00b300;
    border: 1px solid #00b300;
}



/* モバイル */
@media (max-width: 960px) {
  .l-wrap {
    display: block;
    flex-wrap: nowrap;
    gap: 0;
    margin-top: 40px;
  }

  .l-sidebar {
    position: static;
    top: auto;
    display: block;
    margin-top: 2rem;
  }

  aside {
    opacity: .4;
    display: none!important;
  }

  .side-nav__list {
    margin-bottom: 1.5rem;
  }
}




  /* ====== 下層ページ：ヒーロー ====== */
.sub-hero{
  position: relative;
  /* 縦を浅く：3:1 くらいの比率 */
  aspect-ratio: 16 / 5;
  border-radius: 10px;
  overflow: hidden;               /* 角丸を効かせる */
  isolation: isolate;             /* veil のブレンド安全 */
}
.sub-hero__img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;               /* トリミングして全面表示 */
}
.sub-hero__veil{
  position: absolute;
  inset: 0;
}
.sub-hero__inner {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.sub-hero__title {
  margin: 0;
  color: #fff;
  font-size: clamp(1.8rem, 3.2vw, 2.2rem);
  font-weight: 300;
}

.sub-hero__subtitle {
  display:block;
  margin-top: 0em; /* 少しだけ間を空ける（なければ0でもOK） */
  color: #fff;
  font-size: clamp(.8rem, 1.4vw, 0.9rem);
  font-weight: 300;
  line-height: 1.2; /* 行間をやや詰める */
}

.sub-hero__title{
  text-shadow:
    0 2px 10px rgba(0, 0, 0, 1.0),
    0 2px 10px rgba(0, 0, 0, 1.0),
    0 0 4px rgba(0, 0, 0, 1.0);
}

/* ====== 本文：左右の余白をなくす ====== */
.l-content.l-content--flush{
  /* もし .l-content に通常パディングがある場合は打ち消す */
  padding-left: 0;
  padding-right: 0;
}
.page-body--full{
  max-width: none;   /* センター固定幅を解除（必要な場合） */
  margin: 20px 0 0;  /* 左右マージンなし */
  padding: 0;        /* 余白なし */
}

/* リードの装飾（任意） */
.lead{
  font-size: 1.35rem;
  font-weight: 700;
  color: #0b4ea2;
  line-height: 1.55!important;
}

/* 本文の行間 */
.page-body p{ line-height: 1.9; margin-top:20px; }


 /* 見出し */
.sec-title{
  color:#0b4ea2;
  font-weight:700;
  font-size:clamp(1.35rem,2.2vw,1.8rem);
  margin:90px 0 12px;
  margin-top: 8.75rem;
}





/* グリッド */
.support-grid{
  list-style:none;
  margin:30px 0 0;
  padding:0;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:40px 40px;
}
@media (max-width: 980px){
  .support-grid{ grid-template-columns:repeat(2,minmax(0,1fr)); }
}
@media (max-width: 640px){
  .support-grid{ grid-template-columns:1fr; }
}

/* 各項目 */
.support-item{
  display:grid;
  grid-template-columns: 20px 1fr;
  grid-template-areas:
    "ic title"
    ".  desc"; /* <- 説明文が次の行から始まっている */
  column-gap:10px;
  row-gap:6px;
  align-items:center; /* titleとicは中央揃えだが、descは下に来ている */
}
.support-ic{
  grid-area: ic;
  width:20px;
  height:20px;
  display:grid;
  place-items:center;
  color:#eb7d1c;                           /* ← ここで色を統一 */
}
.support-ic svg{ display:block; }

/* 見出しはオレンジ、説明はグレー */
.support-ttl{
  grid-area: title;
  margin:0;
  font-size:1.2rem;
  font-weight:700;
  line-height:1.3;
  color:#eb7d1c;
}
.support-desc{
  grid-area: desc;
  margin:0;
  color:#3d4b63;
  line-height:1.8;
  font-size:1.0rem;
}
.support-text p{
  margin:0;
  color:#3d4b63;
  line-height:1.8;
  font-size:.95rem;
}

@media (max-width: 960px) {
  .sec-title {
    margin-top: 5rem;
  }
}


.fee .sec-title{ margin-bottom: 10px; }
.fee-lead{
  margin:8px 0 16px;
  color:#3d4b63;
  line-height:1.9;
}

.fee-card{
  margin:20px 0 16px;
  padding:20px 22px;
  background:#fff;
  border:1px solid #eceff4;
  border-radius:8px;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}

.fee-row{
  display:flex;
  align-items:baseline;
  gap:12px;
  flex-wrap:wrap;
}

.fee-label{
  font-size:1rem;
  color:#333;
}

.fee-rate{
  font-size:clamp(1.4rem,2.8vw,1.9rem);
  color:#eb7d1c;
  font-weight:800;
  letter-spacing:.02em;
}

.fee-min{
  margin:14px 0 0;
}

.fee-min__pill{
  display:inline-block;
  background:#3d3d3d;
  color:#fff;
  padding:8px 12px;
  font-size:.95rem;
  line-height:1.6;
}

.fee-example{
  margin:16px 0 0;
  color:#3d4b63;
  line-height:1.9;
}
.fee-eg__label{
  display:inline-block;
  font-weight:700;
  margin-right:.25em;
  color:#23395d;
}

.fee-notes{
  margin:10px 0 0;
  padding-left:1.2em;
  color:#6b778c;
  font-size:.9rem;
  line-height:1.8;
}
.fee-notes li{ list-style: disc; }



/* 表をカード風に */
.fee-table-wrap{
  background:#fff;
  border:1px solid #eceff4;
  border-radius:10px;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
  padding:16px;
  margin-top:8px;
}
.fee-table{
  width:100%;
  border-collapse:separate;
  border-spacing:0;
  /*font-size:.97rem;*/
  color:#23395d;
}
.fee-table thead th{
  text-align:left;
  background:#f7f9fc;
  color:#1f2d3d;
  font-weight:700;
  padding:12px;
  border-bottom:1px solid #e5eaf2;
}
.fee-table tbody th,
.fee-table tbody td{
  padding:12px;
  vertical-align:top;
  border-bottom:1px solid #eef2f8;
}
.fee-table tbody th{
  background:#fbfcff;
  font-weight:700;
  color:#0b4ea2; /* ブランドカラーに合わせて調整可 */
  text-align: left;
}
.fee-table tbody tr:nth-child(even) td{ background:#fcfdff; }
.fee-table tbody tr td { padding-top:10px; padding-bottom:10px; }

/* 送金表をややコンパクトに */
.fee-table--narrow tbody th,
.fee-table--narrow tbody td{
  padding:10px 12px;
}

/* モバイル：カード化（見出しはtd::beforeで補完） */
@media (max-width: 720px){
  .fee-table thead{
    position:absolute; width:1px;height:1px;margin:-1px;padding:0;border:0;
    clip:rect(0 0 0 0); clip-path:inset(50%); overflow:hidden; white-space:nowrap;
  }
  .fee-table, .fee-table tbody, .fee-table tr, .fee-table td, .fee-table th{
    display:block; width:100%;
  }
  .fee-table tbody tr{
    background:#fff; border:1px solid #eef2f8; border-radius:8px;
    margin:10px 0; box-shadow:0 2px 8px rgba(0,0,0,.03);
  }
  .fee-table tbody th{
    border-bottom:1px dashed #e6ecf5;
    border-right:0;
    border-radius:6px 6px 0 0;
  }
}










.old-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0; /* 画像の間に隙間を作らない */
  margin-top: 24px;
  overflow: hidden; /* 角丸のつなぎ目対策 */
}
.old-grid figure {
  margin: 0;
}

.old-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 左側（1枚目）→ 左上・左下だけ角丸 */
.old-grid figure:first-child img {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

/* 右側（2枚目）→ 右上・右下だけ角丸 */
.old-grid figure:last-child img {
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
}
.old-lead {
  line-height: 1.55;
}

/* スマホでは上下2段に並ぶので、角丸を上下で切り替える */
@media (max-width: 768px) {
  .old-grid {
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .old-grid figure:first-child img {
    border-radius: 12px 12px 0 0; /* 上だけ角丸 */
  }

  .old-grid figure:last-child img {
    border-radius: 0 0 12px 12px; /* 下だけ角丸 */
  }
}




 :root {
  --flow-accent: #0b4ea2; /* 矢印と見出しの青 */
  --flow-icon: #eb7d1c;   /* オレンジアイコン */
  --flow-card: #fff;
  --flow-shadow: 0 0px 8px rgba(0, 0, 0, 0.06);
  --flow-radius: 10px;
}

.flow-lead {
  margin: 8px 0 18px;
  color: #3d4b63;
  line-height: 1.9;
}

.flow-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: 36px;
}

.flow-item {
  position: relative;
  background: var(--flow-card);
  border: 1px solid #eceff4;
  border-radius: var(--flow-radius);
  padding: 28px 16px 20px;
  width: 150px;
  height: 140px; /* 正方形より少し縦長 */
  box-shadow: var(--flow-shadow);
  display: grid;
  justify-items: center;
  row-gap: 12px;
}

/* アイコンを拡大 */
.flow-icon {
  color: var(--flow-icon);
  display: grid;
  place-items: center;
}
.flow-icon svg {
  width: 40px;
  height: 40px;
}

/* ラベル */
.flow-label {
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: #333;
  font-size: 0.98rem;
}

/* → 矢印 */
.flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 22px;
  height: 22px;
  transform: translateY(-50%);
  background: url("/2025/wp-content/uploads/img/arrow-right-solid-full.svg")
    center/contain no-repeat;
}

/* スマホ対応 */
@media (max-width: 820px) {
  .flow-list {
    flex-direction: column;
    gap: 24px;
  }

  .flow-item {
    width: 100%;
    height: auto;
    padding: 24px 16px;
  }

  .flow-item:not(:last-child)::after {
    right: 50%;
    top: auto;
    bottom: -18px;
    width: 18px;
    height: 18px;
    transform: translateX(50%) rotate(90deg);
  }
}


  /* よくある質問 */
.faq, .achievement {
  margin-top: 60px;
}

.faq-lead, .achievement-lead {
  margin: 8px 0 28px;
  color: #3d4b63;
  line-height: 1.9;
}

/* 各質問ブロック */
.faq-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 24px;
}

/* 質問ボックス全体 */
.faq-item {
  background: #fff;
  border: 1px solid #eceff4;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 20px 24px;

}

/* 質問（Q） */
.faq-q {
  color: #eb7d1c;
  font-weight: 700;
  font-size: 1.3rem;
  margin: 0 0 8px;
  margin:0;
  line-height:0;
  margin-top: 30px;
}


/* 回答（A） */
.faq-a {
  color: #3d4b63;
  line-height: 1.8;
  font-size: 1.0rem;
  margin: 0;
}

/* 追加質問にも対応：スマホ調整 */
@media (max-width: 640px) {
  .faq-item {
    padding: 16px 18px;
  }
  .faq-q {
    font-size: 0.95rem;
  }
}




  .contact-service .contact__inner {
    padding:0;
  }













.mv {
    margin-top: 6.25rem;
}

@media screen and (max-width: 767px) {
    .mv {
        margin-top: 0.1875rem;
    }
}

.mv__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.8125rem;
}

@media screen and (max-width: 767px) {
    .mv__content {
        position: relative;
        display: block;
    }
}

@media screen and (max-width: 767px) {
    .mv__title-wrapper {
        position: absolute;
        content: "";
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: auto;
        text-align: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }
}

.mv__title {
    font-size: 3.4375rem;
    font-weight: 300;
    font-family: "Noto Sans Thai", sans-serif;
    color: #023d7f;
    line-height: 1;
    opacity: 0;
}

@media screen and (max-width: 767px) {
    .mv__title {
        background-color: #ffffff;
        display: inline-block;
        font-size: 1.75rem;
        padding: 0.3125rem;
        text-align: left;
    }
}

.mv__text {
    margin-top: 0.625rem;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #e69635;
    line-height: 1.3;
    opacity: 0;
}

@media screen and (max-width: 767px) {
    .mv__text {
        background-color: #ffffff;
        font-size: 0.625rem;
        padding: 0.3125rem;
        display: inline-block;
    }
}


/* ===============================
   ベーススタイル
================================= */

.mv__image {
    position: relative;
    width: 100%;
    max-width: 744px;
    aspect-ratio: 744/610;
    overflow: hidden;
}

.mv__image-slice {
    position: absolute;
    width: 8.064516129%;
    height: 100%;
    top: 0;
    background-image: url("../images/mv-img.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: top;
    clip-path: inset(100% 0 0 0);
    /* アニメーション設定 */
    animation: reveal 1.2s cubic-bezier(0, 0.38, 0.36, 1.24) forwards;
    animation-delay: var(--delay, 0s);
}


/* ===============================
   アニメーション定義
================================= */

@keyframes reveal {
    0% {
        clip-path: inset(100% 0 0 0);
        /* 最初は上から完全に隠す */
    }
    100% {
        clip-path: inset(var(--clip-top) 0 var(--clip-bottom) 0);
        /* 指定位置を表示 */
    }
}


/* ===============================
   各スライスごとの位置 & マスク範囲
================================= */


/* slice1 */

.slice1 {
    --delay: 0.0s;
    --clip-top: calc(72 / 610 * 100%);
    --clip-bottom: calc(139 / 610 * 100%);
    left: 0%;
    background-position-x: 0%;
}


/* slice2 */

.slice2 {
    --delay: 0.1s;
    --clip-top: calc(110 / 610 * 100%);
    --clip-bottom: calc(105 / 610 * 100%);
    left: 9.1935483871%;
    background-position-x: 9.1935483871%;
}


/* slice3 */

.slice3 {
    --delay: 0.2s;
    --clip-top: calc(164 / 610 * 100%);
    --clip-bottom: calc(50 / 610 * 100%);
    left: 18.3870967742%;
    background-position-x: 18.3870967742%;
}


/* slice4 */

.slice4 {
    --delay: 0.3s;
    --clip-top: calc(146 / 610 * 100%);
    --clip-bottom: calc(68 / 610 * 100%);
    left: 27.5806451613%;
    background-position-x: 27.5806451613%;
}


/* slice5 */

.slice5 {
    --delay: 0.4s;
    --clip-top: calc(56 / 610 * 100%);
    --clip-bottom: calc(158 / 610 * 100%);
    left: 36.7741935484%;
    background-position-x: 36.7741935484%;
}


/* slice6 */

.slice6 {
    --delay: 0.5s;
    --clip-top: calc(212 / 610 * 100%);
    --clip-bottom: calc(1 / 610 * 100%);
    left: 45.9677419355%;
    background-position-x: 45.9677419355%;
}


/* slice7 */

.slice7 {
    --delay: 0.6s;
    --clip-top: calc(12 / 610 * 100%);
    --clip-bottom: calc(201 / 610 * 100%);
    left: 55.1612903226%;
    background-position-x: 55.1612903226%;
}


/* slice8 */

.slice8 {
    --delay: 0.7s;
    --clip-top: calc(122 / 610 * 100%);
    --clip-bottom: calc(92 / 610 * 100%);
    left: 64.3548387097%;
    background-position-x: 64.3548387097%;
}


/* slice9 */

.slice9 {
    --delay: 0.8s;
    --clip-top: calc(49 / 610 * 100%);
    --clip-bottom: calc(166 / 610 * 100%);
    left: 73.5483870968%;
    background-position-x: 73.5483870968%;
}


/* slice10 */

.slice10 {
    --delay: 0.9s;
    --clip-top: calc(57 / 610 * 100%);
    --clip-bottom: calc(70 / 610 * 100%);
    left: 82.7419354839%;
    background-position-x: 82.7419354839%;
}


/* slice11 */

.slice11 {
    --delay: 1.0s;
    --clip-top: calc(110 / 610 * 100%);
    --clip-bottom: calc(103 / 610 * 100%);
    left: 91.935483871%;
    background-position-x: 91.935483871%;
}











.core-values-layout {
    margin-top: 8.3125rem;
}

@media screen and (max-width: 767px) {
    .core-values-layout {
        margin-top: 2rem;
    }
}


.core-values {
    padding-top: 3.625rem;
    padding-bottom: 4.125rem;
    position: relative;
}

@media screen and (max-width: 767px) {
    .core-values {
        padding-top: 2rem;
        padding-bottom: 2.5rem;
    }
}

.core-values__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.core-values__bg-img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.core-values__bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(71, 71, 71, 0.9);
    mix-blend-mode: hard-light;
}

.core-values__header .common-title__ja {
    color: #e8b947;
}

.core-values__list {
    margin-top: 3.625rem;
    display: flex;
    flex-wrap: wrap;
    -moz-column-gap: 3.75rem;
    column-gap: 3.75rem;
    row-gap: 3.25rem;
    align-items: stretch;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .core-values__list {
        margin-top: 0.9375rem;
        gap: clamp(0.625rem, 2.551vw + 0.027rem, 1.25rem);
    }
}

.core-values__item {
    width: 30.0806451613%;
    max-width: 23.9375rem;
    padding: 2.0625rem 1.5625rem 1.875rem;
    background-color: rgba(71, 71, 71, 0.7);
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 767px) {
    .core-values__item {
        width: 100%;
        max-width: 100%;
        padding: 0.875rem 0.875rem;
    }
}

.core-values__item-title {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "hiragino-kaku-gothic-pron", sans-serif;
    color: #ffffff;
    line-height: 1.2916666667;
    padding-left: 1.3em;
    text-indent: -1.3em;
}

@media screen and (max-width: 767px) {
    .core-values__item-title {
        font-size: max(12px, clamp(0.75rem, 2.041vw + 0.272rem, 1.25rem));
    }
}

.core-values__item-text {
    margin-top: 0.75rem;
}

@media screen and (max-width: 767px) {
    .core-values__item-text {
        margin-top: 0.75rem;
    }
}




/*売却の実績*/
/* PC：写真左・リスト右 */
.achievement-content {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  margin-top: 2.5rem;
}

/* 写真部分（PC） */
.achievement-photo {
  flex: 0 0 40%;
  max-width: 400px;   /* ← あなたが指定した値 */
  border-radius: 10px;
  overflow: hidden;
}

.achievement-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* ← トリミングして枠にフィット */
  display: block;
}

/* リスト部分 */
.achievement-list {
  flex: 1 1 auto;
}
.achievement-list li {
  list-style-type: disc;
  line-height: 1.75;
}

/* スマホ：写真→リストの縦並び＋写真の縦幅を低くする */
@media (max-width: 768px) {
  .achievement-content {
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2rem;
  }

  .achievement-photo {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 16 / 11; /* ← スマホで縦幅を狭くする（横長） */
  }

  .achievement-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .achievement-list li {
    font-size: 1rem;
  }
}









/* 言語ボタン用：横並びにする */
.header-nav__item--lang{
  display: flex;              /* ← ココで横並び */
  align-items: center;
  gap: 8px;                   /* 旗どうしの間隔 */
  margin-left: 32px;
}

/* 言語リンクはアイコンだけなので余白をリセット＆横並び維持 */
.header-nav__item--lang .header-nav__link{
  display: inline-flex;       /* ← block を上書き */
  padding: 0;                 /* 共通の大きなpaddingを無効化 */
  line-height: 1;
}

/* 旗画像の見た目 */
.header-nav__item--lang img{
  width: 24px;
  height: 16px;
  display: block;
  border-radius: 2px;
  transition: opacity .2s ease;
}
.header-nav__item--lang img:hover{ opacity: .7; }

.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* SPでも旗を表示したい場合はこれも追加（共通の非表示ルールを打ち消し） */
@media (max-width: 767px){
  .header-nav__item--lang .header-nav__link{ display: inline-flex; }
}
