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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #1A1A1A;
  line-height: 1.6;
  padding-top: 81px;
}
@media (max-width: 1024px) {
  body {
    padding-top: 105px;
  }
}
@media (max-width: 767px) {
  body {
    padding-top: 75px;
  }
}

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

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow {
  max-width: 1000px;
}

.br-sp {
  display: none;
}
@media (max-width: 767px) {
  .br-sp {
    display: inline;
  }
}

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

.section {
  padding: 100px 0;
}
@media (max-width: 1024px) {
  .section {
    padding: 80px 0;
  }
}
@media (max-width: 767px) {
  .section {
    padding: 60px 0;
  }
}
.section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section__header {
  text-align: center;
  margin-bottom: 60px;
}
@media (max-width: 1024px) {
  .section__header {
    margin-bottom: 40px;
  }
}

.section-title {
  width: 588px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 44px;
  color: #1A1A1A;
  position: relative;
  text-align: center;
}
@media (max-width: 767px) {
  .section-title {
    width: 100%;
    font-size: 24px;
    line-height: 29px;
    padding: 0 0 0 15px;
    text-align: left;
  }
}
.section-title::before, .section-title::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 7.71px;
  height: 50px;
  background: #D0A900;
  top: 50%;
  transform: translateY(-50%);
}
.section-title::before {
  left: 0;
}
.section-title::after {
  right: 0;
}
@media (max-width: 767px) {
  .section-title::after {
    display: none;
  }
}
.section-title .highlight {
  color: #D0A900;
}
.section-title .number-large {
  font-family: "Noto Sans", sans-serif;
  font-size: 64px;
  line-height: 1;
  color: #D0A900;
  padding: 0 4px;
}
@media (max-width: 767px) {
  .section-title .number-large {
    font-size: 50px;
    line-height: 68px;
  }
}
.section-title .number-sub {
  color: #D0A900;
  padding: 0 4px;
}

.btn {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  position: relative;
  padding-right: 40px;
}
.btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 6px;
  background-image: url("../images/arrow-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 10;
}
.btn:hover {
  opacity: 0.8;
}
.btn--primary {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 15px 30px;
}
.btn--secondary {
  background: #FFFFFF;
  color: #1A1A1A;
  border: 1px solid #1A1A1A;
  padding: 15px 30px;
}
.btn--cta {
  width: 240px;
  height: 56px;
  line-height: 56px;
  background: linear-gradient(90deg, #1A1A1A 0%, #1A1A1A 50%, #FFFFFF 95%, #D0A900 100%);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  color: #FFFFFF;
}

.card--dark {
  background: #1A1A1A;
  color: #FFFFFF;
  padding: 30px 25px;
}
.card--light {
  background: #FFFFFF;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.25);
  padding: 30px;
}

.table {
  width: 100%;
  border-collapse: collapse;
}
.table tr {
  border-bottom: 1px solid #D9D9D9;
}
.table th {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  text-align: left;
  padding: 25px 20px;
  vertical-align: top;
  color: #1A1A1A;
}
@media (max-width: 1024px) {
  .table th {
    width: 150px;
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .table th {
    display: block;
    width: 100%;
    padding: 15px 10px 5px;
  }
}
.table td {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  padding: 25px 20px;
  color: #1A1A1A;
}
@media (max-width: 1024px) {
  .table td {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .table td {
    display: block;
    padding: 5px 10px 15px;
  }
}

.underline-gold {
  border-bottom: 2px solid #D0A900;
}

.border-gold {
  border: 1px solid #D0A900;
}

.text-gold {
  color: #D0A900;
}

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

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

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  background: #FFFFFF;
  padding: 3px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
@media (max-width: 1024px) {
  .header {
    padding: 15px 0;
  }
}
@media (max-width: 767px) {
  .header {
    padding: 10px 0;
  }
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) {
  .header__inner {
    justify-content: center;
    position: relative;
  }
}
.header__logo a {
  display: block;
}
.header__logo img {
  width: 350px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  .header__logo img {
    width: 189px;
    height: auto;
  }
}
@media (max-width: 1024px) {
  .header__nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    padding: 30px 55px 50px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  }
  .header__nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.header__nav-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1024px) {
  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
@media (max-width: 1024px) {
  .header__nav-item {
    border-bottom: 1px solid #1A1A1A;
    opacity: 0;
    transform: translateX(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
}
.header__nav-item a {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1A1A1A;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (max-width: 1024px) {
  .header__nav-item a {
    display: block;
    font-size: 16px;
    padding: 20px 35px 10px;
  }
}
.header__nav-item a:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .header__nav.active .header__nav-item {
    opacity: 1;
    transform: translateX(0);
  }
  .header__nav.active .header__nav-item:nth-child(1) {
    transition-delay: 0.05s;
  }
  .header__nav.active .header__nav-item:nth-child(2) {
    transition-delay: 0.1s;
  }
  .header__nav.active .header__nav-item:nth-child(3) {
    transition-delay: 0.15s;
  }
  .header__nav.active .header__nav-item:nth-child(4) {
    transition-delay: 0.2s;
  }
  .header__nav.active .header__nav-item:nth-child(5) {
    transition-delay: 0.25s;
  }
  .header__nav.active .header__nav-item:nth-child(6) {
    transition-delay: 0.3s;
  }
}
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 1024px) {
  .header__hamburger {
    display: flex;
    background: #1A1A1A;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.header__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1A1A1A;
  transition: all 0.3s ease;
}
@media (max-width: 1024px) {
  .header__hamburger span {
    background: #FFFFFF;
  }
}
@media (max-width: 1024px) {
  .header__hamburger.active span {
    position: absolute;
    left: 50%;
    width: 20px;
  }
  .header__hamburger.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .header__hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.header__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.6);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.header__overlay.active {
  opacity: 1;
  visibility: visible;
}

.hero {
  background: #fff url("../images/hero-stripe-bg.png") no-repeat center center/cover;
  padding-top: 100px;
}
@media (max-width: 1024px) {
  .hero {
    padding-top: 50px;
  }
}
@media (max-width: 767px) {
  .hero {
    padding-top: 70px;
    background-image: url("../images/hero-stripe-bg-sp.png");
  }
}
.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero__header {
  text-align: center;
  margin-bottom: 80px;
}
@media (max-width: 1024px) {
  .hero__header {
    width: 91.5%;
    margin: 0 auto 54px;
  }
}
.hero__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 58px;
  color: #1A1A1A;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .hero__title {
    font-size: 40px;
    line-height: 48px;
    margin-bottom: 50px;
  }
}
.hero__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 43px;
  color: #1A1A1A;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .hero__subtitle {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .hero__subtitle {
    font-size: 30px;
    line-height: 36px;
    margin-bottom: 50px;
  }
}
.hero__subtitle .highlight {
  font-size: 48px;
  color: #D0A900;
}
@media (max-width: 1024px) {
  .hero__subtitle .highlight {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .hero__subtitle .highlight {
    font-size: 40px;
    line-height: 48px;
  }
}
.hero__tagline {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 29px;
  color: #1A1A1A;
}
@media (max-width: 1024px) {
  .hero__tagline {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hero__tagline {
    font-size: 18px;
    line-height: 22px;
  }
}
.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 40px;
}
@media (max-width: 1024px) {
  .hero__content {
    flex-direction: column;
    gap: 50px;
    text-align: center;
    margin-bottom: 50px;
    width: 91.5%;
  }
}
.hero__buttons {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .hero__buttons {
    gap: 0;
    width: 100%;
    justify-content: space-between;
  }
}
.hero__buttons .btn {
  width: 180px;
  height: 48px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 48px;
  text-align: left;
  text-decoration: none;
  padding: 0 10px;
  border-radius: 4px;
  transition: all 0.3s ease;
  background: #1A1A1A;
  color: #FFFFFF;
}
.hero__buttons .btn:hover {
  background: #333;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .hero__buttons .btn {
    width: 47.8%;
    text-align: center;
  }
  .hero__buttons .btn::after {
    display: none;
  }
}
.hero__description {
  max-width: 430px;
  flex: 1;
}
@media (max-width: 1024px) {
  .hero__description {
    max-width: 100%;
  }
}
.hero__catch {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1A1A1A;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .hero__catch {
    text-align: left;
    margin-bottom: 42px;
  }
}
.hero__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 21px;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .hero__text {
    text-align: left;
  }
}
.hero__text .highlight-link {
  color: #D0A900;
  text-decoration: none;
  border-bottom: 1px solid #D0A900;
  transition: opacity 0.3s ease;
}
.hero__text .highlight-link:hover {
  opacity: 0.7;
}
.hero__image {
  width: 100%;
  margin-bottom: -5px;
}
.hero__image img {
  width: 100%;
  height: auto;
  display: block;
}

.problems {
  background: url("../images/problems-bg.png") no-repeat center center/cover;
  padding: 100px 0 0;
}
@media (max-width: 767px) {
  .problems {
    padding-top: 70px;
    background-image: url("../images/problems-bg-sp.png");
  }
}
.problems__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .problems__inner {
    width: 91.5%;
  }
}
.problems__header {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .problems__header {
    margin-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .problems__header {
    margin-bottom: 30px;
  }
}
.problems .char-with-dot {
  position: relative;
  display: inline-block;
}
.problems .char-with-dot .dot-above {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8.39px;
  height: 8.39px;
  background: #D0A900;
  border-radius: 50%;
}
@media (max-width: 767px) {
  .problems .char-with-dot .dot-above {
    top: -10px;
  }
}
.problems__cards {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .problems__cards {
    gap: 0;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .problems__cards {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
  }
}
.problems__card {
  background: #FFFFFF;
  padding: 15px 25px;
  text-align: center;
  max-width: 283px;
}
@media (max-width: 1024px) {
  .problems__card {
    width: 32%;
    max-width: 32%;
  }
}
@media (max-width: 767px) {
  .problems__card {
    width: 100%;
    max-width: 100%;
    padding: 30px 55px 60px;
    box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.25);
  }
}
.problems__card-icon {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .problems__card-icon {
    margin-bottom: 30px;
  }
}
.problems__card-icon img {
  width: 140px;
  height: auto;
  margin: 0 auto;
}
.problems__card-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 23px;
  color: #1A1A1A;
  text-align: left;
}
.problems__card-text .underline {
  border-bottom: 2px solid #D0A900;
}
.problems__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #1A1A1A;
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .problems__description {
    text-align: left;
  }
}
.problems__message {
  background: #1A1A1A;
  padding: 35px 0;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .problems__message {
    padding: 25px 8px;
  }
}
.problems__message p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}
@media (max-width: 767px) {
  .problems__message p {
    font-size: 18px;
    line-height: 22px;
    text-align: left;
  }
}

.services {
  background: url("../images/services-bg.png") no-repeat center center/cover;
  padding: 166px 0 0;
}
@media (max-width: 1024px) {
  .services {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .services {
    padding-top: 70px;
    background-image: url("../images/services-bg-sp.png");
  }
}
.services__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .services__inner {
    width: 91.5%;
  }
}
@media (max-width: 767px) {
  .services__inner {
    width: 100%;
  }
}
.services__header {
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .services__header {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .services__header {
    width: 91.5%;
    margin: 0 auto 30px;
  }
}
.services__subtitle {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  color: #1A1A1A;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .services__subtitle {
    font-size: 18px;
    line-height: 30px;
    text-align: left;
  }
}
.services__scroll-hint {
  display: none;
}
@media (max-width: 767px) {
  .services__scroll-hint {
    display: block;
    text-align: right;
    width: 91.5%;
    margin: 0 auto 30px;
  }
}
.services__scroll-hint img {
  width: 163px;
  height: 32px;
}
.services__cards {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .services__cards {
    flex-wrap: wrap;
    gap: 24px 0;
  }
}
@media (max-width: 767px) {
  .services__cards {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 24px;
  }
}

.service-card {
  width: 23.5%;
  background: #1A1A1A;
  padding: 30px 15px;
}
@media (max-width: 1024px) {
  .service-card {
    width: 48%;
  }
}
@media (max-width: 767px) {
  .service-card {
    width: 282px;
    flex-shrink: 0;
    padding: 30px 23px;
    scroll-snap-align: start;
    opacity: 1 !important;
    transform: none !important;
  }
}
.service-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 21px;
  line-height: 25px;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 10px;
}
.service-card__summary {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .service-card__summary {
    margin-bottom: 15px;
  }
}
.service-card__number {
  width: 30px;
  height: 30px;
  background: #D0A900;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans", sans-serif;
  font-weight: 900;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  flex-shrink: 0;
}
.service-card__summary-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #FFFFFF;
  margin: 0;
}
.service-card__catch {
  border: 1px solid #D0A900;
  padding: 7px 0;
  margin-bottom: 20px;
}
.service-card__catch p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}
.service-card__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: #FFFFFF;
  margin: 0;
}

.reasons {
  background: url("../images/reasons-bg.png") no-repeat center center/cover;
  padding: 200px 0 0;
}
@media (max-width: 1024px) {
  .reasons {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .reasons {
    padding-top: 70px;
    background-image: url("../images/reasons-bg-sp.png");
  }
}
.reasons__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .reasons__inner {
    width: 91.5%;
  }
}
@media (max-width: 767px) {
  .reasons__inner {
    width: 100%;
  }
}
.reasons__header {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .reasons__header {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .reasons__header {
    width: 91.5%;
    margin: 0 auto 30px;
  }
}
.reasons__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #1A1A1A;
  max-width: 840px;
  margin: 50px auto 0;
}
@media (max-width: 767px) {
  .reasons__lead {
    text-align: left;
  }
}
.reasons__lead .highlight {
  color: #D0A900;
}
.reasons__scroll-hint {
  display: none;
}
@media (max-width: 767px) {
  .reasons__scroll-hint {
    display: block;
    text-align: right;
    width: 91.5%;
    margin: 0 auto 30px;
  }
}
.reasons__scroll-hint img {
  width: 163px;
  height: 32px;
}
.reasons__cards {
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .reasons__cards {
    flex-wrap: wrap;
    gap: 24px 0;
  }
}
@media (max-width: 767px) {
  .reasons__cards {
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 24px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
}

.reason-card {
  width: 31.55%;
  background: #1A1A1A;
  padding: 30px 15px;
}
@media (max-width: 1024px) {
  .reason-card {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .reason-card {
    width: 283px;
    flex-shrink: 0;
    scroll-snap-align: start;
    opacity: 1 !important;
    transform: none !important;
  }
}
.reason-card__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
  color: #FFFFFF;
  border: 1px solid #D0A900;
  padding: 30px 0;
  text-align: center;
  margin-bottom: 20px;
}
.reason-card__summary {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 23px;
  color: #FFFFFF;
  margin-bottom: 20px;
}
.reason-card__item {
  margin-bottom: 20px;
}
.reason-card__item:last-child {
  margin-bottom: 0;
}
.reason-card__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 21px;
  color: #D0A900;
  margin-bottom: 5px;
}
.reason-card__item-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  color: #FFFFFF;
  margin: 0;
}
.reason-card__item-list {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 21px;
  color: #FFFFFF;
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.reason-card__item-list li {
  margin-bottom: 8px;
}
.reason-card__item-list li:last-child {
  margin-bottom: 0;
}
.reason-card__item-list .highlight {
  color: #D0A900;
}

.testimonials {
  background: url("../images/testimonials-bg.png") no-repeat center center/cover;
  padding: 200px 0 0;
}
@media (max-width: 1024px) {
  .testimonials {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .testimonials {
    padding-top: 70px;
    background-image: url("../images/testimonials-bg-sp.png");
  }
}
.testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .testimonials__inner {
    width: 91.5%;
  }
}
.testimonials__header {
  text-align: center;
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .testimonials__header {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .testimonials__header {
    margin-bottom: 30px;
  }
}
.testimonials__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  text-align: center;
  color: #1A1A1A;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .testimonials__lead {
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    margin-top: 30px;
  }
}
.testimonials__cards {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .testimonials__cards {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
}

.testimonial-card {
  background: #FFFFFF;
  box-shadow: 4px 4px 5px rgba(0, 0, 0, 0.25);
  padding: 50px 17px;
  width: 32%;
}
@media (max-width: 1024px) {
  .testimonial-card {
    width: 100%;
    padding: 50px 30px;
    opacity: 1 !important;
    transform: none !important;
  }
}
.testimonial-card__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 30px;
}
.testimonial-card__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}
.testimonial-card__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.testimonial-card__company {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 23px;
  color: #1A1A1A;
  margin: 0;
}
.testimonial-card__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 23px;
  color: #1A1A1A;
  margin: 0;
}

.ceo {
  background: url("../images/ceo-bg.png") no-repeat center center/cover;
  padding: 200px 0 0;
}
@media (max-width: 1024px) {
  .ceo {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .ceo {
    padding-top: 70px;
    background-image: url("../images/ceo-bg-sp.png");
  }
}
.ceo__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .ceo__inner {
    width: 91.5%;
  }
}
.ceo__header {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .ceo__header {
    margin-bottom: 50px;
  }
}
.ceo__main {
  display: flex;
  align-items: center;
  gap: 5%;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .ceo__main {
    flex-direction: column;
    align-items: center;
    flex-direction: column-reverse;
    gap: 50px;
  }
}
.ceo__photo {
  flex-shrink: 0;
}
.ceo__photo img {
  width: 243px;
  height: 365px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .ceo__photo img {
    width: 100%;
    height: auto;
  }
}
.ceo__message {
  flex: 1;
}
@media (max-width: 767px) {
  .ceo__message {
    width: 100%;
  }
}
.ceo__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #1A1A1A;
  margin-bottom: 20px;
}
.ceo__text:last-child {
  margin-bottom: 0;
}
.ceo__signature {
  text-align: right;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .ceo__signature {
    margin-top: 20px;
  }
}
.ceo__name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #1A1A1A;
  margin-bottom: 5px;
}
.ceo__position {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
  color: #1A1A1A;
  margin: 0;
}
.ceo__career {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .ceo__career {
    margin-top: 50px;
  }
}
.ceo__career-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.ceo__career-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ceo__career-list li {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #1A1A1A;
  margin-bottom: 12px;
}
.ceo__career-list li:last-child {
  margin-bottom: 0;
}

.area {
  background: url("../images/area-bg.png") no-repeat center center/cover;
  padding: 200px 0 0;
}
@media (max-width: 1024px) {
  .area {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .area {
    padding-top: 70px;
    background-image: url("../images/area-bg-sp.png");
  }
}
.area__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .area__inner {
    width: 91.5%;
  }
}
@media (max-width: 767px) {
  .area__inner {
    width: 100%;
  }
}
.area__header {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .area__header {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .area__header {
    width: 91.5%;
    margin: 0 auto 40px;
  }
}
.area__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2%;
}
@media (max-width: 1024px) {
  .area__content {
    flex-direction: column;
    gap: 30px;
  }
}
.area__text {
  flex: 1;
}
@media (max-width: 767px) {
  .area__text {
    width: 91.5%;
  }
}
.area__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #1A1A1A;
  margin-bottom: 20px;
}
.area__text p:last-child {
  margin-bottom: 0;
}
.area__photo {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .area__photo {
    width: 100%;
  }
}
.area__photo img {
  width: 486px;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .area__photo img {
    width: 100%;
    height: auto;
  }
}

.blog {
  background: url("../images/blog-bg.png") no-repeat center center/cover;
}
.home .blog, .front-page .blog {
  padding: 200px 0 0;
}
@media (max-width: 1024px) {
  .blog {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .blog {
    padding-top: 70px;
    background-image: url("../images/blog-bg-sp.png");
  }
}
.blog__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .blog__inner {
    width: 91.5%;
  }
}
.blog__header {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .blog__header {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .blog__header {
    margin-bottom: 30px;
  }
}
.blog__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .blog__list {
    gap: 30px;
    margin-bottom: 30px;
  }
}
.blog__item {
  display: flex;
  gap: 2%;
  align-items: center;
}
@media (max-width: 767px) {
  .blog__item {
    gap: 15px;
    align-items: flex-start;
  }
}
.blog__item-image {
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .blog__item-image {
    width: 48%;
  }
}
.blog__item-image img {
  width: 180px;
  height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .blog__item-image img {
    width: 100%;
    height: auto;
  }
}
.blog__item-content {
  flex: 1;
}
.blog__item-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1A1A1A;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .blog__item-title {
    font-size: 15px;
    line-height: 18px;
  }
}
.blog__item-date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: #1A1A1A;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .blog__item-date {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 10px;
  }
}
.blog__item-excerpt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: #1A1A1A;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .blog__item-excerpt {
    font-size: 12px;
    line-height: 14px;
    margin-bottom: 5px;
  }
}
.blog__item-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 16px;
  color: #1A1A1A;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .blog__item-link {
    display: block;
    text-align: right;
  }
}
.blog__item-link span {
  font-size: 13px;
  color: #D0A900;
}
.blog__item-link:hover {
  opacity: 0.7;
}
.blog__more {
  text-align: center;
}
.blog__more-button {
  display: inline-block;
  background: #1A1A1A;
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  padding: 10px 45px 10px 30px;
  text-decoration: none;
  transition: opacity 0.3s;
  position: relative;
}
.blog__more-button::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 6px;
  background-image: url("../images/arrow-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 767px) {
  .blog__more-button {
    font-size: 16px;
    line-height: 26px;
    padding: 11px 45px 11px 30px;
  }
}
.blog__more-button:hover {
  opacity: 0.8;
}

.company-info {
  background: url("../images/company-bg.png") no-repeat center center/cover;
  padding: 200px 0 100px;
}
@media (max-width: 1024px) {
  .company-info {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .company-info {
    padding: 70px 0;
    background-image: url("../images/company-bg-sp.png");
  }
}
.company-info__inner {
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .company-info__inner {
    width: 91.5%;
  }
}
.company-info__header {
  margin-bottom: 100px;
}
@media (max-width: 1024px) {
  .company-info__header {
    margin-bottom: 30px;
  }
}
.company-info__table {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .company-info__table {
    display: block;
  }
}
.company-info__table tr {
  border-bottom: 1px solid #D9D9D9;
}
@media (max-width: 767px) {
  .company-info__table tr {
    display: block;
  }
  .company-info__table tr:nth-child(-n+2) {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .company-info__table tr:nth-child(-n+2) th {
    width: 50%;
    flex-shrink: 0;
    padding: 15px 10px;
  }
  .company-info__table tr:nth-child(-n+2) td {
    width: 50%;
    flex-grow: 0;
    text-align: left;
    padding: 15px 10px;
  }
}
.company-info__table th {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  color: #1A1A1A;
  text-align: left;
  padding: 30px 20px;
  width: 200px;
  vertical-align: top;
}
@media (max-width: 767px) {
  .company-info__table th {
    display: block;
    width: 100%;
    padding: 15px 10px 8px;
  }
}
.company-info__table td {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #1A1A1A;
  padding: 30px 20px;
}
@media (max-width: 1024px) {
  .company-info__table td {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .company-info__table td {
    display: block;
    padding: 8px 10px 15px;
  }
}
.company-info__table td ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.company-info__table td ul li {
  margin-bottom: 8px;
}
.company-info__table td ul li:last-child {
  margin-bottom: 0;
}

.contact-cta {
  background: #1A1A1A;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .contact-cta {
    padding: 30px;
  }
}
.contact-cta__outer {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.contact-cta__inner {
  background: #FFFFFF;
  padding: 100px 35px;
  text-align: center;
  max-width: 588px;
  width: 100%;
}
@media (max-width: 767px) {
  .contact-cta__inner {
    padding: 30px 15px;
  }
}
.contact-cta__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 38px;
  color: #D0A900;
  margin-bottom: 38px;
}
@media (max-width: 767px) {
  .contact-cta__title {
    font-size: 24px;
    line-height: 29px;
    margin-bottom: 42px;
  }
}
.contact-cta__description {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #1A1A1A;
  margin-bottom: 30px;
  text-align: left;
}
@media (max-width: 767px) {
  .contact-cta__description {
    font-size: 15px;
    line-height: 21px;
    margin-bottom: 30px;
  }
}
.contact-cta__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 26px;
  color: #1A1A1A;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .contact-cta__lead {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
.contact-cta__button {
  display: inline-block;
  width: 240px;
  height: 56px;
  background: linear-gradient(90deg, #1A1A1A 0%, #1A1A1A 50%, #FFFFFF 95%, #D0A900 100%);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 56px;
  color: #FFFFFF;
  text-decoration: none;
  text-align: center;
  margin-bottom: 30px;
  transition: opacity 0.3s;
}
@media (max-width: 767px) {
  .contact-cta__button {
    width: 100%;
    max-width: 240px;
    font-size: 16px;
    margin-bottom: 20px;
  }
}
.contact-cta__button:hover {
  opacity: 0.9;
}
.contact-cta__email {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .contact-cta__email {
    font-size: 13px;
    line-height: 16px;
  }
}

.footer {
  background: #FFFFFF;
  padding: 80px 0;
}
@media (max-width: 1024px) {
  .footer {
    padding: 70px 0;
  }
}
.footer__inner {
  max-width: 900px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .footer__inner {
    width: 91.5%;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 95px;
}
@media (max-width: 1024px) {
  .footer__content {
    flex-direction: column;
    gap: 40px;
    margin-bottom: 30px;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 1024px) {
  .footer__info {
    gap: 30px;
    align-items: center;
    width: 100%;
  }
}
.footer__logo img {
  width: 350px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .footer__logo img {
    width: 189px;
    height: auto;
  }
}
.footer__email {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 18px;
  color: #1A1A1A;
  text-align: center;
}
@media (max-width: 1024px) {
  .footer__email {
    font-size: 13px;
    line-height: 18px;
  }
}
.footer__nav {
  flex: 1;
  max-width: 282px;
}
@media (max-width: 1024px) {
  .footer__nav {
    max-width: 282px;
    width: 100%;
    margin: 0 auto;
  }
}
.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav-item {
  border-bottom: 1px solid #D9D9D9;
}
.footer__nav-item a {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 14px;
  color: #1A1A1A;
  text-decoration: none;
  padding: 10px 0;
  transition: opacity 0.3s;
}
.footer__nav-item a:hover {
  opacity: 0.7;
}
.footer__copyright {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 12px;
  color: #1A1A1A;
  text-align: center;
}

.breadcrumb {
  background: #F5F5F5;
  padding: 15px 0;
}
.breadcrumb__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: nowrap;
}
.breadcrumb__item {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #1A1A1A;
  white-space: nowrap;
}
.breadcrumb__item a {
  color: #1A1A1A;
  text-decoration: none;
  transition: opacity 0.3s;
}
.breadcrumb__item a:hover {
  opacity: 0.7;
}
.breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 10px;
  color: #1A1A1A;
}
.breadcrumb__item:last-child {
  flex: 1;
  min-width: 0;
}
.breadcrumb__item:last-child span {
  display: block;
  color: #888;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}
@media (max-width: 767px) {
  .pagination {
    gap: 10px;
    margin-top: 40px;
  }
}
.pagination__prev, .pagination__next {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #1A1A1A;
  text-decoration: none;
  padding: 10px 15px;
  border: 1px solid #D9D9D9;
  transition: all 0.3s;
}
.pagination__prev:hover, .pagination__next:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}
.pagination__prev.is-disabled, .pagination__next.is-disabled {
  color: #D9D9D9;
  pointer-events: none;
}
.pagination__list {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.pagination__item a, .pagination__item span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #1A1A1A;
  text-decoration: none;
  border: 1px solid #D9D9D9;
  transition: all 0.3s;
}
.pagination__item a:hover {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}
.pagination__item.is-active span {
  background: #1A1A1A;
  color: #FFFFFF;
  border-color: #1A1A1A;
}

.blog-page {
  padding: 60px 0 100px;
}
@media (max-width: 767px) {
  .blog-page {
    padding: 40px 0 60px;
  }
}
.blog-page__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-page__header {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .blog-page__header {
    margin-bottom: 30px;
  }
}
.blog-page .blog__item-title a {
  color: #1A1A1A;
  text-decoration: none;
  transition: opacity 0.3s;
}
.blog-page .blog__item-title a:hover {
  opacity: 0.7;
}

.blog-detail {
  padding: 60px 0 100px;
}
@media (max-width: 767px) {
  .blog-detail {
    padding: 40px 0 60px;
  }
}
.blog-detail__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.blog-detail__header {
  margin-bottom: 40px;
  text-align: center;
}
.blog-detail__date {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #888;
  margin-bottom: 15px;
}
.blog-detail__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .blog-detail__title {
    font-size: 22px;
  }
}
.blog-detail__thumbnail {
  margin-bottom: 40px;
}
.blog-detail__thumbnail img {
  width: 100%;
  height: auto;
}
.blog-detail__content {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #1A1A1A;
}
@media (max-width: 767px) {
  .blog-detail__content {
    font-size: 15px;
  }
}
.blog-detail__content p {
  margin-bottom: 1.5em;
}
.blog-detail__content h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 2em 0 1em;
  padding-bottom: 10px;
  border-bottom: 2px solid #D0A900;
}
@media (max-width: 767px) {
  .blog-detail__content h2 {
    font-size: 20px;
  }
}
.blog-detail__content h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 1.5em 0 0.8em;
  padding-left: 15px;
  border-left: 4px solid #D0A900;
}
@media (max-width: 767px) {
  .blog-detail__content h3 {
    font-size: 18px;
  }
}
.blog-detail__content ul, .blog-detail__content ol {
  margin: 1.5em 0;
  padding-left: 1.5em;
}
.blog-detail__content ul li, .blog-detail__content ol li {
  margin-bottom: 0.5em;
}
.blog-detail__content ul {
  list-style: disc;
}
.blog-detail__content ol {
  list-style: decimal;
}
.blog-detail__content blockquote {
  margin: 1.5em 0;
  padding: 20px 25px;
  background: #F5F5F5;
  border-left: 4px solid #D0A900;
}
.blog-detail__content blockquote p {
  margin-bottom: 0;
}
.blog-detail__content img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
}
.blog-detail__content a {
  color: #D0A900;
  text-decoration: underline;
}
.blog-detail__content a:hover {
  text-decoration: none;
}
.blog-detail__nav {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #D9D9D9;
}
@media (max-width: 767px) {
  .blog-detail__nav {
    flex-direction: column;
    gap: 15px;
  }
}
.blog-detail__nav-prev, .blog-detail__nav-next {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-width: 45%;
  text-decoration: none;
  transition: opacity 0.3s;
}
.blog-detail__nav-prev:hover, .blog-detail__nav-next:hover {
  opacity: 0.7;
}
@media (max-width: 767px) {
  .blog-detail__nav-prev, .blog-detail__nav-next {
    max-width: 100%;
  }
}
.blog-detail__nav-prev {
  align-items: flex-start;
}
.blog-detail__nav-next {
  align-items: flex-end;
  margin-left: auto;
}
@media (max-width: 767px) {
  .blog-detail__nav-next {
    margin-left: 0;
  }
}
.blog-detail__nav-label {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: #888;
}
.blog-detail__nav-title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  color: #1A1A1A;
  line-height: 1.5;
}
.blog-detail__back {
  text-align: center;
  margin-top: 60px;
}

.contact-page {
  padding: 60px 0 100px;
}
@media (max-width: 767px) {
  .contact-page {
    padding: 40px 0 60px;
  }
}
.contact-page__inner {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact-page__header {
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 767px) {
  .contact-page__header {
    margin-bottom: 40px;
  }
}
.contact-page__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: #1A1A1A;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .contact-page__lead {
    font-size: 15px;
    text-align: left;
  }
}

.contact-form__group {
  margin-bottom: 30px;
}
.contact-form__label {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #1A1A1A;
  margin-bottom: 10px;
}
.contact-form__required {
  display: inline-block;
  font-size: 12px;
  color: #FFFFFF;
  background: #D0A900;
  padding: 2px 8px;
  margin-left: 10px;
  border-radius: 2px;
}
.contact-form__input, .contact-form__textarea {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  color: #1A1A1A;
  padding: 15px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  transition: border-color 0.3s;
}
.contact-form__input::-moz-placeholder, .contact-form__textarea::-moz-placeholder {
  color: #AAAAAA;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #AAAAAA;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: none;
  border-color: #D0A900;
}
.contact-form__textarea {
  resize: vertical;
  min-height: 200px;
}
.contact-form__submit {
  text-align: center;
  margin-top: 40px;
}
.contact-form__submit p {
  margin: 0;
}
.contact-form__button {
  display: inline-block;
  width: 240px;
  height: 56px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #FFFFFF;
  background: linear-gradient(90deg, #1A1A1A 0%, #1A1A1A 50%, #FFFFFF 95%, #D0A900 100%);
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.25);
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.contact-form__button:hover {
  opacity: 0.9;
}
@media (max-width: 767px) {
  .contact-form__button {
    width: 100%;
    max-width: 240px;
  }
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-response-output {
  margin: 30px 0 0 !important;
  padding: 20px !important;
  border: none !important;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb !important;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb !important;
}

.wpcf7 form.failed .wpcf7-response-output {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb !important;
}/*# sourceMappingURL=style.css.map */