@charset "UTF-8";
:root {
  --color-primary: #EE8C2C;
  --color-primary-dark: #C46728;
  --color-bg: #fff;
  --color-bg-white: #FFFFFF;
  --color-navy: #082290;
  --color-text: #333333;
  --color-line: #06C755;
  --color-border: #E8D8C4;
  --font-base: Noto Sans JP, sans-serif;
  --max-width: 1200px;
  --gutter: 40px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-full: 9999px;
  --shadow-card: 0 2px 16px rgba(0, 0, 0, 0.07);
  --shadow-float: 0 4px 24px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
  --header-h-pc: 100px;
  --header-h-sp: 60px;
  --fixed-bar-h: 64px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(100px + 8px);
  font-size: 16px;
  letter-spacing: 0.1em;
}

body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: #333333;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
body:after {
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/lp-broker/bg-image.png) repeat;
  opacity: 0.5;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.grecaptcha-badge {
  display: none !important;
}

.l-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}

.l-section {
  padding: 72px 0;
}
.l-section--white {
  background-color: #FFFFFF;
}

.bg-beige {
  background-color: #FCF3E8;
}

.section-title {
  text-align: center;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .section-title {
    margin-bottom: 40px;
  }
}
.section-title__icon {
  display: block;
  margin: 0 auto;
  max-width: 130px;
  height: auto;
}
@media (max-width: 768px) {
  .section-title__icon {
    max-width: 60px;
  }
}
.section-title__text {
  font-size: 60px;
  font-weight: 900;
  color: #082290;
  line-height: 1.2;
}
.section-title__text--accent {
  color: #EE8C2C;
}
@media (max-width: 1024px) {
  .section-title__text {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .section-title__text {
    font-size: 24px;
  }
}
.section-title--left {
  text-align: left;
}
.section-title--left .section-title__icon {
  margin-left: 0;
}

.content-width {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}

.sp {
  display: none;
}
@media (max-width: 768px) {
  .sp {
    display: block;
  }
}

.js-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 100px;
  background-color: #FCF3E8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.25s ease;
  transition: transform 0.3s ease;
}
@media (max-width: 1024px) {
  .header {
    position: fixed;
  }
}
@media (max-width: 1024px) {
  .header.is-hide {
    transform: translateY(-100%);
  }
}
@media (max-width: 768px) {
  .header {
    height: 60px;
  }
}
@media (max-width: 1500px) {
  .header {
    padding: 0 0 0 20px;
  }
}
.header__inner {
  height: 100%;
  padding: 0 0 0 40px;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1024px) {
  .header__inner {
    padding: 0;
    justify-content: space-between;
  }
}
.header__logo {
  flex-shrink: 0;
  line-height: 1.25;
  text-align: center;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.header__logo-main {
  display: block;
  font-size: 40px;
  color: #333333;
}
@media (max-width: 1500px) {
  .header__logo-main {
    font-size: 30px;
  }
}
@media (max-width: 768px) {
  .header__logo-main {
    font-size: 21px;
  }
}
.header__logo-sub {
  text-align: center;
  font-size: 15px;
  font-size: bold;
  color: #333333;
}
@media (max-width: 768px) {
  .header__logo-sub {
    font-size: 10px;
  }
}
.header__nav {
  flex: 1;
  overflow: hidden;
  height: 50px;
  text-align: center;
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  height: 100%;
  width: auto;
  background-color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  border-radius: 25px;
}
@media (max-width: 1500px) {
  .header__nav-list {
    padding: 0 10px;
  }
}
.header__nav-link {
  display: block;
  padding: 4px 20px;
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  white-space: nowrap;
  transition: color 0.25s ease;
}
.header__nav-link:hover {
  color: #EE8C2C;
}
@media (max-width: 1500px) {
  .header__nav-link {
    font-size: 12px;
    padding: 4px 10px;
  }
}
.header__contact {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 24px;
}
.header__phone {
  position: relative;
  text-align: right;
  line-height: 1.3;
}
@media (max-width: 1024px) {
  .header__phone {
    display: none;
  }
}
.header__phone-icon {
  position: absolute;
  left: -45px;
  top: 6px;
  display: block;
  height: 51px;
  width: auto;
  color: #EE8C2C;
}
@media (max-width: 1500px) {
  .header__phone-icon {
    display: none;
  }
}
.header__phone-label {
  position: relative;
  display: block;
  text-align: left;
  color: #333333;
  font-weight: 500;
}
@media (max-width: 1500px) {
  .header__phone-label {
    font-size: 10px;
  }
}
.header__phone-number {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #333333;
  letter-spacing: 0.03em;
}
@media (max-width: 1500px) {
  .header__phone-number {
    font-size: 20px;
  }
}
.header__cta {
  display: flex;
  gap: 0;
  height: 100%;
}
.header__cta-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0px;
  width: 100px;
  padding: 8px 16px;
  font-size: 16px;
  font-weight: 700;
  white-space: nowrap;
  height: 100%;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
@media (max-width: 1500px) {
  .header__cta-btn {
    width: 60px;
  }
}
.header__cta-btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.header__cta-btn-icon {
  width: 45px;
  height: auto;
}
@media (max-width: 768px) {
  .header__cta-btn-icon {
    height: 28px;
    width: auto;
  }
}
.header__cta-btn-text {
  line-height: 1;
}
@media (max-width: 1500px) {
  .header__cta-btn-text {
    font-size: 11px;
  }
}
.header__cta-btn--line {
  background-color: #06C755;
  color: #fff;
}
.header__cta-btn--inquiry {
  background-color: #EE8C2C;
  color: #fff;
}

.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .hero {
    padding: 60px 0 0;
    min-height: none !important;
  }
}
.hero__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  z-index: 2;
  margin-left: 0;
  width: 100%;
  padding: 0 40px;
}
@media (max-width: 1024px) {
  .hero__inner {
    max-width: 100%;
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .hero__inner {
    padding: 0;
  }
}
.hero__bg-area {
  position: relative;
  padding: 40px 20px;
}
.hero__bg-area > .hero__cta {
  display: none;
}
@media (max-width: 1024px) {
  .hero__bg-area > .hero__cta {
    display: inline-block;
  }
}
@media (max-width: 1024px) {
  .hero__bg-area {
    padding: 20px;
  }
}
.hero__bg-image {
  display: none;
}
@media (max-width: 1024px) {
  .hero__bg-image {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: 1;
    width: 100%;
    height: 100%;
  }
}
.hero__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
  opacity: 0.3;
}
.hero__texts-wrapper {
  position: relative;
  z-index: 2;
  width: 40%;
  min-width: 600px;
}
@media (max-width: 1500px) {
  .hero__texts-wrapper {
    min-width: 350px;
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .hero__texts-wrapper {
    order: 2;
    width: 100%;
  }
}
.hero__texts-wrapper > .hero__cta {
  display: block;
}
@media (max-width: 1024px) {
  .hero__texts-wrapper > .hero__cta {
    display: none;
  }
}
.hero__image {
  width: 60%;
  padding-left: 40px;
}
@media (max-width: 1500px) {
  .hero__image {
    width: 50%;
  }
}
@media (max-width: 1024px) {
  .hero__image {
    display: none;
  }
}
.hero__tag {
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 22px;
  margin-bottom: 12px;
}
@media (max-width: 1024px) {
  .hero__tag {
    font-size: 16px;
  }
}
.hero__title {
  position: relative;
  z-index: 2;
  font-size: 60px;
  font-weight: 900;
  color: #082290;
  line-height: 1.3;
  margin-bottom: 20px;
}
.hero__title small {
  font-size: 34px;
}
@media (max-width: 1500px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 32px;
  }
  .hero__title small {
    font-size: 18px;
  }
}
.hero__text {
  position: relative;
  z-index: 2;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero__cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 10px 40px;
  width: 100%;
  background-color: #EE8C2C;
  text-align: center;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 4px 20px rgba(238, 140, 44, 0.4);
  transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.hero__cta:hover {
  background-color: #C46728;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(238, 140, 44, 0.55);
}
@media (max-width: 768px) {
  .hero__cta {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
    justify-content: center;
  }
}

.trust {
  padding: 120px 0;
}
@media (max-width: 1024px) {
  .trust {
    padding: 40px 0 0;
  }
}
.trust--pc {
  display: block;
  padding: 0;
}
@media (max-width: 1024px) {
  .trust--pc {
    display: none;
  }
}
.trust--sp {
  display: none;
}
@media (max-width: 1024px) {
  .trust--sp {
    display: block;
  }
}
.trust__inner {
  display: grid;
  grid-template-columns: 24fr 40fr;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .trust__inner {
    grid-template-columns: 24fr 50fr;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
}
.trust__photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.trust__label {
  position: absolute;
  left: -20px;
  top: -20px;
  transform: rotate(-5deg);
  font-size: 20px;
  font-weight: 700;
  color: #EE8C2C;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
@media (max-width: 768px) {
  .trust__label {
    font-size: 12px;
  }
}
.trust__photo {
  width: 100%;
  height: auto;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.trust__badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  flex-wrap: wrap;
  height: 100%;
}
@media (max-width: 1024px) {
  .trust__badges {
    gap: 8px;
  }
}
.trust__badge {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .trust__badge {
    gap: 10px;
  }
}
.trust__badge-img {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.trust__badge-label {
  position: relative;
  z-index: 2;
  font-size: 19px;
  font-weight: 900;
  color: #082290;
  text-align: center;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .trust__badge-label {
    font-size: 14px;
  }
}

.problems {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .problems {
    padding: 40px 0;
  }
}
.problems__subtitle {
  margin-bottom: 80px;
  text-align: center;
  font-size: 48px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .problems__subtitle {
    margin-bottom: 40px;
    font-size: 20px;
  }
}
.problems__grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .problems__grid {
    display: block;
    margin-bottom: 40px;
  }
}
.problems__item {
  position: relative;
  width: calc(50% - 20px);
  padding: 20px;
  background-color: rgba(241, 239, 225, 0.5529411765);
  margin-bottom: 60px;
  border-radius: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .problems__item {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 8px;
  }
}
.problems__item-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background-color: #EE8C2C;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}
@media (max-width: 768px) {
  .problems__item-number {
    width: 40px;
    height: 40px;
    font-size: 20px;
    left: calc(50% - 20px);
  }
}
.problems__item-icon {
  max-height: 120px;
  max-width: 400px;
  height: 100%;
  width: auto;
  margin: 0 auto 20px;
}
@media (max-width: 768px) {
  .problems__item-icon {
    max-height: 60px;
    max-width: 100%;
  }
}
.problems__item-text {
  font-size: 28px;
  font-weight: bold;
}
@media (max-width: 768px) {
  .problems__item-text {
    font-size: 18px;
  }
}

.cta-banner {
  background: linear-gradient(135deg, #E8873A 0%, #C46728 100%);
  padding: 80px 40px;
  text-align: center;
}
@media (max-width: 768px) {
  .cta-banner {
    padding: 40px 16px;
  }
}
.cta-banner__text {
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  letter-spacing: 0.02em;
}
@media (max-width: 768px) {
  .cta-banner__text {
    font-size: 28px;
    margin-bottom: 20px;
  }
}
.cta-banner__sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
}
.cta-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 52px;
  background-color: #fff;
  color: #EE8C2C;
  font-size: 18px;
  font-weight: 700;
  border-radius: 9999px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
@media (max-width: 768px) {
  .cta-banner__btn {
    padding: 16px 20px;
  }
}
.cta-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.reasons {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .reasons {
    padding: 40px 0;
  }
}
.reasons__item {
  display: flex;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .reasons__item {
    display: block;
    margin: 0 0 40px;
  }
}
.reasons__item--reverse .reasons__item-image-wrap {
  order: 2;
}
.reasons__item--reverse .reasons__item-image-wrap {
  margin-right: 0;
  margin-left: 40px;
}
@media (max-width: 768px) {
  .reasons__item--reverse .reasons__item-image-wrap {
    margin-right: 0;
    margin-left: 0;
  }
}
.reasons__item-image-wrap {
  width: calc(50% - 40px);
  margin-right: 40px;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .reasons__item-image-wrap {
    width: 100%;
    margin-right: 0;
    border-radius: 8px;
  }
}
.reasons__item-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.4s ease;
  overflow: hidden;
}
.reasons__item:hover .reasons__item-image {
  transform: scale(1.04);
}
.reasons__item-body {
  width: 50%;
  padding: 20px 0;
}
@media (max-width: 768px) {
  .reasons__item-body {
    width: 100%;
  }
}
.reasons__item-label {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #F0F0F0;
  font-weight: 900;
  padding: 2px 20px;
  border-radius: 9999px;
  margin-bottom: 30px;
  letter-spacing: 0.06em;
}
@media (max-width: 768px) {
  .reasons__item-label {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
.reasons__item-title {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  z-index: 2;
  line-height: 1;
}
@media (max-width: 768px) {
  .reasons__item-title {
    text-align: center;
    font-size: 28px;
    margin: 0 auto 20px;
  }
}
.reasons__item-title::before {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 7px;
  background-color: #F5FF00;
  opacity: 0.34;
}
.reasons__item-text {
  line-height: 2;
  font-weight: 700;
}
@media (max-width: 768px) {
  .reasons__item-text {
    font-size: 16px;
  }
}

.testimonials {
  padding: 120px 0;
  overflow: hidden;
}
@media (max-width: 768px) {
  .testimonials {
    padding: 40px 0;
  }
}
.testimonials__slider-wrap {
  position: relative;
  margin-bottom: 40px;
  overflow: visible;
}
.testimonials__slider-wrap .swiper-pagination {
  display: none;
}
.testimonials__slider-wrap .swiper-slide-active {
  transform: scale(1.1) !important;
  /* スライドの大きさ調整 */
}
@media (max-width: 768px) {
  .testimonials__slider-wrap .swiper-slide-active {
    transform: none !important;
  }
}
.testimonials__slider {
  display: flex;
  gap: 40px;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  will-change: transform;
}
.testimonials__slide {
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
  padding: 20px;
  box-shadow: 10px 10px 10px #F0F0F0;
}
@media (max-width: 768px) {
  .testimonials__slide {
    flex: 0 0 100%;
  }
}
.testimonials__slide-image-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.testimonials__slide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonials__slide-tag {
  position: absolute;
  left: 0;
  top: 0;
  display: inline-block;
  background-color: #082290;
  color: #fff;
  padding: 2px 12px;
  font-size: 13px;
}
.testimonials__slide-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10px;
}
.testimonials__slide-meta {
  color: #EE8C2C;
  margin-bottom: 10px;
}
.testimonials__slide-text {
  line-height: 1.5;
  font-size: 14px;
}
.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonials__nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #EE8C2C;
  color: #EE8C2C;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.testimonials__nav-btn:hover {
  background-color: #EE8C2C;
  color: #fff;
}

.area {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .area {
    padding: 40px 0;
  }
}
.area__map {
  width: 100%;
}
.area__map-wrap {
  width: 65%;
}
@media (max-width: 768px) {
  .area__map-wrap {
    width: 100%;
  }
}
.area__content {
  width: 35%;
}
@media (max-width: 768px) {
  .area__content {
    width: 100%;
  }
}
.area__box {
  display: flex;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .area__box {
    display: block;
  }
}
.area__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.area__list-item {
  background-color: #FFFFFF;
  border: 1px solid #E8D8C4;
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .area__list-item {
    padding: 8px 12px;
    font-size: 12px;
  }
}
.area__note {
  font-size: 44px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 1024px) {
  .area__note {
    font-size: 34px;
  }
}
@media (max-width: 768px) {
  .area__note {
    font-size: 28px;
  }
}

.service {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .service {
    padding: 40px 0;
  }
}
.service__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .service__cards {
    grid-template-columns: 1fr;
  }
}
.service__card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  background-color: #FFFFFF;
  padding: 40px;
}
@media (max-width: 768px) {
  .service__card {
    padding: 20px;
  }
}
.service__card-header {
  padding: 10px 24px;
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background-color: #082290;
}
@media (max-width: 1024px) {
  .service__card-header {
    font-size: 18px;
    padding: 10px 10px;
  }
}
.service__card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 0;
  min-height: 200px;
  background-color: #FFFFFF;
  text-align: center;
}
@media (max-width: 768px) {
  .service__card-body {
    min-height: auto;
  }
}
.service__card-label {
  font-size: 50px;
  font-weight: 900;
  color: #EE8C2C;
  margin-bottom: 4px;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .service__card-label {
    font-size: 22px;
  }
}
.service__card-price {
  font-size: 70px;
  font-weight: 900;
  color: #EE8C2C;
  line-height: 1.2;
  margin-bottom: 6px;
}
.service__card-price small {
  font-size: 30px;
}
@media (max-width: 768px) {
  .service__card-price small {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .service__card-price {
    font-size: 40px;
  }
}
.service__card-text {
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}
@media (max-width: 768px) {
  .service__card-text {
    font-size: 14px;
  }
}

.flow {
  padding: 120px 0 80px;
}
@media (max-width: 768px) {
  .flow {
    padding: 40px 0;
  }
}
.flow__steps {
  display: flex;
  flex-wrap: wrap;
  margin-left: -40px;
}
@media (max-width: 768px) {
  .flow__steps {
    margin-left: -10px;
  }
}
.flow__step {
  width: calc((100% - 160px) / 4);
  position: relative;
  margin-left: 40px;
  margin-bottom: 80px;
}
@media (max-width: 768px) {
  .flow__step {
    width: calc((100% - 20px) / 2);
    margin-left: 10px;
    margin-bottom: 20px;
  }
}
.flow__step-image-wrap {
  aspect-ratio: 4/3;
}
.flow__step-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.flow__step-number {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #082290;
  font-size: 17px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border: 1px solid #082290;
  background-color: #fff;
}
@media (max-width: 768px) {
  .flow__step-number {
    top: -10px;
    left: -10px;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}
.flow__step-body {
  padding: 16px 0;
}
.flow__step-title {
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .flow__step-title {
    font-size: 16px;
  }
}
.flow__step-text {
  font-size: 14px;
  line-height: 1.5;
}

.faq {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .faq {
    padding: 40px 0;
  }
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq__item {
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  background-color: #FFFFFF;
}
@media (max-width: 768px) {
  .faq__item {
    padding: 10px;
    border-radius: 8px;
  }
}
.faq__item.faq__item--open .faq__question-icon::after {
  opacity: 0;
}
.faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 0 0;
  text-align: left;
  font-size: 18px;
  font-weight: 7000;
  cursor: pointer;
}
@media (max-width: 768px) {
  .faq__question {
    padding: 0 0 10px;
    font-size: 16px;
  }
}
.faq__question-q {
  width: 28px;
  height: 28px;
  color: #082290;
  font-size: 30px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .faq__question-q {
    font-size: 20px;
  }
}
.faq__question-text {
  flex: 1;
  font-size: 20px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .faq__question-text {
    font-size: 16px;
  }
}
.faq__question-icon {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #082290;
  transition: transform 0.25s ease, background-color 0.25s ease;
}
@media (max-width: 768px) {
  .faq__question-icon {
    width: 30px;
    height: 30px;
  }
}
.faq__question-icon::after, .faq__question-icon::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 0;
  transform: translate(-50%, -50%);
  border-top: 1px solid #fff;
  z-index: 2;
}
.faq__question-icon::after {
  transform: rotate(90deg);
  left: 25%;
}
@media (max-width: 768px) {
  .faq__question-icon::after {
    left: 15%;
  }
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px;
  padding: 0 20px;
}
@media (max-width: 768px) {
  .faq__answer {
    padding: 0 10px;
  }
}
.faq__item--open .faq__answer {
  max-height: 600px;
  padding: 20px;
}
@media (max-width: 768px) {
  .faq__item--open .faq__answer {
    padding-left: 20px;
  }
}

.about {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .about {
    padding: 40px 0;
  }
}
.about__content1 {
  display: flex;
}
@media (max-width: 1024px) {
  .about__content1 {
    display: block;
  }
}
.about__photo1 {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (max-width: 1024px) {
  .about__photo1 {
    width: 100%;
    margin-bottom: 40px;
  }
}
.about__photo {
  border-radius: 8px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.about__photo--main {
  aspect-ratio: 1/1;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .about__photo--main {
    width: 60%;
    margin: 0 auto 20px;
  }
}
.about__photo--sub {
  aspect-ratio: 4/3;
}
@media (max-width: 1024px) {
  .about__photo--sub {
    flex: 1;
  }
}
@media (max-width: 480px) {
  .about__photo--sub {
    width: 100%;
  }
}
.about__profile {
  width: calc(60% - 40px);
  margin-left: 40px;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .about__profile {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .about__profile {
    padding: 20px;
  }
}
.about__profile-wrapper {
  position: relative;
}
.about__profile-heading {
  position: absolute;
  top: -20px;
  right: 10px;
  display: inline-block;
  font-size: 20px;
  font-weight: 700;
  color: #082290;
}
.about__profile-name {
  font-size: 64px;
  font-weight: 900;
  margin-bottom: 40px;
  line-height: 1;
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .about__profile-name {
    font-size: 40px;
  }
}
@media (max-width: 768px) {
  .about__profile-name {
    font-size: 30px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
}
.about__profile-title1 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
  line-height: 1;
}
@media (max-width: 768px) {
  .about__profile-title1 {
    font-size: 14px;
  }
}
.about__profile-title2 {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
}
@media (max-width: 768px) {
  .about__profile-title2 {
    font-size: 14px;
  }
}
.about__profile-title2 strong {
  font-size: 28px;
}
@media (max-width: 768px) {
  .about__profile-title2 strong {
    font-size: 18px;
  }
}
.about__profile-lead {
  font-size: 0.9375rem;
  line-height: 1.95;
  color: #333333;
  margin-bottom: 24px;
}
@media (max-width: 768px) {
  .about__profile-lead {
    font-size: 14px;
  }
}
.about__profile-list {
  padding: 20px;
  background-color: rgba(240, 240, 240, 0.3647058824);
  border-radius: 20px;
}
.about__profile-list li {
  font-size: 14px;
}
.about__content2 {
  display: flex;
}
@media (max-width: 1024px) {
  .about__content2 {
    display: block;
  }
}
.about__photos {
  width: 40%;
}
@media (max-width: 1024px) {
  .about__photos {
    width: 100%;
    margin-bottom: 40px;
  }
}
.about__table-wrapper {
  padding: 40px;
  background-color: #FFFFFF;
  margin-left: 40px;
  width: calc(60% - 40px);
  border-radius: 8px;
}
@media (max-width: 1024px) {
  .about__table-wrapper {
    width: 100%;
    margin-left: 0;
  }
}
@media (max-width: 768px) {
  .about__table-wrapper {
    padding: 20px;
  }
}
.about__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.about__table tr {
  display: flex;
  justify-content: space-between;
}
.about__table th,
.about__table td {
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
@media (max-width: 768px) {
  .about__table th,
  .about__table td {
    font-size: 14px;
  }
}
.about__table th {
  width: 30%;
  font-weight: 700;
  border-bottom: 1px solid #333;
}
.about__table td {
  width: 65%;
  border-bottom: 1px solid #999;
}

.contact {
  padding: 120px 0;
}
@media (max-width: 768px) {
  .contact {
    padding: 40px 0;
  }
}
.contact__note {
  font-size: 0.875rem;
  color: #333333;
  margin-bottom: 40x;
  line-height: 1.85;
}
.contact__form {
  padding: 60px;
  background-color: #FFFFFF;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .contact__form {
    padding: 20px;
    border-radius: 10px;
  }
}
.contact__form-group {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .contact__form-group {
    margin-bottom: 20px;
  }
}
.contact__form-label {
  display: block;
  font-weight: 700;
  margin-bottom: 7px;
}
@media (max-width: 768px) {
  .contact__form-label {
    font-size: 14px;
  }
}
.contact__form-required {
  display: inline-block;
  background-color: #EE8C2C;
  color: #fff;
  font-size: 14px;
  padding: 1px 6px;
  border-radius: 2px;
  margin-left: 6px;
  vertical-align: middle;
  font-weight: 700;
}
@media (max-width: 768px) {
  .contact__form-required {
    font-size: 10px;
  }
}
.contact__form-input, .contact__form-textarea, .contact__form-select {
  width: 100%;
  padding: 12px 16px;
  border: 0.5px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
  color: #333333;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact__form-input:focus, .contact__form-textarea:focus, .contact__form-select:focus {
  border-color: #EE8C2C;
  box-shadow: 0 0 0 3px rgba(238, 140, 44, 0.15);
}
.contact__form-textarea {
  min-height: 140px;
  resize: vertical;
}
@media (max-width: 1024px) {
  .contact__form-textarea {
    min-height: 80px;
    height: 300px;
  }
}
.contact__form-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact__form-radio {
  display: none;
}
.contact__form-radio + label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border: 1.5px solid #E8D8C4;
  border-radius: 9999px;
  cursor: pointer;
  color: #333333;
  transition: border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}
@media (max-width: 768px) {
  .contact__form-radio + label {
    font-size: 13px;
    padding: 4px 10px;
  }
}
.contact__form-radio:checked + label {
  border-color: #EE8C2C;
  background-color: #EE8C2C;
  color: #fff;
}
.contact__form-submit {
  display: block;
  width: 100%;
  margin: 0 auto;
  max-width: 440px;
  padding: 18px;
  background-color: #EE8C2C;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(238, 140, 44, 0.35);
  transition: background-color 0.25s ease, transform 0.25s ease;
  outline: none;
  border: none;
}
.contact__form-submit:hover {
  background-color: #C46728;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .contact__form-submit {
    font-size: 16px;
  }
}

.footer {
  padding: 80px 40px 40px;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 20px 20px;
  }
}
.footer__inner {
  padding: 80px;
  background-color: #FFFFFF;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .footer__inner {
    padding: 40px !important;
    border-radius: 10px;
  }
}
.footer__logo {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .footer__logo {
    font-size: 20px;
  }
}
.footer__link {
  text-align: center;
  font-size: 14px;
  text-decoration: underline;
  font-weight: bold;
}
.footer__info {
  text-align: center;
  padding: 40px 40px 0;
  font-size: 14px;
  line-height: 1.9;
}
.footer__license {
  padding-top: 30px;
}
.footer__copyright {
  font-size: 13px;
  padding-top: 40px;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 10px;
  }
}

.fixed-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: 64px;
  box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .fixed-bar {
    display: block;
  }
}
.fixed-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr 2fr;
  height: 100%;
  gap: 2px;
}
.fixed-bar__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 4px 8px;
  font-weight: 700;
  color: #fff;
  transition: opacity 0.25s ease;
  text-align: center;
}
.fixed-bar__btn:hover {
  opacity: 0.85;
}
.fixed-bar__btn strong {
  display: block;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.3;
  text-overflow: 2px 2px 2px #333;
}
.fixed-bar__btn--line {
  background-color: #06C755;
}
.fixed-bar__btn--inquiry {
  background-color: #EE8C2C;
}
.fixed-bar__btn--tel {
  background-color: #082290;
  font-size: 10px;
  line-height: 1.2;
}
.fixed-bar__btn-label {
  font-size: 0.625rem;
}
.fixed-bar__btn-tel-number {
  font-size: 1.0625rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.totop {
  position: fixed;
  right: 24px;
  bottom: -60px;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.5s ease, bottom 0.5s ease;
}
.totop a {
  display: block;
  text-decoration: none;
}
.totop.is-active {
  opacity: 1;
  bottom: 60px;
}
@media (max-width: 1024px) {
  .totop.is-active {
    bottom: 80px;
  }
}

.totop__circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #082290;
  border: 2px solid #082290;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
@media (max-width: 1024px) {
  .totop__circle {
    width: 40px;
    height: 40px;
  }
}
.totop a:hover .totop__circle {
  transform: translateY(2px);
}

.totop__arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  color: #fff;
  line-height: 1;
  transition: color 0.2s ease;
  pointer-events: none;
}

.js-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.js-animate.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  body {
    padding-bottom: 64px;
  }
  html {
    scroll-padding-top: calc(60px + 8px);
  }
  .hero {
    min-height: 460px;
  }
  .content-width {
    padding: 0 16px;
  }
}/*# sourceMappingURL=style-broker.css.map */