@charset "UTF-8";
@import url("https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.css");
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Inter+Tight:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");

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

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #404040;
  --gray: #888A95;
  --l-gray: #F7F7F7;
  --blue: #00479D;
  --blue02: #0972A4;
  --blue03: #4BB5CD;
  --l-blue: #E7F5FA;
  --font: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --cormorant: "Cormorant Garamond", serif;
  --shippori: "Shippori Mincho B1", serif;
  --noto-sans: "Noto Sans JP", sans-serif;
  --Figtree: "Figtree", sans-serif;
}

* {
  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%;
}

body {
  overflow-x: hidden;
  font-size: 1.6rem;
  color: #404040;
  font-family: var(--font);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}

@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;
}

.main {
  overflow: hidden;
}

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] {
  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: 15px;
}

@media screen and (min-width: 1025px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 80;
    transition: all 0.5s;
  }

  header.is-home {
    color: var(--white);
  }
   header.is-home.--type02 {
    color: var(--back);
  }

  header.is-home::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.25), transparent);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  header.is-show {
    background: var(--white);
    color: var(--black);
  }
  header.is-show.is-home::after{
    background: transparent;
  }
}

.header__top {
  position: relative;
  z-index: 999;
}

@media screen and (min-width: 769px) {
  .header__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
  }
}

.header__top .btn-type01 {
  max-width: 220px;
  font-size: 1.5rem;
  min-height: 50px;
}

.header__logo {
  font-size: 0;
  line-height: 1.5;
  text-align: center;
}

.header__tel {
  position: relative;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
  font-family: var(--shippori);
}

.header__tel span {
  font-size: 1.6rem;
}

.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: var(--blue);
  opacity: 1;
}

@media screen and (min-width: 1025px) {
  .header .container_l {
    width: 100%;
    max-width: 1310px;
  }

  .header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5px;
  }

  .header__nav__item {
    flex: 1 1 auto;
    text-align: center;
  }

  .header__nav__item a {
    display: block;
    padding: 0 10px;
  }
}

@media screen and (max-width: 1024px) {
  .header {
    padding: 20px 15px 20px;
  }

  .header__top {
    justify-content: center;
  }

  .header__nav {
    width: 100%;
    max-width: 400px;
    margin-bottom: 22px;
  }

  .header__nav__item a {
    color: var(--white);
    font-family: var(--shippori);
    display: block;
    font-size: 1.7rem;
    font-weight: bold;
    border-bottom: 1px solid #4F4F4F;
    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_gray.svg) no-repeat center/8px 6px;
    background-color: #F7F7F7;
    border-radius: 5px;
    position: absolute;
    top: calc(50% - 9px);
    right: 3px;
    transition: 0.3s;
    z-index: 2;
  }

  .header__nav__item a:hover {
    color: var(--white);
    opacity: 0.6;
  }
}

/* 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;
  user-select: none;
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.3s;
}

.header__toggleBtn__bar:before,
.header__toggleBtn__bar:after {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: #fff;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  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: var(--shippori);
  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: var(--black);
  padding-bottom: 12px;
  font-family: var(--shippori);
}

.header__sp-menu__btn:nth-of-type(n+2) {
  border-left: 2px solid #fff;
}

.header__sp-menu__btn.--blue {
  background: linear-gradient(45deg, var(--blue), #0DA7CE);
  color: var(--white);
}

@media screen and (min-width: 1025px) {

  .header__toggleBtn,
  .header__sp-menu {
    display: none;
  }

  .gnav {
    display: block !important;
    height: inherit !important;
  }
}

.gnav .header__logo {
  display: none;
}

@media screen and (max-width: 1024px) {
  .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: var(--black);
    padding: 25px 20px;
    padding-top: 70px;
    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;
  }

  .gnav .header__logo {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: 15px 0;
    text-align: center;
    z-index: 999;
  }

  .header__sp-menu {
    display: flex;
  }
}

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

layout/_footer.scss

***************************/
footer {
  background: var(--black);
  padding-bottom: 100px;
}

@media screen and (min-width: 769px) {
  footer {
    padding-bottom: 20px;
  }
}

footer .hdg-type01 {
  color: var(--white);
}

.footer__contact {
  padding: 45px 0;
  padding-bottom: 0;
}

.footer__contact__box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 13px 30px;
  font-family: var(--shippori);
  align-items: center;
}

@media screen and (min-width: 1025px) {
  .footer__contact__box {
    flex-wrap: nowrap;
  }
}

@media screen and (min-width: 769px) {
  .footer__contact__box .footer__contact__box__item {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media screen and (min-width: 769px) and (min-width: 769px) {
  .footer__contact__box .footer__contact__box__item.--recruit::after {
    right: 35px;
  }
}

@media screen and (min-width: 769px) {
  .footer__contact__box .footer__contact__box__item.--recruit a {
    padding: 39px;
    padding-right: 120px;
    font-size: 2rem;
  }

  .footer__contact__box .footer__contact__box__item.--recruit a::before {
    max-width: 176px;
  }
}

@media screen and (min-width: 769px) and (min-width: 769px) {
  .footer__contact__box .footer__contact__box__item.--recruit a span::after {
    right: -40px;
  }
}

@media screen and (min-width: 1300px) {
  .footer__contact__box .footer__contact__box__item {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .footer__contact__box .header__tel {
    width: 100%;
    max-width: 60%;
  }

  .footer__contact__box .footer__contact__box__info {
    width: 100%;
    max-width: 40%;
  }

  .footer__contact__box .footer__contact__box__hdg {
    width: 100%;
  }
}

.header__infolist {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.header__infolist .btn-type01 {
  min-width: 150px;
}

.header__infolist.pc {
  width: 100%;
  /* max-width: 248px; */
}

@media screen and (min-width: 1024px) {
  .header__infolist.pc {
    max-width: 248px;
  }
}

@media screen and (min-width: 1300px) {
  .header__infolist.pc {
    max-width: 502px;
  }
}

.header__nav_wrap {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}

.footer__contact__box__item {
  width: 100%;
  max-width: 350px;
  font-family: var(--shippori);
  background: #fff;
  text-align: center;
  padding: 20px 15px 15px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 769px) {
  .footer__contact__box__item {
    max-width: 100%;
  }
}

.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;
}

.footer__contact__box__item.--recruit {
  position: relative;
  padding: 0;
}

.footer__contact__box__item.--recruit a {
  width: 100%;
  background: linear-gradient(45deg, #4BB5CD 40%, #00479D);
  position: relative;
  color: var(--white);
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: right;
}

.footer__contact__box__item.--recruit a::before {
  content: "";
  width: 100%;
  max-width: 119px;
  height: 100%;
  background: url(img/common/recruit_img.png);
  position: absolute;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer__contact__box__item.--recruit:after {
  content: "";
  width: 12px;
  height: 11px;
  -webkit-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-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>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--white);
  transition: 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  z-index: 1;
}

.footer__contact__box__item.--recruit a {
  display: inline-block;
  padding: 20px;
  padding-right: 80px;
}

.footer__contact__box__item.--recruit span {
  position: relative;
  width: 100%;
  display: block;
}

@media screen and (min-width: 769px) {
  .footer__contact__box__item.--recruit span {
    font-size: 24px;
  }
}

.footer__contact__box__item.--recruit span::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -20px;
}

.footer__contact .hdg-type01 {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 500;
}

.footer__contact .hdg-type01 .hdg-type01__en {
  font-size: 1.3rem;
}

@media screen and (min-width: 769px) {
  .footer__contact .hdg-type01 {
    font-size: 3.6rem;
  }

  .footer__contact .hdg-type01 .hdg-type01__en {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.footer__contact__box__hdg {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
}

.footer__contact__box__info {
  background: var(--l-blue);
  font-size: 1.2rem;
  line-height: 1.5;
  border-radius: 9999px;
  max-width: 260px;
  width: 100%;
  padding: 10px;
  font-weight: 600;
}

.footer__bottom {
  padding: 50px 0 35px;
  text-align: center;
}

.footer__addr {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 15px;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.06em;
  color: var(--white);
}

@media screen and (min-width: 769px) {
  .footer__addr {
    text-align: left;
  }
}

small {
  color: #747475;
  font-family: var(--Figtree);
  font-size: 9px;
  letter-spacing: 0.08em;
}

.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;
}

.footer__nav__item a:hover {
  opacity: 1;
  color: var(--blue);
}

.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;
}

@media screen and (min-width: 769px) {
  footer .container {
    width: 100%;
    max-width: 1310px;
  }
}

@media screen and (max-width: 768px) {
  .footer__contact__box__item {
    width: 100%;
  }

  .footer__logo {
    text-align: center;
  }

  .footer__addr {
    text-align: center;
  }

  .footer__nav {
    display: none;
  }

  .footer__copy {
    text-align: center;
  }
}

.footer_sitemap_list {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 20px;
  font-family: var(--shippori);
  font-size: 1.5rem;
}

@media screen and (min-width: 1101px) {
  .footer_sitemap_list {
    justify-content: flex-end;
  }
}

.footer__bottom_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .footer__bottom_wrap {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 1101px) {
  .footer__bottom_wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.js-pagetop {
  display: none;
}

.js-pagetop a {
  display: none;
}

@media screen and (min-width: 769px) {
  .js-pagetop {
    position: fixed;
    bottom: 0;
    right: 0;
    z-index: 500;
  }

  .js-pagetop a {
    color: var(--white);
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--blue), #0DA7CE);
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

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

layout/_swiper.scss

***************************/
.swiper-button-prev:after {
  content: "";
  width: 40px;
  height: 38px;
  -webkit-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-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>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #D6D5D5;
  transition: 0.5s;
   color: transparent !important;
}

.swiper-button-next:after {
  content: "";
  width: 40px;
  height: 38px;
  -webkit-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-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>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #D6D5D5;
  transition: 0.5s;

  color: transparent !important;
}

@media screen and (max-width: 450px) {

  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 22px;
    height: 38px;
  }
}

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

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;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  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;
  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%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  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;
  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;
  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;
  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;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: "Figtree", sans-serif;
  font-weight: bold;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: var(--blue);
  font-size: 2rem;
  margin: 5px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  display: block;
  text-decoration: none;
  padding: 0;
  background: #E7F5FA;
  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: #E7F5FA;
}

.wp-pagenavi span.current {
  color: #fff;
  background: var(--blue);
  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 #F3F3F5;
  margin-bottom: 32px;
}

.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: var(--blue);
  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 {
  margin-bottom: 80px;
}

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

@media screen and (max-width: 450px) {
  .breadcrumbs {
    font-size: 0.9rem;
  }

  .subpage-title+.breadcrumbs {
    margin-bottom: 25px;
  }
}

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

layout/_subpage.scss

***************************/
.subpage-title {
  position: relative;
}

@media screen and (min-width: 451px) {
  .subpage-title .container_l {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

@media screen and (min-width: 769px) {
  .subpage-title {
    padding-top: 120px;
  }
}

.subpage-title_img {
  margin-right: calc(50% - 50vw);
}

@media screen and (min-width: 451px) {
  .subpage-title_img {
    width: 50%;
  }
}

@media screen and (min-width: 1101px) {
  .subpage-title_img {
    width: 70%;
    height: 350px;
    overflow: hidden;
  }
}

@media screen and (min-width: 1600px) {
  .subpage-title_img {
    width: 100%;
    max-width: 90%;
  }
}

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

.subpage-title__hdg {
  position: relative;
  z-index: 5;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: var(--shippori);
}

@media screen and (min-width: 769px) {
  .subpage-title__hdg {
    font-size: 1.6rem;
  }
}

.subpage-title__hdg__en {
  display: block;
  font-family: var(--cormorant);
  font-size: 3.4rem;
  margin-top: 15px;
  margin-bottom: 5px;
}

@media screen and (min-width: 769px) {
  .subpage-title__hdg__en {
    font-size: 4rem;
  }
}

.subpage-title__caption {
  font-family: var(--shippori);
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 600;
  position: relative;
  z-index: 5;
  margin-bottom: 32px;
}

@media screen and (min-width: 769px) {
  .subpage-title__caption {
    font-size: 2.8rem;
  }
}

.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: 1.1rem; */
  /* font-weight: 700; */
  line-height: 1.2;
  margin-bottom: 30px;
  white-space: pre-wrap;
  word-break: keep-all;
  font-family: var(--shippori);
  font-size: 32px;
  font-weight: 500;
}

.hdg-type01.--white,
.hdg-type01.--white .hdg-type01__en {
  color: #fff;
}

.hdg-type01+* {
  margin-top: 20px;
}

@media screen and (min-width: 451px) {
  .hdg-type01 {
    /* font-size: 2.1rem; */
    font-size: 40px;
  }
}

@media screen and (min-width: 769px) {
  .hdg-type01 {
    /* font-size: 2.6rem; */
    font-size: 50px;
    margin-bottom: 60px;
  }
}

.hdg-type01+* {
  margin-top: 0 !important;
}

.hdg-type01__en {
  display: block;
  font-family: var(--cormorant);
  font-weight: 400;
  /* font-size: 3.4rem; */
  font-size: 16px;
  letter-spacing: 0.03em;
  /* margin-top: 15px; */
  margin-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .hdg-type01__en {
    /* font-size: 5.4rem; */
    font-size: 20px;
  }
}

@media screen and (min-width: 1101px) {
  .hdg-type01__en {
    /* font-size: 6.4rem; */
    font-size: 20px;
  }
}

.hdg-type02 {
  position: relative;
  padding: 0 0 0 18px;
  font-size: 1.8rem;
  font-family: var(--shippori);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .hdg-type02 {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
}

.hdg-type02:before {
  content: "";
  width: 8px;
  height: 100%;
  position: absolute;
  top: 0;
  background: linear-gradient(#0DA7CE, #00479D);
  left: 0;
}

.hdg-type02__en {
  font-size: 0.9rem;
  font-family: var(--cormorant);
  font-weight: bold;
  letter-spacing: 0.03em;
}

@media screen and (min-width: 769px) {
  .hdg-type02__en {
    font-size: 1.2rem;
  }
}

.hdg-type03 {
  color: #00479D;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 5px;
  margin-top: 20px;
}

@media screen and (min-width: 769px) {
  .hdg-type03 {
    font-size: 2rem;
    margin-bottom: 5px;
  }
}

.hdg-type04 {
  color: var(--blue);
  font-weight: 800;
  font-size: 1.4rem;
  margin-bottom: 5px;
}

@media screen and (min-width: 769px) {
  .hdg-type04 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}

.hdg-type04+* {
  margin-top: 0 !important;
}

.hdg-type05 {
  position: relative;
  font-size: 1.8rem;
  font-family: var(--shippori);
  color: var(--blue);
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  margin-top: 30px;
}

@media screen and (min-width: 769px) {
  .hdg-type05 {
    font-size: 2.4rem;
    margin-top: 40px;
  }
}

.hdg-balloon {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  background: var(--blue);
  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.png) 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 var(--blue);
  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: var(--blue);
  padding-left: 35px;
  margin-bottom: 6px;
  margin-top: 30px;
}

.hdg-check:after {
  content: "";
  width: 27px;
  height: 28px;
  -webkit-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-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>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  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: 2.2rem;
    margin-bottom: 6px;
  }

  .hdg-check:after {
    width: 24px;
    height: 20px;
    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-family: var(--shippori);
  font-weight: 900;
  line-height: 1.5;
  color: var(--blue);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10px;
}

.hdg-marker__inner {
  background: linear-gradient(to top, #AEE5F2 8px, transparent 8px);
}

@media screen and (max-width: 450px) {
  .hdg-marker {
    font-size: 2rem;
  }

  .hdg-marker__inner {
    background: linear-gradient(to top, #AEE5F2 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;
}

.container_l.--type02 {
  max-width: 1530px;
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
}

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

.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 {
  background: #F9F9FB;
  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 var(--blue);
  color: rgba(0, 0, 0, 0);
  text-align: center;
  margin-top: -36px;
  position: relative;
  z-index: 2;
}

.accordion01 {
  border: 2px solid var(--blue);
  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: var(--blue);
  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: var(--blue);
  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: var(--blue);
  margin-top: 12px;
  margin-bottom: 3px;
}

.accordion01__contents {
  padding: 20px;
}

.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: #F9F9FB;
  border: 1px solid #E6E6F1;
  border-radius: 3px;
  padding: 15px 20px;
}

@media screen and (max-width: 450px) {
  .addr-box {
    font-size: 1.1rem;
  }
}

.addr-box__hdg {
  font-size: 3rem;
  font-weight: 800;
  color: var(--blue);
}

@media screen and (max-width: 450px) {
  .addr-box__hdg {
    font-size: 1.3rem;
  }
}

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

object/component/_button.scss

***************************/
.btn-type01 {
  width: 100%;
  max-width: 260px;
  font-family: var(--shippori);
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  position: relative;
  min-height: 78px;
  border-radius: 3px;
  padding: 12px 50px 12px 20px;
  text-align: left;
  transition: 0.3s;
  z-index: 6;
}

.btn-type01::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  left: 0;
  transition: 0.5s;
  border-radius: 3px;
  background: linear-gradient(45deg, #00479D, #0DA7CE);
}

.btn-type01:after {
  content: "";
  width: 9px;
  height: 8px;
  -webkit-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-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>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--white);
  transition: 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  z-index: 1;
}

.btn-type01 span {
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.btn-type01 span::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.btn-type01.--back {
  padding: 10px 35px 10px 50px;
}

.btn-type01.--back:after {
  -webkit-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>');
  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: 20px;
  right: 0;
}

.btn-type01.--back span {
  padding-left: 20px;
}

.btn-type01.--back span::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: auto;
  left: 0;
}

.btn-type01:hover {
  background: var(--blue);
  opacity: 1;
}

.btn-type01:hover::before {
  opacity: 0;
}

@media screen and (max-width: 450px) {
  .btn-type01 {
    min-height: 64px;
    font-size: 1.3rem;
    max-width: 300px;
  }
}

@media screen and (min-width: 451px) {
  .btn-type01 {
    min-width: 300px;
  }
}

.btn-type02 {
  width: 100%;
  max-width: 240px;
  font-family: var(--shippori);
  border: 1px solid var(--white);
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  position: relative;
  min-height: 78px;
  border-radius: 3px;
  padding: 12px 50px 12px 20px;
  text-align: left;
  transition: 0.3s;
}

.btn-type02:after {
  content: "";
  width: 9px;
  height: 8px;
  -webkit-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-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>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--white);
  transition: 0.5s;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  z-index: 1;
}

.btn-type02 span {
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.btn-type02 span::after {
  content: "";
  width: 1px;
  height: 100%;
  display: block;
  background: var(--white);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.btn-type02:hover {
  background: var(--blue);
  border: 1px solid var(--blue);
  opacity: 1;
}

@media screen and (max-width: 450px) {
  .btn-type02 {
    min-height: 64px;
    font-size: 1.3rem;
    max-width: 300px;
  }
}

@media screen and (min-width: 451px) {
  .btn-type02 {
    min-width: 300px;
  }
}

.link-type01 {
  text-decoration: underline;
  color: var(--blue);
  display: block;
  position: relative;
  font-weight: 800;
  padding-left: 15px;
}

.link-type01:before {
  content: "";
  width: 10px;
  height: 12px;
  -webkit-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-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>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--blue);
  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: var(--blue);
  display: block;
  position: relative;
  font-weight: 800;
  padding-left: 25px;
}

.link-pdf:before {
  content: "";
  width: 17px;
  height: 21px;
  -webkit-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-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>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--blue);
  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: 32px;
  justify-content: center;
}

.anchor__item {
  width: calc(50% - 5px);
}

.anchor__item a {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 60px;
  border: 1px solid #404040;
  border-radius: 2px;
  padding: 10px 20px 10px 35px;
  font-family: var(--shippori);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.4;
}

.anchor__item a:before {
  content: "";
  width: 18px;
  height: 14px;
  -webkit-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-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>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #404040;
  transition: 0.5s;
  position: absolute;
  top: calc(50% - 6px);
  left: 16px;
}

.anchor__item a:hover {
  color: #fff;
  background: var(--blue);
  border: 1px solid var(--blue);
  opacity: 1;
}

.anchor__item a:hover:before {
  background: #fff;
}

@media screen and (min-width: 769px) {
  .anchor__item {
    width: calc(33% - 5px);
  }
}

@media screen and (min-width: 1101px) {
  .anchor__item {
    width: calc(24% - 5px);
  }
}

@media screen and (max-width: 450px) {
  .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__item {
  background: #E7F5FA;
  border-radius: 5px;
  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: #00479D;
  position: relative;
  padding-left: 25px;
  margin-bottom: 8px;
  margin-top: 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: #F9F9FB;
  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;
  -webkit-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-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>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--blue);
  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 var(--blue);
  color: rgba(0, 0, 0, 0);
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
  bottom: -25px;
}

.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: var(--blue);
  color: #fff;
  text-align: center;
  font-weight: 800;
  border-bottom: 1px solid #EAEDF6;
  padding: 10px;
}

.dl-type01 dt:last-of-type {
  border-color: var(--blue);
}

.dl-type01 dd {
  width: calc(100% - 200px);
  border-bottom: 1px solid #EAEDF6;
  border-right: 1px solid #EAEDF6;
  padding: 10px 15px;
}

.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: var(--blue);
  border: 1px solid var(--blue);
  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: var(--blue);
  border: 1px solid var(--blue);
  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: var(--blue);
  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: #F9F9FB;
  border: 1px solid #E6E6F1;
  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: var(--blue);
}

.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;
  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: var(--blue);
  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__swiper {
  position: relative;
}

.top-mv__newsWrap {
  transition: 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.47);
  position: absolute;
  bottom: 25px;
  right: 0;
  z-index: 5;
  margin: 0 10px;
}

.top-mv__newsWrap:has(.top-mv__news:hover) {
  background: transparent;
}

@media screen and (min-width: 1101px) {
  .top-mv__newsWrap {
    position: absolute;
    bottom: 25px;
    right: 25px;
    z-index: 5;
    margin: 0;
    border-radius: 3px;
    padding-bottom: 0;
  }
}

.top-mvwrap {
  position: absolute;
  bottom: 25px;
  left: 0;
  width: 100%;
  padding: 0 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 40px 0;
}

.top-mv__news {
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 3px;
}

.top-mv__news {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 20px 40px 20px 15px;
  position: relative;
  margin-left: auto;
  width: 100%;
  max-width: max-content;
}

@media screen and (min-width: 1025px) {
  .top-mv__news {
    flex-wrap: nowrap;
    justify-content: flex-end;
  }
}

.top-mv__news:after {
  content: "";
  width: 18px;
  height: 14px;
  -webkit-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-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>');
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: var(--white);
  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::after {
  width: 100%;
}

.top-mv__news__date {
  font-family: var(--Figtree);
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  flex: 0 0 auto;
}

.top-mv__news__cat {
  min-width: 85px;
  display: inline-block;
  border: 1px solid #fff;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 18px;
  text-align: center;
  color: #fff;
  flex: 0 0 auto;
}

.top-mv__news__hdg {
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.3rem;
  font-family: var(--shippori);
  color: #fff;
  position: relative;
  display: inline-block;
}

.top-mv__news__hdg::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #ffffff;
  transition: all 0.3s ease 0s;
}

@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: 30px 0;
  background: #242323;
}

.top-sponsor .container_l {
  display: grid;
  gap: 10px;
}

@media screen and (min-width: 920px) {
  .top-sponsor .container_l {
    grid-template-columns: 250px 1fr;
    gap: 20px;
    align-items: center;
  }
}

.top-sponsor__hdg {
  font-family: var(--shippori);
  font-size: 10px;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #fff;
  text-align: left;
}

@media screen and (min-width: 769px) {
  .top-sponsor__hdg {
    font-size: 10px;
    margin-bottom: 0;
  }
}

.top-sponsor__hdg__en {
  font-family: var(--cormorant);
  font-size: 20px;
  font-weight: bold;
  display: block;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

@media screen and (min-width: 769px) {
  .top-sponsor__hdg__en {
    font-size: 22px;
  }
}

.top-sponsor__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 20px;
}

@media screen and (min-width: 920px) {
  .top-sponsor__list {
    display: flex;
    justify-content: flex-start;
    justify-content: flex-start;
    gap: 8px 10px;
    overflow-x: auto;
  }
}

.top-sponsor__list__item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 2px;
}

@media screen and (min-width: 1025px) {
  .top-sponsor__list__item {
    max-width: 280px;
    min-width: auto;
  }
}

.top-sponsor__list__item img {
  border-radius: 3px;
  width: 100%;
}

@media screen and (max-width: 450px) {
  .top-sponsor {
    padding: 35px 0;
  }

  .top-sponsor__hdg {
    font-size: 10px;
  }

  .top-sponsor__hdg__en {
    font-size: 20px;
  }

  .top-sponsor__list__item {
    max-width: 280px;
  }
}

.top-about {
  overflow: hidden;
  position: relative;
}

.top-about::before {
  content: "";
  background: url(img/top/about_bg.png);
  background-position: center right;
  width: 320px;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -40px;
  z-index: -1;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (min-width: 1024px) {
  .top-about::before {
    width: 100%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
  }
}

@media screen and (min-width: 920px) {
  .top-about::before {
    max-width: 1160px;
    right: 0;
  }
}

.top-about__box {
  margin: 100px 0;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .top-about__box {
    display: flex;
    flex-direction: row;
    margin: 228px 0;
  }
}

.top-about__box__image {
  margin-top: 40px;
}

.top-about__box__hdg {
  margin-bottom: 20px;
  font-family: var(--shippori);
  font-weight: 500;
  font-size: min(5.3vw, 3.6rem);
  line-height: 1.7;
}

@media screen and (min-width: 769px) {
  .top-about__box__hdg {
    width: 100%;
  }
}

.top-about__box__text .btn-type01 {
  margin-top: 60px;
}

.br_pc {
  display: none;
}

@media screen and (min-width: 769px) {
  .br_pc {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .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, 2rem);
    line-height: 1.8;
  }
}

@media screen and (max-width: 450px) {
  .top-about {
    padding: 70px 0 60px;
  }
}

.top-about__swiper_box {
  margin-top: 30px;
  margin-bottom: 70px;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .top-about__swiper_box {
    margin-top: 100px;
    margin-bottom: 100px;
  }
}

.top-about__swiper_box {
  overflow: hidden;
}

.scroll-text {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 100px;
  font-weight: 500;
  font-family: var(--cormorant);
  color: rgba(247, 247, 247, 0.5);
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  .scroll-text {
    font-size: 200px;
  }
}

.scroll_wrap {
  width: 100%;
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
  z-index: 5;
  letter-spacing: 0.1em;
}

@media screen and (min-width: 1024px) {
  .scroll_wrap {
    bottom: 140px;
  }
}

.scroll_inner {
  display: flex;
  flex-wrap: nowrap;
  gap: 80px;
}

.scroll_cont {
  display: grid;
  flex-shrink: 0;
}

@-webkit-keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 40px));
  }
}

@keyframes infiniteScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 40px));
  }
}

.scroll_track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  -webkit-animation: infiniteScroll 80s linear infinite;
  animation: infiniteScroll 80s linear infinite;
}

.top-about__swiper img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.top-member {
  background: #404040;
  padding: 80px 0;
  overflow: hidden;
}

.top-member .btn-type01 {
  position: relative;
  z-index: 5;
}

.top-member__swiper {
  position: relative;
  margin-bottom: 50px;
  margin-top: 40px;
}

.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 {
  -webkit-animation: arrow_slide 0.3s both;
  animation: arrow_slide 0.3s both;
}

@-webkit-keyframes arrow_slide {
  0% {
    background-position: 50% 50%;
  }

  50% {
    background-position: 200% 50%;
  }

  50.1% {
    background-position: -200% 50%;
  }

  100% {
    background-position: 50% 50%;
  }
}

@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;
  border-radius: 5px;
  overflow: hidden;
}

.top-member__image img {
  transition: 0.3s;
  width: 100%;
}

.top-member__image:before {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(360deg, rgba(0, 71, 157, 0.9), 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__box {
  position: absolute;
  bottom: 0;
  left: 0;
  color: var(--white);
  z-index: 2;
  padding: 0 20px 20px;
}

.top-member__hdg {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 10px;
  font-family: var(--shippori);
}

@media screen and (max-width: 450px) {
  .top-member__hdg {
    font-size: 1.8rem;
  }
}

.top-member__profile {
  font-size: 1.2rem;
  font-size: 500;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  /* gap: 5px 10px; */
  gap: 5px 0;
}

.top-member__job {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* font-size: 1.1rem; */
  font-size: 1.5rem;
  line-height: 23px;
  display: grid;
  grid-template-columns: 5px 1fr;
  gap: 5px;
  align-items: center;
}

.top-member__job::before {
  content: "";
  width: 5px;
  height: 5px;
  background: var(--white);
  border-radius: 50%;
  display: block;
}

@media screen and (max-width: 450px) {
  .top-member {
    background-image: url(img/top/member_top_sp.png), url(img/top/member_bottom_sp.png);
  }

  .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 {
  border-radius: 5px;
  overflow: hidden;
  color: #fff;
}

.top-contactLink__image img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 180px;
}

@media screen and (min-width: 451px) {
  .top-contactLink__image img {
    height: 200px;
  }
}

@media screen and (min-width: 1101px) {
  .top-contactLink__image img {
    height: 280px;
  }
}

.top-contactLinkWrap {
  position: relative;
}

.top-contactLink__text {
  width: 100%;
  max-width: 1100px;
  align-self: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 20px;
  font-weight: 400;
  font-family: var(--shippori);
  line-height: 1.6;
  padding: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
}

@media screen and (min-width: 1101px) {
  .top-contactLink__text {
    flex-direction: row;
    justify-content: center;
    justify-content: space-between;
    padding: 50px 60px;
    font-size: 28px;
  }
}

@media screen and (max-width: 768px) {
  .top-contactLink {
    flex-direction: column;
  }

  .top-contactLink__image {
    width: 100%;
  }

  .top-contactLink__text {
    width: 100%;
    padding: 25px;
    font-size: 18px;
    line-height: 1.5;
  }

  .top-contactLink__text p {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 450px) {
  .top-contactLinkWrap {
    padding: 50px 0;
  }

  .top-contactLink__text {
    font-size: 18px;
  }
}

.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: var(--blue);
}

.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 {
  -webkit-animation: arrow_slide 0.3s both;
  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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--blue);
  color: var(--blue);
  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;
}

.top-recruit__box {
  background: #3B4352;
  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: var(--blue);
  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 {
  -webkit-animation: arrow_slide 0.3s both;
  animation: arrow_slide 0.3s both;
}

.top-recruit__image {
  margin-bottom: 20px;
  border-radius: 5px;
  overflow: hidden;
}

.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: var(--blue);
  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: 65px;
  }

  .top-recruit__box {
    padding: 65px 0 70px;
    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;
  padding: 184px 0 155px;
  color: var(--blue);
  position: relative;
}

.top-openCompany:before,
.top-openCompany:after {
  content: "";
  width: 100%;
  height: 140px;
  position: absolute;
  left: 0;
  z-index: 1;
}

.top-openCompany:before {
  top: 0;
  background: linear-gradient(to top left, #FFD23B 49.8%, #fff 50.2%);
}

.top-openCompany:after {
  bottom: 0;
  background: linear-gradient(to top left, #fff 49.8%, #FFD23B 50.2%);
}

.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: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  background: var(--blue);
  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 {
    background: #FFD23B;
    padding: 100px 0 95px;
    color: var(--blue);
    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%);
  }

  .top-openCompany:after {
    background: linear-gradient(to top left, #fff 49.5%, #FFD23B 50.5%);
  }
}

.top-taget {
  padding: 90px 0 0;
}

.top-taget__list__item {
  font-size: 1.3rem;
}

.top-taget__list__item a {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  background: #F9F9FB;
}

.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 {
  -webkit-animation: arrow_slide 0.3s both;
  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 {
  -o-object-fit: cover;
  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: -webkit-fit-content;
  width: -moz-fit-content;
  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: var(--blue);
  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: var(--blue);
  margin-top: 10px;
}

.top-taget__list__hdg02 {
  color: var(--blue);
  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-direction: column;
  gap: 5px 0;
}

@media screen and (max-width: 450px) {
  .top-more__list {
    gap: 10px 0;
  }
}

.top-more__list__item a {
  display: block;
  position: relative;
  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 {
  -webkit-animation: arrow_slide 0.3s both;
  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 {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  transition: 0.3s;
  -o-object-position: top;
  object-position: top;
}

.top-more__list__image:after {
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #282828, transparent);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.top-more__list__text {
  position: relative;
  z-index: 2;
  color: #fff;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .top-more__list__text {
    min-height: 375px;
    justify-content: flex-end;
  }
}

.top-more__list__hdg {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.4;
  font-family: var(--shippori);
}

.top-more__list__hdg__en {
  font-size: 3.3rem;
  display: block;
  font-family: var(--cormorant);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.2;
}

@media screen and (min-width: 769px) {
  .top-more__list__hdg__en {
    font-size: 4.3rem;
    font-weight: 400;
  }
}

@media screen and (min-width: 1101px) {
  .top-more__list__hdg__en {
    font-size: 5.3rem;
  }
}

.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_white.svg) no-repeat center;
  border: 1px solid var(--white);
  border-radius: 5px;
  position: absolute;
  bottom: 0;
  right: 0;
  transition: 0.3s;
  z-index: 2;
}

.top-more__list__p br {
  display: block;
}

@media screen and (max-width: 768px) {
  .top-more__list__p br {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .top-more__list {
    justify-content: center;
  }

  .top-more__list__item {
    width: 100%;
  }
}

@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: 10px;
    margin-bottom: 15px;
    letter-spacing: 0.08em;
  }
}

@media screen and (max-width: 450px) and (min-width: 1101px) {
  .top-more__list__hdg {
    font-size: 16px;
  }
}

@media screen and (max-width: 450px) {
  .top-more__list__hdg__en {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 450px) {
  .top-more__list__p {
    font-size: 1.1rem;
    padding-right: 55px;
  }

  .top-more__list__p:after {
    width: 30px;
    background-size: 11px 9px;
  }
}

@media screen and (min-width: 1101px) {
  .top-more__list__p {
    font-size: 1.6rem;
  }
}

.top-blog {
  padding: 60px 0 0;
}

.top-blog .t-center {
  margin-top: 20px;
}

@media screen and (min-width: 1101px) {
  .top-blog .t-center {
    text-align: right;
    margin-top: 40px;
  }
}

.top-blog__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.top-blog_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 1101px) {
  .top-blog_wrap {
    flex-direction: row;
  }

  .top-blog_wrap .hdg-type01 {
    width: 100%;
    max-width: 300px;
  }
}

.top-blog__list__item {
  border-top: 1pt solid #CDCFD9;
  width: 100%;
}

.top-blog__list__item:last-child {
  border-bottom: 1px solid #CDCFD9;
}

.top-blog__list__item a {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 0;
}

.top-blog__list__image {
  border-radius: 2px;
  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: 0.9rem;
  font-weight: bold;
  color: #888A95;
  margin-right: 6px;
}

.top-blog__list__cat {
  min-width: 75px;
  display: inline-block;
  border: 1px solid #00479D;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.8;
  text-align: center;
  color: #00479D;
  padding: 0 10px;
}

.top-blog__list__hdg {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 5px;
  font-family: var(--shippori);
}

@media screen and (max-width: 768px) {
  .top-blog__list__item {
    width: 100%;
  }

  .top-blog__list__hdg {
    font-size: 1.2rem;
  }
}

@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 {
    -o-object-fit: cover;
    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: #F9F9FB;
  padding: 45px 0 60px;
}

.top-contents__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
}

@media screen and (max-width: 450px) {
  .top-contents__list {
    gap: 20px;
  }
}

.top-contents__list__item {
  width: 100%;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

@media screen and (min-width: 769px) {
  .top-contents__list__item {
    justify-content: flex-end;
  }
}

@media screen and (min-width: 769px) {
  .top-contents__list__item.column-2 {
    width: 100%;
    max-width: calc(50% - 3px);
  }
}

@media screen and (min-width: 769px) {
  .top-contents__list__item.column-3 {
    width: 100%;
    max-width: calc(33.3333333333% - 4px);
  }
}

.top-contents__list__item::before {
  content: "";
  background: linear-gradient(15deg, #282828 10%, transparent 80%);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 3px;
}

.top-contents__list__item a {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  padding: 40px 25px;
  height: 150px;
}

@media screen and (min-width: 769px) {
  .top-contents__list__item a {
    height: 200px;
  }
}

.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 {
  -webkit-animation: arrow_slide 0.3s both;
  animation: arrow_slide 0.3s both;
}

.top-contents__list__image {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.top-contents__list__image img {
  transition: 0.3s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-contents__list__hdg {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
  position: relative;
  padding-right: 35px;
  color: var(--white);
  font-family: var(--shippori);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 769px) {
  .top-contents__list__hdg {
    font-size: 2.4rem;
    font-weight: 500;
  }

  .top-contents__list__hdg br {
    display: none;
  }
}

.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;
  border: 1px solid var(--white);
  border-radius: 5px;
  position: absolute;
  top: calc(50% - 12px);
  right: 0;
  transition: 0.3s;
  z-index: 2;
}

@media screen and (min-width: 1101px) {
  .top-contents__list__hdg:after {
    width: 52px;
    top: calc(50% - 28px);
  }
}

.top-contents__list__hdg__en {
  display: block;
  font-family: var(--cormorant);
  font-size: 9px;
  font-weight: 800;
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .top-contents__list__hdg__en {
    font-size: 12px;
  }
}

@media screen and (max-width: 450px) {
  .top-contents {
    padding: 60px 0;
  }

  .top-contents__list {
    gap: 20px;
  }

  .top-contents__list__item {
    width: 100%;
  }

  .top-contents__list__image {
    flex: 0 0 100px;
  }

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

.top-mv__swiper {
  position: relative;
}

.top-mv__img {
  width: 100%;
  /* height: 100vh; */
}

.top-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.top_title {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
  font-size: 10vw;
  font-family: var(--shippori);
  font-weight: 500;
  line-height: 1.2;
}

@media screen and (min-width: 1600px) {
  .top_title {
    font-size: 130px;
  }
}

.top_title span:last-child {
  text-indent: 10vw;
}

@media screen and (min-width: 769px) {
  .top_title span:last-child {
    text-indent: 13vw;
  }
}

@media screen and (min-width: 1600px) {
  .top_title span:last-child {
    text-indent: 160px;
  }
}

.top_message {
  width: 100%;
  display: grid;
  padding: 0 20px;
}

@media screen and (min-width: 769px) {
  .top_message {
    grid-template-columns: 1fr 400px 1fr;
  }
}

@media screen and (min-width: 960px) {
  .top_message {
    grid-template-columns: 1fr 500px 1fr;
  }
}

@media screen and (min-width: 1200px) {
  .top_message {
    grid-template-columns: 1fr 600px 1fr;
  }
}

.top_message_contents {
  background: #3D2C2C;
  color: var(--white);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.top_message_contents .hdg-type01__en {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 20px;
}

@media screen and (min-width: 960px) {
  .top_message_contents {
    padding: 30px 40px;
  }

  .top_message_contents .hdg-type01__en {
    margin-top: 0;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .top_message_contents {
    padding: 140px 60px;
  }
}

.top_message_contents .hdg-type01,
.top_message_contents .top-message__box__hdg {
  text-align: center;
}

.top_message_contents .hdg-type01 {
  margin-bottom: 0;
}

.top_message_contents p {
  text-align: center;
}

.top_message_contents .btn-type01 {
  margin-top: 40px;
}

@media screen and (min-width: 960px) {
  .top_message_contents .btn-type01 {
    margin-top: 60px;
  }
}

.top-message__box__hdg {
  font-family: var(--shippori);
  font-weight: 500;
  line-height: 1.6;
  font-size: min(5.2vw, 4rem);
  margin-bottom: 40px;
}


.top_message_img {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  .top_message_img {
    height: auto;
  }
}

.top_message_img img {
  width: 100%;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.top_company {
  padding-top: 100px;
  padding-bottom: 40px;
  position: relative;
}

@media screen and (min-width: 769px) {
  .top_company {
    padding-top: 190px;
    padding-bottom: 120px;
  }
}

.top_company .hdg-type01__en {
  margin-top: 0;
}

.top_company .hdg-type01 {
  margin-bottom: 0;
  color: var(--white);
  margin-bottom: 20px;
}

.top_company::before {
  content: "";
  /* width: 400px;
  height: 700px; */
  width: 500px;
  height: 750px;
  background: linear-gradient(180deg, #0DA7CE, #00479D);
  display: block;
  z-index: -1;
  position: absolute;
  /* top: -300px;
  right: 60%; */
  top: -250px;
  right: 30%;
  transform: rotate(-45deg);
}

@media screen and (min-width: 540px) {
  .top_company::before {
    width: 600px;
    height: 900px;
    top: -300px;
    right: 41%;
  }
}

@media screen and (min-width: 769px) {
  .top_company::before {
    width: 600px;
    height: 900px;
    top: -300px;
    right: 50%;
  }
}

@media screen and (min-width: 1135px) {
  .top_company::before {
    width: 800px;
    height: 1200px;
    top: -500px;
    right: 70%;
  }
}



.top_company_lead_text {
  width: 100%;
  max-width: 638px;
  color: #fff;
}

@media screen and (min-width: 769px) {
  .top_company_lead_text {
    mix-blend-mode: difference;
    color: #383838;
  }
}

.top_company_item a:hover .top_company_img img {
  transform: scale(1.05);
}

.top_company_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 60px;
  margin-top: 40px;
}

@media screen and (min-width: 1025px) {
  .top_company_list {
    margin-top: 60px;
  }
}

.top_company_item {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .top_company_item {
    width: 100%;
    max-width: calc(50% - 30px);
  }
}

@media screen and (min-width: 1025px) {
  .top_company_item {
    width: 100%;
    max-width: calc(33.3333333333% - 40px);
  }
}

@media screen and (min-width: 1200px) {
  .top_company_item {
    width: 100%;
    max-width: calc(33.3333333333% - 60px);
  }
}

.top_company_img {
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 420/280;
}

@media screen and (min-width: 769px) {
  .top_company_img {
    border-radius: 3px;
    overflow: hidden;
    aspect-ratio: 421/542;
  }
}

.top_company_img img {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
}

.top_company_title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--shippori);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.08em;
  margin-top: 10px;
}

@media screen and (min-width: 769px) {
  .top_company_title {
    margin-top: 20px;
  }
}

.top_company_title-arrow {
  background: linear-gradient(#00479D, #0DA7CE);
  border-radius: 3px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.top_company_text {
  line-height: 2;
  margin-top: 10px;
}

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

object/object/project/_merit.scss

***************************/
.merit__message {
  background: #F9F9FB;
  padding: 60px 0 40px;
}

.merit__message-job {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--blue);
  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: var(--blue);
}

@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: var(--blue);
  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: #F9F9FB;
  border: 3px solid #EFEFF6;
  text-align: center;
  line-height: 1.2;
  border-radius: 6px;
  padding: 20px;

  display: flex;
  flex-direction: column;
}
.data__list__detail{
  margin-top: auto;
  margin-bottom: auto;
}
.data__list__item.--half {
  width: calc(50% - 5px);
}

@media screen and (max-width: 450px) {
  .data__list__item.--half {
    padding: 10px 5px 5px;
  }
}

.data__list__hdg {
  text-align: center;
  color: var(--blue);
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: 5px;
}

@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: var(--blue);
}

.data__list__detail img {
  margin-right: 5px;
  vertical-align: baseline;
}

@media screen and (max-width: 450px) {
  .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: 450px) {
  .data__list__item.--half .data__list__num {
    font-size: 3.8rem;
  }
}

.data__list__note {
  font-size: 1rem;
  font-weight: bold;
  color: #A8A8B5;
}

@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;
  }
}

.base_list {
  gap: 10px;
}

.base_item .data__list__detail {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
}

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

object/object/project/_contribution.scss

***************************/
.contribution-sponsor {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 15px;
}

@media screen and (min-width: 451px) {
  .contribution-sponsor {
    margin-top: 30px;
  }
}

.contribution-sponsor__item {
  width: 100%;
}

/* .contribution-sponsor__item__inner {
  border-radius: 8px;
  padding: 20px;
} */

.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 {
  width: 250px;
  /* height: 70px; */
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  /* padding: 10px 20px; */
  background: #fff;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  /* 260302 add */
  width: min(100%, 500px);
}

.contribution-sponsor__logo img {
  /* 260302 add */
  width: 100%;
}

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

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: calc(50% - 8px);
  }

  .achievements-list .top-achievements__hdg {
    font-size: 1.5rem;
  }
}

.detail-image {
  margin-top: 30px;
}

.detail-contents {
  margin: 20px 0 40px;
}

.detail-image img {
  aspect-ratio: 1100/600;
  object-fit: cover;
}

.image-wrap img {
  /* aspect-ratio: 1100/600; */
  /* object-fit: cover; */
  object-fit: contain;
 
}
.image-wrap{
 text-align: center;
}

@media screen and (max-width: 450px) {
  .detail-image {
    margin-top: 20px;
  }

  .detail-contents {
    margin: 10px 0 30px;
  }
}

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

object/object/project/_requirements.scss

***************************/
.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;
  content: "" !important;
  color: transparent !important;
}

@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_profile.scss

***************************/
.member_profile .subpage-section {
  padding-bottom: 20px;
}

@media screen and (min-width: 769px) {
  .member_profile .subpage-section {
    padding-bottom: 30px;
  }
}

.member_profile .top-contactLinkWrap {
  padding-top: 0;
  padding-bottom: 0;
}

.member_profile .top-contents {
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .member_profile .top-contents {
    margin-top: 60px;
  }
}

.member_profile_list {
  /* display: flex;
  flex-direction: column; */
  display: grid;
  gap: 8px;
}

@media screen and (min-width: 769px) {
  .member_profile_list {
    /* flex-direction: row; */
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (min-width: 1024px) {
  .member_profile_list {
    /* flex-direction: row; */
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.member_profile_item {
  width: 100%;
}

.member_profile_item .top-member__swiper-slide {
  max-width: 100%;
}

.member_profile-detail {
  margin-bottom: 50px;
}

.member_profile-detail .top-member__profile {
  color: var(--blue);
}

.member_profile-detail .top-member__job::before {
  background: var(--blue);
}

.memberDetail-other {
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  padding-left: 15px;
  position: relative;
  line-height: 1.5;
  margin-top: 20px;
}

.memberDetail-other p {
  color: #888A95;
}

.memberDetail-other:before {
  content: "";
  width: 2px;
  height: 100%;
  border-radius: 9999px;
  position: absolute;
  top: 0;
  background: var(--blue);
  left: 0;
}

@media screen and (min-width: 451px) {
  .memberDetail-other {
    font-size: 1.2rem;
    margin-top: 15px;
  }
}

.member__hdg-name {
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: 700;
  margin-bottom: 5px;
  font-family: var(--shippori);
  display: flex;
  align-items: center;
  gap: 5px;
}

@media screen and (max-width: 450px) {
  .member__hdg-name {
    font-size: 2rem;
  }
}

.member__hdg-name__en {
  color: var(--blue);
  font-family: var(--cormorant);
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.08em;
}

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

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: flex;
}

.flex-row {
  flex-direction: row;
}

.flex-row-rev {
  flex-direction: row-reverse;
}

.flex-col {
  flex-direction: col;
}

.flex-col-rev {
  flex-direction: col-reverse;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

.flex-align-start {
  align-items: flex-start;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-center {
  align-items: center;
}

.flex-align-baseline {
  align-items: baseline;
}

.flex-item {
  flex: 0 1 auto;
}

.flex-item0 {
  flex: 0 0 auto;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

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

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

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 {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.fv {
  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: #404040;
}

.fc--red {
  color: red;
}

.txtdeco-none {
  text-decoration: none;
}

.figtree {
  font-family: "Figtree", sans-serif;
}

.txt-fitCenter {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  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;
}

.top-blog .top-blog__list {
  width: 100%;
}

.wpcf7-spinner {
  display: none;
}

/*# sourceMappingURL=style.css.map */

/* 260421 */
.top-member .top-member__image{
  aspect-ratio: 240/300;
}

.top-member .top-member__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member_profile-detail .top-member__hdg{
  margin-top: 20px;
}