@charset "UTF-8";
@font-face {
  font-family: "Meiryo-YUIME";
  src: local("Meiryo"), local("メイリオ");
}
.yuime-text {
  font-family: "Meiryo-YUIME", sans-serif;
  font-weight: 700;
}

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

html {
  font-size: 62.5%;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  html {
    font-size: 56.25%;
  }
}
@media (min-width: 1440px) {
  html {
    font-size: 68.75%;
  }
}

body {
  font-family: "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 1.6rem;
  color: #505050;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.3rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul,
ol {
  list-style: none;
}

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

button {
  background: none;
  border: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
  outline: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-weight: inherit;
  line-height: inherit;
}

:focus-visible {
  outline: 2px solid #E62327;
  outline-offset: 2px;
}

::selection {
  background: #E62327;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #F5F3F0;
}

::-webkit-scrollbar-thumb {
  background: #8C8CA0;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #636E72;
}

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

.pb140 {
  padding-bottom: 140px;
}
@media (max-width: 768px) {
  .pb140 {
    padding-bottom: 70px;
  }
}

.red {
  color: #E62327 !important;
}

.mt70 {
  margin-top: 70px !important;
}
@media (max-width: 768px) {
  .mt70 {
    margin-top: 40px !important;
  }
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 7.2rem;
  box-sizing: content-box;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.container.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.fade-in.is-inview {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.slide-up.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.slide-left.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.slide-right.is-inview {
  opacity: 1;
  transform: translateX(0);
}

.scale-up {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.scale-up.is-inview {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 768px) {
  .container {
    padding: 0 2rem;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10001;
  padding: 16px 36px;
  background-color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.header__logo {
  display: flex;
  align-items: center;
}

.header__logo-icon {
  position: relative;
}
.header__logo-icon a {
  display: block;
  position: relative;
  width: 122px;
  height: auto;
}
.header__logo-icon img {
  width: 122px;
  height: auto;
  transition: opacity 0.3s ease;
}
.header__logo-icon img.logo-default {
  position: relative;
  opacity: 1;
}
.header__logo-icon img.logo-scrolled {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.header__logo-icon.scrolled-logo .logo-default {
  opacity: 0;
}
.header__logo-icon.scrolled-logo .logo-scrolled {
  opacity: 1;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  letter-spacing: 0;
}

.header__btn {
  width: 132px;
  height: 28px;
  padding: 0;
  border-radius: 14px;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .header__btn {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .header__btn {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .header__btn {
    font-size: 10px;
  }
}
.header__btn {
  font-weight: 500;
  color: #FFFFFF;
  background: #8C8CA0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  border: 1px solid #8C8CA0;
}
.header__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #8C8CA0;
}

.header__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10000;
}
.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #8C8CA0;
  transition: all 0.3s ease;
  transform-origin: center;
}
.header__hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  .header__btn {
    display: none;
  }
  .header {
    padding: 16px 20px;
  }
}
/* フッター */
.footer {
  padding: 0;
  position: relative;
  overflow: visible;
}

.footer__container {
  display: flex;
  min-height: 500px;
}

/* 左側：グレーエリア */
.footer__left {
  flex: 0 0 60%;
  background: #8C8CA0;
  padding: 90px 60px 40px;
}

/* フォームボタン */
.footer__forms {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
  width: 87.5%;
}

.footer__form-btn {
  background: #FFFFFF;
  color: #8C8CA0;
  padding: 20px 32px 20px 20px;
  border-radius: 12px;
  letter-spacing: 0;
  font-weight: 500;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
}
.footer__form-btn::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 18px;
  background-image: url("../images/common/arr_p.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer__form-btn:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.footer__form-btn--outline {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}
.footer__form-btn--outline::after {
  background-image: url("../images/common/arr_w.svg");
}
.footer__form-btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* リンクリスト */
.footer__links {
  width: 87.5%;
  display: flex;
  gap: 24px;
  margin-bottom: 35px;
  padding-left: 15px;
}

.footer__link-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 50%;
}

.footer__link {
  color: #FFFFFF;
  font-size: 15px;
}
@media (max-width: 1024px) {
  .footer__link {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .footer__link {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .footer__link {
    font-size: 11px;
  }
}
.footer__link {
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 40px;
  letter-spacing: 0;
}
.footer__link::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 12px;
  background-image: url("../images/common/arr_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer__link:hover {
  opacity: 0.8;
}

/* 下部ボタン */
.footer__bottom-links {
  width: 87.5%;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  letter-spacing: 0;
  padding-left: 10px;
}

.footer__bottom-btn {
  width: calc(50% - 22px);
  padding: 7px 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .footer__bottom-btn {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .footer__bottom-btn {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .footer__bottom-btn {
    font-size: 10px;
  }
}
.footer__bottom-btn {
  font-weight: 500;
  line-height: 1;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0;
  text-align: center;
}
.footer__bottom-btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 12px;
  background-image: url("../images/common/arr_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer__bottom-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* 右側：赤エリア */
.footer__right {
  flex: 0 0 40%;
  background: #E62327;
  padding: 90px 60px 40px 75px;
  display: flex;
  flex-direction: column;
}

/* ロゴ */
.footer__logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 45px;
}
.footer__logo img {
  width: 182px;
  height: auto;
}
.footer__logo span {
  font-size: 36px;
}
@media (max-width: 1024px) {
  .footer__logo span {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .footer__logo span {
    font-size: 27px;
  }
}
@media (max-width: 480px) {
  .footer__logo span {
    font-size: 22px;
  }
}
.footer__logo span {
  font-weight: 700;
  color: #FFFFFF;
  font-family: "Nunito Sans", sans-serif;
}

/* 会社情報 */
.footer__company {
  margin-bottom: 20px;
}
.footer__company p {
  font-size: 14px;
}
@media (max-width: 1024px) {
  .footer__company p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .footer__company p {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .footer__company p {
    font-size: 10px;
  }
}
.footer__company p {
  line-height: 1.25;
  color: #FFFFFF;
  margin: 0 0 8px;
  letter-spacing: 0;
}

/* コーポレートサイトボタン */
.footer__corporate-btn {
  display: inline-flex;
  align-items: center;
  padding: 7px 35px 7px 15px;
  background: transparent;
  border: 1px solid #FFFFFF;
  border-radius: 50px;
  color: #FFFFFF;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .footer__corporate-btn {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .footer__corporate-btn {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .footer__corporate-btn {
    font-size: 10px;
  }
}
.footer__corporate-btn {
  font-weight: 500;
  line-height: 1;
  margin-bottom: 35px;
  width: fit-content;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0;
  text-align: left;
}
.footer__corporate-btn::after {
  content: "";
  position: absolute;
  right: 8px;
  width: 5px;
  height: 14px;
  background-image: url("../images/common/arr_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.footer__corporate-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

/* コピーライト */
.footer__copyright {
  font-size: 12px;
}
@media (max-width: 1024px) {
  .footer__copyright {
    font-size: 12px;
  }
}
@media (max-width: 768px) {
  .footer__copyright {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .footer__copyright {
    font-size: 10px;
  }
}
.footer__copyright {
  color: #fff;
  letter-spacing: 1px;
}

/* スクロールトップボタン */
.scroll-to-top {
  position: absolute;
  top: -30px;
  right: 40px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #E62327;
  border: 1px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top:hover {
  background: #CC1F22;
  transform: translateY(-5px);
}
.scroll-to-top::after {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("../images/common/arr_w_up.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.scroll-to-top svg {
  display: none;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .footer__container {
    flex-direction: column;
  }
  .footer__left {
    flex: 1;
    width: 100%;
  }
  .footer__right {
    flex: 1;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}
@media (max-width: 768px) {
  /* 左側：グレーエリア */
  .footer__left, .footer__right {
    padding: 80px 40px 40px;
  }
  /* 右側：赤エリア */
  .footer__forms, .footer__link-column {
    width: 100%;
  }
  .footer__links {
    width: 100%;
    flex-direction: column;
    gap: 30px;
  }
  .footer__bottom-links {
    width: 100%;
    flex-direction: column;
  }
  .footer__bottom-btn {
    width: 100%;
    text-align: center;
  }
  .scroll-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
  .footer__form-btn::after {
    right: 10px;
  }
}
.footer__sns {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  letter-spacing: 0;
  align-items: center;
}
.footer__sns li a {
  color: #fff;
  font-size: 85%;
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__sns li a span {
  font-size: 80%;
}
.footer__sns li a img {
  width: 45px;
  height: auto;
}

.hamburger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8C8CA0;
  z-index: 1002;
  display: block;
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.hamburger-overlay::-webkit-scrollbar {
  display: none;
}
.hamburger-overlay {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.hamburger-overlay.active {
  opacity: 1;
  visibility: visible;
}

.hamburger-overlay__container {
  margin: 0 auto;
  padding: 140px 72px 40px 72px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: none;
  position: relative;
}
@media (max-width: 768px) {
  .hamburger-overlay__container {
    padding: 17rem 40px 32px 40px;
  }
}
@media (max-width: 1024px) {
  .hamburger-overlay__container {
    padding: 140px 48px 40px 48px;
  }
}

.hamburger-overlay__nav {
  flex: 1;
  display: flex;
  gap: 96px;
  width: 60%;
  margin-left: auto;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .hamburger-overlay__nav {
    width: 100%;
    gap: 0 !important;
    display: block;
  }
}

.hamburger-overlay__nav-column {
  flex: 1;
}

.hamburger-overlay__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hamburger-overlay__nav-item {
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hamburger-overlay.active .hamburger-overlay__nav-item {
  opacity: 1;
  transform: translateY(0);
}
.hamburger-overlay.active .hamburger-overlay__nav-item:nth-child(1) {
  transition-delay: 0.1s;
}
.hamburger-overlay.active .hamburger-overlay__nav-item:nth-child(2) {
  transition-delay: 0.15s;
}
.hamburger-overlay.active .hamburger-overlay__nav-item:nth-child(3) {
  transition-delay: 0.2s;
}
.hamburger-overlay.active .hamburger-overlay__nav-item:nth-child(4) {
  transition-delay: 0.25s;
}
.hamburger-overlay.active .hamburger-overlay__nav-item:nth-child(5) {
  transition-delay: 0.3s;
}
.hamburger-overlay.active .hamburger-overlay__nav-item:nth-child(6) {
  transition-delay: 0.35s;
}
.hamburger-overlay.active .hamburger-overlay__nav-item:nth-child(7) {
  transition-delay: 0.4s;
}
.hamburger-overlay.active .hamburger-overlay__nav-item:nth-child(8) {
  transition-delay: 0.45s;
}
.hamburger-overlay.active .hamburger-overlay__nav-item:nth-child(9) {
  transition-delay: 0.5s;
}
@media (max-width: 768px) {
  .hamburger-overlay__nav-item {
    margin-bottom: 24px;
  }
}

.hamburger-overlay__nav-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #fff;
  transition: all 0.3s ease;
  text-decoration: none;
}
.hamburger-overlay__nav-link:hover {
  transform: translateX(1rem);
}
.hamburger-overlay__nav-link:hover .hamburger-overlay__nav-text-ja {
  color: #ccccd9;
}
.hamburger-overlay__nav-link:hover .hamburger-overlay__nav-text-en {
  color: #ccccd9;
}
@media (max-width: 768px) {
  .hamburger-overlay__nav-link:hover {
    transform: translateX(0.5rem);
  }
}

.hamburger-overlay__nav-text-ja {
  font-size: 20px;
}
@media (max-width: 1024px) {
  .hamburger-overlay__nav-text-ja {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .hamburger-overlay__nav-text-ja {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .hamburger-overlay__nav-text-ja {
    font-size: 15px;
  }
}
.hamburger-overlay__nav-text-ja {
  font-weight: 500;
  line-height: 1.4;
  transition: color all 0.3s ease;
}

.hamburger-overlay__nav-text-en {
  color: #fff;
  font-family: "Nunito Sans", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 65%;
}
@media (max-width: 768px) {
  .hamburger-overlay__nav-text-en {
    font-size: 11px;
  }
}

.faq-page__buttons {
  padding-top: 60px;
}
@media (max-width: 768px) {
  .faq-page__buttons {
    padding-top: 50px;
  }
}

.subpage-hero {
  position: relative;
  height: 260px;
  background-image: url("../images/common/main.jpg");
  background-size: cover;
  background-position: top;
}
.subpage-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.subpage-hero__content {
  position: relative;
  z-index: 2;
  color: #FFFFFF;
  height: 100%;
}
.subpage-hero__title {
  font-size: 40px;
}
@media (max-width: 1024px) {
  .subpage-hero__title {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .subpage-hero__title {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .subpage-hero__title {
    font-size: 24px;
  }
}
.subpage-hero__title {
  font-weight: 500;
  line-height: 1.4;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.05em;
  position: absolute;
  left: 72px;
  bottom: 72px;
  line-height: 1;
  padding-right: 20px;
}

@media (max-width: 1024px) {
  .subpage-hero {
    height: 220px;
  }
  .subpage-hero__title {
    left: 72px;
    bottom: 48px;
  }
}
@media (max-width: 768px) {
  .subpage-hero {
    height: 180px;
    background-size: cover;
    background-position: center;
  }
  .subpage-hero__title {
    left: 20px;
    bottom: 30px;
    letter-spacing: 0.02em;
  }
}
@media (max-width: 480px) {
  .subpage-hero {
    height: 150px;
  }
  .subpage-hero__title {
    left: 20px;
    bottom: 24px;
  }
}
.breadcrumb {
  padding: 20px 0 130px;
}
.breadcrumb.beige {
  background: #F5ECE4;
}
.breadcrumb .container {
  padding: 0 72px;
  max-width: none;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .breadcrumb__item {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .breadcrumb__item {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .breadcrumb__item {
    font-size: 10px;
  }
}
.breadcrumb__item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 10px;
  margin: 0 10px;
  background-image: url("../images/common/arr_bread.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.breadcrumb__link {
  color: #AAACBA;
  text-decoration: none;
  transition: color 0.3s ease;
  line-height: 1;
}
.breadcrumb__link:hover {
  color: #E62327;
}
.breadcrumb__current {
  color: #77798F;
  font-weight: 500;
}
@media (max-width: 768px) {
  .breadcrumb {
    padding: 16px 0 90px;
  }
  .breadcrumb .container {
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .breadcrumb .container::-webkit-scrollbar {
    display: none;
  }
  .breadcrumb .container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .breadcrumb__list {
    gap: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .breadcrumb__item {
    font-size: 13px;
    flex-shrink: 0;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  .breadcrumb__item {
    font-size: 12px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .breadcrumb__item {
    font-size: 11px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .breadcrumb__item {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .breadcrumb {
    padding: 12px 0 60px;
  }
  .breadcrumb .container {
    padding: 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .breadcrumb .container::-webkit-scrollbar {
    display: none;
  }
  .breadcrumb .container {
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .breadcrumb__list {
    gap: 0;
    flex-wrap: nowrap;
    white-space: nowrap;
    padding-right: 16px;
  }
  .breadcrumb__item {
    font-size: 12px;
    flex-shrink: 0;
  }
}
@media (max-width: 480px) and (max-width: 1024px) {
  .breadcrumb__item {
    font-size: 12px;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .breadcrumb__item {
    font-size: 12px;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .breadcrumb__item {
    font-size: 10px;
  }
}

.fixed-buttons {
  position: fixed;
  bottom: 40px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
}
.fixed-buttons.visible {
  transform: translateX(0);
}
@media (max-width: 768px) {
  .fixed-buttons {
    display: none;
  }
}

.fixed-buttons__item {
  display: block;
  width: 6.4rem;
  height: auto;
  transition: all 0.3s ease;
}
.fixed-buttons__item:hover {
  transform: scale(1.05);
  opacity: 0.9;
}
.fixed-buttons__item img {
  width: 100%;
  height: auto;
  display: block;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff !important;
  z-index: 10099;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease-out 0.8s, visibility 0.5s ease-out 0.8s;
}
.loading.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loading.fade-out .loading__logo {
  animation: shrinkAndFade 0.8s ease-out forwards;
}

.loading__logo {
  width: 30rem;
  animation: pulse 1.5s ease-in-out infinite;
}
.loading__logo img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .loading__logo {
    width: 15rem;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
}
@keyframes shrinkAndFade {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: scale(1.2);
    opacity: 1;
  }
  60% {
    transform: scale(0);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.hero__content {
  position: absolute;
  left: 72px;
  bottom: 72px;
  right: 72px;
  color: #FFFFFF;
  z-index: 1;
}

.hero__title {
  font-size: 60px;
}
@media (max-width: 1024px) {
  .hero__title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .hero__title {
    font-size: 28px;
  }
}
.hero__title {
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFFFFF;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  width: 100%;
}

.hero__buttons {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.hero__buttons .btn {
  padding: 14px 48px 14px 24px;
  border-radius: 4px;
  font-size: 15px;
}
@media (max-width: 1024px) {
  .hero__buttons .btn {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .hero__buttons .btn {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .hero__buttons .btn {
    font-size: 11px;
  }
}
.hero__buttons .btn {
  font-weight: 500;
  position: relative;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.hero__buttons .btn::after {
  content: "";
  position: absolute;
  right: 10px;
  width: 7px;
  height: 16px;
  background-image: url("../images/common/arr_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.hero__buttons .btn--orange {
  background: #FFA500;
  color: #FFFFFF;
  border: none;
}
.hero__buttons .btn--orange:hover {
  background: #E89400;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.hero__buttons .btn--red {
  background: #E62327;
  color: #FFFFFF;
  border: none;
}
.hero__buttons .btn--red:hover {
  background: #CC1F22;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

@media (max-width: 1024px) {
  .hero__content {
    left: 48px;
    bottom: 48px;
    right: 48px;
  }
  .hero__title {
    line-height: 1.6;
  }
  .hero__buttons {
    gap: 16px;
  }
  .hero__buttons .btn {
    padding: 12px 40px 12px 20px;
  }
}
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    background-attachment: scroll;
    background-position: center center;
  }
  .hero__content {
    left: 24px;
    bottom: 40px;
    right: 24px;
  }
  .hero__title {
    line-height: 1.5;
    margin-bottom: 30px;
  }
  .hero__title br {
    display: block;
  }
  .hero__buttons {
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }
  .hero__buttons .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 40px 12px 20px;
  }
  .hero__buttons .btn::after {
    right: 15px;
    width: 6px;
    height: 14px;
  }
}
@media (max-width: 480px) {
  .hero {
    height: 100vh;
    min-height: 568px;
  }
  .hero__content {
    left: 20px;
    bottom: 30px;
    right: 20px;
  }
  .hero__title {
    line-height: 1.5;
    margin-bottom: 24px;
  }
  .hero__title br {
    display: none;
  }
  .hero__buttons {
    margin-top: 24px;
    gap: 10px;
  }
  .hero__buttons .btn {
    padding: 10px 35px 10px 16px;
    border-radius: 3px;
  }
  .hero__buttons .btn::after {
    right: 12px;
    width: 5px;
    height: 12px;
  }
}
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    min-height: 100vh;
  }
  .hero__content {
    bottom: 20px;
  }
  .hero__title {
    margin-bottom: 16px;
  }
  .hero__buttons {
    flex-direction: row;
    gap: 12px;
    margin-top: 20px;
  }
  .hero__buttons .btn {
    width: auto;
    padding: 10px 35px 10px 16px;
  }
}
.achievements {
  padding: 150px 0 100px 0;
  background: #FAF5F1;
  /* test comment */
}
@media (max-width: 768px) {
  .achievements {
    padding: 50px 0 35px 0;
  }
}

.achievements__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 150px;
  padding-bottom: 0;
}

.achievements__title {
  font-size: 32px;
}
@media (max-width: 1024px) {
  .achievements__title {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .achievements__title {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .achievements__title {
    font-size: 20px;
  }
}
.achievements__title {
  font-weight: 500;
  text-align: left;
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0;
}

.achievements__date {
  text-align: right;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .achievements__date {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .achievements__date {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .achievements__date {
    font-size: 10px;
  }
}
.achievements__date {
  color: #636E72;
  margin: 0;
  white-space: nowrap;
}

/* チャートコンテナ */
.achievements__charts {
  display: flex;
  gap: 50px;
  max-width: 1140px;
  margin: 0 auto;
}

/* 各チャート */
.achievement__chart {
  flex: 1;
  border-radius: 16px;
  position: relative;
}

/* タイトルと数字のコンテナ */
.achievement__info {
  position: absolute;
  top: -63px;
  left: 0;
  padding-left: 20px;
  z-index: 10;
}

.achievement__subtitle {
  font-size: 18px;
}
@media (max-width: 1024px) {
  .achievement__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .achievement__subtitle {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .achievement__subtitle {
    font-size: 14px;
  }
}
.achievement__subtitle {
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 15px;
  letter-spacing: 1;
  text-align: left;
}

.achievement__number {
  font-size: 24px;
}
@media (max-width: 1024px) {
  .achievement__number {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .achievement__number {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .achievement__number {
    font-size: 16px;
  }
}
.achievement__number {
  font-weight: 500;
  color: #E62327;
  line-height: 1;
  margin-bottom: 40px;
  text-align: left;
}
.achievement__number span {
  font-size: 60px;
}
@media (max-width: 1024px) {
  .achievement__number span {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .achievement__number span {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .achievement__number span {
    font-size: 28px;
  }
}
.achievement__number span {
  letter-spacing: 0;
  font-family: "Nunito Sans", sans-serif;
}

/* バーグラフ */
.achievement__bars {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  height: 330px;
  position: relative;
  padding-top: 40px;
  /* 横のメモリ線（8本） */
}
.achievement__bars::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  height: calc(100% - 40px + 52px);
  background-image: repeating-linear-gradient(to top, #E5E5E5 0px, #E5E5E5 1px, transparent 1px, transparent 46px);
  z-index: 0;
}

/* 各バー */
.achievement__bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
  position: relative;
  height: 100%;
}
.achievement__bar-item:first-child {
  margin-left: 42px;
}
.achievement__bar-item:last-child {
  margin-right: 42px;
}

/* バー本体 */
.achievement__bar {
  width: 36px;
  background: #FAD3D4;
  border-radius: 4px 4px 0 0;
  position: absolute;
  bottom: 40px;
  opacity: 0;
  z-index: 2;
  transform-origin: bottom;
  transform: scaleY(0);
}

/* アニメーションクラスが追加されたときのみアニメーション実行 */
.achievement__bar-item.animate .achievement__bar {
  animation: barGrow 0.8s ease forwards;
}

/* バーの高さをdata属性から取得 */
.achievement__bar-item[data-height="8"] .achievement__bar {
  height: 8%;
}

.achievement__bar-item[data-height="12"] .achievement__bar {
  height: 12%;
}

.achievement__bar-item[data-height="24"] .achievement__bar {
  height: 24%;
}

.achievement__bar-item[data-height="27"] .achievement__bar {
  height: 27%;
}

.achievement__bar-item[data-height="39"] .achievement__bar {
  height: 39%;
}

.achievement__bar-item[data-height="59"] .achievement__bar {
  height: 59%;
}

.achievement__bar-item[data-height="72"] .achievement__bar {
  height: 72%;
}

.achievement__bar-item[data-height="100"] .achievement__bar {
  height: 100%;
}

/* 最新年のバーを強調 */
/* 1〜4本目は全て同じ薄いピンク */
.achievement__bar-item:nth-child(1) .achievement__bar,
.achievement__bar-item:nth-child(2) .achievement__bar,
.achievement__bar-item:nth-child(3) .achievement__bar,
.achievement__bar-item:nth-child(4) .achievement__bar {
  background: #FAD3D4;
}

/* 5本目（最新年）のみ濃い赤 */
.achievement__bar-item:nth-child(5) .achievement__bar {
  background: #E62327;
}

.achievement__bar-item:nth-child(5) .achievement__bar-value {
  font-size: 28px;
}
@media (max-width: 1024px) {
  .achievement__bar-item:nth-child(5) .achievement__bar-value {
    font-size: 26px;
  }
}
@media (max-width: 768px) {
  .achievement__bar-item:nth-child(5) .achievement__bar-value {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  .achievement__bar-item:nth-child(5) .achievement__bar-value {
    font-size: 18px;
  }
}
.achievement__bar-item:nth-child(5) .achievement__bar-value {
  color: #E62327;
}

/* 単位（人・件）のスタイル */
.achievement__bar-value {
  color: #505050;
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .achievement__bar-value {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .achievement__bar-value {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .achievement__bar-value {
    font-size: 15px;
  }
}
.achievement__bar-value span {
  font-family: "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  font-size: 20px;
}
@media (max-width: 1024px) {
  .achievement__bar-value span {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .achievement__bar-value span {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .achievement__bar-value span {
    font-size: 15px;
  }
}

.achievement__bar-item:nth-child(5) .achievement__bar-value span {
  font-size: 20px;
}
@media (max-width: 1024px) {
  .achievement__bar-item:nth-child(5) .achievement__bar-value span {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .achievement__bar-item:nth-child(5) .achievement__bar-value span {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .achievement__bar-item:nth-child(5) .achievement__bar-value span {
    font-size: 15px;
  }
}

/* バーの上の数値 */
.achievement__bar-value {
  color: #505050;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
}
@media (max-width: 1024px) {
  .achievement__bar-value {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .achievement__bar-value {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .achievement__bar-value {
    font-size: 15px;
  }
}
.achievement__bar-value {
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  z-index: 3;
  letter-spacing: 0;
}

/* アニメーションクラスが追加されたときのみアニメーション実行 */
.achievement__bar-item.animate .achievement__bar-value {
  animation: valueSlide 0.6s ease forwards;
}

/* 年度表示 */
.achievement__bar-year {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
}
@media (max-width: 1024px) {
  .achievement__bar-year {
    font-size: 19px;
  }
}
@media (max-width: 768px) {
  .achievement__bar-year {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .achievement__bar-year {
    font-size: 15px;
  }
}
.achievement__bar-year {
  letter-spacing: 0;
  color: #505050;
  z-index: 3;
  white-space: nowrap;
}

/* 最後の年度表示を赤色に */
.achievement__bar-item:last-child .achievement__bar-year {
  color: #E62327;
}

/* アニメーション定義 */
@keyframes barGrow {
  from {
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
  }
  to {
    transform: scaleY(1);
    transform-origin: bottom;
    opacity: 1;
  }
}
@keyframes valueSlide {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
/* 順番にアニメーション */
.achievement__bar-item.animate:nth-child(1) .achievement__bar {
  animation-delay: 0.1s;
}

.achievement__bar-item.animate:nth-child(2) .achievement__bar {
  animation-delay: 0.3s;
}

.achievement__bar-item.animate:nth-child(3) .achievement__bar {
  animation-delay: 0.5s;
}

.achievement__bar-item.animate:nth-child(4) .achievement__bar {
  animation-delay: 0.7s;
}

.achievement__bar-item.animate:nth-child(5) .achievement__bar {
  animation-delay: 0.9s;
}

.achievement__bar-item.animate:nth-child(1) .achievement__bar-value {
  animation-delay: 0.6s;
}

.achievement__bar-item.animate:nth-child(2) .achievement__bar-value {
  animation-delay: 0.8s;
}

.achievement__bar-item.animate:nth-child(3) .achievement__bar-value {
  animation-delay: 1s;
}

.achievement__bar-item.animate:nth-child(4) .achievement__bar-value {
  animation-delay: 1.2s;
}

.achievement__bar-item.animate:nth-child(5) .achievement__bar-value {
  animation-delay: 1.4s;
}

/* 値の位置調整 */
.achievement__bar-item[data-height="8"] .achievement__bar-value {
  bottom: calc(8% + 42px);
}

.achievement__bar-item[data-height="12"] .achievement__bar-value {
  bottom: calc(12% + 42px);
}

.achievement__bar-item[data-height="24"] .achievement__bar-value {
  bottom: calc(24% + 42px);
}

.achievement__bar-item[data-height="27"] .achievement__bar-value {
  bottom: calc(27% + 42px);
}

.achievement__bar-item[data-height="39"] .achievement__bar-value {
  bottom: calc(39% + 42px);
}

.achievement__bar-item[data-height="59"] .achievement__bar-value {
  bottom: calc(59% + 42px);
}

.achievement__bar-item[data-height="72"] .achievement__bar-value {
  bottom: calc(72% + 42px);
}

.achievement__bar-item[data-height="100"] .achievement__bar-value {
  bottom: calc(100% + 42px);
}

@media (max-width: 1024px) {
  .achievement__number {
    font-size: 21px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .achievement__number {
    font-size: 20px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .achievement__number {
    font-size: 18px;
  }
}
@media (max-width: 1024px) and (max-width: 480px) {
  .achievement__number {
    font-size: 16px;
  }
}
@media (max-width: 1024px) {
  .achievement__number span {
    font-size: 36px;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  .achievement__number span {
    font-size: 32px;
  }
}
@media (max-width: 1024px) and (max-width: 768px) {
  .achievement__number span {
    font-size: 27px;
  }
}
@media (max-width: 1024px) and (max-width: 480px) {
  .achievement__number span {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .achievements__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 90px;
  }
  .achievements__title {
    margin-bottom: 10px;
  }
  .achievements__title br {
    display: none;
  }
  .achievements__date {
    text-align: left;
  }
  .achievements__charts {
    flex-direction: column;
    gap: 60px;
  }
  .achievement__chart {
    width: 100%;
    margin-bottom: 40px;
  }
  .achievement__chart:last-child {
    margin-bottom: 0;
  }
  .achievement__info {
    padding-left: 10px;
  }
  .achievement__subtitle {
    margin-bottom: 10px;
    line-height: 1.5;
  }
  .achievement__number {
    margin-bottom: 30px;
  }
  .achievement__number span {
    font-size: 36px;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  .achievement__number span {
    font-size: 32px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .achievement__number span {
    font-size: 27px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .achievement__number span {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .achievement__bars {
    height: 250px;
  }
  .achievement__bar {
    width: 24px;
  }
  .achievement__bar-value span {
    font-size: 12px;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  .achievement__bar-value span {
    font-size: 12px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .achievement__bar-value span {
    font-size: 12px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .achievement__bar-value span {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .achievement__bar-item:nth-child(5) .achievement__bar-value span {
    font-size: 14px;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  .achievement__bar-item:nth-child(5) .achievement__bar-value span {
    font-size: 13px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .achievement__bar-item:nth-child(5) .achievement__bar-value span {
    font-size: 12px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .achievement__bar-item:nth-child(5) .achievement__bar-value span {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .achievement__bar-year {
    bottom: 5px;
  }
  .achievement__bar-item:first-child {
    margin-left: 20px;
  }
  .achievement__bar-item:last-child {
    margin-right: 20px;
  }
}
.section-title__en {
  font-size: 60px;
}
@media (max-width: 1024px) {
  .section-title__en {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .section-title__en {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .section-title__en {
    font-size: 28px;
  }
}
.section-title__en {
  font-weight: 500;
  color: #E62327;
  font-family: "Nunito Sans", sans-serif;
  margin: 0;
  margin-bottom: 10px;
  line-height: 1;
}
.section-title__ja {
  background: #CC1F22;
  color: #FFFFFF;
  padding: 8px 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-top: 10px;
  position: relative;
  z-index: 1;
  display: block;
  width: fit-content;
  margin-bottom: 64px;
}
.section-title__ja.non-color {
  color: inherit;
  padding: 8px 0 0;
  background: none;
}
@media (max-width: 768px) {
  .section-title__ja.non-color {
    margin-bottom: 0;
  }
}
.section-title__sub {
  font-size: 24px;
}
@media (max-width: 1024px) {
  .section-title__sub {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .section-title__sub {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .section-title__sub {
    font-size: 16px;
  }
}
.section-title__sub {
  line-height: 1.5;
  letter-spacing: 0.02em;
  position: relative;
  padding-left: 35px;
  margin-bottom: 30px;
}
.section-title__sub.ab {
  position: absolute;
}
@media (max-width: 1024px) {
  .section-title__sub.ab {
    position: relative;
  }
}
@media (max-width: 1024px) {
  .section-title__sub {
    margin-bottom: 10px;
  }
}
.section-title__sub::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 1em;
  height: 1em;
  background-image: url("../images/common/icon_circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 768px) {
  .section-title__sub {
    line-height: 1.5;
    padding-left: 27px;
  }
}
.section-title--large-spacing .section-title__ja {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .section-title--large-spacing .section-title__ja {
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .section-title--large-spacing .section-title__ja {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .section-title__ja {
    padding: 6px 8px;
    margin-top: 0;
  }
}
.page-title {
  padding: 0 0 80px;
  background: #FFFFFF;
  text-align: center;
}
.page-title.pb0 {
  padding-bottom: 0;
}
.page-title--left {
  text-align: left;
}
.page-title--left .page-title__container {
  align-items: flex-start;
}
.page-title--left a {
  text-decoration: underline;
}
.page-title__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.page-title__main {
  font-size: 60px;
}
@media (max-width: 1024px) {
  .page-title__main {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .page-title__main {
    font-size: 42px;
  }
}
@media (max-width: 480px) {
  .page-title__main {
    font-size: 28px;
  }
}
.page-title__main {
  font-weight: 400;
  color: #CC1F22;
  letter-spacing: 0;
  font-family: "Nunito Sans", sans-serif;
}
.page-title__sub {
  background: #CC1F22;
  color: #FFFFFF;
  padding: 8px 10px;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .page-title__sub {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .page-title__sub {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .page-title__sub {
    font-size: 12px;
  }
}
.page-title__sub {
  font-weight: 500;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  display: inline-block;
}
.page-title__thumb {
  padding: 0 60px;
  margin-top: 60px;
  display: flex;
  gap: 40px;
}
@media (max-width: 768px) {
  .page-title__thumb {
    padding: 0;
    margin-top: 40px;
    gap: 20px;
  }
}
.page-title__thumb-list {
  width: 33.3333333333%;
}
.page-title--large-spacing .section-title__ja {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .page-title--large-spacing .section-title__ja {
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .page-title--large-spacing .section-title__ja {
    margin-bottom: 32px;
  }
}

.page-title--large-spacing .section-title__ja {
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .page-title--large-spacing .section-title__ja {
    margin-bottom: 48px;
  }
}
@media (max-width: 480px) {
  .page-title--large-spacing .section-title__ja {
    margin-bottom: 32px;
  }
}
@media (max-width: 768px) {
  .page-title {
    padding: 0 0 64px 0;
  }
  .page-title__main {
    margin-bottom: 15px;
  }
  .page-title__sub {
    padding: 6px 8px;
  }
  .page-title__text {
    margin-top: 0;
    line-height: 1.8;
  }
}
@media (max-width: 480px) {
  .page-title {
    padding: 0 0 40px 0;
  }
  .page-title__main {
    margin-bottom: 0;
  }
}

.voice-page {
  padding: 0;
  background: #FFFFFF;
}
.voice-page__copy {
  display: flex;
  justify-content: center;
  margin-bottom: 170px;
  padding: 0 72px;
}
.voice-page__copy h2 {
  font-size: 40px;
}
@media (max-width: 1024px) {
  .voice-page__copy h2 {
    font-size: 35px;
  }
}
@media (max-width: 768px) {
  .voice-page__copy h2 {
    font-size: 30px;
  }
}
@media (max-width: 480px) {
  .voice-page__copy h2 {
    font-size: 24px;
  }
}
.voice-page__copy h2 {
  font-weight: 500;
  line-height: 1.8;
  color: #333333;
  letter-spacing: 0.02em;
  margin: 0;
  text-align: left;
}
.voice-page .container {
  padding: 0;
  margin: 0 auto;
  max-width: none;
}
.voice-page__buttons {
  display: flex;
  justify-content: center;
  gap: 48px;
  padding: 0 0 170px;
}
.voice-page__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E62327;
  color: #FFFFFF;
  padding: 12px 36px;
  border-radius: 50px;
  font-size: 16px;
}
@media (max-width: 1024px) {
  .voice-page__btn {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .voice-page__btn {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  .voice-page__btn {
    font-size: 12px;
  }
}
.voice-page__btn {
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-right: 50px;
  text-decoration: none;
  min-width: 360px;
}
.voice-page__btn::after {
  content: "";
  position: absolute;
  right: 20px;
  width: 7px;
  height: 18px;
  background-image: url("../images/common/arr_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.voice-page__btn:hover {
  background: #CC1F22;
  transform: translateX(5px);
}

.voice-cardlist {
  margin-bottom: 170px;
  margin-left: 144px;
  background-color: #F8F4EE;
}
.voice-cardlist__header {
  position: relative;
  display: flex;
  align-items: center;
}
.voice-cardlist__header__child {
  width: 50%;
  position: relative;
  top: -72px;
  left: -72px;
}
.voice-cardlist__header__content {
  width: 50%;
  padding-right: 72px;
}
.voice-cardlist__header__image {
  width: 50%;
  position: relative;
  top: -72px;
  left: -72px;
}
.voice-cardlist__header__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-cardlist__header__company {
  font-size: 24px;
}
@media (max-width: 1024px) {
  .voice-cardlist__header__company {
    font-size: 22px;
  }
}
@media (max-width: 768px) {
  .voice-cardlist__header__company {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .voice-cardlist__header__company {
    font-size: 16px;
  }
}
.voice-cardlist__header__company {
  margin-bottom: 20px;
  line-height: 1.3;
}
.voice-cardlist__header__point-badge {
  display: inline-block;
  background: #E62327;
  color: #FFFFFF;
  padding: 6px 12px;
  font-size: 14px;
}
@media (max-width: 1024px) {
  .voice-cardlist__header__point-badge {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .voice-cardlist__header__point-badge {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .voice-cardlist__header__point-badge {
    font-size: 10px;
  }
}
.voice-cardlist__header__point-badge {
  font-weight: 400;
  line-height: 1;
  margin-bottom: 40px;
  letter-spacing: 0.08em;
}
.voice-cardlist__footer {
  padding: 0 72px 72px;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}
.voice-cardlist__footer__image {
  width: 42%;
  position: relative;
}
.voice-cardlist__footer__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.voice-cardlist__footer__content {
  width: 58%;
  padding-right: 72px;
}
.voice-cardlist:last-child {
  margin-bottom: 90px;
}
.voice-cardlist.reverse {
  margin-left: 0;
  margin-right: 144px;
}
.voice-cardlist.reverse .voice-cardlist__header {
  flex-direction: row-reverse;
  top: 0;
  left: 0;
  right: -72px;
}
.voice-cardlist.reverse .voice-cardlist__header__child {
  left: 0;
  right: -72px;
}
.voice-cardlist.reverse .voice-cardlist__header__image {
  left: auto;
  right: -72px;
}
.voice-cardlist.reverse .voice-cardlist__header__content {
  width: 50%;
  padding-right: 0;
  padding-left: 72px;
}
.voice-cardlist.reverse .voice-cardlist__footer {
  padding: 0 72px 72px;
  flex-direction: row;
}
.voice-cardlist.reverse .voice-cardlist__footer__content {
  width: 58%;
  padding-right: 0;
  padding-left: 72px;
}

@media (max-width: 1024px) {
  .voice-page__copy {
    margin-bottom: 170px;
  }
  .voice-page__copy h2 {
    line-height: 1.6;
  }
  .voice-page__copy h2 br {
    display: none;
  }
}
@media (max-width: 768px) {
  .voice-page__copy {
    margin-bottom: 100px;
    padding: 0 20px;
  }
  .voice-page__copy h2 {
    line-height: 1.6;
  }
  .voice-page__buttons {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px 100px;
  }
  .voice-page__btn {
    min-width: 100%;
    max-width: 400px;
  }
  .voice-cardlist {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding-bottom: 60px;
  }
  .voice-cardlist__header {
    flex-direction: column;
  }
  .voice-cardlist__header__child, .voice-cardlist__header__image {
    width: 100%;
    position: static;
    top: 0;
    left: 0;
    margin-bottom: 0;
  }
  .voice-cardlist__header__content {
    width: 100%;
    padding: 30px;
  }
  .voice-cardlist__header__company {
    font-size: 20px;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  .voice-cardlist__header__company {
    font-size: 19px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .voice-cardlist__header__company {
    font-size: 18px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .voice-cardlist__header__company {
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .voice-cardlist__header__text {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  .voice-cardlist__header__text {
    font-size: 13px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .voice-cardlist__header__text {
    font-size: 12px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .voice-cardlist__header__text {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .voice-cardlist__footer {
    flex-direction: column;
    padding: 0 30px 30px;
  }
  .voice-cardlist__footer__image {
    width: 100%;
    margin-bottom: 20px;
  }
  .voice-cardlist__footer__content {
    width: 100%;
    padding: 0;
  }
  .voice-cardlist__footer__text {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media (max-width: 768px) and (max-width: 1024px) {
  .voice-cardlist__footer__text {
    font-size: 13px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .voice-cardlist__footer__text {
    font-size: 12px;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .voice-cardlist__footer__text {
    font-size: 10px;
  }
}
@media (max-width: 768px) {
  .voice-cardlist.reverse {
    margin-left: 0;
    margin-right: 0;
  }
  .voice-cardlist.reverse .voice-cardlist__header {
    flex-direction: column;
  }
  .voice-cardlist.reverse .voice-cardlist__header__child, .voice-cardlist.reverse .voice-cardlist__header__image {
    position: static;
    right: 0;
    left: 0;
  }
  .voice-cardlist.reverse .voice-cardlist__header__content {
    padding: 30px;
    width: 100%;
  }
  .voice-cardlist.reverse .voice-cardlist__footer {
    flex-direction: column;
    padding: 0 30px 30px;
  }
  .voice-cardlist.reverse .voice-cardlist__footer__content {
    padding: 0;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .voice-page__copy {
    margin-bottom: 40px;
    padding: 0 16px;
  }
  .voice-page__copy h2 {
    line-height: 1.4;
  }
  .voice-page__buttons {
    padding: 0 16px 40px;
    gap: 12px;
  }
  .voice-page__btn {
    font-size: 14px;
    padding: 10px 20px;
    padding-right: 40px;
    min-width: auto;
  }
}
@media (max-width: 480px) and (max-width: 1024px) {
  .voice-page__btn {
    font-size: 13px;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .voice-page__btn {
    font-size: 12px;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .voice-page__btn {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .voice-page__btn::after {
    right: 15px;
    width: 5px;
    height: 12px;
  }
  .voice-cardlist {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
    padding-bottom: 60px;
    border-radius: 0;
  }
  .voice-cardlist__header__content {
    padding: 20px;
  }
  .voice-cardlist__header__company {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) and (max-width: 1024px) {
  .voice-cardlist__header__company {
    font-size: 15px;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .voice-cardlist__header__company {
    font-size: 14px;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .voice-cardlist__header__company {
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .voice-cardlist__header__point-badge {
    font-size: 11px;
    padding: 4px 8px;
    margin-bottom: 15px;
  }
}
@media (max-width: 480px) and (max-width: 1024px) {
  .voice-cardlist__header__point-badge {
    font-size: 11px;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .voice-cardlist__header__point-badge {
    font-size: 11px;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .voice-cardlist__header__point-badge {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .voice-cardlist__header__text {
    font-size: 13px;
    line-height: 1.7;
  }
}
@media (max-width: 480px) and (max-width: 1024px) {
  .voice-cardlist__header__text {
    font-size: 12px;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .voice-cardlist__header__text {
    font-size: 11px;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .voice-cardlist__header__text {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .voice-cardlist__footer {
    padding: 0 20px 20px;
  }
  .voice-cardlist__footer__text {
    font-size: 13px;
    line-height: 1.7;
  }
}
@media (max-width: 480px) and (max-width: 1024px) {
  .voice-cardlist__footer__text {
    font-size: 12px;
  }
}
@media (max-width: 480px) and (max-width: 768px) {
  .voice-cardlist__footer__text {
    font-size: 11px;
  }
}
@media (max-width: 480px) and (max-width: 480px) {
  .voice-cardlist__footer__text {
    font-size: 10px;
  }
}
@media (max-width: 480px) {
  .voice-cardlist.reverse {
    margin-left: 0;
    margin-right: 0;
  }
  .voice-cardlist.reverse .voice-cardlist__header__content {
    padding: 20px;
  }
  .voice-cardlist.reverse .voice-cardlist__footer {
    padding: 0 20px 20px;
  }
}
/*# sourceMappingURL=main.css.map */

/* メッセージが空の間は出さない */
.wpcf7 .wpcf7-response-output:empty {
  display: none !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
}


/* 記事本文中の画像は“フル幅強制”を無効化して、編集画面のサイズ指定を尊重する */
.seminar-detail__content img,
.wp-block-image img,
.entry-content img,
img.wp-image {
  width: auto !important;   /* ← これで width:100% を打ち消す */
  max-width: 100%;
  height: auto;
}

/* 中央寄せ（aligncenter）の見た目だけ補助：幅は変えない */
img.aligncenter { display:block; margin-left:auto; margin-right:auto; }


.wpcf7-response-output {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
}
.wpcf7-mail-sent-ok {
  border: none !important;
  background: transparent !important;
}


/* ==== ロゴの視認性を強制確保 ==== */
.header__logo img {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}
