@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #1f2937;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 1.25rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: #143966;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #143966;
}

ul, ol {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1311px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.content-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
  width: 100%;
}

.font-mincho {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.font-mincho.font-medium {
  font-weight: 500;
}
.font-mincho.font-bold {
  font-weight: 700;
}

@media (max-width: 640px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 640px) and (max-width: 768px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (min-width: 640px) and (max-width: 768px) {
  .show-mobile {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .show-tablet {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .show-tablet {
    display: none !important;
  }
}

@media (min-width: 640px) and (max-width: 768px) {
  .show-desktop {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 0.5rem;
  }
}
@media (min-width: 640px) and (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
}
@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  transition: all 0.3s;
}
.header .container {
  max-width: 1311px;
  margin: 0 auto;
  padding: 0;
}
.header-content {
  display: flex;
  justify-content: space-between;
  gap: 0rem;
}
.header-left {
  padding: 8px 0;
}
.header-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo {
  flex-shrink: 0;
  width: 68px;
  height: 78px;
}
.header-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header-copy {
  font-size: 13px;
  line-height: 1.4;
  color: #1f2937;
  width: 270px;
  margin-bottom: 0;
}
@media (max-width: 1180px) {
  .header-copy {
    display: none;
  }
}
.header-right {
  display: flex;
  flex-direction: column;
}
.header-contact {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0;
  margin-left: auto;
}
.header-tel {
  text-align: right;
  margin-top: 6px;
}
.header-tel .tel-link {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  color: #143966;
  text-decoration: none;
  line-height: 1.25;
}
.header-tel .tel-link .tel-num-ruby {
  ruby-align: center;
}
.header-tel .tel-link .tel-num-ruby rt {
  font-size: 0.38em;
  font-weight: 500;
  letter-spacing: 0.2em;
  line-height: 1;
}
@media (min--moz-device-pixel-ratio: 0) {
  .header-tel .tel-link .tel-num-ruby rt {
    line-height: 1;
    margin-bottom: -5px;
  }
}
.header-tel .tel-hours {
  display: block;
  font-size: 9.5px;
  color: #6b7280;
  margin-top: 0;
}
.header-buttons {
  display: flex;
  gap: 6px;
}
.header-buttons .btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0 0 4px 4px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
  padding-right: 2.5rem;
}
.header-buttons .btn::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
.header-buttons .btn:hover::after {
  transform: translate(3px, -50%);
}
.header-buttons .btn-primary {
  background-color: #143966;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.header-buttons .btn-primary::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
.header-buttons .btn-primary:hover {
  background-color: rgb(11.6393442623, 33.1721311475, 59.3606557377);
}
.header-buttons .btn-primary:hover::before {
  top: -50%;
  left: 150%;
}
.header-buttons .btn-secondary {
  background-color: #143966;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.header-buttons .btn-secondary::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
.header-buttons .btn-secondary:hover {
  background-color: rgb(11.6393442623, 33.1721311475, 59.3606557377);
}
.header-buttons .btn-secondary:hover::before {
  top: -50%;
  left: 150%;
}
.header-company {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
}
.header-company .company-logo {
  height: 36px;
  width: auto;
}
.header-company .tosho-logo {
  height: 36px;
  width: auto;
}
.header-nav {
  margin-top: auto;
}
.header-nav .nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
.header-nav .nav-list li a {
  display: block;
  text-align: center;
  padding: 8px 16px;
  color: #1f2937;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: opacity 0.3s;
}
.header-nav .nav-list li a:hover {
  opacity: 0.8;
}
@media (max-width: 1024px) {
  .header-contact {
    margin-left: 0;
    justify-content: flex-end;
  }
  .header-nav .nav-list {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .header {
    padding: 0 16px;
  }
  .header-contact {
    flex-wrap: wrap;
    gap: 1rem;
  }
  .header-buttons {
    width: 100%;
    justify-content: space-between;
  }
  .header-nav .nav-list {
    flex-wrap: wrap;
    gap: 0;
  }
  .header-nav .nav-list li {
    flex: 1 1 auto;
    text-align: center;
  }
}
.header-hamburger {
  display: none;
  cursor: pointer;
  margin-left: auto;
  position: relative;
  z-index: 101;
  font-size: 24px;
  color: #1f2937;
  transition: color 0.3s;
}
.header-hamburger.active {
  color: #143966;
}
.header-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
}
.header-overlay.active {
  display: block;
}
.header-contact-mobile {
  display: none;
}
@media (max-width: 768px) {
  .header-top {
    padding: 0.5rem 0;
  }
  .header-company {
    margin-top: 0;
  }
  .header-contact {
    display: none;
  }
  .header-hamburger {
    display: block;
  }
  .header-content {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  .header-left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  .header-brand {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .header-logo img {
    height: 68px;
    width: auto;
  }
  .header-copy {
    display: none;
  }
  .header-right {
    width: 100%;
  }
  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #fff;
    padding: 5rem 1.5rem 1.5rem;
    transition: right 0.3s;
    overflow-y: auto;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  .header-nav.active {
    right: 0;
  }
  .header-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .header-nav .nav-list li {
    width: 100%;
  }
  .header-nav .nav-list li a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(31, 41, 55, 0.1);
  }
  .header-nav .header-contact-mobile {
    display: block;
    background-color: #EDF1F5;
    margin: 2rem -1.5rem;
    padding: 1.5rem;
    text-align: center;
  }
  .header-nav .header-contact-mobile .header-tel {
    text-align: center;
    margin-top: 0;
    margin-bottom: 1rem;
  }
  .header-nav .header-contact-mobile .header-tel .tel-link {
    font-size: 1.25rem;
  }
  .header-nav .header-contact-mobile .header-tel .tel-hours {
    font-size: 0.875rem;
  }
  .header-nav .header-contact-mobile .header-buttons {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
  .header-nav .header-contact-mobile .header-buttons .btn {
    width: 100%;
    max-width: 240px;
    text-align: center;
    padding: 0.75rem 1rem;
    padding-right: 1rem;
  }
  .header-nav .header-contact-mobile .header-buttons .btn::after {
    display: none;
  }
  .header-nav .header-contact-mobile .header-company {
    margin-top: 1rem;
    justify-content: center;
  }
}
.header.position-first {
  background-color: transparent;
  box-shadow: none;
}
@media (min-width: 768px) {
  .header.position-first .header-copy,
  .header.position-first .header-tel .tel-link,
  .header.position-first .header-tel .tel-hours,
  .header.position-first .header-nav .nav-list li a {
    color: #fff;
  }
}
.header.position-first .header-hamburger {
  color: #fff;
}

.footer {
  background-color: #002B5B;
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.footer-navigation {
  padding: 16px 0;
  background-color: #fff;
  color: #000;
}
.footer-navigation .footer-nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}
.footer-navigation .footer-logo img {
  width: 63px;
  height: auto;
}
.footer-navigation .footer-nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  margin: 0;
  font-size: 14px;
}
.footer-navigation .footer-nav-list li a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer-navigation .footer-nav-list li a:hover {
  opacity: 0.7;
}
.footer-corporate {
  padding: 2rem 0 1rem;
  background-color: #143966;
}
.footer-corporate .corporate-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}
.footer-corporate .corporate-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.footer-corporate .corporate-brand .corporate-logo {
  width: 249px;
  height: 57px;
  margin-bottom: 0.5rem;
}
.footer-corporate .corporate-brand .corporate-name {
  font-size: 15px;
  color: rgb(255, 255, 255);
}
.footer-corporate .corporate-links {
  width: auto;
  display: flex;
  justify-content: flex-end;
}
.footer-corporate .corporate-links .corporate-link-list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1rem 3rem;
  margin: 0;
}
.footer-corporate .corporate-links .corporate-link-list li a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s;
  white-space: nowrap;
}
.footer-corporate .corporate-links .corporate-link-list li a:hover {
  opacity: 0.7;
}
.footer-copyright {
  padding: 0 0 1rem;
  background-color: #143966;
}
.footer-copyright .copyright-text {
  color: rgb(255, 255, 255);
  font-size: 0.75rem;
  text-align: right;
}
@media (max-width: 768px) {
  .footer-navigation {
    padding: 1rem 0;
  }
  .footer-navigation .footer-nav-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
  .footer-navigation .footer-logo img {
    width: 63px;
    height: auto;
  }
  .footer-navigation .footer-nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    text-align: left;
    padding: 0;
  }
  .footer-navigation .footer-nav-list li {
    width: 100%;
  }
  .footer-navigation .footer-nav-list li a {
    display: inline-block;
    width: 100%;
    position: relative;
    padding-left: 1rem;
  }
  .footer-navigation .footer-nav-list li a::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    opacity: 0.7;
  }
  .footer-corporate {
    padding: 2rem 0 1.5rem;
  }
  .footer-corporate .corporate-info {
    flex-direction: column;
    gap: 16px;
  }
  .footer-corporate .corporate-brand {
    align-items: center;
    text-align: center;
    width: 100%;
  }
  .footer-corporate .corporate-brand .corporate-logo {
    height: 50px;
    width: auto;
  }
  .footer-corporate .corporate-brand .corporate-name {
    text-align: center;
  }
  .footer-corporate .corporate-links {
    width: 100%;
    justify-content: space-around;
  }
  .footer-corporate .corporate-links .corporate-link-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    text-align: left;
    padding: 0;
  }
  .footer-corporate .corporate-links .corporate-link-list li {
    width: 100%;
  }
  .footer-corporate .corporate-links .corporate-link-list li a {
    display: inline-block;
    width: 100%;
    position: relative;
    padding-left: 1rem;
  }
  .footer-corporate .corporate-links .corporate-link-list li a::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.75rem;
    opacity: 0.7;
  }
  .footer-copyright {
    padding: 0 0 1.5rem;
  }
  .footer-copyright .copyright-text {
    text-align: center;
    font-size: 0.75rem;
  }
}

@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .footer-container {
    grid-template-columns: 1fr;
  }
}
.scroll-animation {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scroll-animation.animate {
  opacity: 1;
  transform: translateY(0);
}
.scroll-animation.slide-left {
  transform: translateX(-30px);
}
.scroll-animation.slide-left.animate {
  transform: translateX(0);
}
.scroll-animation.slide-right {
  transform: translateX(30px);
}
.scroll-animation.slide-right.animate {
  transform: translateX(0);
}
.scroll-animation.scale {
  transform: scale(0.95);
}
.scroll-animation.scale.animate {
  transform: scale(1);
}
.scroll-animation.delay-1 {
  transition-delay: 0.1s;
}
.scroll-animation.delay-2 {
  transition-delay: 0.2s;
}
.scroll-animation.delay-3 {
  transition-delay: 0.3s;
}
.scroll-animation.delay-4 {
  transition-delay: 0.4s;
}

.video-animation {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.video-animation.animate {
  opacity: 1;
  transform: translateY(0);
}

.countup-number {
  font-variant-numeric: tabular-nums;
}
.countup-number.counting {
  animation: pulse 0.1s ease-in-out;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.parallax-bg {
  transform: translateZ(0);
  will-change: transform;
}

.hero-animation .hero-fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s ease-out forwards;
}
.hero-animation .hero-fade-in.delay-1 {
  animation-delay: 0.2s;
}
.hero-animation .hero-fade-in.delay-2 {
  animation-delay: 0.4s;
}
.hero-animation .hero-fade-in.delay-3 {
  animation-delay: 0.6s;
}
.hero-animation .hero-fade-in.delay-4 {
  animation-delay: 0.8s;
}
.hero-animation .hero-fade-in.delay-5 {
  animation-delay: 1s;
}
.hero-animation .hero-fade-in.delay-6 {
  animation-delay: 1.2s;
}
.hero-animation .hero-slide-right {
  opacity: 0;
  transform: translateX(50px);
  animation: heroSlideRight 1s ease-out 0.6s forwards;
}
.hero-animation .hero-slide-up {
  opacity: 0;
  transform: translateY(30px);
  animation: heroSlideUp 1s ease-out 1.4s forwards;
}
.hero-animation .cta-animation {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-animation .cta-animation.animate {
  opacity: 1;
  transform: translateY(0);
}
.hero-animation .cta-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-animation .cta-content.animate {
  opacity: 1;
  transform: translateY(0);
}
.hero-animation .cta-content.delay-1 {
  transition-delay: 0.2s;
}
.hero-animation .cta-content.delay-2 {
  transition-delay: 0.4s;
}
.hero-animation .hero-text-animation h1 {
  overflow: hidden;
}
.hero-animation .hero-text-animation h1 span {
  display: inline-block;
}

.hero-countup-main {
  font-variant-numeric: tabular-nums;
}
.hero-countup-main.counting {
  animation: heroPulse 0.15s ease-in-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroSlideRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes heroSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.main-visual {
  position: relative;
  height: 767px;
  background: linear-gradient(180deg, #005BAC 0%, #143966 100%);
  overflow: hidden;
}
@media (min-width: 768px) {
  .main-visual {
    height: 100vh;
  }
}
.main-visual .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0px;
}
.main-visual__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  object-fit: cover;
  z-index: 1;
  transform: translateZ(0);
  will-change: transform;
}
.main-visual__content {
  position: relative;
  z-index: 2;
  height: 100%;
  color: #fff;
  padding-top: 145px;
}
@media (min-width: 768px) {
  .main-visual__content {
    position: absolute;
    width: 100%;
    height: auto;
    top: 20%;
    padding-top: 0;
  }
}
.main-visual__content .container {
  position: relative;
}
.main-visual__copy {
  position: relative;
  z-index: 2;
  width: 50%;
}
.main-visual__copy h1 {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 31px;
  font-weight: normal;
  line-height: 1.55em;
  margin-bottom: 40px;
}
.main-visual__copy h1 .title-ja {
  display: block !important;
  font-size: 12px;
  margin-bottom: 0px;
  line-height: 1;
  letter-spacing: 1.5em;
  margin-left: 10px;
}
.main-visual__features {
  position: absolute;
  top: 20px;
  right: 0;
  width: 388px;
  z-index: 2;
}
.main-visual__features img {
  width: 100%;
  height: auto;
}
.main-visual .top-performance__stats {
  position: absolute;
  top: 232px;
  right: 0;
  gap: 20px;
}
.main-visual .top-performance__stat-date, .main-visual .top-performance__stat-name, .main-visual .top-performance__stat-value {
  color: #ffffff;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.main-visual .top-performance__stat-date .number, .main-visual .top-performance__stat-date .unit, .main-visual .top-performance__stat-name .number, .main-visual .top-performance__stat-name .unit, .main-visual .top-performance__stat-value .number, .main-visual .top-performance__stat-value .unit {
  color: #D4B572;
  background: linear-gradient(180deg, #f1f1ee 0%, #ebdcbc 50%, #D4B572 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.main-visual .top-performance__stat-item:first-child {
  padding-right: 20px;
}
.main-visual .top-performance__stat-label {
  margin-right: 12px;
}
.main-visual .top-performance__stat-value .number {
  font-size: 38px;
  display: inline-block;
}
.main-visual .top-performance__stat-value .unit {
  font-size: 16px;
}
.main-visual__cta {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 32px 0;
  color: #fff;
  z-index: 2;
}
@media (min-width: 768px) {
  .main-visual__cta {
    top: 60%;
  }
}
.main-visual__cta-container {
  background: rgba(0, 52, 102, 0.9);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 20px 40px;
  z-index: 2;
  position: relative;
}
.main-visual__cta-main {
  width: 70%;
  border-right: 1px solid #CCD6E0;
  padding-right: 30px;
}
.main-visual__cta-main .heading {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  text-align: center;
}
.main-visual__cta-main .common-cta__buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  width: 100%;
}
.main-visual__cta-main .common-cta__button {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 20px;
  padding: 12px 32px 14px;
  line-height: 1;
}
.main-visual__cta-main .contact {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 24px;
}
.main-visual__cta-main .contact .tel {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 0;
  position: relative;
  z-index: 3;
  color: #fff;
  line-height: 1.25;
}
.main-visual__cta-main .contact .tel a {
  color: #fff;
  text-decoration: none;
}
.main-visual__cta-main .contact .tel .tel-num-ruby {
  ruby-align: center;
}
.main-visual__cta-main .contact .tel .tel-num-ruby rt {
  font-size: 0.38em;
  font-weight: bold;
  letter-spacing: 0.5em;
}
.main-visual__cta-main .contact .hours {
  font-size: 14px;
  margin-bottom: 0;
}
.main-visual__cta-partner {
  width: 30%;
  text-align: center;
  position: relative;
  z-index: 3;
}
.main-visual__cta-partner .heading {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 16px;
}
.main-visual__cta-partner .common-cta__button {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-size: 18px;
  padding: 12px 32px 14px;
  line-height: 1;
  width: 100%;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 4px;
  margin-bottom: 24px;
  align-items: baseline;
}
.main-visual__cta-partner .common-cta__button:hover {
  color: #fff;
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.3);
}
.main-visual__cta-partner .common-cta__button::after {
  content: "\f105";
  margin-left: 8px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}

@media (max-width: 640px) {
  .main-visual {
    height: auto;
    min-height: 600px;
    padding-bottom: 0px;
  }
  .main-visual__content {
    padding-top: 80px;
  }
  .main-visual__copy {
    width: 80%;
    margin: 0 auto;
  }
  .main-visual__copy h1 {
    font-size: 18px;
    margin-bottom: 24px;
    text-align: center;
  }
  .main-visual__copy h1 .title-ja {
    display: none;
    font-size: 10px;
    margin-bottom: 4px;
    letter-spacing: 0.5em;
    margin-left: 0;
  }
  .main-visual__features {
    display: none;
    position: static;
    width: 60%;
    margin: 0 auto 20px auto;
  }
  .main-visual__features img {
    width: 100%;
  }
  .main-visual__cta {
    position: relative;
    padding: 20px 0 0 0;
    z-index: 2;
  }
  .main-visual__cta-container {
    flex-direction: column;
    gap: 15px;
    padding: 16px 20px;
    margin: 20px 20px 0;
  }
  .main-visual__cta-main {
    width: 100%;
    border-right: none;
    padding-right: 0;
  }
  .main-visual__cta-main .heading {
    font-size: 16px;
  }
  .main-visual__cta-main .common-cta__buttons {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 8px;
  }
  .main-visual__cta-main .common-cta__button {
    font-size: 16px;
    padding: 10px 0;
  }
  .main-visual__cta-main .contact {
    flex-direction: column;
    gap: 4px;
  }
  .main-visual__cta-main .contact .tel {
    font-size: 18px;
  }
  .main-visual__cta-main .contact .hours {
    font-size: 12px;
  }
  .main-visual__cta-partner {
    width: 100%;
  }
  .main-visual__cta-partner .heading {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .main-visual__cta-partner .common-cta__button {
    font-size: 15px;
    padding: 10px 0;
  }
  .main-visual__bg {
    height: 500px;
    object-fit: cover;
  }
  .main-visual .top-performance__stats {
    position: static;
    gap: 10px;
    top: auto;
    right: auto;
    width: 80%;
    padding: 10px;
    background-color: rgba(0, 0, 0, 0.5);
    margin: 0 auto;
    justify-content: space-between;
  }
  .main-visual .top-performance__stat-item {
    padding-right: 0 !important;
    border-right: none !important;
  }
  .main-visual .top-performance__stat-label {
    margin-right: 8px;
  }
  .main-visual .top-performance__stat-value .number {
    font-size: 20px;
  }
  .main-visual .top-performance__stat-value .unit {
    font-size: 12px;
  }
}
.top-section {
  padding: 80px 0 80px 0;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
}
@media (max-width: 640px) {
  .top-section {
    padding: 50px 0;
  }
}
.top-section .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 15px;
}
.top-section .section-title {
  font-size: 40px;
  font-weight: 700;
  text-align: left;
  color: #000;
  margin-bottom: 4px;
}
.top-section .section-title-en {
  font-size: 18px;
  font-weight: 700;
  color: #D4B572;
  background: linear-gradient(180deg, #F4E4B7 0%, #D4B572 50%, #A08242 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
@media (max-width: 640px) {
  .top-section .section-title {
    font-size: 24px;
  }
}
.top-section .btn-more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /*width: 250px;*/
  padding: 15px;
  background-color: transparent;
  color: #143966;
  text-align: right;
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  gap: 16px;
  margin: 0 0 0 auto;
}
.top-section .btn-more::after {
  content: "\f105";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom, #1A4975, #00264A);
  color: #ffffff;
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  line-height: 1;
}
.top-section .btn-more:hover {
  text-decoration: underline;
}
.top-section .btn-more:hover::after {
  background: linear-gradient(to bottom, #6195c5, #113d66);
}
@media (max-width: 640px) {
  .top-section .btn-more {
    width: 100%;
    margin: 0;
  }
}

.top-video {
  padding: 60px 0;
  background-color: transparent;
  transition: background-color 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.top-video.animate {
  background-color: #143966;
}
.top-video__inner {
  max-width: 100%;
  margin: 0 auto;
}
.top-video__content {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.top-video__content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 640px) {
  .top-video {
    padding: 0 0 60px;
  }
}

.top-about {
  background-color: #ffffff;
  position: relative;
}
.top-about__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
@media (max-width: 640px) {
  .top-about__inner {
    flex-direction: column;
  }
}
.top-about__content {
  width: 450px;
}
@media (max-width: 640px) {
  .top-about__content {
    width: 100%;
    order: 2;
  }
}
.top-about__title {
  font-size: 40px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .top-about__title {
    font-size: 24px;
    text-align: center;
  }
}
.top-about__text {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #000;
}
.top-about__note {
  font-size: 10px;
  line-height: 1.6;
  color: #000;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
.top-about__image {
  width: 420px;
}
.top-about__image img {
  width: 100%;
  height: auto;
}
@media (max-width: 640px) {
  .top-about__image {
    width: 50%;
    margin: 0 auto;
    order: 1;
    margin-bottom: 0px;
  }
}

.top-features {
  background: url("/assets/images/about/bg_01.jpg");
  padding: 50px 30px;
  border-radius: 0px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media (max-width: 640px) {
  .top-features {
    padding: 40px 0 40px;
  }
}
.top-features .container {
  max-width: 100%;
}
.top-features .about-page__section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 0;
  color: #143966;
}
.top-features .about-page__section-title::after {
  display: none;
}
.top-features .about-page__section-title .gold {
  font-size: 56px;
  color: #D4B572;
}
@media (max-width: 640px) {
  .top-features .about-page__section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .top-features .about-page__section-title .gold {
    font-size: 42px;
  }
}
.top-features .about-page__point-main {
  margin-bottom: 0;
}
.top-features .about-page__point:nth-child(odd) .about-page__point-main {
  flex-direction: row-reverse;
}
@media (max-width: 640px) {
  .top-features .about-page__point:nth-child(odd) .about-page__point-main {
    flex-direction: column;
  }
}
.top-features__title {
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
}
.top-features__title span {
  font-size: 48px;
  color: #D4B572;
}
@media (max-width: 640px) {
  .top-features__title {
    font-size: 28px;
  }
  .top-features__title span {
    font-size: 36px;
  }
}
.top-features__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}
.top-features__item.reverse {
  flex-direction: row-reverse;
}
@media (max-width: 640px) {
  .top-features__item {
    flex-direction: column;
  }
  .top-features__item.reverse {
    flex-direction: column;
  }
}
.top-features__item-content {
  width: 45%;
}
@media (max-width: 640px) {
  .top-features__item-content {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
.top-features__point {
  display: inline-block;
  background: linear-gradient(to bottom, #1A4975, #00264A);
  padding: 5px 15px;
  border-radius: 5px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #D4B572;
}
.top-features__point span {
  font-size: 24px;
  font-weight: 700;
  margin-left: 2px;
}
.top-features__item-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}
.top-features__item-text {
  font-size: 18px;
}
.top-features__item-image {
  width: 45%;
}
.top-features__item-image img {
  width: 100%;
  height: auto;
  border-radius: 5px;
}
@media (max-width: 640px) {
  .top-features__item-image {
    width: 100%;
  }
}
.top-features__more {
  max-width: 960px;
  margin: 0 auto 0;
}

.top-topics {
  border-bottom: 1px solid #CCD6E0;
}
.top-topics__inner {
  display: flex;
  background-color: #ffffff;
  border: 1px solid #CCD6E0;
}
@media (max-width: 640px) {
  .top-topics__inner {
    flex-direction: column;
  }
}
.top-topics__heading {
  width: 180px;
  padding: 30px 20px;
  background-color: #EDF1F5;
  border-right: 1px solid #CCD6E0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 640px) {
  .top-topics__heading {
    width: 100%;
    padding: 20px;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #CCD6E0;
  }
}
.top-topics__heading-en {
  font-size: 26px;
  font-weight: 700;
  color: #143966;
  margin-bottom: 5px;
}
.top-topics__heading-ja {
  font-size: 14px;
  color: #143966;
}
.top-topics__body {
  flex-grow: 1;
}
.top-topics__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  height: 100%;
  color: #000;
  text-decoration: none;
  transition: background-color 0.3s;
}
.top-topics__link:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
@media (max-width: 640px) {
  .top-topics__link {
    padding: 20px;
  }
}
.top-topics__text {
  flex-grow: 1;
  padding-right: 30px;
}
.top-topics__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media (max-width: 640px) {
  .top-topics__title {
    font-size: 20px;
  }
}
.top-topics__description {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}
.top-topics__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #143966;
}
.top-topics__arrow i {
  transition: transform 0.3s;
}
.top-topics__link:hover .top-topics__arrow i {
  transform: translateX(5px);
}

.top-properties {
  background-color: #ffffff;
}
.top-properties .properties__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
}
@media (max-width: 640px) {
  .top-properties .properties__list {
    flex-direction: column;
    margin-top: 16px;
  }
}
.top-properties .property-card {
  display: flex;
  gap: 50px;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  transition: opacity 0.3s;
  margin-bottom: 60px;
}
.top-properties .property-card:hover {
  opacity: 0.7;
}
.top-properties .property-card__media {
  flex: 0 0 480px;
  height: 480px;
  padding: 0;
}
.top-properties .property-card__media img {
  width: 480px;
  height: 480px;
  object-fit: cover;
  object-position: center bottom;
}
.top-properties .property-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.top-properties .property-card__title {
  font-size: 32px;
  font-weight: bold;
  margin: 0 0 4px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  line-height: 1.5;
  color: #000;
}
.top-properties .property-card__address {
  font-size: 15px;
  color: #000;
  margin: 0 0 24px;
  line-height: 1.5;
}
.top-properties .property-card__catch {
  font-size: 20px;
  margin: 0 0 32px;
  line-height: 1.5;
  color: #143966;
}
.top-properties .property-card__access {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}
.top-properties .property-card__access p {
  margin: 0;
}
.top-properties .property-card__access-line {
  font-size: 15px;
  color: #000;
}
.top-properties .property-card__access-station {
  font-size: 15px;
  color: #000;
  line-height: 1.1;
}
.top-properties .property-card__access-station .station {
  font-size: 20px;
}
.top-properties .property-card__access-station .time {
  font-size: 24px;
}
.top-properties .property-card__access li:not(:last-child) {
  margin-bottom: 16px;
}
.top-properties .property-card__access li .station {
  font-weight: bold;
  color: #333;
}
.top-properties .property-card__access li .time {
  font-weight: bold;
  color: #333;
}
.top-properties .property-card__info {
  display: flex;
  border: 1px solid #CCD6E0;
  margin: 0 0 40px;
  background-color: #fff;
  padding: 20px 0px 20px 0px;
}
.top-properties .property-card__info dl {
  display: flex;
  flex-direction: column;
  position: relative;
}
.top-properties .property-card__info dl:first-child {
  width: 36%;
}
.top-properties .property-card__info dl:nth-child(2), .top-properties .property-card__info dl:nth-child(3) {
  width: 32%;
}
.top-properties .property-card__info dl:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #CCD6E0;
}
.top-properties .property-card__info dt {
  padding: 0px 8px 8px 16px;
  text-align: left;
  font-size: 16px;
  line-height: 1.4;
  color: #143966;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.top-properties .property-card__info dd {
  padding: 0px 8px 0px 16px;
  text-align: left;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.top-properties .property-card__info-main {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin-bottom: 4px;
}
.top-properties .property-card__info-sub {
  display: block;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}
.top-properties .property-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 24px;
  background-color: #EDF1F5;
  color: #333;
  font-size: 16px;
  font-weight: normal;
  border-radius: 4px;
  pointer-events: none;
}
.top-properties .property-card__button::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-top: -2px;
}
@media (max-width: 640px) {
  .top-properties .top-properties__notice {
    margin-bottom: 32px;
    font-size: 14px;
  }
  .top-properties .top-properties__list {
    gap: 24px;
  }
  .top-properties .property-card {
    flex-direction: column;
    gap: 24px;
  }
  .top-properties .property-card__media {
    flex: none;
    height: 100vw;
  }
  .top-properties .property-card__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 480/576;
  }
  .top-properties .property-card__content {
    padding-top: 0;
  }
  .top-properties .property-card__title {
    font-size: 20px;
  }
  .top-properties .property-card__catch {
    font-size: 15px;
    margin: 0 0 24px;
  }
  .top-properties .property-card__access {
    margin: 0 0 32px;
  }
  .top-properties .property-card__access li:not(:last-child) {
    margin-bottom: 12px;
  }
  .top-properties .property-card__access li .station,
  .top-properties .property-card__access li .time {
    font-size: 13px;
  }
  .top-properties .property-card__info {
    margin: 0 0 32px;
  }
  .top-properties .property-card__button {
    width: 100%;
  }
}

.top-performance {
  padding-bottom: 80px;
  border-bottom: 1px solid #CCD6E0;
}
@media (max-width: 640px) {
  .top-performance {
    padding-bottom: 40px;
  }
}
.top-performance__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
@media (max-width: 640px) {
  .top-performance__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.top-performance__stats {
  display: flex;
  gap: 40px;
  line-height: 1.2;
}
@media (max-width: 640px) {
  .top-performance__stats {
    width: 100%;
    gap: 20px;
  }
}
.top-performance__stat-item {
  display: flex;
  align-items: center;
}
.top-performance__stat-item:first-child {
  padding-right: 40px;
  border-right: 1px solid #CCD6E0;
}
@media (max-width: 640px) {
  .top-performance__stat-item:first-child {
    padding-right: 20px;
  }
}
.top-performance__stat-label {
  margin-right: 20px;
}
@media (max-width: 640px) {
  .top-performance__stat-label {
    margin-right: 10px;
  }
}
.top-performance__stat-date {
  font-size: 13px;
  color: #000;
  font-weight: normal;
  margin-bottom: 0px;
}
.top-performance__stat-name {
  font-size: 18px;
  color: #000;
  font-weight: bold;
  margin: 0;
}
@media (max-width: 640px) {
  .top-performance__stat-name {
    font-size: 16px;
  }
}
.top-performance__stat-value {
  color: #D4B572;
}
.top-performance__stat-value .number {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  color: #D4B572;
  background: linear-gradient(180deg, #F4E4B7 0%, #D4B572 50%, #A08242 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (max-width: 640px) {
  .top-performance__stat-value .number {
    font-size: 24px;
  }
}
.top-performance__stat-value .unit {
  font-size: 18px;
  font-weight: bold;
}
@media (max-width: 640px) {
  .top-performance__stat-value .unit {
    font-size: 14px;
  }
}
.top-performance__cards-wrapper {
  width: 100%;
  margin-bottom: 40px;
  overflow: hidden;
}
.top-performance__cards {
  width: 100%;
  overflow: visible;
}
.top-performance__cards .swiper-wrapper {
  /*
  display: flex;
  align-items: stretch;
  justify-content: center;
  */
}
.top-performance__cards .swiper-slide {
  width: 293px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .top-performance__cards .swiper-slide {
    width: 220px;
  }
}
.top-performance__cards:not(.swiper-initialized) .swiper-wrapper {
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 640px) {
  .top-performance__cards:not(.swiper-initialized) .swiper-wrapper {
    gap: 20px;
  }
}
.top-performance__card {
  width: 100%;
  height: 100%;
}
.top-performance__card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.top-performance__card-link:hover {
  opacity: 0.8;
}
.top-performance__card-image {
  position: relative;
  width: 100%;
  height: 293px;
  margin-bottom: 16px;
}
.top-performance__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
@media (max-width: 640px) {
  .top-performance__card-image {
    height: 220px;
    margin-bottom: 12px;
  }
}
.top-performance__card-status {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
}
.top-performance__card-status.operating {
  background-color: #143966;
  color: #ffffff;
}
.top-performance__card-status.sold {
  background-color: #EBEBEB;
  color: #000;
}
@media (max-width: 640px) {
  .top-performance__card-status {
    width: 70px;
    height: 28px;
    font-size: 14px;
  }
}
.top-performance__card-title {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin: 0;
  text-align: left;
}
@media (max-width: 640px) {
  .top-performance__card-title {
    font-size: 16px;
  }
}
.top-performance__more {
  text-align: right;
}

.top-voices {
  padding-bottom: 60px;
}
.top-voices__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}
@media (max-width: 640px) {
  .top-voices__header {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
  }
}
.top-voices__title-wrapper {
  width: 40%;
}
@media (max-width: 640px) {
  .top-voices__title-wrapper {
    width: 100%;
  }
}
.top-voices__description {
  width: 50%;
}
.top-voices__description p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
}
@media (max-width: 640px) {
  .top-voices__description {
    width: 100%;
    padding-top: 0;
  }
}
.top-voices__list {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .top-voices__list {
    flex-direction: column;
    gap: 30px;
  }
}
.top-voices__item {
  width: calc((100% - 80px) / 3);
}
@media (max-width: 640px) {
  .top-voices__item {
    width: 100%;
  }
}
.top-voices__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.top-voices__item-link:hover {
  opacity: 0.8;
}
.top-voices__item-image {
  width: 100%;
  height: 181px;
  margin-bottom: 16px;
  overflow: hidden;
}
.top-voices__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-voices__item-info {
  font-size: 18px;
  color: #000;
  margin-bottom: 8px;
  font-weight: normal;
}
.top-voices__item-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  color: #000;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 60px;
}
.top-voices__more {
  text-align: right;
}

.top-column {
  padding-bottom: 80px;
}
.top-column__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .top-column__header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.top-column__title-wrapper {
  width: 45%;
}
@media (max-width: 640px) {
  .top-column__title-wrapper {
    width: 100%;
  }
}
.top-column__title-before {
  font-size: 18px;
  color: #000;
  margin-bottom: 8px;
}
.top-column__description {
  width: 50%;
}
.top-column__description p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
}
@media (max-width: 640px) {
  .top-column__description {
    width: 100%;
  }
}
.top-column__pickup {
  position: relative;
  border: 1px solid #CCD6E0;
  padding: 40px 32px;
  margin-bottom: 60px;
}
@media (max-width: 640px) {
  .top-column__pickup {
    padding: 40px 20px 20px;
    margin-bottom: 40px;
  }
}
.top-column__pickup-heading {
  position: absolute;
  top: -14px;
  left: 32px;
  background-color: #ffffff;
  padding: 0 16px;
  font-size: 24px;
  font-weight: 700;
  color: #143966;
}
@media (max-width: 640px) {
  .top-column__pickup-heading {
    left: 20px;
    font-size: 20px;
  }
}
.top-column__pickup-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 640px) {
  .top-column__pickup-content {
    flex-direction: column;
    gap: 25px;
  }
}
.top-column__pickup-article {
  width: calc(50% - 20px);
  border-right: 1px solid #CCD6E0;
  padding-right: 40px;
}
.top-column__pickup-article:last-child {
  border-right: none;
  padding-right: 0;
}
@media (max-width: 640px) {
  .top-column__pickup-article {
    width: 100%;
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #CCD6E0;
    padding-bottom: 0px;
  }
  .top-column__pickup-article:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.top-column__pickup-link {
  display: flex;
  gap: 20px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  flex-direction: column;
}
.top-column__pickup-link:hover {
  opacity: 0.7;
}
@media (max-width: 640px) {
  .top-column__pickup-link {
    flex-direction: column;
    gap: 15px;
  }
}
.top-column__pickup-media {
  width: 100%;
  height: auto;
  /*flex-shrink: 0;*/
}
.top-column__pickup-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 640px) {
  .top-column__pickup-media {
    width: 100%;
    height: auto;
    aspect-ratio: 173/107;
  }
}
.top-column__pickup-text {
  flex-grow: 1;
  /*display: flex;
  flex-direction: column;*/
}
.top-column__pickup-title {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 0 0;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 47px;
}
.top-column__category {
  display: inline-block;
  border: 1px solid #143966;
  padding: 2px 12px;
  font-size: 14px;
  color: #143966;
  line-height: 1.4;
}
.top-column__list-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-bottom: 40px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .top-column__list-wrapper {
    width: 100%;
    left: inherit;
    right: inherit;
    margin: 0;
    margin-bottom: 40px;
  }
}
.top-column__list {
  width: 100%;
  overflow: visible;
  padding: 0 20px;
}
.top-column__list .swiper-wrapper {
  width: 100vw;
}
.top-column__list .swiper-slide {
  width: 293px;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .top-column__list .swiper-slide {
    width: 260px;
  }
}
.top-column__list:not(.swiper-initialized) .swiper-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
@media (max-width: 640px) {
  .top-column__list:not(.swiper-initialized) .swiper-wrapper {
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .top-column__list {
    padding: 0 20px;
  }
}
.top-column__item {
  width: 100%;
  height: 100%;
}
.top-column__item-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.top-column__item-link:hover {
  opacity: 0.8;
}
.top-column__item-media {
  width: 100%;
  height: 181px;
  margin-bottom: 16px;
  overflow: hidden;
}
.top-column__item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
@media (max-width: 640px) {
  .top-column__item-media {
    height: 160px;
  }
}
.top-column__item-link:hover .top-column__item-media img {
  transform: scale(1.05);
}
.top-column__item-title {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.5;
  margin: 10px 0 0;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 54px;
}
@media (max-width: 640px) {
  .top-column__item-title {
    font-size: 16px;
    height: 48px;
  }
}
.top-column__more {
  text-align: right;
}

.top-faq {
  padding-bottom: 80px;
}
.top-faq__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .top-faq__header {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.top-faq__title-wrapper {
  width: 45%;
}
@media (max-width: 640px) {
  .top-faq__title-wrapper {
    width: 100%;
  }
}
.top-faq__description {
  width: 50%;
}
.top-faq__description p {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
}
@media (max-width: 640px) {
  .top-faq__description {
    width: 100%;
  }
}
.top-faq__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 100%;
}
@media (max-width: 640px) {
  .top-faq__links {
    grid-template-columns: 1fr;
  }
}
.top-faq__link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background-color: #ffffff;
  border: 1px solid #CCD6E0;
  border-radius: 8px;
  color: #000;
  font-size: 18px;
  font-weight: normal;
  text-decoration: none;
  transition: background-color 0.3s, border-color 0.3s;
}
.top-faq__link-item i {
  font-size: 14px;
  color: #143966;
  transition: transform 0.3s;
}
.top-faq__link-item:hover {
  background-color: rgba(20, 57, 102, 0.03);
  border-color: #143966;
}
.top-faq__link-item:hover i {
  transform: translateX(5px);
}
@media (max-width: 640px) {
  .top-faq__link-item {
    padding: 18px 24px;
    font-size: 16px;
  }
}

.top-company {
  padding-bottom: 80px;
  background-color: #EDF1F5;
}
.top-company__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .top-company__header {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }
}
.top-company__title-wrapper {
  width: 55%;
}
@media (max-width: 640px) {
  .top-company__title-wrapper {
    width: 100%;
  }
}
.top-company__heading {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.4;
}
.top-company__description {
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}
.top-company__logo-block {
  width: 40%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 640px) {
  .top-company__logo-block {
    width: 100%;
    justify-content: flex-start;
    gap: 30px;
  }
}
.top-company__logo-adw img {
  width: 294px;
  height: auto;
}
@media (max-width: 640px) {
  .top-company__logo-adw img {
    width: 220px;
  }
}
.top-company__logo-jpx img {
  width: 63px;
  height: auto;
}
.top-company__concept-block {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .top-company__concept-block {
    padding: 25px;
    margin-bottom: 30px;
  }
}
.top-company__concept-catchphrase {
  font-size: 24px;
  font-weight: bold;
  color: #143966;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .top-company__concept-catchphrase {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.top-company__concept-text {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  text-align: center;
}
.top-company__profile {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
@media (max-width: 640px) {
  .top-company__profile {
    flex-direction: column;
    gap: 30px;
  }
}
.top-company__profile-data {
  width: 48%;
}
@media (max-width: 640px) {
  .top-company__profile-data {
    width: 100%;
  }
}
.top-company__profile-table {
  width: 100%;
  border-collapse: collapse;
}
.top-company__profile-table th, .top-company__profile-table td {
  font-size: 16px;
  font-weight: normal;
  color: #000;
  text-align: left;
  padding: 10px 0;
  line-height: 1.6;
  vertical-align: top;
}
.top-company__profile-table th {
  width: 90px;
  padding-right: 20px;
}
.top-company__license {
  width: 48%;
}
@media (max-width: 640px) {
  .top-company__license {
    width: 100%;
  }
}
.top-company__license-table {
  width: 100%;
  border-collapse: collapse;
}
.top-company__license-table th, .top-company__license-table td {
  font-size: 16px;
  font-weight: normal;
  color: #000;
  text-align: left;
  padding: 10px 0;
  line-height: 1.6;
  vertical-align: top;
}
.top-company__license-table th {
  width: 70px;
  padding-right: 20px;
}
.top-company__date {
  font-size: 16px;
  color: #000;
  text-align: right;
  margin-bottom: 30px;
}
.top-company__button {
  text-align: center;
  margin-bottom: 60px;
}
.top-company__button-link {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  border: 1px solid #143966;
  border-radius: 4px;
  color: #143966;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s;
}
.top-company__button-link i {
  font-size: 12px;
  transition: transform 0.3s;
}
.top-company__button-link:hover {
  background-color: rgba(20, 57, 102, 0.05);
}
.top-company__button-link:hover i {
  transform: translateX(5px);
}
.top-company__group {
  padding-top: 40px;
}
@media (max-width: 640px) {
  .top-company__group {
    padding-top: 30px;
  }
}
.top-company__group-title {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CCD6E0;
}
.top-company__group-profile {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
@media (max-width: 640px) {
  .top-company__group-profile {
    flex-direction: column;
    gap: 30px;
  }
}
.top-company__group-data {
  width: 48%;
}
@media (max-width: 640px) {
  .top-company__group-data {
    width: 100%;
  }
}
.top-company__group-table {
  width: 100%;
  border-collapse: collapse;
}
.top-company__group-table th, .top-company__group-table td {
  font-size: 16px;
  font-weight: normal;
  color: #000;
  text-align: left;
  padding: 10px 0;
  line-height: 1.6;
  vertical-align: top;
}
.top-company__group-table th {
  width: 90px;
  padding-right: 20px;
}
.top-company__group-license {
  width: 48%;
}
@media (max-width: 640px) {
  .top-company__group-license {
    width: 100%;
  }
}
.top-company__group-license-table {
  width: 100%;
  border-collapse: collapse;
}
.top-company__group-license-table th, .top-company__group-license-table td {
  font-size: 16px;
  font-weight: normal;
  color: #000;
  text-align: left;
  padding: 10px 0;
  line-height: 1.6;
  vertical-align: top;
}
.top-company__group-license-table th {
  width: 70px;
  padding-right: 20px;
}
.top-company__group-date {
  font-size: 15px;
  color: #000;
  text-align: right;
  margin-bottom: 30px;
}
.top-company__group-button {
  text-align: center;
}

.top-caution {
  padding-bottom: 40px;
  border-top: 1px solid #CCD6E0;
  background-color: #fafafa;
}
@media (max-width: 640px) {
  .top-caution {
    padding-bottom: 30px;
  }
}
.top-caution__header {
  margin-bottom: 20px;
}
.top-caution__heading {
  font-size: 20px;
  font-weight: normal;
  color: #666;
  margin: 0;
  text-align: center;
}
@media (max-width: 640px) {
  .top-caution__heading {
    font-size: 18px;
  }
}
.top-caution__content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}
@media (max-width: 640px) {
  .top-caution__content {
    font-size: 16px;
    line-height: 1.5;
  }
}
.top-caution__section {
  margin-bottom: 24px;
}
.top-caution__section:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .top-caution__section {
    margin-bottom: 20px;
  }
}
.top-caution__section-title {
  font-size: 16px;
  font-weight: bold;
  color: #555;
  margin-bottom: 8px;
  padding-left: 16px;
  position: relative;
}
.top-caution__section-title::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: #000;
}
@media (max-width: 640px) {
  .top-caution__section-title {
    font-size: 16px;
    margin-bottom: 6px;
  }
}
.top-caution__table {
  margin-left: 16px;
  border-collapse: collapse;
  width: 100%;
  max-width: 500px;
}
.top-caution__table th, .top-caution__table td {
  padding: 4px 8px;
  font-size: 16px;
  color: #666;
  text-align: left;
  border: none;
  vertical-align: top;
}
.top-caution__table th {
  width: 80px;
  font-weight: bold;
  color: #555;
}
.top-caution__table td {
  padding-left: 16px;
}
@media (max-width: 640px) {
  .top-caution__table th, .top-caution__table td {
    font-size: 16px;
    padding: 3px 6px;
  }
  .top-caution__table th {
    width: 70px;
  }
  .top-caution__table td {
    padding-left: 12px;
  }
}
.top-caution__text {
  margin: 0 0 8px 16px;
  color: #666;
}
.top-caution__risk-list {
  list-style: none;
  margin: 0 0 0 16px;
  padding: 0;
}
.top-caution__risk-item {
  margin-bottom: 16px;
}
.top-caution__risk-item:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .top-caution__risk-item {
    margin-bottom: 12px;
  }
}
.top-caution__risk-title {
  font-size: 16px;
  font-weight: bold;
  color: #555;
  margin: 0 0 4px 0;
  position: relative;
  padding-left: 20px;
}
.top-caution__risk-title::before {
  content: counter(item, decimal);
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ddd;
  color: #666;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}
@media (max-width: 640px) {
  .top-caution__risk-title {
    font-size: 16px;
  }
}
.top-caution__risk-text {
  margin: 0 0 0 20px;
  color: #666;
}
.top-caution__risk-list {
  counter-reset: item;
}

.common-cta {
  padding: 48px 0;
  background-image: url("/assets/images/common/cta_bg.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.common-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.common-cta__container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 32px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 6px;
}
.common-cta__heading {
  font-size: 24px;
  font-weight: normal;
  margin: 0 0 32px;
  line-height: 1.5;
}
.common-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}
.common-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 16px 32px 18px;
  font-size: 24px;
  text-decoration: none;
  border-radius: 4px;
  transition: opacity 0.3s;
  width: 296px;
  line-height: 1;
}
.common-cta__button:hover {
  opacity: 0.9;
}
.common-cta__button--consultation {
  position: relative;
  background: linear-gradient(to bottom, #EB8102, #A05700);
  color: #fff;
  overflow: hidden;
}
.common-cta__button--consultation::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
.common-cta__button--consultation::after {
  content: "\f105";
  margin-left: 8px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
.common-cta__button--consultation:hover {
  color: #fff;
}
.common-cta__button--consultation:hover::before {
  top: -50%;
  left: 150%;
}
.common-cta__button--document {
  position: relative;
  background: linear-gradient(to bottom, #D6292A, #862121);
  color: #fff;
  overflow: hidden;
}
.common-cta__button--document::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(45deg);
  transition: all 0.5s ease;
}
.common-cta__button--document::after {
  content: "\f105";
  margin-left: 8px;
  font-weight: 900;
  font-family: "Font Awesome 6 Free";
}
.common-cta__button--document:hover {
  color: #fff;
}
.common-cta__button--document:hover::before {
  top: -50%;
  left: 150%;
}
.common-cta__tel-wrapper {
  text-align: center;
}
.common-cta__tel {
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.common-cta__tel-label {
  font-size: 18px;
}
.common-cta__tel-number {
  font-size: 36px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  line-height: 1.25;
}
.common-cta__tel-number .tel-num-ruby {
  ruby-align: center;
}
.common-cta__tel-number .tel-num-ruby rt {
  font-size: 0.38em;
  font-weight: bold;
  letter-spacing: 0.25em;
}
.common-cta__hours {
  font-size: 14px;
  margin: 0 0 8px;
  opacity: 0.8;
}
.common-cta__department {
  font-size: 14px;
  margin: 0;
  opacity: 0.8;
}
@media (max-width: 768px) {
  .common-cta {
    padding: 32px 15px;
  }
  .common-cta__container {
    padding: 20px;
  }
  .common-cta__heading {
    font-size: 20px;
    margin-bottom: 24px;
  }
  .common-cta__buttons {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }
  .common-cta__button {
    width: 100%;
    min-width: auto;
    font-size: 16px;
  }
  .common-cta__tel-label {
    font-size: 16px;
  }
  .common-cta__tel-number {
    font-size: 32px;
  }
  .common-cta__hours, .common-cta__department {
    font-size: 12px;
  }
}

.properties__notice {
  text-align: left;
  margin-bottom: 40px;
  font-size: 20px;
}
.properties__list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.properties .property-card {
  display: flex;
  gap: 50px;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  transition: opacity 0.3s;
  margin-bottom: 60px;
}
.properties .property-card:hover {
  opacity: 0.7;
}
.properties .property-card__media {
  flex: 0 0 480px;
  height: 576px;
  padding: 0;
}
.properties .property-card__media img {
  width: 480px;
  height: 576px;
  object-fit: cover;
  object-position: center bottom;
}
@media (max-width: 768px) {
  .properties .property-card__media {
    flex: none;
    width: 100%;
    height: auto;
    aspect-ratio: 480/576;
  }
}
.properties .property-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.properties .property-card__title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 4px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  line-height: 1.5;
  color: #000;
}
.properties .property-card__address {
  font-size: 15px;
  color: #000;
  margin: 0 0 24px;
  line-height: 1.5;
}
.properties .property-card__catch {
  font-size: 18px;
  margin: 0 0 32px;
  line-height: 1.5;
  color: #143966;
}
.properties .property-card__access {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
}
.properties .property-card__access p {
  margin: 0;
}
.properties .property-card__access-line {
  font-size: 15px;
  color: #000;
}
.properties .property-card__access-station {
  font-size: 15px;
  color: #000;
  line-height: 1.1;
}
.properties .property-card__access-station .station {
  font-size: 20px;
}
.properties .property-card__access-station .time {
  font-size: 24px;
}
.properties .property-card__access li:not(:last-child) {
  margin-bottom: 16px;
}
.properties .property-card__access li .station {
  font-weight: bold;
  color: #333;
}
.properties .property-card__access li .time {
  font-weight: bold;
  color: #333;
}
.properties .property-card__info {
  display: flex;
  border: 1px solid #CCD6E0;
  margin: 0 0 40px;
  background-color: #fff;
  padding: 20px 0px 20px 0px;
}
.properties .property-card__info dl {
  display: flex;
  flex-direction: column;
  position: relative;
  /*
  &:first-child {
      width: 36%;
  }

  &:nth-child(2),
  &:nth-child(3) {
      width: 32%;
  }
  */
}
.properties .property-card__info dl:first-child, .properties .property-card__info dl:nth-child(2) {
  width: 50%;
}
.properties .property-card__info dl:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #CCD6E0;
}
.properties .property-card__info dt {
  padding: 0px 8px 8px 16px;
  text-align: left;
  font-size: 16px;
  line-height: 1.4;
  color: #143966;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.properties .property-card__info dd {
  padding: 0px 8px 0px 16px;
  text-align: left;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.properties .property-card__info-main {
  display: block;
  font-size: 15px;
  font-weight: bold;
  color: #333;
  line-height: 1.5;
  margin-bottom: 4px;
}
.properties .property-card__info-sub {
  display: block;
  font-size: 12px;
  color: #666;
  line-height: 1.4;
}
.properties .property-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 24px;
  background-color: #EDF1F5;
  color: #333;
  font-size: 14px;
  font-weight: normal;
  border-radius: 4px;
  pointer-events: none;
}
.properties .property-card__button::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  margin-left: 8px;
  margin-top: -2px;
}
@media (max-width: 768px) {
  .properties .properties__notice {
    margin-bottom: 32px;
    font-size: 14px;
  }
  .properties .properties__list {
    gap: 24px;
  }
  .properties .property-card {
    flex-direction: column;
    gap: 24px;
  }
  .properties .property-card__media {
    flex: none;
  }
  .properties .property-card__media img {
    width: 100%;
    height: auto;
    aspect-ratio: 480/576;
  }
  .properties .property-card__content {
    padding-top: 0;
  }
  .properties .property-card__title {
    font-size: 20px;
  }
  .properties .property-card__catch {
    font-size: 15px;
    margin: 0 0 24px;
  }
  .properties .property-card__access {
    margin: 0 0 32px;
  }
  .properties .property-card__access li:not(:last-child) {
    margin-bottom: 12px;
  }
  .properties .property-card__access li .station,
  .properties .property-card__access li .time {
    font-size: 13px;
  }
  .properties .property-card__info {
    margin: 0 0 32px;
  }
  .properties .property-card__button {
    width: 100%;
  }
}

.property-detail__navigation {
  margin-bottom: 60px;
}
.property-detail__navigation-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.property-detail__navigation-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  height: 40px;
  padding: 0 24px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  border: 1px solid #CCD6E0;
  border-radius: 4px;
  background-color: #fff;
  transition: all 0.3s;
  white-space: nowrap;
}
.property-detail__navigation-item a:hover {
  color: #143966;
  border-color: #143966;
}
.property-detail__navigation-item a::after {
  content: "";
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(135deg);
  margin-left: 8px;
  margin-top: -2px;
}
.property-detail__section {
  margin: 60px 0;
}
.property-detail__section:last-child {
  margin-bottom: 0;
}
.property-detail__section .photo-caption {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  text-align: right;
}
.property-detail__section-title {
  font-size: 32px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 40px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  line-height: 1.5;
}
.property-detail__overview-content {
  max-width: 960px;
  margin: 0 auto;
}
.property-detail__overview-main {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}
.property-detail__overview-gallery {
  flex: 0 0 460px;
  width: 460px;
  position: relative;
}
.property-detail__overview-swiper {
  border-radius: 4px;
  overflow: visible;
  margin-bottom: 20px;
}
.property-detail__overview-swiper .swiper-slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center bottom;
}
.property-detail__overview-swiper .swiper-slide .photo-caption {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}
.property-detail__overview .property-detail__overview-pagination {
  position: static;
  text-align: center;
}
.property-detail__overview .property-detail__overview-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  opacity: 1;
  margin: 0 6px !important;
}
.property-detail__overview .property-detail__overview-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #143966;
}
.property-detail__overview-info {
  flex: 1;
}
.property-detail__overview-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
  line-height: 1.5;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.property-detail__overview-catch {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 40px;
  color: #143966;
}
.property-detail__overview-access {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .property-detail__overview-access {
    margin-bottom: 24px;
  }
}
.property-detail__overview-access-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.property-detail__overview-access-list li {
  margin-bottom: 24px;
}
.property-detail__overview-access-line {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 4px;
  color: #1f2937;
}
.property-detail__overview-access-station {
  font-size: 18px;
  line-height: 1.1;
  margin: 0;
}
.property-detail__overview-access-station .station {
  font-weight: bold;
  font-size: 24px;
}
.property-detail__overview-access-station .time {
  font-weight: bold;
  font-size: 28px;
}
.property-detail__overview-data {
  display: flex;
  gap: 30px;
  justify-content: center;
  background-color: #EDF1F5;
  padding: 30px;
  border-radius: 0px;
}
.property-detail__overview-data-item {
  text-align: left;
  margin: 0;
  background-color: #fff;
  padding: 24px;
  border-radius: 0px;
  min-width: 240px;
  width: 100%;
  flex: 1 1 0;
}
.property-detail__overview-data-item dt {
  font-size: 24px;
  color: #143966;
  margin-bottom: 8px;
}
.property-detail__overview-data-item dd {
  margin: 0;
}
.property-detail__overview-data-item dd .number {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.2;
}
.property-detail__overview-data-item dd .unit {
  font-size: 20px;
  margin-left: 4px;
}
.property-detail__overview-data-item dd .note {
  font-size: 16px;
  margin-left: 4px;
}
.property-detail__overview-data-item dd .sub {
  display: block;
  font-size: 16px;
  margin-top: 4px;
}
.property-detail__overview-data-item dd .date {
  font-size: 28px;
  line-height: 2.1;
  font-weight: bold;
}
.property-detail__features {
  position: relative;
  margin-bottom: 90px;
}
.property-detail__features::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: calc(100% + 40px);
  background-image: url("/assets/images/common/bg_dairiseki.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.property-detail__features-content {
  margin: 0 auto;
  position: relative;
}
.property-detail__features .property-detail__section-title {
  position: relative;
  padding-top: 40px;
}
.property-detail__features .property-detail__section-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
  background-color: #CCD6E0;
  display: none;
}
.property-detail__features-address {
  margin-bottom: 40px;
}
.property-detail__features-address .address {
  font-size: 20px;
  text-align: left;
  margin: 0;
}
.property-detail__features-address .address .map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  margin-left: 16px;
  background-color: #fff;
  border: 1px solid #CCD6E0;
  border-radius: 4px;
  text-decoration: none;
  color: #000;
  font-size: 14px;
  transition: all 0.3s;
}
.property-detail__features-address .address .map-link:hover {
  background-color: #143966;
  border-color: #143966;
  color: #fff;
}
.property-detail__features-text {
  margin-bottom: 40px;
}
.property-detail__features-text p {
  font-size: 18px;
  line-height: 1.8;
  margin: 0;
  text-align: left;
}
.property-detail__features-images img {
  width: 100%;
  height: auto;
}
.property-detail__gallery-content {
  max-width: 1000px;
  margin: 0 auto;
}
.property-detail__gallery-group {
  margin-bottom: 80px;
}
.property-detail__gallery-group:last-child {
  margin-bottom: 0;
}
.property-detail__gallery-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  justify-content: space-between;
}
.property-detail__gallery-title {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.property-detail__gallery-date {
  font-size: 14px;
  color: #999999;
  margin: 0;
}
.property-detail__gallery-items {
  position: relative;
}
.property-detail__gallery-items--view {
  display: flex;
  gap: 24px;
  justify-content: center;
}
.property-detail__gallery-items--view .gallery-item {
  width: calc(50% - 12px);
  height: calc((50% - 12px) / 2);
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
}
.property-detail__gallery-items--view .gallery-item:only-child {
  width: 100%;
  max-width: 800px;
}
.property-detail__gallery-items--view .gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center bottom;
}
.property-detail__gallery-items--exterior .gallery-swiper, .property-detail__gallery-items--interior .gallery-swiper {
  overflow: visible;
}
@media (max-width: 768px) {
  .property-detail__gallery-items--exterior .gallery-swiper, .property-detail__gallery-items--interior .gallery-swiper {
    overflow: hidden;
  }
}
.property-detail__gallery-items--exterior .gallery-swiper .swiper-wrapper, .property-detail__gallery-items--interior .gallery-swiper .swiper-wrapper {
  display: flex;
}
.property-detail__gallery-items--exterior .gallery-swiper .swiper-slide, .property-detail__gallery-items--interior .gallery-swiper .swiper-slide {
  width: 290px !important;
  /*
  @media (max-width: 768px) {
      width: 90% !important;
  }
  */
}
.property-detail__gallery-items--exterior .gallery-swiper .swiper-slide .gallery-item, .property-detail__gallery-items--interior .gallery-swiper .swiper-slide .gallery-item {
  display: block;
  width: 290px;
  height: 290px;
  position: relative;
  /*
  @media (max-width: 768px) {
      width: 80vw !important;
      height: 80vw !important;
  }
  */
}
.property-detail__gallery-items--exterior .gallery-swiper .swiper-slide .gallery-item img, .property-detail__gallery-items--interior .gallery-swiper .swiper-slide .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}
.property-detail__gallery-items--exterior .swiper-pagination, .property-detail__gallery-items--interior .swiper-pagination {
  position: static;
  margin-top: 16px;
  text-align: center;
}
.property-detail__gallery-items--exterior .swiper-pagination .swiper-pagination-bullet, .property-detail__gallery-items--interior .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: #ccc;
  opacity: 1;
  margin: 0 6px;
}
.property-detail__gallery-items--exterior .swiper-pagination .swiper-pagination-bullet-active, .property-detail__gallery-items--interior .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #143966;
}
.property-detail__gallery .zoom-icon {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 40px;
  height: 40px;
  background-color: #143966;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: normal;
  pointer-events: none;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}
.property-detail__gallery .gallery-item {
  transition: opacity 0.3s;
  text-decoration: none;
}
.property-detail__gallery .gallery-item:hover {
  opacity: 0.8;
}
.property-detail__info-text {
  font-size: 18px;
  line-height: 1.8;
  margin: 40px 0;
  padding: 16px;
  text-align: center;
  background-color: #EDF1F5;
}
.property-detail__location-content {
  max-width: 1000px;
  margin: 0 auto;
}
.property-detail__location-text {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 40px;
  text-align: left;
}
.property-detail__location-main {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 60px;
}
.property-detail__location-gallery {
  flex: 0 0 calc(40% - 20px);
  width: calc(40% - 20px);
}
.property-detail__location-gallery .location-gallery-main {
  margin-bottom: 16px;
}
.property-detail__location-gallery .location-gallery-main img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.property-detail__location-gallery .location-gallery-main .photo-caption {
  display: block;
  font-size: 12px;
  color: #fff;
  margin-top: 0px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  text-align: right;
  background-color: #143966;
  padding: 4px 8px;
}
.property-detail__location-gallery .location-gallery-thumbs .thumb-buttons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 8px;
}
.property-detail__location-gallery .location-gallery-thumbs .thumb-buttons .thumb-button {
  width: 100%;
  height: 84px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.property-detail__location-gallery .location-gallery-thumbs .thumb-buttons .thumb-button:hover {
  opacity: 0.7;
}
.property-detail__location-gallery .location-gallery-thumbs .thumb-buttons .thumb-button.is-active {
  position: relative;
}
.property-detail__location-gallery .location-gallery-thumbs .thumb-buttons .thumb-button.is-active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #143966;
}
.property-detail__location-gallery .location-gallery-thumbs .thumb-buttons .thumb-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-detail__location-gallery .location-gallery-thumbs .thumb-buttons .thumb-button .photo-caption {
  display: none;
}
.property-detail__location-map {
  flex: 0 0 calc(60% - 20px);
  width: calc(60% - 20px);
}
@media (max-width: 768px) {
  .property-detail__location-map {
    flex: none;
    width: 100%;
  }
}
.property-detail__location-map img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.property-detail__link-card {
  display: flex;
  gap: 30px;
  text-decoration: none;
  color: inherit;
  background-color: #fff;
  transition: opacity 0.3s;
  padding: 30px;
  border: 1px solid #CCD6E0;
  border-radius: 8px;
}
.property-detail__link-card:hover {
  opacity: 0.7;
}
.property-detail__link-card-media {
  flex: 0 0 240px;
  width: 240px;
}
.property-detail__link-card-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.property-detail__link-card-content {
  flex: 1;
  padding: 0;
}
.property-detail__link-card-content .title {
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 8px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  line-height: 1.5;
}
.property-detail__link-card-content .text {
  font-size: 15px;
  line-height: 1.8;
  margin: 0 0 16px;
}
.property-detail__link-card-content .url {
  font-size: 14px;
  color: #143966;
  margin: 0;
  word-break: break-all;
  display: flex;
  align-items: center;
  gap: 8px;
}
.property-detail__link-card-content .url .fa-up-right-from-square {
  font-size: 12px;
}
.property-detail__development {
  position: relative;
  background-color: #EDF1F5;
  margin: 0 calc(50% - 50vw);
  padding: 60px calc(50vw - 50%);
}
.property-detail__development-content {
  max-width: 1000px;
  margin: 0 auto;
}
.property-detail__development-text {
  font-size: 18px;
  line-height: 1.8;
  margin: 0 0 40px;
  text-align: left;
}
.property-detail__development-main {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
}
.property-detail__development-map {
  flex: 0 0 540px;
  width: 540px;
}
.property-detail__development-map img {
  width: 100%;
  height: auto;
}
.property-detail__development-info {
  flex: 1;
}
.property-detail__development-info .development-info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.property-detail__development-info .development-info-item:last-child {
  margin-bottom: 0;
}
.property-detail__development-info .development-info-item .media {
  flex: 0 0 25px;
  width: 25px;
  position: relative;
}
.property-detail__development-info .development-info-item .media img {
  width: 100%;
  height: 70px;
  object-fit: cover;
}
.property-detail__development-info .development-info-item .media .number {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background-color: #143966;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: bold;
  z-index: 1;
}
.property-detail__development-info .development-info-item .content {
  flex: 1;
}
.property-detail__development-info .development-info-item .content .title {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}
.property-detail__summary-content {
  margin: 0 auto;
}
.property-detail__summary-content table {
  width: 100%;
  border-collapse: collapse;
  border-bottom: 1px solid #CCD6E0;
  border-top: 1px solid #CCD6E0;
}
.property-detail__summary-content table tr {
  border-bottom: 1px solid #CCD6E0;
}
.property-detail__summary-content table tr:last-child {
  border-bottom: none;
}
.property-detail__summary-content table th {
  width: 240px;
  padding: 24px 40px 24px 0;
  text-align: left;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.6;
  vertical-align: top;
  color: #143966;
}
.property-detail__summary-content table td {
  padding: 24px 0;
  font-size: 18px;
  line-height: 1.8;
}
.property-detail__info-content {
  margin: 0 auto;
}
.property-detail__info-content table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid #CCD6E0;
  border-bottom: 1px solid #CCD6E0;
}
.property-detail__info-content table tr {
  border-bottom: 1px solid #CCD6E0;
}
.property-detail__info-content table tr:last-child {
  border-bottom: none;
}
.property-detail__info-content table th {
  padding: 24px;
  text-align: left;
  font-size: 18px;
  line-height: 1.6;
  vertical-align: top;
}
.property-detail__info-content table th:first-child {
  width: 180px;
  padding-left: 0;
  color: #143966;
}
.property-detail__info-content table th:nth-child(2) {
  width: 180px;
  padding-right: 40px;
  color: #AA945F;
}
@media (max-width: 768px) {
  .property-detail__info-content table th {
    width: 160px;
    padding: 16px 8px;
  }
  .property-detail__info-content table th:first-child {
    width: 80px;
  }
  .property-detail__info-content table th:nth-child(2) {
    width: 100px;
    padding-right: 16px;
  }
}
.property-detail__info-content table td {
  padding: 24px 0;
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .property-detail__info-content table td {
    padding: 16px 0;
  }
}

@media (max-width: 768px) {
  .property-detail__navigation {
    margin: 0;
    padding: 0 1rem;
    background-color: #fff;
    top: 0;
    z-index: 10;
  }
  .property-detail__navigation::-webkit-scrollbar {
    display: none;
  }
  .property-detail__navigation-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0;
  }
  .property-detail__navigation-item a {
    min-width: auto;
    width: 100%;
    height: 32px;
    padding: 0 16px;
    font-size: 12px;
    white-space: nowrap;
    border: none;
    background-color: #EDF1F5;
  }
  .property-detail__navigation-item a::after {
    width: 4px;
    height: 4px;
    margin-left: 6px;
    margin-top: -1px;
  }
  .property-detail__section {
    margin-bottom: 80px;
    padding: 0 1rem;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .property-detail__section {
    padding-left: calc(1rem - 12px);
    padding-right: calc(1rem - 12px);
  }
}
@media (max-width: 768px) {
  .property-detail__section-title {
    font-size: 24px;
    margin-bottom: 32px;
  }
  .property-detail__gallery-group {
    margin-bottom: 40px;
  }
  .property-detail__gallery-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .property-detail__gallery-items {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .property-detail__overview-main {
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
  }
  .property-detail__overview-gallery {
    flex: none;
    width: 100%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .property-detail__overview-gallery {
    width: 100vw;
    margin-left: calc(-12px - 1rem);
    margin-right: calc(-12px - 1rem);
  }
}
@media (max-width: 768px) {
  .property-detail__overview-swiper .swiper-slide img {
    height: auto;
    aspect-ratio: 460/460;
  }
  .property-detail__overview-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .property-detail__overview-catch {
    font-size: 18px;
    margin-bottom: 32px;
  }
  .property-detail__overview-access .station {
    font-size: 18px;
  }
  .property-detail__overview-access .station .time {
    font-size: 16px;
  }
  .property-detail__overview-data {
    flex-direction: column;
    gap: 24px;
  }
  .property-detail__overview-data-item dd .number {
    font-size: 32px;
  }
  .property-detail__overview-data-item dd .unit {
    font-size: 16px;
  }
  .property-detail__overview-data-item dd .date {
    font-size: 20px;
  }
  .property-detail__location-text {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .property-detail__location-main {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
  .property-detail__location-gallery {
    flex: none;
    width: 100%;
  }
  .property-detail__location-gallery .location-gallery-main {
    margin-bottom: 12px;
  }
  .property-detail__location-gallery .location-gallery-main img {
    height: auto;
    aspect-ratio: 480/360;
  }
  .property-detail__location-gallery .location-gallery-thumbs .thumb-buttons {
    gap: 8px;
  }
  .property-detail__location-gallery .location-gallery-thumbs .thumb-buttons .thumb-button {
    height: auto;
    aspect-ratio: 112/84;
  }
  .property-detail__location-map img {
    height: auto;
    aspect-ratio: 480/360;
  }
  .property-detail__link-card {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }
  .property-detail__link-card-media {
    flex: none;
    width: 100%;
  }
  .property-detail__link-card-media img {
    height: auto;
    aspect-ratio: 240/200;
  }
  .property-detail__link-card-content {
    padding: 0;
  }
  .property-detail__link-card-content .title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .property-detail__link-card-content .text {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .property-detail__link-card-content .url {
    font-size: 12px;
    gap: 6px;
  }
  .property-detail__link-card-content .url .fa-up-right-from-square {
    font-size: 10px;
  }
  .property-detail__development {
    padding: 40px 1rem;
  }
  .property-detail__development-text {
    font-size: 16px;
    margin-bottom: 32px;
  }
  .property-detail__development-main {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
  .property-detail__development-map {
    flex: none;
    width: 100%;
  }
  .property-detail__development-info .development-info-item {
    gap: 16px;
    margin-bottom: 24px;
  }
  .property-detail__development-info .development-info-item .media {
    flex: 0 0 60px;
    width: 60px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .property-detail__development-info .development-info-item .media {
    flex: 0 0 20px;
    width: 20px;
  }
}
@media (max-width: 768px) {
  .property-detail__development-info .development-info-item .media img {
    height: 60px;
  }
  .property-detail__development-info .development-info-item .media .number {
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
  .property-detail__development-info .development-info-item .content .title {
    font-size: 16px;
  }
  .property-detail__summary-content table th {
    padding: 16px;
    font-size: 16px;
  }
  .property-detail__summary-content table th:first-child {
    width: 120px;
    padding-left: 0;
  }
  .property-detail__summary-content table th:nth-child(2) {
    width: 120px;
    padding-right: 20px;
  }
  .property-detail__summary-content table td {
    padding: 16px 0;
    font-size: 16px;
  }
}
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}
.gallery-modal__content {
  position: relative;
  z-index: 1;
  max-width: 90%;
  max-height: 90vh;
}
.gallery-modal__content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
}
.gallery-modal__content .gallery-modal__caption {
  display: block;
  font-size: 12px;
  color: #fff;
  margin-top: 0px;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  text-align: right;
  background-color: #143966;
  padding: 4px 8px;
}
.gallery-modal__close {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 0.3s;
}
.gallery-modal__close:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .gallery-modal__content {
    max-width: 95%;
  }
  .gallery-modal__close {
    top: -32px;
    right: 0;
    width: 24px;
    height: 24px;
    font-size: 24px;
  }
}
.breadcrumb {
  position: relative;
  margin-top: 110px;
}
.breadcrumb .container {
  max-width: 1311px;
  margin: 0 auto;
  padding: 8px 16px;
}
.breadcrumb__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  color: #666;
  font-size: 12px;
}
.breadcrumb__item a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
.breadcrumb__item a:hover {
  opacity: 0.7;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin: 0 8px;
  color: #999;
}

@media (max-width: 768px) {
  .breadcrumb {
    margin-top: 78px;
  }
  .breadcrumb .container {
    padding: 8px 15px;
  }
  .breadcrumb__item {
    font-size: 11px;
  }
  .breadcrumb__item:not(:last-child)::after {
    margin: 0 4px;
  }
}
.pages-common-mv {
  position: relative;
  height: 280px;
  background-color: #002B5B;
  overflow: hidden;
}
.pages-common-mv::before, .pages-common-mv::after,
.pages-common-mv .corner-top-right,
.pages-common-mv .corner-bottom-left {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  background-image: url("/assets/images/common/page_mv_waku.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 2;
}
.pages-common-mv::before {
  top: 20px;
  left: 20px;
}
.pages-common-mv .corner-top-right {
  top: 20px;
  right: 20px;
  transform: rotate(90deg);
}
.pages-common-mv .corner-bottom-left {
  bottom: 20px;
  left: 20px;
  transform: rotate(270deg);
}
.pages-common-mv::after {
  bottom: 20px;
  right: 20px;
  transform: rotate(180deg);
}
.pages-common-mv__content {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 960px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pages-common-mv__title {
  color: #fff;
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: bold;
  line-height: 1.2;
}
.pages-common-mv__title-sub {
  display: block;
  font-size: 20px;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
}
.pages-common-mv__title-ja {
  display: block;
  font-size: 36px;
  margin-bottom: 8px;
  letter-spacing: 0.1em;
}
.pages-common-mv__title-en {
  display: block;
  font-size: 20px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  letter-spacing: 0.1em;
  color: #D4B572;
  background: linear-gradient(180deg, #F4E4B7 0%, #D4B572 50%, #A08242 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pages-common-mv__description {
  color: #fff;
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  font-weight: bold;
}
.pages-common-mv__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 1;
}

@media (max-width: 768px) {
  .pages-common-mv {
    height: 200px;
  }
  .pages-common-mv::before, .pages-common-mv::after,
  .pages-common-mv .corner-top-right,
  .pages-common-mv .corner-bottom-left {
    width: 40px;
    height: 40px;
  }
  .pages-common-mv::before {
    top: 10px;
    left: 10px;
  }
  .pages-common-mv .corner-top-right {
    top: 10px;
    right: 10px;
  }
  .pages-common-mv .corner-bottom-left {
    bottom: 10px;
    left: 10px;
  }
  .pages-common-mv::after {
    bottom: 10px;
    right: 10px;
  }
  .pages-common-mv__content {
    width: 100%;
    padding: 0 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .pages-common-mv__title {
    margin-bottom: 12px;
  }
  .pages-common-mv__title-sub {
    font-size: 16px;
    margin-bottom: 3px;
  }
  .pages-common-mv__title-ja {
    font-size: 26px;
    margin-bottom: 5px;
  }
  .pages-common-mv__title-en {
    font-size: 14px;
  }
  .pages-common-mv__description {
    font-size: 14px;
    max-width: 90%;
    text-align: left;
    font-weight: normal;
  }
}
.pages-content-body {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  padding: 60px 0;
}
.pages-content-body .container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 768px) {
  .pages-content-body {
    padding: 40px 12px;
  }
}

.pages-back-link {
  text-align: right;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .pages-back-link {
    margin-top: 24px;
  }
}
.pages-back-link__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 160px;
  padding: 12px 24px;
  background-color: #143966;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  border-radius: 100px;
  transition: opacity 0.3s;
}
.pages-back-link__button:hover {
  opacity: 0.7;
}
.pages-back-link__text {
  font-family: "Noto Sans JP", sans-serif;
}
.pages-back-link__icon {
  position: relative;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
}
.pages-back-link__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #143966;
  border-right: 1px solid #143966;
  transform: translate(-60%, -50%) rotate(45deg);
}

@media (max-width: 768px) {
  .testimonials__list {
    margin-bottom: 60px;
  }
}
.testimonials__item {
  display: block;
  border-bottom: 1px solid #CCD6E0;
}
.testimonials__item:first-child {
  border-top: 1px solid #CCD6E0;
}
.testimonials__item-link {
  display: flex;
  gap: 60px;
  padding: 60px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.testimonials__item-link:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .testimonials__item-link {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
  }
}
.testimonials__image {
  flex: 0 0 416px;
}
.testimonials__image img {
  width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .testimonials__image {
    flex: 0 0 auto;
  }
}
.testimonials__content {
  flex: 1;
}
.testimonials__title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .testimonials__title {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
.testimonials__meta {
  margin-bottom: 24px;
  font-size: 14px;
}
.testimonials__meta dt {
  float: left;
  clear: left;
  width: 80px;
}
.testimonials__meta dd {
  margin-left: 80px;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  .testimonials__meta {
    margin-bottom: 16px;
  }
}
.testimonials__text {
  margin-bottom: 16px;
  line-height: 1.8;
}
@media (max-width: 768px) {
  .testimonials__text {
    margin-bottom: 24px;
  }
}
.testimonials__more {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  /*width: 250px;*/
  padding: 15px;
  background-color: transparent;
  color: #143966;
  text-align: right;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  gap: 16px;
  margin: 0 0 0 auto;
}
.testimonials__more::after {
  content: "\f105";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(to bottom, #1A4975, #00264A);
  color: #ffffff;
  border-radius: 50%;
  font-family: "Font Awesome 6 Free";
  line-height: 1;
}
.testimonials__more:hover {
  text-decoration: underline;
}
.testimonials__more:hover::after {
  background: linear-gradient(to bottom, #6195c5, #113d66);
}
.testimonials a:hover .testimonials__more::after {
  width: 36px;
}

.seminar {
  background-color: #EDF1F5;
  padding: 60px 0;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
}
@media (max-width: 768px) {
  .seminar {
    padding: 60px 0;
    margin-bottom: 60px;
  }
}
.seminar__inner {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .seminar__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.seminar__content {
  flex: 0 0 250px;
}
@media (max-width: 768px) {
  .seminar__content {
    flex: 0 0 auto;
  }
}
.seminar__title {
  color: #143966;
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 1.6;
}
.seminar__title span {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  .seminar__title {
    font-size: 14px;
  }
  .seminar__title span {
    font-size: 20px;
  }
}
.seminar__text {
  line-height: 1.8;
  margin-bottom: 0;
}
.seminar__gallery {
  flex: 1;
}
.seminar__images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 768px) {
  .seminar__images {
    gap: 16px;
  }
}
.seminar__images img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.seminar__date {
  margin-top: 24px;
  font-size: 16px;
}
.seminar__description {
  margin-top: 16px;
  line-height: 1.8;
  font-size: 18px;
}

.testimonials-detail__title {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 48px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  text-align: left;
}
@media (max-width: 768px) {
  .testimonials-detail__title {
    font-size: 24px;
    margin-bottom: 40px;
  }
  .testimonials-detail__title br {
    display: none;
  }
}
.testimonials-detail__overview {
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .testimonials-detail__overview {
    margin-bottom: 60px;
  }
}
.testimonials-detail__overview-content {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .testimonials-detail__overview-content {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
  }
}
.testimonials-detail__meta {
  flex: 1;
}
.testimonials-detail__image {
  flex: 0 0 416px;
}
@media (max-width: 768px) {
  .testimonials-detail__image {
    flex: 0 0 auto;
  }
}
.testimonials-detail__meta-item--customer {
  margin-bottom: 40px;
}
.testimonials-detail__customer {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
  margin: 0;
}
.testimonials-detail__meta-info {
  background-color: #EDF1F5;
  padding: 16px;
  margin-bottom: 8px;
  display: flex;
}
.testimonials-detail__meta-info dt {
  flex: 0 0 100px;
  font-size: 16px;
}
.testimonials-detail__meta-info dd {
  flex: 1;
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .testimonials-detail__meta-info {
    padding: 24px;
  }
}
.testimonials-detail__meta-item {
  display: flex;
  align-items: flex-start;
}
.testimonials-detail__meta-item--customer {
  border-top: 1px solid #CCD6E0;
  padding-top: 24px;
}
.testimonials-detail__meta-item:not(:last-child) {
  margin-bottom: 24px;
}
.testimonials-detail__qa {
  margin-bottom: 60px;
}
.testimonials-detail__qa-item {
  margin-bottom: 32px;
}
.testimonials-detail__qa-question {
  background-color: #EDF1F5;
  padding: 0px 16px 8px;
  color: #143966;
  margin-bottom: 16px;
}
.testimonials-detail__qa-question h2 {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
  line-height: 1.2;
  margin: 0;
}
.testimonials-detail__qa-question-num {
  font-size: 24px;
  margin-bottom: 8px;
}
.testimonials-detail__qa-question-text {
  font-size: 20px;
}
.testimonials-detail__qa-answer {
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.testimonials-detail__qa-answer p {
  line-height: 1.8;
  margin-bottom: 1.2em;
}
.testimonials-detail__qa-answer p:last-child {
  margin-bottom: 0;
}
.testimonials-detail__qa-answer p span {
  font-size: 16px !important;
  line-height: 1.8 !important;
}
.testimonials-detail__qa-answer--with-image-right, .testimonials-detail__qa-answer--with-image-left {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .testimonials-detail__qa-answer--with-image-right, .testimonials-detail__qa-answer--with-image-left {
    flex-direction: column;
    gap: 24px;
  }
}
.testimonials-detail__qa-answer--with-image-right .testimonials-detail__qa-answer-content {
  flex: 1;
}
.testimonials-detail__qa-answer--with-image-right .testimonials-detail__qa-image {
  flex: 0 0 440px;
  margin: 0;
}
@media (max-width: 768px) {
  .testimonials-detail__qa-answer--with-image-right .testimonials-detail__qa-image {
    flex: 0 0 auto;
  }
}
.testimonials-detail__qa-answer--with-image-left {
  flex-direction: row-reverse;
}
.testimonials-detail__qa-answer--with-image-left .testimonials-detail__qa-answer-content {
  flex: 1;
}
.testimonials-detail__qa-answer--with-image-left .testimonials-detail__qa-image {
  flex: 0 0 440px;
  margin: 0;
}
@media (max-width: 768px) {
  .testimonials-detail__qa-answer--with-image-left .testimonials-detail__qa-image {
    flex: 0 0 auto;
  }
}
@media (max-width: 768px) {
  .testimonials-detail__qa-answer--with-image-left {
    flex-direction: column;
  }
}
.testimonials-detail__staff {
  background-color: #EDF1F5;
  padding: 32px;
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .testimonials-detail__staff {
    padding: 24px;
  }
}
.testimonials-detail__staff-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}
@media (max-width: 768px) {
  .testimonials-detail__staff-inner {
    flex-direction: column;
    gap: 24px;
  }
}
.testimonials-detail__staff-content {
  flex: 1;
}
.testimonials-detail__staff-label {
  color: #143966;
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.testimonials-detail__staff-position {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 24px;
  margin-right: 12px;
  display: inline-block;
}
.testimonials-detail__staff-name {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 24px;
  display: inline-block;
}
.testimonials-detail__staff-text {
  font-size: 16px;
  line-height: 2;
  margin: 0;
}
.testimonials-detail__staff-image {
  flex: 0 0 320px;
}
.testimonials-detail__staff-image img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
@media (max-width: 768px) {
  .testimonials-detail__staff-image {
    flex: 0 0 auto;
  }
}

/* コラム共通スタイル */
.column-page {
  background-color: #ffffff;
}

/* コラムトップページ */
.column__header {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .column__header {
    margin-bottom: 60px;
  }
}
.column__category-header {
  margin-bottom: 30px;
  text-align: center;
}
.column__category-header-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .column__category-header-title {
    font-size: 28px;
  }
}
.column__category-header-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .column__category-header-description {
    font-size: 16px;
  }
}
.column__filter {
  margin: 0 0 40px;
  width: 100%;
}
.column__filter-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  justify-content: flex-start;
  align-items: stretch;
  position: relative;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .column__filter-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.column__filter-item {
  position: relative;
  width: 100%;
}
.column__filter-item a, .column__filter-item span {
  display: block;
  padding: 8px 20px;
  background-color: #EDF1F5;
  border-radius: 4px;
  color: #1f2937;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
  white-space: nowrap;
  width: 100%;
}
.column__filter-item a:hover, .column__filter-item a.is-active, .column__filter-item span:hover, .column__filter-item span.is-active {
  background-color: #143966;
  color: #fff;
}
.column__filter-item a i, .column__filter-item span i {
  margin-left: 5px;
  float: right;
}
@media (max-width: 768px) {
  .column__filter-item a, .column__filter-item span {
    padding: 12px 15px;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 0;
  }
}
.column__filter-item.has-children > a {
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .column__filter-item.has-children.is-open > a i {
    transform: rotate(180deg);
  }
  .column__filter-item.has-children.is-open .column__filter-dropdown, .column__filter-item.has-children.is-open-dropdown {
    display: block;
  }
}
.column__filter-item-dropdown, .column__filter-item .column__filter-dropdown {
  position: absolute;
  top: 100%;
  left: 20px;
  background-color: #EDF1F5;
  min-width: 200px;
  border-radius: 4px;
  padding: 8px 0;
  z-index: 10;
  display: none;
  margin: 0 -20px;
  width: 100%;
}
.column__filter-item-dropdown a, .column__filter-item .column__filter-dropdown a {
  display: block;
  padding: 8px 20px;
  border-radius: 0;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}
.column__filter-item-dropdown a:hover, .column__filter-item .column__filter-dropdown a:hover {
  background-color: rgb(221.5071428571, 228.95, 236.3928571429);
  color: #143966;
}
.column__filter-item-dropdown a.is-active, .column__filter-item .column__filter-dropdown a.is-active {
  background-color: #143966;
  color: #fff;
}
@media (max-width: 768px) {
  .column__filter-item-dropdown, .column__filter-item .column__filter-dropdown {
    position: static;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
    width: 100%;
    margin: 0;
  }
  .column__filter-item-dropdown a, .column__filter-item .column__filter-dropdown a {
    padding-left: 16px;
    background-color: rgb(227.7042857143, 233.77, 239.8357142857);
  }
}
@media (min-width: 769px) {
  .column__filter-item.has-children:hover .column__filter-item-dropdown, .column__filter-item.has-children:hover .column__filter-dropdown {
    display: block;
  }
}
@media (max-width: 768px) {
  .column__filter-item.has-children.is-open .column__filter-item-dropdown, .column__filter-item.has-children.is-open .column__filter-dropdown {
    display: block;
  }
}
@media (max-width: 768px) {
  .column__filter-item {
    width: 100%;
    margin-bottom: 0;
  }
}
.column__pickup {
  margin-bottom: 60px;
  border-bottom: 1px solid #e5e5e5;
}
.column__pickup .column__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.column__pickup .column__list .column__card {
  width: calc(50% - 20px);
  padding: 0;
}
@media (max-width: 768px) {
  .column__pickup .column__list .column__card {
    width: 100%;
  }
}
.column__latest {
  margin-bottom: 60px;
}
.column__latest .column__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 32px;
}
.column__latest .column__list .column__card {
  width: calc(33.333% - 27px);
}
@media (max-width: 1024px) {
  .column__latest .column__list .column__card {
    width: calc(33.333% - 27px);
  }
}
@media (max-width: 768px) {
  .column__latest .column__list .column__card {
    width: calc(50% - 20px);
  }
}
@media (max-width: 640px) {
  .column__latest .column__list .column__card {
    width: 100%;
  }
}
.column__link-banners {
  margin-bottom: 60px;
}
.column__link-banners-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.column__link-banners-list .column__link-banner {
  width: calc(33.333% - 27px);
  transition: opacity 0.3s ease;
  border-radius: 0px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.column__link-banners-list .column__link-banner:hover {
  opacity: 0.8;
}
.column__link-banners-list .column__link-banner img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .column__link-banners-list .column__link-banner {
    width: calc(50% - 20px);
  }
}
@media (max-width: 640px) {
  .column__link-banners-list .column__link-banner {
    width: 100%;
    margin-bottom: 20px;
  }
  .column__link-banners-list .column__link-banner:last-child {
    margin-bottom: 0;
  }
}
.column__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 60px;
  margin-top: 32px;
}
@media (max-width: 768px) {
  .column__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (max-width: 1024px) {
  .column__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
}
.column__card {
  background-color: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.column__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.column__card-media {
  position: relative;
  overflow: hidden;
  height: 200px;
}
.column__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.column__card-media:hover img {
  transform: scale(1.05);
}
.column__card-content {
  padding: 16px;
}
.column__card-meta {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  font-size: 13px;
  color: #6b7280;
  flex-wrap: wrap;
  gap: 8px;
}
.column__card-meta .category {
  padding: 3px 10px;
  background-color: #143966;
  color: #fff;
  border-radius: 4px;
  font-size: 12px;
}
.column__card-meta .date {
  flex-basis: 100%;
}
.column__card-meta .date::before {
  content: "•";
  margin: 0 8px;
}
.column__card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #1f2937;
}
@media (max-width: 768px) {
  .column__card-title {
    font-size: 20px;
  }
}
.column__card-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: #6b7280;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  display: none;
}
.column__card-more {
  text-align: right;
}
.column__card-more span {
  color: #143966;
  font-weight: bold;
  font-size: 14px;
  position: relative;
  padding-right: 20px;
}
.column__card-more span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  background: url("../images/icon-arrow-right.svg") no-repeat center/contain;
  transition: transform 0.3s ease;
}
.column__pagination {
  margin-top: 60px;
}
.column__pagination ul {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.column__pagination-item a, .column__pagination-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background-color: #f5f5f5;
  color: #1f2937;
  font-size: 15px;
  transition: all 0.3s ease;
}
.column__pagination-item a:hover, .column__pagination-item a.is-active, .column__pagination-item span:hover, .column__pagination-item span.is-active {
  background-color: #143966;
  color: #fff;
}
.column__pagination-item.prev a, .column__pagination-item.next a {
  width: auto;
  padding: 0 15px;
}

/* コラム詳細ページ */
.column-detail {
  max-width: 800px;
  margin: 0 auto;
}
.column-detail__header {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .column-detail__header {
    margin-bottom: 30px;
  }
}
.column-detail__meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  flex-wrap: wrap;
  gap: 8px;
}
.column-detail__meta .category {
  padding: 4px 12px;
  background-color: #143966;
  color: #fff;
  border-radius: 4px;
  font-size: 13px;
}
.column-detail__meta .category a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.column-detail__meta .category a:hover {
  opacity: 0.8;
  text-decoration: none;
}
.column-detail__meta .date {
  flex-basis: 100%;
  color: #6b7280;
  text-align: right;
}
.column-detail__meta .date::before {
  content: "•";
  margin: 0 8px;
}
.column-detail__title {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .column-detail__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 640px) {
  .column-detail__title {
    font-size: 20px;
  }
}
.column-detail__featured-image {
  margin-bottom: 40px;
}
.column-detail__featured-image img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}
@media (max-width: 768px) {
  .column-detail__featured-image {
    margin-bottom: 30px;
  }
}
.column-detail__content {
  margin-bottom: 60px;
}
.column-detail__content p {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 18px;
}
.column-detail__content h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 40px 0 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #143966;
}
@media (max-width: 768px) {
  .column-detail__content h2 {
    font-size: 22px;
    margin: 30px 0 15px;
  }
}
.column-detail__content h3 {
  font-size: 22px;
  font-weight: bold;
  margin: 40px 0 15px;
}
@media (max-width: 768px) {
  .column-detail__content h3 {
    font-size: 18px;
    margin: 25px 0 15px;
  }
}
.column-detail__content h4 {
  background-color: #f5f7f9;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: bold;
  margin: 40px 0 30px;
  border-radius: 0;
  width: 100%;
  position: relative;
  box-shadow: none;
  color: #333;
  letter-spacing: 0.05em;
  line-height: 1.4;
  border-left: none;
}
@media (max-width: 768px) {
  .column-detail__content h4 {
    font-size: 16px;
    padding: 12px 15px;
    margin: 30px 0 20px;
  }
}
.column-detail__content ul, .column-detail__content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}
.column-detail__content ul li, .column-detail__content ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.column-detail__content img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 4px;
}
.column-detail__content a {
  color: #143966;
  text-decoration: underline;
}
.column-detail__content a:hover {
  text-decoration: none;
}
.column-detail__content blockquote {
  margin: 30px 0;
  padding: 20px;
  background-color: #f9f9f9;
  border-left: 4px solid #143966;
  font-style: italic;
}
.column-detail__content table {
  width: 100%;
  margin: 30px 0;
  border-collapse: collapse;
}
.column-detail__content table caption {
  text-align: left;
  font-weight: bold;
  margin-bottom: 10px;
}
.column-detail__content table th, .column-detail__content table td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
}
.column-detail__content table th {
  background-color: #f5f5f5;
  font-weight: bold;
}
@media (max-width: 768px) {
  .column-detail__content table {
    width: 100%;
    overflow-x: auto;
    display: block;
  }
  .column-detail__content table th, .column-detail__content table td {
    padding: 10px 8px;
    font-size: 14px;
  }
}
.column-detail__toc {
  background-color: #f9f9f9;
  border: 1px solid #e5e5e5;
  padding: 20px 25px;
  border-radius: 8px;
  margin: 30px 0;
}
.column-detail__toc h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 18px;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5e5;
}
.column-detail__toc ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.column-detail__toc ol li {
  counter-increment: item;
  position: relative;
  padding-left: 1.4em;
  margin-bottom: 0.5em;
}
.column-detail__toc ol li:before {
  content: counter(item) ".";
  position: absolute;
  left: 0;
  font-weight: normal;
}
.column-detail__toc ol li ol {
  counter-reset: subitem;
  margin-top: 0.5em;
  margin-left: 1em;
}
.column-detail__toc ol li ol li {
  counter-increment: subitem;
  padding-left: 2em;
}
.column-detail__toc ol li ol li:before {
  content: counter(item) "." counter(subitem) " ";
  position: absolute;
  left: 0;
  font-weight: normal;
}
.column-detail__toc ol.no-number li:before {
  display: none;
}
.column-detail__toc a {
  color: #1f2937;
  text-decoration: none;
}
.column-detail__toc a:hover {
  color: #143966;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .column-detail__toc {
    padding: 15px;
    margin: 25px 0;
  }
  .column-detail__toc h3 {
    font-size: 16px;
  }
  .column-detail__toc ol > li, .column-detail__toc ol ol > li, .column-detail__toc ol ol ol > li {
    font-size: 14px;
    margin-bottom: 5px;
  }
}
.column-detail__point {
  background-color: rgba(20, 57, 102, 0.05);
  border-left: 4px solid #143966;
  padding: 20px;
  margin: 30px 0;
  border-radius: 0 8px 8px 0;
}
.column-detail__point h4 {
  padding: 0;
  color: #143966;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: bold;
}
.column-detail__point h4:before {
  content: "★";
  margin-right: 5px;
}
.column-detail__point p {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .column-detail__point {
    padding: 15px;
    margin: 25px 0;
  }
  .column-detail__point h4 {
    font-size: 16px;
  }
  .column-detail__point p {
    font-size: 14px;
  }
}
.column-detail__author {
  display: flex;
  background-color: #f9f9f9;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.column-detail__author-image {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin-right: 20px;
}
.column-detail__author-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.column-detail__author-info {
  flex: 1;
}
.column-detail__author-title {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 5px;
}
.column-detail__author-name {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}
.column-detail__author-description {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .column-detail__author {
    flex-direction: column;
    padding: 20px;
    margin-bottom: 30px;
  }
  .column-detail__author-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
  }
  .column-detail__author-info {
    text-align: center;
  }
  .column-detail__author-title {
    font-size: 13px;
  }
  .column-detail__author-name {
    font-size: 16px;
  }
  .column-detail__author-description {
    font-size: 13px;
    text-align: left;
  }
}
.column-detail__cta {
  background-color: #143966;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 40px;
  color: #fff;
}
.column-detail__cta-text {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.column-detail__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.column-detail__cta-button {
  display: inline-block;
  min-width: 200px;
  padding: 15px 30px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 16px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
}
.column-detail__cta-button.contact {
  background-color: #fff;
  color: #143966;
}
.column-detail__cta-button.contact:hover {
  background-color: rgb(242.25, 242.25, 242.25);
}
.column-detail__cta-button.reserve {
  background-color: #143966;
  color: #fff;
}
.column-detail__cta-button.reserve:hover {
  background-color: rgb(18, 51.3, 91.8);
}
.column-detail__cta-button i {
  margin-left: 5px;
}
@media (max-width: 768px) {
  .column-detail__cta {
    padding: 25px 20px;
    margin-bottom: 30px;
  }
  .column-detail__cta-text {
    font-size: 18px;
    margin-bottom: 15px;
  }
  .column-detail__cta-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .column-detail__cta-button {
    width: 100%;
    min-width: auto;
    padding: 12px;
    font-size: 15px;
  }
}
.column-detail__share {
  margin-bottom: 60px;
}
.column-detail__share-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.column-detail__share-buttons {
  display: flex;
  gap: 10px;
}
.column-detail__share-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.column-detail__share-buttons a:hover {
  transform: translateY(-3px);
}
.column-detail__share-buttons a.facebook {
  background-color: #3b5998;
  color: #fff;
}
.column-detail__share-buttons a.twitter {
  background-color: #1da1f2;
  color: #fff;
}
.column-detail__share-buttons a.line {
  background-color: #00B900;
  color: #fff;
}
.column-detail__related {
  margin-top: 80px;
}
.column-detail__related-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  .column-detail__related-title {
    font-size: 20px;
    margin-bottom: 25px;
  }
}
.column-detail__related-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .column-detail__related-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (max-width: 640px) {
  .column-detail__related-list {
    grid-template-columns: 1fr;
  }
}

.pages-back-link {
  text-align: center;
  margin: 60px 0;
}
.pages-back-link__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  background-color: #f5f5f5;
  border-radius: 4px;
  color: #1f2937;
  text-decoration: none;
  transition: all 0.3s ease;
  font-weight: bold;
}
.pages-back-link__button:hover {
  background-color: rgb(232.75, 232.75, 232.75);
}
.pages-back-link__text {
  margin-right: 10px;
}
.pages-back-link__icon {
  width: 16px;
  height: 16px;
  position: relative;
  /*
  &::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid $text-color;
    border-left: 2px solid $text-color;
    transform: translateY(-50%) rotate(-45deg);
  }
  */
}

/* カテゴリーページ用追加スタイル */
.column__category-header {
  margin-bottom: 30px;
  text-align: center;
}
.column__category-header .column__category-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .column__category-header .column__category-title {
    font-size: 28px;
  }
}
.column__category-header .column__category-description {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .column__category-header .column__category-description {
    font-size: 16px;
  }
}

/* 運用実績ページ */
.operating-properties-page {
  background-color: #ffffff;
}

.operating-properties {
  padding-bottom: 80px;
}
.operating-properties__intro {
  background-color: #EDF1F5;
  padding: 60px 0;
  margin-bottom: 60px;
  margin-top: -60px;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1024px) {
  .operating-properties__intro {
    padding: 60px 1rem;
  }
}
.operating-properties__intro-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  width: 960px;
}
@media (max-width: 1024px) {
  .operating-properties__intro-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    width: 100%;
  }
}
.operating-properties__intro-text {
  max-width: 650px;
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
}
@media (max-width: 1024px) {
  .operating-properties__intro-text {
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .operating-properties__intro-text {
    font-size: 15px;
  }
}
.operating-properties__intro-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 1024px) {
  .operating-properties__intro-stats {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .operating-properties__intro-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
.operating-properties__intro-stat {
  text-align: left;
  display: flex;
  gap: 16px;
}
.operating-properties__intro-stat .label {
  display: block;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 4px;
  text-align: center;
}
.operating-properties__intro-stat .label .label-title {
  display: block;
  font-size: 18px;
  color: #000;
  font-weight: bold;
}
.operating-properties__intro-stat .value {
  display: flex;
  align-items: baseline;
  font-size: 48px;
  font-weight: bold;
  color: #D4B572;
  line-height: 1;
}
.operating-properties__intro-stat .value .unit {
  font-size: 24px;
  margin-left: 2px;
}
@media (max-width: 768px) {
  .operating-properties__intro-stat .value {
    font-size: 36px;
  }
  .operating-properties__intro-stat .value .unit {
    font-size: 18px;
  }
}
.operating-properties__heading {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.operating-properties__heading:after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #143966;
  margin: 15px auto 0;
}
@media (max-width: 768px) {
  .operating-properties__heading {
    font-size: 22px;
    margin-bottom: 30px;
  }
  .operating-properties__heading:after {
    width: 50px;
    margin-top: 10px;
  }
}
.operating-properties__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 40px;
  margin-top: 32px;
}
@media (max-width: 1024px) {
  .operating-properties__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .operating-properties__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.operating-properties__list--sold {
  margin-bottom: 0;
}
.operating-properties__cta {
  background-color: #002D56;
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  color: #ffffff;
  background-image: url("/assets/images/common/bg-pattern.png");
  background-size: cover;
  background-position: center;
}
.operating-properties__cta-text {
  margin-bottom: 30px;
}
.operating-properties__cta-text p {
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .operating-properties__cta-text p {
    font-size: 16px;
  }
  .operating-properties__cta-text p br {
    display: none;
  }
}
.operating-properties__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 768px) {
  .operating-properties__cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.operating-properties__cta-buttons .btn {
  min-width: 200px;
  padding: 15px 30px;
  font-weight: bold;
  font-size: 16px;
  border-radius: 4px;
  text-align: center;
  transition: all 0.3s ease;
}
@media (max-width: 768px) {
  .operating-properties__cta-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
}
.operating-properties__cta-buttons .btn.btn-primary {
  background-color: #D4B572;
  color: #ffffff;
}
.operating-properties__cta-buttons .btn.btn-primary:hover {
  background-color: rgb(204.3815217391, 167.8891304348, 89.0184782609);
}
.operating-properties__cta-buttons .btn.btn-secondary {
  background-color: #ffffff;
  color: #002D56;
}
.operating-properties__cta-buttons .btn.btn-secondary:hover {
  background-color: rgb(229.5, 229.5, 229.5);
}
@media (max-width: 768px) {
  .operating-properties__cta {
    padding: 30px 20px;
  }
}
.operating-properties__section {
  margin-bottom: 80px;
}
.operating-properties__section--sold {
  background-color: #EDF1F5;
  padding: 60px 0;
  margin-bottom: 0;
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
.operating-properties__section--sold .container-inner {
  max-width: 960px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .operating-properties__section--sold .container-inner {
    padding: 0 20px;
  }
}
.operating-properties__section--sold .section-title {
  margin-top: 0;
}
.operating-properties__section--sold .operating-properties__list {
  margin-top: 40px;
}

/* 物件カード */
.property-card--operating {
  background-color: transparent;
  overflow: hidden;
  height: 100%;
  box-shadow: none;
  transition: opacity 0.3s ease;
}
.property-card--operating:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.85;
}
.property-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
}
.property-card__media {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}
.property-card__media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: transform 0.3s ease;
}
.property-card__label {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background-color: #143966;
  color: #ffffff;
  padding: 4px 10px;
  font-size: 13px;
  font-weight: bold;
  z-index: 1;
}
.property-card__content {
  padding: 20px 0;
}
.property-card__title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 8px;
  color: #1f2937;
}
@media (max-width: 768px) {
  .property-card__title {
    font-size: 20px;
  }
}
.property-card__address {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  .property-card__address {
    font-size: 13px;
  }
}
.property-card__description {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 768px) {
  .property-card__description {
    font-size: 13px;
  }
}
.property-card--sold {
  position: relative;
}

.flow__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
}
@media (max-width: 767px) {
  .flow__container {
    padding: 40px 20px;
  }
}
.flow__title {
  font-size: 28px;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
  color: #333;
  position: relative;
}
.flow__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #1B5E92;
  margin: 15px auto 0;
}
@media (max-width: 767px) {
  .flow__title {
    font-size: 22px;
    margin-bottom: 30px;
  }
}
.flow__steps {
  list-style: none;
  padding: 0;
  margin: 0;
}
.flow__step {
  display: flex;
  margin-bottom: 60px;
  position: relative;
  align-items: center;
}
@media (min-width: 768px) {
  .flow__step {
    min-height: 185px;
  }
}
.flow__step:last-child {
  margin-bottom: 0;
}
.flow__step:last-child::after {
  display: none;
}
.flow__step::after {
  content: "";
  position: absolute;
  left: 60px;
  top: 120px;
  height: calc(120% - 0px);
  width: 2px;
  background-color: #ccc;
  z-index: 0;
}
@media (max-width: 767px) {
  .flow__step::after {
    left: 35px;
  }
}
@media (max-width: 767px) {
  .flow__step {
    flex-direction: column;
    margin-bottom: 40px;
  }
}
.flow__step-number {
  flex: 0 0 120px;
  height: 120px;
  background-color: #1B5E92;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: bold;
  margin-right: 30px;
  z-index: 2;
}
.flow__step-number-text {
  text-align: center;
}
.flow__step-number-text .num {
  display: block;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .flow__step-number {
    flex: 0 0 70px;
    height: 70px;
    font-size: 14px;
    margin-right: 20px;
    margin-bottom: 15px;
    align-self: flex-start;
  }
  .flow__step-number-text .num {
    font-size: 24px;
  }
}
.flow__step-content {
  flex: 1;
}
@media (max-width: 767px) {
  .flow__step-content {
    padding-left: 70px;
  }
}
.flow__step-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #1B5E92;
}
@media (max-width: 767px) {
  .flow__step-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.flow__step-description {
  margin-bottom: 0px;
  line-height: 1.7;
}
.flow__step-image {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}
.flow__step-image img {
  width: 100%;
  height: auto;
  display: block;
}
.flow__note {
  background-color: #f5f5f5;
  padding: 20px;
  border-radius: 8px;
  margin-top: 40px;
}
.flow__note-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 18px;
}
.flow__note-list {
  padding-left: 20px;
  margin: 0;
}
.flow__note-list li {
  margin-bottom: 8px;
}
.flow__note-list li:last-child {
  margin-bottom: 0;
}
.flow__contact {
  text-align: center;
  margin-top: 60px;
  padding: 30px 0;
  background-color: #f0f7fc;
  border-radius: 8px;
}
.flow__contact-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
}
.flow__contact-tel {
  font-size: 32px;
  font-weight: bold;
  color: #1B5E92;
  margin-bottom: 10px;
}
.flow__contact-tel a {
  color: inherit;
  text-decoration: none;
}
@media (max-width: 767px) {
  .flow__contact-tel {
    font-size: 24px;
  }
}
.flow__contact-hours {
  margin-bottom: 25px;
}
.flow__contact-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.flow__contact-buttons .btn {
  padding: 12px 30px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}
.flow__contact-buttons .btn-primary {
  background-color: #1B5E92;
  color: #fff;
}
.flow__contact-buttons .btn-primary:hover {
  background-color: rgb(24.3, 84.6, 131.4);
}
.flow__contact-buttons .btn-secondary {
  background-color: #fff;
  color: #1B5E92;
  border: 1px solid #1B5E92;
}
.flow__contact-buttons .btn-secondary:hover {
  background-color: #e9f0f5;
}
@media (max-width: 767px) {
  .flow__contact-buttons {
    flex-direction: column;
  }
  .flow__contact-buttons .btn {
    width: 80%;
    margin: 0 auto;
  }
}

.faq {
  padding: 50px 0;
}
.faq__container {
  max-width: 900px;
  margin: 0 auto;
}
.faq__tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 10px;
}
.faq__tab {
  flex: 0 0 calc(50% - 10px);
  text-align: center;
  padding: 15px 10px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  color: #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__tab:hover {
  background-color: #1B5E92;
  color: #fff;
  border-color: #1B5E92;
}
@media (max-width: 767px) {
  .faq__tab {
    flex: 0 0 calc(50% - 10px);
    font-size: 13px;
    padding: 12px 5px;
  }
}
@media (max-width: 480px) {
  .faq__tab {
    flex: 0 0 100%;
  }
}
.faq__section {
  margin-bottom: 60px;
}
.faq__section:last-child {
  margin-bottom: 0;
}
.faq__section-title {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #1B5E92;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  position: relative;
}
.faq__section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100px;
  height: 3px;
  background-color: #1B5E92;
}
@media (max-width: 767px) {
  .faq__section-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.faq__items {
  margin-bottom: 30px;
}
.faq__item {
  margin-bottom: 25px;
  padding-bottom: 10px;
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq__question {
  position: relative;
  padding: 15px 15px 15px 50px;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
  background-color: #EDF1F5;
  color: #143966;
  border-radius: 4px;
}
.faq__question::before {
  content: "Q";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  font-weight: bold;
  color: #143966;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
}
@media (max-width: 767px) {
  .faq__question {
    font-size: 16px;
    padding: 10px 10px 10px 40px;
  }
  .faq__question::before {
    font-size: 24px;
    left: 10px;
  }
}
.faq__answer {
  padding: 15px 15px 15px 50px;
  position: relative;
  line-height: 1.7;
  font-size: 18px;
}
.faq__answer::before {
  content: "A";
  position: absolute;
  left: 15px;
  top: 6px;
  font-size: 28px;
  font-weight: bold;
  color: #AA945F;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
}
@media (max-width: 767px) {
  .faq__answer {
    padding: 10px 10px 10px 40px;
    font-size: 16px;
  }
  .faq__answer::before {
    font-size: 24px;
    left: 10px;
  }
}
.faq__bottom-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px 20px;
  background-color: #f0f7fc;
  border-radius: 8px;
  position: relative;
}
.faq__bottom-cta::before, .faq__bottom-cta::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
}
.faq__bottom-cta::before {
  top: 0;
  left: 0;
  background-image: url(/assets/images/common/corner-blue-top-left.png);
}
.faq__bottom-cta::after {
  bottom: 0;
  right: 0;
  background-image: url(/assets/images/common/corner-blue-bottom-right.png);
}
.faq__cta-text {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 30px;
  line-height: 1.6;
}
.faq__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 767px) {
  .faq__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}
.faq__cta-buttons .btn {
  min-width: 250px;
  display: inline-block;
  padding: 15px 30px;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .faq__cta-buttons .btn {
    min-width: 200px;
    padding: 12px 20px;
  }
}
.faq__cta-buttons .btn-primary {
  background-color: #D8840F;
  color: #fff;
}
.faq__cta-buttons .btn-primary:hover {
  background-color: rgb(194.4, 118.8, 13.5);
}
.faq__cta-buttons .btn-secondary {
  background-color: #DF3636;
  color: #fff;
}
.faq__cta-buttons .btn-secondary:hover {
  background-color: rgb(215.0613733906, 34.2386266094, 34.2386266094);
}

.about-page__section {
  margin-bottom: 80px;
}
@media (max-width: 640px) {
  .about-page__section {
    margin-bottom: 60px;
  }
}
.about-page__section-feature {
  background: url("/assets/images/about/bg_01.jpg");
  padding: 50px 30px;
  border-radius: 0px;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
@media (max-width: 640px) {
  .about-page__section-feature {
    padding: 30px 15px;
  }
}
.about-page__section-feature .about-page__section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 0;
  color: #143966;
}
.about-page__section-feature .about-page__section-title::after {
  display: none;
}
.about-page__section-feature .about-page__section-title .gold {
  font-size: 56px;
  color: #D4B572;
}
@media (max-width: 640px) {
  .about-page__section-feature .about-page__section-title {
    font-size: 28px;
    margin-bottom: 40px;
  }
  .about-page__section-feature .about-page__section-title .gold {
    font-size: 42px;
  }
}
.about-page__section-related {
  padding: 0 0 50px 0;
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .about-page__section-related {
    padding: 30px 15px;
  }
}
.about-page__section-compare {
  padding: 80px 0 0 0;
  background-color: #ffffff;
}
@media (max-width: 640px) {
  .about-page__section-compare {
    padding: 40px 15px;
  }
}
.about-page__intro {
  text-align: left;
  margin-bottom: 42px;
}
.about-page__intro p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 1rem;
}
@media (max-width: 640px) {
  .about-page__intro p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.about-page__feature-cards {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}
@media (max-width: 640px) {
  .about-page__feature-cards {
    flex-direction: column;
  }
}
.about-page__feature-card {
  flex: 1;
  background-color: #ffffff;
  text-align: center;
}
.about-page__feature-card img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.about-page__feature-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #143966;
}
.about-page__feature-card-text {
  font-size: 16px;
  line-height: 1.6;
  color: #143966;
}
.about-page__feature-card-sub {
  display: block;
  font-size: 12px;
  color: #999999;
  margin-top: -15px;
}
.about-page__section-title {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
}
@media (max-width: 640px) {
  .about-page__section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }
}
.about-page__point {
  width: 1080px;
  margin: 0 auto 60px;
  background-color: #ffffff;
  padding: 60px;
  border-radius: 0;
  box-shadow: none;
  display: block;
}
@media (max-width: 640px) {
  .about-page__point {
    width: 100%;
    padding: 30px 20px;
    margin-bottom: 40px;
  }
}
.about-page__point-main {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .about-page__point-main {
    flex-direction: column;
    gap: 20px;
  }
}
.about-page__point-content {
  width: 440px;
  padding-right: 0;
}
@media (max-width: 640px) {
  .about-page__point-content {
    width: 100%;
    margin-bottom: 0;
  }
}
.about-page__point-label {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(to bottom, #1A4975, #00264A);
  padding: 5px 16px;
  margin-bottom: 20px;
}
.about-page__point-label .label-text {
  color: #F0DF97;
  font-size: 16px;
  font-weight: 700;
  margin-right: 8px;
}
.about-page__point-label .label-number {
  color: #F0DF97;
  font-size: 38px;
  font-weight: normal;
  line-height: 1;
}
.about-page__point-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 0px;
  color: #000;
  line-height: 1.5;
}
.about-page__point-title .note_mark {
  font-size: 14px;
  color: #000;
  font-weight: normal;
}
.about-page__point-title-note {
  font-size: 12px;
  color: #000;
  font-weight: normal;
}
@media (max-width: 640px) {
  .about-page__point-title {
    font-size: 20px;
  }
}
.about-page__point-description {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-top: 20px;
  margin-bottom: 0;
}
.about-page__point-achievement {
  margin-top: -28px;
  margin-bottom: 20px;
}
.about-page__point-achievement-text {
  font-size: 20px;
  color: #143966;
  font-weight: 700;
}
.about-page__point-achievement-strong {
  font-size: 26px;
  color: #AA945F;
  font-weight: 700;
}
.about-page__point-achievement-strong .number {
  font-size: 42px;
  color: #AA945F;
  font-weight: 700;
  line-height: 1;
}
.about-page__point-achievement-note {
  font-size: 11px;
  color: #000;
  align-self: flex-end;
  margin-left: 5px;
}
@media (max-width: 640px) {
  .about-page__point-achievement {
    margin-top: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .about-page__point-achievement-text {
    font-size: 16px;
  }
  .about-page__point-achievement-strong {
    font-size: 22px;
  }
  .about-page__point-achievement-strong .number {
    font-size: 32px;
  }
}
.about-page__point-image {
  width: 480px;
}
.about-page__point-image img {
  width: 100%;
  height: auto;
  border-radius: 0px;
}
@media (max-width: 640px) {
  .about-page__point-image {
    width: 100%;
  }
}
.about-page__point-sub {
  background-color: #EDF1F5;
  padding: 32px 40px;
  border-radius: 0px;
}
@media (max-width: 640px) {
  .about-page__point-sub {
    padding: 20px;
  }
}
.about-page__point-sub-title {
  font-size: 24px;
  font-weight: 700;
  color: #143966;
  margin-bottom: 25px;
  text-align: center;
}
@media (max-width: 640px) {
  .about-page__point-sub-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.about-page__point-sub-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}
@media (max-width: 640px) {
  .about-page__point-sub-content {
    flex-direction: column;
    gap: 30px;
  }
}
.about-page__point-sub-content.single-column {
  flex-direction: column;
  gap: 0;
}
.about-page__point-sub-inner.left {
  width: 330px;
  position: relative;
  /*
  &::after {
    content: '';
    position: absolute;
    top: 0;
    right: -20px;
    width: 1px;
    height: 100%;
    background-color: $border-color;
  }
    */
}
@media (max-width: 640px) {
  .about-page__point-sub-inner.left {
    width: 100%;
  }
  .about-page__point-sub-inner.left::after {
    display: none;
  }
}
.about-page__point-sub-inner.right {
  width: 510px;
}
@media (max-width: 640px) {
  .about-page__point-sub-inner.right {
    width: 100%;
  }
}
.about-page__point-sub-label {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.about-page__point-sub-label-text {
  display: inline-block;
  background-color: #335D85;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
}
.about-page__point-sub-label-text .number {
  font-size: 18px;
  margin-left: 2px;
}
.about-page__point-sub-label::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #335D85;
  margin-left: 10px;
}
.about-page__point-sub-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000;
}
.about-page__point-sub-info-text {
  font-size: 12px;
  color: #000;
  text-align: right;
}
.about-page__point-sub-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-page__point-sub-image-item img, .about-page__point-sub-image img {
  width: 100%;
  height: auto;
  border-radius: 0px;
}
.about-page__point-sub-image-full {
  width: 100%;
}
.about-page__point-sub-image-full img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
}
.about-page__data-container {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .about-page__data-container {
    flex-direction: column;
  }
}
.about-page__data-container-item {
  flex: 1;
}
.about-page__data-container-item img {
  width: 100%;
  height: auto;
  border-radius: 0px;
}
.about-page__compare-title {
  font-size: 36px;
  font-weight: 700;
  color: #000;
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 640px) {
  .about-page__compare-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.about-page__compare-description {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 50px;
}
@media (max-width: 640px) {
  .about-page__compare-description {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.about-page__compare-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 40px;
}
@media (max-width: 640px) {
  .about-page__compare-table-wrapper {
    -webkit-overflow-scrolling: touch;
    display: block;
    white-space: nowrap;
  }
}
.about-page__compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
  min-width: 768px;
}
.about-page__compare-table th, .about-page__compare-table td {
  padding: 24px 16px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ffffff;
}
.about-page__compare-table th {
  background-color: #143966;
  color: #ffffff;
  font-weight: 700;
}
.about-page__compare-table td {
  background-color: #EDEDED;
  color: #000;
}
.about-page__compare-table tr th:first-child {
  min-width: 120px;
  width: 20%;
}
.about-page__compare-table tr th:not(:first-child) {
  font-size: 20px;
  width: 25%;
}
.about-page__compare-table tr td.highlight,
.about-page__compare-table tr th.highlight {
  background-color: #004C95;
  color: #ffffff;
  width: 30%;
}
.about-page__compare-table tr td.highlight {
  background-color: #EDF1F5;
  color: #143966;
  font-weight: 700;
}
@media (max-width: 640px) {
  .about-page__compare-table {
    font-size: 14px;
  }
  .about-page__compare-table th, .about-page__compare-table td {
    padding: 10px 8px;
  }
  .about-page__compare-table tr th:not(:first-child) {
    font-size: 16px;
  }
}
.about-page__definition-content {
  background-color: #ffffff;
  border-radius: 0px;
}
@media (max-width: 640px) {
  .about-page__definition-content {
    padding: 20px;
  }
}
.about-page__definition-subtitle {
  font-size: 26px;
  font-weight: 700;
  color: #143966;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #143966;
}
@media (max-width: 640px) {
  .about-page__definition-subtitle {
    font-size: 22px;
  }
}
.about-page__definition-text {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 25px;
}
.about-page__definition-subsection {
  margin-bottom: 30px;
  padding: 25px;
  background-color: #EDF1F5;
  border-radius: 0px;
}
.about-page__definition-subsection:last-child {
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .about-page__definition-subsection {
    padding: 15px;
  }
}
.about-page__definition-subheading {
  font-size: 20px;
  font-weight: 700;
  color: #143966;
  margin-bottom: 15px;
}
@media (max-width: 640px) {
  .about-page__definition-subheading {
    font-size: 18px;
  }
}
.about-page__definition-list {
  list-style: none;
  padding: 0;
}
.about-page__definition-list li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  font-size: 16px;
  line-height: 1.7;
}
.about-page__definition-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #143966;
  font-size: 12px;
}
.about-page__definition-list li strong {
  color: #143966;
  font-weight: 700;
}
.about-page__benefits-risks-content {
  background-color: #ffffff;
  border-radius: 0px;
}
@media (max-width: 640px) {
  .about-page__benefits-risks-content {
    padding: 20px;
  }
}
.about-page__benefits-risks-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
}
.about-page__benefits-risks-section {
  margin-bottom: 40px;
}
.about-page__benefits-risks-section:last-child {
  margin-bottom: 0;
}
.about-page__benefits-risks-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  padding: 15px 20px;
  border-radius: 0px;
}
.about-page__benefits-risks-title.benefits {
  background-color: #E8F4FD;
  color: #143966;
  border-left: 5px solid #143966;
}
.about-page__benefits-risks-title.risks {
  background-color: #FFF2F2;
  color: #D32F2F;
  border-left: 5px solid #D32F2F;
}
@media (max-width: 640px) {
  .about-page__benefits-risks-title {
    font-size: 20px;
    padding: 12px 15px;
  }
}
.about-page__benefits-risks-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
}
.about-page__benefits-risks-list li {
  counter-increment: item;
  margin-bottom: 20px;
  padding: 20px;
  background-color: #EDF1F5;
  border-radius: 0px;
  position: relative;
  padding-left: 60px;
}
.about-page__benefits-risks-list li::before {
  content: counter(item);
  position: absolute;
  left: 20px;
  top: 20px;
  background-color: #143966;
  color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}
.about-page__benefits-risks-list li strong {
  color: #143966;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}
@media (max-width: 640px) {
  .about-page__benefits-risks-list li {
    padding: 15px;
    padding-left: 50px;
  }
  .about-page__benefits-risks-list li::before {
    width: 25px;
    height: 25px;
    font-size: 14px;
    left: 15px;
    top: 15px;
  }
  .about-page__benefits-risks-list li strong {
    font-size: 16px;
  }
}
.about-page__product-comparison-content {
  background-color: #ffffff;
  border-radius: 0px;
}
@media (max-width: 640px) {
  .about-page__product-comparison-content {
    padding: 20px;
  }
}
.about-page__product-comparison-intro {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 30px;
}
.about-page__product-comparison-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #143966;
  margin-bottom: 25px;
}
@media (max-width: 640px) {
  .about-page__product-comparison-subtitle {
    font-size: 20px;
  }
}
.about-page__product-comparison-table-wrapper {
  width: 100%;
  overflow-x: auto;
  margin-bottom: 30px;
}
@media (max-width: 640px) {
  .about-page__product-comparison-table-wrapper {
    -webkit-overflow-scrolling: touch;
    display: block;
    white-space: nowrap;
  }
}
.about-page__product-comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
  min-width: 600px;
}
.about-page__product-comparison-table th, .about-page__product-comparison-table td {
  padding: 16px 12px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid #ffffff;
}
.about-page__product-comparison-table th {
  background-color: #143966;
  color: #ffffff;
  font-weight: 700;
}
.about-page__product-comparison-table td {
  background-color: #F5F5F5;
  color: #000;
}
.about-page__product-comparison-table tr th:first-child {
  min-width: 100px;
}
.about-page__product-comparison-table tr td.highlight {
  background-color: #EDF1F5;
  color: #143966;
  font-weight: 700;
}
.about-page__product-comparison-table tr th.highlight {
  background-color: #004C95;
  color: #ffffff;
}
@media (max-width: 640px) {
  .about-page__product-comparison-table {
    font-size: 14px;
  }
  .about-page__product-comparison-table th, .about-page__product-comparison-table td {
    padding: 10px 8px;
  }
}
.about-page__product-comparison-note {
  font-size: 12px;
  color: #000;
  text-align: right;
  margin-top: 10px;
}
.about-page__product-comparison-conclusion {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  text-align: center;
  font-weight: 700;
  margin-bottom: 0;
}
.about-page__related-content {
  display: flex;
  background-color: #EDF1F5;
}
@media (max-width: 640px) {
  .about-page__related-content {
    flex-direction: column;
  }
}
.about-page__related-heading {
  width: 180px;
  padding: 30px 20px;
  background-color: #EDF1F5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-right: 1px solid #CCD6E0;
}
@media (max-width: 640px) {
  .about-page__related-heading {
    width: 100%;
    padding: 20px;
    text-align: center;
  }
}
.about-page__related-heading-en {
  font-size: 26px;
  font-weight: 700;
  color: #143966;
  margin-bottom: 5px;
  font-family: "Noto Serif JP", "Yu Mincho", "游明朝", "YuMincho", serif;
}
.about-page__related-heading-ja {
  font-size: 14px;
  font-weight: normal;
  color: #143966;
}
.about-page__related-body {
  flex-grow: 1;
  position: relative;
}
.about-page__related-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  height: 100%;
  color: #000;
  text-decoration: none;
  transition: background-color 0.3s;
}
.about-page__related-link:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
@media (max-width: 640px) {
  .about-page__related-link {
    padding: 20px;
  }
}
.about-page__related-text {
  flex-grow: 1;
  padding-right: 30px;
}
.about-page__related-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #000;
}
@media (max-width: 640px) {
  .about-page__related-title {
    font-size: 20px;
  }
}
.about-page__related-description {
  font-size: 15px;
  line-height: 1.6;
  color: #000;
  margin-bottom: 0;
}
.about-page__related-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #143966;
}
.about-page__related-arrow i {
  transition: transform 0.3s;
}
.about-page__related-link:hover .about-page__related-arrow i {
  transform: translateX(5px);
}

.consultation {
  padding: 40px 0;
}
.consultation__intro {
  text-align: center;
  margin-bottom: 40px;
}
.consultation__intro p {
  font-size: 16px;
  line-height: 1.8;
}
.consultation__guide {
  margin-bottom: 60px;
}
.consultation__guide-section {
  margin-bottom: 40px;
}
.consultation__guide-text {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.consultation__guide-points {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 40px;
}
.consultation__guide-points-title {
  font-size: 24px;
  font-weight: 700;
  color: #143966;
  text-align: center;
  margin-bottom: 30px;
}
.consultation__guide-point {
  margin-bottom: 30px;
}
.consultation__guide-point:last-child {
  margin-bottom: 0;
}
.consultation__guide-point-title {
  font-size: 18px;
  font-weight: 700;
  color: #143966;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
.consultation__guide-point-title::before {
  content: "";
  width: 6px;
  height: 6px;
  background: #143966;
  margin-right: 10px;
  transform: rotate(45deg);
}
.consultation__guide-point-description {
  font-size: 16px;
  line-height: 1.8;
}
.consultation__guide-banner {
  text-align: center;
  margin: 40px 0;
}
.consultation__guide-banner img {
  max-width: 100%;
  height: auto;
}
.consultation__steps {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
}
.consultation__steps::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 25%;
  right: 25%;
  height: 2px;
  background-color: #CCD6E0;
  z-index: 1;
}
@media (max-width: 640px) {
  .consultation__steps::before {
    left: 15%;
    right: 15%;
  }
}
.consultation__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100px;
  position: relative;
  z-index: 2;
}
.consultation__step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #EDF1F5;
  border: 2px solid #CCD6E0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 10px;
}
.consultation__step-text {
  font-size: 14px;
  text-align: center;
}
.consultation__step.active .consultation__step-circle {
  background-color: #143966;
  border-color: #143966;
  color: #ffffff;
}
.consultation__form {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (max-width: 640px) {
  .consultation__form {
    padding: 20px 15px;
  }
}
.consultation__form-title {
  font-size: 24px;
  font-weight: 700;
  color: #143966;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #CCD6E0;
  position: relative;
}
.consultation__form-title::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #143966;
}
.consultation__form-note {
  font-size: 14px;
  color: #999999;
  margin-bottom: 25px;
  text-align: center;
}
.consultation__form-row {
  margin-bottom: 25px;
}
.consultation__form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
}
.consultation__form-label.required::after {
  content: "※";
  color: #DF3636;
  margin-left: 5px;
}
.consultation__form-radio-group {
  display: flex;
  gap: 20px;
  margin-top: 5px;
}
.consultation__form-radio {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.consultation__form-radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.consultation__form-radio input[type=radio]:checked + span::before {
  border-color: #143966;
}
.consultation__form-radio input[type=radio]:checked + span::after {
  transform: scale(1);
}
.consultation__form-radio input[type=radio]:focus + span::before {
  box-shadow: 0 0 0 3px rgba(20, 57, 102, 0.2);
}
.consultation__form-radio span {
  display: flex;
  align-items: center;
  font-size: 16px;
  padding-left: 35px;
  position: relative;
  transition: all 0.2s ease;
}
.consultation__form-radio span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #CCD6E0;
  border-radius: 50%;
  background-color: #ffffff;
  transition: all 0.2s ease;
}
.consultation__form-radio span::after {
  content: "";
  position: absolute;
  left: 6px;
  transform: translateY(-50%) scale(0);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #143966;
  transition: all 0.2s ease;
}
.consultation__form-radio span:hover::before {
  border-color: #143966;
}
.consultation__form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #CCD6E0;
  border-radius: 4px;
  font-size: 16px;
}
.consultation__form-input:focus {
  outline: none;
  border-color: #143966;
}
.consultation__form-input.half {
  display: inline-block;
  width: 48%;
}
.consultation__form-input.half:first-of-type {
  margin-right: 3%;
}
.consultation__form-input.postal-code {
  width: 150px;
}
.consultation__form-select {
  width: 100%;
  padding: 12px;
  border: 1px solid #CCD6E0;
  border-radius: 4px;
  font-size: 16px;
  background-color: #ffffff;
}
.consultation__form-select:focus {
  outline: none;
  border-color: #143966;
}
.consultation__form-select.date-select {
  display: inline-block;
  width: auto;
  margin-right: 10px;
  min-width: 120px;
}
.consultation__form-textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #CCD6E0;
  border-radius: 4px;
  font-size: 16px;
  min-height: 150px;
  resize: vertical;
}
.consultation__form-textarea:focus {
  outline: none;
  border-color: #143966;
}
.consultation__form-checkbox {
  display: inline-block;
  margin-right: 10px;
  cursor: pointer;
}
.consultation__form-date {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 15px;
}
.consultation__form-date .time-label {
  display: inline-block;
  margin: 0 10px;
}
.consultation__policy {
  margin-top: 40px;
  text-align: center;
}
.consultation__policy a {
  color: #143966;
  text-decoration: underline;
}
.consultation__policy a:hover {
  text-decoration: none;
}
.consultation__submit {
  margin-top: 30px;
  text-align: center;
}
.consultation__submit button {
  padding: 15px 60px;
  background-color: #143966;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.consultation__submit button:hover {
  background-color: rgb(11.6393442623, 33.1721311475, 59.3606557377);
}
@media (max-width: 640px) {
  .consultation__submit button {
    width: 100%;
  }
}
.consultation__confirm {
  margin-bottom: 40px;
}
.consultation__confirm-row {
  border-bottom: 1px solid #CCD6E0;
  padding: 20px 0;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 640px) {
  .consultation__confirm-row {
    flex-direction: column;
  }
}
.consultation__confirm-row:first-child {
  border-top: 1px solid #CCD6E0;
}
.consultation__confirm-label {
  width: 250px;
  font-weight: 700;
  padding-right: 20px;
  color: #1f2937;
}
@media (max-width: 640px) {
  .consultation__confirm-label {
    width: 100%;
    margin-bottom: 10px;
  }
}
.consultation__confirm-value {
  flex: 1;
  line-height: 1.8;
}
.consultation__confirm-buttons {
  text-align: center;
  margin-top: 40px;
}
.consultation__confirm-buttons form {
  display: block;
  margin: 0 10px 20px;
}
@media (max-width: 640px) {
  .consultation__confirm-buttons form {
    display: block;
    margin: 10px 0;
  }
}
.consultation__confirm-buttons .consultation__submit-button {
  padding: 15px 60px;
  background-color: #143966;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 60%;
}
.consultation__confirm-buttons .consultation__submit-button:hover {
  background-color: rgb(11.6393442623, 33.1721311475, 59.3606557377);
}
@media (max-width: 640px) {
  .consultation__confirm-buttons .consultation__submit-button {
    width: 100%;
  }
}
.consultation__confirm-buttons .consultation__back-button {
  padding: 8px 60px;
  background-color: #ffffff;
  color: #143966;
  border: 1px solid #143966;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.consultation__confirm-buttons .consultation__back-button:hover {
  background-color: rgb(122.4836065574, 170.5532786885, 229.0163934426);
}
@media (max-width: 640px) {
  .consultation__confirm-buttons .consultation__back-button {
    width: 100%;
  }
}
.consultation__thanks {
  text-align: center;
  padding: 20px 0;
}
.consultation__thanks-message {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.consultation__thanks-notes {
  background-color: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  margin-bottom: 40px;
  text-align: left;
}
.consultation__thanks-notes p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.consultation__thanks-notes p:last-child {
  margin-bottom: 0;
}
.consultation__thanks-notes ul {
  margin: 15px 0;
  padding-left: 20px;
}
.consultation__thanks-notes ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}
.consultation__thanks-notes ul li:last-child {
  margin-bottom: 0;
}
.consultation__thanks-contact {
  font-size: 20px;
  font-weight: 700;
  color: #143966;
  margin-top: 20px;
}
.consultation__thanks-contact i {
  margin-right: 10px;
}
.consultation__thanks-button {
  margin-top: 40px;
}
.consultation__thanks-button .consultation__back-button {
  display: inline-block;
  padding: 15px 60px;
  background-color: #143966;
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.consultation__thanks-button .consultation__back-button:hover {
  background-color: rgb(11.6393442623, 33.1721311475, 59.3606557377);
}
@media (max-width: 640px) {
  .consultation__thanks-button .consultation__back-button {
    width: 100%;
    max-width: 300px;
  }
}

.grid {
  display: grid;
  gap: 1rem;
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
}

.container {
  width: 100%;
  max-width: 1311px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-fluid {
  max-width: 100%;
}
.container-sm {
  max-width: 640px;
}
.container-md {
  max-width: 768px;
}
.container-lg {
  max-width: 1024px;
}
.container-xl {
  max-width: 1280px;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.3s ease-in forwards;
}
.fade-out {
  animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.slide-up {
  transform: translateY(20px);
  opacity: 0;
  animation: slideUp 0.5s ease forwards;
}
.slide-down {
  transform: translateY(-20px);
  opacity: 0;
  animation: slideDown 0.5s ease forwards;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDown {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.flex-column {
  flex-direction: column !important;
}

.justify-center {
  justify-content: center !important;
}

.align-center {
  align-items: center !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

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