@charset "UTF-8";
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
}
.header__bg-wrapper {
  background-color: rgba(242, 242, 242, 0.9);
  position: relative;
  z-index: 1002;
}
@media (max-width: 1025px) {
  .header__bg-wrapper {
    border-radius: 0 0 32px 32px;
  }
}
.header__container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
}
@media (max-width: 1025px) {
  .header__container {
    padding-inline: 24px;
  }
}
.header__logo {
  margin: 0;
  position: relative;
  z-index: 201;
}
.header__logo-link {
  display: block;
}
.header__logo-link img {
  display: block;
  height: auto;
}
.header__nav-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1025px) {
  .header__nav-wrapper {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  gap: 60px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}
.header__nav-item {
  position: relative;
}
.header__nav-item.is-open .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header__nav-link, .header__nav-button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  padding: 10px 0;
  color: #000;
  transition: color 0.3s;
  font-family: inherit;
}
.header__nav-link:hover, .header__nav-button:hover {
  color: #2495A3;
}
.header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  background-color: #f2f2f2;
  list-style: none;
  margin: 10px 0;
  padding: 10px 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.header__dropdown-link {
  display: block;
  padding: 12px 24px;
  color: #000;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
  font-size: 14px;
}
.header__dropdown-link:hover {
  color: #2495A3;
}
.header__dropdown-divider {
  display: block;
  background-color: #000;
  height: 1px;
  width: 150px;
  margin: 8px auto;
}
.header__contact {
  position: relative;
}
@media (max-width: 1025px) {
  .header__contact {
    display: none;
  }
}
.header__contact-button {
  background-color: #E3BC39;
  color: #fff;
  border: none;
  padding: 15px 32px;
  border-radius: 40px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
}
.header__contact-button:hover {
  background-color: #26248A;
}
.header__contact.is-open .header__contact-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}
.header__contact-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 180px;
  background-color: #f2f2f2;
  list-style: none;
  margin: 15px 0;
  padding: 10px 0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 100;
}
.header__contact-dropdown-link {
  display: block;
  padding: 12px 24px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.header__contact-dropdown-link:hover {
  color: #2495A3;
}
.header__hamburger {
  display: none;
  width: 30px;
  height: 20px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  z-index: 201;
  position: relative;
}
@media (max-width: 1025px) {
  .header__hamburger {
    display: flex;
  }
}
.header__hamburger-line {
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: #fefefe;
}
.header__hamburger.is-active .header__hamburger-line:nth-child(2) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: #fefefe;
}
.header__hamburger.is-active .header__logo img {
  filter: brightness(0) invert(1);
}
.header__mobile-menu {
  display: none;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #2495A3;
  z-index: 150;
  overflow-y: auto;
  padding: 94px 24px 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (max-width: 1025px) {
  .header__mobile-menu {
    display: block;
  }
}
.header__mobile-menu.is-active {
  opacity: 1;
  visibility: visible;
}
.header__mobile-menu-nav {
  width: 100%;
}
.header__mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__mobile-menu-link {
  display: block;
  padding: 1rem 0;
  color: #fefefe;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.3s;
}
.header__mobile-menu-link:hover {
  color: #E3BC39;
}
.header__mobile-menu-button {
  display: block;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  font-family: inherit;
  color: #fefefe;
  cursor: default;
  transition: none;
}
.header__mobile-menu-button-text {
  display: inline-block;
}
.header__mobile-menu-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1rem;
}
.header__mobile-menu-submenu-link {
  display: block;
  padding: 0.75rem 0;
  color: #fefefe;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.3s;
}
.header__mobile-menu-submenu-link:hover {
  color: #E3BC39;
}

body.is-menu-open {
  overflow: hidden;
}
@media (min-width: 1026px) {
  body.is-menu-open {
    overflow: auto;
  }
}

.contact-parts {
  background: #f2f2f2;
  border-radius: 64px 64px 0 0;
  position: relative;
  padding: 4rem 0 11rem;
}
@media (max-width: 568px) {
  .contact-parts {
    border-radius: inherit;
  }
}
.contact-parts > .l-container--xl {
  position: relative;
  top: -50px;
}
@media (max-width: 568px) {
  .contact-parts > .l-container--xl {
    top: 0;
  }
}
@media (max-width: 1025px) {
  .contact-parts__content > .l-container {
    padding-inline: 4rem !important;
  }
}
@media (max-width: 769px) {
  .contact-parts__content > .l-container {
    padding-inline: 24px !important;
  }
}
.contact-parts__description {
  color: #26248A;
  line-height: 2.2;
  margin-bottom: 4rem;
  display: block;
  text-align: left;
}
@media (max-width: 1400px) {
  .contact-parts__description {
    width: 90%;
    text-align: left;
    margin: clamp(4rem, -0.861rem + 10.127vw, 8rem) auto 4rem;
  }
}
@media (max-width: 568px) {
  .contact-parts__description {
    margin: 24px auto 24px;
  }
}
.contact-parts__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  align-items: stretch;
}
@media (max-width: 568px) {
  .contact-parts__list {
    grid-template-columns: 1fr;
  }
}
.contact-parts__item {
  display: flex;
}
@media (max-width: 769px) {
  .contact-parts__item {
    width: 100%;
    flex: none;
  }
}
.contact-parts__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  background-color: #E3BC39;
  border: 1px solid #E3BC39;
  border-radius: 44px;
  transition: all 0.2s ease;
  color: #fefefe;
  height: 100%;
  width: 100%;
}
.contact-parts__link:hover {
  border: 1px solid #26248A;
  background-color: #fefefe;
  color: #26248A;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.15);
}
@media (max-width: 769px) {
  .contact-parts__link {
    text-align: center;
  }
  .contact-parts__link > .contact-parts__text:nth-of-type(2),
  .contact-parts__link > .contact-parts__text:nth-of-type(3) {
    display: inline;
    white-space: nowrap;
    font-size: 1rem;
  }
}
@media (max-width: 568px) {
  .contact-parts__link {
    padding: 1rem;
    border-radius: 32px;
  }
  .contact-parts__link > .contact-parts__text:nth-of-type(1),
  .contact-parts__link > .contact-parts__text:nth-of-type(2),
  .contact-parts__link > .contact-parts__text:nth-of-type(3) {
    font-size: 14px;
    line-height: 1.4;
  }
}
.contact-parts__text {
  display: block;
  text-align: center;
  line-height: 1.5;
  font-size: 18px;
}
.contact-parts__text:nth-of-type(1) {
  font-size: 16px;
  font-weight: 500;
}
.contact-parts__text:nth-of-type(2) {
  font-size: 1.5rem;
  font-weight: 500;
}

.contact-section {
  background-color: #f2f2f2;
  padding: 5rem 0 13rem;
  border-radius: 64px 64px 0 0;
  margin-top: -60px;
}
@media (max-width: 568px) {
  .contact-section {
    border-radius: inherit;
  }
}
.contact-section__header {
  color: #26248A;
  text-align: center;
  line-height: 2.2;
  margin-bottom: 5rem;
}
@media (max-width: 568px) {
  .contact-section__header {
    margin-bottom: 4rem;
  }
}
.contact-section__title {
  font-weight: 600;
  font-size: 1.5rem;
}
.contact-section__note {
  color: #000;
  margin-top: 5rem;
}
@media (max-width: 568px) {
  .contact-section__note {
    margin-top: 2rem;
    text-align: left;
  }
}
.contact-section .form-row .required {
  font-size: 0.875rem;
  align-items: center;
}
.contact-section .form-row label {
  margin-left: 1rem;
}
.contact-section .form-row label:last-child {
  margin-left: 0;
}
.contact-section .form-row input[type=text],
.contact-section .form-row input[type=tel],
.contact-section .form-row input[type=email],
.contact-section .form-row textarea {
  margin: 1rem 0 2.375rem;
  background-color: #fefefe;
  display: block;
  width: 100%;
  height: 72px;
  border-radius: 44px;
}
@media (max-width: 568px) {
  .contact-section .form-row input[type=text],
  .contact-section .form-row input[type=tel],
  .contact-section .form-row input[type=email],
  .contact-section .form-row textarea {
    height: 50px;
    border-radius: 32px;
  }
}
.contact-section .form-row #message {
  height: 280px;
  margin-bottom: 3rem;
}
.contact-section .form-row--privacy {
  margin-bottom: 2rem;
}
.contact-section .form-row--privacy .privacy-text {
  line-height: 2.2;
}
.contact-section .form-row--privacy .privacy-text a {
  border-bottom: 1px solid #26248A;
}
.contact-section .form-row--privacy .privacy-check {
  line-height: 2.2;
}
.contact-section .form-row--privacy .privacy-check input {
  background-color: #fefefe;
  border: 1px solid #000;
  height: 20px;
  width: 20px;
}
.contact-section .form-row--submit {
  text-align: center;
}
.contact-section .form-row--radio {
  display: flex;
  justify-content: space-around;
  margin: 0 auto 3rem;
}
.contact-section .form-row--radio .form-label {
  display: none;
}
.contact-section .form-row--radio label {
  margin-left: 0;
}
.contact-section input[type=radio],
.contact-section input[type=checkbox] {
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
}

/* ==========================
   共通
========================== */
.smf-form--letter .smf-item {
  padding-bottom: 2rem;
}

.smf-form--letter .smf-item:last-child {
  max-width: 796px;
  margin: 0 auto;
}

.smf-form--letter .smf-item__col--label {
  padding-left: 1rem;
}

.smf-form--letter .smf-item__col--label:has(.smf-item__description) {
  padding-left: 0;
}

.smf-item__description {
  font-size: 18px;
  color: #000;
}
.smf-item__description a {
  border-bottom: 1px solid #000;
}

/* ==========================
   入力画面（text / textarea）
========================== */
/* テキスト系 */
.smf-form--letter .smf-text-control__control {
  border: none;
  border-radius: 44px;
  height: 4rem;
  padding: 0 1.5rem;
  line-height: normal;
}

/* テキストエリア */
.smf-form--letter .smf-textarea-control__control {
  border: none;
  border-radius: 44px;
  height: 20rem;
  min-height: 20rem;
  padding: 2rem 1.5rem;
  resize: none;
}

/* ==========================
   ラジオ・チェックボックス
========================== */
/* ラジオ横並び */
#snow-monkey-form-38 .smf-radio-buttons-control__control {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 796px;
  margin: 0 auto 1rem;
}

/* ラジオ本体 */
.smf-form .smf-radio-button-control__control {
  margin-top: 0;
  width: 20px;
  height: 20px;
}

/* チェックボックス */
.smf-form .smf-checkbox-control {
  align-items: center;
}

.smf-form .smf-checkbox-control__control {
  margin-top: 0;
  border-color: #26248A;
}

.contact-section input[type=checkbox] {
  width: 20px;
  height: 20px;
}

/* ラベルテキスト非表示（radio / policy） */
.smf-item:has(.smf-placeholder[data-name=radio-buttons]) .smf-item__label__text,
.smf-item:has(.smf-placeholder[data-name=policy]) .smf-item__label__text {
  display: none;
}

/* ==========================
   確認画面（confirm）
   ※ 何もしない（白背景なし・高さ調整なし）
========================== */
/* ラベル位置だけ微調整 */
.snow-monkey-form[data-screen=confirm] .smf-form--letter .smf-item__col--label {
  padding-left: 0;
}

/* ==========================
   ボタン
========================== */
.smf-action .smf-button-control__control,
.smf-button-control__control {
  color: #26248A;
  background-color: #fefefe;
  font-weight: 600;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  border: 1px solid #26248A;
  background-image: none;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.smf-action .smf-button-control__control:hover,
.smf-button-control__control:hover {
  color: #fefefe;
  background-color: #26248A;
}
.smf-action .smf-button-control__control::after,
.smf-button-control__control::after {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  padding-left: 0.5rem;
  transition: transform 0.3s ease;
}
.smf-action .smf-button-control__control:hover::after,
.smf-button-control__control:hover::after {
  transform: translateX(3px);
}

.smf-complete-content {
  line-height: 2.2;
}
.smf-complete-content strong {
  margin-bottom: 1.5rem;
}

.footer {
  margin-top: -50px;
  position: relative;
  z-index: 10;
  color: #fefefe;
  border-radius: 64px 64px 0 0;
  background-color: #26248A;
  background-image: url("../img/bg/footer_bg_pc.png");
  background-image: -webkit-image-set(url("../img/bg/footer_bg_pc.webp") type("image/webp"), url("../img/bg/footer_bg_pc.png") type("image/png"));
  background-image: image-set(url("../img/bg/footer_bg_pc.webp") type("image/webp"), url("../img/bg/footer_bg_pc.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: auto 65%;
}
@media (max-width: 769px) {
  .footer {
    background-image: none;
  }
}
@media (max-width: 568px) {
  .footer {
    border-radius: 32px 32px 0 0;
  }
}
.footer__container {
  padding: 4rem 0;
}
.footer__container li,
.footer__container button {
  margin-bottom: 1rem;
}
.footer__nav-columns {
  display: flex;
  gap: 4rem;
}
@media (max-width: 568px) {
  .footer__nav-columns {
    flex-direction: column;
    gap: inherit;
  }
}
.footer__nav-list {
  font-size: 0.875rem;
  flex: 1;
}
.footer__nav-link, .footer__nav-sublink {
  transition: color 0.3s ease;
}
.footer__nav-link:hover, .footer__nav-sublink:hover {
  color: #E3BC39;
}
.footer__nav-button {
  cursor: inherit;
}
.footer__nav-subitem {
  text-indent: 1rem;
}
.footer__bottom {
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 568px) {
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
.footer__license {
  font-size: 0.875rem;
  line-height: 2.2;
  display: block;
  padding-bottom: 2rem;
}
@media (max-width: 568px) {
  .footer__license {
    text-align: left;
  }
}
.footer__copyright {
  display: block;
  font-size: 0.875rem;
  text-align: center;
}

.btn {
  text-transform: uppercase;
  color: #26248A;
  background-color: #fefefe;
  font-weight: 600;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  border: 1px solid #26248A;
  transition: color 0.3s ease, background-color 0.3s ease;
}
.btn:hover {
  color: #fefefe;
  background-color: #26248A;
}
.btn:hover .fa-angle-right {
  transition: transform 0.3s ease;
  transform: translateX(3px);
}

.js-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .js-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

.js-fade-immediate {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (prefers-reduced-motion: reduce) {
  .js-fade-immediate {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.is-loaded .js-fade-immediate {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-immediate:nth-child(1),
.js-fade.is-visible:nth-child(1) {
  transition-delay: 0s;
}

.js-fade-immediate:nth-child(2),
.js-fade.is-visible:nth-child(2) {
  transition-delay: 0.1s;
}

.js-fade-immediate:nth-child(3),
.js-fade.is-visible:nth-child(3) {
  transition-delay: 0.2s;
}

.js-fade-immediate:nth-child(4),
.js-fade.is-visible:nth-child(4) {
  transition-delay: 0.3s;
}

.js-fade-immediate:nth-child(5),
.js-fade.is-visible:nth-child(5) {
  transition-delay: 0.4s;
}

.js-fade-immediate:nth-child(6),
.js-fade.is-visible:nth-child(6) {
  transition-delay: 0.5s;
}

.js-fade-immediate:nth-child(7),
.js-fade.is-visible:nth-child(7) {
  transition-delay: 0.6s;
}

.js-fade-immediate:nth-child(8),
.js-fade.is-visible:nth-child(8) {
  transition-delay: 0.7s;
}

.js-fade-immediate:nth-child(9),
.js-fade.is-visible:nth-child(9) {
  transition-delay: 0.8s;
}

.js-fade-immediate:nth-child(10),
.js-fade.is-visible:nth-child(10) {
  transition-delay: 0.9s;
}

.js-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.js-fade-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-fade-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-fade-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.js-fade-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-fade-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}
@media (prefers-reduced-motion: reduce) {
  .js-fade-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.js-fade-in {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.js-fade-in.is-visible {
  opacity: 1;
}
@media (prefers-reduced-motion: reduce) {
  .js-fade-in {
    opacity: 1;
    transition: none;
  }
}

.js-fade,
.js-fade-immediate,
.js-fade-up,
.js-fade-left,
.js-fade-right,
.js-fade-in {
  will-change: opacity, transform;
}
.js-fade.is-visible,
.js-fade-immediate.is-visible,
.js-fade-up.is-visible,
.js-fade-left.is-visible,
.js-fade-right.is-visible,
.js-fade-in.is-visible {
  will-change: auto;
}

.page-top-btn {
  /* 配置 */
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  /* サイズ・形状 */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* デザイン */
  background-color: #26248A;
  border: none;
  cursor: pointer;
  /* 初期状態：非表示 */
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  /* アニメーション */
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

/* 表示状態 */
.page-top-btn.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ホバー時 */
.page-top-btn:hover {
  background-color: #2495A3;
  transform: translateY(-2px);
}

/* アクティブ時（クリック時） */
.page-top-btn:active {
  transform: translateY(0);
}

/* 矢印アイコン */
.page-top-btn__arrow {
  display: block;
  color: #fefefe;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* ========================================
   レスポンシブ対応
   ======================================== */
/* タブレット */
@media screen and (max-width: 769px) {
  .page-top-btn {
    right: 15px;
    bottom: 15px;
    width: 45px;
    height: 45px;
  }
  .page-top-btn__arrow {
    font-size: 22px;
  }
}
/* スマートフォン */
@media screen and (max-width: 568px) {
  .page-top-btn {
    right: 12px;
    bottom: 12px;
    width: 40px;
    height: 40px;
  }
  .page-top-btn__arrow {
    font-size: 20px;
  }
}
/* ========================================
   アクセシビリティ対応
   ======================================== */
/* フォーカス時（キーボード操作） */
.page-top-btn:focus {
  outline: 2px solid #4a90e2;
  outline-offset: 2px;
}

/* タッチデバイスでのホバー無効化 */
@media (hover: none) {
  .page-top-btn:hover {
    background-color: #333;
    transform: translateY(0);
  }
  .page-top-btn.is-show:hover {
    transform: translateY(0);
  }
}
/* ダークモード対応（オプション） */
@media (prefers-color-scheme: dark) {
  .page-top-btn {
    background-color: #444;
  }
  .page-top-btn:hover {
    background-color: #666;
  }
}
/* ========================================
   カスタマイズ用コメント
   ======================================== */
/*
【カラー変更例】
background-color: #007bff;  ← ブルー系
background-color: #28a745;  ← グリーン系
background-color: #dc3545;  ← レッド系

【配置変更例】
左下配置：left: 20px; right: auto;
中央下配置：left: 50%; transform: translateX(-50%);

【サイズ変更例】
大きめ：width: 60px; height: 60px;
小さめ：width: 40px; height: 40px;
*/
html {
  font-size: 16px;
  color: #000;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: Helvetica, Arial, "Noto Sans JP", sans-serif;
  font-size: 1.125rem;
}
@media (max-width: 568px) {
  body {
    font-size: 16px;
  }
}
body.is-menu-open .header__logo img {
  filter: brightness(0) invert(1);
}

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

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

.l-container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 1200px) {
  .l-container {
    padding-inline: 0;
    max-width: 1000px;
  }
}
@media (min-width: 1025px) {
  .l-container--xl {
    max-width: 1440px;
    padding-inline: 24px;
  }
}
@media (min-width: 1025px) {
  .l-container--lg {
    max-width: 1160px;
  }
}
@media (min-width: 1025px) {
  .l-container--sm {
    max-width: 796px;
  }
}

.l-section {
  margin: 4rem auto 14.25rem;
}

.heading-tertiary {
  width: clamp(150px, 45.161px + 8.065vw, 200px);
  height: clamp(150px, 45.161px + 8.065vw, 200px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: absolute;
  left: 0;
  top: -50px;
  background: linear-gradient(90deg, #3F76FF, #221E8D);
  color: #fefefe;
  font-size: clamp(1.3rem, 1.071rem + 0.477vw, 1.5rem);
  letter-spacing: 0.1em;
  padding-right: 0.5rem;
  text-align: center;
  font-weight: 600;
}
@media (max-width: 568px) {
  .heading-tertiary {
    position: relative;
    left: 0;
    width: auto;
    height: auto;
    border-radius: 0;
    background: none;
    color: #221E8D;
    padding-left: 4rem;
    justify-content: flex-start;
  }
  .heading-tertiary::before {
    content: "";
    position: absolute;
    left: -46.5px;
    top: 50%;
    transform: translateY(-50%);
    width: 93px;
    height: 93px;
    border-radius: 50%;
    background: linear-gradient(90deg, #3F76FF, #221E8D);
  }
}
@media (min-width: 569px) {
  .heading-tertiary.itconsul-flow__heading, .heading-tertiary.itconsul-achievements__heading, .heading-tertiary.purchase-flow__heading, .heading-tertiary.sales-flow__heading {
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    padding-right: 0;
  }
}
@media (max-width: 568px) {
  .heading-tertiary.itconsul-flow__heading, .heading-tertiary.itconsul-achievements__heading, .heading-tertiary.purchase-flow__heading, .heading-tertiary.sales-flow__heading {
    left: -20px;
  }
}
.heading-tertiary.purchase-flow__heading, .heading-tertiary.sales-flow__heading {
  top: 0;
}

.bg-circle {
  width: 83px;
  height: 83px;
  border-radius: 50%;
  color: rgb(217, 217, 217);
}

.page-header {
  background-color: #f2f2f2;
  height: auto;
  min-height: 400px;
  border-radius: 0 0 64px 64px;
  padding-top: 10rem;
  position: relative;
}
@media (max-width: 1025px) {
  .page-header {
    height: 20vh;
    padding-top: 10rem;
    border-radius: 0 0 32px 32px;
  }
}
.page-header__inner {
  z-index: 1;
}
@media (max-width: 568px) {
  .page-header__inner {
    text-align: center;
  }
}
.page-header__label, .page-header__title {
  color: #26248A;
}
.page-header__label {
  margin-bottom: 1rem;
}
.page-header__title {
  font-size: 2.5rem;
  font-weight: 600;
}
@media (max-width: 568px) {
  .page-header__title {
    font-size: 1.5rem;
  }
}
.page-header--itconsul, .page-header--game {
  height: 560px;
  position: relative;
  padding-top: calc(10rem + 96px);
}
@media (max-width: 1025px) {
  .page-header--itconsul, .page-header--game {
    height: 30vh;
    padding-top: 8rem;
    margin-bottom: clamp(9rem, 7.772rem + 5.039vw, 11rem);
    border-radius: 0 0 32px 32px;
  }
}
@media (max-width: 568px) {
  .page-header--itconsul, .page-header--game {
    margin-bottom: 15rem;
  }
}
@media (max-width: 430px) {
  .page-header--itconsul, .page-header--game {
    margin-bottom: 10rem;
  }
}
.page-header--itconsul {
  text-align: right;
}
@media (max-width: 1025px) {
  .page-header--itconsul {
    height: 30vh;
    border-radius: 0 0 32px 32px;
    text-align: left;
  }
}
.page-header__description {
  font-weight: 600;
  line-height: 2.2;
  font-size: 1.5rem;
  margin-top: 2.5rem;
}
@media (max-width: 568px) {
  .page-header__description {
    font-size: 18px;
    line-height: 1.8;
    margin-top: 2rem;
  }
}
@media (max-width: 1025px) {
  .page-header__figure {
    display: none;
  }
}
.page-header__figure--it, .page-header__figure--game {
  padding-top: 6rem;
}
.page-header__figure--it {
  position: absolute;
  top: 50px;
  left: clamp(20px, -177.59px + 19.277vw, 100px);
  width: clamp(327px, 291.789px + 9.39vw, 427px);
}
.page-header__figure--game {
  position: absolute;
  top: 50px;
  right: clamp(0px, -197.59px + 19.277vw, 80px);
  width: clamp(250px, -120.482px + 36.145vw, 400px);
}
.page-header__circle {
  z-index: 1;
  border-radius: 50%;
  z-index: 1;
}
@media (max-width: 1025px) {
  .page-header__circle {
    display: none;
  }
}
.page-header__circle--1 {
  background: linear-gradient(90deg, #3F76FF, #221E8D);
  position: absolute;
  width: clamp(71px, -52.494px + 12.048vw, 121px);
  height: clamp(71px, -52.494px + 12.048vw, 121px);
  left: clamp(20px, -204.759px + 21.928vw, 111px);
  bottom: -50px;
}
.page-header__circle--2 {
  background-color: rgba(217, 217, 217, 0.5);
  position: absolute;
  width: clamp(33px, -90.494px + 12.048vw, 83px);
  height: clamp(33px, -90.494px + 12.048vw, 83px);
  left: clamp(59px, -165.759px + 21.928vw, 150px);
  bottom: clamp(0px, -61.747px + 6.024vw, 25px);
}
.page-header--itconsul .page-header__circle--1 {
  width: clamp(71px, -52.494px + 12.048vw, 121px);
  height: clamp(71px, -52.494px + 12.048vw, 121px);
  left: 500px;
}
.page-header--itconsul .page-header__circle--2 {
  width: clamp(33px, -90.494px + 12.048vw, 83px);
  height: clamp(33px, -90.494px + 12.048vw, 83px);
  left: 550px;
}

@media (max-width: 568px) {
  .archive .page-header,
  .page-template-company .page-header,
  .page-template-privacy-policy .page-header,
  .page-template-site-policy .page-header {
    min-height: 200px;
    padding-top: 5.5rem;
  }
}

.flow-list {
  position: relative;
}
@media (max-width: 568px) {
  .flow-list {
    padding-top: 4rem;
  }
}
@media (max-width: 568px) {
  .flow-list--itconsul {
    padding-bottom: 4rem;
  }
}
.flow-list__list {
  padding: 15rem 0 6rem;
}
@media (max-width: 568px) {
  .flow-list__list {
    padding: 0;
  }
}
.flow-list__list--purchase, .flow-list__list--sales {
  padding-bottom: 0;
}
@media (max-width: 568px) {
  .flow-list__list--purchase, .flow-list__list--sales {
    padding-top: 4rem;
  }
}
.flow-list__item {
  margin-bottom: 4rem;
}
.flow-list__item:not(:last-child)::after {
  content: "\f0d7";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #D4DCEF;
  font-size: 3rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.flow-list__item--sales:not(:last-child)::after {
  color: #fefefe;
}
.flow-list__item--purchase:last-child, .flow-list__item--sales:last-child {
  margin-bottom: 1rem;
}
.flow-list__step {
  border-radius: 44px;
  padding: 2rem 5rem;
  color: #26248A;
  line-height: 2.2;
  box-shadow: 1px 1px 8px 0px rgb(169, 179, 191);
  background-color: #fefefe;
}
@media (max-width: 568px) {
  .flow-list__step {
    border-radius: 32px;
    padding: 2rem;
  }
}
.flow-list__step-title {
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 568px) {
  .flow-list__step-title {
    margin-bottom: 1rem;
  }
}

.fv {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #f2f2f2;
  border-radius: 0 0 64px 64px;
}
@media (max-width: 1025px) and (min-width: 770px) {
  .fv {
    height: 70vh;
  }
}
@media (max-width: 568px) {
  .fv {
    background-color: transparent;
  }
}
.fv::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-image-set(url("../img/bg/home_header_bg_pc.webp") type("image/webp"), url("../img/bg/home_header_bg_pc.png") type("image/png"));
  background-image: image-set(url("../img/bg/home_header_bg_pc.webp") type("image/webp"), url("../img/bg/home_header_bg_pc.png") type("image/png"));
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  z-index: 0;
}
@media (max-width: 568px) {
  .fv::before {
    background-image: -webkit-image-set(url("../img/bg/home_header_bg_sp.webp") type("image/webp"), url("../img/bg/home_header_bg_sp.png") type("image/png"));
    background-image: image-set(url("../img/bg/home_header_bg_sp.webp") type("image/webp"), url("../img/bg/home_header_bg_sp.png") type("image/png"));
    background-size: 150%;
  }
}
.fv__inner {
  position: relative;
  max-width: 1440px;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
@media (max-width: 568px) {
  .fv__inner {
    padding: 0 20px;
  }
}
.fv__inner .l-container {
  padding-inline: 0;
}
@media (max-width: 1025px) {
  .fv__inner .l-container {
    padding-inline: 4rem;
  }
}
@media (max-width: 900px) and (min-width: 770px) {
  .fv__inner .l-container {
    padding-inline: 0;
  }
}
@media (max-width: 769px) {
  .fv__inner .l-container {
    padding-inline: 24px;
  }
}
.fv__text-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 40px;
}
@media (max-width: 769px) {
  .fv__text-wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 25px;
  }
}
.fv__text {
  color: #fefefe;
  line-height: 1.4;
  text-align: left;
}
@media (max-width: 769px) {
  .fv__text {
    text-align: center;
  }
}
.fv__text--ja {
  font-weight: 600;
  font-size: clamp(1.5rem, 1.111rem + 0.833vw, 2rem);
  max-width: 500px;
  line-height: 2.2;
  flex: 0 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 500px;
}
@media (max-width: 769px) {
  .fv__text--ja {
    font-size: clamp(3rem, 0.556rem + 5.278vw, 5.5rem);
    max-width: 100%;
    order: 1;
  }
}
@media (max-width: 568px) {
  .fv__text--ja {
    font-size: 2rem;
  }
}
.fv__text--en {
  font-weight: 700;
  font-size: clamp(3rem, 0.556rem + 5.278vw, 5.5rem);
  line-height: 1.2;
  padding-top: 10rem;
  flex: 1;
  max-width: 700px;
}
@media (max-width: 769px) {
  .fv__text--en {
    padding-top: 0;
    font-size: clamp(1.5rem, 1.111rem + 0.833vw, 2rem);
    max-width: 100%;
    order: 2;
    line-height: 1.6;
  }
}
@media (max-width: 568px) {
  .fv__text--en {
    font-size: 1rem;
    max-width: 60%;
    display: block;
    min-width: 0;
    flex-shrink: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
  }
}
.fv__circle {
  border-radius: 50%;
  position: absolute;
  z-index: 0;
  top: 100vh;
}
@media (max-width: 1025px) and (min-width: 770px) {
  .fv__circle {
    top: 70vh;
  }
}
@media (max-width: 769px) {
  .fv__circle {
    display: none;
  }
}
.fv__circle--1 {
  background: linear-gradient(90deg, #3F76FF, #221E8D);
  width: 121px;
  height: 121px;
  left: 111px;
  margin-top: -50px;
}
@media (max-width: 1025px) and (min-width: 770px) {
  .fv__circle--1 {
    width: 100px;
    height: 100px;
  }
}
.fv__circle--2 {
  background: linear-gradient(90deg, #3F76FF, #221E8D);
  width: 247px;
  height: 247px;
  right: 70px;
  margin-top: -120px;
}
@media (max-width: 1025px) and (min-width: 770px) {
  .fv__circle--2 {
    width: 150px;
    height: 150px;
  }
}
.fv__circle--3 {
  background-color: rgba(217, 217, 217, 0.5);
  width: 83px;
  height: 83px;
  right: 100px;
}
@media (max-width: 1025px) and (min-width: 770px) {
  .fv__circle--3 {
    width: 50px;
    height: 50px;
  }
}

.intro {
  margin-top: 8rem;
  color: #26248A;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 2.2;
}
@media (max-width: 568px) {
  .intro {
    margin-top: 24px;
  }
}
@media (max-width: 568px) {
  .intro__lead {
    font-size: 1.125rem;
  }
}

.top-about {
  margin: 4rem 0;
}
@media (max-width: 568px) {
  .top-about {
    margin: 24px 0;
  }
}
.top-about__content {
  display: flex;
  flex-direction: row-reverse;
  gap: 70px;
}
@media (max-width: 568px) {
  .top-about__content {
    flex-direction: column;
    gap: 24px;
  }
}
.top-about__textbox {
  flex: 1;
}
@media (max-width: 568px) {
  .top-about__textbox {
    display: contents;
  }
}
.top-about__text {
  line-height: 2.2;
  margin-bottom: 1.5rem;
}
@media (max-width: 568px) {
  .top-about__text {
    order: 1;
    margin-bottom: 0;
  }
}
.top-about__imgbox {
  flex: 1;
  max-width: 360px;
}
@media (max-width: 568px) {
  .top-about__imgbox {
    order: 2;
    max-width: 282px;
    display: inline-block;
    margin: 0 auto;
  }
}
.top-about__name {
  font-weight: 600;
  padding-bottom: 5rem;
}
@media (max-width: 568px) {
  .top-about__name {
    order: 3;
    text-align: center;
    padding-bottom: 24px;
  }
}
@media (max-width: 568px) {
  .top-about__btn {
    order: 4;
    display: inline-block;
    margin: 0 auto 6.125rem;
  }
}

.top-service {
  position: relative;
  background-color: #f2f2f2;
  border-radius: 64px;
  padding: 4rem 0;
}
@media (max-width: 568px) {
  .top-service {
    border-radius: inherit;
    padding: 4rem 0 1rem;
  }
}
.top-service > .l-container--xl {
  position: relative;
  top: -50px;
}
@media (max-width: 568px) {
  .top-service > .l-container--xl {
    top: 0;
  }
}
.top-service__list {
  display: flex;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
}
@media (max-width: 1200px) {
  .top-service__list {
    justify-content: center;
    gap: clamp(80px, 44.051px + 6.329vw, 120px);
  }
}
@media (max-width: 1025px) {
  .top-service__list {
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 4rem;
  }
}
@media (max-width: 769px) {
  .top-service__list {
    display: block;
    padding-top: 0;
  }
}
.top-service__item {
  max-width: 400px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 1025px) {
  .top-service__item {
    margin: 0 auto 4rem;
  }
}
@media (max-width: 769px) {
  .top-service__item {
    max-width: 100%;
  }
}
.top-service__img {
  background-color: #fefefe;
  border-radius: 44px;
}
@media (max-width: 769px) {
  .top-service__img {
    width: 60%;
    margin: 0 auto;
  }
}
@media (max-width: 568px) {
  .top-service__img {
    width: 100%;
    margin: 0 auto;
  }
}
.top-service__title {
  font-size: 1.5rem;
  color: #26248A;
  font-weight: 600;
  margin: 2.5rem 0;
}
@media (max-width: 568px) {
  .top-service__title {
    margin: 24px 0;
    font-size: 1.125rem;
  }
}
.top-service__text {
  line-height: 2.2;
  padding-bottom: 5rem;
}
@media (max-width: 1025px) {
  .top-service__text {
    padding-bottom: 24px;
  }
}
.top-service__btn {
  margin-top: auto;
  display: inline-flex;
}

.top-topics {
  position: relative;
  padding: 4rem 0;
}
.top-topics > .l-container--xl {
  position: relative;
  top: -50px;
}
@media (max-width: 568px) {
  .top-topics > .l-container--xl {
    top: 0;
  }
}
@media (max-width: 1025px) {
  .top-topics > .l-container {
    padding-inline: 4rem;
  }
}
@media (max-width: 769px) {
  .top-topics > .l-container {
    padding-inline: 24px;
  }
}
@media (max-width: 568px) {
  .top-topics__container {
    margin-bottom: 4rem;
  }
}
.top-topics__list {
  margin-bottom: 4rem;
}
@media (max-width: 1025px) {
  .top-topics__list {
    margin-top: 4rem;
  }
}
@media (max-width: 568px) {
  .top-topics__list {
    margin-top: 1rem;
  }
}
.top-topics__item {
  line-height: 2.2;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px dotted #2495A3;
}
.top-topics__link {
  transition: color 0.3s ease, background-color 0.3s ease;
}
.top-topics__link:hover {
  color: #2495A3;
}
.top-topics__date {
  font-size: 1rem;
  padding-right: 1rem;
  display: block;
}
@media (max-width: 568px) {
  .top-topics__date {
    display: inline;
  }
}

@media (max-width: 1025px) {
  .page-template-company main .l-container {
    padding-inline: 4rem;
  }
}
@media (max-width: 769px) {
  .page-template-company main .l-container {
    padding-inline: 24px;
  }
}

.company-message {
  margin: 4rem auto;
}
.company-message__inner {
  display: flex;
  gap: 50px;
}
@media (max-width: 769px) {
  .company-message__inner {
    gap: 30px;
  }
}
@media (max-width: 568px) {
  .company-message__inner {
    flex-direction: column;
  }
}
.company-message__content {
  line-height: 2.2;
  flex: 1;
}
@media (max-width: 568px) {
  .company-message__content {
    display: contents;
  }
}
@media (max-width: 568px) {
  .company-message__text {
    order: 1;
  }
}
.company-message__signature {
  font-weight: 600;
}
@media (max-width: 568px) {
  .company-message__signature {
    order: 3;
    text-align: center;
  }
}
.company-message__img-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media (max-width: 568px) {
  .company-message__img-wrapper {
    order: 2;
  }
}
.company-message__img {
  max-width: 400px;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 769px) {
  .company-message__img {
    max-width: 282px;
  }
}

.company-info {
  position: relative;
  padding: 4rem 0;
  background-color: #D4DCEF;
  border-radius: 64px;
}
@media (max-width: 568px) {
  .company-info {
    border-radius: inherit;
  }
}
.company-info > .l-container {
  padding-top: 2.5rem;
}
@media (max-width: 568px) {
  .company-info > .l-container {
    padding-top: 0;
  }
}
.company-info > .l-container--xl {
  position: relative;
  top: -50px;
}
@media (max-width: 568px) {
  .company-info > .l-container--xl {
    top: inherit;
  }
}
.company-info__list {
  line-height: 2.2;
  display: grid;
  grid-template-columns: 8rem 1fr;
}
.company-info__term {
  font-weight: normal;
}

.company-partners {
  position: relative;
  padding: 4rem 0;
  margin-bottom: 6rem;
}
.company-partners > .l-container {
  padding-top: 1rem;
}
@media (max-width: 568px) {
  .company-partners > .l-container {
    padding-top: 0;
  }
}
.company-partners > .l-container--xl {
  position: relative;
  top: -50px;
}
@media (max-width: 568px) {
  .company-partners > .l-container--xl {
    top: inherit;
  }
}
.company-partners__text {
  line-height: 2.2;
  margin-bottom: 2.5rem;
}
@media (max-width: 1400px) {
  .company-partners__text {
    width: 90%;
    text-align: left;
    margin: 2rem auto 1rem;
  }
}
@media (max-width: 1025px) {
  .company-partners__text {
    margin: 3rem auto 1rem;
  }
}
@media (max-width: 568px) {
  .company-partners__text {
    width: 100%;
    margin: 0;
  }
}
.company-partners__img-wrapper {
  margin: 0 auto;
  max-width: 600px;
}

@media (max-width: 1025px) {
  .page-template-business01 main .l-container {
    padding-inline: 4rem;
  }
}
@media (max-width: 769px) {
  .page-template-business01 main .l-container {
    padding-inline: 24px;
  }
}

.itconsul-intro {
  padding-bottom: 5rem;
  max-width: 1000px;
  margin: 4rem auto;
}
@media (max-width: 1025px) {
  .itconsul-intro {
    padding-bottom: 0;
  }
}
.itconsul-intro__inner {
  margin-right: 0;
}
.itconsul-intro__text {
  line-height: 2.2;
}

.itconsul-visual {
  margin: 0 auto;
  z-index: 1;
}
.itconsul-visual--pc {
  margin-bottom: -60px;
}
@media (max-width: 1025px) {
  .itconsul-visual--pc {
    display: none;
  }
}
.itconsul-visual--tb {
  display: none;
}
@media (max-width: 1025px) {
  .itconsul-visual--tb {
    display: block;
    width: 50%;
    padding-left: 24px;
    position: absolute;
    right: 0;
    height: 30vh;
  }
}
@media (max-width: 1025px) and (min-width: 770px) {
  .itconsul-visual--tb {
    margin-top: clamp(-4rem, -0.08rem - 11.022vw, -10rem);
  }
}
@media (max-width: 568px) {
  .itconsul-visual--tb {
    padding: 2rem 24px;
    width: 100%;
    height: auto;
    top: auto;
    right: auto;
  }
}

.itconsul-achievements {
  position: relative;
  background-color: #D4DCEF;
  border-radius: 64px;
  padding: clamp(10rem, 2.59rem + 11.566vw, 13rem) 0 10rem;
  z-index: -1;
}
@media (max-width: 769px) {
  .itconsul-achievements {
    padding-top: 10rem;
  }
}
@media (max-width: 568px) {
  .itconsul-achievements {
    border-radius: inherit;
    padding: 5rem 0;
  }
}
.itconsul-achievements__list {
  display: flex;
  gap: 40px;
  flex: 1;
}
@media (max-width: 769px) {
  .itconsul-achievements__list {
    flex: initial;
    flex-wrap: wrap;
  }
}
@media (max-width: 568px) {
  .itconsul-achievements__list {
    flex-wrap: wrap;
  }
}
.itconsul-achievements__item {
  background-color: #fefefe;
  padding: 3rem 2.5rem;
  border-radius: 44px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}
@media (max-width: 769px) {
  .itconsul-achievements__item {
    flex: initial;
  }
}
@media (max-width: 568px) {
  .itconsul-achievements__item {
    padding: 2rem;
    gap: 20px;
  }
}
.itconsul-achievements__company {
  font-weight: 600;
  margin: 0 auto;
  font-size: 1.75rem;
  font-weight: 900;
}
@media (max-width: 568px) {
  .itconsul-achievements__company {
    font-size: 1.125rem;
  }
}
.itconsul-achievements__figure {
  width: 80%;
  margin: 0 auto;
}
@media (max-width: 769px) {
  .itconsul-achievements__figure {
    width: 100%;
  }
}
.itconsul-achievements__img {
  width: 100%;
}
.itconsul-achievements__description {
  line-height: 2.2;
}

.itconsul-flow__list {
  padding: clamp(10rem, -2.349rem + 19.277vw, 15rem) 0 6rem;
}
@media (max-width: 568px) {
  .itconsul-flow__list {
    padding-top: 0;
  }
}

@media (max-width: 1025px) {
  .page-template-business02 main .l-container {
    padding-inline: 4rem;
  }
}
@media (max-width: 769px) {
  .page-template-business02 main .l-container {
    padding-inline: 24px;
  }
}

.game__heading-secondary {
  color: #26248A;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 568px) {
  .game__heading-secondary {
    font-size: 1.125rem;
  }
}

.purchase-table__note,
.purchase-flow__note,
.sales-section__note,
.sales-flow__note {
  font-size: 14px;
  line-height: 1.5;
}

.game-intro {
  max-width: 1000px;
  margin: 4rem auto;
}
.game-intro__figure {
  z-index: 0;
}
.game-intro__figure--tb {
  display: none;
}
@media (max-width: 1025px) {
  .game-intro__figure--tb {
    display: block;
    width: 60%;
    padding: 0 24px;
    position: absolute;
    right: 0;
    top: 60%;
    height: 30vh;
  }
}
@media (max-width: 568px) {
  .game-intro__figure--tb {
    width: 100%;
    top: auto;
    right: auto;
    padding-top: 2rem;
  }
}
.game-intro__inner {
  margin-left: 0;
  line-height: 2.2;
}
.game-intro > .l-container {
  padding-inline: inherit;
}
@media (max-width: 1025px) {
  .game-intro > .l-container {
    padding-inline: 24px;
  }
}

.purchase-section {
  background-color: #f2f2f2;
  border-radius: 64px 64px 0 0;
  padding: 4rem 0 13rem;
}
@media (max-width: 568px) {
  .purchase-section {
    border-radius: inherit;
    padding-bottom: 10rem;
  }
}

.purchase-overview__subtitle {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 568px) {
  .purchase-overview__subtitle {
    font-size: 16px;
  }
}
.purchase-overview__text {
  background-color: #fefefe;
  border-radius: 44px;
  line-height: 2.2;
  padding: 1.5rem 5.75rem;
  margin-bottom: 1rem;
}
@media (max-width: 568px) {
  .purchase-overview__text {
    padding: 1.5rem 24px;
  }
}

hr {
  max-width: 7rem;
  color: #26248A;
  height: 2px;
  display: block;
  margin: 4rem auto;
}
@media (max-width: 568px) {
  hr {
    margin: 1.5rem auto;
  }
}

.purchase-table {
  margin-bottom: 1rem;
  overflow-x: auto;
}
.purchase-table__table {
  min-width: 769px;
  width: 100%;
  line-height: 2.2;
  table-layout: fixed;
}
@media (min-width: 568px) {
  .purchase-table__table {
    min-width: 100%;
  }
}
.purchase-table::-webkit-scrollbar {
  height: 8px;
}
.purchase-table::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
}
.purchase-table::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}
.purchase-table .simplebar-horizontal .simplebar-scrollbar::before {
  height: 3px;
}
.purchase-table .simplebar-track.simplebar-horizontal {
  height: 5px !important;
}
.purchase-table .simplebar-content {
  padding-bottom: 2rem;
}
.purchase-table {
  /* 1列目（メーカー） */
}
.purchase-table__header:nth-child(1), .purchase-table__cell:nth-child(1) {
  padding-left: 3rem;
}
@media (max-width: 769px) {
  .purchase-table__header:nth-child(1), .purchase-table__cell:nth-child(1) {
    padding-left: 1rem;
  }
}
@media (max-width: 568px) {
  .purchase-table__header {
    font-size: 0.875rem;
  }
}
.purchase-table {
  /* 最終列（備考） */
}
.purchase-table__header:last-child, .purchase-table__cell:last-child {
  padding-right: 3rem;
}
@media (max-width: 769px) {
  .purchase-table__header:last-child, .purchase-table__cell:last-child {
    padding-left: 1rem;
  }
}
.purchase-table__header, .purchase-table__cell {
  padding: 0.5rem 0;
  white-space: nowrap;
}
@media (max-width: 568px) {
  .purchase-table__header, .purchase-table__cell {
    width: 13rem;
  }
}
.purchase-table__row:nth-child(odd) {
  background-color: #fefefe;
}
.purchase-table__note {
  display: block;
  margin-bottom: 4rem;
}

.condition-cards {
  margin-bottom: 4rem;
}
@media (max-width: 568px) {
  .condition-cards {
    background-color: #fefefe;
    border-radius: 32px;
    margin-bottom: 0;
  }
}
.condition-cards__title {
  color: #26248A;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (max-width: 568px) {
  .condition-cards__title {
    padding: 2rem 0;
    margin-bottom: 0;
    font-size: 1.125rem;
  }
}
.condition-cards__list {
  display: flex;
  gap: 10px;
}
@media (max-width: 568px) {
  .condition-cards__list {
    padding: 0 1rem 2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.condition-cards__item {
  width: 33.3333333333%;
  background-color: #fefefe;
  padding: 2.5rem 2rem;
  border-radius: 44px;
}
@media (max-width: 568px) {
  .condition-cards__item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0;
  }
}
.condition-cards__figure {
  display: flex;
  justify-content: center;
}
.condition-cards__img {
  width: 84px;
}
.condition-cards__body {
  line-height: 2.2;
}
@media (max-width: 568px) {
  .condition-cards__body {
    flex: 1;
  }
}
.condition-cards__heading {
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
}
@media (max-width: 568px) {
  .condition-cards__heading {
    font-size: 1.125rem;
    text-align: left;
  }
}
@media (max-width: 568px) {
  .condition-cards__text {
    font-size: 1rem;
    line-height: 2;
  }
}

.purchase-flow {
  position: relative;
}

.sales-section {
  background-color: #D4DCEF;
  border-radius: 64px 64px 0 0;
  padding: 4rem 0 13rem;
  margin-top: -60px;
}
@media (max-width: 568px) {
  .sales-section {
    border-radius: inherit;
    padding-bottom: 10rem;
  }
}
.sales-section__inner {
  margin: 0 auto 4rem;
}
.sales-section__lead {
  text-align: center;
  line-height: 2.2;
}
@media (max-width: 568px) {
  .sales-section__lead {
    text-align: left;
  }
}

.product-info {
  margin-top: 4rem;
}
.product-info__item {
  background-color: #fefefe;
  border-radius: 44px;
  line-height: 2.2;
  padding: 1.5rem 5.75rem;
  margin-bottom: 2rem;
}
@media (max-width: 568px) {
  .product-info__item {
    border-radius: 32px;
    padding: 2rem;
  }
}
.product-info__label {
  text-align: center;
  font-weight: 600;
}

@media (max-width: 1025px) {
  .archive main .l-container {
    padding-inline: 4rem;
  }
}
@media (max-width: 769px) {
  .archive main .l-container {
    padding-inline: 24px;
  }
}

.archive:has(.pagination) .topics-list__inner {
  margin: 4rem auto 0;
}

.topics-list__inner {
  margin: 4rem auto;
  padding-bottom: 4rem;
}
.topics-list__item {
  line-height: 2.2;
  border-bottom: 1px dotted #2495A3;
  margin-bottom: 2rem;
}
.topics-list__item--simple {
  line-height: 2.2;
  align-items: center;
}
.topics-list__simple-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
.topics-list__simple-link:hover {
  color: #2495A3;
}
.topics-list__simple-link:hover .topics-list__simple-icon {
  transform: translateX(3px);
}
.topics-list__simple-icon {
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
}
.topics-list__simple-content {
  display: flex;
  gap: 1rem;
}
.topics-list__simple-date, .topics-list__simple-title {
  margin-bottom: 2rem;
  font-size: 18px;
}
.topics-list__header {
  margin-bottom: 1.5rem;
}
.topics-list__title {
  font-size: 1.5rem;
  font-weight: 600;
}
.topics-list__content {
  margin-bottom: 2rem;
}

.pagination {
  margin: 0 auto 15rem;
}
.pagination li {
  transition: color 0.3s ease;
}
.pagination li:hover {
  color: #2495A3;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

@media (max-width: 1025px) {
  .single-post main .l-container {
    padding-inline: 4rem;
  }
}
@media (max-width: 769px) {
  .single-post main .l-container {
    padding-inline: 24px;
  }
}

.article {
  margin: 4rem auto 10rem;
  line-height: 2.2;
}
.article__header {
  margin-bottom: 1.5rem;
}
.article__title {
  font-size: 1.5rem;
  font-weight: 600;
}
.article__content {
  margin-bottom: 3.5rem;
}
.article__back {
  margin-top: 5rem;
}

@media (max-width: 1025px) {
  .page-template-contact-thanks main .l-container {
    padding-inline: 4rem;
  }
}
@media (max-width: 769px) {
  .page-template-contact-thanks main .l-container {
    padding-inline: 24px;
  }
}

.contact-thanks__item {
  margin: 4rem auto 10rem;
  line-height: 2.2;
}
.contact-thanks__heading {
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.contact-thanks__text {
  margin-bottom: 5rem;
}

@media (max-width: 1025px) {
  .page-template-site-policy main .l-container {
    padding-inline: 4rem;
  }
}
@media (max-width: 769px) {
  .page-template-site-policy main .l-container {
    padding-inline: 24px;
  }
}

.site-policy__list {
  line-height: 2.2;
}
.site-policy__item {
  list-style-position: inside;
  list-style-type: decimal;
  padding-bottom: 50px;
}
.site-policy__heading {
  font-weight: 500;
  display: inline;
}
.site-policy__text {
  overflow-wrap: anywhere;
}

@media (max-width: 1025px) {
  .page-template-privacy-policy main .l-container {
    padding-inline: 4rem;
  }
}
@media (max-width: 769px) {
  .page-template-privacy-policy main .l-container {
    padding-inline: 24px;
  }
}

.privacy {
  line-height: 2.2;
}
.privacy__intro {
  padding-bottom: 50px;
}
.privacy__item {
  list-style-position: inside;
  list-style-type: decimal;
  padding-bottom: 30px;
}
.privacy__sublist-item {
  list-style-position: inside;
  list-style-type: disc;
}
.privacy__link {
  border-bottom: 1px solid #000;
}

@media (max-width: 1025px) {
  .error404 main .l-container {
    padding-inline: 4rem;
  }
}
@media (max-width: 769px) {
  .error404 main .l-container {
    padding-inline: 24px;
  }
}

.not-found__heading {
  font-weight: 600;
  font-size: 1.5rem;
  color: #26248A;
  margin-bottom: 2.5rem;
  line-height: 2.2;
}
.not-found__text {
  line-height: 2.2;
  margin-bottom: 5rem;
}