/* =============================
   WordPress向けリセットCSS
   ============================= */
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,
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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  font-family: 'Poppins', Arial, sans-serif;
  color: var(--body-color);
  font-size: 1.6rem;
  background-color: var(--accent-color);
  background-image: url('/wp-content/uploads/2025/07/Group-363.png');
  background-repeat: repeat;
  font-weight: 400;
  z-index: -9999;
  position: relative;

}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img,
video {
  max-width: 100%;
  height: auto;
  border: 0;
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;

}

button {
  cursor: pointer;
}

.wp-caption,
.alignnone,
.aligncenter,
.alignright,
.alignleft {
  border: 0;
  padding: 0;
  background: none;
  margin: 0;
}

/* =============================
   ここから既存のスタイル
   ============================= */
html {
  font-size: 62.5%;
  /* 1rem = 10px */
  background: var(--white);
  color: var(--body-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
  color: var(--heading-color);
  font-weight: 500;
}

p {
  line-height: 1.6;
}

.heading-decorative {
  font-family: 'Dancing Script', cursive;
  color: var(--main-color);
}

.heading-74 {
  font-size: clamp(3.2rem, 7.4vw, 7.4rem);
}

.heading-48 {
  font-size: clamp(3.2rem, 4.8vw, 7.4rem);
}

.heading-40 {
  font-size: 4.0rem;
}

.heading-36 {
  font-size: 3.6rem;
}

.heading-32 {
  font-size: 3.2rem;
}

.heading-24 {
  font-size: 2.4rem;
}

:root {
  --main-color: #1F56D8;
  --accent-color: #EEEAE2;
  --heading-color: #1F56D8;
  --body-color: #2E2E2E;
  --background-color: #FFF;
  --support-text: #2E2E2E;
  --gray: #666;
  --white: #FFF;
}

a {
  color: var(--main-color);
  text-decoration: none;
}

a:hover {
  transition: all 0.3s;
}

.site-main {
  overflow: hidden;
}

.cta-button {
  display: inline-block;
  font-family: 'Poppins', Arial, sans-serif;
  padding: 1.5rem 4rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-weight: 600;
}

.cta-button--blue {
  background: var(--main-color);
  color: var(--white);
}

.cta-button--blue:hover {
  background: var(--heading-color);
  color: var(--white);
}

.cta-button i.fa-solid.fa-arrow-up-right-from-square {
  color: #fff;
  margin-left: 10px;
  font-size: 1em;
  vertical-align: middle;
}

.support-text {
  color: var(--support-text);
  font-size: 1.4rem;
}

/* Swiperスライダー 共通化 */
.top-swiper,
.property-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.top-swiper .swiper-slide,
.property-swiper .swiper-slide {
  background: var(--accent-color);
  border-radius: 2rem;
}

.top-swiper .swiper-pagination-bullet,
.property-swiper .swiper-pagination-bullet {
  background: var(--main-color);
}

/* =============================
   ヘッダー・ナビゲーションデザイン
   ============================= */
.site-header {
  padding: 0;
  width: 100%;
  position: fixed;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 32px;
  padding-top: 14px;
  height: 64px;
}

.logo-area {
  display: flex;
  align-items: center;
  min-width: 220px;
}

.logo-link {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 56px;
  width: auto;
  margin-right: 8px;
}

@media (max-width: 599px) {
  .logo-img {
    height: 40px;
  }
}

.nav-area {
  display: flex;
  align-items: center;
  gap: 32px;
}

@media (max-width: 1023px) {
  .nav-area {
    gap: 0;
  }
}

.main-nav {
  display: flex;
  align-items: center;
}

/* デフォルトで非表示 */
.nav-list {
  display: none;
}

/* メニューが開いたときのみ表示 */
.nav-list.is-open {
  display: flex !important;
}

@media (min-width: 1024px) {
  .nav-list {
    display: flex !important;
    position: static;
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    gap: 32px;
  }
}

.nav-list li {
  display: flex;
  align-items: center;
}

.nav-list a {
  color: var(--body-color);
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 400;
  transition: color 0.2s;
}

.nav-list a:hover,
.nav-list .current-menu-item>a {
  color: var(--heading-color);
  opacity: 1;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--main-color);
  border: none;
  position: relative;
  transition: background 0.2s, transform 0.3s;
  z-index: 4000;
}

.menu-toggle:hover {
  background: var(--main-color);
}

.menu-bar {
  display: block;
  width: 20px;
  height: 1px;
  background: var(--white);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 1023px) {
  .header-inner {
    padding: 0 16px;
  }

  .nav-list {
    display: none;
  }

  .menu-toggle {
    margin-left: 0;
  }
}

.menu-toggle.open .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ハンバーガーメニューが開いたとき、画面半分まで表示 */
.nav-list.is-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 50vw;
  max-width: 400px;
  height: 100vh;
  background: #fff;
  border-radius: 0 0 0 12px;
  padding: 48px 32px 24px 32px;
  gap: 24px;
  z-index: 2000;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.08);
  transition: right 0.3s, opacity 0.3s;
  align-items: flex-start;
}

@media (max-width: 787px) {
  .nav-list.is-open {
    width: 80vw;
    max-width: none;
    padding: 48px 16px 24px 16px;
  }
}

.page-header {
  position: relative;
  width: 100%;
  height: 612px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header--about {
  background: url('/wp-content/uploads/2025/07/Rectangle-1114-1.jpg') center/cover no-repeat;
}

.page-header__inner {
  text-align: left;
  max-width: 1200px;
  width: 96%;
}

.page-header__title {
  font-size: 12.0rem;
  color: var(--main-color);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 16px;
}

.page-header__subtitle {
  font-size: 3.2rem;
  color: var(--main-color);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.breadcrumb {
  max-width: 1200px;
  width: 96%;
  margin: 0 auto;
  padding: 16px 0;
  font-size: 1.4rem;
  color: var(--main-color);
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 400;
}

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

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  color: var(--body-color);
  font-weight: 400;
}

.page-header--service {
  background: url('/wp-content/uploads/2025/07/Rectangle-1127.jpg') center/cover no-repeat;
}

.page-header--contact {
  background: url('/wp-content/uploads/2025/07/Rectangle-1127-1.jpg') center/cover no-repeat;
}

.page-header--error {
  background: url('/wp-content/uploads/2025/07/Rectangle-1127-1.jpg') center/cover no-repeat;
}

.page-header--rent,
.page-header--sale {
  background: url('/wp-content/uploads/2025/07/Rectangle-1127-2.jpg') center/cover no-repeat;
}

/* =============================
   Aboutページ MISSIONセクション
   ============================= */
.about-mission-section {
  margin-top: 160px;
}

.about-mission-wrapper {
  position: relative;
  background: var(--white);
  border-radius: 8px;
  margin: 64px auto 0 auto;
  padding: 52px 56px;
  display: flex;
  align-items: center;
}

.about-mission-bg-decor {
  position: absolute;
  top: -48px;
  left: -64px;
  width: 180px;
  height: 180px;
  background: url('/wp-content/uploads/2025/07/赤とベージュ_和風_和柄_インスタグラムストーリー背景__1_-removebg-preview-6-1.png') no-repeat center/cover;
  z-index: -2;
}

.about-mission-content {
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 1;
  gap: 40px;
  position: relative;
}

.about-mission-text {
  flex: 1 1 0;
}

.about-mission-title {
  margin-bottom: 16px;
}

.about-mission-lead {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--body-color);
  font-weight: 500;
}

.about-mission-desc {
  font-size: 1.4rem;
  color: var(--body-color);
}

.about-mission-image {
  flex: 0 0 440px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-mission-image img {
  object-fit: cover;
  border-radius: 8px;
}

@media (max-width: 787px) {

  .about-mission-image {
    width: 100%;
    justify-content: flex-start;
    flex: 1;
  }

  .about-mission-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .about-mission-section {
    flex-direction: column;
    padding: 32px 12px;
    min-height: unset;
    margin-top: 64px;
  }

  .about-mission-text {
    padding-right: 0;
    margin-bottom: 24px;
  }

  .about-mission-image img {
    width: 100%;
    height: auto;
  }

  .about-mission-bg-decor {
    top: -32px;
    left: -24px;
    width: 120px;
    height: 120px;
  }

}

@media (max-width: 599px) {
  .about-mission-wrapper {
    padding: 32px 24px;
    margin: 0 auto;
  }
}

.container {
  max-width: 1200px;
  width: 96%;
  margin: 0 auto;
}

@media (max-width: 599px) {
  .container {
    width: 90%;
  }
}

/* =============================
   Meet Kyoko セクション
   ============================= */
.about-kyoko-section {
  margin-top: 160px;
}

.about-kyoko-main {
  display: flex;
  gap: 48px;
  align-items: center;
}

.about-kyoko-photo img {
  width: 520px;
  border-radius: 8px;
}

.about-kyoko-content {
  flex: 1;
}

.about-kyoko-title {
  color: var(--main-color);
  font-family: 'Playfair Display', serif;
  font-size: 4.8rem;
  margin-bottom: 14px;
}

.about-kyoko-subtitle {
  font-family: 'Dancing Script', cursive;
  color: var(--body-color);
  font-size: 1.6rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-kyoko-text {
  color: var(--body-color);
  font-size: 1.6rem;
}

.about-kyoko-text p {
  margin-bottom: 24px;
}

.about-kyoko-support {
  display: flex;
  gap: 54px;
  align-items: flex-start;
  margin-top: 48px;
}

.about-kyoko-support-text {
  flex: 2;
}

.about-kyoko-support-text p {
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.about-kyoko-support-text p:last-child {
  margin-bottom: 0;
}

.about-kyoko-support-photo img {
  width: 480px;
  border-radius: 8px;
}

.about-kyoko-support-title {
  font-size: 2.4rem;
  font-family: 'Playfair Display', serif;
  color: var(--main-color);
  margin-bottom: 16px;
  font-weight: 500;
}

.about-kyoko-support-subtitle {
  font-size: 1.8rem;
  color: var(--main-color);
  margin-top: 32px;
  margin-bottom: 0;
  font-weight: 500;
}

@media (max-width: 1023px) {

  .about-kyoko-main,
  .about-kyoko-support {
    flex-direction: column;
    gap: 24px;
  }

  .about-kyoko-photo img,
  .about-kyoko-support-photo img {
    width: 100%;
    max-width: 340px;
  }

  .about-kyoko-section {
    padding: 24px 8px;
  }
}

@media (max-width: 787px) {
  .about-kyoko-section {
    margin-top: 64px;
  }
}

@media (max-width: 599px) {

  .about-kyoko-photo img,
  .about-kyoko-support-photo img {
    max-width: 100%;
    width: 100%;
  }
}

/* =============================
   Why Choose Kyoko セクション
   ============================= */
.about-why-section {
  margin-top: 130px;
}

.about-why-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.about-why-mizuhiki {
  display: block;
  margin: 0 auto 16px auto;
  height: auto;
}

.about-why-title {
  font-size: 4.8rem;
  margin-bottom: 16px;
}

.about-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 65px;
  margin: 0 auto;
}

.about-why-item {
  background: none;
  padding: 0;
}

.about-why-item h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-why-item p {
  font-size: 1.4rem;
}

@media (max-width: 787px) {
  .about-why-section {
    padding: 30px 0 40px 0;
    margin-top: 30px;
  }

  .about-why-header {
    margin-bottom: 32px;
  }

  .about-why-title {
    font-size: 2.6rem;
  }

  .about-why-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* =============================
   3ステップ案内セクション
   ============================= */
.steps-section {
  margin-top: 160px;
}

.steps-title {
  font-size: 3.6rem;
  color: var(--main-color);
  margin-bottom: 60px;
  text-align: center;
}

.step-block {
  display: flex;
  align-items: center;
  gap: 68px;
  margin-bottom: 0;
  justify-content: flex-start;
}

.step-image {
  flex: 0 0 240px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.step-content {
  text-align: left;
  flex: 1;
}

.step-number {
  font-size: 2.4rem;
  color: var(--main-color);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.step-title {
  font-size: 2.4rem;
  color: var(--main-color);
  font-family: 'Playfair Display', serif;
  margin-bottom: 24px;
  font-weight: 600;
}

.step-desc {
  margin-bottom: 20px;
}

.step-email {
  font-size: 1.4rem;
  margin-top: 20px;
}

.step-arrow {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px 0;
  width: 100%;
  height: 40px;
  background: url('/wp-content/uploads/2025/07/Group-464.png') center/cover no-repeat;
}

.step-block-wrapper {
  max-width: 787px;
  margin: 0 auto;
}

@media (max-width: 787px) {
  .steps-section {
    margin-top: 64px;
  }

  .step-block {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .step-content {
    text-align: center;
  }

}

@media (max-width: 599px) {
  .step-arrow {
    background-size: contain;
  }

  .cta-button {
    font-size: 1.4rem;
  }

  .steps-title {
    font-size: 2.4rem;
    margin-bottom: 32px;
  }

}

.about-blog-section {
  margin-top: 140px;
}

.about-blog-title {
  font-size: 3.2rem;
  color: var(--main-color);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
}

.about-blog-list {
  display: flex;
  gap: 32px;
  justify-content: space-between;
}

.about-blog-item {
  overflow: hidden;
  width: 23%;
}

.about-blog-thumb img {
  width: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.about-blog-name {
  margin: 18px 0 18px 0;
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  color: var(--body-color);
  font-weight: 600;
}

.about-blog-more-btn {
  display: inline-block;
  border: 1.5px solid var(--main-color);
  color: var(--main-color);
  background: transparent;
  border-radius: 50px;
  padding: 10px 48px;
  font-size: 1.6rem;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.about-blog-more-btn:hover {
  background: var(--main-color);
  color: var(--white);
}

@media (max-width: 787px) {
  .about-blog-list {
    flex-wrap: wrap;
    gap: 12px;
  }

  .about-blog-item {
    width: calc(50% - 12px);
  }
}

@media (max-width: 599px) {

  .about-blog-list {
    flex-direction: column;
  }

  .about-blog-item {
    width: 100%;
  }

  .about-blog-title {
    font-size: 2.6rem;
  }
}

/* =============================
   Footer デザイン
   ============================= */
.site-footer {
  margin-top: 160px;
  background: #fff;
  padding: 80px 0;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 60px;
}

.footer-logo-nav {
  min-width: 220px;
}

.footer-nav-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}

.footer-logo img {
  width: 190px;
  margin-bottom: 60px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav ul li {
  margin-bottom: 24px;
}

.footer-nav ul li a,
.footer-links span a {
  color: #2E2E2E;
  text-decoration: none;
  font-weight: 400;
}

.footer-links {
  display: flex;
  gap: 100px;
}

.footer-links>div>span {
  color: #2E2E2E;
  margin-bottom: 12px;
  display: block;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #aaa;
  text-decoration: none;
  font-size: 1.4rem;
}

.footer-links ul li a:hover {
  color: #1F56D8;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px solid #eee;
  font-size: 1.2rem;
  padding-top: 40px;
}

.footer-address .address-main {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.address-en,
.footer-copyright {
  font-size: 1.3rem;
  color: #AAAAAA;
}

@media (max-width: 787px) {

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 16px;
    gap: 24px;
  }

  .footer-links {
    flex-direction: column;
    gap: 24px;
  }

  .footer-bottom {
    padding: 24px 16px 12px 16px;
  }
}

.footer-nav-wrapper,
.footer-nav-wrapper * {
  font-family: 'Playfair Display', serif !important;
}

/* Service Features Section */
.service-features {
  margin: 64px auto 0 auto;
  max-width: 787px;
  text-align: center;
}

.service-features__title {
  font-size: 3.6rem;
  margin-bottom: 32px;
}

.service-features__cards {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.service-features__card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 10px;
  width: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow 0.2s;
}

.service-features__card-image {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-features__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.service-features__card-title {
  font-size: 1.8rem;
  margin-bottom: 16px;
  text-align: center;
  color: var(--main-color);
}

.service-features__desc {
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 787px) {
  .service-features__cards {
    flex-direction: column;
    gap: 24px;
  }

  .service-features__card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
}

/* =============================
   Foreigner Support Section
   ============================= */
.foreigner-support {
  margin-top: 100px;

}

.foreigner-support__intro {
  text-align: center;
  max-width: 550px;
  margin: 0 auto 60px auto;
  position: relative;
}

.foreigner-support__intro p {
  padding-bottom: 40px;
}

.foreigner-support__intro::after {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--main-color);
  bottom: -60px;
  border-radius: 1px;
}

.foreigner-support__main {
  display: flex;
  align-items: center;
  background: url('/wp-content/uploads/2025/07/Group-465.png') center/cover no-repeat, #fff;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  height: 460px;
}

.foreigner-support__main-text {
  max-width: 416px;
  padding: 48px 38px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.foreigner-support__main-text h2 {
  font-size: 3.6rem;
  margin-bottom: 18px;
  color: #fff;
}

.foreigner-support__main-text p {
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.foreigner-support__features {
  background: var(--background-color);
  padding: 56px 90px;
  border-radius: 0 0 8px 8px;
}

.foreigner-support__feature {
  display: flex;
  flex-direction: column;
  max-width: 300px;
  width: 100%;
}

.foreigner-support__feature img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.foreigner-support__feature h3 {
  margin-bottom: 6px;
  font-size: 2.4rem;
}

.foreigner-support__feature p {
  font-size: 1.4rem;
  color: var(--body-color);
}

@media (max-width: 787px) {

  .foreigner-support__main-text,
  .foreigner-support__main-image {
    padding: 24px 12px;
    min-width: unset;
  }

  .foreigner-support__main-image img {
    min-height: 180px;
  }
}

@media (max-width: 599px) {
  .foreigner-support__main-text h2 {
    font-size: 2.6rem;
  }

  .foreigner-support__main {
    height: 350px;
  }
}

/* features-row（上段・下段）中央寄せ */
.features-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 56px;
}

.features-row--bottom {
  margin-bottom: 0;
}

/* =============================
   Support Details Section
   ============================= */

.support-details__blocks {
  position: relative;
  margin-bottom: 60px;
  overflow: hidden;
}

.support-details__blocks:nth-last-child() {
  margin-bottom: 0;
}

.support-details__block {
  display: flex;
  align-items: center;
  gap: 100px;
  padding: 8.547% 0;
}

.support-details__block-text {
  max-width: 520px;
  width: 50%;
}

.support-details__block-image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  background-image: url('/wp-content/uploads/2025/07/Firefly_A-high-resolution-photorealistic-image-of-central-Tokyos-real-estate-landscape-a-m-289885.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 30px 0 0 0;
}

.support-details__block-title {
  font-size: 1.8rem;
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
  padding-right: 32px;
}

.support-details__block-text p {
  font-size: 1.4rem;
}

.support-details {
  margin-top: 160px;
}

.support-details__header {
  text-align: center;
  margin-bottom: 60px;
}

.support-details__lead {
  font-size: 1.6rem;
  color: var(--main-color);
  margin-bottom: 8px;
}

.support-details__title {
  font-size: 3.2rem;
  color: var(--main-color);
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}


.support-details__blocks-wrapper>.support-details__blocks:nth-child(even) .support-details__block {
  flex-direction: row-reverse;
}

.support-details__blocks-wrapper>.support-details__blocks:nth-child(even) .support-details__block-image {
  border-radius: 0 30px 0 0;
  left: 0;
}

.support-details__subtitle-block {
  text-align: center;
  margin-bottom: 48px;
  margin-top: 100px
}

.support-details__subtitle {
  font-size: 3.6rem;
  color: var(--main-color);
  margin-bottom: 8px;
  font-family: 'Playfair Display', serif;
}

.support-details__subtitle-desc {
  margin-bottom: 36px;
}

.support-details__subtitle-text {
  font-size: 1.4rem;
  color: var(--body-color);
}

.support-details__block-title::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  height: 1px;
  background: var(--main-color);
  width: 100vw;
  top: 50%;
  transform: translate(100%, 50%);
}

.support-details__blocks-wrapper>.support-details__blocks:nth-child(even) .support-details__block-title::before {
  width: 100vw;
}

@media (max-width: 787px) {

  .support-details__header {
    margin-bottom: 32px;
  }

  .support-details {
    margin-top: 64px;
  }

  .support-details__block {
    flex-direction: column-reverse !important;
    gap: 14px;
    position: static;
    padding: 24px 0;
  }

  .support-details__block-image {
    position: static !important;
    width: 100% !important;
    height: auto;
    min-height: 300px;
    border-radius: 8px !important;
    margin-bottom: 0;
    background-size: cover;
    background-position: center;
  }

  .support-details__block-text {
    width: 100% !important;
    max-width: 100% !important;
  }

  .support-details__blocks {
    margin-bottom: 0;
  }

  .support-details__subtitle-block {
    margin-top: 64px;
  }

  .support-details__block-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 599px) {
  .support-details__block-title::before {
    display: none;
  }

  .support-details__block-title {
    padding-right: 0;
    font-size: 2.4rem;
    margin-bottom: 8px;
  }
}

/* =============================
   Service CTA Row（steps-section直下）
   ============================= */

.service-cta-section {
  margin-top: 160px;
}

.service-cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.service-cta-row__image {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-cta-row__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.service-cta-row__content {
  flex: 1 1 0;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

}

.service-cta-row__title {
  font-size: 2rem;
  margin-bottom: 18px;
  text-align: center;
}

.service-cta-row__subtitle {
  margin-bottom: 60px;
}

@media (max-width: 787px) {
  .service-cta-row {
    flex-direction: column;
    background-color: transparent;
    overflow: hidden;
  }

  .service-cta-row__image {
    max-width: 100%;
    width: 100%;
  }

  .service-cta-row__image img {
    min-width: unset;
    max-width: 100%;
  }

  .service-cta-row__content {
    align-items: center;
    text-align: center;
    max-width: 100%;
    width: 100%;
    padding: 2em 1em;
    background: #fff;
    box-sizing: border-box;
  }

  .service-cta-row__subtitle {
    margin-bottom: 32px;
  }

  .service-cta-section {
    margin-top: 64px;
  }
}

@media (max-width: 599px) {
  .service-cta-row__image img {
    height: 300px;
  }
}

/* =============================
   Property Archive（物件一覧）
   ============================= */
.property-archive-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  margin-top: 100px;
}

.property-archive-container .property-list .property-card {
	background: #fff;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
    max-width: 420px;
    margin: 0 auto;
    padding: 20px 24px 18px 24px;
}

.property-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 32px;
  flex: 1 1 0;
  overflow: visible;
}

@media (min-width: 1100px) {
  .property-list {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 787px) {
  .property-archive-container {
    flex-direction: column-reverse;
    gap: 32px;
    margin-top: 64px;
  }

  .property-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.property-card .property-card-inner {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  max-width: 420px;
  margin: 0 auto;
  padding: 20px 24px 18px 24px;
}

.property-card__thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f5f5f5;
}

.property-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.property-card__body {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}

.property-card__price {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--body-color);
}

.property-card__price-unit {
  font-size: 1.4rem;
  color: #888;
  font-weight: 400;
  margin-left: 2px;
}

.property-card__fee {
  font-size: 1.1rem;
  color: #888;
  margin-left: 10px;
}

.property-card__title {
  font-weight: 500;
  color: var(--body-color);

}

.property-card__title a {
  color: inherit;
  text-decoration: none;
}

.property-card__title a:hover {
  text-decoration: underline;
}

.property-card__location {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 2px;
}

.property-card__meta {
  font-size: 1.2rem;
  color: #666;
  border-top: 1px solid #eee;
  padding-top: 20px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* サイドバー（検索バー） */
.property-sidebar {
  width: 340px;
  min-width: 280px;
  max-width: 360px;
  border-radius: 12px;
  margin-top: 0;
}

.property-search-title {
  font-size: 1.8rem;
  color: var(--main-color);
  text-align: center;
  background: var(--main-color);
  color: #fff;
  padding: 28px 4px;
}

.property-search-box form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background: #fff;
  padding: 36px 30px;
}

.property-search-box label {
  position: relative;
  padding-bottom: 30px;
  border-bottom: 1px solid #AAAAAA;
  display: block;
}

.property-search-box .input-row {
  display: flex;
  gap: 8px;
  width: 100%;
}

.property-search-box .input-row input[type="text"] {
  flex: 1 1 0;
  min-width: 0;
  box-sizing: border-box;
}

.property-search-box input[type="text"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1.4rem;
  margin-top: 4px;
  margin-bottom: 0;
  background: #fafbfc;
  color: var(--gray);
}

.property-search-box input[type="text"]::placeholder {
  color: var(--gray);
  opacity: 1;
}

.property-search-box select {
  width: 100%;
  padding: 8px 36px 8px 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1.4rem;
  margin-top: 8px;
  margin-bottom: 0;
  background: #fafbfc url('data:image/svg+xml;utf8,<svg fill="%231F56D8" height="24" viewBox="0 0 20 20" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7.293 7.293a1 1 0 011.414 0L10 8.586l1.293-1.293a1 1 0 111.414 1.414l-2 2a1 1 0 01-1.414 0l-2-2a1 1 0 010-1.414z"/></svg>') no-repeat right 10px center/30px 30px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: var(--gray);
}

.property-search-box select:focus {
  border-color: var(--main-color);
  box-shadow: 0 0 0 2px rgba(31, 86, 216, 0.08);
  outline: none;
}

.property-search-box select:hover {
  border-color: var(--heading-color);
}

.property-search-btn {
  width: 100%;
  padding: 12px 0;
  background: var(--main-color);
  color: #fff;
  border: none;
  border-radius: 24px;
  transition: background 0.2s;
}

.property-search-btn:hover {
  background: var(--heading-color);
}

@media (max-width: 787px) {
  .property-sidebar {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    margin-bottom: 24px;
  }
}

/* =============================
   Property Detail（物件詳細）
   ============================= */
.property-detail {
  padding-top: 160px;
}

.property-detail__title {
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 60px;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 22px;
  color: var(--body-color);
}

.property-detail__main {
  display: flex;
  gap: 48px;
  align-items: flex-start;
  justify-content: space-between;
}

.property-detail__gallery-area {
  flex: 1 1 0;
  max-width: 740px;
  min-width: 340px;
}

.property-gallery,
.main-swiper {
  position: relative;
}

.property-gallery__main-image,
.main-swiper .swiper-slide {
  background: #F9F9F9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.property-gallery__main-image img,
.main-swiper .swiper-slide img {
  object-fit: contain;
  width: 100%;
  height: 420px;
  background: #F9F9F9;
}

.property-gallery__arrow,
.swiper-button-prev,
.swiper-button-next {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(0%) !important;
  width: 40px;
  height: 40px;

  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
  z-index: 10;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 2.4rem;
}

.property-gallery__arrow--prev {
  left: 30px !important;
  width: 40px !important;
  height: 40px !important;
}

.property-gallery__arrow--next {
  right: 30px !important;
  width: 40px !important;
  height: 40px !important;
}

.property-gallery__arrow i.fa-solid {
  color: var(--main-color);
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.property-thumbnails {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  margin-top: 26px;
}

.property-thumbnails__item img {
  width: 100%;
  height: 108px;
  object-fit: cover;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.2s;
}

.property-thumbnails__item img.active,
.property-thumbnails__item img:hover {
  border: 2px solid var(--main-color);
}

.property-info {
  min-width: 320px;
  max-width: 386px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: 1;
}

.property-info__rent-row,
.property-info__sale-row {
  display: flex;
  border: 1px solid #E0E0E0;
  border-radius: 4px 4px 0 0;
  overflow: hidden;
  margin-bottom: 28px;
}

.property-info__rent-label,
.property-info__sale-label {
  flex: 1 1 0;
  background: #F9F9F9;
  padding: 9px 12px;
  font-size: 1.6rem;
  color: var(--body-color);
  display: flex;
  align-items: center;
  border-right: 1px solid #E0E0E0;
}

.property-info__rent-value,
.property-info__sale-value {
  flex: 2 1 0;
  background: #fff;
  padding: 9px 12px;
  font-size: 2.4rem;
  color: var(--main-color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.property-info__section {
  margin-bottom: 38px;
  border-bottom: 1px solid #d6d6d6;
  padding-bottom: 18px;
}

.property-info__label {
  font-size: 1.4rem;
  margin-bottom: 6px;
  position: relative;
  display: inline-block;
}

.property-info__label::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  background: var(--main-color);
  margin-top: 2px;
  border-radius: 2px;
}

.property-info__value {
  font-size: 1.4rem;
  margin-bottom: 0;
  margin-top: 8px;
  word-break: break-all;
}

.property-info__floor-row {
  display: flex;
  gap: 32px;
  border-bottom: 1px solid #C0C0C0;
  padding-bottom: 18px;
  margin-bottom: 24px;
}



.property-info__floor-col {
  flex: 1 1 0;
}

.property-info__floor-col .property-info__label {
  margin-bottom: 6px;
}

.property-info__floor-col .property-info__label::after {
  width: 80px;
}

.property-info__cta {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--main-color);
  color: #fff;
  border-radius: 50px;
  padding: 18px 0;
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 12px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.property-info__cta:hover {
  opacity: 0.8;
}

@media (max-width: 787px) {

  .property-detail__title {
    margin-bottom: 30px;
  }

  .property-detail {
    padding-top: 100px;
  }

  .property-detail__main {
    flex-direction: column;
    gap: 32px;
  }

  .property-detail__gallery-area,
  .property-info {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }

  .property-gallery__main-image,
  .main-swiper .swiper-slide {
    min-height: 220px;
  }

  .property-gallery__main-image img,
  .main-swiper .swiper-slide img {
    height: 220px;
  }

  .property-thumbnails__item img {
    width: 70px;
    height: 50px;
  }

}

@media (max-width: 599px) {
  .property-gallery__arrow--next {
    right: 10px !important;
  }

  .property-gallery__arrow--prev {
    left: 10px !important;
  }
}

.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.thumb-swiper .swiper-slide-thumb-active img,
.property-thumbnails .swiper-slide-thumb-active img {
  border: 2.5px solid var(--main-color);
  box-shadow: 0 2px 8px rgba(31, 86, 216, 0.10);
  opacity: 1 !important;
  filter: none;
  transition: border 0.2s, box-shadow 0.2s, opacity 0.2s, filter 0.2s;
}

.thumb-swiper .swiper-slide img,
.property-thumbnails .swiper-slide img {
  opacity: 0.7;
  filter: grayscale(10%);
  border: 2.5px solid transparent;
  transition: border 0.2s, box-shadow 0.2s, opacity 0.2s, filter 0.2s;
}

.property-pr-comment {
  margin-top: 100px;
}

.property-info-table-section {
  margin-top: 80px;
}

.property-info-table__title {
  text-align: center;
  color: #1F56D8;
  font-size: 3.6rem;
  margin-bottom: 40px;
}

.property-info-table tr,
.property-info-table th,
.property-info-table td {
  border: none !important;
}

.property-info-table__pair {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid #d6d6d6;
  padding: 26px 0 26px 0;
}

.property-info-table__label {
  color: #1F56D8;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 500;
  min-width: 178px;
}

.property-info-table__value {
  color: #2E2E2E;
  font-size: 1.6rem;
  font-weight: 400;
}

.property-info-table__row--facilities .property-info-table__pair {
  padding-top: 24px;
  font-size: 1.4rem;
}


.property-info-table td+td {
  padding-left: 58px;
}

@media (max-width: 787px) {

  .property-info-table__title {
    font-size: 2.6rem;
    margin-bottom: 24px;
  }

  .property-info-table-section {
    margin-top: 64px;
  }

  .property-info-table {
    font-size: 1.2rem;
  }

  .property-info-table__pair {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 0;
  }

  .property-info-table__label,
  .property-info-table__value {
    font-size: 1.4rem;
  }

  .property-info-table__label {
    min-width: 100%;
  }

  .property-info-table__row--facilities .property-info-table__pair {
    padding-top: 16px;
    font-size: 1.1rem;
  }

  .property-info-table td+td {
    padding-left: 16px;
  }

  .property-pr-comment {
    margin-top: 64px;
  }
}

.property-map-section {
  margin: 64px auto 0 auto;
  text-align: center;
}

.property-map-section__title {
  color: #1F56D8;
  font-size: 3.6rem;
  margin-bottom: 40px;
}

.property-map-section__map {
  display: flex;
  justify-content: center;
  align-items: center;
}

.property-map-section__map iframe {
  width: 800px;
  height: 600px;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 787px) {
  .property-map-section__map iframe {
    width: 100vw;
    max-width: 100%;
    height: 300px;
  }

  .property-map-section {
    margin: 32px 0 0 0;
  }

  .property-map-section__title {
    font-size: 2.6rem;
    margin-bottom: 18px;
  }
}

.property-info-table td {
  width: 50%;
}

.page-header__blog_title {
  font-size: 10rem;
}

/* ===== Blog Top Picks & Blog & Tips 共通カードデザイン ===== */

.top-picks-section {
  margin-top: 100px;
}

.blog-tips-section {
  margin-top: 60px;
}

.top-picks-section__title,
.blog-tips-section__title {
  text-align: center;
  font-size: 3.6rem;
  margin-bottom: 40px;
}

.card-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
  margin-bottom: 48px;
}

.blog-card {
  overflow: hidden;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  padding-bottom: 18px;
}

.blog-card__thumb img,
.blog-card__thumb {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 8px;
}

.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.blog-card__category {
  display: inline-block;
  border: 1px solid #1F56D8;
  color: #1F56D8;
  border-radius: 30px;
  padding: 4px 18px;
  font-size: 1.3rem;
}

.blog-card__date {
  font-size: 1.3rem;
}

.blog-card__title {
  font-size: 1.8rem;
  color: #2E2E2E;
  margin: 20px 0 8px 0;
}

.blog-card__excerpt {
  font-size: 1.4rem;
}

.blog-card__excerpt,
.blog-card__date {
  color: #2E2E2E;
}

/* レスポンシブ対応 */
@media (max-width: 787px) {
  .card-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-title {
    font-size: 2.2rem;
    margin: 32px 0 18px 0;
  }
}

/* =============================
   Hero Section (front-page.php)
   ============================= */

.hero {
  margin-top: 140px;
  position: relative;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
}

.hero-flex {
  display: flex;
  align-items: center;
  gap: 100px;
  height: 100%;
  width: 80%;
  position: absolute;
  z-index: 1;
  left: 0;
  padding-left: 6vw;
}

.hero-left {
  max-width: 50%;
}

.hero-title {
  font-size: clamp(4rem, 5.4vw, 7.4rem);
  font-weight: 500;
  color: #2E2E2E;
  margin-bottom: 78px;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.18), 0 2px 2px rgba(0, 0, 0, 0.10);
}

.hero-title-blue {
  color: var(--main-color);
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.18), 0 2px 2px rgba(0, 0, 0, 0.10);
}

.hero-support-row {
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.hero-support-label {
  font-size: clamp(1.4rem, 1.6162vw, 2.4rem);
  color: #2E2E2E;
  font-family: 'Poppins', Arial, sans-serif;
  font-weight: 500;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.18), 0 2px 2px rgba(0, 0, 0, 0.10);
}

.hero-japan-img {
  height: 1.6162vw;
  vertical-align: middle;
  display: inline-block;
  min-height: 14px;
}

.hero-support-text {
  font-size: clamp(1.4rem, 1.6162vw, 2.4rem);
  color: #2E2E2E;
  font-weight: 500;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.18), 0 2px 2px rgba(0, 0, 0, 0.10);
}

.hero-japan {
  color: var(--main-color);
}

.hero-right {
  width: 69%;
  height: auto;
}

.hero-main-image {
  position: relative;
  display: flex;
  justify-content: flex-end;

}

.hero-main-image img {
  width: 100%;
}

.hero-scroll {
  position: absolute;
  left: 20px;
  bottom: 0;
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  color: var(--main-color);
  font-weight: 600;
  user-select: none;
  cursor: default;
  display: flex;
  gap: 24px;
  font-family: 'Playfair Display', serif;
}

.hero-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 60px;
  margin: 0 auto;
  background: var(--main-color);
  border-radius: 1px;
  opacity: 0.7;
  transform: scaleY(0);
  transform-origin: top;
  animation: scroll-underline 1.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes scroll-underline {
  0% {
    transform: scaleY(0);
    opacity: 0.2;
  }

  10% {
    opacity: 0.7;
  }

  80% {
    transform: scaleY(1);
    opacity: 0.7;
  }

  100% {
    transform: scaleY(1);
    opacity: 0.2;
  }
}

@media (max-width: 1023px) {

  .hero-title {
    margin-bottom: 32px;
  }

  .hero-scroll {
    left: 16px;
  }

  .hero-right {
    padding-left: 12vw;
  }

  .hero {
    margin-top: 80px;
  }

}

@media (max-width: 787px) {
  .hero-scroll {
    left: 10px;
    font-size: 1.2rem;
  }

  .hero-scroll::after {
    height: 36px;
    animation-duration: 1.5s;
  }

  .hero-flex {
    padding-left: 7vw;
  }
}

@media (max-width: 599px) {
  .hero-flex {
    padding-left: 0;
    position: inherit;
    width: 96%;
  }

  .hero-scroll {
    display: none;
  }

  .hero {
    gap: 20px;
    flex-direction: column-reverse;
    margin-top: 100px;
  }

  .hero-left {
    max-width: 100%;
  }

  .hero-right {
    padding-left: 0;
    width: 100%;
  }

}

/* =============================
   All in One Section
   ============================= */
.all-in-one-section {
  position: relative;
  background: transparent;
  margin-top: 120px;
}

.all-in-one-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.all-in-one-title {
  font-size: 3.6rem;
  margin-bottom: 32px;
}

.all-in-one-texts {
  color: #2E2E2E;
  font-size: 2.0rem;
  font-weight: 400;
  margin-bottom: 80px;
}

.all-in-one-texts p {
  margin-bottom: 24px;
  font-size: 1.8rem;
}

.all-in-one-btn-wrap {
  margin-top: 24px;
}

.all-in-one-btn {
  display: inline-block;
  padding: 9.5px 48px;
  border: 1px solid var(--main-color);
  border-radius: 32px;
  color: var(--main-color);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.all-in-one-btn:hover {
  background: var(--main-color);
  color: #fff;
}

.all-in-one-bg-left,
.all-in-one-bg-right {
  position: absolute;
  width: 230px;
  height: 230px;
  background: url('/wp-content/uploads/2025/07/赤とベージュ_和風_和柄_インスタグラムストーリー背景__1_-removebg-preview-6-1.png') center/cover no-repeat;
  opacity: 1;
  z-index: 1;
}

.all-in-one-bg-left {
  left: -80px;
  top: 0;
}

.all-in-one-bg-right {
  right: -80px;
  bottom: 0;
}

@media (max-width: 787px) {
  .all-in-one-section {
    margin-top: 180px;
  }

  .all-in-one-title {
    margin-bottom: 28px;
  }

  .all-in-one-inner {
    max-width: 98vw;
    padding: 0 8px;
  }

  .all-in-one-texts {
    font-size: 1.2rem;
    margin-bottom: 28px;
  }

  .all-in-one-bg-left,
  .all-in-one-bg-right {
    width: 120px;
    height: 120px;
  }

  .all-in-one-bg-left {
    left: -70px;
    top: -120px;
  }

  .all-in-one-bg-right {
    right: -80px;
  }

  .all-in-one-btn {
    font-size: 1.2rem;
    padding: 10px 28px;
  }
}

@media (max-width: 599px) {
  .all-in-one-title {
    font-size: 2.6rem;
  }
}

/* =============================
   All in One Swiper Custom
   ============================= */
.all-in-one-swiper {
  margin: 48px auto 0 auto;
  max-width: 600px;
  width: 90%;
  position: relative;
  z-index: 3;
}

.all-in-one-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  padding: 16px;
}

.all-in-one-swiper .swiper-slide img {
  max-width: 100%;
  max-height: 320px;
  width: auto;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
}

.all-in-one-swiper .swiper-pagination {
  bottom: 8px !important;
}

.all-in-one-swiper .swiper-button-prev,
.all-in-one-swiper .swiper-button-next {
  color: var(--main-color);
  top: 50%;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  transition: background 0.2s, color 0.2s;
}

.all-in-one-swiper .swiper-button-prev i,
.all-in-one-swiper .swiper-button-next i {
  font-size: 1.4em;
  color: var(--main-color);
  pointer-events: none;
}

.all-in-one-swiper .swiper-button-prev:hover,
.all-in-one-swiper .swiper-button-next:hover {
  background: var(--main-color);
}

.all-in-one-swiper .swiper-button-prev:hover i,
.all-in-one-swiper .swiper-button-next:hover i {
  color: #fff;
}

@media (max-width: 700px) {
  .all-in-one-swiper {
    max-width: 98vw;
  }

  .all-in-one-swiper .swiper-slide img {
    max-height: 180px;
  }
}

/* =============================
   カード型スライダー（card03）
   ============================= */
.fp-swiper-section {
  margin: 160px auto 0 auto;

}

.fp-swiper-title {
  font-size: 3.6rem;
  margin-bottom: 56px;
  text-align: center;
}

.card03.l-section {
  position: relative;
  z-index: 3;
}

.card03 .l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}

.card03 .swiper {
  width: 100%;
  overflow: visible;
}

.card03 .swiper-slide {
  display: block;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}

.slide {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.slide-media.img-cover {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f5f5f5;
}

.slide-media.img-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-content {
  padding: 18px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide-date {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 4px;
}

.slide-title {
  font-size: 1.6rem;
  color: var(--main-color);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.card03 .swiper-button-prev,
.card03 .swiper-button-next {
  color: var(--main-color);
  top: 50%;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s, color 0.2s;
}

.card03 .swiper-button-prev i,
.card03 .swiper-button-next i {
  font-size: 1.4em;
  color: var(--main-color);
  pointer-events: none;
}

@media (max-width: 787px) {

  .fp-swiper-section {
    margin-top: 64px;
  }

  .fp-swiper-title {
    margin-bottom: 28px;
  }


  .slide-media.img-cover {
    aspect-ratio: 16/10;
  }

  .slide-content {
    padding: 12px 8px 10px 8px;
  }

  .slide-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 599px) {
  .fp-swiper-title {
    font-size: 2.6rem;
  }
}

/* =============================
   汎用View Moreボタン
   ============================= */
.button-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 0;
}

.button-more {
  display: inline-block;
  padding: 8.5px 48px;
  border: 1px solid var(--main-color);
  border-radius: 32px;
  color: var(--main-color);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border 0.2s;
  cursor: pointer;
  text-align: center;
}

.button-more:hover,
.button-more:focus {
  background: var(--main-color);
  color: #fff;
  border-color: var(--main-color);
  outline: none;
}


/* =============================
   Real Support Section（front-page.php用）
   ============================= */
.real-support-section {
  margin: 120px auto 0 auto;
  max-width: 1100px;
  text-align: left;
}

.real-support-title {
  text-align: left;
  font-size: 3.2rem;
  color: var(--main-color);
  margin-bottom: 48px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.real-support-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media (min-width: 900px) {
  .real-support-list {
    flex-direction: column;
    gap: 40px;
  }
}

.real-support-item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.real-support-icon {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.real-support-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.real-support-item-title {
  font-size: 2.0rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--body-color);
}

.real-support-item p {
  font-size: 1.4rem;
  color: var(--body-color);
  margin: 0;
}

/* =============================
   Real Support Visual Section（front-page.php用）
   ============================= */
.real-support-visual {
  margin-top: 160px;
  overflow: hidden;
  position: relative;
}

.real-support-visual__inner {
  display: flex;
  align-items: center;
  min-height: 480px;
  justify-content: flex-end;
}

.real-support-visual__image {
  left: 0;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 40%;
  max-width: 800px;

}

.real-support-visual__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0 8px 8px 0;
}

.real-support-visual__content {
  flex: 1 1 54%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 54%;
}

.real-support-visual__title {
  font-size: 3.6rem;
  margin-bottom: 56px;
}

.real-support-visual__features {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.real-support-visual__feature {
  display: flex;
  align-items: center;
  gap: 50px;
}

.real-support-visual__icon {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.real-support-visual__icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.real-support-visual__feature-title {
  font-size: 2.4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--body-color);
}

.real-support-visual__feature-desc {
  font-size: 1.4rem;
}

@media (max-width: 1023px) {
  .real-support-visual__inner {
    flex-direction: column;
    gap: 40px;
  }

  .real-support-visual__image {
    position: initial;
  }

  .real-support-visual__content {
    flex: 1;
    max-width: 100%;
  }

  .real-support-visual__title {
    text-align: center;
  }
}

@media (max-width: 787px) {

  .real-support-visual {
    margin-top: 64px;
  }

  .real-support-visual__image,
  .real-support-visual__content {
    flex: unset;
    min-width: 0;
    padding: 0;
  }


  .real-support-visual__title {
    margin-bottom: 24px;
  }

  .real-support-visual__features {
    gap: 20px;
  }

  .real-support-visual__feature {
    gap: 24px;
  }

}

@media (max-width: 599px) {
  .real-support-visual__image {
    width: 80%;
  }

  .real-support-visual__title {
    font-size: 2.6rem;
  }

  .real-support-visual__feature {
    flex-direction: column;
    gap: 12px;
  }

  .real-support-visual__feature-title {
    margin-bottom: 6px;
    text-align: center;
  }

}

/* =============================
   Meet Kyoko Section（front-page.php用）
   ============================= */
.meet-kyoko-section {
  margin-top: 160px;
}

.meet-kyoko-header {
  text-align: center;
  margin-bottom: 48px;
  position: relative;
}

.meet-kyoko-mizuhiki {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.meet-kyoko-title {
  font-size: 4.8rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 12px;
}

.meet-kyoko-subtitle {
  font-family: 'Dancing Script', cursive;
  color: var(--main-color);
  font-size: 2.4rem;
  margin-bottom: 0;
  font-weight: 500;
}

.meet-kyoko-card {
  position: relative;
  width: 33.333333%;
}

.meet-kyoko-cards-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 60px;
  position: relative;
}

.meet-kyoko-card-inner {
  background: #fff;
  border-radius: 8px;
  padding: 32px 30px 28px 30px;
  min-height: 166px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 0;
}

.meet-kyoko-card-title {
  font-size: 2rem;
  color: var(--main-color);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 12px;
}


.meet-kyoko-main-row {
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
}

.meet-kyoko-main-text {
  flex: 1 1 0;
  min-width: 320px;
  max-width: 51%;
}

.meet-kyoko-main-title {
  font-size: 2.4rem;
  margin-bottom: 40px;
}

.meet-kyoko-main-desc {
  margin-bottom: 60px;
}

.meet-kyoko-main-desc p {
  margin-bottom: 18px;
}

.meet-kyoko-btn {
  display: inline-block;
  border: 1px solid var(--main-color);
  color: var(--main-color);
  background: transparent;
  border-radius: 50px;
  padding: 9.5px 50px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.meet-kyoko-btn:hover {
  background: var(--main-color);
  color: #fff;
}

.meet-kyoko-main-photo {
  flex: 0 0 464px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.meet-kyoko-main-photo img {
  width: 464px;
  height: 480px;
  object-fit: cover;
  position: relative;
}

@media (max-width: 787px) {

  .meet-kyoko-section {
    margin-top: 64px;
  }

  .meet-kyoko-cards-row {
    flex-direction: column;
    gap: 60px;
    align-items: center;
  }

  .meet-kyoko-main-row {
    flex-direction: column-reverse;
    gap: 32px;
    align-items: center;
  }

  .meet-kyoko-main-photo {
    flex: 1;
  }

  .meet-kyoko-main-text {
    max-width: 100%;
    min-width: unset;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }

  .meet-kyoko-main-desc {
    margin-bottom: 32px;
  }

  .meet-kyoko-card {
    width: 80%;
  }
}

.meet-kyoko-card-decoration {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: url(/wp-content/uploads/2025/07/赤とベージュ_和風_和柄_インスタグラムストーリー背景__2_-removebg-preview-4.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
  z-index: -1;
}

.meet-kyoko-card-decoration {
  right: -22px;
  top: -22px;
  left: auto;
  bottom: auto;
}


@media (max-width: 599px) {
  .meet-kyoko-card {
    width: 90%;
  }

  .meet-kyoko-title {
    font-size: 3.8rem;
  }

  .meet-kyoko-card-title {
    text-align: center;
  }

  .meet-kyoko-main-photo img {
    width: 100%;
    height: auto;
  }

  .meet-kyoko-btn {
    padding: 9.5px 30px;
  }
}

/* ===z==========================
   Foreigner Support Section (front-page.php)
   ============================= */

.foreigner-support-section {
  margin-top: 160px;
  background: #f7f3ed;
  position: relative;
  overflow: hidden;
}

.foreigner-support-hero {
  background: url('/wp-content/uploads/2025/07/Rectangle-1031.jpg') center/cover no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foreigner-support-hero-inner {
  position: relative;
  z-index: 2;
  text-align: left;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 250px;
}

.foreigner-support-hero-title {
  margin-bottom: 24px;
  display: flex;
  justify-content: flex-end;
}

.foreigner-support-hero-title h2 {
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  color: #fff;
  font-size: clamp(2rem, 6vw, 4.8rem);
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.foreigner-support-hero-desc {
  font-size: 2.4rem;
  color: #fff;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  max-width: 700px;
}

.foreigner-support-main-inner {
  background: #fff;
  border-radius: 8px 8px 0 0;
  margin-top: -60px;
  position: relative;
  z-index: 2;
  padding: 94px 32px 94px 32px;
}

.foreigner-support-main-title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 74px;
}

.foreigner-support-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 48px 32px;
  max-width: 787px;
  margin: 0 auto;
}

.foreigner-support-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: none;
}

.foreigner-support-feature-img {
  width: 280px;
  height: 340px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.foreigner-support-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.foreigner-support-feature-title {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 16px;
}

.foreigner-support-feature-desc {
  font-size: 1.4rem;
}

.foreigner-support-cta-bg {
  background: url('/wp-content/uploads/2025/07/Rectangle-1078.jpg') center/cover no-repeat;
  height: 700px;
  display: flex;
  justify-content: center;
  margin-top: 0;
  position: relative;
}

.foreigner-support-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 0 48px 0;
}

.foreigner-support-cta-text p {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.4rem, 4.4vw, 3.2rem);
  color: #fff;
  margin-bottom: 150px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.foreigner-support-cta-btn-wrap {
  display: flex;
  justify-content: center;
}

@media (max-width: 787px) {

  .foreigner-support-main-title {
    font-size: 2.6rem;
  }

  .foreigner-support-hero-title {
    justify-content: center;
    text-align: center;
  }

  .foreigner-support-section {
    margin-top: 80px;
  }

  .foreigner-support-hero-inner {
    padding: 50px 0 50px 0;
  }


  .foreigner-support-feature-img {
    max-width: 150px;
    max-height: 150px;
    width: 100%;
    height: auto;
    margin-bottom: 10px;
  }

  .foreigner-support-cta-inner {
    padding: 32px 0 24px 0;
  }

  .foreigner-support-features-grid::after,
  .foreigner-support-features-grid::before {
    display: none;
  }


}

@media (max-width: 599px) {
  .foreigner-support-features-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(4, 1fr);
    gap: 28px 0;
  }

  .foreigner-support-main-title {
    font-size: 2rem;
  }

  .foreigner-support-hero-desc {
    font-size: 1.6rem;
  }

  .foreigner-support-feature-title {
    text-align: center;
  }

  .foreigner-support-hero-inner {
    gap: 180px;
  }

  .foreigner-support-hero {
    min-height: 530px;
  }

  .foreigner-support-cta-bg {
    height: 500px;
  }
}

.blue-underline {
  position: relative;
}

.blue-underline::after {
  content: '';
  display: block;
  width: 100%;
  height: 5px;
  background: #1F56D8;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.foreigner-support-feature {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.foreigner-support-features-grid {
  position: relative;
}

.foreigner-support-features-grid::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50px;
  width: 1px;
  height: 400px;
  background: #D9D9D9;
  transform: translateX(-50%);
  z-index: 1;
}

.foreigner-support-features-grid::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 50px;
  width: 1px;
  height: 400px;
  background: #D9D9D9;
  transform: translateX(-50%);
  z-index: 1;
}

@media (max-width: 787px) {
  .foreigner-support-feature {
    width: 100%;
  }
}

@media (max-width: 599px) {
  .foreigner-support-main-inner {
    padding: 50px 32px 50px 32px;
  }
}

.cta-consult-btn {
  display: inline-block;
  background: #fff;
  color: #1F56D8;
  font-size: 3.2rem;
  font-weight: 700;
  border-radius: 48px;
  padding: 14px;
  box-shadow: 0 4px 24px rgba(31, 86, 216, 0.12);
  text-align: center;
  text-decoration: none;
  transition: box-shadow 0.2s, background 0.2s, color 0.2s;
  border: none;
  outline: none;
  max-width: 546px;
  width: 100%;
}

.cta-consult-btn i.fa-solid {
  color: #1F56D8;
  margin-left: 12px;
  font-size: 2rem;
  vertical-align: middle;
  transition: color 0.2s;
}

.cta-consult-btn:hover,
.cta-consult-btn:focus {
  background: #1F56D8;
  color: #fff;
}

.cta-consult-btn:hover i.fa-solid {
  color: #fff;
}

@media (max-width: 599px) {
  .cta-consult-btn {
    font-size: 1.8rem;
    padding: 1.2rem 1.2rem;
    min-width: 0;
    width: 100%;
    border-radius: 32px;
  }
}

/* =============================
   Browse by Category Section (front-page.php)
   ============================= */
.browse-category-section {
  margin-top: 120px;
  margin-bottom: 0;
  background: transparent;
  position: relative;
  z-index: 2;
}

.browse-category-header {
  text-align: center;
  margin-bottom: 42px;
}

.browse-category-mizuhiki {
  display: block;
  margin: 0 auto 18px auto;
}

.browse-category-title {
  font-size: 3.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--main-color);
  margin-bottom: 0;
}

.browse-category-grid {
  gap: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.browse-category-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  min-height: 220px;
  aspect-ratio: 16/9;
  text-decoration: none;
  color: #fff;
  transition: transform 0.18s, box-shadow 0.18s;
  width: calc(33.333% - 20px);
}

.browse-category-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(46, 46, 46, 0.3);
  z-index: 2;
  pointer-events: none;
  border-radius: 8px;
}

.browse-category-card-img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.browse-category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.browse-category-card-label {
  position: relative;
  z-index: 3;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  padding: 0 0 12px 20px;
  margin-top: auto;
}

@media (max-width: 787px) {

  .browse-category-card {
    min-height: 160px;
    aspect-ratio: 16/10;
  }

  .browse-category-title {
    font-size: 2.4rem;
  }

  .browse-category-section {
    margin-top: 64px;
  }
}

@media (max-width: 599px) {
  .browse-category-grid {
    gap: 16px;
  }

  .browse-category-card {
    width: 100%;
  }

  .browse-category-header {
    margin-bottom: 28px;
  }

}

/* =============================
   Clients Testimonials Slider Section
   ============================= */
.clients-slider-section {
  margin-top: 120px;
  margin-bottom: 0;
  background: transparent;
  z-index: 2;
}

.clients-slider-title {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 40px;
  font-family: 'Playfair Display', serif;
}

.clients-slider-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  position: relative;
  box-sizing: border-box;
  max-width: 980px;
  margin: 0 auto;
}

.clients-swiper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.clients-swiper .swiper-wrapper {
  align-items: stretch;
}

.clients-slide {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.clients-slider-wrapper {
  position: relative;
}

.clients-swiper-prev_next-wrapper {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  left: 50%;
  transform: translate(-50%, -50%);
}

.clients-swiper-prev_next-wrapper .swiper-button-prev {
  left: 0 !important;
  width: 60px;
  height: 60px;
}

.clients-swiper-prev_next-wrapper .swiper-button-next {
  right: 0 !important;
  width: 60px;
  height: 60px;
}

.clients-slide-inner {
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px 36px 28px;
  height: 100%;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  box-sizing: border-box;
}

.clients-slide-text {
  font-size: 1.4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.clients-swiper-prev,
.clients-swiper-next {
  color: var(--main-color);
  top: 50%;
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  position: absolute;
  z-index: 10;
  cursor: pointer;
}

.clients-swiper-prev {
  left: -70px;
  transform: translateY(-50%);
}

.clients-swiper-next {
  right: -70px;
  transform: translateY(-50%);
}

@media (max-width: 1200px) {
  .clients-slider-container {
    padding: 0 20px;
  }

  .clients-swiper-prev {
    left: -20px;
  }

  .clients-swiper-next {
    right: -20px;
  }
}

@media (max-width: 787px) {
  .clients-slider-container {
    padding: 0 0px;
    width: 70%;
  }

  .clients-swiper {
    padding: 0 0px;
  }


  .clients-slider-title {
    font-size: 2.4rem;
    margin-bottom: 28px;
  }

  .clients-swiper-prev,
  .clients-swiper-next {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    left: -10px;
    right: -10px;
  }

  .clients-slider-section {
    margin-top: 64px;
  }
}

@media (max-width: 599px) {

  .clients-swiper-prev_next-wrapper .swiper-button-prev,
  .clients-swiper-prev_next-wrapper .swiper-button-next {
    width: 40px;
    height: 40px;
  }

  .clients-swiper-prev_next-wrapper {
    width: 95%;
  }

}

/* =============================
   SNS & Instagram Section
   ============================= */
.sns-instagram-section {
  margin-top: 160px;
  display: flex;
  gap: 100px;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}

.sns-block {
  width: calc(50% - 50px);
}

.sns-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.sns-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 0 32px 0;
  background: #1F56D8;
  color: #fff;
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s, background 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  cursor: pointer;
  max-height: 180px;
  text-decoration: none;
  border-radius: 8px;
}

.sns-card i {
  font-size: 3.2rem;
  margin-bottom: 18px;
  background: #fff;
  color: #1F56D8;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sns-card span {
  font-size: 1.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-top: 8px;
}

.sns-card.sns-linkedin {
  background: #1F56D8;
}

.sns-card.sns-whatsapp {
  background: #2ecc40;
}

.sns-card.sns-instagram {
  background: #c0392b;
}

.sns-card.sns-facebook {
  background: #3b5998;
}

.sns-card:hover {
  box-shadow: 0 6px 24px rgba(31, 86, 216, 0.13);
  transform: translateY(-4px) scale(1.03);
  opacity: 0.95;
}

.instagram-block {
  width: calc(50% - 50px);
}

.instagram-embed {
  flex-wrap: wrap;
  gap: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}

.instagram-embed iframe {
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

@media (max-width: 787px) {
  .sns-instagram-section {
    flex-direction: column;
    gap: 40px;
    margin-top: 64px;
  }

  .sns-block,
  .instagram-block {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }

  .sns-grid {
    gap: 16px;
  }
}

.sns-title {
  text-align: center;
  margin-bottom: 32px;
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
}

.instagram-btn-wrap {
  text-align: center;
  margin-top: 32px;
}

.instagram-btn {
  display: inline-block;
  max-width: 180px;
}

.sns-card.sns-linkedin i {
  color: #1F56D8;
}

.sns-card.sns-whatsapp i {
  color: #2ecc40;
}

.sns-card.sns-instagram i {
  color: #c0392b;
}

.sns-card.sns-facebook i {
  color: #3b5998;
}

/* =============================
   Real Estate Blog & Tips Section (front-page.php)
   ============================= */
.blog-tips-latest-section {
  margin-top: 120px;
  margin-bottom: 0;
  background: transparent;
  position: relative;
  z-index: 2;
  padding-bottom: 130px;
}

.blog-tips-latest-title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 500;
  margin-bottom: 40px;
  color: var(--main-color);
}

.blog-tips-latest-list {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
}

.blog-tips-latest-item {
  width: 23%;
  min-width: 220px;
  max-width: 280px;
  display: flex;
  flex-direction: column;
  background: none;
}

.blog-tips-latest-thumb {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 0;
}

.blog-tips-latest-thumb img,
.blog-tips-latest-thumb .wp-post-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.blog-tips-latest-name {
  margin: 18px 0 0 0;
  font-size: 1.8rem;
  font-family: 'Playfair Display', serif;
  color: var(--body-color);
  font-weight: 500;
}

@media (max-width: 787px) {
  .blog-tips-latest-list {
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .blog-tips-latest-item {
    width: 100%;
    max-width: 100%;
  }

  .blog-tips-latest-section {
    margin-top: 64px;
  }
}

@media (max-width: 599px) {
  .blog-tips-latest-title {
    font-size: 2.4rem;
    margin-bottom: 28px;
  }
}

.blog-tips-latest-section .button-more-wrap {
  margin-top: 24px;
  margin-bottom: 0;
}

/* Blog Tips Latest Section 装飾 */
.blog-tips-latest-decor {
  position: absolute;
}

.blog-tips-latest-decor--left {
  top: -140px;
  left: -90px;
  width: 200px;
  height: 220px;
  background-image: url(/wp-content/uploads/2025/07/赤とベージュ_和風_和柄_インスタグラムストーリー背景__1_-removebg-preview-6-1.png);
  background-repeat: no-repeat;
  z-index: -1;
  background-size: cover;
}

.blog-tips-latest-decor--right {
  bottom: 14px;
  right: -60px;
  width: 190px;
  height: 210px;
  background-image: url('/wp-content/uploads/2025/07/赤とベージュ_和風_和柄_インスタグラムストーリー背景__2_-removebg-preview-4.png');
}

.blog-tips-latest-section {
  position: relative;
  overflow: visible;
}

@media (max-width: 787px) {
  .blog-tips-latest-decor--left {
    top: -20px;
    left: -56px;
    width: 140px;
    height: 150px;
  }
}

/* =============================
   FAQ Section (front-page.php)
   ============================= */
.faq-section {
  background: transparent;
  position: relative;
  z-index: 2;
}

.faq-title {
  text-align: center;
  font-size: 3.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 40px;
}

.faq-list-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 1 1 50%;
}

.faq-item {
  display: flex;
  border-bottom: 1px solid #bbb;
  padding: 0 0 30px 0;
  position: relative;
  flex-direction: column;
}

.faq-number {
  color: var(--main-color);
  font-size: 1.6rem;
  margin-right: 12px;
}

.faq-question {
  flex: 1 1 0;
  font-family: 'Poppins', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--body-color);
  line-height: 1.5;
}

.faq-toggle {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(31, 86, 216, 0.08);
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.2s;
}

.faq-toggle i {
  color: var(--main-color);
  font-size: 1.6rem;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-toggle:hover {
  background: var(--main-color);
}

.faq-toggle:hover i {
  color: #fff;
}

.faq-item.open .faq-toggle i {
  transform: rotate(180deg);
}

.faq-answer {
  display: block;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  font-size: 1.4rem;
  transition: max-height 0.6s ease, opacity 0.6s ease, padding-top 0.6s ease;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  opacity: 1;
  padding-top: 18px;
  font-size: 1.4rem;
}

@media (max-width: 787px) {
  .faq-list-wrapper {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .faq-list {
    min-width: 0;
    max-width: 98vw;
    width: 100%;
  }

  .faq-title {
    font-size: 2.4rem;
    margin-bottom: 28px;
  }
}

@media (max-width: 599px) {
  .blog-tips-latest-decor--right {
    width: 110px;
    height: 100px;
  }
}

.faq-question-row {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: default;
  margin-bottom: 0;
}

.faq-toggle {
  margin-left: 18px;
  cursor: pointer;
}

.faq-item .faq-question-row {
  margin-bottom: 0;
}

/* =============================
   Steps Guide Section (FAQ直下)
   ============================= */
.steps-guide-section {
  position: relative;
  overflow: visible;
  margin-top: 160px;
}

.steps-guide-container {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.steps-guide-left {
  flex: 0 0 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 320px;
}

.steps-guide-lead {
  color: #1F56D8;
  font-size: 2.4rem;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
}

.steps-guide-title {
  font-size: 3.6rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--body-color);
}

.steps-guide-right {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.steps-guide-step-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 46px 40px 46px 40px;
  margin-bottom: 0;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 160px;
  overflow: visible;
}

.steps-guide-step-card::before {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  z-index: -1;
  pointer-events: none;
  box-sizing: border-box;
  background-color: #2563eb;
}

.steps-guide-step-card>* {
  position: relative;
  z-index: 2;
}

.steps-guide-step-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.steps-guide-step-number {
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
}

.steps-guide-step-img {
  max-width: 324px;
  max-height: 230px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.steps-guide-step-content {
  display: flex;
  flex-direction: column;
}

.steps-guide-step-title {
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  color: var(--body-color);
  margin-bottom: 0;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 18px;
  margin-bottom: 18px;
}

.steps-guide-step-desc {
  margin-bottom: 0;
  font-weight: 500;
}

.steps-guide-step-btn {
  display: inline-block;
  background: #1F56D8;
  color: #fff;
  border-radius: 32px;
  padding: 14.5px 0;
  font-weight: 600;
  margin-top: 32px;
  margin-bottom: 0;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  max-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.steps-guide-step-btn:hover {
  background: #2563eb;
  color: #fff;
}

.steps-guide-step-btn i {
  margin-left: 8px;
  font-size: 1em;
}

.steps-guide-step-email {
  font-size: 1.4rem;
  margin-top: 20px;
}

@media (max-width: 1024px) {

  .steps-guide-left {
    flex: 1;
  }

  .steps-guide-container {
    flex-direction: column;
    gap: 60px;
  }

  .steps-guide-left {
    padding-left: 0;
    align-items: center;
    width: 100%;
    text-align: center;
  }

  .steps-guide-right {
    max-width: 100%;
  }
}

@media (max-width: 787px) {

  .steps-guide-left {
    min-width: initial;
  }

  .steps-guide-section {
    margin-top: 64px;
  }

  .steps-guide-step-card {
    gap: 40px;
  }

  .steps-guide-step-header {
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 32px;
  }

  .steps-guide-step-content {
    align-items: center;
  }

  .steps-guide-step-btn {
    padding: 14.5px 26px;
  }

  .steps-guide-step-title {
    font-size: 3rem;
  }

  .steps-guide-title {
    font-size: 2.6rem;
  }

  .steps-guide-lead {
    font-size: 2rem;
    margin-bottom: 6px;
  }

  .steps-guide-step-card {
    min-width: initial;
  }

}

@media (max-width: 599px) {

  .steps-guide-step-number {
    font-size: 3rem;
  }

  .steps-guide-step-img {
    max-width: 270px;
    max-height: 130px;
  }

  .steps-guide-step-card {
    padding: 30px 20px 30px 20px;
  }

  .steps-guide-step-btn {
    padding: 14.5px 0;
    width: 100%;
    font-size: 1.4rem;
  }

  .steps-guide-step-title {
    font-size: 2.2rem;
    width: 100%;
    text-align: center;
  }
}

/* =============================
   Contact Section Custom
   ============================= */
.contact-section {
  max-width: 800px;
  margin: 80px auto 0 auto;
}

.contact-section__header {
  text-align: center;
  margin-bottom: 52px;
  border-bottom: 1px solid #C0C0C0;
  padding-bottom: 52px;
}

.contact-section__catch {
  color: #1F56D8;
  font-size: 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 18px;
}

.contact-section__support {
  color: #2E2E2E;
  font-size: 1.6rem;
}

.wpcf7-list-item {
  margin-left: 0;
  margin-right: 1em;
}

/* Contact Form 7 custom styles */
.contact-section .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.contact-section .wpcf7-form label {
  margin-bottom: 10px;
  display: block;
}

.contact-section .wpcf7-form input[type="text"],
.contact-section .wpcf7-form input[type="email"],
.contact-section .wpcf7-form input[type="tel"],
.contact-section .wpcf7-form textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 10px 12px;
  font-size: 1.5rem;
  background: #fff;
  color: #2E2E2E;
  margin-bottom: 0;
  box-sizing: border-box;
}

.contact-section .wpcf7-form textarea {
  min-height: 250px;
  resize: vertical;
}

.contact-section .wpcf7-form .wpcf7-submit {
  display: block;
  width: 200px;
  margin: 32px auto 0 auto;
  background: #1F56D8;
  color: #fff;
  border: none;
  border-radius: 32px;
  padding: 12px 0;
  font-size: 1.6rem;
  font-weight: 500;
  transition: background 0.2s;
  cursor: pointer;
}

.contact-section .wpcf7-form .wpcf7-submit:hover {
  background: #1742a7;
}

.contact-section .wpcf7-form .wpcf7-not-valid-tip {
  color: #c0392b;
  font-size: 1.2rem;
  margin-top: 2px;
}

.contact-section .wpcf7-form .wpcf7-response-output {
  margin-top: 18px;
  text-align: center;
  font-size: 1.3rem;
}

.form-group {
  margin-bottom: 30px;
}


@media (max-width: 700px) {
  .contact-section {
    max-width: 98vw;
    padding: 18px 0 32px 0;
  }

  .contact-section__form-wrap {
    max-width: 98vw;
    padding: 0 4vw;
  }
}

/* ハンバーガーメニューパネル */
.hamburger-menu-panel {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 3000;
  box-shadow: none;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.hamburger-menu-panel.open {
  display: flex;
}

.hamburger-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hamburger-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hamburger-nav ul li {
  margin-bottom: 24px;
}



.hamburger-nav ul li a {
  color: #1742a7;
  font-size: 2.6rem;
  font-family: 'Poppins', 'Playfair Display', serif;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
  text-align: center;
  display: block;
  padding: 8px 0;
}

.hamburger-nav ul li a:hover {
  color: #1F56D8;
}

.hamburger-menu-info {
  font-size: 1.2rem;
  color: #1742a7;
  text-align: center;
}

.hamburger-menu-info a {
  color: #1742a7;
  text-decoration: underline;
  font-size: 1.2rem;
}

.hamburger-menu-close {
  position: absolute;
  top: 24px;
  right: 32px;
  width: 56px;
  height: 56px;
  background: #fff;
  border: none;
  font-size: 2.6rem;
  color: #222;
  cursor: pointer;
  z-index: 4001;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  transition: background 0.2s, color 0.2s;
}

.hamburger-menu-close:hover,
.hamburger-menu-close:focus {
  background: #1F56D8;
  color: #fff;
  outline: none;
}

@media (max-width: 700px) {
  .hamburger-menu-panel {
    padding: 0;
  }

  .hamburger-nav ul li a {
    font-size: 2.0rem;
  }

  .hamburger-menu-close {
    width: 44px;
    height: 44px;
    font-size: 2.0rem;
    top: 14px;
    right: 14px;
  }

  .hamburger-menu-info {
    font-size: 1.0rem;
    margin-bottom: 24px;
  }
}

/* =============================
   Single Post（投稿詳細）
   ============================= */
.page-header--single {
  position: relative;
}

.page-header--single::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  z-index: 1;
  pointer-events: none;
}

.page-header--single .page-header__inner {
  position: relative;
  z-index: 2;
}

.single-post__title {
  font-size: 3.2rem;
  margin-top: 12px;
}

.single-post__header {
  border-bottom: 1px solid #1742a7;
  padding-bottom: 16px;
  margin-bottom: 30px;
}

.single-post-section {
  margin-top: 60px;
}

.single-post__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}

.single-post__category {
  display: inline-block;
  border: 1px solid #1F56D8;
  color: #1F56D8;
  border-radius: 30px;
  padding: 4px 18px;
  font-size: 1.3rem;
}

.single-post__date {
  font-size: 1.3rem;
  color: #2E2E2E;
}

.single-post-section p {
  margin-bottom: 24px;
}

/* =============================
   404ページ用デザイン
   ============================= */
.error-404-content {
  max-width: 540px;
  margin: 80px auto 0px auto;
  background: #fff;
  border-radius: 8px;
  padding: 56px 36px 48px 36px;
  text-align: center;
  position: relative;
}

.error-404-message {
  font-size: 2.8rem;
  color: var(--main-color);
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  margin-bottom: 18px;
}

.error-404-desc {
  font-size: 1.5rem;
  color: var(--body-color);
  margin-bottom: 36px;
}

.error-404-content .cta-button {
  margin-bottom: 32px;
  font-size: 1.6rem;
  padding: 1.2rem 3.2rem;
}


@media (max-width: 700px) {
  .error-404-content {
    max-width: 98vw;
    padding: 24px 8px 32px 8px;
  }

  .error-404-visual {
    width: 70px;
    height: 70px;
    margin-bottom: 18px;
  }

  .error-404-message {
    font-size: 1.6rem;
  }

  .error-404-desc {
    font-size: 1.1rem;
  }

  .error-404-links {
    flex-direction: column;
    gap: 10px;
  }
}

@media (max-width: 787px) {
  .features-row {
    flex-direction: column;
    gap: 40px;
  }

  .foreigner-support__feature {
    flex-direction: column;
    max-width: 100%;
  }

  .foreigner-support__feature-item {
    width: 100%;
  }

  .foreigner-support__feature img {
    max-width: 100%;
    height: auto;
  }
}

@media (max-width: 599px) {
  .features-row {
    gap: 24px;
  }

  .foreigner-support__features {
    padding: 40px 30px;
  }
}

@media (min-width: 1024px) {
  .property-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 787px) {
  .page-header__title {
    font-size: 8rem;
  }

  .page-header__subtitle {
    font-size: 2.2rem;
  }
}

@media (max-width: 599px) {
  .page-header__title {
    font-size: 4rem;
  }

  .page-header__subtitle {
    font-size: 1.8rem;
  }

  .page-header {
    height: 300px;
  }
}

@media (max-width: 599px) {
  .card03 .l-inner {
    padding: 0 4vw;
  }

  .card03 .swiper-slide {
    min-width: 100% !important;
    max-width: 100% !important;
  }
}