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

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  min-width: 390px;
  line-height: 1.5;
  font-size: 1.6rem;
  font-family: "Jost", "Noto Sans JP", sans-serif;
  font-feature-settings: "pkna";
  -webkit-font-smoothing: antialiased;
  color: #0c2341;
}

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

ul,
ol {
  list-style: none;
}

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

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/*------------------------------
Base Styles
------------------------------*/
/*------------------------------
Common
------------------------------*/
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s;
  font-weight: 700;
  border-radius: 60px;
  padding: 5px 15px;
  gap: 10px;
  font-size: 1.6rem;
}
.button:hover {
  opacity: 0.4;
}
.button__icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.button__icon-img {
  width: 100%;
  height: 100%;
  display: block;
}
.button--youtube {
  background-color: #f74242;
  color: #ffffff;
}
.button--contact {
  background-color: #0c2341;
  color: #ffffff;
}

/*------------------------------
Header
------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  background-color: #ffffff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  width: min(100%, 1822px);
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .header__inner {
    padding: 20px 40px;
  }
}
.header__logo {
  width: 120px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}
@media (min-width: 1280px) {
  .header__logo {
    width: 220px;
    height: 50px;
    margin-right: 0;
  }
}
.header__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo-img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1279px) {
  .header__nav {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    flex-direction: column;
    background-color: #ffffff;
    padding: 60px 20px;
    overflow-y: auto;
    z-index: 999;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
}
@media (min-width: 1280px) {
  .header__nav {
    display: flex;
  }
}
.header__nav.no-transition {
  transition: none !important;
}
.header__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1279px) {
  .header__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
  }
}
.header__item {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  color: #0c2341;
}
@media (max-width: 1279px) {
  .header__item {
    width: 100%;
    border-bottom: none;
    margin-bottom: 0;
  }
}
.header__item--has-child {
  position: relative;
}
.header__item-link {
  color: #0c2341;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media (max-width: 1279px) {
  .header__item-link {
    display: block;
    padding: 10px 0;
    line-height: 1;
    transition: opacity 0.3s;
  }
  .header__item-link:hover {
    opacity: 0.4;
  }
}
@media (min-width: 1280px) {
  .header__item--has-child .header__item-link {
    flex-direction: row;
    gap: 10px;
    align-items: center;
  }
}
.header__item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
@media (min-width: 1280px) {
  .header__item-text {
    align-items: center;
  }
}
.header__item-ja {
  font-size: 1.6rem;
  font-weight: 700;
  color: #0c2341;
  line-height: 1.25;
}
.header__item-en {
  font-size: 1.2rem;
  font-weight: 500;
  color: #204ca8;
  line-height: normal;
  text-transform: uppercase;
}
@media (max-width: 1279px) {
  .header__item-en {
    display: none;
  }
}
.header__item-icon {
  display: none;
}
@media (min-width: 1280px) {
  .header__item-icon {
    display: block;
    flex-shrink: 0;
  }
}
.header__item-icon-img {
  display: block;
}
.header__item--has-child:hover .header__sub-menu {
  display: flex;
}
.header__sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 30px);
  left: 50%;
  background-color: #ffffff;
  box-shadow: 0 0 10px rgba(32, 107, 168, 0.2);
  padding: 20px;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  width: 339px;
  z-index: 1001;
}
@media (max-width: 1279px) {
  .header__sub-menu {
    position: static;
    display: flex;
    flex-direction: column;
    box-shadow: none;
    border: none;
    margin-bottom: 5px;
    padding: 0;
    background-color: transparent;
    margin-top: 0;
    width: 100%;
    gap: 0;
    align-items: flex-start;
  }
}
@media (min-width: 1280px) {
  .header__sub-menu {
    transform: translateX(-50%);
  }
}
@media (min-width: 1280px) {
  .header__sub-menu::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 20px solid #ffffff;
    filter: drop-shadow(0 -10px 10px rgba(32, 107, 168, 0.2));
    z-index: -1;
  }
}
.header__sub-menu::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 30px;
  z-index: -2;
}
.header__sub-menu-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0c2341;
  margin-bottom: 0;
}
@media (max-width: 1279px) {
  .header__sub-menu-title {
    display: none;
  }
}
.header__sub-menu-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 189px;
}
@media (max-width: 1279px) {
  .header__sub-menu-list {
    gap: 0;
    width: 100%;
  }
}
.header__sub-menu-link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #204ca8;
  line-height: 1.25;
  transition: opacity 0.3s;
}
.header__sub-menu-link::before {
  content: "";
  width: 8px;
  height: 8px;
  background-color: #204ca8;
  border-radius: 50%;
  flex-shrink: 0;
}
.header__sub-menu-link:hover {
  background-color: transparent;
  opacity: 0.4;
}
@media (max-width: 1279px) {
  .header__sub-menu-link {
    gap: 10px;
    padding: 2.5px 0;
    font-size: 1.4rem;
    font-weight: 400;
    color: #0c2341;
  }
  .header__sub-menu-link::before {
    background-color: #0c2341;
  }
}
.header__actions {
  display: none;
  gap: 10px;
  align-items: center;
}
@media (max-width: 1279px) {
  .header__actions {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: flex-start;
    margin-top: 0;
  }
  .header__actions .button {
    width: auto;
    justify-content: center;
  }
}
@media (min-width: 1280px) {
  .header__actions {
    display: flex;
  }
}
.header__mobile-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}
@media (min-width: 1280px) {
  .header__mobile-actions {
    display: none;
  }
}
.header__hamburger {
  display: block;
}
@media (min-width: 1280px) {
  .header__hamburger {
    display: none;
  }
}

/*------------------------------
Footer
------------------------------*/
.footer {
  background-color: #0c2341;
  color: #ffffff;
  padding: 174px 0 60px;
}
@media (min-width: 768px) {
  .footer {
    padding: 220px 40px 60px;
  }
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  container-type: inline-size;
}
@media (min-width: 768px) {
  .footer__inner {
    padding: 0;
  }
}
.footer__content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
  }
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
@media (min-width: 768px) {
  .footer__info {
    width: 320px;
  }
}
.footer__logo-link {
  display: block;
  width: 220px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.footer__logo-link:hover {
  opacity: 0.7;
}
.footer__logo-img {
  width: 100%;
  height: auto;
  display: block;
}
.footer__address {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #ffffff;
}
.footer__address-company, .footer__address-postal, .footer__address-street, .footer__address-tel, .footer__address-mail {
  margin: 0;
  margin-bottom: 5px;
}
.footer__address-company:last-child, .footer__address-postal:last-child, .footer__address-street:last-child, .footer__address-tel:last-child, .footer__address-mail:last-child {
  margin-bottom: 0;
}
.footer__navArea {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}
@container (min-width: 1100px) {
  .footer__navArea {
    width: 750px;
    align-items: flex-end;
  }
}
.footer__nav {
  width: 100%;
}
@media (min-width: 768px) {
  .footer__nav {
    width: auto;
    align-self: flex-start;
  }
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .footer__nav-list {
    flex-direction: row;
  }
}
.footer__nav-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer__nav-link {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer__nav-link:hover {
  opacity: 0.7;
}
.footer__nav-subList {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style: none;
  margin: 5px 0 0;
  padding: 0 0 0 18px;
}
.footer__nav-subItem {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer__nav-subLink {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.25;
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.3s;
}
.footer__nav-subLink::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
}
.footer__nav-subLink:hover {
  opacity: 0.7;
}
.footer__buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer__button {
  display: flex;
  gap: 9px;
  align-items: center;
  padding: 5px 15px;
  border-radius: calc(infinity * 1px);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.footer__button:hover {
  opacity: 0.7;
}
.footer__button--youtube {
  background-color: #f74242;
}
.footer__button--contact {
  background-color: #ffffff;
}
.footer__button--contact .footer__button-text {
  color: #0c2341;
}
.footer__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.footer__button-icon-img {
  width: 100%;
  height: 100%;
  display: block;
}
.footer__button-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  color: #ffffff;
}
.footer__copyright {
  font-size: 1.2rem;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}
@container (min-width: 1100px) {
  .footer__copyright {
    text-align: right;
  }
}

/*------------------------------
Front Page
------------------------------*/
.main {
  padding-top: 60px;
}
@media (min-width: 1280px) {
  .main {
    padding-top: 90px;
  }
}

.section {
  padding: 80px 0;
}
.section-title {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Main Visual */
.mv {
  position: relative;
  container-type: inline-size;
  padding: 0;
}
.mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background: url(../img/mv_bg.png) right -293px top/548px no-repeat;
}
@media (min-width: 768px) {
  .mv::before {
    background-position: right top;
  }
}
@media (min-width: 1280px) {
  .mv::before {
    right: 0;
    width: min(100%, 1822px);
    margin: auto;
    background-size: 836px 753px;
    opacity: 1;
  }
}
.mv__inner {
  position: relative;
  z-index: 3;
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 20px;
}
@media (min-width: 1280px) {
  .mv__inner {
    width: min(100%, 1280px);
    padding: 200px 20px;
  }
}
.mv__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
}
.mv__title-wrapper {
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}
.mv__title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.25;
  flex: 1 0 0;
}
@media (min-width: 1280px) {
  .mv__title {
    font-size: 6rem;
  }
}
.mv__title-blue {
  color: #204ca8;
}
.mv__title-black {
  color: #0c2341;
}
.mv__text {
  margin-bottom: 60px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #0c2341;
  width: 100%;
}
@media (min-width: 1280px) {
  .mv__text {
    font-size: 1.6rem;
  }
}
.mv__button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: #204ca8;
  color: #ffffff;
  padding: 15px 20px;
  border-radius: 40px;
  width: 350px;
  transition: opacity 0.3s;
}
.mv__button:hover {
  opacity: 0.4;
}
.mv__button-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}
.mv__button-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.mv__button-icon-img {
  width: 100%;
  height: 100%;
  display: block;
}
.mv__side-text {
  position: absolute;
  top: 30px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
@media (min-width: 1280px) {
  .mv__side-text {
    left: 0;
    right: 0;
    transform: translateX(-44.04vw);
  }
}
@media (min-width: 1822px) {
  .mv__side-text {
    transform: translateX(-821px);
  }
}
.mv__side-text-inner {
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  color: rgba(32, 76, 168, 0.08);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  white-space: nowrap;
}
@media (min-width: 1280px) {
  .mv__side-text-inner {
    font-size: 6rem;
  }
}

section {
  padding: 80px 0;
}
@media (min-width: 768px) {
  section {
    padding: 120px 0;
  }
}
section:not(.mv):not(.page-mv):not(.page-company-content):not(.page-training-banner) + section {
  padding-top: 0;
}

/* About */
.about {
  overflow: hidden;
  position: relative;
}
.about__bg {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  height: 254px;
  background: url(../img/pattern_bg.png) center center no-repeat;
  background-size: cover;
  opacity: 0.26;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .about__bg {
    bottom: 80px;
    width: 1516px;
    height: 494px;
  }
}
@media (min-width: 1516px) {
  .about__bg {
    width: 100%;
    height: 100%;
  }
}
.about__content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.about__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.about__info__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.about__h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .about__h2 {
    margin-bottom: 60px;
  }
}
.about__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
}
@media (min-width: 768px) {
  .about__h2-en {
    font-size: 2rem;
  }
}
.about__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
}
@media (min-width: 768px) {
  .about__h2-ja {
    font-size: 4rem;
  }
}
.about__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .about__bottom {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.about__bottom__title {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .about__bottom__title {
    padding-bottom: 30px;
  }
}
.about__bottom__title-text {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0c2341;
}
@media (min-width: 768px) {
  .about__bottom__title-text {
    font-size: 3rem;
  }
}
.about__bottom__title-blue {
  color: #204ca8;
}
.about__bottom__title-black {
  color: #0c2341;
}
.about__bottom__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
@media (min-width: 768px) {
  .about__bottom__info {
    align-items: flex-end;
    width: min(100%, 530px);
  }
}
.about__text {
  width: 100%;
  padding-bottom: 40px;
}
.about__text-inner {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #0c2341;
  white-space: pre-wrap;
}
.about__btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  padding: 15px 20px;
  background-color: #204ca8;
  border-radius: 40px;
  transition: opacity 0.3s;
}
.about__btn:hover {
  opacity: 0.7;
}
.about__btn-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}
.about__btn-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.about__btn-icon-img {
  width: 100%;
  height: 100%;
  display: block;
}
.about__img {
  position: relative;
  width: 100%;
  aspect-ratio: 350/300;
}
@media (min-width: 768px) {
  .about__img {
    aspect-ratio: 1042/491;
  }
}
.about__img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
}
.about__img-item {
  position: absolute;
  background-color: #ddd;
}
.about__img-item--1 {
  bottom: 0;
  left: 0;
  right: 68.57%;
  top: 0;
  width: 31.43%;
  background: url(../img/about_image-01.jpg) center top/cover no-repeat;
}
@media (min-width: 768px) {
  .about__img-item--1 {
    right: 67.37%;
    width: 32.63%;
    background: url(../img/about_image-01.jpg) left top/cover no-repeat;
  }
}
.about__img-item--2 {
  bottom: 0;
  left: 34.29%;
  right: 34.29%;
  top: 20%;
  width: 31.42%;
  background: url(../img/about_image-02.jpg) center top/cover no-repeat;
}
@media (min-width: 768px) {
  .about__img-item--2 {
    left: 33.69%;
    right: 33.69%;
    top: 10.18%;
    width: 32.62%;
    background: url(../img/about_image-02.jpg) left top/cover no-repeat;
  }
}
.about__img-item--3 {
  bottom: 0;
  left: 68.57%;
  right: 0;
  top: 40%;
  width: 31.43%;
  background: url(../img/about_image-03.jpg) center top/cover no-repeat;
}
@media (min-width: 768px) {
  .about__img-item--3 {
    left: 67.37%;
    top: 34.62%;
    width: 32.63%;
    background: url(../img/about_image-03.jpg) left top/cover no-repeat;
  }
}
.about__img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 15px 20px;
  line-height: 1.2;
  font-size: clamp(4.7rem, 2.728rem + 5.056vi, 9.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  z-index: 3;
}
@media (min-width: 768px) {
  .about__img-overlay {
    padding: 0 0 20px 40px;
  }
}

/* Service */
.service {
  background-color: #ffffff;
}
.service__inner {
  padding: 0 20px;
}
.service__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 1100px;
  margin: 0 auto 40px;
}
@media (min-width: 768px) {
  .service__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 60px;
  }
}
.service__h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
}
@media (min-width: 768px) {
  .service__h2-en {
    font-size: 2rem;
  }
}
.service__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
}
@media (min-width: 768px) {
  .service__h2-ja {
    font-size: 4rem;
  }
}
.service__header-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  padding: 15px 20px;
  background-color: #204ca8;
  border-radius: 40px;
  transition: opacity 0.3s;
}
.service__header-btn:hover {
  opacity: 0.7;
}
.service__header-btn-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}
.service__header-btn-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.service__header-btn-icon-img {
  width: 100%;
  height: 100%;
  display: block;
}
.service__main {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
  width: min(100%, 1432px);
  margin: 0 auto 60px;
}
.service__sub {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  margin: 0 auto;
  container-type: inline-size;
}
@media (min-width: 768px) {
  .service__sub {
    flex-direction: row;
    justify-content: center;
    gap: 20px 40px;
  }
}
.service__sub .service__card-number {
  gap: 5px;
}
.service__sub .service__card-number-text,
.service__sub .service__card-number-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: rgba(32, 76, 168, 0.5);
}
.service__sub .service__card-title {
  margin-bottom: 30px;
}
.service__sub .service__card-btn-icon {
  transform: rotate(0deg);
}
.service__card:not(.service__card--small) {
  position: relative;
  overflow: hidden;
  width: calc(100% + 40px);
  transform: translateX(-20px);
}
.service__card--large {
  min-height: 400px;
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .service__card--large {
    min-height: 500px;
    padding: 80px;
  }
}
.service__card--small {
  background-color: #f8f8f8;
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}
@container (min-width: 1060px) {
  .service__card--small {
    width: min(50%, 510px);
    gap: 30px;
    align-items: center;
  }
}
.service__card--consulting {
  background: #206ba8 url(../img/service_image-01.png) right -72px center/cover no-repeat;
}
.service__card--training {
  background: #294d98 url(../img/service_image-02.png) center center/cover no-repeat;
}
@media (min-width: 768px) {
  .service__card--training {
    background: #294d98 url(../img/service_image-02.png) right center/cover no-repeat;
  }
}
.service__card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service__card-number {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  opacity: 0.5;
}
.service__card-number--small {
  flex-direction: row;
  gap: 10px;
  margin-bottom: 10px;
  opacity: 0.5;
}
.service__card-number-text {
  margin-bottom: -10px;
  font-size: 3.6rem;
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
}
@media (min-width: 768px) {
  .service__card-number-text {
    font-size: 4.8rem;
  }
}
.service__card-number-en {
  font-size: 5.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
}
@media (min-width: 768px) {
  .service__card-number-en {
    font-size: 7.2rem;
  }
}
.service__card-info {
  display: flex;
  flex-direction: column;
  max-width: 600px;
}
.service__card-title-wrapper {
  margin-bottom: 0;
}
.service__card-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .service__card-title {
    font-size: 3.6rem;
  }
}
.service__card-title--small {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c2341;
  margin-bottom: 40px;
}
.service__card-desc {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 30px;
}
.service__card-btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  padding: 15px 20px;
  background-color: #ffffff;
  border-radius: 40px;
  transition: opacity 0.3s;
}
.service__card-btn:hover {
  opacity: 0.7;
}
.service__card-btn--blue {
  background-color: #204ca8;
}
.service__card-btn--blue .service__card-btn-text {
  color: #ffffff;
}
.service__card-btn-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c2341;
}
.service__card-btn-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}
.service__card-btn-icon-img {
  width: 100%;
  height: 100%;
  display: block;
}
.service__card-thumb {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .service__card-thumb {
    width: 180px;
    height: 180px;
  }
}
.service__card-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Banner */
.banner {
  position: relative;
  overflow: hidden;
}
.banner__bg-text {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
  overflow: hidden;
}
.banner__bg-text-line {
  position: absolute;
  white-space: nowrap;
  font-size: 8rem;
  font-weight: 500;
  color: rgba(32, 107, 168, 0.2);
  line-height: 1;
  display: flex;
  gap: 0;
}
@media (min-width: 768px) {
  .banner__bg-text-line {
    font-size: 10.2rem;
  }
}
.banner__bg-text-line--1 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  margin: auto;
  animation: banner-text-scroll-right 20s linear infinite;
  translate: 0 -103.5px;
}
@media (min-width: 768px) {
  .banner__bg-text-line--1 {
    height: 102px;
    translate: 0 -69.25px;
  }
}
.banner__bg-text-line--2 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 80px;
  margin: auto;
  animation: banner-text-scroll-left 20s linear infinite;
  translate: 0 -23.5px;
}
@media (min-width: 768px) {
  .banner__bg-text-line--2 {
    height: 102px;
    translate: 0 32.75px;
  }
}
.banner__bg-text-inner {
  display: inline-block;
  white-space: nowrap;
  margin-right: 30px;
}
.banner__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.banner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.banner__link {
  display: block;
  width: min(100%, 350px);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .banner__link {
    width: min(100%, 800px);
  }
}
.banner__link:hover {
  opacity: 0.9;
}
.banner__image {
  display: block;
  width: 100%;
  max-width: 800px;
}
@media (min-width: 768px) {
  .banner__image {
    max-height: 319px;
  }
}
.banner__image-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

@keyframes banner-text-scroll-right {
  0% {
    transform: translateX(-1502px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes banner-text-scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1502px);
  }
}
@media (min-width: 768px) {
  @keyframes banner-text-scroll-right {
    0% {
      transform: translateX(-1907px);
    }
    100% {
      transform: translateX(0);
    }
  }
  @keyframes banner-text-scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-1907px);
    }
  }
}
/* News */
.news {
  padding-top: 80px;
  background: linear-gradient(to bottom, rgba(32, 139, 168, 0.1), rgba(255, 255, 255, 0.1));
}
@media (min-width: 768px) {
  .news {
    padding-top: 120px;
  }
}
.news__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.news__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.news__h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .news__h2 {
    margin-bottom: 60px;
  }
}
.news__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
}
@media (min-width: 768px) {
  .news__h2-en {
    font-size: 2rem;
  }
}
.news__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
}
@media (min-width: 768px) {
  .news__h2-ja {
    font-size: 4rem;
  }
}
.news__box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}
.news__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
}
.news__list:last-child {
  border-bottom: none;
}
.news__list__content {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.news__list__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}
.news__list__date {
  display: flex;
  gap: 5px;
  align-items: center;
}
.news__list__date-text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
  color: #0c2341;
}
.news__list__categorybox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.news__list__category {
  display: flex;
  gap: 5px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.news__list__category:hover {
  opacity: 0.7;
}
.news__list__category-icon {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #204ca8;
  flex-shrink: 0;
}
.news__list__category-text {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #204ca8;
}
.news__list__title-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  width: 100%;
}
.news__list__title-link:hover {
  opacity: 0.7;
}
.news__list__title {
  padding: 15px 60px 20px 0;
  font-size: 1.4rem;
  line-height: 1.25;
  color: #0c2341;
}
@media (min-width: 768px) {
  .news__list__title {
    font-size: 1.6rem;
  }
}
.news__list__arrow-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.news__list__arrow-link:hover {
  opacity: 0.7;
}
.news__list__arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.news__list__arrow-img {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-90deg);
}
.news__empty {
  padding: 40px 0;
  color: #0c2341;
}
.news__btnArea {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .news__btnArea {
    align-items: flex-end;
  }
}
.news__btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  padding: 15px 20px;
  background-color: #204ca8;
  border-radius: 40px;
  transition: opacity 0.3s;
}
.news__btn:hover {
  opacity: 0.7;
}
.news__btn-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}
.news__btn-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.news__btn-icon-img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Case */
.case__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.archive .case__inner {
  max-width: 100%;
  margin: 0;
  padding: 0;
}
.case__h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .case__h2 {
    margin-bottom: 60px;
  }
}
.case__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
}
@media (min-width: 768px) {
  .case__h2-en {
    font-size: 2rem;
  }
}
.case__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
}
@media (min-width: 768px) {
  .case__h2-ja {
    font-size: 4rem;
  }
}
.case__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .case__list {
    flex-direction: row;
    justify-content: flex-start;
    gap: 45px 40px;
    margin-bottom: 40px;
  }
}
.case__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .case__item {
    width: calc(50% - 20px);
  }
}
@media (min-width: 1280px) {
  .case__item {
    width: calc(33.33% - 33.33px);
  }
}
.case__image-wrapper {
  position: relative;
  width: 100%;
  margin-bottom: 20px;
}
.case__image-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.case__image-link:hover {
  opacity: 0.7;
}
.case__image {
  width: 100%;
  aspect-ratio: 320/180;
  overflow: hidden;
}
.case__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.case__company {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #ffffff;
  padding: 5px 10px;
  border-radius: calc(infinity * 1px);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.case__company-text {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #204ca8;
}
.case__date {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 5px;
}
.case__date-text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
  color: #0c2341;
}
.case__categorybox {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}
.case__category {
  display: flex;
  gap: 5px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.case__category:hover {
  opacity: 0.7;
}
.case__category-icon {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #204ca8;
  flex-shrink: 0;
}
.case__category-text {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #204ca8;
}
.case__title-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  width: 100%;
}
.case__title-link:hover {
  opacity: 0.7;
}
.case__title {
  font-size: 1.6rem;
  line-height: 1.25;
  color: #0c2341;
  margin-bottom: 15px;
}
.case__btnArea {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .case__btnArea {
    align-items: flex-end;
  }
}
.case__btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  padding: 15px 20px;
  background-color: #204ca8;
  border-radius: calc(infinity * 1px);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .case__btn {
    width: 350px;
  }
}
.case__btn:hover {
  opacity: 0.7;
}
.case__btn-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}
.case__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.case__btn-icon-img {
  width: 100%;
  height: 100%;
  display: block;
}

/* Company */
.company {
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .company {
    padding: 125px 0 245px;
  }
}
.company__bg {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 160px;
  width: 100%;
  height: 32.58%;
  margin: auto;
  background: url(../img/pattern_bg.png) center center no-repeat;
  background-size: cover;
  opacity: 0.2;
  pointer-events: none;
  z-index: 1;
}
@media (min-width: 768px) {
  .company__bg {
    bottom: 0;
    width: 1516px;
    height: 494px;
  }
}
@media (min-width: 1516px) {
  .company__bg {
    width: 100%;
    height: 100%;
  }
}
.company__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.company__content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  container-type: inline-size;
}
@media (min-width: 768px) {
  .company__content {
    flex-direction: row;
    justify-content: center;
  }
}
.company__textArea {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .company__textArea {
    width: 350px;
    flex: 1 0 0;
  }
}
.company__h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .company__h2 {
    gap: 10px;
    margin-bottom: 60px;
  }
}
.company__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: #204ca8;
}
@media (min-width: 768px) {
  .company__h2-en {
    font-size: 2rem;
  }
}
.company__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c2341;
}
@media (min-width: 768px) {
  .company__h2-ja {
    font-size: 4rem;
  }
}
.company__btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  padding: 15px 20px;
  background-color: #204ca8;
  border-radius: calc(infinity * 1px);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .company__btn {
    width: 100%;
  }
}
.company__btn:hover {
  opacity: 0.7;
}
.company__btn-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}
.company__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.company__btn-icon-img {
  width: 100%;
  height: 100%;
  display: block;
}
.company__imageArea {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  width: 100%;
}
@media (min-width: 768px) {
  .company__imageArea {
    position: absolute;
    left: 410px;
    z-index: -1;
    justify-content: flex-start;
    gap: 30px;
  }
}
.company__image-item {
  position: relative;
}
@media (min-width: 768px) {
  .company__image-item--1 {
    width: 250px;
    height: 450px;
  }
}
@media (min-width: 768px) {
  .company__image-item--2 {
    width: 250px;
    height: 300px;
  }
}
.company__image-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Contact */
.contact {
  position: relative;
  margin: 0 20px -114px;
  padding: 40px 0;
  background-color: #204ca8;
  background-image: url(../img/contact_bg.jpg);
  background-size: cover;
  background-position: center top;
}
@media (min-width: 768px) {
  .contact {
    width: min(100% - 40px, 1060px);
    margin: 0 auto -160px;
    padding: 60px 0;
  }
}
.contact__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .contact__content {
    gap: 60px;
  }
}
.contact__h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .contact__h2 {
    gap: 10px;
  }
}
.contact__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: #ffffff;
}
@media (min-width: 768px) {
  .contact__h2-en {
    font-size: 2rem;
  }
}
.contact__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}
@media (min-width: 768px) {
  .contact__h2-ja {
    font-size: 4rem;
  }
}
.contact__btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  padding: 15px 20px;
  background-color: #ffffff;
  border-radius: calc(infinity * 1px);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.contact__btn:hover {
  opacity: 0.7;
}
.contact__btn-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c2341;
}
.contact__btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transform: rotate(-90deg);
}
.contact__btn-icon-img {
  width: 100%;
  height: 100%;
  display: block;
}

/*------------------------------
Mobile Menu (Hamburger)
------------------------------*/
.header {
  background-color: #ffffff;
}
@media (min-width: 1280px) {
  .header__inner {
    justify-content: space-between;
  }
  .header__logo-img {
    filter: brightness(0) invert(1);
  }
}
.header__inner {
  justify-content: flex-end;
  background-color: #ffffff;
}
@media (min-width: 1280px) {
  .header__inner {
    justify-content: space-between;
    gap: 30px;
  }
}
.header__logo {
  width: 120px;
  height: 30px;
  flex-shrink: 0;
}
@media (min-width: 1280px) {
  .header__logo {
    width: 220px;
    height: 50px;
  }
}
.header__logo-img {
  filter: none;
  width: 100%;
  height: auto;
}
.header__hamburger {
  width: 25px;
  height: 23px;
  position: relative;
  cursor: pointer;
}
.header__hamburger-line {
  background-color: #0c2341;
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 1.5px;
  transition: all 0.3s;
}
.header__hamburger-line:nth-of-type(1) {
  top: 0;
}
.header__hamburger-line:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.header__hamburger-line:nth-of-type(3) {
  bottom: 0;
}
.header__hamburger.is-active .header__hamburger-line {
  background-color: #0c2341;
}
.header__hamburger.is-active .header__hamburger-line:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header__hamburger.is-active .header__hamburger-line:nth-of-type(2) {
  opacity: 0;
}
.header__hamburger.is-active .header__hamburger-line:nth-of-type(3) {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.header__mobile-actions {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-right: 20px;
}
@media (min-width: 1280px) {
  .header__mobile-actions {
    display: none;
  }
}
.header__mobile-actions .button {
  white-space: nowrap;
  padding: 5px 10px;
  font-size: 1.2rem;
  gap: 0;
}
.header__mobile-actions .button .button__icon {
  display: none;
}
@media (max-width: 1279px) {
  .header__nav.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

/* Page Main Visual */
.page-mv {
  position: relative;
  padding: 40px 0;
  border-bottom: 1px solid #e3e3e3;
}
@media (min-width: 768px) {
  .page-mv {
    padding: 60px 0;
  }
}
.page-mv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(../img/pattern_bg.png) center bottom -15px/contain no-repeat;
  opacity: 0.1;
  z-index: 1;
}
@media (min-width: 768px) {
  .page-mv::before {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center bottom -246px;
  }
}
.page-mv__inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}
.page-mv__title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.page-mv__title-en {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.25;
  color: #204ca8;
}
@media (min-width: 768px) {
  .page-mv__title-en {
    font-size: 3rem;
  }
}
.page-mv__title-ja {
  font-size: 3rem;
  line-height: 1.25;
  color: #0c2341;
}
@media (min-width: 768px) {
  .page-mv__title-ja {
    font-size: 6rem;
  }
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 0;
  height: 25px;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: calc(infinity * 1px);
  font-size: 1.2rem;
  line-height: 1.25;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.breadcrumb__item:not(.breadcrumb__item--current) {
  background-color: #ffffff;
  border: 1px solid #204ca8;
  color: #204ca8;
}
.breadcrumb__item--current {
  background-color: #204ca8;
  border: 1px solid #204ca8;
  color: #ffffff;
}
.breadcrumb__item:not(span):hover {
  opacity: 0.7;
}
.breadcrumb__separator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 10px;
  height: 10px;
  position: relative;
}
.breadcrumb__separator::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #204ca8;
}

/* Page Company Content */
.page-company-content {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .page-company-content {
    padding: 120px 0;
  }
}
.page-company-content__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 768px) {
  .page-company-content__inner {
    gap: 60px;
  }
}
.page-company-content__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1100/430;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-company-content__image {
    aspect-ratio: 1100/430;
  }
}
.page-company-content__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-company-content__textArea {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .page-company-content__textArea {
    max-width: 800px;
  }
}
.page-company-content__h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-company-content__h2 {
    gap: 10px;
    margin-bottom: 60px;
  }
}
.page-company-content__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: #204ca8;
}
@media (min-width: 768px) {
  .page-company-content__h2-en {
    font-size: 2rem;
  }
}
.page-company-content__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c2341;
}
@media (min-width: 768px) {
  .page-company-content__h2-ja {
    font-size: 4rem;
  }
}
.page-company-content__sections {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-company-content__sections {
    gap: 40px;
  }
}
.page-company-content__section {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.page-company-content__section-title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  margin-bottom: 20px;
  font-size: 2.4rem;
  line-height: 1.25;
  color: #0c2341;
}
@media (min-width: 768px) {
  .page-company-content__section-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.page-company-content__section-title-text {
  display: inline;
}
.page-company-content__section-title-text--blue {
  color: #204ca8;
}
.page-company-content__section-text {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #0c2341;
  margin: 0;
}
@media (min-width: 768px) {
  .page-company-content__section-text {
    font-size: 1.6rem;
  }
}

/* Page Company Info */
.page-company-info {
  background: linear-gradient(to bottom, rgba(32, 139, 168, 0.1), rgba(255, 255, 255, 0.1));
  padding: 80px 0;
}
@media (min-width: 768px) {
  .page-company-info {
    padding: 120px 0;
  }
}
.page-company-info__inner {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}
.page-company-info__h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-company-info__h2 {
    gap: 10px;
    margin-bottom: 60px;
  }
}
.page-company-info__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.25;
  color: #204ca8;
}
@media (min-width: 768px) {
  .page-company-info__h2-en {
    font-size: 2rem;
  }
}
.page-company-info__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c2341;
}
@media (min-width: 768px) {
  .page-company-info__h2-ja {
    font-size: 4rem;
  }
}
.page-company-info__box {
  background-color: #ffffff;
  padding: 30px 25px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-company-info__box {
    padding: 30px 25px;
  }
}
.page-company-info__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-company-info__item {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e3e3e3;
}
@media (min-width: 768px) {
  .page-company-info__item {
    flex-direction: row;
    gap: 100px;
  }
}
.page-company-info__item + .page-company-info__item {
  padding-top: 20px;
}
.page-company-info__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.page-company-info__term {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: #204ca8;
  margin: 0;
  width: 140px;
}
@media (min-width: 768px) {
  .page-company-info__term {
    width: 160px;
  }
}
.page-company-info__desc {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #0c2341;
  margin: 0;
}
@media (min-width: 768px) {
  .page-company-info__desc {
    font-size: 1.6rem;
  }
}
.page-company-info__desc-text {
  margin: 0;
  margin-bottom: 0;
}
.page-company-info__desc-text:last-child {
  margin-bottom: 0;
}

.page-container {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .page-container {
    padding: 120px 0;
  }
}
.page-container .page-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-container .page-inner__text {
  margin-bottom: 40px;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #0c2341;
}
.page-container .page-inner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(100%, 350px);
  padding: 15px 20px;
  background-color: #204ca8;
  border-radius: calc(infinity * 1px);
}
.page-container .page-inner__btn-text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}
.page-container .page-inner__btn-icon {
  width: 20px;
  height: 20px;
  line-height: 0;
  transform: rotate(180deg);
}

/* Page Contact */
.page-contact {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .page-contact {
    padding: 80px 0 120px;
  }
}
.page-contact__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
}
@media (min-width: 768px) {
  .page-contact__inner {
    gap: 60px;
  }
}
.page-contact__h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  line-height: 1.25;
  width: 100%;
}
.page-contact__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
}
@media (min-width: 768px) {
  .page-contact__h2-en {
    font-size: 2rem;
  }
}
.page-contact__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
}
@media (min-width: 768px) {
  .page-contact__h2-ja {
    font-size: 4rem;
  }
}
.page-contact__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  width: 100%;
}
.page-contact__text-content {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #0c2341;
  margin: 0;
}
.page-contact__form {
  width: 100%;
}
.page-contact__form .mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0;
}
.page-contact__form .mwform-form__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-contact__form .mwform-form__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 768px) {
  .page-contact__form .mwform-form__item {
    flex-direction: row;
    align-items: center;
  }
}
.page-contact__form .mwform-form__item:last-of-type .mwform-form__input-area {
  justify-content: center;
  gap: 20px 40px;
}
.page-contact__form .mwform-form__label-area {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}
@media (min-width: 768px) {
  .page-contact__form .mwform-form__label-area {
    width: 290px;
    gap: 20px;
  }
}
.page-contact__form .mwform-form__label {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0c2341;
  flex: 1 0 0;
  min-width: 0;
}
.page-contact__form .mwform-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  background-color: #204ca8;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  flex-shrink: 0;
}
.page-contact__form .mwform-form__input-area {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1 0 0;
  flex-wrap: wrap;
  min-width: 0;
  width: 100%;
}
.page-contact__form .mwform-form__input-area .error {
  color: #f74242;
  font-size: 1.2rem;
  width: 100%;
}
.page-contact__form .mwform-form__input-area button[type=submit] {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 0 0 auto;
  width: min(100%, 350px);
  margin-top: 50px;
  padding: 15px 20px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  background-color: #204ca8;
  border: none;
  border-radius: calc(infinity * 1px);
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.page-contact__form .mwform-form__input-area button[type=submit]:hover {
  opacity: 0.7;
}
.page-contact__form .mwform-form__input-area button[type=submit].is-back {
  background-color: #0c2341;
}
.page-contact__form .mwform-form__input-area button[type=submit].is-back .mwform-form__btn-icon {
  transform: rotate(180deg);
}
.page-contact__form .mwform-form__input-area button[type=submit] .mwform-form__btn-icon {
  line-height: 0;
}
.page-contact__form .mwform-form__input-area button[type=submit] + button[type=submit] {
  margin-top: 0;
}
@media (min-width: 768px) {
  .page-contact__form .mwform-form__input-area button[type=submit] + button[type=submit] {
    margin-top: 50px;
  }
}
.page-contact__form input[type=text],
.page-contact__form input[type=email],
.page-contact__form input[type=tel],
.page-contact__form textarea {
  width: 100%;
  padding: 10px;
  background-color: #f8f8f8;
  border: none;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #0c2341;
  font-family: "Noto Sans JP", sans-serif;
}
.page-contact__form input[type=text]::placeholder,
.page-contact__form input[type=email]::placeholder,
.page-contact__form input[type=tel]::placeholder,
.page-contact__form textarea::placeholder {
  color: #757575;
}
.page-contact__form input[type=text]:focus,
.page-contact__form input[type=email]:focus,
.page-contact__form input[type=tel]:focus,
.page-contact__form textarea:focus {
  outline: none;
  background-color: #ffffff;
}
.page-contact__form .mwform-text, .page-contact__form .mwform-email, .page-contact__form .mwform-tel, .page-contact__form .mwform-textarea {
  width: 100%;
}
.page-contact__form .mwform-text input,
.page-contact__form .mwform-text textarea, .page-contact__form .mwform-email input,
.page-contact__form .mwform-email textarea, .page-contact__form .mwform-tel input,
.page-contact__form .mwform-tel textarea, .page-contact__form .mwform-textarea input,
.page-contact__form .mwform-textarea textarea {
  width: 100%;
  padding: 10px;
  background-color: #f8f8f8;
  border: none;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #0c2341;
  font-family: "Noto Sans JP", sans-serif;
}
.page-contact__form .mwform-text input::placeholder,
.page-contact__form .mwform-text textarea::placeholder, .page-contact__form .mwform-email input::placeholder,
.page-contact__form .mwform-email textarea::placeholder, .page-contact__form .mwform-tel input::placeholder,
.page-contact__form .mwform-tel textarea::placeholder, .page-contact__form .mwform-textarea input::placeholder,
.page-contact__form .mwform-textarea textarea::placeholder {
  color: #757575;
}
.page-contact__form .mwform-text input:focus,
.page-contact__form .mwform-text textarea:focus, .page-contact__form .mwform-email input:focus,
.page-contact__form .mwform-email textarea:focus, .page-contact__form .mwform-tel input:focus,
.page-contact__form .mwform-tel textarea:focus, .page-contact__form .mwform-textarea input:focus,
.page-contact__form .mwform-textarea textarea:focus {
  outline: none;
  background-color: #ffffff;
}
.page-contact__form .mwform-text textarea, .page-contact__form .mwform-email textarea, .page-contact__form .mwform-tel textarea, .page-contact__form .mwform-textarea textarea {
  min-height: 88px;
  resize: vertical;
}
.page-contact__form textarea {
  min-height: 88px;
  resize: vertical;
}
.page-contact__form .mwform-radio-field {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  align-items: center;
}
.page-contact__form .mwform-radio-field label {
  display: flex;
  align-items: flex-start;
  padding-left: 20px;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #0c2341;
  cursor: pointer;
}
.page-contact__form .mwform-radio-field label input[type=radio] {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid #707070;
  border-radius: 50%;
  background-color: #ffffff;
  appearance: none;
  cursor: pointer;
  margin: 0;
}
.page-contact__form .mwform-radio-field label input[type=radio]:checked {
  background-color: #204ca8;
  border-color: #204ca8;
}
.page-contact__form .mwform-radio-field label input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
}
.page-contact__form .mwform-checkbox-field {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: flex-start;
  width: 100%;
}
.page-contact__form .mwform-checkbox-field label {
  display: flex;
  align-items: flex-start;
  padding-left: 20px;
  position: relative;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: #0c2341;
  cursor: pointer;
}
.page-contact__form .mwform-checkbox-field label input[type=checkbox] {
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  border: 1px solid #707070;
  border-radius: 3px;
  background-color: #ffffff;
  appearance: none;
  cursor: pointer;
}
.page-contact__form .mwform-checkbox-field label input[type=checkbox]:checked {
  background-color: #204ca8;
  border-color: #204ca8;
}
.page-contact__form .mwform-checkbox-field label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 4px;
  height: 8px;
  border: solid #ffffff;
  border-width: 0 2px 2px 0;
  transform: translate(0, -1.5px) rotate(45deg);
}
.page-contact__form .mwform-checkbox-field label a {
  color: #1c7abe;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.page-contact__form input[type=submit],
.page-contact__form button.mwform-submit,
.page-contact__form .mwform-submit {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}
.page-contact__form .mwform-error {
  color: #f74242;
  font-size: 1.4rem;
  margin-top: 5px;
}
.page-contact__form .back__btn {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 350px;
  margin-top: 40px;
  padding: 15px 20px;
  background-color: #204ca8;
  border-radius: 40px;
  transition: opacity 0.3s;
}
.page-contact__form .back__btn:hover {
  opacity: 0.7;
}
.page-contact__form .back__btn .back__btn-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
}
.page-contact__form .back__btn .back__btn-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  transform: rotate(180deg);
}
.page-contact__form .mw_wp_form_complete {
  text-align: center;
}
.page-contact__form .mw_wp_form_complete .page-contact__icon {
  margin-bottom: 20px;
  text-align: center;
}
.page-contact__form .mw_wp_form_complete .page-contact__icon img {
  width: 50px;
  height: 50px;
}
.page-contact__form .mw_wp_form_complete .back__btn {
  margin: 40px auto 0;
}

/* Single Post */
.single__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 80px;
}
@media (min-width: 768px) {
  .single__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
  }
}
.single__main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .single__main {
    flex: 1 0 0;
    min-width: 0;
    max-width: 800px;
    padding-right: 40px;
  }
}
.single__article {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
.single__header {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
  padding-bottom: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .single__header {
    padding-bottom: 60px;
  }
}
.single__meta {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}
.single__date {
  display: flex;
  align-items: center;
}
.single__date-text {
  font-size: 1.6rem;
  line-height: 1.25;
  color: #0c2341;
  margin: 0;
}
.single__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.single__category {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
}
.single__category:hover {
  opacity: 0.7;
}
.single__category-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #204ca8;
  flex-shrink: 0;
}
.single__category-text {
  font-size: 1.6rem;
  line-height: 1.25;
  color: #204ca8;
  margin: 0;
}
.single__title-area {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.single__title-line {
  width: 58px;
  height: 2px;
  background-color: #204ca8;
}
.single__title {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0c2341;
  margin: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .single__title {
    font-size: 3rem;
  }
}
.single__content {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  .single__content {
    padding-bottom: 60px;
  }
}
.single__content h1,
.single__content h2,
.single__content h3,
.single__content h4,
.single__content h5,
.single__content h6 {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .single__content h1,
  .single__content h2,
  .single__content h3,
  .single__content h4,
  .single__content h5,
  .single__content h6 {
    margin-bottom: 30px;
  }
}
.single__content h2 {
  background-color: #0c2341;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 10px 15px;
  margin: 0 0 30px;
}
@media (min-width: 768px) {
  .single__content h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
  }
}
.single__content h3 {
  border-left: 3px solid #204ca8;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c2341;
  padding: 5px 0 5px 20px;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .single__content h3 {
    margin-bottom: 30px;
  }
}
.single__content p {
  font-size: 1.4rem;
  line-height: 1.5;
  color: #0c2341;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .single__content p {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}
.single__content ul {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) {
  .single__content ul {
    margin-bottom: 30px;
  }
}
.single__content ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.single__content ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #204ca8;
  flex-shrink: 0;
}
.single__content ol {
  list-style: decimal inside;
  margin: 0 0 20px;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 5px;
}
@media (min-width: 768px) {
  .single__content ol {
    margin-bottom: 30px;
  }
}
.single__content img {
  width: auto;
  height: auto;
  margin: 0 0 20px;
}
@media (min-width: 768px) {
  .single__content img {
    margin-bottom: 30px;
  }
}
.single__content a {
  color: #204ca8;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.single__content a:hover {
  opacity: 0.7;
}
.single__content .wp-block-button {
  width: 100%;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .single__content .wp-block-button {
    margin-bottom: 30px;
  }
}
.single__content .wp-block-button__link {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: min(100%, 370px);
  padding: 15px 40px 15px 20px;
  background-color: #204ca8;
  border-radius: calc(infinity * 1px);
  text-decoration: none;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  transition: opacity 0.3s;
}
.single__content .wp-block-button__link:hover {
  opacity: 0.7;
}
.single__content .wp-block-button__link::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/icon_arrow-white.svg) center center/contain no-repeat;
  flex: 0 0 auto;
}
.single__content details {
  margin-bottom: 20px;
  padding: 20px;
  background-color: #f8f8f8;
}
@media (min-width: 768px) {
  .single__content details {
    margin-bottom: 30px;
  }
}
.single__content details summary {
  font-size: 1.6rem;
  line-height: 1.25;
  color: #0c2341;
}
@media (min-width: 768px) {
  .single__content details summary {
    font-size: 1.8rem;
  }
}
.single__content details summary + * {
  margin-top: 20px;
}
.single__content table {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .single__content table {
    margin-bottom: 30px;
  }
}
.single__content hr {
  margin-bottom: 30px;
}
.single__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.single__pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #204ca8;
  border-radius: 40px;
  padding: 15px 20px;
  text-decoration: none;
  transition: opacity 0.3s;
}
.single__pagination-btn:hover:not(.single__pagination-btn--disabled) {
  opacity: 0.7;
}
.single__pagination-btn--prev {
  width: 50px;
  height: 50px;
  padding: 0;
}
.single__pagination-btn--prev .single__pagination-btn-icon {
  transform: rotate(180deg);
}
.single__pagination-btn--next {
  width: 50px;
  height: 50px;
  padding: 0;
}
.single__pagination-btn--list {
  padding: 15px 20px;
}
.single__pagination-btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.single__pagination-btn-text {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
}
.single__pagination-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.single__sidebar {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .single__sidebar {
    width: auto;
    flex-shrink: 0;
  }
}
.single__sidebar-widget {
  background-color: #f8f8f8;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.single__sidebar-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  line-height: 1.25;
  width: 100%;
}
.single__sidebar-title-en {
  font-size: 1rem;
  font-weight: 500;
  color: #204ca8;
}
.single__sidebar-title-ja {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0c2341;
}
.single__sidebar-content {
  border-left: 3px solid #204ca8;
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
.single__sidebar-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.single__sidebar-item {
  display: flex;
  align-items: center;
}
.single__sidebar-link {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
  width: 100%;
}
.single__sidebar-link:hover {
  opacity: 0.7;
}
.single__sidebar-link-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #204ca8;
  flex-shrink: 0;
}
.single__sidebar-link-text {
  font-size: 1.6rem;
  line-height: 1.25;
  color: #204ca8;
  margin: 0;
}

/* Archive */
.archive__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 80px;
  container-type: inline-size;
}
@media (min-width: 768px) {
  .archive__inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
  }
}
.archive__main {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
@container (min-width: 1060px) {
  .archive__main {
    flex: 1 0 0;
    min-width: 0;
    max-width: 800px;
    padding-right: 40px;
  }
}
.archive__list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .archive__list {
    margin-bottom: 60px;
  }
}
.archive__item {
  display: flex;
  flex-direction: row;
  align-items: center;
  border-bottom: 1px solid #e3e3e3;
  width: 100%;
}
.archive__item:last-child {
  border-bottom: none;
}
.archive__item-content {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.archive__item-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  width: 100%;
}
.archive__item-date {
  display: flex;
  gap: 5px;
  align-items: center;
}
.archive__item-date-text {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
  color: #0c2341;
  margin: 0;
}
.archive__item-categories {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.archive__item-category {
  display: flex;
  gap: 5px;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.archive__item-category:hover {
  opacity: 0.7;
}
.archive__item-category-icon {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #204ca8;
  flex-shrink: 0;
}
.archive__item-category-text {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  color: #204ca8;
  margin: 0;
}
.archive__item-title-link {
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
  width: 100%;
}
.archive__item-title-link:hover {
  opacity: 0.7;
}
.archive__item-title {
  padding: 15px 60px 20px 0;
  font-size: 1.4rem;
  line-height: 1.25;
  color: #0c2341;
  margin: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .archive__item-title {
    font-size: 1.6rem;
  }
}
.archive__item-arrow-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s;
}
.archive__item-arrow-link:hover {
  opacity: 0.7;
}
.archive__item-arrow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.archive__item-arrow-img {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(-90deg);
}
.archive__pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.archive__pagination-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 2rem;
  line-height: 1.25;
  color: #0c2341;
  background-color: #ffffff;
  transition: opacity 0.3s;
}
.archive__pagination-btn:hover:not(.archive__pagination-btn--disabled):not(.archive__pagination-btn--current):not(.archive__pagination-btn--ellipsis) {
  opacity: 0.7;
}
.archive__pagination-btn--prev {
  border: none;
}
.archive__pagination-btn--prev .archive__pagination-btn-icon {
  transform: rotate(90deg);
}
.archive__pagination-btn--next {
  border: none;
}
.archive__pagination-btn--next .archive__pagination-btn-icon {
  transform: rotate(-90deg);
}
.archive__pagination-btn--current {
  background-color: #204ca8;
  border-color: #204ca8;
  color: #ffffff;
}
.archive__pagination-btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.archive__pagination-btn--ellipsis {
  border: none;
  background-color: transparent;
  cursor: default;
  pointer-events: none;
  display: block;
  text-align: center;
}
.archive__pagination-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}
.archive__no-posts {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #0c2341;
  margin: 0;
  text-align: center;
  padding: 40px 0;
}
@media (min-width: 768px) {
  .archive__no-posts {
    padding: 60px 0;
  }
}
.archive__sidebar {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@container (min-width: 1060px) {
  .archive__sidebar {
    width: auto;
    flex-shrink: 0;
  }
}
.archive__sidebar-widget {
  background-color: #f8f8f8;
  padding: 20px 30px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.archive__sidebar-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  line-height: 1.25;
  width: 100%;
}
.archive__sidebar-title-en {
  font-size: 1rem;
  font-weight: 500;
  color: #204ca8;
}
.archive__sidebar-title-ja {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0c2341;
}
.archive__sidebar-content {
  border-left: 3px solid #204ca8;
  padding-left: 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
.archive__sidebar-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.archive__sidebar-item {
  display: flex;
  align-items: center;
}
.archive__sidebar-link {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
  width: 100%;
}
.archive__sidebar-link:hover {
  opacity: 0.7;
}
.archive__sidebar-link-icon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #204ca8;
  flex-shrink: 0;
}
.archive__sidebar-link-text {
  font-size: 1.6rem;
  line-height: 1.25;
  color: #204ca8;
  margin: 0;
}

/* Privacy Policy Page */
.page-privacy {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .page-privacy {
    padding: 120px 0;
  }
}
.page-privacy__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 767px) {
  .page-privacy__inner {
    gap: 40px;
  }
}
.page-privacy__intro {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0c2341;
  margin: 0;
}
@media (max-width: 767px) {
  .page-privacy__intro {
    font-size: 1.4rem;
  }
}
.page-privacy__section {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.page-privacy__heading {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0c2341;
  margin: 0;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .page-privacy__heading {
    font-size: 2.4rem;
    padding-bottom: 20px;
  }
}
.page-privacy__text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0c2341;
  margin: 0;
}
@media (max-width: 767px) {
  .page-privacy__text {
    font-size: 1.4rem;
  }
}
.page-privacy__text-paragraph {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0c2341;
  margin: 0 0 1em 0;
}
@media (max-width: 767px) {
  .page-privacy__text-paragraph {
    font-size: 1.4rem;
  }
}
.page-privacy__text-paragraph:last-child {
  margin-bottom: 0;
}

/* Page About Content */
.page-about-content {
  overflow: hidden;
  position: relative;
  padding: 80px 0;
}
@media (min-width: 768px) {
  .page-about-content {
    padding: 120px 0;
  }
}
.page-about-content__bg {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 780px;
  height: 254px;
  background: url(../img/pattern_bg.png) center center no-repeat;
  background-size: cover;
  opacity: 0.26;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .page-about-content__bg {
    bottom: 80px;
    width: 1516px;
    height: 494px;
  }
}
@media (min-width: 1516px) {
  .page-about-content__bg {
    width: 100%;
    height: 100%;
  }
}
.page-about-content__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.page-about-content__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.page-about-content__info__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.page-about-content__h2 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-about-content__h2 {
    margin-bottom: 60px;
  }
}
.page-about-content__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
}
@media (min-width: 768px) {
  .page-about-content__h2-en {
    font-size: 2rem;
  }
}
.page-about-content__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
}
@media (min-width: 768px) {
  .page-about-content__h2-ja {
    font-size: 4rem;
  }
}
.page-about-content__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-about-content__bottom {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
    justify-content: space-between;
  }
}
.page-about-content__bottom__title {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .page-about-content__bottom__title {
    padding-bottom: 30px;
  }
}
.page-about-content__bottom__title-text {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0c2341;
}
@media (min-width: 768px) {
  .page-about-content__bottom__title-text {
    font-size: 3rem;
  }
}
.page-about-content__bottom__title-blue {
  color: #204ca8;
}
.page-about-content__bottom__title-black {
  color: #0c2341;
}
.page-about-content__bottom__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
@media (min-width: 768px) {
  .page-about-content__bottom__info {
    align-items: flex-end;
    width: min(100%, 530px);
  }
}
.page-about-content__text {
  width: 100%;
  padding-bottom: 40px;
}
.page-about-content__text-inner {
  font-size: 1.6rem;
  line-height: 1.5;
  color: #0c2341;
  white-space: pre-wrap;
}
.page-about-content__img {
  position: relative;
  width: 100%;
  aspect-ratio: 350/300;
}
@media (min-width: 768px) {
  .page-about-content__img {
    aspect-ratio: 1042/491;
  }
}
.page-about-content__img-placeholder {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  gap: 0;
  overflow: hidden;
}
.page-about-content__img-item {
  position: absolute;
  background-color: #ddd;
}
.page-about-content__img-item--1 {
  bottom: 0;
  left: 0;
  right: 68.57%;
  top: 0;
  width: 31.43%;
  background: url(../img/about_image-01.jpg) center top/cover no-repeat;
}
@media (min-width: 768px) {
  .page-about-content__img-item--1 {
    right: 67.37%;
    width: 32.63%;
    background: url(../img/about_image-01.jpg) left top/cover no-repeat;
  }
}
.page-about-content__img-item--2 {
  bottom: 0;
  left: 34.29%;
  right: 34.29%;
  top: 20%;
  width: 31.42%;
  background: url(../img/about_image-02.jpg) center top/cover no-repeat;
}
@media (min-width: 768px) {
  .page-about-content__img-item--2 {
    left: 33.69%;
    right: 33.69%;
    top: 10.18%;
    width: 32.62%;
    background: url(../img/about_image-02.jpg) left top/cover no-repeat;
  }
}
.page-about-content__img-item--3 {
  bottom: 0;
  left: 68.57%;
  right: 0;
  top: 40%;
  width: 31.43%;
  background: url(../img/about_image-03.jpg) center top/cover no-repeat;
}
@media (min-width: 768px) {
  .page-about-content__img-item--3 {
    left: 67.37%;
    top: 34.62%;
    width: 32.63%;
    background: url(../img/about_image-03.jpg) left top/cover no-repeat;
  }
}
.page-about-content__img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 0 15px 20px;
  line-height: 1.2;
  font-size: clamp(4.7rem, 2.728rem + 5.056vi, 9.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  z-index: 3;
}
@media (min-width: 768px) {
  .page-about-content__img-overlay {
    padding: 0 0 20px 40px;
  }
}

/* Page About Problem */
.page-about-problem {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(32, 139, 168, 0.1) 100%);
  margin-bottom: 80px;
  padding: 0 0 80px;
}
@media (min-width: 768px) {
  .page-about-problem {
    margin-bottom: 120px;
    padding: 0 0 120px;
  }
}
.page-about-problem__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-about-problem__h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
  width: 100%;
}
@media (min-width: 768px) {
  .page-about-problem__h2 {
    gap: 10px;
    margin-bottom: 60px;
  }
}
.page-about-problem__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-about-problem__h2-en {
    font-size: 2rem;
  }
}
.page-about-problem__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 768px) {
  .page-about-problem__h2-ja {
    font-size: 4rem;
  }
}
.page-about-problem__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  margin: 0 0 40px 0;
  padding: 0;
  list-style: none;
}
@media (min-width: 768px) {
  .page-about-problem__list {
    margin-bottom: 60px;
  }
}
.page-about-problem__item {
  background-color: #ffffff;
  box-shadow: 0 0 25px rgba(50, 109, 147, 0.1);
  padding: 10px 20px 10px 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .page-about-problem__item {
    padding: 15px 60px;
  }
}
.page-about-problem__item-icon {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-about-problem__item-icon {
    width: 30px;
    height: 30px;
  }
}
.page-about-problem__item-icon-img {
  width: 100%;
  height: 100%;
  display: block;
}
.page-about-problem__item-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.25;
  color: #0c2341;
  text-align: left;
  margin: 0;
  flex: 1;
}
@media (min-width: 768px) {
  .page-about-problem__item-text {
    font-size: 2rem;
    text-align: center;
  }
}
.page-about-problem__arrow {
  width: 84px;
  height: 44.8px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-about-problem__arrow {
    margin-bottom: 60px;
  }
}
.page-about-problem__arrow-img {
  width: 100%;
  height: 100%;
  display: block;
  transform: scale(2.4);
}
.page-about-problem__text {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
  color: #0c2341;
  text-align: center;
  margin: 0 0 30px 0;
  overflow-wrap: break-word;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .page-about-problem__text {
    font-size: 3.2rem;
    margin-bottom: 50px;
  }
}
.page-about-problem__image {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-about-problem__image {
    max-width: 1136px;
  }
}
.page-about-problem__image-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Page About Points */
.page-about-points {
  padding: 80px 0;
  container-type: inline-size;
}
@media (min-width: 768px) {
  .page-about-points {
    padding: 120px 0;
  }
}
.page-about-points__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-about-points__h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-about-points__h2 {
    gap: 10px;
    margin-bottom: 60px;
  }
}
.page-about-points__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-about-points__h2-en {
    font-size: 2rem;
  }
}
.page-about-points__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 768px) {
  .page-about-points__h2-ja {
    font-size: 4rem;
  }
}
.page-about-points__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.page-about-points__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .page-about-points__item:last-of-type {
    min-height: auto;
  }
}
@container (min-width: 1420px) {
  .page-about-points__item:last-of-type {
    min-height: 450px;
  }
}
@media (min-width: 768px) {
  .page-about-points__item {
    width: calc(100% + 20px);
    flex-direction: row;
    translate: -20px 0;
    padding: 0 0 0 20px;
  }
}
@container (min-width: 1420px) {
  .page-about-points__item {
    min-height: 450px;
  }
}
.page-about-points__item--reverse {
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .page-about-points__item--reverse {
    flex-direction: row;
    padding: 0 20px 0 0;
  }
}
.page-about-points__item--reverse .page-about-points__item-image {
  padding-left: 0;
  padding-right: 30px;
}
@media (min-width: 768px) {
  .page-about-points__item--reverse .page-about-points__item-image {
    padding-left: 0;
    padding-right: 0;
  }
}
.page-about-points__item--reverse .page-about-points__item-image .page-about-points__item-image-img {
  transform-origin: right top;
}
.page-about-points__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
@media (min-width: 768px) {
  .page-about-points__item-content {
    flex: none;
    width: calc(100% - 420px - 40px);
  }
}
.page-about-points__item-label {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .page-about-points__item-label {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.page-about-points__item-label-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .page-about-points__item-label-text {
    font-size: 1.6rem;
  }
}
.page-about-points__item-label-num {
  font-size: 2rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-about-points__item-label-num {
    font-size: 3rem;
  }
}
.page-about-points__item-title {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0c2341;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .page-about-points__item-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.page-about-points__item-text {
  display: flex;
  flex-direction: column;
}
.page-about-points__item-text-para {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0c2341;
  margin: 0 0 1em 0;
}
@media (min-width: 768px) {
  .page-about-points__item-text-para {
    font-size: 1.6rem;
  }
}
.page-about-points__item-text-para:last-child {
  margin-bottom: 0;
}
.page-about-points__item-image {
  flex: 1;
  max-width: 100%;
  width: 100%;
  padding-left: 30px;
}
@media (min-width: 768px) {
  .page-about-points__item-image {
    position: relative;
    width: calc(100% - 600px - 40px);
    padding: 0;
  }
}
.page-about-points__item-image-img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: left top;
}
@container (min-width: 1420px) {
  .page-about-points__item-image-img {
    transform: scale(1.42856);
  }
}

/* Page About Member */
.page-about-member {
  padding: 40px 0 80px;
}
@media (min-width: 768px) {
  .page-about-member {
    padding: 60px 0 120px;
  }
}
.page-about-member__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-about-member__h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-about-member__h2 {
    gap: 10px;
    margin-bottom: 60px;
  }
}
.page-about-member__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-about-member__h2-en {
    font-size: 2rem;
  }
}
.page-about-member__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 768px) {
  .page-about-member__h2-ja {
    font-size: 4rem;
  }
}
.page-about-member__intro {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: #204ca8;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .page-about-member__intro {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.page-about-member__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.page-about-member__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .page-about-member__item {
    flex-direction: row;
  }
}
.page-about-member__item-image {
  width: 320px;
  height: 320px;
  margin: 0 auto;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.page-about-member__item-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-about-member__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.page-about-member__item-tags {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-about-member__item-tag {
  background-color: #204ca8;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 1px 5px;
  display: inline-block;
}
.page-about-member__item-career {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #204ca8;
}
.page-about-member__item-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-about-member__item-info-position {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0c2341;
  margin: 0;
}
.page-about-member__item-info-name {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #0c2341;
  margin: 0;
}
.page-about-member__item-text {
  display: flex;
  flex-direction: column;
}
.page-about-member__item-text-para {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0c2341;
  margin: 0 0 1em 0;
}
@media (min-width: 768px) {
  .page-about-member__item-text-para {
    font-size: 1.6rem;
  }
}
.page-about-member__item-text-para:last-child {
  margin-bottom: 0;
}

/* Page Training Points */
.page-training-points {
  padding: 80px 0;
  container-type: inline-size;
}
@media (min-width: 768px) {
  .page-training-points {
    padding: 120px 0;
  }
}
.page-training-points__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-training-points__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.page-training-points__item {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .page-training-points__item {
    width: calc(100% + 20px);
    flex-direction: row;
    translate: -20px 0;
    padding: 0 0 0 20px;
  }
}
@container (min-width: 1420px) {
  .page-training-points__item {
    min-height: 450px;
  }
}
.page-training-points__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
@media (min-width: 768px) {
  .page-training-points__item-content {
    flex: none;
    width: calc(100% - 420px - 40px);
  }
}
.page-training-points__item-title {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0c2341;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .page-training-points__item-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.page-training-points__item-text {
  display: flex;
  flex-direction: column;
}
.page-training-points__item-text-para {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0c2341;
  margin: 0 0 1em 0;
}
@media (min-width: 768px) {
  .page-training-points__item-text-para {
    font-size: 1.6rem;
  }
}
.page-training-points__item-text-para:last-child {
  margin-bottom: 0;
}
.page-training-points__item-image {
  flex: 1;
  max-width: 100%;
  width: 100%;
  padding-left: 30px;
}
@media (min-width: 768px) {
  .page-training-points__item-image {
    position: relative;
    width: calc(100% - 600px - 40px);
    padding: 0;
  }
}
.page-training-points__item-image-img {
  width: 100%;
  height: auto;
  display: block;
  transform-origin: left top;
}
@container (min-width: 1420px) {
  .page-training-points__item-image-img {
    transform: scale(1.42856);
  }
}

/* Page Training Feature */
.page-training-feature {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .page-training-feature {
    padding: 120px 0;
  }
}
.page-training-feature__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-training-feature__h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-training-feature__h2 {
    gap: 10px;
    margin-bottom: 60px;
  }
}
.page-training-feature__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-training-feature__h2-en {
    font-size: 2rem;
  }
}
.page-training-feature__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 768px) {
  .page-training-feature__h2-ja {
    font-size: 4rem;
  }
}
.page-training-feature__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-training-feature__item {
  background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
  border-radius: 120px 0 0 0;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .page-training-feature__item {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }
}
.page-training-feature__item-icon {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #204ca8;
  border-radius: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.page-training-feature__item-icon-img {
  width: 120px;
  height: 120px;
  display: block;
}
.page-training-feature__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .page-training-feature__item-content {
    max-width: calc(100% - 180px - 40px);
  }
}
.page-training-feature__item-label {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .page-training-feature__item-label {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.page-training-feature__item-label-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .page-training-feature__item-label-text {
    font-size: 1.6rem;
  }
}
.page-training-feature__item-label-num {
  font-size: 2rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-training-feature__item-label-num {
    font-size: 3rem;
  }
}
.page-training-feature__item-title {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0c2341;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .page-training-feature__item-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.page-training-feature__item-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0c2341;
  margin: 0;
}
@media (min-width: 768px) {
  .page-training-feature__item-text {
    font-size: 1.6rem;
  }
}

/* Page Training About */
.page-training-about {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-training-about {
    padding: 120px 0;
  }
}
.page-training-about__bg {
  position: absolute;
  top: 10.36px;
  left: 50%;
  transform: translateX(-50%);
  width: max(100%, 690.23px);
  height: 346px;
  background: url(../img/pattern_bg.png) center center no-repeat;
  background-size: cover;
  opacity: 0.26;
  z-index: 1;
  pointer-events: none;
}
@media (min-width: 768px) {
  .page-training-about__bg {
    top: -9px;
    width: 1554px;
    height: 779px;
  }
}
@media (min-width: 1554px) {
  .page-training-about__bg {
    width: 100%;
    height: 100%;
  }
}
.page-training-about__inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-training-about__h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-training-about__h2 {
    gap: 10px;
    margin-bottom: 60px;
  }
}
.page-training-about__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-training-about__h2-en {
    font-size: 2rem;
  }
}
.page-training-about__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 768px) {
  .page-training-about__h2-ja {
    font-size: 4rem;
  }
}
.page-training-about__content {
  background: rgba(248, 248, 248, 0.8);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .page-training-about__content {
    padding: 50px 40px;
  }
}
.page-training-about__image {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 483/234;
  position: relative;
}
.page-training-about__image-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Page Training Banner */
.page-training-banner {
  padding: 0 0 80px;
}
@media (min-width: 768px) {
  .page-training-banner {
    padding: 0 0 120px;
  }
}
.page-training-banner__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-training-banner__title {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: #204ca8;
  text-align: center;
  margin: 0 0 30px 0;
}
@media (min-width: 768px) {
  .page-training-banner__title {
    font-size: 3rem;
  }
}
@media (min-width: 768px) {
  .page-training-banner__title br {
    display: none;
  }
}
.page-training-banner__link {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  transition: opacity 0.3s ease;
}
.page-training-banner__link:hover {
  opacity: 0.8;
}
.page-training-banner__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Page Training Case */
.page-training-case {
  background: linear-gradient(180deg, rgba(32, 139, 168, 0.1) 0%, rgba(255, 255, 255, 0.1) 100%);
  padding: 240px 0 80px !important;
}
@media (min-width: 768px) {
  .page-training-case {
    padding: 280px 0 120px !important;
  }
}
.page-training-case__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-training-case__h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-training-case__h2 {
    gap: 10px;
    margin-bottom: 60px;
  }
}
.page-training-case__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-training-case__h2-en {
    font-size: 2rem;
  }
}
.page-training-case__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 768px) {
  .page-training-case__h2-ja {
    font-size: 4rem;
  }
}
.page-training-case__content {
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(55, 138, 206, 0.06);
  padding: 30px;
}
@media (min-width: 768px) {
  .page-training-case__content {
    padding: 40px 50px;
  }
}
.page-training-case__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.page-training-case__item {
  display: flex;
  flex-direction: column;
}
.page-training-case__item-label {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .page-training-case__item-label {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.page-training-case__item-label-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .page-training-case__item-label-text {
    font-size: 1.6rem;
  }
}
.page-training-case__item-label-num {
  font-size: 2rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-training-case__item-label-num {
    font-size: 3rem;
  }
}
.page-training-case__item-title {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0c2341;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .page-training-case__item-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.page-training-case__item-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0c2341;
  margin: 0;
}
@media (min-width: 768px) {
  .page-training-case__item-text {
    font-size: 1.6rem;
  }
}

/* Page Training Flow */
.page-training-flow {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .page-training-flow {
    padding: 120px 0;
  }
}
.page-training-flow__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-training-flow__h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-training-flow__h2 {
    gap: 10px;
    margin-bottom: 60px;
  }
}
.page-training-flow__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-training-flow__h2-en {
    font-size: 2rem;
  }
}
.page-training-flow__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 768px) {
  .page-training-flow__h2-ja {
    font-size: 4rem;
  }
}
.page-training-flow__list {
  display: flex;
  flex-direction: column;
}
.page-training-flow__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
@media (min-width: 768px) {
  .page-training-flow__item {
    flex-direction: row;
    gap: 40px;
    align-items: flex-start;
  }
}
.page-training-flow__item:first-of-type .page-training-flow__item-arrow {
  display: none;
}
@media (min-width: 768px) {
  .page-training-flow__item:first-of-type .page-training-flow__item-arrow {
    display: flex;
  }
}
@media (min-width: 768px) {
  .page-training-flow__item:last-of-type .page-training-flow__item-arrow {
    display: none;
  }
}
.page-training-flow__item:last-of-type .page-training-flow__item-title {
  color: #204ca8;
}
.page-training-flow__item-icon-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 768px) {
  .page-training-flow__item-icon-wrapper {
    width: auto;
    align-self: stretch;
  }
}
.page-training-flow__item-icon {
  width: 180px;
  height: 180px;
  flex-shrink: 0;
  background: #ffffff;
  border: 1px solid #204ca8;
  border-radius: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
@media (min-width: 768px) {
  .page-training-flow__item-icon {
    order: 1;
  }
}
.page-training-flow__item-icon--goal {
  background: #204ca8;
}
.page-training-flow__item-icon-img {
  width: 120px;
  height: 120px;
  display: block;
}
.page-training-flow__item-arrow {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  width: 100%;
  height: 150px;
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
@media (min-width: 768px) {
  .page-training-flow__item-arrow {
    order: 2;
    flex: 1;
    min-height: 54px;
    height: auto;
  }
}
.page-training-flow__item-arrow::before {
  content: "";
  width: 2px;
  height: calc(100% - 10px);
  background: linear-gradient(180deg, rgba(32, 76, 168, 0) 0%, #204ca8 100%);
  display: block;
}
@media (min-width: 768px) {
  .page-training-flow__item-arrow::before {
    height: 100%;
    background: #204ca8;
  }
}
.page-training-flow__item-balloon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: #204ca8;
  color: #ffffff;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  padding: 5px 8px;
  border-radius: 5px;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .page-training-flow__item-balloon {
    font-size: 1.2rem;
  }
}
.page-training-flow__item-balloon::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4.5px;
  transform: translateY(-50%);
  width: 5px;
  height: 10px;
  background: #204ca8;
  clip-path: polygon(100% 50%, 0 100%, 0 0);
}
.page-training-flow__item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 768px) {
  .page-training-flow__item-content {
    max-width: calc(100% - 180px - 40px);
  }
}
.page-training-flow__item:last-child .page-training-flow__item-content {
  padding-bottom: 0;
}
.page-training-flow__item-label {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .page-training-flow__item-label {
    gap: 10px;
    margin-bottom: 20px;
  }
}
.page-training-flow__item-label-text {
  font-size: 1.2rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
  padding-bottom: 5px;
}
@media (min-width: 768px) {
  .page-training-flow__item-label-text {
    font-size: 1.6rem;
  }
}
.page-training-flow__item-label-num {
  font-size: 2rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-training-flow__item-label-num {
    font-size: 3rem;
  }
}
.page-training-flow__item-title {
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1.25;
  color: #0c2341;
  margin: 0 0 20px 0;
}
@media (min-width: 768px) {
  .page-training-flow__item-title {
    font-size: 3rem;
    margin-bottom: 30px;
  }
}
.page-training-flow__item-text {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.5;
  color: #0c2341;
  margin: 0;
}
@media (min-width: 768px) {
  .page-training-flow__item-text {
    font-size: 1.6rem;
  }
}

/* Page Training Plan */
.page-training-plan {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .page-training-plan {
    padding: 120px 0;
  }
}
.page-training-plan__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-training-plan__h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .page-training-plan__h2 {
    gap: 10px;
    margin-bottom: 60px;
  }
}
.page-training-plan__h2-en {
  font-size: 1.4rem;
  font-weight: 500;
  color: #204ca8;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .page-training-plan__h2-en {
    font-size: 2rem;
  }
}
.page-training-plan__h2-ja {
  font-size: 2.4rem;
  font-weight: 700;
  color: #0c2341;
  line-height: 1.25;
  margin: 0;
}
@media (min-width: 768px) {
  .page-training-plan__h2-ja {
    font-size: 4rem;
  }
}
.page-training-plan__content {
  background: #ffffff;
  box-shadow: 0px 0px 20px 0px rgba(55, 138, 206, 0.1);
  padding: 20px;
}
@media (min-width: 768px) {
  .page-training-plan__content {
    padding: 30px 40px;
  }
}
.page-training-plan__image {
  width: 100%;
}
.page-training-plan__image-img {
  width: 100%;
  height: auto;
  display: block;
}

/* Page Content (Generic page.php) */
.page-content {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .page-content {
    padding: 120px 0;
  }
}
.page-content__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.page-content__body {
  font-size: 1.6rem;
  line-height: 1.75;
  color: #0c2341;
}
.page-content__body h2,
.page-content__body h3,
.page-content__body h4,
.page-content__body h5,
.page-content__body h6 {
  margin: 2em 0 1em;
  line-height: 1.5;
  font-weight: 700;
}
.page-content__body h2:first-child,
.page-content__body h3:first-child,
.page-content__body h4:first-child,
.page-content__body h5:first-child,
.page-content__body h6:first-child {
  margin-top: 0;
}
.page-content__body h2 {
  font-size: 2.4rem;
  border-bottom: 2px solid #204ca8;
  padding-bottom: 0.5em;
}
@media (min-width: 768px) {
  .page-content__body h2 {
    font-size: 3rem;
  }
}
.page-content__body h3 {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .page-content__body h3 {
    font-size: 2.4rem;
  }
}
.page-content__body p {
  margin: 1em 0;
}
.page-content__body ul,
.page-content__body ol {
  margin: 1em 0;
  padding-left: 2em;
}
.page-content__body li {
  margin: 0.5em 0;
}
.page-content__body a {
  color: #204ca8;
  text-decoration: underline;
}
.page-content__body a:hover {
  opacity: 0.7;
}
.page-content__body img {
  max-width: 100%;
  height: auto;
}

/* Archive Content (Generic index.php) */
.archive-content {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .archive-content {
    padding: 120px 0;
  }
}
.archive-content__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.archive-content__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.archive-content__item {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
.archive-content__item:last-child {
  border-bottom: none;
}
.archive-content__item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.archive-content__item-date {
  font-size: 1.4rem;
  color: #666;
}
.archive-content__item-category {
  font-size: 1.2rem;
  color: #ffffff;
  background: #204ca8;
  padding: 2px 8px;
  border-radius: 3px;
  text-decoration: none;
}
.archive-content__item-category:hover {
  opacity: 0.8;
}
.archive-content__item-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .archive-content__item-title {
    font-size: 2.4rem;
  }
}
.archive-content__item-link {
  color: #0c2341;
  text-decoration: none;
}
.archive-content__item-link:hover {
  color: #204ca8;
}
.archive-content__item-excerpt {
  font-size: 1.4rem;
  line-height: 1.75;
  color: #666;
}
@media (min-width: 768px) {
  .archive-content__item-excerpt {
    font-size: 1.6rem;
  }
}
.archive-content__pagination {
  margin-top: 60px;
  text-align: center;
}
.archive-content__pagination .page-numbers {
  display: inline-flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.archive-content__pagination .page-numbers a,
.archive-content__pagination .page-numbers span {
  display: inline-block;
  padding: 8px 15px;
  text-decoration: none;
  color: #0c2341;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
}
.archive-content__pagination .page-numbers a:hover,
.archive-content__pagination .page-numbers span:hover {
  background: #204ca8;
  color: #ffffff;
  border-color: #204ca8;
}
.archive-content__pagination .page-numbers .current {
  background: #204ca8;
  color: #ffffff;
  border-color: #204ca8;
}
.archive-content__empty {
  padding: 60px 20px;
  text-align: center;
  font-size: 1.6rem;
  color: #666;
}

/* Search Content */
.search-content {
  padding: 80px 0;
}
@media (min-width: 768px) {
  .search-content {
    padding: 120px 0;
  }
}
.search-content__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.search-content__count {
  font-size: 1.6rem;
  color: #666;
  margin-bottom: 40px;
}
.search-content__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.search-content__item {
  padding: 20px 0;
  border-bottom: 1px solid #e0e0e0;
}
.search-content__item:last-child {
  border-bottom: none;
}
.search-content__item-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.search-content__item-date {
  font-size: 1.4rem;
  color: #666;
}
.search-content__item-type {
  font-size: 1.2rem;
  color: #ffffff;
  background: #204ca8;
  padding: 2px 8px;
  border-radius: 3px;
}
.search-content__item-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 10px;
}
@media (min-width: 768px) {
  .search-content__item-title {
    font-size: 2.4rem;
  }
}
.search-content__item-link {
  color: #0c2341;
  text-decoration: none;
}
.search-content__item-link:hover {
  color: #204ca8;
}
.search-content__item-excerpt {
  font-size: 1.4rem;
  line-height: 1.75;
  color: #666;
}
@media (min-width: 768px) {
  .search-content__item-excerpt {
    font-size: 1.6rem;
  }
}
.search-content__pagination {
  margin-top: 60px;
  text-align: center;
}
.search-content__pagination .page-numbers {
  display: inline-flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.search-content__pagination .page-numbers a,
.search-content__pagination .page-numbers span {
  display: inline-block;
  padding: 8px 15px;
  text-decoration: none;
  color: #0c2341;
  border: 1px solid #e0e0e0;
  border-radius: 3px;
}
.search-content__pagination .page-numbers a:hover,
.search-content__pagination .page-numbers span:hover {
  background: #204ca8;
  color: #ffffff;
  border-color: #204ca8;
}
.search-content__pagination .page-numbers .current {
  background: #204ca8;
  color: #ffffff;
  border-color: #204ca8;
}
.search-content__empty {
  padding: 60px 20px;
  text-align: center;
}
.search-content__empty-text {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0c2341;
  margin-bottom: 20px;
}
.search-content__empty-suggestion {
  font-size: 1.6rem;
  color: #666;
}

.search-query {
  color: #204ca8;
  font-weight: 700;
}