@charset "UTF-8";
:root {
  --innerValue: 1280;
  --inner: var(--innerValue) * 1px;
  --padding-pc: 80px;
  --padding-md: 40px;
  --padding-sp: 24px;
  --light: 300;
  --normal: 400;
  --medium: 500;
  --semi-bold: 600;
  --bold: 700;
  --ex-bold: 800;
  --noto-font-family: "Noto Sans JP", sans-serif;
  --en-font-family: "Barlow Condensed", sans-serif;
  --en2-font-family: "Helvetica Neue", sans-serif;
  --base-font-family: "Zen Kaku Gothic New", sans-serif;
  --white: #fff;
  --white-2: #fefefe;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #efefef;
  --gray-300: #d5d5d5;
  --gray-400: #a6a6a6;
  --gray-500: #909090;
  --gray-600: #707070;
  --gray-700: #646464;
  --gray-800: #444444;
  --gray-900: ##373737;
  --black: #121212;
  --light-blue: #3994ff;
  --blue: #245bf2;
  --dark-blue: #3467c7;
  --accent: #eb5221;
  --glade-blue: linear-gradient(to right, #3994ff, #3950ff);
  --glade-blue-bottom: linear-gradient(to bottom, #3994ff, #3950ff);
  --glade-blue-left-top: linear-gradient(to right bottom, #3994ff, #3950ff);
  --glade-blue-light: linear-gradient(to right, #3994ff, #3950ff);
  --glade-yellow-green: linear-gradient(to right, #f7ffb5, #ffeea7, #69ffe8);
  --glade-yellow-green-reverse: linear-gradient(to left, #f7ffb5, #ffeea7, #69ffe8);
  --glade-yellow-green-column: linear-gradient(to bottom, #f7ffb5, #ffeea7 49.26%, #69ffe8);
  --base-background: var(--white-2);
  --border: #ccc;
  --unnamed-color-efefef: var(--gray-200);
  --unnamed-color-245bf2: var(--blue);
  --unnamed-color-f5f5f5: var(--gray-100);
  --unnamed-color-444444: var(--gray-800);
  --unnamed-color-3467c7: var(--dark-blue);
  --unnamed-color-eb5221: var(--accent);
  --unnamed-color-707070: var(--gray-600);
  --unnamed-color-fefefe: var(--white);
  --unnamed-color-3994ff: var(--light-blue);
  --unnamed-color-121212: var(--black);
  --header: 100;
  --hamburger: 103;
  --drawer: 102;
  --drawer-back: 101;
  --page-top: 99;
  --fix-links: 98;
  --base-line-height: 1.5;
  --text-line-height: 2.5;
  --text-line-height-sp: 2;
  --header-line-height: 1.5;
  --duration: 0.3s ease-out;
}

/********************************
* セッティング反映
********************************/
body {
  background: var(--base-background);
  color: var(--black);
  font-weight: var(--normal);
  line-height: var(--base-line-height);
  font-family: var(--base-font-family);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #007bff;
}

/********************************
* font埋め込み
********************************/
.u-desktop {
  display: block;
}
@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 1280px) {
  html {
    font-size: clamp(10px, 16 / 1280 * 100vw, 16px);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: clamp(10px, 16 / 375 * 100vw, 16px);
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
  min-inline-size: 0;
}

ul,
ol {
  padding: 0;
}

li {
  list-style: none;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%; /* Safariではまだベンダープレフィックスが必要 */
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-break: strict;
  text-rendering: optimizeSpeed;
  word-break: normal;
  overflow-wrap: anywhere;
}

.siteWrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

ul,
ol {
  list-style-type: "";
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

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

textarea {
  resize: vertical;
}

button,
input[type=submit],
input[type=button],
input[type=reset],
select,
label,
summary,
[role=tab],
[role=button] {
  cursor: pointer;
}

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

button {
  padding: unset;
  border: unset;
  background-color: unset;
  color: unset;
}

:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

:where([popover]) {
  width: unset;
  height: unset;
  padding: unset;
  overflow: unset;
  border: unset;
  background-color: unset;
  color: unset;
}

:where(dialog) {
  inline-size: unset;
  max-inline-size: unset;
  block-size: unset;
  max-block-size: unset;
  margin: unset;
  padding: unset;
  overflow: unset;
  border: unset;
  background-color: unset;
  color: unset;
}

/* Blur images when they have no alt attribute */
/* フォームリセット */
.btn {
  -webkit-user-select: none;
     -moz-user-select: none;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-inline: 10px;
  gap: 18px;
  border: none;
  outline-offset: 2px;
  touch-action: manipulation;
  transition: opacity var(--duration);
          user-select: none;
}
@media (any-hover: hover) {
  .btn:hover {
    opacity: 0.75;
  }
}

.btn--ex {
  max-width: 600px;
  min-height: 90px;
  border-radius: 45px;
  font-weight: var(--bold);
  font-size: 29px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .btn--ex {
    min-height: 58px;
    font-size: 17px;
  }
}
.btn--ex:after {
  -webkit-mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
  display: block;
  aspect-ratio: 1/1;
  width: 29px;
  background-color: currentColor;
  content: "";
          mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .btn--ex:after {
    width: 20px;
  }
}

.btn--ex-l {
  max-width: 400px;
  min-height: 58px;
  border-radius: 45px;
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .btn--ex-l {
    min-height: 51px;
    font-size: 18px;
  }
}
.btn--ex-l:after {
  -webkit-mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
  display: block;
  aspect-ratio: 1/1;
  width: 23px;
  background-color: currentColor;
  content: "";
          mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .btn--ex-l:after {
    width: 21px;
  }
}

.btn--lg {
  min-height: 77px;
  border-radius: 43px;
  font-weight: var(--bold);
  font-size: 23px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .btn--lg {
    min-height: 61px;
    font-size: 19px;
  }
}

.btn--lg.btn--red {
  max-width: 336px;
}
.btn--lg.btn--red:after {
  -webkit-mask: url(../images/common/icon_door.svg) no-repeat center center/contain;
  display: block;
  aspect-ratio: 30/39;
  width: 30px;
  background-color: currentColor;
  content: "";
          mask: url(../images/common/icon_door.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .btn--lg.btn--red:after {
    width: 26px;
  }
}

.btn--lg.btn--blue {
  max-width: 315px;
}
.btn--lg.btn--blue:after {
  -webkit-mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
  display: block;
  aspect-ratio: 1/1;
  width: 21px;
  background-color: currentColor;
  content: "";
          mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
}

.btn--lg.btn--red:before,
.btn--lg.btn--blue:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  transform: translate(-50%, -50%);
  border: 1px solid var(--gray-200);
  border-radius: inherit;
  content: "";
}

.btn--md {
  max-width: 300px;
  min-height: 68px;
  border-radius: 43px;
  font-weight: var(--bold);
  font-size: 18px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .btn--md {
    min-height: 68px;
    font-size: 17px;
  }
}

.btn--md.btn--red:before,
.btn--md.btn--blue:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  transform: translate(-50%, -50%);
  border: 1px solid var(--gray-200);
  border-radius: inherit;
  content: "";
}

.btn--md.btn--red:after {
  -webkit-mask: url(../images/common/icon_door.svg) no-repeat center center/contain;
  display: block;
  aspect-ratio: 30/39;
  width: 30px;
  background-color: currentColor;
  content: "";
          mask: url(../images/common/icon_door.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .btn--md.btn--red:after {
    width: 26px;
  }
}

.btn--md.btn--blue:after {
  -webkit-mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
  display: block;
  aspect-ratio: 1/1;
  width: 21px;
  background-color: currentColor;
  content: "";
          mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
}

.btn--md.btn--white:after {
  -webkit-mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
  display: block;
  aspect-ratio: 1/1;
  width: 21px;
  background-color: currentColor;
  content: "";
          mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
}

.btn--md.btn--blue-grad {
  max-width: 350px;
  font-size: 20px;
}
.btn--md.btn--blue-grad:after {
  -webkit-mask: url(../images/common/icon_plus.svg) no-repeat center center/contain;
  display: block;
  aspect-ratio: 1/1;
  width: 17px;
  background-color: currentColor;
  content: "";
          mask: url(../images/common/icon_plus.svg) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .btn--md.btn--blue-grad {
    max-width: 270px;
    min-height: 58px;
    font-size: 17px;
  }
}

.btn--sm {
  max-width: -moz-fit-content;
  max-width: fit-content;
  min-height: 40px;
  padding-inline: 15px;
  gap: 7px;
  border-radius: 20px;
  font-weight: var(--bold);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.btn--sm.btn--white:after,
.btn--sm.btn--blue:after {
  -webkit-mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
  display: block;
  aspect-ratio: 1/1;
  width: 14px;
  background-color: currentColor;
  content: "";
          mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
}

.btn--sm.btn--rem {
  font-size: calc(14 / 16 * 1rem);
}
@media (max-width: 1110px) {
  .btn--sm.btn--rem {
    min-height: 33px;
    padding-inline: 11px;
    font-size: 12px;
  }
}

.btn--blue-grad {
  background: var(--glade-blue);
  color: var(--white);
}

.btn--white {
  background: var(--white);
  box-shadow: 0 3px 6px color-mix(in srgb, #000 16%, transparent);
  color: var(--blue);
}

.btn--red {
  background: var(--accent);
  color: var(--white);
}

.btn--blue {
  background: var(--light-blue);
  color: var(--white);
}

.btn--other {
  max-width: 192px;
  min-height: 58px;
  border: 2px solid var(--light-blue);
  border-radius: 29px;
  background: var(--white);
  color: var(--blue);
  font-weight: var(--bold);
  font-size: 18px;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 767px) {
  .btn--other {
    min-height: 44px;
    font-size: 17px;
  }
}

.btn--pdf {
  max-width: 350px;
  min-height: 65px;
  border: 2px solid;
  border-radius: 32px;
  background: var(--white);
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .btn--pdf {
    max-width: 240px;
    min-height: 55px;
    font-size: 16px;
  }
}
.btn--pdf:after {
  display: block;
  aspect-ratio: 1/1;
  width: 34px;
  background: url(../images/common/icon-pdf.svg) no-repeat center center/contain;
  content: "";
}
@media screen and (max-width: 767px) {
  .btn--pdf:after {
    width: 28px;
  }
}

.btn-circle {
  display: flex;
  z-index: var(--fix-links);
  position: fixed;
  right: -25px;
  bottom: -28px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 182px;
  gap: 20px;
  border-radius: 50%;
  background: var(--glade-blue-left-top);
  color: var(--white);
  font-weight: var(--bold);
  font-size: 22px;
  line-height: 1.3636363636;
  letter-spacing: 0.04em;
  text-align: center;
  transition: opacity var(--duration), transform var(--duration);
}
.btn-circle:after {
  -webkit-mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
  display: block;
  aspect-ratio: 1/1;
  width: 20px;
  background-color: currentColor;
  content: "";
          mask: url(../images/common/icon_link.svg) no-repeat center center/contain;
}
.btn-circle.is_close {
  animation: slideOut 0.5s forwards ease-in-out;
}
.btn-circle:not(.is_close) {
  animation: slideIn 0.5s forwards ease-in-out;
}
.btn-circle.is_stop {
  display: none;
}
@media (any-hover: hover) {
  .btn-circle:hover {
    opacity: 0.75;
  }
}
@media print, screen and (max-width: 992px) {
  .btn-circle {
    display: none;
  }
}

.btn--404 {
  max-width: 236px;
  min-height: 56px;
  border: 2px solid;
  border-radius: 29px;
  background: var(--white);
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 18px;
  letter-spacing: 0.2em;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .btn--404:hover {
    opacity: 0.75;
  }
}

.card-about-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-inline: 20px;
  gap: 56px;
}
@media print, screen and (max-width: 992px) {
  .card-about-wrap {
    grid-template-columns: 1fr;
    padding-inline: 0;
    gap: 15px;
  }
}
@media screen and (max-width: 767px) {
  .card-about-wrap {
    gap: 14px;
  }
}

.card-about {
  position: relative;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--light-blue) 0%, #3950ff 100%);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
}

.card-about__inner {
  height: calc(100% - 16px);
  margin: 8px;
  padding: 21px 25px 40px;
  border-radius: 6px;
  background: var(--white-2);
}
@media print, screen and (max-width: 992px) {
  .card-about__inner {
    display: flex;
    align-items: center;
    padding: 29px 30px 29px;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .card-about__inner {
    display: block;
    padding: 20px 24px;
  }
}

.card-about__head {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media print, screen and (max-width: 992px) {
  .card-about__head {
    flex-shrink: 0;
    flex-direction: row;
    align-items: center;
  }
}
.card-about__title {
  color: var(--blue);
  font-weight: var(--bold);
  font-size: 20px;
  font-family: var(--base-font-family);
  letter-spacing: 0.4em;
}
@media print, screen and (max-width: 992px) {
  .card-about__title {
    flex-shrink: 0;
    font-size: 18px;
  }
}

.card-about__number {
  color: var(--blue);
  font-style: italic;
  font-weight: var(--bold);
  font-size: 65px;
  line-height: 1;
  font-family: var(--en2-font-family);
}
@media print, screen and (max-width: 992px) {
  .card-about__number {
    font-size: 55px;
  }
}
@media screen and (max-width: 767px) {
  .card-about__number {
    font-size: 40px;
  }
}

.card-about__icon {
  display: flex;
  justify-content: center;
  max-width: 80px;
  max-height: 80px;
  margin-top: 10px;
  margin-inline: auto;
}
@media print, screen and (max-width: 992px) {
  .card-about__icon {
    flex-shrink: 0;
    max-width: 70px;
    max-height: 70px;
  }
}
@media screen and (max-width: 767px) {
  .card-about__icon {
    position: absolute;
    top: 17px;
    right: 30px;
    max-width: 50px;
    max-height: 50px;
  }
}

.card-about__icon img {
  -o-object-fit: contain;
  width: 100%;
     object-fit: contain;
}

.card-about__text {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
  color: var(--gray-800);
  font-weight: var(--bold);
  font-size: 18px;
  line-height: 1.67;
  font-family: var(--base-font-family);
}
@media print, screen and (max-width: 992px) {
  .card-about__text {
    -webkit-margin-before: initial;
            margin-block-start: initial;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .card-about__text {
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
    font-size: 13px;
    line-height: 2;
  }
}

.card-flow-list {
  display: grid;
  max-width: 862px;
  margin-inline: auto;
  gap: 34px;
}
@media print, screen and (max-width: 992px) {
  .card-flow-list {
    gap: 18px;
  }
}

.card-flow {
  position: relative;
  padding-inline: 40px;
  padding-block: 33px 50px;
  border: 8px solid var(--gray-200);
  border-radius: 12px;
  background-color: var(--white-2);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
}
@media print, screen and (max-width: 992px) {
  .card-flow {
    padding-block: 24px 28px;
  }
}
@media screen and (max-width: 767px) {
  .card-flow {
    padding-inline: 16px;
    padding-block: 10px;
  }
}
.card-flow:nth-child(1) .card-flow__inner {
  align-items: center;
}
.card-flow:nth-child(2) .card-flow__inner {
  align-items: center;
}
.card-flow:nth-child(3) .card-flow__inner {
  align-items: center;
}
.card-flow:nth-child(4) .card-flow__inner {
  align-items: center;
}

.card-flow__inner {
  display: grid;
  grid-template-columns: 1fr max-content;
  max-width: 702px;
  margin-inline: auto;
  gap: 65px;
}
@media print, screen and (max-width: 992px) {
  .card-flow__inner {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .card-flow__inner {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.card-flow__content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .card-flow__content {
    flex-direction: column;
    gap: 5px;
  }
}

.card-flow__head {
  flex-shrink: 0;
}

.card-flow__number {
  color: var(--light-blue);
  font-style: italic;
  font-weight: var(--bold);
  font-size: 65px;
  line-height: 1;
  font-family: var(--en2-font-family);
}
@media print, screen and (max-width: 992px) {
  .card-flow__number {
    font-size: 45px;
  }
}
@media screen and (max-width: 767px) {
  .card-flow__number {
    font-size: 40px;
  }
}

.card-flow__title {
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 25px;
  line-height: 1.6;
}
@media print, screen and (max-width: 992px) {
  .card-flow__title {
    font-size: 22px;
  }
}
@media screen and (max-width: 767px) {
  .card-flow__title {
    font-size: 18px;
  }
}

.card-flow__body {
  -webkit-margin-before: 20px;
  display: grid;
          margin-block-start: 20px;
  gap: 10px;
}
@media print, screen and (max-width: 992px) {
  .card-flow__body {
    -webkit-margin-before: 7px;
            margin-block-start: 7px;
  }
}
@media screen and (max-width: 767px) {
  .card-flow__body {
    -webkit-margin-before: initial;
            margin-block-start: initial;
    gap: 9px;
  }
}

.card-flow__text {
  color: var(--black);
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 1.75;
}
@media print, screen and (max-width: 992px) {
  .card-flow__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .card-flow__text {
    font-size: 12px;
  }
}

.card-flow__img {
  width: 120px;
}
@media print, screen and (max-width: 992px) {
  .card-flow__img {
    width: 80px;
  }
}
@media screen and (max-width: 767px) {
  .card-flow__img {
    position: absolute;
    top: 9px;
    right: 19px;
    width: 50px;
  }
}
.card-flow__img img {
  width: 100%;
}

.card-message {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
@media print, screen and (max-width: 992px) {
  .card-message {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .card-message {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 12px;
  }
}

.card-message__content {
  position: relative;
  padding: 24px 40px;
  border-radius: 16px;
  background: var(--gray-100);
}
@media screen and (max-width: 767px) {
  .card-message__content {
    padding: 16px 20px;
  }
}
.card-message__content::before {
  display: block;
  position: absolute;
  top: 100px;
  right: 0;
  aspect-ratio: 54/45;
  width: 54px;
  transform: translateX(80%);
  background: url(../images/common/deco-message.svg) no-repeat center center/contain;
  content: "";
}
@media screen and (max-width: 767px) {
  .card-message__content::before {
    top: 0;
    right: initial;
    left: 80px;
    width: 32px;
    transform: translateY(-80%) rotate(-90deg);
  }
}

.card-message__cat {
  color: var(--light-blue);
  font-weight: var(--medium);
  font-size: 21px;
}
@media print, screen and (max-width: 992px) {
  .card-message__cat {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .card-message__cat {
    font-size: 15px;
  }
}

.card-message__title {
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 28px;
}
@media print, screen and (max-width: 992px) {
  .card-message__title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .card-message__title {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.card-message__text {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
  color: var(--black);
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 1.875;
}
@media print, screen and (max-width: 992px) {
  .card-message__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .card-message__text {
    font-size: 13px;
    line-height: 1.6923076923;
  }
}

.card-message__bottom {
  -webkit-margin-before: 15px;
  -webkit-padding-start: 20px;
          margin-block-start: 15px;
          padding-inline-start: 20px;
}
@media screen and (max-width: 767px) {
  .card-message__bottom {
    -webkit-padding-start: initial;
            padding-inline-start: initial;
  }
}

.card-message__program {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  color: var(--black);
  font-weight: var(--bold);
  font-size: 14px;
}
@media print, screen and (max-width: 992px) {
  .card-message__program {
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .card-message__program {
    font-size: 12px;
  }
}
.card-message__program img {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: 30px;
}
@media print, screen and (max-width: 992px) {
  .card-message__program img {
    width: 20px;
  }
}

.card-message__img {
  flex-shrink: 0;
  aspect-ratio: 1/1;
  width: 120px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--gray-100);
}
@media screen and (max-width: 767px) {
  .card-message__img {
    -webkit-margin-start: 20px;
    width: 60px;
            margin-inline-start: 20px;
  }
}
.card-message__img img {
  -o-object-fit: cover;
  -o-object-position: center;
  width: 100%;
  height: 100%;
     object-fit: cover;
     object-position: center;
}

.card-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px 50px;
}
@media print, screen and (max-width: 992px) {
  .card-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 48px;
  }
}
@media screen and (max-width: 767px) {
  .card-wrapper {
    gap: 22px 14px;
  }
}

.card {
  display: grid;
  position: relative;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  border: 5px solid var(--light-blue);
  border-radius: 16px;
  background-color: var(--white-2);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .card {
    grid-row: span 3;
  }
}
.card a {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  gap: inherit;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .card a:hover {
    opacity: 0.75;
  }
  .card a:hover .card__button {
    transform: scale(1.1);
  }
}

.card__head {
  position: relative;
}

.card__image {
  aspect-ratio: 340/191;
  width: 100%;
}
.card__image img {
  -o-object-fit: cover;
  -o-object-position: center;
  width: 100%;
  height: 100%;
     object-fit: cover;
     object-position: center;
  border-radius: 10px 10px 0 0;
}

.card__image img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
     object-fit: cover;
}

.card__number {
  position: absolute;
  bottom: -5px;
  left: 25px;
  min-width: 73px;
  padding: 6px 10px;
  border-radius: 8px 8px 0 0;
  background: var(--white-2);
}
@media screen and (max-width: 767px) {
  .card__number {
    left: 15px;
    min-width: 46px;
    padding: 2px 4px;
    border-radius: 4px 4px 0 0;
  }
}

.card__number-label {
  display: inline-block;
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 14px;
  line-height: 1;
  font-family: var(--en2-font-family);
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .card__number-label {
    font-size: 8px;
  }
}

.card__number-value {
  display: inline-block;
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 26px;
  line-height: 1;
  font-family: var(--en2-font-family);
}
@media screen and (max-width: 767px) {
  .card__number-value {
    font-size: 18px;
  }
}

.card__body,
.card__info,
.card__detail {
  margin-inline: 20px;
}
@media screen and (max-width: 767px) {
  .card__body,
  .card__info,
  .card__detail {
    margin-inline: 10px;
  }
}

.card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 15px 12px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .card__body {
    padding-block: 13px 5px;
  }
}

.card__title {
  margin-top: 0;
  color: var(--gray-800);
  font-weight: var(--bold);
  font-size: 20px;
  line-height: 1.4;
}
@media print, screen and (max-width: 992px) {
  .card__title {
    font-size: 18px;
    line-height: 1.1111111111;
  }
}
@media screen and (max-width: 767px) {
  .card__title {
    font-size: 13px;
  }
}

.card__company {
  color: var(--gray-600);
  font-weight: var(--medium);
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media print, screen and (max-width: 992px) {
  .card__company {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .card__company {
    font-size: 9px;
  }
}
.card__company span {
  display: inline-block;
}

.card__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-block: 14px 19px;
  gap: 12px;
  border-top: 1px solid var(--gray-200);
}
@media print, screen and (max-width: 992px) {
  .card__info {
    padding-block: 12px 12px;
  }
}
@media screen and (max-width: 767px) {
  .card__info {
    padding-block: 6px 9px;
    gap: 4px;
  }
}

.card__info-item {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .card__info-item {
    flex-direction: column;
    gap: 2px;
  }
}

.card__info-label {
  flex-shrink: 0;
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .card__info-label {
    font-size: 8px;
  }
}

.card__info-value {
  position: relative;
  color: var(--black);
  font-weight: var(--bold);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .card__info-value {
    font-size: 9px;
  }
}
.card__info-value::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(125%, -50%);
  content: "";
}
@media print, screen and (max-width: 992px) {
  .card__info-value::after {
    content: none;
  }
}
.card__info-value.is_school, .card__info-value.is_business, .card__info-value.is_teaching {
  margin-right: 35px;
}
.card__info-value.is_school::after {
  aspect-ratio: 1/1;
  width: 28px;
  background: url(../images/common/icon_school.svg) no-repeat center center/contain;
}
.card__info-value.is_business::after {
  aspect-ratio: 24/34;
  width: 24px;
  background: url(../images/common/icon_business.svg) no-repeat center center/contain;
}
.card__info-value.is_teaching::after {
  aspect-ratio: 25/20;
  width: 25px;
  background: url(../images/common/icon_teaching.svg) no-repeat center center/contain;
}

.card__detail {
  display: grid;
  grid-template-columns: 1fr 92px;
  padding-block: 22px 28px;
  gap: 10px;
  border-top: 1px solid var(--gray-200);
}
@media print, screen and (max-width: 992px) {
  .card__detail {
    padding-block: 15px 25px;
  }
}
@media screen and (max-width: 767px) {
  .card__detail {
    height: 0;
    padding: 0;
    border-top: none;
  }
}

.card__text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  color: var(--black);
  font-weight: var(--medium);
  font-size: 14px;
  line-height: 1.4;
}
@media print, screen and (max-width: 992px) {
  .card__text {
    -webkit-line-clamp: 4;
    font-size: 13px;
  }
}
@media screen and (max-width: 767px) {
  .card__text {
    display: none;
  }
}

.card__button {
  display: flex;
  z-index: 2;
  position: absolute;
  right: 20px;
  bottom: 17px;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 85px;
  border-radius: 50%;
  background: var(--glade-blue);
  box-shadow: 0px 3px 3px 0px rgba(0, 0, 0, 0.16);
  text-decoration: none;
  transition: transform var(--duration);
}
@media print, screen and (max-width: 992px) {
  .card__button {
    width: 84px;
  }
}
@media screen and (max-width: 767px) {
  .card__button {
    right: 0;
    bottom: 0;
    width: 43px;
    transform: translate(20%, 30%);
  }
}

.card__button-text {
  display: block;
  color: var(--white-2);
  font-weight: var(--bold);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .card__button-text {
    font-size: 10px;
  }
}

.chart {
  position: relative;
  width: 100%;
  height: 138px;
  padding: 20px 50px;
  border-radius: 8px;
  background-color: var(--white-2);
  box-shadow: 0 3px 6px color-mix(in srgb, #000000 16%, transparent);
}
@media print, screen and (max-width: 992px) {
  .chart {
    height: 98px;
    padding: 20px 24px;
  }
}

.chart__points {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.chart__point {
  display: grid;
  z-index: 1;
  position: relative;
  place-items: center;
  gap: 6px;
}

.chart__circle {
  aspect-ratio: 1/1;
  width: 16px;
  border: 2px solid var(--light-blue);
  border-radius: 50%;
  background-color: var(--white-2);
}

.chart__text {
  color: var(--gray-800);
  font-size: 18px;
  line-height: 1.4444444444;
  letter-spacing: 0.12em;
  opacity: 0.5;
}
@media print, screen and (max-width: 992px) {
  .chart__text {
    font-size: 14px;
  }
}

.chart__point.is_active .chart__circle {
  transform: scale(1.3);
  border-color: var(--blue);
  background-color: var(--blue);
}
.chart__point.is_active .chart__text {
  color: var(--blue);
  font-weight: var(--bold);
  opacity: 1;
}

.editor {
  padding: 40px;
  border-radius: 8px;
  background-color: var(--white-2);
  box-shadow: 0 3px 6px color-mix(in srgb, #000000 16%, transparent);
}
@media print, screen and (max-width: 992px) {
  .editor {
    padding: 24px;
  }
}
.editor *:not(:first-child) {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
}
@media print, screen and (max-width: 992px) {
  .editor *:not(:first-child) {
    -webkit-margin-before: 8px;
            margin-block-start: 8px;
  }
}
.editor h1,
.editor h2,
.editor h3,
.editor h4 {
  color: var(--accent);
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media print, screen and (max-width: 992px) {
  .editor h1,
  .editor h2,
  .editor h3,
  .editor h4 {
    font-size: 18px;
  }
}
.editor p {
  font-weight: var(--medium);
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media print, screen and (max-width: 992px) {
  .editor p {
    font-size: 13px;
  }
}
.editor a {
  color: var(--gray-600);
  text-decoration: underline;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .editor a:hover {
    opacity: 0.75;
  }
}

.faq-item-list {
  display: grid;
  max-width: 665px;
  margin-inline: auto;
  gap: 47px;
}
@media print, screen and (max-width: 992px) {
  .faq-item-list {
    gap: 24px;
  }
}

.faq-item {
  position: relative;
}

.faq-item__content {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .faq-item__content {
    gap: 8px;
  }
}

.faq-item__head {
  flex-shrink: 0;
}

.faq-item__number {
  color: var(--light-blue);
  font-style: italic;
  font-weight: var(--bold);
  font-size: 50px;
  line-height: 1;
  font-family: var(--en2-font-family);
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .faq-item__number {
    font-size: 30px;
  }
}

.faq-item__title {
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 25px;
  line-height: 1.6;
}
@media print, screen and (max-width: 992px) {
  .faq-item__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .faq-item__title {
    font-size: 16px;
  }
}

.faq-item__body {
  -webkit-margin-before: 10px;
  display: grid;
          margin-block-start: 10px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .faq-item__body {
    -webkit-margin-before: 5px;
            margin-block-start: 5px;
    gap: 8px;
  }
}

.faq-item__text {
  color: var(--black);
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 1.75;
}
@media print, screen and (max-width: 992px) {
  .faq-item__text {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .faq-item__text {
    font-size: 12px;
  }
}

.fix-links {
  display: none;
  z-index: var(--fix-links);
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 90px;
  padding-inline: 24px;
  padding-block: 10px;
  border-top: 4px solid var(--light-blue);
  background: var(--white-2);
}
@media print, screen and (max-width: 992px) {
  .fix-links {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .fix-links {
    min-height: 82px;
  }
}

.fix-links__items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .fix-links__items {
    gap: 16px;
  }
}

@media screen and (max-width: 767px) {
  .page-turn.fix-links__item-prev,
  .page-turn.fix-links__item-next {
    display: none;
  }
}

.fix-links__item-archive {
  flex-shrink: 0;
}

.btn.fix-links__item-btn {
  margin-inline: 10px;
  font-weight: var(--bold);
}
@media screen and (max-width: 767px) {
  .btn.fix-links__item-btn {
    margin-inline: 0;
  }
}

.hamburger {
  --hamburger-color1: var(--white);
  --hamburger-color2: var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  display: block;
  appearance: none;
  position: relative;
  width: 40px;
  height: 18px;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.hamburger__line {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 2px;
  transform: translate(-50%, -50%);
  background: var(--hamburger-color1);
  transition: background 0.3s ease;
}

.hamburger__line::before,
.hamburger__line::after {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background: inherit;
  content: "";
  transition: transform 0.3s ease;
}

.hamburger__line::before {
  top: -8px;
}

.hamburger__line::after {
  top: 8px;
}

.hamburger[aria-expanded=true] .hamburger__line {
  background: transparent;
}
.hamburger[aria-expanded=true] .hamburger__line::before, .hamburger[aria-expanded=true] .hamburger__line::after {
  top: 0;
  background: var(--hamburger-color2);
}
.hamburger[aria-expanded=true] .hamburger__line::before {
  transform: rotate(30deg);
}
.hamburger[aria-expanded=true] .hamburger__line::after {
  transform: rotate(-30deg);
}

.news-list-wrap {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .news-list-wrap {
    gap: 26px;
  }
}
.news-list-wrap.news-list-wrap--sub {
  grid-template-columns: 1fr;
  max-width: 540px;
}

.news-list {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: span 2;
  align-items: flex-start;
  gap: 48px;
}
@media print, screen and (max-width: 992px) {
  .news-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .news-list {
    gap: 8px;
  }
}
.news-list.news-list--sub {
  grid-template-columns: 1fr;
  grid-column: initial;
  gap: 16px;
}

.news-list__head {
  display: flex;
  align-items: center;
  gap: 18px;
}
@media screen and (max-width: 767px) {
  .news-list__head {
    gap: 12px;
  }
}

.news-list__date {
  color: var(--gray-600);
  font-size: 14px;
  font-family: var(--en2-font-family);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .news-list__date {
    font-size: 10px;
  }
}

.news-list__category {
  padding: 4px 8px;
  border-radius: 4px;
  background-color: var(--light-blue);
  color: var(--white);
  font-weight: var(--bold);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .news-list__category {
    font-size: 12px;
  }
}

@media print, screen and (max-width: 992px) {
  .news-list__body {
    -webkit-margin-before: initial;
            margin-block-start: initial;
  }
}

.news-list__title {
  color: var(--gray-800);
  font-weight: var(--bold);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .news-list__title {
    font-size: 13px;
  }
}

.page-turn {
  display: grid;
  place-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 5px;
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 13px;
  line-height: 1.3846153846;
  letter-spacing: 0.04em;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .page-turn {
    font-size: 11px;
  }
}
.page-turn img {
  -o-object-fit: contain;
  width: 30px;
  height: 30px;
     object-fit: contain;
}
@media (any-hover: hover) {
  .page-turn:hover {
    opacity: 0.75;
  }
}

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

.pagination {
  display: inline-block;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .pagination .nav-links {
    gap: 10px;
  }
}
.pagination .page-numbers {
  display: grid;
  place-content: center;
  aspect-ratio: 1/1;
  width: 40px;
  padding: 5px;
  border: 1px solid;
  border-radius: 50%;
  background: #fff;
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 20px;
  transition: opacity var(--duration), background var(--duration), color var(--duration);
}
@media screen and (max-width: 767px) {
  .pagination .page-numbers {
    width: 34px;
    padding: 5px;
    font-size: 15px;
  }
}
@media (hover: hover) {
  .pagination .page-numbers:hover {
    background: var(--light-blue);
    color: #fff;
  }
  .pagination .page-numbers:hover.prev, .pagination .page-numbers:hover.next {
    background: initial;
    color: var(--light-blue);
  }
  .pagination .page-numbers:hover.prev::after, .pagination .page-numbers:hover.next::after {
    -webkit-mask: url(../images/common/icon-arrow.svg) no-repeat center center/contain;
            mask: url(../images/common/icon-arrow.svg) no-repeat center center/contain;
    opacity: 0.75;
  }
  .pagination .page-numbers:hover.dots {
    background: initial;
    color: var(--light-blue);
  }
}
.pagination .current {
  background: var(--light-blue);
  color: #fff;
}
.pagination .prev,
.pagination .next {
  position: relative;
  border: none;
}
.pagination .prev::after,
.pagination .next::after {
  -webkit-mask: url(../images/common/icon-arrow.svg) no-repeat center center/contain;
  display: block;
  position: absolute;
  aspect-ratio: 10/20;
  width: 10px;
  margin: auto;
  inset: 0;
  background-color: currentColor;
  content: "";
          mask: url(../images/common/icon-arrow.svg) no-repeat center center/contain;
}
.pagination .prev {
  transform: rotate(180deg);
}
.pagination .dots {
  border: none;
  background: transparent;
  box-shadow: none;
}

.program-end {
  display: grid;
  z-index: var(--fix-links);
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  place-items: center;
  min-height: 89px;
  padding-inline: 16px;
  padding-block: 10px;
  background: var(--unnamed-color-707070);
  transition: opacity var(--duration), visibility var(--duration), pointer-events var(--duration);
}
.program-end.is_active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
.program-end.is_close {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}
@media print, screen and (max-width: 992px) {
  .program-end.is_close {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}
@media screen and (max-width: 767px) {
  .program-end {
    min-height: 82px;
  }
}

.program-end__text {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--white);
  font-weight: var(--bold);
  font-size: 20px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .program-end__text {
    font-size: 15px;
  }
}

.select {
  display: grid;
  position: relative;
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
  height: 138px;
  overflow: hidden;
  border-radius: 8px;
  background-color: var(--white-2);
  box-shadow: 0 3px 6px color-mix(in srgb, #000000 16%, transparent);
}
@media print, screen and (max-width: 992px) {
  .select {
    height: 98px;
  }
}
@media screen and (max-width: 767px) {
  .select {
    height: 87px;
  }
}

.select__block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0.3;
}
.select__block img {
  -o-object-fit: contain;
  -o-object-position: center;
  width: 60px;
  height: 60px;
     object-fit: contain;
     object-position: center;
}
@media print, screen and (max-width: 992px) {
  .select__block img {
    width: 38px;
    height: 38px;
  }
}
.select__block span {
  font-size: 14px;
  line-height: 1.2142857143;
  letter-spacing: 0.1em;
  text-align: center;
}
@media print, screen and (max-width: 992px) {
  .select__block span {
    font-size: 10px;
  }
}
.select__block span span {
  display: block;
}
.select__block:not(:last-child) {
  background-image: linear-gradient(to bottom, var(--gray-600) 40%, rgba(255, 255, 255, 0) 0%);
  background-position: right;
  background-size: 1px 10px;
  background-repeat: repeat-y;
}
.select__block.is_active {
  background: var(--glade-blue-bottom);
  opacity: 1;
}
.select__block.is_active img {
  filter: brightness(0) invert(1);
}
.select__block.is_active span {
  color: var(--white-2);
  font-weight: var(--bold);
  font-size: 18px;
}
@media print, screen and (max-width: 992px) {
  .select__block.is_active span {
    font-size: 11px;
  }
}
.select__block:has(+ .is_active) {
  background-image: none;
}

.tag-group {
  position: relative;
  width: 100%;
  padding: 18px 40px;
  border-radius: 8px;
  background-color: var(--white-2);
  box-shadow: 0 3px 6px color-mix(in srgb, #000000 16%, transparent);
}
@media print, screen and (max-width: 992px) {
  .tag-group {
    padding: 24px 20px;
  }
}

.tag-group__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px 18px;
}
@media print, screen and (max-width: 992px) {
  .tag-group__items {
    gap: 12px 14px;
  }
}
.tag-group__items.tag-group__items--column {
  grid-template-columns: 1fr;
}

.tag-group__item {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 12px;
  opacity: 0.5;
}
@media print, screen and (max-width: 992px) {
  .tag-group__item {
    gap: 6px;
  }
}
.tag-group__item.is_long {
  grid-column: span 2;
}
.tag-group__item.is_active {
  opacity: 1;
}
.tag-group__item.is_active .tag-group__item-check {
  border: none;
  background: var(--glade-blue);
}
.tag-group__item.is_active .tag-group__item-check::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  transform: translate(-50%, -50%);
  background: url(../images/common/icon-check.svg) no-repeat center center/contain;
  content: "";
}
@media print, screen and (max-width: 992px) {
  .tag-group__item.is_active .tag-group__item-check::before {
    width: 16px;
    height: 16px;
  }
}
.tag-group__item.is_active .tag-group__item-text {
  font-weight: var(--bold);
}

.tag-group__item-check {
  position: relative;
  aspect-ratio: 1/1;
  width: 30px;
  border: 2px solid var(--gray-200);
  border-radius: 8px;
}
@media print, screen and (max-width: 992px) {
  .tag-group__item-check {
    width: 24px;
  }
}

.tag-group__item-text {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media print, screen and (max-width: 992px) {
  .tag-group__item-text {
    font-size: 12px;
    white-space: nowrap;
  }
}

.inner {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: var(--padding-pc);
}
@media print, screen and (max-width: 992px) {
  .inner {
    padding-inline: var(--padding-md);
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding-inline: var(--padding-sp);
  }
}

.sec-block {
  padding-block: 80px 120px;
  overflow-x: clip;
}
@media print, screen and (max-width: 992px) {
  .sec-block {
    padding-block: 80px 80px;
  }
}
@media screen and (max-width: 767px) {
  .sec-block {
    padding-block: 60px 60px;
  }
}
.sec-block.sec-block--lower {
  position: relative;
  padding-block: 130px 120px;
}
@media print, screen and (max-width: 992px) {
  .sec-block.sec-block--lower {
    padding-block: 90px 120px;
  }
}
@media screen and (max-width: 767px) {
  .sec-block.sec-block--lower {
    padding-block: 70px 80px;
  }
}

@media print, screen and (max-width: 992px) {
  .sec-block__head,
  .sec-block__body,
  .sec-block__bottom,
  .sec-block__btn {
    padding-inline: 40px;
  }
}
@media screen and (max-width: 767px) {
  .sec-block__head,
  .sec-block__body,
  .sec-block__bottom,
  .sec-block__btn {
    padding-inline: 16px;
  }
}

.sec-block.sec-block--sub {
  background: var(--gray-100);
}

.sec-block.sec-block--ml {
  padding-block: 0 160px;
}
@media print, screen and (max-width: 992px) {
  .sec-block.sec-block--ml {
    padding-block: 0 120px;
  }
}
@media screen and (max-width: 767px) {
  .sec-block.sec-block--ml {
    padding-block: 0 100px;
  }
}

.sec-block__row {
  display: grid;
  grid-template-columns: 265px 1fr;
  gap: 40px;
}
@media print, screen and (max-width: 992px) {
  .sec-block__row {
    display: block;
  }
}
.sec-block__row.sec-block__row--sub {
  grid-template-columns: 250px 1fr;
}
@media print, screen and (max-width: 992px) {
  .sec-block__row.sec-block__row--sub {
    display: block;
  }
}

.sec-block__title-en {
  color: var(--accent);
  font-weight: var(--medium);
  font-size: 20px;
  font-family: var(--en-font-family);
  letter-spacing: 0.36em;
  text-transform: uppercase;
}
@media screen and (max-width: 767px) {
  .sec-block__title-en {
    font-size: 14px;
  }
}

.sec-block__title-jp {
  -webkit-margin-before: 33px;
          margin-block-start: 33px;
  font-weight: var(--bold);
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media print, screen and (max-width: 992px) {
  .sec-block__title-jp {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .sec-block__title-jp {
    -webkit-margin-before: 17px;
            margin-block-start: 17px;
    font-size: 18px;
  }
}

.sec-block__body {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
}

.sec-block__body--news {
  -webkit-margin-before: 80px;
  max-width: 663px;
          margin-block-start: 80px;
}
@media print, screen and (max-width: 992px) {
  .sec-block__body--news {
    -webkit-margin-before: 64px;
            margin-block-start: 64px;
  }
}
@media screen and (max-width: 767px) {
  .sec-block__body--news {
    -webkit-margin-before: 32px;
            margin-block-start: 32px;
  }
}

.sec-block__body--sub {
  -webkit-margin-before: 180px;
          margin-block-start: 180px;
}
@media print, screen and (max-width: 992px) {
  .sec-block__body--sub {
    -webkit-margin-before: 64px;
            margin-block-start: 64px;
  }
}
@media screen and (max-width: 767px) {
  .sec-block__body--sub {
    -webkit-margin-before: 36px;
            margin-block-start: 36px;
  }
}

.sec-block__bottom {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
}
@media print, screen and (max-width: 992px) {
  .sec-block__bottom {
    -webkit-margin-before: 64px;
            margin-block-start: 64px;
  }
}
@media screen and (max-width: 767px) {
  .sec-block__bottom {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

.sec-block__btn {
  -webkit-margin-before: 45px;
  display: flex;
  justify-content: flex-end;
          margin-block-start: 45px;
}
@media print, screen and (max-width: 992px) {
  .sec-block__btn {
    -webkit-margin-before: 43px;
            margin-block-start: 43px;
  }
}
@media screen and (max-width: 767px) {
  .sec-block__btn {
    -webkit-margin-before: 32px;
    justify-content: center;
            margin-block-start: 32px;
  }
}

.sec-block__pagination {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
}

.sec-block__404-text {
  color: var(--gray-800);
  font-weight: var(--bold);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sec-block__404-text {
    font-size: 13px;
    line-height: 2;
  }
}

.sec-block__404-btn {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
}

.about-content__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
@media print, screen and (max-width: 992px) {
  .about-content__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .about-content__inner {
    gap: 0;
  }
}

@media screen and (max-width: 767px) {
  .about-content__text-block {
    display: contents;
  }
}

.about-content__subtitle {
  color: var(--light-blue);
  font-weight: var(--normal);
  font-size: calc(36 / 16 * 1rem);
  line-height: 1.875;
}
@media print, screen and (max-width: 992px) {
  .about-content__subtitle {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .about-content__subtitle {
    order: 1;
    font-size: max(20px, 5.1vw);
  }
}

.about-content__title {
  color: var(--light-blue);
  font-weight: var(--ex-bold);
  font-size: calc(41 / 16 * 1rem);
  line-height: 1.369;
}
@media screen and (max-width: 1020px) {
  .about-content__title {
    font-size: calc(39 / 16 * 1rem);
  }
}
@media print, screen and (max-width: 992px) {
  .about-content__title {
    font-size: 41px;
  }
}
@media screen and (max-width: 767px) {
  .about-content__title {
    order: 2;
    font-size: max(22px, 6vw);
  }
}

.about-content__description {
  -webkit-margin-before: 23px;
          margin-block-start: 23px;
  color: var(--black);
  font-size: 18px;
  line-height: 1.778;
}
@media print, screen and (max-width: 992px) {
  .about-content__description {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .about-content__description {
    -webkit-margin-before: 24px;
    order: 4;
            margin-block-start: 24px;
    font-size: 13px;
  }
}

.about-content__diagram {
  -webkit-margin-after: 30px;
  display: flex;
  align-items: flex-end;
  max-width: 523px;
  margin-inline: auto;
          margin-block-end: 30px;
}
@media print, screen and (max-width: 992px) {
  .about-content__diagram {
    -webkit-margin-after: initial;
    justify-content: center;
            margin-block-end: initial;
  }
}
@media screen and (max-width: 767px) {
  .about-content__diagram {
    -webkit-margin-before: 40px;
    order: 3;
    margin-inline: -16px;
            margin-block-start: 40px;
  }
}

.cta-content {
  -webkit-padding-after: 84px;
  position: relative;
          padding-block-end: 84px;
}
@media print, screen and (max-width: 992px) {
  .cta-content {
    -webkit-padding-after: 64px;
            padding-block-end: 64px;
  }
}
@media screen and (max-width: 767px) {
  .cta-content {
    -webkit-padding-after: 40px;
            padding-block-end: 40px;
  }
}

.cta-content__bg {
  z-index: 1;
  position: absolute;
  top: 50px;
  right: 0;
  left: 0;
  width: 100%;
  height: calc(100% - 50px);
}
@media screen and (max-width: 767px) {
  .cta-content__bg {
    top: 30px;
    height: calc(100% - 30px);
  }
}
.cta-content__bg img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
     object-fit: cover;
}

.cta-content__inner {
  z-index: 2;
  position: relative;
  position: relative;
  max-width: calc(900px + var(--padding-pc) * 2);
  height: 100%;
}
@media print, screen and (max-width: 992px) {
  .cta-content__inner {
    max-width: calc(640px + var(--padding-md) * 2);
  }
}
@media screen and (max-width: 767px) {
  .cta-content__inner {
    max-width: calc(608px + var(--padding-sp) * 2);
  }
}

.cta-content__wrap {
  position: relative;
  height: 100%;
}

.cta-content__text-area {
  -webkit-margin-before: 45px;
          margin-block-start: 45px;
}
@media print, screen and (max-width: 992px) {
  .cta-content__text-area {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}
@media screen and (max-width: 767px) {
  .cta-content__text-area {
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}

.cta-content__text {
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 31px;
  letter-spacing: 1.6129032258;
}
@media print, screen and (max-width: 992px) {
  .cta-content__text {
    font-size: 20px;
    line-height: 1.5;
  }
}

.cta-content__btn-area {
  -webkit-margin-before: 69px;
  display: flex;
  justify-content: space-around;
          margin-block-start: 69px;
  padding-inline: 11px 24px;
  gap: 40px;
}
@media print, screen and (max-width: 992px) {
  .cta-content__btn-area {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
    padding-inline: 0;
  }
}
@media screen and (max-width: 767px) {
  .cta-content__btn-area {
    -webkit-margin-before: 25px;
    flex-direction: column;
    align-items: center;
    justify-content: initial;
            margin-block-start: 25px;
    gap: 26px;
  }
}

.cta-content__btn-item {
  display: grid;
  flex: 0 1 336px;
  gap: 12px;
}
@media print, screen and (max-width: 992px) {
  .cta-content__btn-item {
    flex: initial;
  }
}
@media screen and (max-width: 767px) {
  .cta-content__btn-item {
    width: initial;
    gap: 4px;
  }
}
.cta-content__btn-item:nth-child(2) {
  flex: 0 1 315px;
}
@media print, screen and (max-width: 992px) {
  .cta-content__btn-item:nth-child(2) {
    flex: initial;
  }
}

.cta-content__btn-text {
  font-weight: var(--bold);
  font-size: 14px;
}

.cta-content__btn-text--red {
  color: var(--accent);
}

.cta-content__btn-text--blue {
  color: var(--light-blue);
}

.drawer-menu {
  display: block;
  visibility: hidden;
  z-index: var(--drawer);
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding-bottom: 30px;
  overflow-y: scroll;
  background: #ccc;
  background: var(--unnamed-color-3994ff);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration), visibility var(--duration), clipath var(--duration);
}

.drawer-menu[aria-hidden=false],
.drawer-menu:popover-open {
  visibility: revert;
  opacity: 1;
  pointer-events: auto;
}

.drawer-menu__head {
  -webkit-padding-before: 72px;
  padding-inline: var(--padding-pc);
          padding-block-start: 72px;
}
@media screen and (max-width: 767px) {
  .drawer-menu__head {
    -webkit-padding-before: 24px;
    padding-inline: var(--padding-sp);
            padding-block-start: 24px;
  }
}

.drawer-menu__logo {
  width: 140px;
}
@media screen and (max-width: 767px) {
  .drawer-menu__logo {
    width: 215px;
  }
  .drawer-menu__logo img {
    width: 100%;
  }
}

.drawer-menu__items {
  -webkit-padding-before: 107px;
  display: grid;
  width: 100%;
  height: initial;
  margin-inline: auto;
  padding-inline: var(--padding-pc);
          padding-block-start: 107px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .drawer-menu__items {
    -webkit-padding-before: 60px;
    padding-inline: var(--padding-md);
            padding-block-start: 60px;
  }
}

.drawer-menu__item a {
  display: block;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--unnamed-color-fefefe);
  font-weight: var(--bold);
  font-size: 20px;
  letter-spacing: 0.8px;
  text-align: left;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .drawer-menu__item a {
    font-size: 14px;
  }
}
@media (hover: hover) {
  .drawer-menu__item a:hover {
    opacity: 0.75;
  }
}

.drawer-menu__btn-items {
  -webkit-margin-before: 95px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
          margin-block-start: 95px;
  padding-inline: 60px;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  .drawer-menu__btn-items {
    -webkit-margin-before: 40px;
    grid-template-columns: 1fr;
            margin-block-start: 40px;
    padding-inline: var(--padding-md);
    gap: 24px;
  }
}
.drawer-menu__btn-items .btn {
  margin-inline: auto;
}

.drawer-menu__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 68px;
  gap: 10px;
  border-radius: 43px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1803921569);
  font-size: 18px;
  letter-spacing: 0.72px;
}

.drawer-menu__btn--search {
  position: relative;
  background: var(--unnamed-color-eb5221);
  color: var(--unnamed-color-fefefe);
}
.drawer-menu__btn--search::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  transform: translate(-50%, -50%);
  border: 1px solid;
  border-radius: inherit;
  content: "";
}

.drawer-menu__btn--contact {
  background: var(--unnamed-color-fefefe);
  color: var(--unnamed-color-3467c7);
}

.footer__top {
  display: grid;
  grid-template-columns: 30% 1fr;
  padding-inline: var(--padding-pc);
  padding-block: 60px 30px;
  background: var(--glade-blue-left-top);
}
@media print, screen and (max-width: 992px) {
  .footer__top {
    grid-template-columns: 1fr;
    padding-inline: var(--padding-md);
    padding-block: 35px;
    gap: 43px;
  }
}
@media screen and (max-width: 767px) {
  .footer__top {
    padding-inline: 35px;
    gap: 22px;
  }
}

.footer__head {
  display: grid;
  gap: 40px;
}
@media print, screen and (max-width: 992px) {
  .footer__head {
    grid-template-columns: max-content 1fr;
    gap: 64px;
  }
}
@media screen and (max-width: 767px) {
  .footer__head {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

.footer__logo {
  width: 150px;
}
@media print, screen and (max-width: 992px) {
  .footer__logo {
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .footer__logo {
    width: 117px;
  }
}
.footer__logo img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
     object-fit: contain;
}

.footer__head-text {
  color: var(--white);
  font-size: 14px;
  line-height: 1.7142857143;
}
@media print, screen and (max-width: 992px) {
  .footer__head-text {
    font-size: 16px;
    line-height: 1.625;
  }
}
@media screen and (max-width: 767px) {
  .footer__head-text {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 767px) {
  .footer__body {
    margin-top: calc(8 / 16 * 1rem);
  }
}

.footer__items {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  gap: 6px 15px;
}
@media print, screen and (max-width: 992px) {
  .footer__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: initial;
    margin-left: initial;
    gap: 30px 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__items {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.footer__item {
  color: var(--white);
  font-weight: var(--bold);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.04em;
}
@media print, screen and (max-width: 992px) {
  .footer__item {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer__item {
    font-size: 13px;
  }
}
.footer__item a {
  display: block;
  width: 100%;
  height: 100%;
  padding-block: 5px;
  transition: opacity var(--duration);
}
@media screen and (max-width: 767px) {
  .footer__item a {
    padding-block: 3px;
  }
}
.footer__item a:hover {
  opacity: 0.75;
}

.footer__privacy-area {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  text-align: right;
}
@media print, screen and (max-width: 992px) {
  .footer__privacy-area {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .footer__privacy-area {
    -webkit-margin-before: 5px;
            margin-block-start: 5px;
  }
}

.footer__privacy {
  display: inline-block;
  color: var(--white);
  font-size: 13px;
  line-height: 1.4615384615;
  letter-spacing: 0.04em;
  transition: opacity var(--duration);
}
@media print, screen and (max-width: 992px) {
  .footer__privacy {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .footer__privacy {
    font-size: 13px;
  }
}
@media (hover: hover) {
  .footer__privacy:hover {
    opacity: 0.75;
  }
}

.footer__banner {
  -webkit-margin-before: 60px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
          margin-block-start: 60px;
}
@media print, screen and (max-width: 992px) {
  .footer__banner {
    -webkit-margin-before: 40px;
    display: flex;
    flex-direction: row-reverse;
    flex-wrap: wrap;
    align-items: center;
    margin-left: initial;
            margin-block-start: 40px;
    gap: 10px 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer__banner {
    -webkit-margin-before: 30px;
    flex-direction: column-reverse;
    align-items: flex-start;
            margin-block-start: 30px;
  }
}

.footer__banner-items {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.footer__banner-item {
  padding: 10px;
  border-radius: 7px;
  background: var(--white);
  transition: opacity var(--duration);
}
@media print, screen and (max-width: 992px) {
  .footer__banner-item {
    padding: 8px;
  }
}
@media screen and (max-width: 767px) {
  .footer__banner-item {
    padding: 5px;
  }
}
@media (hover: hover) {
  .footer__banner-item:hover {
    opacity: 0.75;
  }
}
.footer__banner-item img {
  -o-object-fit: contain;
  width: auto;
  height: 30px;
     object-fit: contain;
}

.footer__banner-text {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  color: var(--white);
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .footer__banner-text {
    -webkit-margin-before: 5px;
            margin-block-start: 5px;
    font-size: 10px;
  }
}

.footer__bottom {
  padding-inline: var(--padding-pc);
  padding-block: 18px;
  background: var(--white);
}
@media print, screen and (max-width: 992px) {
  .footer__bottom {
    padding-inline: var(--padding-md);
    padding-block: 8px;
  }
}
@media print, screen and (max-width: 992px) {
  .footer__bottom.is_sub {
    padding-block: 18px 100px;
  }
}

.footer__copy {
  display: block;
  color: var(--blue);
  font-size: 12px;
  line-height: 2;
  text-align: center;
}
@media print, screen and (max-width: 992px) {
  .footer__copy {
    font-size: 10px;
    line-height: 2.4;
  }
}

.header-menu {
  display: flex;
  align-items: center;
}

.header-menu__items {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 20px;
}
@media (max-width: 1150px) {
  .header-menu__items {
    gap: 12px;
  }
}

.header-menu__item {
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
  color: var(--unnamed-color-fefefe);
  font-weight: var(--bold);
  font-size: calc(14 / 16 * 1rem);
  letter-spacing: 0.56px;
}
@media (max-width: 1110px) {
  .header-menu__item {
    font-size: 13px;
    letter-spacing: 0;
  }
}
.header-menu__item a {
  display: flex;
  align-items: center;
  min-height: 40px;
  gap: calc(9 / 16 * 1rem);
  transition: opacity var(--duration);
}
@media (hover: hover) {
  .header-menu__item a:hover {
    opacity: 0.75;
  }
}

.header.is_sub .header-menu__item {
  color: var(--unnamed-color-3994ff);
}
@media (max-width: 1150px) {
  .header.is_sub .header-menu__item {
    font-size: 12px;
  }
}

.header-menu__btn {
  display: flex;
  align-items: center;
  height: 36px;
  padding-inline: 16px;
  border-radius: 19px;
  font-size: 14px;
  letter-spacing: 0.56px;
}

.header.is_sub .header-menu__btn {
  height: 30px;
}

.header-menu__btn--search {
  background: var(--unnamed-color-eb5221);
  color: var(--white);
}

.header-menu__btn--contact {
  background: var(--white);
  color: var(--unnamed-color-3467c7);
}

.header.is_sub .header-menu__btn--contact {
  background: var(--unnamed-color-3994ff);
  color: var(--white);
}

.header-menu__item--subMenu {
  cursor: pointer;
}
@media (hover: hover) {
  .header-menu__item--subMenu:hover .header-menu__subItems {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }
}

.header-menu__subItems {
  display: grid;
  visibility: hidden;
  position: absolute;
  bottom: 0;
  grid-template-columns: repeat(2, 1fr);
  width: -moz-fit-content;
  width: fit-content;
  padding: calc(30 / 16 * 1rem) calc(40 / 16 * 1rem);
  gap: calc(20 / 16 * 1rem);
  transform: translateY(100%);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}

.header-menu__subItem {
  position: relative;
  width: calc(170 / 16 * 1rem);
  padding-left: calc(16 / 16 * 1rem);
  font-size: calc(13 / 16 * 1rem);
  transition: padding-left 0.3s ease;
}
.header-menu__subItem::before {
  display: block;
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 0;
  aspect-ratio: 1;
  width: calc(8 / 16 * 1rem);
  transform: translate(0, -50%);
  border-radius: 50%;
  background: rgba(204, 204, 204, 0.7);
  content: "";
  transition: background 0.3s ease;
}
@media (hover: hover) {
  .header-menu__subItem:hover {
    padding-left: calc(20 / 16 * 1rem);
  }
  .header-menu__subItem:hover::before {
    background: var(--base-color);
  }
}

:root {
  --header-height: 92px;
  --header-height-sp: 60px;
  --header-height-sub: 50px;
  --header-height-sub-sp: 50px;
}

.header {
  display: flex;
  z-index: var(--header);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: transparent;
  transition: background 0.3s ease-out;
}
@media print, screen and (max-width: 992px) {
  .header {
    height: var(--header-height-sp);
  }
}
@media print {
  .header {
    position: absolute;
  }
}
.header .is_sub_open {
  display: none;
}
.header.is_sub {
  position: fixed;
  height: var(--header-height-sub);
  border-bottom: 2px solid var(--unnamed-color-3994ff);
  background: var(--white-2);
  animation: slide-down 0.3s ease-out;
}
@media print, screen and (max-width: 992px) {
  .header.is_sub {
    position: absolute;
    border: none;
  }
}
.header.is_sub .header__inner {
  padding-inline: 25px;
}
.header.is_sub .header__logo {
  position: static;
  width: calc(215 / 16 * 1rem);
}
@media (max-width: 1150px) {
  .header.is_sub .header__logo {
    width: 161px;
  }
}
@media print, screen and (max-width: 992px) {
  .header.is_sub .header__logo {
    width: 215px;
  }
}
@media screen and (max-width: 767px) {
  .header.is_sub .header__logo {
    width: 162px;
  }
}
.header.is_sub .header__logo-img-main {
  display: none;
}
.header.is_sub .header__logo-img-sub {
  display: block;
}
.header.is_sub .btn.btn--sm {
  min-height: 30px;
}
.header.is_sub .is_sub_close {
  display: none;
}
.header.is_sub .is_sub_open {
  display: block;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
  padding-inline: calc(220 / 16 * 1rem) var(--padding-sp);
  gap: calc(20 / 16 * 1rem);
}
@media (max-width: 1150px) {
  .header__inner {
    padding-inline: 30px;
    gap: 0;
  }
}
@media print, screen and (max-width: 992px) {
  .header__inner {
    padding-inline: var(--padding-md);
  }
}
@media screen and (max-width: 767px) {
  .header__inner {
    padding-inline: var(--padding-sp);
  }
}

.header__logo {
  display: flex;
  position: absolute;
  top: 40px;
  left: 35px;
  align-items: center;
  width: calc(160 / 16 * 1rem);
  height: initial;
}
@media (max-width: 1110px) {
  .header__logo {
    width: 120px;
  }
}
.header__logo a {
  display: block;
  width: 100%;
}
.header__logo img {
  width: 100%;
}
@media print, screen and (max-width: 992px) {
  .header__logo {
    top: 32px;
    left: 40px;
    width: 140px;
  }
}
@media screen and (max-width: 767px) {
  .header__logo {
    top: 24px;
    left: 24px;
    width: 100px;
  }
}

.header__logo img {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.header__logo .header__logo-img-sub {
  display: none;
}

.header__drawerBtn {
  display: none;
}
@media print, screen and (max-width: 992px) {
  .header__drawerBtn {
    display: grid;
    z-index: var(--hamburger);
    position: absolute;
    top: 30px;
    right: 35px;
    place-content: center;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .header__drawerBtn {
    top: 25px;
    right: 24px;
  }
}

body:has(.header.is_sub) .header__drawerBtn {
  position: fixed;
  top: 20px;
  right: 35px;
  animation: slide-down 0.3s ease-out;
}

.header__drawer-menu {
  display: none;
}
@media print, screen and (max-width: 992px) {
  .header__drawer-menu {
    display: block;
  }
}

.header__menu {
  margin-left: auto;
}
@media print, screen and (max-width: 992px) {
  .header__menu {
    display: none;
  }
}

.news-detail {
  -webkit-padding-end: var(--padding-pc);
          padding-inline-end: var(--padding-pc);
}
@media print, screen and (max-width: 992px) {
  .news-detail {
    -webkit-padding-end: initial;
            padding-inline-end: initial;
  }
}

.news-detail__head {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  align-items: center;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .news-detail__head {
    gap: 12px;
  }
}

.news-detail__date {
  color: var(--gray-600);
  font-size: 14px;
  font-family: var(--en2-font-family);
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .news-detail__date {
    font-size: 10px;
  }
}

.news-detail__category {
  padding: 4px 8px;
  border-radius: 4px;
  background: var(--light-blue);
  color: var(--white);
  font-weight: var(--bold);
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .news-detail__category {
    padding: 2px 6px;
    font-size: 12px;
  }
}

.news-detail__title {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
  font-weight: var(--bold);
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media print, screen and (max-width: 992px) {
  .news-detail__title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .news-detail__title {
    -webkit-margin-before: 8px;
            margin-block-start: 8px;
    font-size: 16px;
  }
}

.news-detail__img {
  -webkit-margin-before: 24px;
  aspect-ratio: 760/427;
          margin-block-start: 24px;
  overflow: hidden;
  border-radius: 8px;
}
@media print, screen and (max-width: 992px) {
  .news-detail__img {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}
@media screen and (max-width: 767px) {
  .news-detail__img {
    -webkit-margin-before: 24px;
            margin-block-start: 24px;
  }
}
.news-detail__img img {
  -o-object-fit: cover;
  -o-object-position: center;
  width: 100%;
  height: 100%;
     object-fit: cover;
     object-position: center;
}

.news-detail__body {
  -webkit-margin-before: 40px;
          margin-block-start: 40px;
}
@media print, screen and (max-width: 992px) {
  .news-detail__body {
    -webkit-margin-before: 35px;
            margin-block-start: 35px;
  }
}
@media screen and (max-width: 767px) {
  .news-detail__body {
    -webkit-margin-before: 24px;
            margin-block-start: 24px;
  }
}
.news-detail__body * {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
}
.news-detail__body *:first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.news-detail__body p,
.news-detail__body li {
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media print, screen and (max-width: 992px) {
  .news-detail__body p,
  .news-detail__body li {
    font-size: 14px;
    line-height: 2;
  }
}
@media screen and (max-width: 767px) {
  .news-detail__body p,
  .news-detail__body li {
    font-size: 13px;
  }
}
.news-detail__body a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .news-detail__body a:hover {
    opacity: 0.75;
  }
}

.news-links {
  -webkit-margin-before: 80px;
  -webkit-padding-end: var(--padding-pc);
          margin-block-start: 80px;
          padding-inline-end: var(--padding-pc);
}
@media print, screen and (max-width: 992px) {
  .news-links {
    -webkit-padding-end: initial;
    -webkit-margin-before: 57px;
            margin-block-start: 57px;
            padding-inline-end: initial;
  }
}
@media screen and (max-width: 767px) {
  .news-links {
    -webkit-margin-before: 80px;
            margin-block-start: 80px;
    padding-inline: 8px;
  }
}

.news-links__btn {
  display: flex;
  justify-content: center;
}

.news-links__btn-apply.is_close {
  background: var(--unnamed-color-707070);
  font-size: 20px;
  letter-spacing: 0.01em;
  pointer-events: none;
}
@media print, screen and (max-width: 992px) {
  .news-links__btn-apply.is_close {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .news-links__btn-apply.is_close {
    font-size: 12px;
  }
}
.news-links__btn-apply.is_close:after {
  content: none;
}

.news-links__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 576px;
  margin-inline: auto;
  gap: 20px;
}

.news-links__item-archive {
  justify-self: center;
}

.news-links__item-next {
  justify-self: end;
}

.overview {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 35px 56px;
}
@media print, screen and (max-width: 992px) {
  .overview {
    gap: 33px 56px;
  }
}
@media screen and (max-width: 767px) {
  .overview {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.overview__item {
  display: contents;
}
@media screen and (max-width: 767px) {
  .overview__item {
    display: grid;
    gap: 8px;
  }
}

.overview__dt {
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 2.25;
  letter-spacing: 0.04em;
}
@media print, screen and (max-width: 992px) {
  .overview__dt {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .overview__dt {
    font-size: 12px;
  }
}

.overview__text {
  font-weight: var(--medium);
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
  transition: opacity var(--duration);
}
@media print, screen and (max-width: 992px) {
  .overview__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .overview__text {
    font-size: 15px;
  }
}
.overview__text a {
  color: var(--accent);
  text-decoration: underline;
}
@media (any-hover: hover) {
  .overview__text a:hover {
    opacity: 0.75;
  }
}

.privacy {
  -webkit-padding-end: var(--padding-pc);
          padding-inline-end: var(--padding-pc);
}
@media print, screen and (max-width: 992px) {
  .privacy {
    -webkit-padding-end: initial;
            padding-inline-end: initial;
  }
}

.privacy__head p {
  color: var(--gray-800);
  font-weight: var(--bold);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media print, screen and (max-width: 992px) {
  .privacy__head p {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 767px) {
  .privacy__head p {
    font-size: 13px;
    line-height: 2;
  }
}

.privacy__body {
  -webkit-margin-before: 80px;
  display: grid;
          margin-block-start: 80px;
  gap: 64px;
}
@media print, screen and (max-width: 992px) {
  .privacy__body {
    -webkit-margin-before: 64px;
            margin-block-start: 64px;
  }
}
@media screen and (max-width: 767px) {
  .privacy__body {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    gap: 25px;
  }
}

.privacy__sec {
  display: grid;
  gap: 13px;
}
@media screen and (max-width: 767px) {
  .privacy__sec {
    gap: 10px;
  }
}
.privacy__sec h2 {
  color: var(--gray-800);
  font-weight: var(--bold);
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media print, screen and (max-width: 992px) {
  .privacy__sec h2 {
    font-size: 18px;
    line-height: 1.4444444444;
  }
}
@media screen and (max-width: 767px) {
  .privacy__sec h2 {
    font-size: 16px;
    line-height: 1.5;
  }
}

.privacy__sec-body {
  display: grid;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .privacy__sec-body {
    gap: 0;
  }
}
.privacy__sec-body p,
.privacy__sec-body li {
  color: var(--gray-800);
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media print, screen and (max-width: 992px) {
  .privacy__sec-body p,
  .privacy__sec-body li {
    font-size: 14px;
    line-height: 1.7142857143;
  }
}
@media screen and (max-width: 767px) {
  .privacy__sec-body p,
  .privacy__sec-body li {
    font-size: 13px;
    line-height: 2;
  }
}
.privacy__sec-body a {
  color: var(--accent);
  text-decoration: underline;
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .privacy__sec-body a:hover {
    opacity: 0.75;
  }
}
.privacy__sec-body ul {
  -webkit-padding-start: 2.5em;
  display: grid;
          padding-inline-start: 2.5em;
  gap: 24px;
}
@media print, screen and (max-width: 992px) {
  .privacy__sec-body ul {
    -webkit-padding-start: 3rem;
            padding-inline-start: 3rem;
    gap: 16px;
  }
}
@media screen and (max-width: 767px) {
  .privacy__sec-body ul {
    -webkit-margin-before: 8px;
    -webkit-padding-start: 2em;
            margin-block-start: 8px;
            padding-inline-start: 2em;
    gap: 12px;
  }
}
.privacy__sec-body li {
  position: relative;
}
.privacy__sec-body li::before {
  display: block;
  position: absolute;
  top: 0.6em;
  left: -1.7em;
  aspect-ratio: 1/1;
  width: 10px;
  border-radius: 50%;
  background: #cccccc;
  content: "";
}
@media print, screen and (max-width: 992px) {
  .privacy__sec-body li::before {
    top: 0.6em;
    left: -1.5em;
  }
}
@media screen and (max-width: 767px) {
  .privacy__sec-body li::before {
    top: 0.8em;
    width: 8px;
  }
}
.privacy__sec-body span {
  display: block;
  font-style: normal;
}

.program-about {
  -webkit-margin-after: 80px;
          margin-block-end: 80px;
}
@media print, screen and (max-width: 992px) {
  .program-about {
    -webkit-margin-after: 40px;
            margin-block-end: 40px;
  }
}
@media screen and (max-width: 767px) {
  .program-about {
    -webkit-margin-after: 64px;
            margin-block-end: 64px;
  }
}

.program-about__body {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
}
@media print, screen and (max-width: 992px) {
  .program-about__body {
    -webkit-margin-before: 30px;
            margin-block-start: 30px;
  }
}

.program-about__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 42px 39px;
}
@media print, screen and (max-width: 992px) {
  .program-about__items {
    gap: 24px;
  }
}
@media screen and (max-width: 767px) {
  .program-about__items {
    grid-template-columns: 1fr;
  }
}

.program-about__item {
  display: grid;
  gap: 2px;
}

.program-about__item-title {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: 0.04em;
}
@media print, screen and (max-width: 992px) {
  .program-about__item-title {
    font-size: 14px;
  }
}
.program-about__item-title img {
  -o-object-fit: contain;
  width: 34px;
  height: 34px;
     object-fit: contain;
}
@media print, screen and (max-width: 992px) {
  .program-about__item-title img {
    width: 28px;
    height: 28px;
  }
}

.program-about__item-content {
  -webkit-margin-before: 12px;
          margin-block-start: 12px;
}
@media print, screen and (max-width: 992px) {
  .program-about__item-content {
    -webkit-margin-before: 8px;
            margin-block-start: 8px;
  }
}

.program-links {
  -webkit-padding-after: 114px;
  -webkit-margin-before: 67px;
          margin-block-start: 67px;
          padding-block-end: 114px;
}
@media screen and (max-width: 767px) {
  .program-links {
    -webkit-padding-after: 87px;
            padding-block-end: 87px;
  }
}
@media screen and (max-width: 767px) {
  .program-links {
    -webkit-padding-after: 60px;
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
            padding-block-end: 60px;
  }
}

.program-links__btn {
  display: flex;
  justify-content: center;
}

.program-links__btn-apply.is_close {
  background: var(--unnamed-color-707070);
  font-size: 20px;
  letter-spacing: 0.01em;
  pointer-events: none;
}
@media print, screen and (max-width: 992px) {
  .program-links__btn-apply.is_close {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .program-links__btn-apply.is_close {
    font-size: 12px;
  }
}
.program-links__btn-apply.is_close:after {
  content: none;
}

.program-links__items {
  -webkit-margin-before: 76px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 630px;
  margin-inline: auto;
          margin-block-start: 76px;
  gap: 20px;
}
@media print, screen and (max-width: 992px) {
  .program-links__items {
    max-width: 420px;
  }
}

.program-links__item-archive {
  justify-self: center;
}

.program-links__item-next {
  justify-self: end;
}

.program-message {
  -webkit-margin-before: 120px;
  display: grid;
  grid-template-columns: 1fr 110px;
  align-items: flex-start;
  max-width: 610px;
  margin-inline: auto;
          margin-block-start: 120px;
  gap: 53px;
}
@media print, screen and (max-width: 992px) {
  .program-message {
    -webkit-margin-before: 100px;
            margin-block-start: 100px;
  }
}
@media screen and (max-width: 767px) {
  .program-message {
    -webkit-margin-before: 80px;
    -webkit-padding-end: 18px;
    grid-template-columns: 1fr 60px;
            margin-block-start: 80px;
            padding-inline-end: 18px;
    gap: 28px;
  }
}

.program-message__content {
  position: relative;
  padding: 24px 40px;
  border-radius: 16px;
  background: var(--white-2);
  background: var(--gray-100);
}
@media screen and (max-width: 767px) {
  .program-message__content {
    padding: 16px;
  }
}
.program-message__content::before {
  display: block;
  position: absolute;
  top: 50px;
  right: 0;
  aspect-ratio: 1/1;
  width: 39px;
  transform: translateX(90%);
  background: url(../images/common/deco-message.svg) no-repeat center center/contain;
  content: "";
}
@media screen and (max-width: 767px) {
  .program-message__content::before {
    top: 20px;
    width: 24px;
  }
}

.program-message__text {
  font-weight: var(--bold);
  font-size: 18px;
  line-height: 1.7777777778;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .program-message__text {
    font-size: 13px;
    line-height: 1.7692307692;
  }
}

.program-message__img {
  display: grid;
  gap: 8px;
}
.program-message__img img {
  -o-object-fit: cover;
  -o-object-position: center;
  aspect-ratio: 1/1;
  width: 100%;
     object-fit: cover;
     object-position: center;
  border-radius: 50%;
  background: var(--white-2);
}

.program-message__img-text {
  color: var(--gray-800);
  font-weight: var(--medium);
  letter-spacing: 0.04em;
  text-align: center;
}
.program-message__img-text span {
  display: block;
}

.program-message__img-position {
  font-size: 13px;
  word-break: auto-phrase;
}
@media screen and (max-width: 767px) {
  .program-message__img-position {
    font-size: 8px;
  }
}

.program-message__img-name {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .program-message__img-name {
    font-size: 10px;
  }
}

.program-sec {
  display: grid;
  grid-template-columns: 317px 1fr;
  padding-block: 80px;
  gap: 20px;
  background-image: linear-gradient(to right, var(--gray-600) 40%, rgba(255, 255, 255, 0) 0%);
  background-position: top;
  background-size: 10px 1px;
  background-repeat: repeat-x;
}
@media print, screen and (max-width: 992px) {
  .program-sec {
    grid-template-columns: 1fr;
    padding-block: 40px;
    gap: 32px;
  }
}
@media screen and (max-width: 767px) {
  .program-sec {
    padding-block: 40px 64px;
  }
}

.program-sec__body {
  -webkit-margin-before: 5px;
          margin-block-start: 5px;
}
@media print, screen and (max-width: 992px) {
  .program-sec__body {
    -webkit-padding-start: var(--padding-md);
    -webkit-margin-before: 0;
            margin-block-start: 0;
            padding-inline-start: var(--padding-md);
  }
}
@media screen and (max-width: 767px) {
  .program-sec__body {
    -webkit-padding-start: initial;
            padding-inline-start: initial;
  }
}

.program-sec__time {
  font-weight: var(--bold);
  font-size: 28px;
  line-height: 1.2857142857;
  letter-spacing: 0.04em;
}
.program-sec__time span {
  font-weight: var(--bold);
  font-size: 18px;
}

.program-sec__editor *:not(:first-child) {
  -webkit-margin-before: 16px;
          margin-block-start: 16px;
}
.program-sec__editor h1,
.program-sec__editor h2,
.program-sec__editor h3 {
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 22px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .program-sec__editor h1,
  .program-sec__editor h2,
  .program-sec__editor h3 {
    font-size: 18px;
  }
}
.program-sec__editor p {
  font-weight: var(--bold);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .program-sec__editor p {
    font-size: 14px;
  }
}
.program-sec__editor ul {
  -webkit-padding-start: 1em;
          padding-inline-start: 1em;
  list-style: disc;
}
.program-sec__editor ul li {
  font-weight: var(--medium);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  list-style: initial;
}
@media screen and (max-width: 767px) {
  .program-sec__editor ul li {
    font-size: 13px;
  }
}
.program-sec__editor ul li::marker {
  color: var(--light-blue);
}
.program-sec__editor + .program-sec__editor {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
}
@media print, screen and (max-width: 992px) {
  .program-sec__editor + .program-sec__editor {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}

.program-sec__btn {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
}
@media print, screen and (max-width: 992px) {
  .program-sec__btn {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}
@media screen and (max-width: 767px) {
  .program-sec__btn {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
    padding-inline: 16px;
  }
}

.program-sec__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-start;
  gap: 50px 85px;
}
@media print, screen and (max-width: 992px) {
  .program-sec__items {
    gap: 44px;
  }
}
@media screen and (max-width: 767px) {
  .program-sec__items {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.program-sec__item {
  display: grid;
  gap: 15px;
}

.program-sec__item-head {
  display: grid;
  grid-template-columns: max-content max-content;
  align-items: center;
}

.program-sec__item-img {
  z-index: 2;
  position: relative;
  aspect-ratio: 1/1;
  width: 80px;
  border-radius: 50%;
  background: var(--white-2);
}
.program-sec__item-img img {
  -o-object-fit: cover;
  -o-object-position: center;
  width: 100%;
  height: 100%;
     object-fit: cover;
     object-position: center;
  border-radius: 50%;
}

.program-sec__item-cat {
  padding-inline: 40px 19px;
  padding-block: 5px;
  transform: translateX(-30px);
  border-radius: 32px;
  background: var(--white-2);
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 20px;
  line-height: 1.95;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .program-sec__item-cat {
    font-size: 24px;
  }
}

.program-sec__item-body {
  -webkit-padding-start: 23px;
  display: grid;
          padding-inline-start: 23px;
  gap: 8px;
}

.program-sec__item-title {
  font-weight: var(--bold);
  font-size: 22px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .program-sec__item-title {
    font-size: 18px;
  }
}

.program-sec__item-text {
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 1.6875;
  letter-spacing: 0.04em;
  white-space: pre-wrap;
}
@media screen and (max-width: 767px) {
  .program-sec__item-text {
    font-size: 13px;
  }
}

.search-box {
  display: grid;
  position: relative;
  grid-template-columns: 22.3214285714% 1fr;
  padding: 8px;
  border-radius: 16px;
  background-color: var(--gray-200);
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
}
@media print, screen and (max-width: 992px) {
  .search-box {
    grid-template-columns: 1fr;
  }
}

.search-box__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px;
  gap: 5px;
}
@media print, screen and (max-width: 992px) {
  .search-box__result {
    flex-direction: row;
    order: 2;
    gap: 10px;
  }
}

.search-box__result-number {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.search-box__result-value {
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 60px;
  line-height: 1;
  font-family: var(--en2-font-family);
}
@media print, screen and (max-width: 992px) {
  .search-box__result-value {
    font-size: 40px;
  }
}

.search-box__result-unit {
  margin-top: 15px;
  color: var(--gray-800);
  font-weight: var(--bold);
  font-size: 20px;
}
@media print, screen and (max-width: 992px) {
  .search-box__result-unit {
    font-size: 16px;
  }
}

.search-box__result-text {
  color: var(--gray-800);
  font-weight: var(--bold);
  font-size: 15px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}
@media print, screen and (max-width: 992px) {
  .search-box__result-text {
    -webkit-margin-before: 15px;
            margin-block-start: 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .search-box__result-text {
    font-size: 12px;
  }
}

.search-box__content {
  display: flex;
  gap: 5px;
}
@media print, screen and (max-width: 992px) {
  .search-box__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  .search-box__content {
    grid-template-columns: 1fr;
  }
}

.search-box__item {
  padding: 15px 25px;
  background: var(--white-2);
}
@media screen and (max-width: 767px) {
  .search-box__item {
    padding: 20px;
  }
}

.search-box__item:first-child {
  width: 353px;
}
@media print, screen and (max-width: 992px) {
  .search-box__item:first-child {
    width: 100%;
  }
}

.search-box__item:last-child {
  width: 502px;
  border-radius: 0 16px 16px 0;
}
@media print, screen and (max-width: 992px) {
  .search-box__item:last-child {
    width: 100%;
  }
}

.search-box__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.search-box__icon {
  aspect-ratio: 1/1;
  width: 34px;
}
.search-box__icon img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
     object-fit: contain;
}

.search-box__title {
  color: var(--blue);
  font-weight: var(--bold);
  font-size: 16px;
  letter-spacing: 0.04em;
}

.search-box__toggle-group {
  -webkit-margin-before: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
          margin-block-start: 12px;
  gap: 18px 12px;
}
@media print, screen and (max-width: 992px) {
  .search-box__toggle-group {
    gap: 15px 10px;
  }
}

.search-box__toggle-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 32px;
  padding: 4px;
  gap: 8px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background-color: var(--white);
  color: var(--gray-800);
  font-weight: var(--bold);
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: opacity var(--duration);
}
.search-box__toggle-btn span {
  display: inline-block;
}
@media (any-hover: hover) {
  .search-box__toggle-btn:hover {
    opacity: 0.75;
  }
}

.search-box__toggle-btn.search-box__toggle-btn--lg {
  letter-spacing: 0;
}
@media print, screen and (max-width: 992px) {
  .search-box__toggle-btn.search-box__toggle-btn--lg {
    font-size: 10px;
  }
}

.search-box__toggle-btn--all {
  grid-column: 1/4;
}

.search-box__toggle-btn img {
  -o-object-fit: contain;
  -o-object-position: bottom;
  aspect-ratio: 1/1;
  width: 50px;
     object-fit: contain;
     object-position: bottom;
}
@media print, screen and (max-width: 992px) {
  .search-box__toggle-btn img {
    width: 35px;
  }
}

.search-box__toggle-btn.is_active {
  background: var(--glade-blue);
  color: var(--white);
}
.search-box__toggle-btn.is_active img {
  filter: brightness(0) invert(1);
}

.sub-mv {
  -webkit-margin-before: 118px;
  -webkit-padding-after: 112px;
  position: relative;
          margin-block-start: 118px;
          padding-block-end: 112px;
}
@media print, screen and (max-width: 992px) {
  .sub-mv {
    -webkit-margin-before: 82px;
    -webkit-padding-after: 87px;
            margin-block-start: 82px;
    padding-inline: var(--padding-md);
            padding-block-end: 87px;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv {
    -webkit-margin-before: 47px;
    -webkit-padding-after: 25px;
            margin-block-start: 47px;
    padding-inline: initial;
            padding-block-end: 25px;
  }
}

.sub-mv__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.sub-mv__main {
  display: grid;
}
@media screen and (max-width: 767px) {
  .sub-mv__main {
    gap: 8px;
  }
}

.sub-mv__meta {
  display: flex;
  align-items: center;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .sub-mv__meta {
    display: grid;
    gap: 4px;
  }
}

.sub-mv__meta-num {
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 27px;
  font-family: var(--en2-font-family);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.sub-mv__meta-num span {
  font-size: 50px;
}

.sub-mv__meta-company {
  color: var(--gray-800);
  font-weight: var(--medium);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .sub-mv__meta-company {
    font-size: 14px;
  }
}

.sub-mv__title {
  color: var(--gray-800);
  font-weight: var(--bold);
  font-size: 32px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .sub-mv__title {
    font-size: 24px;
  }
}

.sub-mv__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  flex-shrink: 0;
  align-items: center;
  gap: 42px;
}
@media print, screen and (max-width: 992px) {
  .sub-mv__links {
    display: none;
  }
}

.sub-mv__links-item-archive {
  justify-self: center;
}

.sub-mv__links-item-next {
  justify-self: end;
}

.sub-mv__body {
  -webkit-margin-before: 52px;
          margin-block-start: 52px;
}
@media print, screen and (max-width: 992px) {
  .sub-mv__body {
    -webkit-margin-before: 40px;
            margin-block-start: 40px;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv__body {
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
  }
}

.sub-mv__media {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 700px;
  margin-inline: auto;
  gap: 70px;
}
@media print, screen and (max-width: 992px) {
  .sub-mv__media {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv__media {
    gap: 70px;
  }
}

.sub-mv__content:nth-child(1) {
  order: 2;
}
.sub-mv__content:nth-child(2) {
  order: 1;
}
.sub-mv__text {
  font-weight: var(--medium);
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media print, screen and (max-width: 992px) {
  .sub-mv__text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv__text {
    font-size: 14px;
    line-height: 2;
  }
}

.sub-mv__slider {
  position: relative;
}
.sub-mv__slider .swiper-pagination {
  display: flex;
  bottom: -40px;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
@media print, screen and (max-width: 992px) {
  .sub-mv__slider .swiper-pagination {
    bottom: -40px;
  }
}
@media screen and (max-width: 767px) {
  .sub-mv__slider .swiper-pagination {
    bottom: -40px;
  }
}
.sub-mv__slider .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0;
  background: var(--light-blue);
  opacity: 1;
}
.sub-mv__slider .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background: var(--accent);
}

.sub-mv__slider-img {
  aspect-ratio: 700/393;
  width: 100%;
}
.sub-mv__slider-img img {
  -o-object-fit: cover;
  -o-object-position: center;
  width: 100%;
  height: 100%;
     object-fit: cover;
     object-position: center;
  border-radius: 8px;
}

.sub-program {
  padding-block: 120px 60px;
  background-color: var(--gray-100);
}
@media print, screen and (max-width: 992px) {
  .sub-program {
    padding-block: 120px 60px;
  }
}
@media screen and (max-width: 767px) {
  .sub-program {
    padding-block: 64px 30px;
  }
}

.sub-program__title {
  color: var(--gray-800);
  font-weight: var(--bold);
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .sub-program__title {
    font-size: 18px;
    line-height: 1.5;
  }
}

.top-mv {
  position: relative;
  width: 100%;
  padding-block: 110px 72px;
  overflow: hidden;
  background-color: var(--light-blue);
}
@media print, screen and (max-width: 992px) {
  .top-mv {
    height: 100svh;
    min-height: 750px;
    padding-block: 80px;
  }
}
@media screen and (max-width: 767px) {
  .top-mv {
    min-height: 600px;
    max-height: 750px;
    padding-block: 40px;
  }
}
@media screen and (min-width: 1920px) {
  .top-mv {
    padding-block: 136px 101px;
  }
}

.top-mv__inner {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 1920px) {
  .top-mv__inner {
    max-width: 1800px;
  }
}

.top-mv__bg-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-mv__bg-circle {
  z-index: 1;
  position: absolute;
  aspect-ratio: 1/1;
  border-radius: 50%;
  animation: rotate 10s linear infinite;
  opacity: 0.4;
}

.top-mv__bg-circle:nth-child(1) {
  top: -10%;
  left: -10%;
  width: 551px;
  background: linear-gradient(-30deg, transparent, #fff);
}
@media print, screen and (max-width: 992px) {
  .top-mv__bg-circle:nth-child(1) {
    top: -15%;
    left: -37%;
    width: 540px;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__bg-circle:nth-child(1) {
    top: -14%;
    left: -50%;
    width: 368px;
  }
}
@media screen and (min-width: 1920px) {
  .top-mv__bg-circle:nth-child(1) {
    width: 682px;
  }
}

.top-mv__bg-circle:nth-child(2) {
  top: -10%;
  right: 5%;
  width: 271px;
  background: linear-gradient(-30deg, transparent, #fff);
}
@media print, screen and (max-width: 992px) {
  .top-mv__bg-circle:nth-child(2) {
    top: -143px;
    right: -77px;
    width: 265px;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__bg-circle:nth-child(2) {
    top: -96px;
    right: -63px;
    width: 181px;
  }
}
@media screen and (min-width: 1920px) {
  .top-mv__bg-circle:nth-child(2) {
    top: -15%;
    right: 2%;
    width: 408px;
  }
}

.top-mv__bg-circle:nth-child(3) {
  right: 20%;
  bottom: -20%;
  width: 551px;
  background: linear-gradient(90deg, transparent, #fff);
}
@media print, screen and (max-width: 992px) {
  .top-mv__bg-circle:nth-child(3) {
    right: -13%;
    bottom: -20%;
    width: 540px;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__bg-circle:nth-child(3) {
    right: -20%;
    bottom: -20%;
    width: 368px;
  }
}
@media screen and (min-width: 1920px) {
  .top-mv__bg-circle:nth-child(3) {
    right: 10%;
    bottom: -31%;
    width: 825px;
  }
}

.top-mv__bg-circle.top-mv__bg-circle--menu {
  display: none;
}
@media print, screen and (max-width: 992px) {
  .top-mv__bg-circle.top-mv__bg-circle--menu {
    display: block;
    z-index: 2;
    top: -41px;
    right: -9px;
    left: initial;
    width: 122px;
    background: var(--light-blue);
    color: #EB5221;
    color: #3994FF;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__bg-circle.top-mv__bg-circle--menu {
    top: -43px;
    right: -26px;
  }
}

body:has(.header.is_sub) .top-mv__bg-circle.top-mv__bg-circle--menu {
  z-index: var(--drawer-back);
  position: fixed;
  animation: slide-down 0.3s ease-out;
}

.top-mv__bg-gradient {
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--glade-yellow-green);
}

.top-mv__content-area {
  display: flex;
  z-index: 3;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: max(150px, 11.7vw);
}
@media print, screen and (max-width: 992px) {
  .top-mv__content-area {
    align-items: flex-end;
    justify-content: flex-start;
    width: 100%;
    max-width: 610px;
    max-height: 752px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__content-area {
    max-width: 311px;
    max-height: 500px;
    margin-top: 26px;
  }
}
@media screen and (min-width: 1920px) {
  .top-mv__content-area {
    gap: max(210px, 10.9vw);
  }
}

@media print, screen and (max-width: 992px) {
  .top-mv__door {
    position: absolute;
    top: 0;
    right: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__door {
    right: 29px;
  }
}

.top-mv__door-image {
  position: relative;
  aspect-ratio: 388/616;
  width: 388px;
}
@media print, screen and (max-width: 992px) {
  .top-mv__door-image {
    width: 309px;
  }
}
@media screen and (max-width: 767px) {
  .top-mv__door-image {
    width: 180px;
  }
}
@media screen and (min-width: 1920px) {
  .top-mv__door-image {
    width: 531px;
  }
}
.top-mv__door-image img {
  z-index: 2;
  position: relative;
  width: 100%;
}

.top-mv__door-image-gradient {
  -webkit-clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
  display: block;
  z-index: 1;
  position: absolute;
  top: 48%;
  left: 0;
  width: 115.7216494845%;
  height: 87.1753246753%;
  transform: translateY(-50%);
          clip-path: polygon(0 0, 100% 5%, 100% 95%, 0 100%);
}
.top-mv__door-image-gradient::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: linear-gradient(0deg, #f7ffb5, #ffeea7 49.26%, #69ffe8);
  content: "";
  animation: rotate-gradient 10s linear infinite;
}

.top-mv__door-image img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
     object-fit: cover;
}

.top-mv__content {
  z-index: 3;
  position: relative;
}
@media print, screen and (max-width: 992px) {
  .top-mv__content {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}
.top-mv__title {
  width: 390px;
}
@media screen and (max-width: 767px) {
  .top-mv__title {
    width: 229px;
  }
}
@media screen and (min-width: 1920px) {
  .top-mv__title {
    width: 534px;
  }
}
.top-mv__title img {
  width: 100%;
}

.top-mv__title-sub {
  -webkit-margin-before: 30px;
  width: -moz-fit-content;
  width: fit-content;
          margin-block-start: 30px;
  padding: 2px 15px;
  border-radius: 4px;
  background: var(--white);
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 20px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .top-mv__title-sub {
    -webkit-margin-before: 13px;
            margin-block-start: 13px;
    padding: 2px 12px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1920px) {
  .top-mv__title-sub {
    font-size: 27px;
  }
}
@media screen and (min-width: 1920px) {
  .top-mv__title-sub {
    -webkit-margin-before: 34px;
            margin-block-start: 34px;
  }
}

.top-mv__copy {
  -webkit-margin-before: 12px;
          margin-block-start: 12px;
}
@media screen and (max-width: 767px) {
  .top-mv__copy {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}
@media screen and (min-width: 1920px) {
  .top-mv__copy {
    -webkit-margin-before: 18px;
            margin-block-start: 18px;
  }
}

.top-mv__text {
  color: var(--white-2);
  font-weight: var(--medium);
  font-size: 18px;
  line-height: 1.6666666667;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .top-mv__text {
    font-size: 12px;
    line-height: 1.6666666667;
  }
}
@media screen and (min-width: 1920px) {
  .top-mv__text {
    font-size: 24px;
    line-height: 1.6666666667;
  }
}

.top-mv__button {
  -webkit-margin-before: 22px;
          margin-block-start: 22px;
}
@media screen and (max-width: 767px) {
  .top-mv__button {
    -webkit-margin-before: 17px;
            margin-block-start: 17px;
  }
}
@media screen and (min-width: 1920px) {
  .top-mv__button {
    -webkit-margin-before: 36px;
            margin-block-start: 36px;
  }
}
.top-mv__button .top-mv__button-link {
  border-radius: 100vmax;
}
@media screen and (min-width: 1920px) {
  .top-mv__button .top-mv__button-link {
    max-width: 459px;
    min-height: 105px;
    font-size: 34px;
  }
  .top-mv__button .top-mv__button-link:after {
    width: 45px;
  }
}

.top-program {
  -webkit-padding-after: 120px;
  position: relative;
          padding-block-end: 120px;
  overflow-x: clip;
  background: var(--gray-100);
}
@media print, screen and (max-width: 992px) {
  .top-program {
    -webkit-padding-after: 80px;
            padding-block-end: 80px;
  }
}
@media screen and (max-width: 767px) {
  .top-program {
    -webkit-padding-after: initial;
            padding-block-end: initial;
  }
}
.top-program::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100px;
  background: var(--white-2);
  content: "";
}
@media screen and (max-width: 767px) {
  .top-program::before {
    height: 72px;
  }
}
.top-program::after {
  display: block;
  z-index: 1;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: var(--glade-yellow-green-reverse);
  content: "";
}

.top-program__head {
  -webkit-padding-before: 46px;
  position: relative;
          padding-block-start: 46px;
}
@media screen and (max-width: 767px) {
  .top-program__head {
    -webkit-padding-before: 27px;
            padding-block-start: 27px;
  }
}
.top-program__head::before, .top-program__head::after {
  position: absolute;
  top: 103px;
  width: 50vw;
  height: 308px;
  content: "";
}
@media screen and (max-width: 767px) {
  .top-program__head::before, .top-program__head::after {
    top: 72px;
    height: 138px;
  }
}
.top-program__head::before {
  left: 0;
  background: var(--light-blue);
}
.top-program__head::after {
  right: 0;
  background: var(--blue);
}

.top-program__head-back {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 50%;
  width: 1280px;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .top-program__head-back {
    width: 390px;
  }
}

.top-program__main {
  z-index: 3;
  position: relative;
}

.top-program__logo {
  width: 46px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .top-program__logo {
    width: 32px;
  }
}

.top-program__title-block {
  -webkit-margin-before: 5px;
          margin-block-start: 5px;
}
@media screen and (max-width: 767px) {
  .top-program__title-block {
    -webkit-margin-before: 10px;
            margin-block-start: 10px;
  }
}

.top-program__title-en {
  width: 107px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .top-program__title-en {
    width: 76px;
  }
}

.top-program__title-jp {
  -webkit-margin-before: 13px;
          margin-block-start: 13px;
  color: var(--white-2);
  font-weight: var(--bold);
  font-size: 30px;
  line-height: 2;
  letter-spacing: 0.04em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-program__title-jp {
    -webkit-margin-before: 8px;
            margin-block-start: 8px;
    font-size: 21px;
  }
}

.top-program__search {
  -webkit-margin-before: 30px;
  z-index: 3;
  position: relative;
          margin-block-start: 30px;
}
@media screen and (max-width: 767px) {
  .top-program__search {
    -webkit-margin-before: 7px;
            margin-block-start: 7px;
  }
}

.top-program__value-area1 {
  -webkit-margin-before: 33px;
          margin-block-start: 33px;
}
@media screen and (max-width: 767px) {
  .top-program__value-area1 {
    -webkit-margin-before: 18px;
            margin-block-start: 18px;
  }
}

.top-program__value-area2 {
  -webkit-margin-before: 27px;
          margin-block-start: 27px;
}

.top-program__value {
  font-weight: var(--bold);
  font-size: 13px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 767px) {
  .top-program__value {
    font-size: 11px;
  }
}
.top-program__value span {
  color: var(--light-blue);
  font-weight: var(--bold);
  font-size: 21px;
  font-family: var(--en2-font-family);
}
@media screen and (max-width: 767px) {
  .top-program__value span {
    font-size: 18px;
  }
}
.top-program__value > span {
  margin-inline: 5px;
}

.top-program__cards {
  -webkit-margin-before: 27px;
          margin-block-start: 27px;
}
@media screen and (max-width: 767px) {
  .top-program__cards {
    -webkit-margin-before: 12px;
            margin-block-start: 12px;
  }
}

.top-program__btn-area {
  -webkit-margin-before: 40px;
  display: flex;
  justify-content: center;
          margin-block-start: 40px;
}

.top-program__cta-area {
  -webkit-margin-before: 80px;
  position: relative;
          margin-block-start: 80px;
  padding: 45px 20px;
  overflow: hidden;
  border-radius: 12px;
  background: var(--light-blue);
}
@media screen and (max-width: 767px) {
  .top-program__cta-area {
    -webkit-margin-before: 35px;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
            margin-block-start: 35px;
    padding: 45px 20px 58px;
    border-radius: initial;
  }
}

.top-program__cta-area-text {
  color: var(--white-2);
  font-weight: var(--bold);
  font-size: 26px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
}
@media print, screen and (max-width: 992px) {
  .top-program__cta-area-text {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .top-program__cta-area-text {
    font-size: 20px;
  }
}

.top-program__cta-area-btn {
  -webkit-margin-before: 46px;
  display: flex;
  z-index: 2;
  position: relative;
  justify-content: center;
          margin-block-start: 46px;
}
@media screen and (max-width: 767px) {
  .top-program__cta-area-btn {
    -webkit-margin-before: 34px;
            margin-block-start: 34px;
  }
}

.top-program__cta-circle {
  display: block;
  z-index: 1;
  position: absolute;
  aspect-ratio: 1/1;
  width: 551px;
  border-radius: 50%;
  opacity: 0.2;
}
@media screen and (max-width: 767px) {
  .top-program__cta-circle {
    display: none;
  }
}

.top-program__cta-circle:nth-of-type(1) {
  top: 0;
  left: 0;
  transform: translate(-50%, -70%);
  background: linear-gradient(-120deg, #E6E6E6, #8D8D8D);
}

.top-program__cta-circle:nth-of-type(2) {
  top: 50%;
  right: 0;
  transform: translate(30%, -50%);
  background: linear-gradient(150deg, #E6E6E6, #8D8D8D);
}
@media print, screen and (max-width: 992px) {
  .top-program__cta-circle:nth-of-type(2) {
    top: initial;
    bottom: 0;
    transform: translate(20%, 60%);
  }
}

.top-voice {
  position: relative;
  max-width: 887px;
  margin-inline: auto;
}
.top-voice .swiper-pagination {
  display: flex;
  bottom: -50px;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.top-voice .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0;
  background: var(--light-blue);
  opacity: 1;
}
.top-voice .swiper-pagination-bullet-active {
  width: 16px;
  height: 16px;
  background: var(--accent);
}
@media screen and (min-width: 1280px) {
  .top-voice .swiper-slide {
    width: 887px;
  }
}

.top-voice__inner {
  margin-right: calc(50% - 50vw);
  padding-right: calc(50% - 50vw);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rotate-gradient {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes slideOut {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes slideIn {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.sp_only {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp_only {
    display: block;
  }
}

.tab_only {
  display: none;
}
@media print, screen and (max-width: 992px) {
  .tab_only {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .tab_only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pc_tab_only {
    display: none;
  }
}

/* ドロワーメニュー展開時背景固定 */
@media print, screen and (max-width: 992px) {
  body:has(.hamburger[aria-expanded=true]) {
    overflow: hidden;
  }
}

body:has(dialog[open]) {
  overflow: hidden;
}

body {
  overflow-y: scroll; /* 常にスクロールバーを表示 */
}

.siteWrapper:has(dialog[open]) {
  overflow-y: auto;
  scrollbar-gutter: stable; /* スクロールバーのスペースを常に確保する */
}

dialog[open] {
  animation-duration: 200ms;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-name: fadeIn;
}

dialog:not([open]) {
  animation-duration: 200ms;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-name: fadeOut;
}

.siteWrapper {
  overflow-x: clip;
}

.hover {
  transition: opacity var(--duration);
}
@media (any-hover: hover) {
  .hover:hover {
    opacity: 0.75;
  }
}
/*# sourceMappingURL=styles.css.map */
