@charset "UTF-8";
/* * {
  outline: 1px solid red !important;
} */
/*!
  Theme Name: naganuma-nec-theme framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: naganuma-nec-theme framework
  Version: 2.0
  Date: 2026.02.05
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/***************************

foundation/base.scss

***************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}body {
  overflow-x: hidden;
  font-size: 1.6rem;
  color: #28283D;
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
  background: #EEF0F0;
}@media screen and (max-width: 450px) {
  body {
    font-size: 1.3rem;
  }
}a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.3s;
  -moz-transition: 0.3s;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  -ms-transition: 0.3s;
}a:hover {
  text-decoration: none;
  opacity: 0.75;
}a:active,
a:hover {
  outline-width: 0;
}ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}p {
  margin: 0;
}h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}dl,
dt,
dd {
  margin: 0;
  padding: 0;
}figure {
  margin: 0;
}figcaption,
figure,
main {
  display: block;
}article,
aside,
footer,
header,
nav,
section {
  display: block;
}pre {
  font-family: monospace, monospace;
  font-size: 1em;
}b,
strong {
  font-weight: bolder;
}small {
  font-size: 80%;
}img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}button,
input {
  overflow: visible;
}button,
select {
  text-transform: none;
}button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}textarea {
  overflow: auto;
}[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}[hidden] {
  display: none;
}address {
  font-style: normal;
}figure {
  margin: 0;
}table {
  border-collapse: collapse;
}.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}/***************************

layout/_header.scss

***************************/
header {
  padding: 25px 0 20px;
  transition: background-color 0.5s;

  width: 100%;
  overflow-x: hidden; 
  position: relative; 
}header.is-show {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
}.header__top {
  display: flex;
  align-items: center;
  gap: 15px;
}.header__top .btn-type01 {
  max-width: 220px;
  font-size: 1.5rem;
  min-height: 50px;
}.header__logo {
  font-size: 0;
}.header__tel {
  position: relative;
  padding-left: 36px;
  font-family: "Figtree", sans-serif;
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.4;
  margin-left: auto;
}.header__tel:before {
  content: "";
  width: 30px;
  aspect-ratio: 1/1;
  /* background: url(img/common/ico_tel.svg) no-repeat center; */
  /* background-color: #261590; */
  background: url(img/common/ico_tel.svg) no-repeat center, linear-gradient(-45deg, #0098CF, #005CCB) no-repeat center;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: calc(50% - 15px);
}.header__info {
  font-size: 1.2rem;
  line-height: 1.3;
}.header__nav__item {
  font-size: 1.4rem;
  font-weight: bold;
}.header__nav__item a:hover {
  /* color: #261590; */
  color: #005CCB;
  opacity: 1;
}@media screen and (min-width: 1024px) {
  .header .container_l {
    /* width: 1310px; */
    width: 100%;
    max-width: 1310px;
  }  .header__nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 20px;
  }  .header__nav__item {
    flex: 1 1 auto;
    border-left: 1px solid #E5E9EC;
    text-align: center;
  }  .header__nav__item a {
    display: block;
    padding: 0 10px;
  }  .header__nav__item:last-of-type {
    border-right: 1px solid #E5E9EC;
  }
}@media screen and (max-width: 1023px) {
  .header {
    padding: 10px 0 7px;
  }  .header__top {
    justify-content: center;
  }  .header__nav {
    width: 100%;
    max-width: 400px;
    margin-bottom: 22px;
  }  .header__nav__item a {
    display: block;
    font-size: 1.7rem;
    font-weight: bold;
    border-bottom: 1px solid #E2E0EC;
    position: relative;
    padding: 15px 25px 15px 0;
  }  .header__nav__item a:after {
    content: "";
    width: 18px;
    aspect-ratio: 1/1;
    background: url(img/common/arrow_right_white.svg) no-repeat center/8px 6px;
    /* background-color: #261590; */
    background-color: #005CCB;
    border-radius: 5px;
    position: absolute;
    top: calc(50% - 9px);
    right: 3px;
    transition: 0.3s;
    z-index: 2;
  }
}/* Hamburger menu */
.gnav {
  line-height: 1.6;
  margin: 0;
}/* toggle button */
.header__toggleBtn {
  cursor: pointer;
  display: inline-block;
  background: #28283D;
  border: none;
  outline: none;
  position: relative;
  padding: 22px 0 0;
  text-align: center;
  z-index: 9999;
  height: 80px;
  width: 80px;
}.header__toggleBtn__bar {
  position: relative;
  z-index: 9999;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 32px;
  height: 2px;
  background-color: #fff;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}.header__toggleBtn__bar:before,
.header__toggleBtn__bar:after {
  position: absolute;
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background-color: #fff;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}.header__toggleBtn__bar:before {
  top: -10px;
}.header__toggleBtn__bar:after {
  top: 10px;
}input[name=toggle]:checked+.header__toggleBtn__bar {
  background-color: transparent;
}input[name=toggle]:checked+.header__toggleBtn__bar:before {
  transform: translateY(10px) rotate(45deg);
}input[name=toggle]:checked+.header__toggleBtn__bar:after {
  transform: translateY(-10px) rotate(-45deg);
}input[name=toggle] {
  display: none;
}.header__toggleBtn__title:before {
  content: "MENU";
  font-family: "Figtree", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
}.header__toggleBtn:has(input[name=toggle]:checked) .header__toggleBtn__title:before {
  content: "CLOSE";
}.header__sp-menu__btn {
  /* width: calc((100% - 80px) / 3); */
   width: calc((100% - 80px) / 2);
  background: #F6F6F8;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  font-size: 1.3rem;
  font-weight: bold;
  /* color: #261590; */
  color: #005CCB;
  padding-bottom: 12px;
}.header__sp-menu__btn img {
  width: 100%;
  max-width: 20px;
}.header__sp-menu__btn:nth-of-type(n+2) {
  border-left: 2px solid #fff;
}.header__sp-menu__btn.--yellow {
  /* background: #FFD23B; */
  background: linear-gradient(-45deg, #0098CF, #005CCB);
}.header__sp-menu__btn.--yellow span {
  color: #fff;
}@media screen and (min-width: 1024px) {

  .header__toggleBtn,
  .header__sp-menu {
    display: none;
  }  .gnav {
    display: block !important;
    height: inherit !important;
  }
}@media screen and (max-width: 1023px) {
  .header__sp-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    background: #fff;
  }  .gnav {
    position: fixed;
    left: 0;
    bottom: 80px;
    width: 100%;
    height: calc(100vh - 80px);
    /* background: #f5f5fa; */
    background: #F9F9FB;
    /* padding: 25px 20px; */
    padding: 70px 20px 25px;
    z-index: 100;
    transition: 0.5s;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: scroll;
  }  .header:has(input[name=toggle]:not(:checked)) .gnav {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }  .header__sp-menu {
    display: flex;
  }
}@media screen and (max-width: 1023px) {
  .gnav .footer__contact__box {
    display: flex;
    flex-direction: column; 
    gap: 15px;              
  }  .gnav .footer__contact__box__item {
    width: 100%;           
  }  .gnav {
    overflow-x: hidden;
    max-width: 100vw;
  }
}@media screen and (max-width: 330px){
  .header__tel{
    font-size: 3.2rem;
  }
}/***************************

layout/_footer.scss

***************************/
.footer__contact {
  /* background: #FFD23B; */
  background: linear-gradient(-45deg, #0098CF, #005CCB);
  padding: 45px 0;
}.footer__contact__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px 30px;
}.footer__contact__box__item {
  width: calc(50% - 15px);
  max-width: 400px;
  background: #fff;
  text-align: center;
  padding: 20px 15px 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}.footer__contact__box__item .header__tel {
  margin: 0;
}.footer__contact__box__item .btn-type02 {
  min-height: 70px;
  margin-top: 10px;
}.footer__contact__box__item.--yellow {
  /* background: #FFD23B; */
  background: linear-gradient(-45deg, #0098CF, #005CCB);
}.footer__contact__box__item.--yellow .footer__contact__box__hdg {
  color: #fff;
}.footer__contact__box__hdg {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;

}.footer__contact__box__info {
  /* background: #f5f5fa; */
  background: #F9F9FB;
  font-size: 1.2rem;
  line-height: 1.5;
  border-radius: 9999px;
  max-width: 260px;
  width: 100%;
  padding: 10px;
}.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 50px 0 35px;
}.footer__addr {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 15px;
  line-height: 1.5;
  color: #fff;
}.footer__nav {
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 20px 30px;
}.footer__nav__item a {
  display: block;
  background: url(img/common/f_nav_arrow.svg) no-repeat left;
  padding-left: 14px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
}.footer__nav__item a:hover {
  opacity: 1;
  /* color: #261590; */
  color: #005CCB;
}.footer__bottom__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}.footer__copy {
  display: block;
  text-align: right;
  font-size: 0.9rem;
  font-weight: 600;
  color: #B6BAC0;
  font-family: "Figtree", sans-serif;
  white-space: pre-wrap;
  word-break: keep-all;
}footer {
  background: #353A45;
}@media screen and (min-width: 769px) {
  footer .container {
    max-width: 1130px;
  }
}@media screen and (max-width: 768px) {
  .footer__contact {
    padding: 20px 0 30px;
  }  .footer__contact__box__item {
    width: 100%;
  }  .footer__bottom {
    flex-direction: column;
    align-items: center;
    padding: 50px 0 100px;
  }  .footer__logo {
    text-align: center;
  }  .footer__addr {
    text-align: center;
  }  .footer__nav {
    display: none;
  }  .footer__copy {
    text-align: center;
  }
}.totop {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 80px;
  aspect-ratio: 1/1;
  /* background: #261590; */
  background: linear-gradient(-45deg, #0098CF, #0098CF);
}@media screen and (max-width: 1023px) {
  .totop {
    display: none !important;
    bottom: 100px;
  }
}/***************************

layout/_swiper.scss

***************************/
.swiper-button-prev:after {
  content: "";
  width: 30px;
  height: 50px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="31.043" height="51.614" viewBox="0 0 31.043 51.614"><path id="arrow_prev" d="M8.491,0H0L20.832,25,0,50H8.492L29.324,25,8.492,0Z" transform="translate(29.975 50.5) rotate(180)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: #111;
  transition: 0.5s;
}.swiper-button-next:after {
  content: "";
  width: 30px;
  height: 50px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="31.043" height="51.614" viewBox="0 0 31.043 51.614"><path id="arrow_next" d="M18.491,50H10L30.832,25,10,0h8.492L39.324,25,18.492,50Z" transform="translate(-8.932 0.5)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: #111;
  transition: 0.5s;
}@media screen and (max-width: 450px) {

  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 22px;
    height: 38px;
  }
}.swiper-button-prev,
.swiper-button-next {
  color: transparent !important;
}/***************************

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}.lity.lity-opened {
  opacity: 1;
}.lity.lity-closed {
  opacity: 0;
}.lity * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}.lity-loading .lity-loader {
  opacity: 1;
}.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}.lity-content {
  z-index: 9993;
  width: 100%;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}.lity-loading .lity-content,
.lity-closed .lity-content {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8);
  transform: scale(0.8);
}.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}.lity-close:active {
  top: 1px;
}/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}.lity-hide {
  display: none;
}/***************************

layout/_pager.scss

***************************/
.wp-pagenavi {
  margin: 80px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Figtree", sans-serif;
  font-weight: bold;
}.wp-pagenavi a,
.wp-pagenavi span {
  color: #261590;
  font-size: 2rem;
  margin: 5px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #F2F2F9;
  border-radius: 3px;
  opacity: 1;
}.wp-pagenavi .previouspostslink {
  background: url(img/common/arrow_left.svg) no-repeat center;
}.wp-pagenavi .nextpostslink {
  background: url(img/common/arrow_right.svg) no-repeat center;
}.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  width: 35px;
  height: 35px;
  line-height: 35px;
  color: transparent;
  background-color: #F2F2F9;
}.wp-pagenavi span.current {
  color: #fff;
  background: #261590;
  cursor: default;
}.wp-pagenavi a:hover {
  opacity: 0.8;
}@media screen and (max-width: 768px) {
  .wp-pagenavi .extend {
    display: none;
  }  .wp-pagenavi .extend+.larger {
    display: none;
  }
}@media screen and (max-width: 450px) {

  .wp-pagenavi a,
  .wp-pagenavi span {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}.pager {
  margin: 20px 0 100px 0;
  display: flex;
  justify-content: space-between;
  text-align: center;
}.pager a {
  color: #1f1f1f;
  font-size: 14px;
  margin: 5px;
  width: 3.5em;
  height: 3.5em;
  line-height: 3.5;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #f4f4f4;
  opacity: 1;
}.pager .back a {
  width: 200px;
  padding: 0 20px;
  font-weight: bold;
  color: #FFF;
}@media screen and (max-width: 450px) {
  .pager .back a {
    width: auto;
  }
}/***************************

layout/_breadcrumbs.scss

***************************/
.breadcrumbs_wrap {
  border-bottom: 1px solid #CAD2D9;
}.breadcrumbs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 8px 15px 7px;
  font-size: 12px;
  /* background: #fff; */
  max-width: 1130px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}.breadcrumbs a {
  /* color: #261590; */
  color: #005CCB;
  display: block;
}.breadcrumbs a:not(:hover) {
  text-decoration: underline;
}.breadcrumbs__item {
  position: relative;
}.breadcrumbs__item:not(:first-of-type) {
  padding-left: 20px;
}.breadcrumbs__item:not(:first-of-type):after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #D0CFD3;
  border-bottom: 1px solid #D0CFD3;
  position: absolute;
  left: 8px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}.breadcrumbs__item:last-of-type a {
  pointer-events: none;
  text-decoration: none;
  color: #28283D;
}.subpage-title .breadcrumbs {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 2;
}.subpage-title+.breadcrumbs_wrap {
  margin-bottom: 80px;
}/* .subpage-title+.breadcrumbs {
  margin-bottom: 80px;
} */

/* .subpage-title:has(+ .breadcrumbs) {
  margin-bottom: 0;
} */

.subpage-title:has(+ .breadcrumbs_wrap) {
  margin-bottom: 0;
}@media screen and (max-width: 450px) {
  .breadcrumbs {
    font-size: 0.9rem;
  }  .subpage-title+.breadcrumbs_wrap {
    margin-bottom: 50px;
  }  /* .subpage-title+.breadcrumbs {
    margin-bottom: 50px;
  } */
}/***************************

layout/_subpage.scss

***************************/
.subpage-title {
  position: relative;
  background: url(img/merit/page_title_image.webp) no-repeat center/cover;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 45px 20px;
  margin-bottom: 80px;
}@media screen and (max-width: 450px) {
  .subpage-title {
    background: url(img/merit/page_title_image-sp.webp) no-repeat center/cover;
  }
}.subpage-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #005CCB;
  opacity: 0.68;
  z-index: 1;
}.subpage-title.--beginner {
  background: url(img/beginner/page_title_image.webp) no-repeat top/cover;
}.subpage-title.--benefit {
  background: url(img/benefit/page_title_image.webp) no-repeat top 20% center/cover;
}.subpage-title.--merit {
  background: url(img/merit/page_title_image.webp) no-repeat center/cover;
}@media screen and (max-width: 450px) {
  .subpage-title.--beginner {
    background: url(img/beginner/page_title_image-sp.webp) no-repeat top/cover;
  }  .subpage-title.--benefit {
    background: url(img/benefit/page_title_image-sp.webp) no-repeat center/cover;
  }  .subpage-title.--merit {
    background: url(img/merit/page_title_image-sp.webp) no-repeat center/cover;
  }}.subpage-title__hdg {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 5;
  font-size: 4.2rem;
  font-weight: bold;
  line-height: 1.2;
}.subpage-title__hdg__en {
  display: block;
  font-family: "Figtree", sans-serif;
  font-size: 1.8rem;
  margin-top: 15px;
}.subpage-title__caption {
  background: #fff;
  /* color: #261590; */
  color: #005CCB;
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 600;
  border-radius: 2px;
  padding: 3px 15px 4px;
  position: relative;
  z-index: 5;
  margin-top: 13px;
}@media screen and (max-width: 450px) {
  .subpage-title {
    min-height: 220px;
    margin-bottom: 58px;
  }  .subpage-title__hdg {
    font-size: 2.8rem;
  }  .subpage-title__hdg__en {
    font-size: 1.2rem;
  }  .subpage-title__caption {
    font-size: 1.2rem;
  }
}.subpage-imageWrap {
  text-align: center;
}.subpage-imageWrap img {
  border-radius: 5px;
}.subpage-section {
  padding: 40px 0;
}@media screen and (max-width: 450px) {
  .subpage-section {
    padding: 20px 0;
  }
}/***************************

object/component/_heading.scss

***************************/
*:has(> wbr) {
  white-space: pre-wrap;
  word-break: keep-all;
}.hdg-type01 {
  font-size: 4.2rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.2;
  padding-top: 45px;
  background: url(img/common/hdg01_ico.svg) no-repeat top;
  margin-bottom: 45px;
  white-space: pre-wrap;
  word-break: keep-all;
}.hdg-type01.--white,
.hdg-type01.--white .hdg-type01__en {
  color: #fff;
}.hdg-type01.--blue {
  /* color: #261590; */
  color: #005CCB;
  background-image: url(img/common/hdg01_ico_blue.svg);
}.hdg-type01.--blue .hdg-type01__en {
  /* color: #261590; */
  color: #005CCB;
}.hdg-type01+* {
  margin-top: 20px;
}@media screen and (max-width: 450px) {
  .hdg-type01 {
    font-size: 2.3rem;
    margin-bottom: 20px;
    padding-top: 30px;
    background-size: 25px 25px;
  }
}.hdg-type01+* {
  margin-top: 0 !important;
}.hdg-type01__en {
  display: block;
  font-family: "Figtree", sans-serif;
  /* font-size: 1.8rem; */
  font-size: 20px;
  margin-top: 15px;
  /* color: #261590; */
  color: #005CCB;
}@media screen and (max-width: 450px) {
  .hdg-type01__en {
    /* font-size: 1.3rem; */
    font-size: 16px;
  }
}.hdg-type02 {
  position: relative;
  padding: 0 0 0 25px;
  font-size: 3.2rem;
  line-height: 1.4;
  /* color: #261590; */
  color: #005CCB;
  margin-bottom: 30px;
  margin-top: 45px;
}.hdg-type02:before,
.hdg-type02:after {
  content: "";
  width: 5px;
  height: 100%;
  border-radius: 9999px;
  position: absolute;
  top: 0;
}.hdg-type02:before {
  /* background: #261590; */
  background: #005CCB;
  left: 0;
}.hdg-type02:after {
  background: #FFD23B;
  left: 8px;
}@media screen and (max-width: 450px) {
  .hdg-type02 {
    font-size: 2rem;
    margin-bottom: 15px;
    margin-top: 35px;
  }
}.hdg-type02+* {
  margin-top: 0 !important;
}.hdg-type03 {
  /* color: #261590; */
  color: #005CCB;
  font-weight: 800;
  font-size: 2.8rem;
  line-height: 1.4;
  margin-bottom: 5px;
}@media screen and (max-width: 450px) {
  .hdg-type03 {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}.hdg-type03+* {
  margin-top: 0 !important;
}.hdg-type04 {
  /* color: #261590; */
  color: #005CCB;
  font-weight: 800;
  font-size: 2.4rem;
  margin-bottom: 10px;
}@media screen and (max-width: 450px) {
  .hdg-type04 {
    font-size: 1.5rem;
    margin-bottom: 5px;
  }
}.hdg-type04+* {
  margin-top: 0 !important;
}.hdg-balloon {
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  /* background: #261590; */
  background: #005CCB;
  color: #fff;
  border-radius: 9999px;
  padding: 7px 15px 7px 30px;
  font-size: 1.6rem;
  line-height: 1.4;
  margin-bottom: 20px;
}.hdg-balloon:before {
  content: "";
  width: 24px;
  height: 31px;
  background: url(img/common/ico_exclamation@2x.webp) no-repeat center/contain;
  position: absolute;
  bottom: 6px;
  left: 3px;
}.hdg-balloon:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  /* border-top: 9px solid #261590; */
  border-top: 9px solid #005CCB;
  border-bottom: 0;
  position: absolute;
  left: calc(50% - 5px);
  bottom: -8px;
}@media screen and (max-width: 450px) {
  .hdg-balloon {
    font-size: 1.2rem;
    padding: 5px 10px 5px 30px;
    bottom: 4px;
  }  .hdg-balloon:after {
    bottom: -6px;
  }
}.hdg-balloon+* {
  margin-top: 0 !important;
}.hdg-check {
  position: relative;
  font-size: 2.6rem;
  line-height: 1.2;
  font-weight: 900;
  /* color: #261590; */
  color: #005CCB;
  padding-left: 35px;
  margin-bottom: 6px;
  margin-top: 30px;
}.hdg-check:after {
  content: "";
  width: 27px;
  height: 28px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="23.732" height="19" viewBox="0 0 23.732 19"><path id="check" d="M501.911,600.578a2.46,2.46,0,0,0-1.23-.324,2.342,2.342,0,0,0-1.8.8L488.571,613.1l-4.436-4.336a2.4,2.4,0,0,0-1.67-.654,2.454,2.454,0,0,0-1.4.428,1.956,1.956,0,0,0-.855,1.432,1.89,1.89,0,0,0,.581,1.5l6.271,6.129a2.4,2.4,0,0,0,1.669.654h.086a2.345,2.345,0,0,0,1.717-.8l11.943-13.981a1.862,1.862,0,0,0,.427-1.522A2,2,0,0,0,501.911,600.578Z" transform="translate(-479.708 -599.754)" stroke="%23ffd23b" stroke-linecap="round" stroke-linejoin="round" stroke-width="1"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: #FFD23B;
  transition: 0.5s;
  position: absolute;
  top: 2px;
  left: 0;
  z-index: 1;
}@media screen and (max-width: 450px) {
  .hdg-check {
    font-size: 2rem;
    margin-bottom: 6px;
    padding-left: 30px;
  }  .hdg-check:after {
    width: 20px;
    height: 18px;
    top: 3px;
  }
}.hdg-check__small {
  font-size: 2rem;
  display: inline-block;
}@media screen and (max-width: 450px) {
  .hdg-check__small {
    font-size: 1.6rem;
  }
}.hdg-marker {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.5;
  /* color: #261590; */
  color: #005CCB;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}.hdg-marker__inner {
  background: linear-gradient(to top, #FFD23B 8px, transparent 8px);
}@media screen and (max-width: 450px) {
  .hdg-marker {
    font-size: 2rem;
  }  .hdg-marker__inner {
    background: linear-gradient(to top, #FFD23B 5px, transparent 5px);
  }
}/***************************

object/component/_box.scss

***************************/
.container {
  max-width: 1130px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}.container_l {
  max-width: 1310px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}/* .image-wrap {
  margin-top: 40px;
} */

.image-wrap img {
  border-radius: 5px;
}/* .image-wrap+* {
  margin-top: 20px;
} */

.image-wrap.--2column {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px 10px;
}.image-wrap.--2column img {
  max-width: calc(50% - 5px);
}@media screen and (max-width: 450px) {
  .image-wrap+* {
    margin-top: 10px;
  }
}/* .box-contents01_list {
  display: grid;
  gap: 15px;
}@media screen and (min-width: 769px) {
  .box-contents01_list {
    grid-template-columns: 1fr 1fr;
    gap: 30px 15px;
  }
} */

.box-contents01 {
  /* background: #f5f5fa; */
  background: #F6F7F8;
  border-radius: 12px;
  padding: 20px 25px;
}.box-contents01+.box-contents01 {
  margin-top: 15px;
}@media screen and (min-width: 451px) {
  .box-contents01+.box-contents01 {
    margin-top: 30px;
  }
}.box-contents01__image {
  text-align: center;
}.box-contents01__image img {
  border-radius: 5px;
}.box-contents01__en {
  font-family: "Figtree", sans-serif;
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  width: 100%;
  text-align: center;
  /* -webkit-text-stroke: 1px #261590; */
  -webkit-text-stroke: 0.5px #005CCB;
  color: rgba(0, 0, 0, 0);
  text-align: center;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}.accordion01 {
  /* border: 2px solid #261590; */
  border: 2px solid #005CCB;
  border-radius: 6px;
  overflow: hidden;
}.accordion01+.accordion01 {
  margin-top: 12px;
}.accordion01__title {
  font-size: 1.8rem;
  background: url(img/common/accordion_ico_box.svg) no-repeat top 50% right 17px;
  /* background-color: #261590; */
  background-color: #005CCB;
  color: #fff;
  line-height: 1.4;
  padding: 15px 45px 15px 20px;
  cursor: pointer;
  position: relative;
}.accordion01__title:before,
.accordion01__title:after {
  content: "";
  width: 10px;
  height: 2px;
  /* background: #261590; */
  background: #005CCB;
  border-radius: 999px;
  position: absolute;
  top: calc(50% - 1px);
  right: 23px;
  transition: 0.5s;
}.accordion01__title:not(.is-open):after {
  transform: rotate(90deg);
}.accordion01__title__en {
  font-family: "Figtree", sans-serif;
  font-size: 1rem;
  display: block;
  margin-top: 2px;
}.accordion01__hdg {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.4;
  /* color: #261590; */
  color: #005CCB;
  margin-top: 12px;
  margin-bottom: 3px;
}.accordion01__contents {
  padding: 20px;
  background: #fff;
}.accordion01__contents>*:first-child {
  margin-top: 0;
}@media screen and (min-width: 451px) {
  .accordion01__contents {
    padding: 30px 40px;
  }
}.accordion01__contents__image img {
  border-radius: 5px;
}.accordion01__contents__image:nth-child(n+2) {
  margin-top: 30px;
}.accordion01__contents__image+.hdg-check {
  margin-top: 10px;
}@media screen and (min-width: 451px) {
  .accordion01__contents__image+.hdg-check {
    margin-top: 15px;
  }
}.addr-box {
  /* background: #f5f5fa;
  border: 1px solid #E6E6F1; */
  background: #fff;
  border: 1px solid #E6E6F1;
  border-radius: 3px;
  padding: 15px 20px;
  /* min-width: 280px; */
  width: 100%;
}@media screen and (max-width: 450px) {
  .addr-box {
    font-size: 1.1rem;
  }
}.addr-box__hdg {
  font-size: 2rem;
  font-weight: 800;
  /* color: #261590; */
  color: #005CCB;
}@media screen and (min-width: 451px) {
  .addr-box__hdg {
    font-size: 3rem;
  }
}/***************************

object/component/_button.scss

***************************/
.btn-type01 {
  width: fit-content;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(-45deg, #0098CF, #005CCB);

  color: #fff;
  /* background: #FFD23B;
  color: #261590; */
  position: relative;
  min-height: 78px;
  border-radius: 9999px;
  padding: 10px 50px 10px 35px;
  text-align: left;
  transition: 0.6s;

  background: linear-gradient(90deg, #0098CF, #005CCB, #0098CF);
  background-size: 200% 100%;
  background-position: 0% 0%;
  transition: background-position 0.6s ease;
  will-change: background-position;
}.btn-type01:after {
  content: "";
  width: 18px;
  height: 14px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18.464" height="15.098" viewBox="0 0 18.464 15.098"><path id="arrow_right" d="M550.686,148.293a1.113,1.113,0,0,0-1.574,1.574l3.986,3.986H541.216a1.113,1.113,0,1,0,0,2.227H553.1l-3.986,3.986a1.113,1.113,0,0,0,1.574,1.574l6.674-6.674Z" transform="translate(-539.603 -147.37)" stroke="%23261590" stroke-linecap="round" stroke-width="1"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  /* background-color: #261590; */
  background-color: #fff;
  transition: 0.5s;
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  z-index: 1;
}.btn-type01:hover {
  /* background: #005CCB; */
  background-position: 100% 0%;
  color: #fff;
  /* background: #261590;
  color: #FFD23B; */
  opacity: 1;
}.btn-type01:hover:after {
  /* background-color: #FFD23B; */
  background-color: #fff;
}.btn-type01.--back {
  padding: 10px 35px 10px 50px;
}.btn-type01.--back:after {
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18.464" height="15.098" viewBox="0 0 18.464 15.098"><path id="arrow_right" d="M546.777,148.293a1.113,1.113,0,0,1,1.574,1.574l-3.986,3.986h11.881a1.113,1.113,0,1,1,0,2.227H544.366l3.986,3.986a1.113,1.113,0,0,1-1.574,1.574l-6.674-6.674Z" transform="translate(-539.396 -147.37)" fill="%23261590" stroke="%23261590" stroke-linecap="round" stroke-width="1"/></svg>');
  left: 25px;
  right: 0;
}@media screen and (max-width: 450px) {
  .btn-type01 {
    min-height: 64px;
    font-size: 1.8rem;
    min-width: 240px;
    max-width: 100%;
    padding: 10px 43px 10px 20px;
  }  .btn-type01:after {
    right: 17px;
  }  .btn-type01.--back {
    padding: 10px 20px 10px 43px;
  }  .btn-type01.--back:after {
    left: 17px;
  }
}@media screen and (min-width: 451px) {
  .btn-type01 {
    min-width: 300px;
  }  .btn-type01.--back {
    justify-content: flex-end;
  }
}.btn-type02 {
  width: fit-content;
  font-size: 2rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  /* background: #261590;
  border: 1px solid #261590; */
  background: #fff;
  border: 1px solid #0061CC;
  color: #0061CC;
  /* color: #fff; */
  position: relative;
  min-height: 78px;
  border-radius: 9999px;
  padding: 10px 45px 10px 35px;
  text-align: left;
}.btn-type02:after {
  content: "";
  width: 18px;
  height: 14px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18.464" height="15.098" viewBox="0 0 18.464 15.098"><path id="arrow_right" d="M550.686,148.293a1.113,1.113,0,0,0-1.574,1.574l3.986,3.986H541.216a1.113,1.113,0,1,0,0,2.227H553.1l-3.986,3.986a1.113,1.113,0,0,0,1.574,1.574l6.674-6.674Z" transform="translate(-539.603 -147.37)" stroke="%23fff" stroke-linecap="round" stroke-width="1"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  /* background-color: #fff; */
  background: #0061CC;
  transition: 0.5s;
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  z-index: 1;
}.btn-type02:hover {
  background: #0061CC;
  color: #fff;
  /* background: #fff;
  color: #261590; */
  opacity: 1;
}.btn-type02:hover:after {
  /* background-color: #261590; */
  background-color: #fff;
}@media screen and (max-width: 450px) {
  .btn-type02 {
    min-height: 64px;
    font-size: 1.8rem;
    max-width: 100%;
    min-width: 240px;
    padding: 10px 43px 10px 20px;
  }  .btn-type02:after {
    right: 17px;
  }
}@media screen and (min-width: 451px) {
  .btn-type02 {
    min-width: 300px;
  }
}.btn-type03 {
  width: fit-content;
  font-size: 2rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  /* background: #261590;
  border: 1px solid #261590; */
  background: #fff;
  border: 1px solid #21214B;
  color: #21214B;
  /* color: #fff; */
  position: relative;
  min-height: 78px;
  border-radius: 9999px;
  padding: 10px 45px 10px 35px;
  text-align: left;
}.btn-type03:after {
  content: "";
  width: 18px;
  height: 14px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18.464" height="15.098" viewBox="0 0 18.464 15.098"><path id="arrow_right" d="M550.686,148.293a1.113,1.113,0,0,0-1.574,1.574l3.986,3.986H541.216a1.113,1.113,0,1,0,0,2.227H553.1l-3.986,3.986a1.113,1.113,0,0,0,1.574,1.574l6.674-6.674Z" transform="translate(-539.603 -147.37)" stroke="%23fff" stroke-linecap="round" stroke-width="1"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  /* background-color: #fff; */
  background: #21214B;
  transition: 0.5s;
  position: absolute;
  top: calc(50% - 7px);
  right: 25px;
  z-index: 1;
}.btn-type03:hover {
  background: #21214B;
  color: #fff;
  /* background: #fff;
  color: #261590; */
  opacity: 1;
}.btn-type03:hover:after {
  /* background-color: #261590; */
  background-color: #fff;
}@media screen and (max-width: 450px) {
  .btn-type03 {
    min-height: 64px;
    font-size: 1.8rem;
    max-width: 100%;
    min-width: 240px;
    padding: 10px 43px 10px 20px;
  }  .btn-type03:after {
    right: 17px;
  }
}@media screen and (min-width: 451px) {
  .btn-type03 {
    min-width: 300px;
  }
}.link-type01 {
  text-decoration: underline;
  color: #261590;
  display: block;
  position: relative;
  font-weight: 800;
  padding-left: 15px;
}.link-type01:before {
  content: "";
  width: 10px;
  height: 12px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="6.903" height="8" viewBox="0 0 6.903 8"><path id="arrow" d="M-2141.567,16h-1.749l3.305-3.5-3.306-3.5h1.75l3.306,3.5-3.305,3.5Z" transform="translate(2144.477 -8.5)" stroke="rgba(0,0,0,0)" stroke-miterlimit="10" stroke-width="1"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: #261590;
  transition: 0.3s;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: 1;
}.link-type01:hover {
  opacity: 1;
  color: #C7C5D7;
}.link-type01:hover:before {
  background: #C7C5D7;
}@media screen and (max-width: 450px) {
  .link-type01 {
    font-size: 1.3rem;
  }  .link-type01:before {
    content: "";
    width: 7px;
    height: 8px;
    top: 8px;
  }
}.link-pdf {
  text-decoration: underline;
  color: #261590;
  display: block;
  position: relative;
  font-weight: 800;
  padding-left: 25px;
}.link-pdf:before {
  content: "";
  width: 17px;
  height: 21px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="12.612" height="15.5" viewBox="0 0 12.612 15.5"><g id="pdf" transform="translate(-47.706)"><path id="path1" d="M57.718,0H52.169l-.282.282-3.9,3.9-.282.282V12.9a2.6,2.6,0,0,0,2.6,2.6h7.411a2.6,2.6,0,0,0,2.6-2.6V2.6A2.6,2.6,0,0,0,57.718,0Zm1.637,12.9a1.637,1.637,0,0,1-1.637,1.638H50.306A1.637,1.637,0,0,1,48.669,12.9V4.862H51.2A1.365,1.365,0,0,0,52.568,3.5V.963h5.15A1.637,1.637,0,0,1,59.355,2.6Z"/><path id="path2" d="M135.859,252.785h-.864a.247.247,0,0,0-.263.267v2.233a.3.3,0,1,0,.6,0v-.678a.022.022,0,0,1,.025-.025h.5a.9.9,0,1,0,0-1.8Zm-.037,1.275h-.46a.022.022,0,0,1-.025-.025v-.7a.022.022,0,0,1,.025-.025h.46a.377.377,0,1,1,0,.752Z" transform="translate(-84.391 -245.132)"/><path id="path3" d="M220.562,252.785H219.9a.247.247,0,0,0-.263.267v2.266a.244.244,0,0,0,.263.263h.662c.6,0,.966-.189,1.114-.646a3.476,3.476,0,0,0,0-1.505C221.528,252.974,221.158,252.785,220.562,252.785Zm.535,1.941c-.07.222-.271.317-.551.317h-.279a.022.022,0,0,1-.025-.025v-1.669a.022.022,0,0,1,.025-.025h.279c.28,0,.481.095.551.317a3.028,3.028,0,0,1,0,1.086Z" transform="translate(-166.726 -245.132)"/><path id="path4" d="M309.275,252.785h-1.357a.247.247,0,0,0-.263.267v2.233a.3.3,0,1,0,.6,0v-.8a.022.022,0,0,1,.025-.025h.79a.26.26,0,1,0,0-.518h-.79a.022.022,0,0,1-.025-.025v-.588a.022.022,0,0,1,.025-.025h.991a.262.262,0,1,0,0-.522Z" transform="translate(-252.079 -245.132)"/>  </g></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: #261590;
  transition: 0.3s;
  position: absolute;
  top: 6px;
  left: 0;
  z-index: 1;
}.link-pdf:hover {
  opacity: 1;
  color: #C7C5D7;
}.link-pdf:hover:before {
  background: #C7C5D7;
}@media screen and (max-width: 450px) {
  .link-pdf {
    font-size: 1.3rem;
    padding-left: 20px;
  }  .link-pdf:before {
    content: "";
    width: 13px;
    height: 16px;
    top: 5px;
  }
}.anchor {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 20px;
}@media screen and (min-width: 451px) {
  .anchor {
    justify-content: center;
    margin-bottom: 40px;
  }
}.anchor__item a {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 60px;
  /* border: 2px solid #261590; */
  border: 2px solid #005CCB;
  color: #005CCB;
  background: #fff;
  border-radius: 9999px;
  padding: 10px 20px 10px 35px;
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.4;
}.anchor__item a:before {
  content: "";
  width: 18px;
  height: 14px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="8.554" height="10.465" viewBox="0 0 8.554 10.465"><path id="arrow" d="M546.15,148.154a.636.636,0,1,0-.9.9l2.278,2.278h-6.789a.636.636,0,1,0,0,1.272h6.789l-2.278,2.278a.636.636,0,0,0,.9.9l3.814-3.814Z" transform="translate(156.218 -539.853) rotate(90)" stroke="%23261590" stroke-linecap="round" stroke-width="0.5"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  /* background-color: #261590; */
  background-color: #005CCB;
  transition: 0.5s;
  position: absolute;
  top: calc(50% - 6px);
  left: 16px;
}.anchor__item a:hover {
  color: #fff;
  /* background: #261590; */
  background: #005CCB;
  opacity: 1;
}.anchor__item.current a {
  color: #fff;
  /* background: #261590; */
  background: #005CCB;
  opacity: 1;
}.anchor__item a:hover:before {
  background: #fff;
}.anchor__item.current a:before {
  color: #fff;
  background: #261590;
  opacity: 1;
}@media screen and (min-width: 451px) {
  .anchor__item a {
    min-width: 175px;
    padding-left: 40px;
  }
}@media screen and (max-width: 450px) {
  .anchor__item {
    width: calc(50% - 5px);
  }  .anchor__item a {
    min-height: 40px;
    font-size: 1.3rem;
    padding: 10px 20px 10px 30px;
  }  .anchor__item a:before {
    width: 10px;
    height: 8px;
    top: calc(50% - 4px);
    left: 16px;
  }
}/***************************

object/component/_list.scss

***************************/
/* .list-box {
  display: grid;
  gap: 12px;
}@media screen and (min-width: 769px) {
  .list-box {
    grid-template-columns: 1fr 1fr;
  }
} */

.list-box__item {
  /* background: #f5f5fa; */
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
}.list-box__item:nth-of-type(n+2) {
  margin-top: 12px;
}.list-box__hdg {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.4;
  /* color: #261590; */
  color: #005CCB;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
}.list-box__hdg:before {
  content: "";
  width: 18px;
  height: 18px;
  background: url(img/common/ico_list_box.svg) no-repeat center/contain;
  position: absolute;
  top: 4px;
  left: 0;
  z-index: 1;
}.list-box__hdg+.image-wrap {
  margin-top: 0;
}@media screen and (max-width: 450px) {
  .list-box__hdg {
    font-size: 1.8rem;
    line-height: 1.3;
    padding-left: 22px;
  }  .list-box__hdg:before {
    width: 15px;
    height: 15px;
  }
}.list-flow {
  counter-reset: flow;
}.list-flow__item {
  counter-increment: flow;
  /* background: #f5f5fa; */
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  position: relative;
}.list-flow__item:nth-of-type(n+2) {
  margin-top: 46px;
}.list-flow__item:nth-of-type(n+2):before {
  content: "";
  width: 23px;
  height: 20px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="22.857" height="20" viewBox="0 0 22.857 20"><path id="triangle" d="M10.126,2.279a1.5,1.5,0,0,1,2.6,0l8.844,15.477A1.5,1.5,0,0,1,20.272,20H2.585a1.5,1.5,0,0,1-1.3-2.244Z" transform="translate(22.857 20) rotate(180)"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  background-color: #261590;
  transition: 0.5s;
  position: absolute;
  top: -32px;
  left: calc(50% - 12px);
  z-index: 1;
}.list-flow__image {
  position: relative;
  text-align: center;
  margin-bottom: 28px;
}.list-flow__image:before {
  content: counter(flow, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: "Figtree", sans-serif;
  font-size: 6rem;
  font-weight: 800;
  line-height: 1;
  width: 100%;
  text-align: center;
  -webkit-text-stroke: 1px #261590;
  color: rgba(0, 0, 0, 0);
  position: absolute;
  left: 0;
  z-index: 5;
  width: 100%;
  text-align: left;
  bottom: -25px;
  padding-left: 10px;
}.list-flow__image img {
  border-radius: 5px;
}.list-flow__note {
  font-size: 1.3rem;
}@media screen and (max-width: 450px) {
  .list-flow__note {
    font-size: 1.1rem;
  }
}.dl-type01 {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.5rem;
  line-height: 1.6;
}.dl-type01 dt {
  width: 200px;
  /* background: #261590; */
  background: #005CCB;
  color: #fff;
  text-align: center;
  font-weight: 800;
  border-bottom: 1px solid #EAEDF6;
  padding: 10px;
}.dl-type01 dt:last-of-type {
  /* border-color: #261590; */
  background-color: #005CCB;
}.dl-type01 dd {
  width: calc(100% - 200px);
  border-bottom: 1px solid #EAEDF6;
  border-right: 1px solid #EAEDF6;
  padding: 10px 15px;
  background: #fff;
}.dl-type01 dd:first-of-type {
  border-top: 1px solid #EAEDF6;
}@media screen and (max-width: 450px) {
  .dl-type01 {
    font-size: 1.2rem;
  }  .dl-type01 dt {
    width: 80px;
    padding: 7px 10px;
  }  .dl-type01 dd {
    width: calc(100% - 80px);
    padding: 7px 10px;
  }
}/***************************

object/component/_form.scss

***************************/
.form__dt {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 5px;
}.form__dt:nth-of-type(n+2) {
  margin-top: 22px;
}@media screen and (min-width: 451px) {
  .form__dt {
    font-size: 1.8rem;
  }
}.form__req {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  /* background: #261590;
  border: 1px solid #261590; */
  background: #005CCB;
  border: 1px solid #005CCB;
  border-radius: 2px;
  padding: 0px 4px;
  vertical-align: text-bottom;
  margin: 0 10px;
}@media screen and (min-width: 451px) {
  .form__req {
    font-size: 1.3rem;
    padding: 0 10px;
    vertical-align: middle;
  }
}.form__opt {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 800;
  /* color: #261590;
  border: 1px solid #261590; */
  color: #005CCB;
  border: 1px solid #005CCB;
  background: #fff;
  border-radius: 2px;
  padding: 0px 5px;
  vertical-align: text-bottom;
  margin: 0 10px;
}@media screen and (min-width: 451px) {
  .form__opt {
    font-size: 1.3rem;
    padding: 0 10px;
    vertical-align: middle;
  }
}.form-privacy {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
}.form-privacy a {
  /* color: #261590; */
  color: #005CCB;
  font-weight: 800;
}.form__submit {
  border: none;
  background: none;
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
}[type=text],
[type=tel],
textarea {
  width: 100%;
  /* background: #f5f5fa; */
  background: #fff;
  /* border: 1px solid #E6E6F1; */
  border: 1px solid #fff;
  font-size: 1.3rem;
  padding: 12px 15px;
  border-radius: 3px;
}@media screen and (min-width: 451px) {

  [type=text],
  [type=tel],
  textarea {
    font-size: 1.6rem;
  }
}[type=text]:focus-visible,
[type=tel]:focus-visible,
textarea:focus-visible {
  outline-color: #261590;
}.wpcf7-list-item {
  padding: 10px 0;
  display: inline-block;
  margin-left: 0 !important;
}.wpcf7-list-item input[type=radio],
.wpcf7-list-item input[type=checkbox] {
  display: none;
}.wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding: 0 0 0 30px;
  cursor: pointer;
  margin-right: 30px;
  line-height: 1.6;
  font-size: 16px;
  font-size: 1.6rem;
  display: inline-block;
}.wpcf7-list-item .wpcf7-list-item-label::after,
.wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  transition: all 0.3s;
}.wpcf7-list-item .wpcf7-list-item-label::after {
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  /* background: #F2F2F9; */
  background: #fff;
  border: 1px solid #CFCFDD;
  border-radius: 3px;
}.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::after {
  border-radius: 50%;
}.wpcf7-radio .wpcf7-list-item .wpcf7-list-item-label::before {
  left: 4px;
  top: 7px;
  width: 12px;
  height: 12px;
  /* background: #261590; */
  background: #005CCB;
  opacity: 0;
  transform: scale(0);
  z-index: 1;
  border-radius: 50%;
}.wpcf7-checkbox .wpcf7-list-item .wpcf7-list-item-label::before {
  left: 2px;
  top: 4px;
  width: 20px;
  height: 16px;
  background: url(img/common/checkbox.svg) no-repeat center/contain;
  opacity: 0;
  transform: scale(0);
  z-index: 1;
}.wpcf7-list-item input:checked+.wpcf7-list-item-label::before {
  opacity: 1;
  transform: scale(1);
}/***************************

object/object/project/_home.scss

***************************/
.top-mv__swiper-slide img {
  width: 100%;
}.top-mv__newsWrap {
  transition: 0.3s;
  /* border-bottom: 1px solid #ECECEC; */
  border-bottom: 1px solid #CAD2D9;
}.top-mv__newsWrap:has(.top-mv__news:hover) {
  background: #ECECEC;
}.top-mv__news {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  max-width: 1130px;
  margin: 0 auto;
  padding: 20px 40px 20px 15px;
  position: relative;
}.top-mv__news:after {
  content: "";
  width: 18px;
  height: 14px;
  mask-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="18.464" height="15.098" viewBox="0 0 18.464 15.098"><path id="arrow_right" d="M550.686,148.293a1.113,1.113,0,0,0-1.574,1.574l3.986,3.986H541.216a1.113,1.113,0,1,0,0,2.227H553.1l-3.986,3.986a1.113,1.113,0,0,0,1.574,1.574l6.674-6.674Z" transform="translate(-539.603 -147.37)" stroke="%23261590" stroke-linecap="round" stroke-width="1"/></svg>');
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  /* background-color: #261590; */
  background-color: #006ECC;
  transition: 0.5s;
  position: absolute;
  top: calc(50% - 7px);
  right: 15px;
  z-index: 1;
}.top-mv__news:hover {
  opacity: 1;
}.top-mv__news:hover .top-mv__news__hdg {
  text-decoration: underline;
}.top-mv__news__date {
  font-family: "Figtree", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  color: #261590;
  flex: 0 0 auto;
}.top-mv__news__cat {
  min-width: 85px;
  display: inline-block;
  border: 1px solid #261590;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  color: #261590;
  flex: 0 0 auto;
}.top-mv__news__hdg {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}@media screen and (max-width: 450px) {
  .top-mv__news {
    font-size: 1.3rem;
  }  .top-mv__news__date {
    font-size: 0.9rem;
  }  .top-mv__news__cat {
    min-width: 65px;
    font-size: 0.9rem;
  }
}.top-sponsor {
  padding: 50px 0;
}.top-sponsor__hdg {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 20px;
}.top-sponsor__hdg__en {
  font-family: "Figtree", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  display: block;
  /* color: #261590; */
  color: #005CCB;
}.top-sponsor__list {
  display: flex;
  justify-content: center;
  gap: 8px 20px;
}.top-sponsor__list__item a,
.top-sponsor__list__item>span {
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
}.top-sponsor__list__item a:hover {
  border-color: #261590;
  opacity: 1;
}@media screen and (max-width: 450px) {
  .top-sponsor {
    padding: 35px 0;
  }  .top-sponsor__hdg {
    font-size: 2rem;
  }  .top-sponsor__hdg__en {
    font-size: 1rem;
  }  .top-sponsor__list {
    gap: 8px 15px;
  }  .top-sponsor__list__item {
    max-width: 200px;
  }  .top-sponsor__list__item a,
  .top-sponsor__list__item>span {
    height: 60px;
    padding: 5px;
  }  .top-sponsor__list__item img {
    max-height: 30px;
  }
}.top-about {
  /* background: #261590; */
  background: linear-gradient(-45deg, #0098CF, #005CCB);
  padding: 80px 0 110px;
  color: #fff;
  position: relative;
  padding-bottom: calc(14.2vw + 110px);

}.top-about::after {
  content: "";
  background: url(img/top/member_top.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom center;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  text-align: center;
  pointer-events: none;
}.top-about__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}.top-about__box__image {
  width: 50.9%;
}.top-about__box__image img {
  border-radius: 5px;
}.top-about__box__text {
  width: 44.5%;
}.top-about__box__hdg {
  margin-bottom: 25px;
}.top-about__box__hdg__separator {
  display: block;
  width: fit-content;
  /* color: #261590; */
  color: #006ECC;
  background: #fff;
  border-radius: 3px;
  line-height: 60px;
  font-size: min(3.4693877551vw, 3.4rem);
  font-weight: bold;
  padding: 0 14px;
}.top-about__box__hdg__separator:nth-child(n+2) {
  margin-top: 10px;
}@media screen and (max-width: 768px) {
  .top-about__box {
    justify-content: center;
    gap: 25px;
  }  .top-about__box__image {
    width: 100%;
    max-width: 560px;
  }  .top-about__box__text {
    width: 100%;
    max-width: 560px;
  }  .top-about__box__hdg {
    margin-bottom: 15px;
  }  .top-about__box__hdg__separator {
    font-size: min(6.6666666667vw, 2.5rem);
    line-height: 1.8;
  }
}@media screen and (max-width: 450px) {
  .top-about {
    padding: 30px 0 40px;

    padding-bottom: calc(14.2vw + 40px);
  }
}.top-member {
  padding: 14.2vw 0;
  padding-top: 0;
  /* background: url(img/top/member_top.webp) no-repeat top/100% auto, url(img/top/member_bottom.webp) no-repeat bottom -1px left 50%/100% auto; */
  background: url(img/top/member_bottom.webp) no-repeat bottom -1px left 50%/100% auto, linear-gradient(#353A45, #233B6F);
  /* background-color: #3B4352; */

  color: #fff;
  overflow-x: hidden;
}.top-member__swiper {
  position: relative;
  margin-bottom: 50px;
}.top-member__swiper .swiper-button-prev,
.top-member__swiper .swiper-button-next {
  top: calc(50% - 50px);
}.top-member__swiper .swiper-button-prev:after,
.top-member__swiper .swiper-button-next:after {
  background-color: #fff;
}.top-member__swiper .swiper-button-prev {
  left: calc(50% - 225px);
}.top-member__swiper .swiper-button-next {
  right: calc(50% - 225px);
}.top-member__swiper-slide {
  max-width: 340px;
}.top-member__swiper-slide:hover {
  opacity: 1;
}.top-member__swiper-slide:hover .top-member__image img {
  transform: scale(1.1);
}.top-member__swiper-slide:hover .top-member__image:after {
  animation: arrow_slide 0.3s both;
}@keyframes arrow_slide {
  0% {
    background-position: 50% 50%;
  }  50% {
    background-position: 200% 50%;
  }  50.1% {
    background-position: -200% 50%;
  }  100% {
    background-position: 50% 50%;
  }
}.top-member__image {
  position: relative;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;

  aspect-ratio: 340/420;
}.top-member__image img {
  transition: 0.3s;

  width: 100%;
  height: 100%;
  object-fit: cover;
}.top-member__image:before {
  content: "";
  width: 100%;
  height: 100%;
  /* background: linear-gradient(-30deg, #261590, transparent 40%); */
  background: linear-gradient(-30deg, #005CCB, transparent 40%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}.top-member__image:after {
  content: "";
  width: 42px;
  aspect-ratio: 1/1;
  background: url(img/common/arrow_right_blue.svg) no-repeat center;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  bottom: 17px;
  right: 22px;
  transition: 0.3s;
  z-index: 2;
}.top-member__hdg {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 10px;
}.top-member__profile {
  font-size: 1.2rem;
  font-size: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
}.top-member__job {
  display: inline-block;
  width: fit-content;
  border: 1px solid #fff;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 1.1rem;
  line-height: 23px;
}@media screen and (max-width: 450px) {
  .top-member {
    /* background-image: url(img/top/member_top_sp.webp), url(img/top/member_bottom_sp.webp); */
    background-image: url(img/top/member_bottom_sp.webp), linear-gradient(#353A45, #233B6F);
  }  .top-member__swiper-slide {
    max-width: 265px;
  }  .top-member__swiper .swiper-button-prev,
  .top-member__swiper .swiper-button-next {
    top: calc(50% - 65px);
  }  .top-member__swiper .swiper-button-prev {
    left: calc(50% - 169px);
  }  .top-member__swiper .swiper-button-next {
    right: calc(50% - 169px);
  }  .top-member__image:after {
    content: "";
    width: 30px;
    background-size: 11px 9px;
    bottom: 14px;
    right: 14px;
  }
}.top-contactLinkWrap {
  padding: 60px 0;
}.top-contactLink {
  display: flex;
  flex-direction: row-reverse;
  /* background: #FFD23B; */
  background: linear-gradient(45deg, #0098CF, #005CCB);
  border-radius: 20px;
  overflow: hidden;
  /* color: #261590; */
  color: #fff;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}.top-contactLink__image {
  width: 43.4%;
}.top-contactLink__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}.top-contactLink__text {
  width: 56.6%;
  align-self: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 2.7rem;
  font-weight: 900;
  line-height: 1.5;
  padding: 20px;
}@media screen and (max-width: 768px) {
  .top-contactLink {
    flex-direction: column;
  }  .top-contactLink__image {
    width: 100%;
  }  .top-contactLink__text {
    width: 100%;
    padding: 25px;
  }
}@media screen and (max-width: 450px) {
  .top-contactLinkWrap {
    padding: 50px 0;
  }  .top-contactLink__text {
    font-size: 2.2rem;
  }
}.top-achievements {
  overflow-x: hidden;
  padding: 70px 0 140px;
}.top-achievements__swiper {
  position: relative;
  margin-bottom: 50px;
}.top-achievements__swiper .swiper-button-prev,
.top-achievements__swiper .swiper-button-next {
  top: calc(50% - 50px);
}.top-achievements__swiper .swiper-button-prev:after,
.top-achievements__swiper .swiper-button-next:after {
  /* background-color: #261590; */
  background: linear-gradient(#0098CF, #005CCB);
}.top-achievements__swiper .swiper-button-prev {
  left: calc(50% - 225px);
}.top-achievements__swiper .swiper-button-next {
  right: calc(50% - 225px);
}.top-achievements__swiper-slide {
  max-width: 330px;
}.top-achievements__swiper-slide:hover a {
  opacity: 1;
}.top-achievements__swiper-slide:hover .top-achievements__image img {
  transform: scale(1.1);
}.top-achievements__swiper-slide:hover .top-achievements__image:after {
  animation: arrow_slide 0.3s both;
}.top-achievements__image {
  position: relative;
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}.top-achievements__image img {
  transition: 0.3s;
}.top-achievements__image:after {
  content: "";
  width: 42px;
  aspect-ratio: 1/1;
  background: url(img/common/arrow_right_blue.svg) no-repeat center;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  bottom: 17px;
  right: 22px;
  transition: 0.3s;
  z-index: 2;
}.top-achievements__hdg {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 10px;
}.top-achievements__profile {
  font-size: 1.2rem;
  font-size: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
}.top-achievements__cat {
  display: inline-block;
  width: fit-content;
  border: 1px solid #005CCB;
  color: #005CCB;
  background: #fff;
  /* border: 1px solid #261590;
  color: #261590; */
  padding: 0 10px;
  border-radius: 999px;
  font-size: 1.1rem;
  line-height: 23px;
  font-weight: 800;
}@media screen and (max-width: 450px) {
  .top-achievements {
    padding: 20px 0 84px;
  }  .top-achievements__swiper-slide {
    max-width: 250px;
  }  .top-achievements__swiper {
    margin-bottom: 50px;
  }  .top-achievements__swiper .swiper-button-prev {
    left: calc(50% - 165px);
  }  .top-achievements__swiper .swiper-button-next {
    right: calc(50% - 165px);
  }  .top-achievements__image:after {
    width: 30px;
    background-size: 13px 11px;
    bottom: 10px;
    right: 10px;
  }
}.top-recruit {
  padding-bottom: 70px;
  overflow-x: hidden;
}.top-recruit__box {
  /* background: #3B4352; */
  background: linear-gradient(-45deg, #233B6F, #353A45);
  border-radius: 15px;
  width: calc(100% - 30px);
  max-width: 1400px;
  margin: 0 auto;
  padding: 85px 20px 80px;
}.top-recruit__swiper {
  margin-bottom: 50px;
}.top-recruit__swiper .swiper-button-prev,
.top-recruit__swiper .swiper-button-next {
  top: calc(50% - 50px);
}.top-recruit__swiper .swiper-button-prev:after,
.top-recruit__swiper .swiper-button-next:after {
  background-color: #fff;
}.top-recruit__swiper-slide {
  max-width: 340px;
}.top-recruit__swiper-slide a {
  display: block;
  height: 100%;
  background: #fff;
  border-radius: 5px;
  padding: 20px 22px 55px 23px;
  position: relative;
}.top-recruit__swiper-slide a:after {
  content: "";
  width: 42px;
  aspect-ratio: 1/1;
  background: url(img/common/arrow_right_white.svg) no-repeat center;
  /* background-color: #261590; */
  background-color: #005CCB;
  border-radius: 5px 0 4px 0;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.3s;
  z-index: 2;
}.top-recruit__swiper-slide a:hover {
  opacity: 1;
}.top-recruit__swiper-slide a:hover .top-recruit__image img {
  transform: scale(1.1);

}.top-recruit__swiper-slide a:hover:after {
  animation: arrow_slide 0.3s both;
}.top-recruit__image {
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 295/170;
}.top-recruit__image img {
  transition: 0.3s;
}.top-recruit__hdg {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.5;
}.top-recruit__cat {
  position: absolute;
  top: 0;
  right: 0;
  /* background: #261590; */
  background: #005CCB;
  color: #fff;
  font-weight: bold;
  font-size: 1.3rem;
  border-radius: 0 4px 0 5px;
  padding: 4px 9px 5px 16px;
}.top-recruit__text {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #81818C;
}@media screen and (max-width: 768px) {
  .top-recruit__swiper .swiper-button-prev {
    left: calc(50% - 206px);
    top: 50%;
  }  .top-recruit__swiper .swiper-button-next {
    right: calc(50% - 206px);
    top: 50%;
  }
}@media screen and (max-width: 450px) {
  .top-recruit {
    padding-bottom: 30px;
  }  .top-recruit__box {
    padding: 40px 0 50px;
    width: 100%;
  }  .top-recruit__swiper .swiper-button-prev {
    left: calc(50% - 157px);
  }  .top-recruit__swiper .swiper-button-next {
    right: calc(50% - 157px);
  }  .top-recruit__swiper-slide {
    max-width: 240px;
  }  .top-recruit__swiper-slide a {
    padding: 13px 13px 25px 13px;
  }  .top-recruit__swiper-slide a:after {
    content: "";
    width: 30px;
    background-size: 10px 8px;
    bottom: 0;
    right: 0;
  }  .top-recruit__cat {
    font-size: 1.2rem;
    line-height: 18px;
  }
}.top-openCompany {
  /* background: #FFD23B; */
  background: linear-gradient(-90deg, #0098CF, #005CCB);
  padding: 184px 0 155px;
  /* color: #261590; */
  color: #fff;
  position: relative;
}.top-openCompany:before,
.top-openCompany:after {
  content: "";
  width: 100%;
  height: 140px;
  position: absolute;
  left: 0;
  z-index: 1;
}.top-openCompany:before {
  top: -1px;
  /* background: linear-gradient(to top left, #FFD23B 49.8%, #fff 50.2%); */
  clip-path: polygon(100% 0, 0 0, 0 100%);
  background: #EEF0F0;
}.top-openCompany:after {
  bottom: -1px;
  /* background: linear-gradient(to top left, #fff 49.8%, #FFD23B 50.2%); */
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  background: #EEF0F0;
}.top-openCompany__image {
  text-align: center;
  margin-bottom: 20px;
}.top-openCompany__image img {
  border-radius: 5px;
}.top-openCompany__hdg {
  margin-bottom: 20px;
}.top-openCompany__hdg__inner {
  display: block;
  width: fit-content;
  /* color: #fff;
  background: #261590; */
  color: #006ECC;
  background: #fff;
  line-height: min(8.8vw, 60px);
  font-size: min(4.2666666667vw, 3rem);
  font-weight: bold;
  padding: 0 14px;
  margin-left: auto;
  margin-right: auto;
}.top-openCompany__hdg__inner:nth-child(n+2) {
  margin-top: 10px;
}.top-openCompany__box {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}@media screen and (max-width: 450px) {
  .top-openCompany__hdg__inner {
    padding: 0 8px;
  }
  .top-openCompany {
    /* background: #FFD23B; */
    background: linear-gradient(-90deg, #0098CF, #005CCB);
    padding: 60px 0 65px;
    /* color: #261590; */
    position: relative;
  }  .top-openCompany:before,
  .top-openCompany:after {
    height: 45px;
  }  .top-openCompany:before {
    /* background: linear-gradient(to top left, #FFD23B 49.5%, #fff 50.5%); */
    clip-path: polygon(100% 0, 0 0, 0 100%);
    background: #EEF0F0;
  }  .top-openCompany:after {
    /* background: linear-gradient(to top left, #fff 49.5%, #FFD23B 50.5%); */
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
    background: #EEF0F0;
  }
}.top-taget {
  padding: 90px 0 0;
}@media screen and (max-width: 450px) {
  .top-taget {
    padding: 40px 0 0;
  }
}.top-taget__list__item {
  font-size: 1.3rem;
}.top-taget__list__item a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  /* background: #f5f5fa; */
  background: #fff;
}.top-taget__list__item a:hover {
  opacity: 1;
}.top-taget__list__item a:hover .top-taget__list__image img {
  transform: scale(1.1);
}.top-taget__list__item a:hover .top-taget__list__hdg:after {
  animation: arrow_slide 0.3s both;
}.top-taget__list__item:nth-of-type(n+2) {
  margin-top: 40px;
}.top-taget__list__image {
  overflow: hidden;
}.top-taget__list__image img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  transition: 0.3s;
}.top-taget__list__text {
  padding: 20px;
}@media screen and (min-width: 769px) {
  .top-taget__list__item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }  .top-taget__list__item:nth-of-type(2n+1) a {
    flex-direction: row-reverse;
  }  .top-taget__list__image {
    width: 45.5%;
    align-self: stretch;
  }  .top-taget__list__text {
    width: 48%;
    max-width: 430px;
    margin: 0 auto;
    padding: 20px 0;
  }
}.top-taget__list__hdg {
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  padding-right: 45px;
  width: fit-content;
  margin-bottom: 20px;
}.top-taget__list__hdg:after {
  content: "";
  width: 36px;
  aspect-ratio: 1/1;
  background: url(img/common/arrow_right_white.svg) no-repeat center/13px 11px;
  /* background-color: #261590; */
  background-color: #005CCB;
  border-radius: 5px;
  position: absolute;
  top: 5px;
  right: 0;
  transition: 0.3s;
  z-index: 2;
}.top-taget__list__hdg__en {
  display: block;
  font-family: "Figtree", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  /* color: #261590; */
  color: #005CCB;
  margin-top: 10px;
}.top-taget__list__hdg02 {
  /* color: #261590; */
  color: #005CCB;
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 5px;
  font-weight: 900;
}@media screen and (max-width: 768px) {
  .top-taget__list__hdg {
    font-size: min(6.4vw, 2.4rem);
  }  .top-taget__list__hdg:after {
    width: 30px;
    background-size: 13px 11px;
    border-radius: 5px;
    position: absolute;
    top: 1px;
    right: 0;
    transition: 0.3s;
    z-index: 2;
  }  .top-taget__list__hdg__en {
    font-size: min(3.2vw, 1.2rem);
  }  .top-taget__list__hdg02 {
    font-size: min(4.5333333333vw, 1.609rem);
  }
}@media screen and (max-width: 450px) {
  .top-taget__list__hdg {
    width: 100%;
    margin-bottom: 15px;
  }  .top-taget__list__hdg02 {
    margin-bottom: 10px;
  }
}.top-more {
  background: #F1F1F5;
  padding: 70px 0 60px;
}.top-more__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}.top-more__list__item {
  width: calc(50% - 20px);
}.top-more__list__item a {
  display: block;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}.top-more__list__item a:hover {
  opacity: 1;
}.top-more__list__item a:hover .top-more__list__image img {
  transform: scale(1.1);
}.top-more__list__item a:hover .top-more__list__p:after {
  animation: arrow_slide 0.3s both;
}.top-more__list__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}.top-more__list__image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: 0.3s;
}.top-more__list__image:after {
  content: "";
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to top, #261590, transparent); */
  background: linear-gradient(to top, #005CCB, transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}.top-more__list__text {
  position: relative;
  z-index: 2;
  color: #fff;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}.top-more__list__hdg {
  margin-bottom: 10px;
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.4;
}.top-more__list__hdg__en {
  font-size: 1.2rem;
  display: block;
}.top-more__list__p {
  font-size: 1.4rem;
  padding-right: 55px;
  position: relative;
}.top-more__list__p:after {
  content: "";
  width: 42px;
  aspect-ratio: 1/1;
  background: url(img/common/arrow_right_blue.svg) no-repeat center;
  background-color: #fff;
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.3s;
  z-index: 2;
}@media screen and (max-width: 768px) {
  .top-more__list {
    justify-content: center;
  }  .top-more__list__item {
    width: 100%;
    max-width: 500px;
  }
}@media screen and (max-width: 450px) {
  .top-more {
    padding: 70px 0 60px;
  }  .top-more__list {
    gap: 15px 0;
  }  .top-more__list__text {
    min-height: 200px;
  }  .top-more__list__hdg {
    font-size: 2rem;
  }  .top-more__list__hdg__en {
    font-size: 1rem;
  }  .top-more__list__p {
    font-size: 1.1rem;
    padding-right: 55px;
  }  .top-more__list__p:after {
    width: 30px;
    background-size: 11px 9px;
  }
}.top-blog {
  padding: 60px 0 100px;
}.top-blog__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px 0;
}.top-blog__list__item {
  width: calc(50% - 20px);
}.top-blog__list__item a {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 20px;
  background: #FAFAFB;
  border: 1pt solid #FAFAFB;
  border-radius: 8px;
}.top-blog__list__item a:hover {
  opacity: 1;
  color: #261590;
  border-color: #261590;
}.top-blog__list__image {
  border-radius: 8px;
  overflow: hidden;
  flex: 0 1 200px;
}.top-blog__list__text {
  flex: 1 2 355px;
}.top-blog__dateWrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}.top-blog__list__date {
  font-family: "Figtree", sans-serif;
  font-size: 1.4rem;
  font-weight: bold;
  /* color: #261590; */
  color: #005CCB;
}.top-blog__list__cat {
  min-width: 75px;
  display: inline-block;
  /* border: 1px solid #261590; */
  border: 1px solid #005CCB;
  background: #fff;
  border-radius: 999px;
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
  /* color: #261590; */
  color: #005CCB;
  padding: 0 10px;
}.top-blog__list__hdg {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 5px;
}@media screen and (max-width: 768px) {
  .top-blog__list__item {
    width: 100%;
  }  .top-blog__list__hdg {
    font-size: 1.8rem;
  }
}@media screen and (max-width: 450px) {
  .top-blog {
    padding: 15px 0 70px;
  }  .top-blog__list__image {
    flex: 0 0 80px;
    height: 80px;
  }  .top-blog__list__image img {
    object-fit: cover;
    width: 80px;
    height: 80px;
  }  .top-blog__list__hdg {
    font-size: 1.4rem;
  }  .top-blog__list__date {
    font-size: 1.1rem;
  }  .top-blog__list__cat {
    font-size: 1rem;
  }
}.top-contents {
  /* background: #f5f5fa; */
  background: #F9F9FB;
  padding: 100px 0 80px;
}.subpage-section+.top-contents {
  margin-top: 70px;
}.top-contents__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px 25px;
}.top-contents__list__item {
  max-width: 350px;
  width: calc(50% - 13px);
}.top-contents__list__item a {
  display: block;
  border-radius: 5px;
  overflow: hidden;
}.top-contents__list__item a:hover {
  opacity: 1;
}.top-contents__list__item a:hover .top-contents__list__image img {
  transform: scale(1.1);
}.top-contents__list__item a:hover .top-contents__list__hdg:after {
  animation: arrow_slide 0.3s both;
}.top-contents__list__image {
  overflow: hidden;
}.top-contents__list__image img {
  transition: 0.3s;
}.top-contents__list__text {
  background: #fff;
  padding: 15px 18px 20px 25px;
}.top-contents__list__hdg {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  padding-right: 35px;
  /* white-space: pre-wrap; */
  word-break: keep-all;
}.top-contents__list__hdg:after {
  content: "";
  width: 24px;
  aspect-ratio: 1/1;
  background: url(img/common/arrow_right_white.svg) no-repeat center/9px 7px, linear-gradient(-45deg, #0098CF, #005CCB);
  /* background-color: #261590; */

  border-radius: 5px;
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  transition: 0.3s;
  z-index: 2;
}.top-contents__list__hdg__en {
  display: block;
  font-family: "Figtree", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  /* color: #261590; */
  color: #005CCB;
  margin-top: 10px;
}@media screen and (min-width: 451px) {
  .top-contents__list__item {
    max-width: 350px;
  }
}@media screen and (max-width: 450px) {
  .top-contents {
    padding: 30px 0;
  }  .top-contents__list {
    gap: 20px;
  }  .top-contents__list__item {
    width: 100%;
  }  .top-contents__list__item a {
    display: flex;
    flex-wrap: nowrap;
    background: #fff;
  }  .top-contents__list__image {
    flex: 0 0 100px;
  }  .top-contents__list__image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }  .top-contents__list__text {
    width: calc(100% - 100px);
    align-self: center;
    padding: 15px;
  }  .top-contents__list__hdg__en {
    font-size: 1rem;
  }
  .top-contents__list__hdg{
    font-size: 1.5rem;
  }
}/***************************

object/object/project/_home.scss

***************************/
/***************************

object/object/project/_merit.scss

***************************/
.merit__message {
  /* background: #f5f5fa; */
  /* background: #fff; */
  padding: 60px 0 40px;
}.merit__message-job {
  font-size: 1.6rem;
  font-weight: 800;
  /* color: #261590; */
  color: #005CCB;
  line-height: 1.4;
  text-align: right;
  margin-top: 15px;
}.merit__message-name {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
  text-align: right;
}@media screen and (max-width: 450px) {
  .merit__message {
    padding: 30px 0;
  }  .merit__message-job {
    font-size: 1.3rem;
    margin-top: 15px;
  }
}.merit__meaningful-text {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 900;
  line-height: 1.3;
  /* color: #261590; */
  color: #005CCB;
}@media screen and (min-width: 451px) {
  .merit__meaningful-text {
    font-size: 2.4rem;
  }
}.merit__meaningful-keyword {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 15px;
  margin: 15px 0;
}.merit__meaningful-keyword__item {
  /* background: #261590; */
  background: #005CCB;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  border-radius: 3px;
  min-width: 100px;
  line-height: 40px;
  text-align: center;
}@media screen and (min-width: 451px) {
  .merit__meaningful-keyword__item {
    font-size: 2.4rem;
    min-width: 120px;
    line-height: 45px;
  }
}/***************************

object/object/project/_family.scss

***************************/
.family__prideBox .image-wrap {
  margin-top: 10px;
}/***************************

object/object/project/_data.scss

***************************/
.data__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}.data__list__item {
  width: 100%;
  /* background: #f5f5fa;
  border: 3px solid #EFEFF6; */
  background: #fff;
  border: 3px solid #fff;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  padding: 20px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}.data__list__item.--half {
  width: calc(50% - 5px);
}@media screen and (max-width: 1200px) {
  .data__list__item.--half.--sp {
    width: 100%;
  }
}@media screen and (max-width: 450px) {
  .data__list__item.--half {
    padding: 10px 5px 5px;
  }
}.data__list__hdg {
  text-align: center;
  /* color: #261590; */
  color: #005CCB;
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 5px;

  margin-bottom: auto;
}@media screen and (max-width: 450px) {
  .data__list__item.--half .data__list__hdg {
    font-size: 1.1rem;
  }
}.data__list__hdg__small {
  font-size: 1rem;
}@media screen and (max-width: 450px) {
  .data__list__hdg__small {
    font-size: 0.8rem;
  }
}.data__list__detail {
  font-size: 2.4rem;
  font-weight: 900;
  /* color: #261590; */
  color: #005CCB;
}.data__list__detail img {
  margin-right: 5px;
  vertical-align: baseline;
}@media screen and (max-width: 540px) {
  .data__list__item.--half .data__list__detail {
    font-size: 1.6rem;
  }
}.data__list__num {
  font-size: 5.4rem;
  font-family: "Figtree", sans-serif;
  font-weight: bold;
  font-style: italic;
}@media screen and (max-width: 540px) {
  .data__list__item.--half .data__list__num {
    font-size: 3.8rem;
  }
}.data__list__note {
  font-size: 1rem;
  font-weight: bold;
  color: #A8A8B5;

  margin-bottom: auto;
}@media screen and (min-width: 451px) {
  .data__list__hdg {
    font-size: 2.8rem;
  }  .data__list__hdg__small {
    font-size: 2rem;
  }  .data__list__detail {
    font-size: 3.2rem;
  }  .data__list__num {
    font-size: 6rem;
  }  .data__list__note {
    font-size: 1.3rem;
  }
}/***************************

object/object/project/_contribution.scss

***************************/
.contribution-sponsor {
  /* display: flex;
  flex-wrap: wrap;
  justify-content: center; */
  /* display: grid;
  gap: 10px; */
  margin-top: 15px;
}@media screen and (min-width: 451px) {
  .contribution-sponsor {
    margin-top: 30px;
  }
}/* @media screen and (min-width: 769px){
.contribution-sponsor{
  grid-template-columns: 1fr 1fr;
}
} */

.contribution-sponsor__item {
  width: 100%;
}.contribution-sponsor__hdg {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 10px;
}.contribution-sponsor__image {
  text-align: center;
}.contribution-sponsor__image img {
  border-radius: 3px;
}.contribution-sponsor__logo {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 15px;
  width: 100%;
  max-width: 500px;
  margin-top: 20px;
}/***************************

object/object/project/_achievements.scss

***************************/
.achievements-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 55px;
}.achievements-list .top-achievements__swiper-slide {
  width: calc(50% - 28px);
}@media screen and (max-width: 768px) {
  .achievements-list {
    gap: 40px 15px;
  }  .achievements-list .top-achievements__swiper-slide {
    width: 100%;
    max-width: 100%;
  }  .achievements-list .top-achievements__image img {
    width: 100%;
  }  .achievements-list .top-achievements__hdg {
    font-size: 1.5rem;
  }
}.detail-image {
  margin-top: 30px;


}.detail-image img {
  aspect-ratio: 1100/600;
  object-fit: cover;
}.image-wrap img {
  aspect-ratio: 1100/600;
  object-fit: cover;
}.detail-contents {
  margin: 20px 0 40px;
}@media screen and (max-width: 450px) {
  .detail-image {
    margin-top: 20px;
  }  .detail-contents {
    margin: 10px 0 30px;
  }
}/***************************

object/object/project/_requirements.scss

***************************/
.top-recruit{
  overflow: hidden;
}
.requirements-list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 40px;
}.requirements-list .top-recruit__swiper-slide {
  border: 1px solid #EAEDF6;
  border-radius: 5px;
  width: calc(50% - 20px);
  padding: 20px 22px 55px 23px;
  position: relative;
}.requirements-list__item {
  max-width: 340px;
  border: 1px solid #EAEDF6;
  border-radius: 5px;
  width: calc(50% - 20px);
  padding: 20px 22px;
  position: relative;
  background: #fff;
}.requirements-list__item .btn-type01 {
  font-size: 1.6rem;
  min-width: auto;
  width: 100%;
  min-height: 60px;
  margin-top: 10px;
}@media screen and (max-width: 768px) {
  .requirements-list {
    gap: 20px 15px;
  }  .requirements-list .top-recruit__swiper-slide {
    width: 100%;
    max-width: 100%;
  }  .requirements-list .top-recruit__image img {
    width: 100%;
  }  .requirements-list__item {
    width: 100%;
    max-width: 100%;
  }
}.requirements-detail .hdg-type03 {
  margin: 40px 0 20px;
}.requirements-detail .top-recruit__image img {
  width: 100%;
}.requirements-detail .top-recruit__swiper .swiper-button-prev:after,
.requirements-detail .top-recruit__swiper .swiper-button-next:after {
  background-color: #261590;
}@media screen and (max-width: 450px) {
  .requirements-detail .hdg-type03 {
    margin: 30px 0 20px;
  }
}.requirements-dl {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 0;
  line-height: 1.5;
  margin: 15px 0;
}.requirements-dl__dt {
  width: 5.5em;
  font-weight: bold;
  color: #261590;
}.requirements-dl__dd {
  width: calc(100% - 5.5em);
}/***************************

object/object/project/_member.scss

***************************/
.member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.top-member{
 overflow-x: hidden;
}.member-list .top-member__swiper-slide {
  width: calc((100% - 80px) / 3);
}.member-list .top-member__profile {
  color: #261590;
}.member-list .top-member__job {
  border-color: #261590;
  color: #261590;
}@media screen and (max-width: 768px) {
  .member-list .top-member__swiper-slide {
    width: calc(50% - 20px);
  }
}@media screen and (max-width: 450px) {
  .member-list {
    justify-content: center;
  }  .member-list .top-member__swiper-slide {
    width: 100%;
  }
}.memberDetail-hdg {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 13px;
}@media screen and (min-width: 451px) {
  .memberDetail-hdg {
    font-size: 2.8rem;
    margin-top: 15px;
  }
}.memberDetail-image img {
  border-radius: 5px;
}.memberDetail-profile {
  font-size: 1.2rem;
  font-size: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
  /* color: #261590; */
  color: #005CCB;
  margin-top: 8px;
}.memberDetail-job {
  display: inline-block;
  width: fit-content;
  /* border: 1px solid #261590; */
  border: 1px solid #005CCB;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 1.1rem;
  line-height: 23px;
  font-weight: 800;
}@media screen and (min-width: 451px) {
  .memberDetail-profile {
    font-size: 1.5rem;
  }  .memberDetail-job {
    font-size: 1.4rem;
    padding: 2px 15px;
  }
}.memberDetail-other {
  font-size: 1.2rem;
  padding-left: 15px;
  position: relative;
  line-height: 1.5;
  /* color: #261590; */
  color: #005CCB;
  margin-top: 12px;
}.memberDetail-other:before {
  content: "";
  width: 3px;
  height: 100%;
  border-radius: 9999px;
  position: absolute;
  top: 0;
  /* background: #261590; */
  background: #005CCB;
  left: 0;
}@media screen and (min-width: 451px) {
  .memberDetail-other {
    font-size: 1.5rem;
    margin-top: 15px;
  }
}/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}.inline {
  display: inline;
}.inline-block {
  display: inline-block;
}.block {
  display: block;
}.none {
  display: none;
}.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}.flex-item {
  flex: 0 1 auto;
}.flex-item0 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}@media screen and (min-width: 1024px) {
  .sp {
    display: none !important;
  }
}@media screen and (max-width: 1023px) {
  .pc {
    display: none !important;
  }
  
}/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}.link--under-line:hover {
  text-decoration: none;
}/***************************

object/utility/_text.scss

***************************/
.fv {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}.fv {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}.uppercase {
  text-transform: uppercase;
}.letterspace01 {
  letter-spacing: 2px;
}.letterspace02 {
  letter-spacing: 4px;
}.letterspace03 {
  letter-spacing: 1px;
}.lineheight01 {
  line-height: 1.3;
}.t-center {
  text-align: center;
}.t-left {
  text-align: left;
}.t-right {
  text-align: right;
}@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }  .t-left_pc {
    text-align: left;
  }  .t-right_pc {
    text-align: right;
  }
}.vat {
  vertical-align: top;
}.vam {
  vertical-align: middle;
}.vab {
  vertical-align: bottom;
}.fs-10 {
  font-size: 10px;
}.fs-11 {
  font-size: 11px;
}.fs-12 {
  font-size: 12px;
}.fs-13 {
  font-size: 13px;
}.fs-14 {
  font-size: 14px;
}.fs-15 {
  font-size: 15px;
}.fs-16 {
  font-size: 16px;
}.fs-17 {
  font-size: 17px;
}.fs-18 {
  font-size: 18px;
}.fs-19 {
  font-size: 19px;
}.fs-20 {
  font-size: 20px;
}.fs-21 {
  font-size: 21px;
}.fs-22 {
  font-size: 22px;
}.fs-23 {
  font-size: 23px;
}.fs-24 {
  font-size: 24px;
}.fs-25 {
  font-size: 25px;
}.fs-26 {
  font-size: 26px;
}.fs-27 {
  font-size: 27px;
}.fs-28 {
  font-size: 28px;
}.fs-29 {
  font-size: 29px;
}.fs-30 {
  font-size: 30px;
}.fs-31 {
  font-size: 31px;
}.fs-32 {
  font-size: 32px;
}.fs-33 {
  font-size: 33px;
}.fs-34 {
  font-size: 34px;
}.fs-35 {
  font-size: 35px;
}.fs-36 {
  font-size: 36px;
}.f-bold {
  font-weight: bold;
}.f-normal {
  font-weight: normal;
}.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}.fc--white {
  color: #fff;
}.fc--black {
  color: #28283D;
}.fc--red {
  color: red;
}.txtdeco-none {
  text-decoration: none;
}.figtree {
  font-family: "Figtree", sans-serif;
}.txt-fitCenter {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}.mb-0 {
  margin-bottom: 0;
}.mb10 {
  margin-bottom: 10px;
}.mt-190 {
  margin-top: 190px;
}.mt-100 {
  margin-top: 100px;
}.mb-100 {
  margin-bottom: 100px;
}.mb150 {
  margin-bottom: 150px;
}.mb300 {
  margin-bottom: 10px;
}.mt-0 {
  margin-top: 0px;
}.mt-5 {
  margin-top: 5px;
}.mt-10 {
  margin-top: 10px;
}.mt-15 {
  margin-top: 15px;
}.mt-20 {
  margin-top: 20px;
}.mt-25 {
  margin-top: 25px;
}.mt-30 {
  margin-top: 30px;
}.mt-35 {
  margin-top: 35px;
}.mt-40 {
  margin-top: 40px;
}.mt-45 {
  margin-top: 45px;
}.mt-50 {
  margin-top: 50px;
}.mt-55 {
  margin-top: 55px;
}.mt-60 {
  margin-top: 60px;
}.mt-65 {
  margin-top: 65px;
}.mt-70 {
  margin-top: 70px;
}.mt-75 {
  margin-top: 75px;
}.mt-80 {
  margin-top: 80px;
}.mt-85 {
  margin-top: 85px;
}.mt-90 {
  margin-top: 90px;
}.mt-95 {
  margin-top: 95px;
}.mt-100 {
  margin-top: 100px;
}.mb-0 {
  margin-bottom: 0px;
}.mb-5 {
  margin-bottom: 5px;
}.mb-10 {
  margin-bottom: 10px;
}.mb-15 {
  margin-bottom: 15px;
}.mb-20 {
  margin-bottom: 20px;
}.mb-25 {
  margin-bottom: 25px;
}.mb-30 {
  margin-bottom: 30px;
}.mb-35 {
  margin-bottom: 35px;
}.mb-40 {
  margin-bottom: 40px;
}.mb-45 {
  margin-bottom: 45px;
}.mb-50 {
  margin-bottom: 50px;
}.mb-55 {
  margin-bottom: 55px;
}.mb-60 {
  margin-bottom: 60px;
}.mb-65 {
  margin-bottom: 65px;
}.mb-70 {
  margin-bottom: 70px;
}.mb-75 {
  margin-bottom: 75px;
}.mb-80 {
  margin-bottom: 80px;
}.mb-85 {
  margin-bottom: 85px;
}.mb-90 {
  margin-bottom: 90px;
}.mb-95 {
  margin-bottom: 95px;
}.mb-100 {
  margin-bottom: 100px;
}.mr-0 {
  margin-right: 0px;
}.mr-5 {
  margin-right: 5px;
}.mr-10 {
  margin-right: 10px;
}.mr-15 {
  margin-right: 15px;
}.mr-20 {
  margin-right: 20px;
}.mr-25 {
  margin-right: 25px;
}.mr-30 {
  margin-right: 30px;
}.mr-35 {
  margin-right: 35px;
}.mr-40 {
  margin-right: 40px;
}.mr-45 {
  margin-right: 45px;
}.mr-50 {
  margin-right: 50px;
}.mr-55 {
  margin-right: 55px;
}.mr-60 {
  margin-right: 60px;
}.mr-65 {
  margin-right: 65px;
}.mr-70 {
  margin-right: 70px;
}.mr-75 {
  margin-right: 75px;
}.mr-80 {
  margin-right: 80px;
}.mr-85 {
  margin-right: 85px;
}.mr-90 {
  margin-right: 90px;
}.mr-95 {
  margin-right: 95px;
}.mr-100 {
  margin-right: 100px;
}.ml-0 {
  margin-left: 0px;
}.ml-5 {
  margin-left: 5px;
}.ml-10 {
  margin-left: 10px;
}.ml-15 {
  margin-left: 15px;
}.ml-20 {
  margin-left: 20px;
}.ml-25 {
  margin-left: 25px;
}.ml-30 {
  margin-left: 30px;
}.ml-35 {
  margin-left: 35px;
}.ml-40 {
  margin-left: 40px;
}.ml-45 {
  margin-left: 45px;
}.ml-50 {
  margin-left: 50px;
}.ml-55 {
  margin-left: 55px;
}.ml-60 {
  margin-left: 60px;
}.ml-65 {
  margin-left: 65px;
}.ml-70 {
  margin-left: 70px;
}.ml-75 {
  margin-left: 75px;
}.ml-80 {
  margin-left: 80px;
}.ml-85 {
  margin-left: 85px;
}.ml-90 {
  margin-left: 90px;
}.ml-95 {
  margin-left: 95px;
}.ml-100 {
  margin-left: 100px;
}.p-0 {
  padding: 0;
}.pt-0 {
  padding-top: 0px;
}.pt-5 {
  padding-top: 5px;
}.pt-10 {
  padding-top: 10px;
}.pt-15 {
  padding-top: 15px;
}.pt-20 {
  padding-top: 20px;
}.pt-25 {
  padding-top: 25px;
}.pt-30 {
  padding-top: 30px;
}.pt-35 {
  padding-top: 35px;
}.pt-40 {
  padding-top: 40px;
}.pt-45 {
  padding-top: 45px;
}.pt-50 {
  padding-top: 50px;
}.pt-55 {
  padding-top: 55px;
}.pt-60 {
  padding-top: 60px;
}.pt-65 {
  padding-top: 65px;
}.pt-70 {
  padding-top: 70px;
}.pt-75 {
  padding-top: 75px;
}.pt-80 {
  padding-top: 80px;
}.pt-85 {
  padding-top: 85px;
}.pt-90 {
  padding-top: 90px;
}.pt-95 {
  padding-top: 95px;
}.pt-100 {
  padding-top: 100px;
}.pb-0 {
  padding-bottom: 0px;
}.pb-5 {
  padding-bottom: 5px;
}.pb-10 {
  padding-bottom: 10px;
}.pb-15 {
  padding-bottom: 15px;
}.pb-20 {
  padding-bottom: 20px;
}.pb-25 {
  padding-bottom: 25px;
}.pb-30 {
  padding-bottom: 30px;
}.pb-35 {
  padding-bottom: 35px;
}.pb-40 {
  padding-bottom: 40px;
}.pb-45 {
  padding-bottom: 45px;
}.pb-50 {
  padding-bottom: 50px;
}.pb-55 {
  padding-bottom: 55px;
}.pb-60 {
  padding-bottom: 60px;
}.pb-65 {
  padding-bottom: 65px;
}.pb-70 {
  padding-bottom: 70px;
}.pb-75 {
  padding-bottom: 75px;
}.pb-80 {
  padding-bottom: 80px;
}.pb-85 {
  padding-bottom: 85px;
}.pb-90 {
  padding-bottom: 90px;
}.pb-95 {
  padding-bottom: 95px;
}.pb-100 {
  padding-bottom: 100px;
}.pr-0 {
  padding-right: 0px;
}.pr-5 {
  padding-right: 5px;
}.pr-10 {
  padding-right: 10px;
}.pr-15 {
  padding-right: 15px;
}.pr-20 {
  padding-right: 20px;
}.pr-25 {
  padding-right: 25px;
}.pr-30 {
  padding-right: 30px;
}.pr-35 {
  padding-right: 35px;
}.pr-40 {
  padding-right: 40px;
}.pr-45 {
  padding-right: 45px;
}.pr-50 {
  padding-right: 50px;
}.pr-55 {
  padding-right: 55px;
}.pr-60 {
  padding-right: 60px;
}.pr-65 {
  padding-right: 65px;
}.pr-70 {
  padding-right: 70px;
}.pr-75 {
  padding-right: 75px;
}.pr-80 {
  padding-right: 80px;
}.pr-85 {
  padding-right: 85px;
}.pr-90 {
  padding-right: 90px;
}.pr-95 {
  padding-right: 95px;
}.pr-100 {
  padding-right: 100px;
}.pl-0 {
  padding-left: 0px;
}.pl-5 {
  padding-left: 5px;
}.pl-10 {
  padding-left: 10px;
}.pl-15 {
  padding-left: 15px;
}.pl-20 {
  padding-left: 20px;
}.pl-25 {
  padding-left: 25px;
}.pl-30 {
  padding-left: 30px;
}.pl-35 {
  padding-left: 35px;
}.pl-40 {
  padding-left: 40px;
}.pl-45 {
  padding-left: 45px;
}.pl-50 {
  padding-left: 50px;
}.pl-55 {
  padding-left: 55px;
}.pl-60 {
  padding-left: 60px;
}.pl-65 {
  padding-left: 65px;
}.pl-70 {
  padding-left: 70px;
}.pl-75 {
  padding-left: 75px;
}.pl-80 {
  padding-left: 80px;
}.pl-85 {
  padding-left: 85px;
}.pl-90 {
  padding-left: 90px;
}.pl-95 {
  padding-left: 95px;
}.pl-100 {
  padding-left: 100px;
}/*# sourceMappingURL=style.css.map */


.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(60px);
  }  to {
    opacity: 1;
    transform: translateY(0);
  }
}.fadeUpTrigger {
  opacity: 0;
}/* .merit__message_list {
  display: grid;
  gap: 15px;
}@media screen and (min-width: 769px) {
  .merit__message_list {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
} */

/* 260417 */
.anchor.container {
  max-width: 1200px;
}.block_list_type01 {
  display: grid;
  gap: 15px;
}.box-contents01_list {
  display: grid;
  gap: 15px;
}@media screen and (min-width: 769px) {
  .block_list_type01 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
   .block_list_type01.--column1 {
    display: grid;
    grid-template-columns:1fr;
  }
}.block_list_type01 .hdg-marker {
  margin-left: 0;
  margin-right: 0;
}.box-contents02_list {
  /* display: grid; */
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}@media screen and (min-width: 769px) {
  .box-contents02_list {
    /* grid-template-columns: 1fr 1fr; */
    gap: 30px 15px;
  }  .box-contents02_list li {
    width: 100%;
    max-width: calc(100% / 2 - 9px);
    justify-content: space-between;
  }
}.accordion01__contents__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 500/273;
}.top-mv {
  position: relative;
}.top-mv_title {
  position: absolute;
  bottom: 65px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 5;
  width: 100%;
  max-width: 1500px;
  padding: 30px;
  text-align: left;

  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.5;
}@media screen and (min-width: 540px) {
  .top-mv_title {
    font-size: 30px;
  }
}@media screen and (min-width: 769px) {
  .top-mv_title {
    font-size: 34px;
    bottom: auto;
    top: 40%;
    transform: translateY(-40%);
  }
}@media screen and (min-width: 1200px) {
  .top-mv_title {
    font-size: 55px;
  }
}.fc--yellow {
  color: #FFD23B;
}body:has(input[name=toggle]:checked) {
  overflow-x: hidden;
}/* 260803 */
.letterspace004 {
  letter-spacing: 0.04em;
}