@charset "UTF-8";
html.lenis {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

/* ===============================================
// Component: Site Header
// =============================================== */
.hamburger-menu {
  background-color: #fff;
  height: 80px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: flex;
  align-items: center;
}
.hamburger-menu .ex {
  position: relative;
}
.hamburger-menu .ex::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../images/ex-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.hamburger-menu .hamburger-menu__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: 0 auto;
}
.hamburger-menu .hamburger-menu__btn {
  display: none;
}
.hamburger-menu .head-list {
  display: flex;
  align-items: center;
  gap: 2.5vw;
  padding: 0;
  list-style: none;
}
.hamburger-menu .logo {
  max-width: 85px;
}
.hamburger-menu .head-btn {
  padding: 0.5vw 2vw;
  padding-right: 3vw;
}
.hamburger-menu .head-btn a {
  color: #fff;
}
.hamburger-menu .blk {
  background-color: #292929;
}
.hamburger-menu .red {
  background-color: #B30000;
}
.hamburger-menu a {
  font-weight: bold;
  font-size: 1vw;
}
.hamburger-menu .sp-logo img {
  width: 150px;
  padding-left: 25px;
}

/* ===============================================
// SP Styles (767px以下)
// =============================================== */
@media screen and (max-width: 767px) {
  .hamburger-menu .logo {
    max-width: 150px;
  }
  .hamburger-menu .ex::after {
    width: 10px;
    height: 10px;
    right: 2px;
  }
  body.is-menu-active {
    overflow: hidden;
  }
  .site-content-wrapper {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .hamburger-menu {
    height: 60px;
    background-color: #fff;
  }
  .hamburger-menu.is-active .hamburger-menu__btn span {
    background-color: #fff;
  }
  .hamburger-menu.is-active .hamburger-menu__btn span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .hamburger-menu.is-active .hamburger-menu__btn span:nth-child(2) {
    opacity: 0;
  }
  .hamburger-menu.is-active .hamburger-menu__btn span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .hamburger-menu.is-active .head-btn {
    padding: 5px 13px 5px 7px;
  }
  .hamburger-menu.is-active .hamburger-menu__nav {
    visibility: visible;
    opacity: 1;
  }
  .hamburger-menu.is-active .hamburger-menu__nav li:nth-child(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
  }
  .hamburger-menu.is-active .hamburger-menu__nav li:nth-child(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s;
  }
  .hamburger-menu.is-active .hamburger-menu__nav li:nth-child(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
  }
  .hamburger-menu.is-active .hamburger-menu__nav li:nth-child(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
  }
  .hamburger-menu.is-active .hamburger-menu__nav li:nth-child(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.25s;
  }
  .hamburger-menu.is-active .hamburger-menu__nav li:nth-child(6) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
  }
  .hamburger-menu.is-active .hamburger-menu__nav li:nth-child(7) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
  }
  .hamburger-menu.is-active .hamburger-menu__nav li:nth-child(8) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
  }
  .hamburger-menu.is-active .hamburger-menu__nav li:nth-child(9) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
  }
  .hamburger-menu.is-active .hamburger-menu__nav li:nth-child(10) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
  }
  .hamburger-menu .hamburger-menu__btn {
    display: block;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 100;
    width: 30px;
    height: 30px;
    cursor: pointer;
    background: none;
    border: none;
  }
  .hamburger-menu .hamburger-menu__btn span {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: all 0.4s;
  }
  .hamburger-menu .hamburger-menu__btn span:nth-child(1) {
    top: 5px;
  }
  .hamburger-menu .hamburger-menu__btn span:nth-child(2) {
    top: 14px;
  }
  .hamburger-menu .hamburger-menu__btn span:nth-child(3) {
    top: 23px;
  }
  .hamburger-menu__nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #333;
    padding: 80px 40px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .hamburger-menu__nav .head-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .hamburger-menu__nav .head-list:not(:last-child) {
    margin-bottom: 40px;
  }
  .hamburger-menu__nav li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.5s, transform 0.5s;
  }
  .hamburger-menu__nav a {
    color: #fff;
    font-size: 1rem;
  }
  body.is-menu-active {
    overflow: hidden;
  }
  body.is-menu-active .site-content-wrapper {
    transform: translateX(-200px) scale(0.9);
    filter: blur(5px);
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__btn span {
    background-color: #fff;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__btn span:nth-child(1) {
    transform: rotate(45deg);
    top: 15px;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__btn span:nth-child(2) {
    transform: translateX(-20px);
    opacity: 0;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__btn span:nth-child(3) {
    transform: rotate(-45deg);
    top: 15px;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__nav {
    right: 0;
    visibility: visible;
    opacity: 1;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__nav li:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.25s;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__nav li:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__nav li:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.35s;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__nav li:nth-child(4) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.4s;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__nav li:nth-child(5) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.45s;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__nav li:nth-child(6) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.5s;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__nav li:nth-child(7) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.55s;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__nav li:nth-child(8) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__nav li:nth-child(9) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.65s;
  }
  body.is-menu-active .hamburger-menu .hamburger-menu__nav li:nth-child(10) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.7s;
  }
}
/*
ミックスインメモ

・フォント自動計算（）にフォントサイズ1920準拠
    @include mixin.font-size(40);

・カーニング（）にline-heightを入れる
  @include mixin.line-height(44);

・メディアクエリ用
  @include mixin.mq-max('sp') {
  }

*/
/*基本スタイルここから*/
/* ===============================================
// Root & Variables
// =============================================== */
:root {
  --color-primary: #C9000E;
  --color-text: #333;
  --font-family-base: "Zen Kaku Gothic New", sans-serif;
}

/* ===============================================
// Reset & Base
// =============================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  color: var(--color-text);
  font-size: 1rem;
  font-family: var(--font-family-base);
  line-height: 1.7;
}

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

li {
  list-style: none;
}

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

section {
  position: relative;
  overflow: hidden;
  background-color: #F5F8FA;
}

[class$=_en] {
  font-family: "Montserrat", sans-serif;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

p {
  font-size: clamp(0.45rem, calc(0.2861650485rem + 0.6990291262vw), 1.2375rem);
  line-height: clamp(12.8px, 1.6666666667vw, 32px);
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  p {
    font-size: 14px;
    line-height: 22px;
  }
}

.center {
  text-align: center;
}
.center::before {
  left: -25%;
  right: 0;
}
@media screen and (max-width: 767px) {
  .center::before {
    left: -40%;
  }
}

h2 {
  position: relative;
  font-size: clamp(1.05rem, calc(0.6677184466rem + 1.6310679612vw), 2.8875rem);
  font-weight: bold;
  padding-left: 40px;
  margin-bottom: 4vw;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 20px;
  }
}
h2::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  background-image: url("../images//title-icon.png");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  h2::before {
    width: 20px;
    height: 20px;
  }
}
h2::after {
  content: "";
  position: absolute;
  font-size: clamp(4rem, calc(2.5436893204rem + 6.213592233vw), 11rem);
  top: -8vw;
  left: -9vw;
  color: #FFFFFF;
  z-index: -1;
  opacity: 0.4;
}
@media screen and (max-width: 767px) {
  h2::after {
    top: -21vw;
    left: -4vw;
  }
}

/* ===============================================
// Utility Classes
// =============================================== */
.inner {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

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

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

.marquee {
  position: relative;
  overflow: hidden;
}

.marquee__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  --marquee-duration: 40s;
  animation: marquee-animation var(--marquee-duration) linear infinite;
}

.marquee__content {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.marquee__content img {
  height: 250px;
  width: auto;
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .marquee__content img {
    height: 90px;
  }
}

@keyframes marquee-animation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
/*基本スタイルここまで*/
#mv {
  position: relative;
  height: 90vh;
  background-image: url(../images/mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  color: #fff;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  #mv {
    background-image: url(../images/mv-sp.jpg);
    background-position: center;
    height: 100vh;
    margin-top: 0;
  }
}
#mv .mv-title_en {
  font-size: clamp(5.25rem, calc(3.338592233rem + 8.1553398058vw), 14.4375rem);
  line-height: clamp(80px, 10.4166666667vw, 200px);
  font-weight: bold;
  position: absolute;
  top: 3vw;
  left: 7vw;
}
@media screen and (max-width: 767px) {
  #mv .mv-title_en {
    top: 31vw;
    left: 3vw;
  }
}
#mv .mv-title_ja {
  font-size: clamp(0.75rem, calc(0.4769417476rem + 1.1650485437vw), 2.0625rem);
  line-height: clamp(16px, 2.0833333333vw, 40px);
  position: absolute;
  top: 6vw;
  left: 19vw;
}
@media screen and (max-width: 767px) {
  #mv .mv-title_ja {
    font-size: 16px;
    top: 37vw;
    left: 30vw;
  }
}
#mv .mv-text {
  font-size: clamp(0.55rem, calc(0.3497572816rem + 0.854368932vw), 1.5125rem);
  line-height: clamp(14.4px, 1.875vw, 36px);
  position: absolute;
  top: 37vw;
  left: 7vw;
}
@media screen and (max-width: 767px) {
  #mv .mv-text {
    font-size: 14px;
    line-height: 24px;
    top: 100vw;
  }
}
#mv a {
  font-size: clamp(0.55rem, calc(0.3497572816rem + 0.854368932vw), 1.5125rem);
  font-weight: bold;
  color: #fff;
  background-color: #B30000;
  position: fixed;
  bottom: 4vw;
  right: 1vw;
  padding: 1vw 3vw 1vw 2vw;
  border-radius: 42px;
  z-index: 10;
}
#mv a::after {
  content: "";
  background-image: url(../images/viewmore-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 11px;
  height: 11px;
  position: absolute;
  bottom: 0;
  top: 7px;
  margin: auto;
  right: 25px;
  background-color: transparent;
  border-radius: 0;
  transform: rotate(90deg);
}
@media screen and (max-width: 767px) {
  #mv a::after {
    right: 6px;
  }
}
@media screen and (max-width: 767px) {
  #mv a {
    font-size: 16px;
    padding: 10px 20px;
  }
}

#about {
  background-image: url(../images/about-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 220px;
  padding-bottom: 320px;
}
@media screen and (max-width: 767px) {
  #about {
    padding-bottom: 120px;
    padding-top: 50px;
  }
}
#about .text-wrap {
  text-align: center;
}
#about .about-title {
  font-size: clamp(1.2rem, calc(0.7631067961rem + 1.8640776699vw), 3.3rem);
  font-weight: bold;
  margin-bottom: 4vw;
}
@media screen and (max-width: 767px) {
  #about .about-title {
    font-size: 22px;
  }
}
#about .about-text {
  font-size: clamp(0.5rem, calc(0.317961165rem + 0.7766990291vw), 1.375rem);
  line-height: clamp(20px, 2.6041666667vw, 50px);
}
@media screen and (max-width: 767px) {
  #about .about-text {
    font-size: 14px;
    line-height: 24px;
  }
}

#learning {
  background-color: #EBF0F4;
}
#learning:before {
  content: "";
  position: absolute;
  bottom: -34%;
  right: -46%;
  background-image: url(../images/learning-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #learning:before {
    bottom: -84%;
    right: -26%;
  }
}
#learning h2::after {
  content: "LEARNING";
}
#learning .inner {
  padding-bottom: 14vw;
  padding-top: 5vw;
}
@media screen and (max-width: 767px) {
  #learning .inner {
    padding-top: 100px;
  }
}
#learning .learning-list {
  display: flex;
  justify-content: center;
  gap: 2vw;
}
@media screen and (max-width: 767px) {
  #learning .learning-list {
    flex-direction: column;
    gap: 15px;
  }
}
#learning .learning-list span {
  position: absolute;
  top: 15px;
  left: 20px;
  color: #506986;
}
@media screen and (max-width: 767px) {
  #learning .learning-list span {
    top: 10px;
    left: 15px;
  }
}
#learning .learning-list-item {
  position: relative;
  width: 33%;
  padding: 2vw;
  padding-top: 5vw;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  #learning .learning-list-item {
    width: 90%;
    margin: 0 auto;
    padding: 5vw;
  }
}
#learning .learning-list-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background-color: #CDD7E3;
  border-radius: 10px 0 0 0;
  clip-path: polygon(0% 0, 100% 0, 0% 100%, 0 100%);
}
#learning .learning-list-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
}
#learning .learning-list-link {
  height: 100%;
  display: block;
  text-align: center;
}
#learning .learning-list-title {
  position: relative;
  font-size: clamp(0.525rem, calc(0.3338592233rem + 0.8155339806vw), 1.44375rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 1vw;
}
@media screen and (max-width: 767px) {
  #learning .learning-list-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
#learning .learning-list-img {
  display: block;
  margin: 0 auto;
  max-width: 235px;
  max-height: 130px;
  margin-bottom: 1vw;
}
@media screen and (max-width: 767px) {
  #learning .learning-list-img {
    max-width: 124px;
    max-height: 96px;
    margin-bottom: 10px;
  }
}

#features {
  background-color: #F5F8FA;
  position: relative;
}
#features .inner {
  padding-top: 10vw;
  padding-bottom: 12vw;
}
@media screen and (max-width: 767px) {
  #features .inner {
    padding-top: 100px;
    padding-bottom: 0;
  }
}
#features .inner h2::after {
  content: "FEATURES";
  opacity: 1;
}
#features .inner .business__feature-list {
  list-style: none;
  padding: 0;
  margin-top: 4em;
}
#features .inner .business__feature-list li {
  margin-bottom: 1vw;
}
#features .inner .feature-section {
  display: flex;
  align-items: center;
  gap: 4em;
  text-align: left;
  padding-top: 8vw;
  border-top: 2px solid #DBE6ED;
}
#features .inner .feature-section:last-child {
  padding-bottom: 8vw;
  border-bottom: 2px solid #DBE6ED;
}
#features .inner .feature-section:not(:last-child) {
  margin-bottom: 6em;
}
@media screen and (max-width: 767px) {
  #features .inner .feature-section:not(:last-child) {
    margin-bottom: 3em;
  }
}
@media screen and (max-width: 767px) {
  #features .inner .feature-section {
    flex-direction: column;
    gap: 2em;
    margin-bottom: 4em;
  }
}
#features .inner .feature-section__content {
  flex: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  #features .inner .feature-section__content {
    order: 2;
  }
}
#features .inner .feature-section__image-wrapper {
  flex-basis: 26%;
  flex-shrink: 0;
}
#features .inner .feature-section__image-wrapper p, #features .inner .feature-section__image-wrapper img {
  margin: 0;
  display: block;
  width: 100%;
}
@media screen and (max-width: 767px) {
  #features .inner .feature-section__image-wrapper {
    order: 1;
    flex-basis: auto;
    width: 60%;
    margin: 0 auto;
  }
}
#features .inner .feature-section__number {
  position: absolute;
  top: -3vw;
  font-size: clamp(2.825rem, calc(1.7964805825rem + 4.3883495146vw), 7.76875rem);
  font-family: "Montserrat", sans-serif;
  font-weight: bold;
  color: #E4EEF5;
  margin: 0;
}
@media screen and (max-width: 767px) {
  #features .inner .feature-section__number {
    top: -8vw;
    margin-bottom: -0.5em;
    text-align: left;
    font-size: 80px;
  }
}
#features .inner .feature-section__title {
  font-size: clamp(0.75rem, calc(0.4769417476rem + 1.1650485437vw), 2.0625rem);
  font-weight: bold;
  margin-top: -0.5em;
  margin-bottom: 1em;
  position: relative;
}
@media screen and (max-width: 767px) {
  #features .inner .feature-section__title {
    margin-top: 0;
    font-size: 20px;
  }
}
#features .inner .feature-section__description {
  line-height: 1.8;
  margin-bottom: 2em;
}
#features .inner .feature-section__list {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 30px;
  padding-left: 50px;
}
#features .inner .feature-section__list .feature-section__head {
  position: relative;
  font-weight: bold;
  margin-bottom: 1vw;
}
@media screen and (max-width: 767px) {
  #features .inner .feature-section__list .feature-section__head {
    font-size: 16px;
  }
}
#features .inner .feature-section__list .feature-section__head:before {
  content: "";
  position: absolute;
  top: 0.5em;
  left: -1.5em;
  width: 13px;
  height: 13px;
  background-image: url(../images/arrow-tri.png);
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  #features .inner .feature-section__list .feature-section__text {
    font-size: 12px;
  }
}

#training {
  background-color: #F5F8FA;
  overflow: visible;
  /* ===============================================
  // Component: Tabs
  // =============================================== */
  /* ===============================================
  // Component: tab-content (タブ内の個別コンテンツ)
  // =============================================== */
}
#training .headline-en::after {
  content: "TRAINING CONTENT";
  opacity: 1;
  word-break: break-all;
  width: 145%;
}
@media screen and (max-width: 767px) {
  #training .headline-en::after {
    font-size: 36px;
    top: -13vw;
  }
}
#training:before {
  content: "";
  position: absolute;
  bottom: -34%;
  right: -46%;
  background-image: url(../images/learning-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #training:before {
    bottom: -89%;
    right: -20%;
  }
}
#training .inner {
  padding-bottom: 12vw;
}
@media screen and (max-width: 767px) {
  #training .inner {
    padding-top: 30px;
  }
}
#training .tabs {
  max-width: 1200px;
  margin: 4em auto;
  padding: 0 15px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  #training .tabs {
    padding: 0;
  }
}
#training .tabs__nav {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
  gap: 1px;
}
@media screen and (max-width: 767px) {
  #training .tabs__nav {
    flex-direction: column;
    border-radius: 8px;
  }
}
#training .tabs__nav-item {
  flex: 1;
  padding: 1em 1.5em;
  cursor: pointer;
  background-color: #9CA8B7;
  color: #FFFFFF;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s, color 0.3s;
  border-radius: 8px 8px 0 0;
}
#training .tabs__nav-item p {
  margin: 0;
  line-height: 1.4;
}
#training .tabs__nav-item.is-active {
  background-color: #C1272D;
  color: #fff;
}
#training .tabs__nav-item.is-active:hover {
  background-color: #C1272D;
}
#training .tabs__nav-item:not(.is-active):hover {
  background-color: #d0d0d0;
}
@media screen and (max-width: 767px) {
  #training .tabs__nav-item {
    border-bottom: 1px solid #ccc;
  }
  #training .tabs__nav-item:last-child {
    border-bottom: none;
  }
}
#training .tabs__content-item {
  display: none;
  padding: 0;
  background-color: #fff;
  border-radius: 0 0 8px 8px;
}
@media screen and (max-width: 767px) {
  #training .tabs__content-item {
    border-radius: 8px;
  }
}
#training .tabs__content-item.is-active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#training .tab-content {
  padding: 2vw;
}
@media screen and (max-width: 767px) {
  #training .tab-content {
    padding: 1.5em;
  }
}
#training .tab-content .flex-item {
  display: flex;
  gap: 3em;
  margin-bottom: 2vw;
}
@media screen and (max-width: 767px) {
  #training .tab-content .flex-item {
    flex-direction: column;
    gap: 1.5em;
    margin-bottom: 2em;
  }
}
#training .tab-content .flex-item .tab-text {
  flex: 1;
}
#training .tab-content .flex-item .tab-text p {
  line-height: 1.8;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #training .tab-content .flex-item .tab-text h2 {
    margin-bottom: 20px;
  }
}
#training .tab-content .flex-item .tab-text .tab-strong {
  font-size: clamp(0.75rem, calc(0.4769417476rem + 1.1650485437vw), 2.0625rem);
  font-weight: bold;
  line-height: clamp(16.4px, 2.1354166667vw, 41px);
  text-align: center;
}
@media screen and (max-width: 767px) {
  #training .tab-content .flex-item .tab-text .tab-strong {
    font-size: 14px;
  }
}
#training .tab-content .flex-item .tab-text .tab-strong span {
  font-size: clamp(4rem, calc(2.5436893204rem + 6.213592233vw), 11rem);
  font-weight: bold;
  font-family: "Montserrat", sans-serif;
}
#training .tab-content .flex-item img {
  width: 50%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  #training .tab-content .flex-item img {
    width: 100%;
  }
}
#training .tab-content > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5em;
}
@media screen and (max-width: 767px) {
  #training .tab-content > ul {
    grid-template-columns: 1fr;
    gap: 1.5em;
  }
}
#training .tab-content > ul > li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1vw;
  padding: 2vw 1vw;
  padding-bottom: 0.5vw;
  border-radius: 8px;
  background-color: #F5F8FA;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 767px) {
  #training .tab-content > ul > li {
    flex-direction: column;
    padding: 15px 5px;
  }
}
#training .tab-content > ul > li span {
  position: absolute;
  top: 10px;
  left: 15px;
  color: #506986;
}
@media screen and (max-width: 767px) {
  #training .tab-content > ul > li span {
    top: 5px;
    left: 7px;
    font-size: 12px;
  }
}
#training .tab-content > ul > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background-color: #CDD7E3;
  border-radius: 10px 0 0 0;
  clip-path: polygon(0% 0, 100% 0, 0% 100%, 0 100%);
}
@media screen and (max-width: 767px) {
  #training .tab-content > ul > li::before {
    width: 40px;
    height: 40px;
  }
}
#training .tab-content > ul > li .tab-img-wrap {
  text-align: center;
  width: 30%;
}
@media screen and (max-width: 767px) {
  #training .tab-content > ul > li .tab-img-wrap {
    width: 100%;
    margin-bottom: 10px;
  }
}
#training .tab-content > ul > li .tab-img-title {
  font-weight: bold;
}
#training .tab-content > ul > li img {
  max-height: 70px;
  height: 5vw;
  flex-shrink: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  #training .tab-content > ul > li img {
    height: 12vw;
  }
}
#training .tab-content > ul > li ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  border-left: 1px dotted #CDD7E3;
  padding-left: 1vw;
}
@media screen and (max-width: 767px) {
  #training .tab-content > ul > li ul {
    border-left: none;
  }
}
#training .tab-content > ul > li ul li {
  position: relative;
  padding-left: 1.2em;
  font-size: clamp(0.4rem, calc(0.254368932rem + 0.6213592233vw), 1.1rem);
  line-height: 1.6;
  border: none;
  background-color: transparent;
  box-shadow: none;
  padding: 0;
  justify-content: space-around;
}
@media screen and (max-width: 767px) {
  #training .tab-content > ul > li ul li {
    font-size: 14px;
  }
}
#training .tab-content > ul > li ul li::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 0.7em;
  width: 6px;
  height: 6px;
  background-color: #CDD7E3;
  border-radius: 50%;
}
#training .tab-content > ul > li .flex-box {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #training .tab-content > ul > li .flex-box {
    flex-direction: column;
  }
}
#training .tab-content > ul > li .flex-box li {
  width: 50%;
  font-size: clamp(0.3rem, calc(0.190776699rem + 0.4660194175vw), 0.825rem);
}
@media screen and (max-width: 767px) {
  #training .tab-content > ul > li .flex-box li {
    font-size: 14px;
    width: 100%;
  }
}
#training #tab-content-2 .tab-content > ul {
  display: block;
}
#training #tab-content-2 .tab-content > ul ul {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #training #tab-content-2 .tab-content > ul ul {
    flex-direction: column;
  }
}
#training #tab-content-2 .tab-content > ul ul li {
  width: 25%;
}
@media screen and (max-width: 767px) {
  #training #tab-content-2 .tab-content > ul ul li {
    width: 100%;
  }
}
#training #tab-content-2 .tab-img-wrap {
  width: 25%;
}
@media screen and (max-width: 767px) {
  #training #tab-content-2 .tab-img-wrap {
    width: 100%;
  }
}
#training #tab-content-3 .tab-content > ul {
  display: block;
}
#training #tab-content-3 .tab-content > ul ul li {
  margin-bottom: 2vw;
}
#training #tab-content-3 .tab-content > ul ul li:first-child::before {
  display: none;
}
#training #tab-content-3 .tab-img-wrap {
  width: 25%;
}
@media screen and (max-width: 767px) {
  #training #tab-content-3 .tab-img-wrap {
    width: 100%;
  }
}

#skill {
  background-color: #EBF0F4;
}
#skill .inner {
  padding-bottom: 10vw;
  padding-top: 10vw;
}
@media screen and (max-width: 767px) {
  #skill .inner {
    padding-top: 100px;
  }
}
#skill .headline-en::after {
  content: "SKILL TEST";
  left: 0;
  right: 0;
}
@media screen and (max-width: 767px) {
  #skill .scroll-container {
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 767px) {
  #skill .scroll-container img {
    width: 800px;
    max-width: none;
  }
}
#skill .evaluation-criteria__intro {
  text-align: center;
  margin-bottom: 1em;
}
#skill .evaluation-criteria__grid {
  display: grid;
  grid-template-columns: 150px repeat(3, 1fr);
  border-radius: 8px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #skill .evaluation-criteria__grid {
    grid-template-columns: 1fr;
  }
}
#skill .evaluation-criteria__side-header,
#skill .evaluation-criteria__col-header,
#skill .evaluation-criteria__cell {
  padding: 1.5em;
}
#skill .evaluation-criteria__side-header {
  background-color: #6c757d;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0px 0px 10px;
}
@media (max-width: 767px) {
  #skill .evaluation-criteria__side-header {
    display: none;
  }
}
#skill .evaluation-criteria__col-header {
  background-color: #4eb5b1;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-left: 1px solid #fff;
  border-radius: 10px 10px 0px 0px;
}
@media (max-width: 767px) {
  #skill .evaluation-criteria__col-header {
    display: none;
  }
}
#skill .evaluation-criteria__cell {
  background-color: #fff;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
@media (max-width: 767px) {
  #skill .evaluation-criteria__cell {
    border-left: none;
    text-align: center;
  }
  #skill .evaluation-criteria__cell::before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    padding: 0.8em;
    margin: -1.5em -1.5em 1em;
    background-color: #4eb5b1;
    color: #fff;
  }
}

#voice {
  /* ===============================================
  // Component: Testimonials Slider
  // =============================================== */
}
#voice .inner {
  margin-right: 0;
  padding-left: 3vw;
  padding-top: 12vw;
  padding-bottom: 15vw;
  max-width: 1665px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  #voice .inner {
    padding-top: 100px;
    width: 100%;
  }
}
#voice h2 {
  writing-mode: vertical-rl;
  position: absolute;
  z-index: 1;
  left: -28px;
}
@media screen and (max-width: 767px) {
  #voice h2 {
    left: 10px;
    top: -40px;
    writing-mode: unset;
  }
}
#voice h2::before {
  content: "";
  position: absolute;
  top: -18%;
  left: 44%;
  right: 0;
  margin: auto;
  bottom: auto;
}
@media screen and (max-width: 767px) {
  #voice h2::before {
    left: 0;
    top: 0;
    bottom: 0;
    right: auto;
  }
}
#voice .headline-en::after {
  content: "VOICE";
  writing-mode: vertical-rl;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #voice .headline-en::after {
    writing-mode: unset;
  }
}
#voice .testimonials {
  display: flex;
  gap: 2em;
  padding: 4em 0;
  background-color: #f5f8fa;
}
@media (max-width: 767px) {
  #voice .testimonials {
    flex-direction: column;
  }
}
#voice .testimonials__heading {
  writing-mode: vertical-lr;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
  background-color: #fff;
  padding: 2em 1em;
  border-radius: 0 12px 12px 0;
}
@media (max-width: 767px) {
  #voice .testimonials__heading {
    writing-mode: horizontal-tb;
    border-radius: 0;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto 2em;
    padding: 0.5em 2em;
  }
}
#voice .testimonials__slider-container {
  flex: 1;
  position: relative;
  padding: 0 50px;
  background-color: rgba(235, 240, 244, 0.5);
  border-radius: 10px;
  padding: 5vw;
}
@media (max-width: 767px) {
  #voice .testimonials__slider-container {
    padding: 0 15px;
  }
}
#voice .testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background-color: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 12px;
  padding: 2em;
  position: relative;
  color: #333;
  text-decoration: none;
  transition: box-shadow 0.3s;
}
#voice .testimonial-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
#voice .testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background-color: #CDD7E3;
  border-radius: 10px 0 0 0;
  clip-path: polygon(0% 0, 100% 0, 0% 100%, 0 100%);
}
#voice .testimonial-card__number {
  position: absolute;
  top: 1em;
  left: 1em;
  font-size: 0.9rem;
  color: #aaa;
}
#voice .testimonial-card__figure {
  margin: 1em 0 2em;
  text-align: center;
}
#voice .testimonial-card__figure img {
  max-height: 80px;
  width: auto;
}
#voice .testimonial-card__company {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}
#voice .testimonial-card__excerpt {
  font-size: 0.9rem;
  line-height: 1.8;
  flex-grow: 1;
}
#voice .testimonial-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.5em;
  font-weight: bold;
  color: #333;
}
#voice .testimonial-card__link::after {
  content: "→";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  margin-left: 0.5em;
  background-color: #C1272D;
  color: #fff;
  border-radius: 50%;
  font-size: 1.2rem;
}
@media (max-width: 767px) {
  #voice .testimonials-slider__nav {
    display: none;
  }
}
#voice .swiper-button-prev,
#voice .swiper-button-next {
  width: 44px;
  height: 44px;
  border: 1px solid #ccc;
  border-radius: 50%;
  top: auto;
  transform: translateY(-50%);
  bottom: -1vw;
}
#voice .swiper-button-prev::after,
#voice .swiper-button-next::after {
  font-size: 1rem;
  color: #555;
  font-weight: bold;
  content: "→";
}
#voice .swiper-button-prev {
  left: 78%;
}
#voice .swiper-button-prev::after {
  content: "←";
}
#voice .swiper-button-next {
  right: 12%;
}
#voice .swiper-button-next::after {
  content: "→";
}
#voice .testimonial-card__tags {
  color: #C1272D;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 0;
}

.testimonial-card__tags {
  color: #C1272D;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 30px;
}

#question {
  background-color: #EBF0F4;
  overflow: visible;
  /* ===============================================
  // Component: FAQ Accordion (修正版)
  // =============================================== */
  /*
  h2{
      transform: translateY(-16vw);
      @include mixin.mq-max('sp'){
        transform: translateY(-5vw);
      }
  }
      */
}
#question .headline-en::after {
  content: "QUESTION";
  opacity: 1;
}
#question .inner {
  padding: 8vw 0;
}
@media screen and (max-width: 767px) {
  #question .inner {
    padding-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
#question .faq-accordion {
  list-style: none;
  padding: 0;
  margin: 0;
  margin: 2em auto;
}
#question .faq-accordion__item {
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
}
#question .faq-accordion__item:not(:last-child) {
  margin-bottom: 1.5em;
}
#question .faq-accordion__item.is-open .faq-accordion__toggle-icon {
  transform: rotate(180deg);
}
#question .faq-accordion__item.is-open .faq-accordion__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#question .faq-accordion__item.is-open .faq-accordion__answer {
  max-height: 500px;
}
#question .faq-accordion__question {
  background: none;
  border: none;
  padding: 1.5em;
  font: inherit;
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: #000;
}
#question .faq-accordion__q-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-right: 1em;
  color: #C1272D;
  font-weight: bold;
  font-size: 1.5rem;
  font-family: "Montserrat", sans-serif;
  border-right: #C1272D 3px solid;
}
#question .faq-accordion__question-text {
  flex: 1;
  font-weight: bold;
}
#question .faq-accordion__toggle-icon {
  position: relative;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-left: 1em;
  background-color: #C1272D;
  border-radius: 50%;
  transition: transform 0.4s ease;
}
#question .faq-accordion__toggle-icon::before { /* 横棒 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
#question .faq-accordion__toggle-icon::after { /* 縦棒 */
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 16px;
  background-color: #fff;
  transform: translate(-50%, -50%);
  transition: transform 0.4s ease;
}
#question .faq-accordion__answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
#question .faq-accordion__answer p {
  padding: 0 1.5em 1.5em;
  margin: 0;
  line-height: 1.8;
  border-top: 1px solid #eee;
  padding-top: 1.5em;
}

#site .headline-en::after {
  content: "TRAINING SITE";
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #site .headline-en::after {
    font-size: 48px;
  }
}
#site .inner {
  padding-top: 15vw;
  padding-bottom: 5vw;
}
@media screen and (max-width: 767px) {
  #site .inner {
    padding-top: 100px;
  }
}
#site .flex-item {
  display: flex;
  gap: 2vw;
}
@media screen and (max-width: 767px) {
  #site .flex-item {
    flex-direction: column;
  }
}
#site .flex-item iframe {
  width: 60%;
  max-height: 400px;
}
@media screen and (max-width: 767px) {
  #site .flex-item iframe {
    width: 100%;
    max-height: 300px;
  }
}
#site .flex-item p {
  margin-bottom: 2vw;
}
#site .flex-item .site-title {
  font-size: clamp(0.7rem, calc(0.4451456311rem + 1.0873786408vw), 1.925rem);
  margin-bottom: 1vw;
  font-weight: bold;
}

#contact {
  background-color: #fff;
  padding-bottom: 10vw;
  /* ===============================================
  // Component: Contact Accordion & Form
  // =============================================== */
}
#contact .headline-en::after {
  content: "CONTACT";
  opacity: 1;
  left: 0;
  right: 0;
}
#contact .inner {
  padding-top: 7vw;
  padding-bottom: 3vw;
}
@media screen and (max-width: 767px) {
  #contact .inner {
    padding-top: 100px;
  }
}
#contact .inner-wrap {
  background-color: #EBF0F4;
}
#contact .contact-accordion {
  max-width: 900px;
  margin: 2em auto;
  border-radius: 12px;
  background-color: #EBF0F4;
}
@media screen and (max-width: 767px) {
  #contact .contact-accordion {
    margin-bottom: 20px;
  }
}
#contact .contact-accordion__trigger {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1.5em;
  background-color: #fff;
  color: #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  border-radius: 12px;
  transition: border-radius 0.4s;
}
#contact .contact-accordion__trigger span {
  background-color: #c1272d;
}
#contact .contact-accordion__trigger span:first-child {
  padding: 1vw 2vw;
  border-radius: 10px;
}
.contact-accordion__item.is-open #contact .contact-accordion__trigger {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
#contact .contact-accordion__item.is-open .contact-accordion__content {
  max-height: 2000px;
  padding-top: 2em;
  padding-bottom: 2em;
}
#contact .contact-accordion__toggle-icon {
  position: relative;
  width: 28px;
  height: 28px;
  margin-left: auto;
  background-color: #fff;
  border-radius: 50%;
}
#contact .contact-accordion__toggle-icon::before, #contact .contact-accordion__toggle-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #fff;
  padding: 0;
  transition: transform 0.4s ease;
}
#contact .contact-accordion__toggle-icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}
#contact .contact-accordion__toggle-icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}
.contact-accordion__item.is-open #contact .contact-accordion__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#contact .contact-accordion__item.is-open .contact-accordion__toggle-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
#contact .contact-accordion__content {
  overflow: hidden;
  max-height: 0;
  padding-left: 1.5em;
  padding-right: 1.5em;
  transition: max-height 0.6s ease, padding-top 0.6s ease, padding-bottom 0.6s ease;
  background-color: #f7f9fa;
}
.contact-accordion__item:not(.is-open) #contact .contact-accordion__content {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
#contact .contact-form__group {
  display: flex;
  align-items: center;
  padding: 1.5em 0;
  border-bottom: 1px solid #e0e0e0;
}
@media screen and (max-width: 767px) {
  #contact .contact-form__group {
    flex-direction: column;
  }
}
#contact .contact-form__group > p {
  width: 32%;
}
@media screen and (max-width: 767px) {
  #contact .contact-form__group > p {
    width: 100%;
    margin-bottom: 5px;
  }
}
#contact .contact-form__label {
  width: 200px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  #contact .contact-form__label {
    width: 100%;
    margin-bottom: 0.5em;
  }
}
#contact .is-required {
  display: inline-block;
  font-size: 0.8em;
  background-color: #c1272d;
  color: #fff;
  padding: 2px 6px;
  margin-left: 8px;
  border-radius: 4px;
}
#contact .contact-form__field {
  flex: 1;
}
#contact .contact-form__field p {
  display: flex;
  align-items: center;
  gap: 1vw;
}
#contact .contact-form__field p span {
  width: 100%;
}
#contact input[type=text],
#contact input[type=email],
#contact input[type=tel],
#contact textarea {
  width: 100%;
  padding: 0.8em;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fff;
}
#contact .contact-form__field--name,
#contact .contact-form__field--tel {
  display: flex;
  gap: 1em;
  align-items: center;
}
#contact .form-note {
  font-size: 0.8em;
  color: #c1272d;
  margin-top: 0.5em;
}
#contact .contact-form__agreement {
  text-align: center;
  margin: 2em 0;
}
#contact .contact-form__submit input[type=submit] {
  display: block;
  margin: 0 auto;
  background-color: #c1272d;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 1em 4em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  #contact .contact-form__submit input[type=submit] {
    padding: 1em 3em;
  }
}
#contact .contact-form__submit input[type=submit]:hover {
  opacity: 0.8;
}
#contact .wpcf7-previous {
  padding: 1em 4em;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #F5F5F5;
  margin: 0 auto;
  display: block;
  font-weight: bold;
  font-size: 1.2rem;
  margin-top: 30px;
}
#contact .privacy-policy-box {
  height: 200px;
  overflow-y: scroll;
  border: 1px solid #ccc;
  padding: 1em;
  margin-bottom: 1em;
  background-color: #f9f9f9;
}

.voice-item {
  margin-top: 10vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 767px) {
  .voice-item {
    margin-top: 100px;
  }
}
.voice-item .single-post__title {
  margin-bottom: 3vw;
}
@media screen and (max-width: 767px) {
  .voice-item .single-post__title {
    font-size: 22px;
  }
}
.voice-item strong {
  margin-bottom: 30px;
  display: block;
}
@media screen and (max-width: 767px) {
  .voice-item strong {
    font-size: 20px;
  }
}
.voice-item article {
  margin-bottom: 3vw;
}
@media screen and (max-width: 767px) {
  .voice-item article {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .voice-item article p {
    font-size: 14px;
  }
}
.voice-item .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10vw;
}
.voice-item .nav-next, .voice-item .nav-previous {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 5px 15px;
  transition: all 0.5 ease-in-out;
}
.voice-item .nav-next:hover, .voice-item .nav-previous:hover {
  opacity: 0.7;
}
@media screen and (max-width: 767px) {
  .voice-item p {
    font-size: 12px;
  }
}

footer {
  background-color: #000;
  height: 300px;
  display: flex;
  align-items: center;
}
footer a {
  color: #fff;
  font-weight: bold;
  font-size: min(1vw, 22px);
}
footer nav {
  display: flex;
  justify-content: space-between;
}
footer ul {
  display: flex;
  align-items: center;
  gap: 2vw;
}
footer ul:last-child {
  flex-direction: column;
  flex-direction: column;
  gap: 1vw;
}
footer .ex {
  position: relative;
}
footer .ex::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 13px;
  right: -18px;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url("../images/ex-icon.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  footer {
    display: none;
  }
}

body.is-modal-active {
  overflow: hidden;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.4s, opacity 0.4s;
}
.modal.is-active {
  visibility: visible;
  opacity: 1;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  transform: scale(0.9);
  opacity: 0;
  transition: transform 0.4s, opacity 0.4s;
}
.modal.is-active .modal__content {
  transform: scale(1);
  opacity: 1;
  transition-delay: 0.1s;
}

.modal__close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.modal__close-btn span {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.modal__close-btn span:nth-child(1) {
  transform: rotate(45deg);
}
.modal__close-btn span:nth-child(2) {
  transform: rotate(-45deg);
}/*# sourceMappingURL=style.css.map */