@charset "UTF-8";

html {
  width: 100%;
  height: 100%;
}

@media (max-width: 1200px) and (min-width: 769px) {
  html {
    font-size: 16px;
    font-size: 1.3333333333vw;
  }
}

@media (max-width: 390px) {
  html {
    font-size: 16px;
    font-size: 4.1025641026vw;
  }
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  overflow-x: hidden;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  color: #182129;
  font-size: 1rem;
}

body.no_scroll {
  overflow: hidden;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #182129;
  font-size: max(1rem, 12px);
}

p {
  font-size: max(1rem, 14px);
  line-height: 2;
}

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

strong {
  font-weight: 700;
}

.en {
  font-family: "Montserrat", sans-serif;
}

.font-ttl {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.u-external {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.u-external::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  background: url("../img/common/icon_window.svg") no-repeat center/100%;
}

.u-tb {
  display: none;
}

.u-sp {
  display: none;
}

@media screen and (max-width: 992px) {
  .u-tb {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  body {
    font-size: 0.875rem;
  }

  p {
    font-size: 0.875rem;
  }

  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }
}

/* -----------------------------------
  header
  ----------------------------------- */
.l-header {
  width: 100%;
  margin: 0 auto;
  transition: 0.3s ease all;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  background-color: #fff;
  box-shadow: 0 0 24px rgba(24, 33, 41, 0.08);
}

.l-header__logo {
  position: relative;
  z-index: 99999;
}

.l-header__logo a {
  transition: 0.3s ease;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  color: #4C8DCB;
}

@media (hover: hover) {
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}

.l-header__logo .text {
  font-weight: 600;
}

.l-header__inner {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  transition: 0.5s;
  height: 100%;
  padding: 0 2vw;
}

.l-header__nav {
  height: 100%;
}

.l-header__list {
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: end;
  justify-content: flex-end;
  position: relative;
  gap: 2vw;
  z-index: 9;
  font-family: "Zen Kaku Gothic New", sans-serif;
  height: 100%;
}

.l-header__list li {
  position: relative;
}

.l-header__list li>a {
  font-weight: 700;
  font-size: 1rem;
  display: block;
  gap: 10px;
  position: relative;
  transition: 0.3s ease;
  padding: 36px 0;
}

@media (hover: hover) {
  .l-header__list li>a:hover {
    color: #4C8DCB;
  }
}

.l-header__list li.has-child>a {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 5px;
}

.l-header__list li.has-child>a::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 6px;
  -webkit-mask-image: url("../img/common/icon_down.svg");
  mask-image: url("../img/common/icon_down.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #182129;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .l-header__list li.has-child:hover>a {
    color: #4C8DCB;
  }

  .l-header__list li.has-child:hover>a::after {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    background-color: #4C8DCB;
  }

  .l-header__list li.has-child:hover .sub-menu {
    opacity: 1;
    visibility: visible;
  }
}

.l-header__list li .sub-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  transition: 0.3s ease;
  padding-top: 12px;
}

.l-header__list li .sub-menu .list {
  min-width: 200px;
  padding: 8px 16px;
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(24, 33, 41, 0.08);
  background-color: #fff;
}

.l-header__list li .sub-menu .list li:not(:last-child) {
  border-bottom: 1px solid #EDF0F2;
}

.l-header__list li .sub-menu .list li a {
  display: block;
  padding: 16px 0;
  font-size: 0.875rem;
  text-decoration: none;
}

@media (hover: hover) {
  .l-header__list li .sub-menu .list li a:hover {
    color: #4C8DCB;
  }
}

.l-header__list li.nav-entry a {
  font-size: 1rem;
  background-color: #4C8DCB;
  border: 1px solid #4C8DCB;
  color: #fff;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 1.25rem;
  border-radius: 8px;
}

@media (hover: hover) {
  .l-header__list li.nav-entry a:hover {
    background-color: #fff;
    color: #4C8DCB;
  }
}

.c-hamburger {
  display: none;
}

@media screen and (max-width: 1340px) {
  .l-header__inner {
    padding: 0 16px;
  }

  .l-header__logo {
    width: 25%;
  }

  .l-header__logo .logo {
    width: 50%;
  }

  .l-header__list {
    gap: 1rem;
  }
}

@media screen and (max-width: 992px) {
  .l-header {
    padding: 0;
    height: 64px;
  }

  .l-header__inner {
    padding: 0 16px;
    -ms-flex: 1;
    flex: 1;
  }

  .l-header__logo {
    line-height: 1;
    position: relative;
    z-index: 999999;
    margin-right: auto;
    width: auto;
  }

  .l-header__logo a {
    gap: 8px;
  }

  .l-header__logo .logo {
    width: 36%;
    display: inline-block;
  }

  .l-header__logo .text {
    font-weight: 600;
    font-size: max(10px, 2vw);
  }

  .l-header__container {
    display: none;
    z-index: 99999;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: -100%;
    left: 0;
    padding: 88px 32px 0;
    transition: top 0.5s ease;
  }

  .l-header__container.is-active {
    top: 0;
  }

  .l-header__nav {
    display: block;
    -ms-flex: initial;
    flex: initial;
  }

  .l-header__list {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 0;
    height: auto;
    padding-bottom: 40px;
  }

  .l-header__list>li {
    width: 100%;
    border-bottom: 1px solid #F5F7FA;
  }

  .l-header__list>li:first-child {
    border-top: 1px solid #F5F7FA;
  }

  .l-header__list>li a {
    padding: 16px 0;
    font-size: max(1rem, 2vw);
  }

  .l-header__list>li.has-child>a {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .l-header__list>li.has-child>a.is-open {
    color: #4C8DCB;
  }

  .l-header__list>li.has-child>a.is-open::after {
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .l-header__list>li .sub-menu {
    opacity: 1;
    visibility: visible;
    position: static;
    transition: none;
    padding-top: 0;
    display: none;
  }

  .l-header__list>li .sub-menu .list {
    min-width: 200px;
    padding: 8px 16px 32px;
    border-radius: 8px;
    box-shadow: none;
  }

  .l-header__list>li .sub-menu .list li:not(:last-child) {
    border-bottom: none;
    margin-bottom: 16px;
  }

  .l-header__list>li .sub-menu .list li a {
    display: block;
    padding: 0;
    font-size: max(0.875rem, 1.8vw);
  }

  .l-header__list>li.nav-entry {
    border-bottom: none;
    margin-top: 40px;
  }

  .l-header__list>li.nav-entry a {
    -ms-flex-pack: center;
    justify-content: center;
    font-size: max(1rem, 2vw);
  }

  .l-header__list>li.nav-entry::after {
    content: "";
    display: block;
    width: 18px;
    height: 7px;
    -webkit-mask-image: url("../img/common/icon_arrow.svg");
    mask-image: url("../img/common/icon_arrow.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-position: center;
    mask-position: center;
    background-color: #fff;
    position: absolute;
    top: 50%;
    right: 16px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .c-hamburger {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    position: absolute;
    width: 64px;
    height: 32px;
    z-index: 999999;
    display: block;
    top: 16px;
    right: 16px;
    background-color: #4C8DCB;
    border-radius: 8px;
  }

  .c-hamburger span {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    position: absolute;
    height: 2px;
    background-color: #fff;
    left: 20px;
    border-radius: 1px;
  }

  .c-hamburger span:nth-of-type(1) {
    width: 18px;
    top: 8px;
  }

  .c-hamburger span:nth-of-type(2) {
    width: 12px;
    top: 14px;
  }

  .c-hamburger span:nth-of-type(3) {
    width: 24px;
    top: 20px;
  }

  .c-hamburger.is-active span:nth-of-type(1) {
    width: 24px;
    -ms-transform: translateY(6px) rotate(-30deg);
    transform: translateY(6px) rotate(-30deg);
  }

  .c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }

  .c-hamburger.is-active span:nth-of-type(3) {
    -ms-transform: translateY(-6px) rotate(30deg);
    transform: translateY(-6px) rotate(30deg);
  }
}

/* ------- floating ------- */
.l-floating {
  display: block;
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 99;
}

.l-floating a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
  width: 100px;
  height: 100px;
  background-color: #4C8DCB;
  border: 1px solid #4C8DCB;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(24, 33, 41, 0.08);
  transition: 0.3s ease;
}

@media (hover: hover) {
  .l-floating a:hover {
    background-color: #fff;
  }

  .l-floating a:hover .text {
    color: #4C8DCB;
  }

  .l-floating a:hover .icon {
    border-color: #4C8DCB;
  }

  .l-floating a:hover .icon::after {
    background-color: #4C8DCB;
  }
}

.l-floating .text {
  font-weight: 600;
  color: #fff;
  transition: 0.3s ease;
}

.l-floating .icon {
  display: block;
  width: 26px;
  height: 32px;
  border-radius: 4px;
  border: 1px solid #fff;
  position: relative;
  transition: 0.3s ease;
}

.l-floating .icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 8px;
  -webkit-mask-image: url("../img/common/icon_arrow.svg");
  mask-image: url("../img/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
  transition: 0.3s ease;
  position: absolute;
  bottom: 8px;
  left: -8px;
  transition: 0.3s ease;
}

@media screen and (max-width: 768px) {
  .l-floating {
    width: 100%;
    bottom: 0;
    right: 0;
    z-index: 99;
  }

  .l-floating a {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 20px;
    width: 100%;
    height: 56px;
    border-radius: 8px 8px 0 0;
    font-size: 1.25rem;
  }

  .l-floating .icon::after {
    width: 20px;
    bottom: 10px;
  }
}

/* -------- cta -------- */
.l-cta {
  padding: 7.5rem 0;
  border-radius: 7.5rem 7.5rem 0 0;
  background: linear-gradient(135deg, #82B0DB 0%, #4C8DCB 50%, #82B0DB 100%);
  color: #fff;
  position: relative;
  z-index: 9999;
}

.l-cta__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-align: center;
  align-items: center;
}

.l-cta__block .c-btn {
  color: #fff;
  padding-right: 40px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.l-cta__block .c-btn .text {
  position: relative;
  z-index: 1;
}

.l-cta__block .c-btn .icon {
  background: none;
}

.l-cta__block .c-btn .icon::after {
  background-color: #fff;
}

.l-cta__block .c-btn::before {
  content: "";
  display: block;
  border: 1px solid #fff;
  width: 56px;
  height: 100%;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .l-cta__block .c-btn:hover::before {
    width: 100%;
    background-color: #fff;
  }

  .l-cta__block .c-btn:hover .icon::after {
    background-color: #4C8DCB;
  }
}

.l-cta__ttl {
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
  margin-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .l-cta {
    padding: 64px 0;
    border-radius: 32px 32px 0 0;
  }

  .l-cta__block {
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 0 16px;
  }

  .l-cta__block .c-btn {
    color: #4C8DCB;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    padding: 12px;
    line-height: 1.66;
  }

  .l-cta__block .c-btn .icon {
    background: none;
    position: absolute;
    top: 50%;
    right: 16px;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .l-cta__block .c-btn .icon::after {
    background-color: #4C8DCB;
  }

  .l-cta__block .c-btn::before {
    display: none;
  }

  .l-cta__ttl {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
}

/* ---------------------------------------------
  footer フッター
  --------------------------------------------- */
.l-footer {
  position: relative;
  z-index: 999;
  background-color: #F5F7FA;
  padding: 80px 0 40px;
}

.l-footer__container {
  max-width: 1200px;
  display: grid;
  grid-template-columns: auto 1fr;
  justify-items: end;
  gap: 1.25rem;
  padding-bottom: 11.875rem;
}

.l-footer__links {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}

.l-footer__links a {
  color: #5F6061;
  font-size: 0.875rem;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .l-footer__links a:hover {
    opacity: 0.5;
  }
}

.l-footer__nav {
  display: -ms-flexbox;
  display: flex;
  /* gap: 4.625rem; */
  gap: 50px;
}

.l-footer__nav .nav-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  /* gap: 40px; */
  gap: 50px;
  line-height: 1.1;
}

.l-footer__nav .nav-list a {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .l-footer__nav .nav-list a:hover {
    color: #4C8DCB;
    -ms-transform: translateX(8px);
    transform: translateX(8px);
  }
}

.l-footer__nav .sub-menu {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.l-footer__nav .sub-menu a {
  font-size: 0.875rem;
  color: #5F6061;
  font-weight: 500;
  transition: 0.3s ease;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.l-footer__nav .sub-menu a::before {
  content: "";
  display: block;
  width: 9px;
  height: 1px;
  background-color: #4C8DCB;
  border-radius: 6px;
}

.l-footer__bottom {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 40px 0 80px;
}

.l-footer__copy small {
  font-size: 0.75rem;
  color: #B4B5B8;
}

.c-page-top {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-weight: 600;
}

.c-page-top .text {
  transition: 0.3s ease;
}

.c-page-top .icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: #fff;
  transition: 0.3s ease;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-page-top .icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 8px;
  -webkit-mask-image: url("../img/common/icon_arrow.svg");
  mask-image: url("../img/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #182129;
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: 0.3s ease;
}

@media (hover: hover) {
  .c-page-top:hover .text {
    color: #4C8DCB;
  }

  .c-page-top:hover .icon {
    background-color: #4C8DCB;
  }

  .c-page-top:hover .icon::after {
    background-color: #fff;
    transform: translateY(-4px) rotate(-90deg);
  }
}

@media screen and (max-width: 992px) {
  .l-footer {
    padding: 64px 0 16px;
  }

  .l-footer__container {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 80px;
    padding: 0 16px 40px;
  }

  .l-footer__info {
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    border-top: 1px solid #C8CACC;
    padding-top: 40px;
  }

  .l-footer__logo {
    margin-bottom: 10px;
    width: max(11.25rem, 40%);
  }

  .l-footer__links {
    -ms-flex-order: 1;
    order: 1;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 2rem;
    margin-top: 32px;
  }

  .l-footer__links a {
    font-size: max(0.75rem, 1.6vw);
  }

  .l-footer__nav {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
    width: 84%;
  }

  .l-footer__nav .nav-list {
    /* gap: max(2rem, 6.5vw); */
    gap: 40px;
  }

  .l-footer__nav .nav-list a {
    font-size: max(1rem, 2vw);
  }

  .l-footer__nav .sub-menu {
    gap: 12px;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 14px 32px;
  }

  .l-footer__nav .sub-menu a {
    font-size: max(0.75rem, 1.6vw);
  }

  .l-footer__bottom {
    padding: 0 32px;
  }

  .l-footer__copy small {
    font-size: max(0.5rem, 1.2vw);
    letter-spacing: 0;
    font-feature-settings: "palt";
  }

  .c-page-top {
    gap: 10px;
  }

  .c-page-top .text {
    font-size: max(0.875rem, 1.4vw);
  }

  .c-page-top .icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
  }

  .c-page-top .icon::after {
    width: 18px;
    height: 7px;
  }
}

/* —————————————————
  component
  —————————————————*/
/* ------- title --------- */
.c-ttl {
  width: 100%;
  margin-bottom: 4rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
}

.c-ttl .en {
  font-size: 3rem;
  line-height: 1.2;
  color: #4C8DCB;
}

.c-ttl .ja {
  font-size: 1.25rem;
}

.c-ttl.center {
  -ms-flex-align: center;
  align-items: center;
}

.c-section-ttl {
  width: 100%;
  margin-bottom: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2rem;
}

.c-section-ttl .en {
  font-size: 1.25rem;
  color: #4C8DCB;
}

.c-section-ttl .ja {
  font-size: 2rem;
}

.c-section-ttl.has-underline {
  position: relative;
  padding-bottom: 32px;
}

.c-section-ttl.has-underline::before {
  content: "";
  display: block;
  width: 28px;
  height: 16px;
  background: url("../img/common/underline-deco.svg") no-repeat center/100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-section-ttl.has-underline::after {
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: 2px;
  background-color: #F5F7FA;
  border-radius: 2px;
  position: absolute;
  bottom: 8px;
  left: 32px;
}

.c-ttl-underline {
  width: 100%;
  margin-bottom: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  padding-bottom: 32px;
}

.c-ttl-underline::before {
  content: "";
  display: block;
  width: 28px;
  height: 16px;
  background: url("../img/common/underline-deco.svg") no-repeat center/100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-ttl-underline::after {
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: 2px;
  background-color: #F5F7FA;
  border-radius: 2px;
  position: absolute;
  bottom: 8px;
  left: 32px;
}

.c-ttl-line {
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 12px;
  position: relative;
  line-height: 2;
  margin-bottom: 32px;
}

.c-ttl-line::before {
  content: "";
  display: block;
  width: 4px;
  height: 60%;
  background-color: #4C8DCB;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
h3.c-ttl-line.font-ttl.two-lines:before {
    height: 80%;
}

.c-ttl-circle {
  font-size: 1.125rem;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.c-ttl-circle::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #4C8DCB;
  border-radius: 50%;
}

.c-top-lead {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 4rem;
}

.c-top-lead strong {
  color: #4C8DCB;
}

.c-lead {
  margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .c-ttl {
    margin-bottom: 40px;
  }

  .c-ttl .en {
    font-size: 2.25rem;
  }

  .c-ttl .ja {
    /* font-size: 0.875rem; */
    font-size: 16px;
  }

  .c-section-ttl {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }

  .c-section-ttl .en {
    font-size: 1rem;
  }

  .c-section-ttl .ja {
    font-size: 1.5rem;
  }

  .c-ttl-underline {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .c-ttl-underline::before {
    width: 22px;
    height: 12px;
  }

  .c-ttl-underline::after {
    width: calc(100% - 24px);
    bottom: 6px;
    left: 24px;
  }

  .c-ttl-line {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .c-ttl-circle {
    font-size: 0.875rem;
    gap: 8px;
    margin-bottom: 16px;
  }

  .c-ttl-circle::before {
    width: 6px;
    height: 6px;
  }

  .c-top-lead {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }

  .c-lead {
    margin-bottom: 64px;
  }
}

/* ------- btn --------- */
.c-btn {
  font-weight: 700;
  display: -ms-flexbox;
  display: flex ! IMPORTANT;
  -ms-flex-align: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  gap: 32px;
  transition: 0.3s ease;
  font-size: 1.125rem;
  margin-top: 4rem;
}

.p-news__list.is-open+.c-more-btn.c-btn {
  display: none !important;
}

.c-btn .icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: #F5F7FA;
  transition: 0.3s ease;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-btn .icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 8px;
  -webkit-mask-image: url("../img/common/icon_arrow.svg");
  mask-image: url("../img/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #182129;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .c-btn:hover {
    color: #4C8DCB;
  }

  .c-btn:hover .icon {
    background-color: #4C8DCB;
  }

  .c-btn:hover .icon::after {
    -ms-transform: translateX(4px);
    transform: translateX(4px);
    background-color: #fff;
  }
}

.c-btn.center {
  margin-right: auto;
  margin-left: auto;
}

.c-btn.c-btn-02 .icon {
  background-color: #fff;
}

@media (hover: hover) {
  .c-btn.c-btn-02:hover .icon {
    background-color: #4C8DCB;
  }
}

.c-btn-list {
  display: grid;
  gap: 16px;
  margin-top: 4rem;
}

.c-btn-list .c-btn {
  margin-top: 0;
}

.c-category {
  display: inline-block;
  font-size: 0.75rem;
  background-color: #EDF0F2;
  padding: 2px 4px;
  border-radius: 2px;
}

.c-category__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

.c-category__list li {
  display: inline-block;
  font-size: 0.75rem;
  background-color: #EDF0F2;
  padding: 2px 4px;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  .c-btn {
    gap: 16px;
    font-size: 1rem;
    margin-top: 40px;
  }

  .c-btn .icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
  }

  .c-btn .icon::after {
    width: 18px;
    height: 7px;
  }

  .c-btn-list {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .c-img img {
    aspect-ratio: 390/180;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.u-center {
  text-align: center;
}

.u-right {
  text-align: right;
}

.u-border {
  border-bottom: 1px solid #ccc;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.u-bold {
  font-weight: 700;
}

.u-marker {
  font-weight: 700;
  background-color: #E1EBF5;
}

.l-wrap {
  width: calc(100% - 7.5rem);
  max-width: 1200px;
  margin: 0 auto;
}

.l-wrap.wide {
  max-width: 1440px;
}

@media screen and (max-width: 768px) {
  .l-wrap {
    width: calc(100% - 2rem);
  }
}

/* ---------------------------------------------
  top-mv
  --------------------------------------------- */
.p-top-mv {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
  padding-top: 7.5rem;
}

.p-top-mv__slider {
  height: 100%;
  padding-bottom: 72px;
}

.p-top-mv__slider .swiper-wrapper {
  transition-timing-function: linear;
  -ms-flex-align: center;
  align-items: center;
}

.p-top-mv__slider .swiper-slide {
  width: auto;
  max-width: 872px;
  aspect-ratio: 872/888;
}

.p-top-mv__slider .swiper-slide img {
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-top-mv__slider .slide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 20px;
}

.p-top-mv__slider .slide-grid.grid-1 .item:nth-child(3) {
  grid-column: 1/3;
}

.p-top-mv__slider .slide-grid.grid-2 .item:first-child {
  grid-column: 1/3;
}

.p-top-mv__block {
  width: 80%;
  max-width: 960px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 24px 0 32px 5rem;
  z-index: 2;
  background-color: #fff;
  border-radius: 0 40px 0 0;
}

.p-top-mv__copy {
  font-weight: 700;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.p-top-mv__copy .text-1 {
  font-size: 4rem;
}

.p-top-mv__copy .text-2 {
  font-size: 2.5rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
}

.p-top-mv__copy .text-2::before {
  content: "";
  display: block;
  width: 64px;
  height: 1px;
  background-color: #182129;
  margin-right: 20px;
}

.p-top-mv__copy strong {
  font-weight: 700;
  color: #4C8DCB;
}

@media screen and (max-width: 992px) {
  .p-top-mv {
    padding-top: 88px;
  }
}

@media screen and (max-width: 768px) {
  .p-top-mv {
    height: auto;
  }

  .p-top-mv__slider {
    height: auto;
    padding-bottom: 0;
  }

  .p-top-mv__slider .swiper-slide {
    width: 62.5%;
    max-width: 22.375rem;
    aspect-ratio: 358/528;
  }

  .p-top-mv__slider .swiper-slide img {
    border-radius: 8px;
  }

  .p-top-mv__slider .slide-grid {
    gap: 10px;
  }

  .p-top-mv__block {
    width: 100%;
    position: static;
    padding: 2rem 0 2rem 1rem;
    z-index: 2;
    border-radius: 0;
  }

  .p-top-mv__copy .text-1 {
    display: block;
    font-size: 2.5rem;
  }

  .p-top-mv__copy .text-2 {
    font-size: 1.125rem;
    margin-top: 8px;
  }

  .p-top-mv__copy .text-2::before {
    width: 24px;
    margin-right: 0.625rem;
  }
}

/* ---------------------------------------------
  intro section
  --------------------------------------------- */
.p-top-intro {
  padding: 3.125rem 0 7.5rem;
  border-radius: 0 0 7.5rem 0;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.p-top-intro .l-wrap {
  max-width: 100%;
  background-color: #E1EBF5;
  border-radius: 40px;
  padding: 5rem 2.5rem 7.5rem;
}

.p-top-intro__block {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: 1fr 2fr;
  gap: 3.75rem;
}

.p-top-intro__block .intro-ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 4rem;
}

.p-top-intro__block .intro-ttl span {
  display: inline-block;
  background-color: #CEE2F5;
  border-radius: 4px;
  line-height: 1.2;
  padding: 4px 6px;
}

.p-top-intro__block .intro-img {
  max-width: 378px;
  margin: 0 auto;
}

.p-top-img {
  margin-top: -7.5rem;
  z-index: 0;
}

.p-top-img img {
  aspect-ratio: initial;
  min-height: 40rem;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-top-intro {
    padding: 50px 0 80px;
    border-radius: 0 0 32px 0;
  }

  .p-top-intro .l-wrap {
    border-radius: 16px;
    padding: 40px 32px 80px;
  }

  .p-top-intro__block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .p-top-intro__block .intro-ttl {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }

  .p-top-intro__block .intro-ttl span {
    padding: 2px 4px;
  }

  .p-top-intro__block .intro-img {
    width: 54%;
  }

  .p-top-img {
    margin-top: -32px;
    z-index: 0;
  }

  .p-top-img img {
    min-height: initial;
  }
}

/* ---------------------------------------------
  about section
  --------------------------------------------- */
.p-top-about {
  padding: 7.5rem 0 10rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-top: -7.5rem;
  border-radius: 7.5rem 0 0 7.5rem;
  background-color: #fff;
}

.p-top-about__block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 0;
}

.p-top-about__block .c-ttl {
  padding-top: 40px;
}

.p-top-about__block .about-img {
  grid-row: span 2;
  width: 50vw;
  margin-right: calc(50% - 50vw);
}

.p-top-about__block .about-img img {
  border-radius: 40px 0 0 40px;
}

.p-top-message__block {
  width: 88%;
  max-width: 1200px;
  margin: 5rem auto 0;
  position: relative;
}

.p-top-message__block::after {
  content: "";
  display: block;
  width: 38%;
  max-width: 460px;
  aspect-ratio: 1/1;
  -webkit-mask-image: url("../img/common/bg_parts-03.svg");
  mask-image: url("../img/common/bg_parts-03.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #F5F7FA;
  position: absolute;
  top: -6.875rem;
  left: -20%;
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
  pointer-events: none;
}

.p-top-message__block a {
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 0 24px rgba(24, 33, 41, 0.08);
  padding: 20px;
  display: grid;
  grid-template-columns: 25rem auto;
  gap: 2.5rem;
  -ms-flex-align: center;
  align-items: center;
  transition: 0.3s ease;
  position: relative;
  z-index: 1;
}

.p-top-message__block .message-img {
  overflow: hidden;
  border-radius: 16px;
}

.p-top-message__block .message-img img {
  transition: 0.3s ease;
}

.p-top-message__block .message-ttl {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 2px solid #C8CACC;
  padding-bottom: 24px;
  margin-bottom: 24px;
  transition: border 0.3s ease;
}

.p-top-message__block .message-text {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

.p-top-message__block .message-text .wrap {
  -ms-flex: 1;
  flex: 1;
  padding-top: 10px;
}

.p-top-message__block .message-text .icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  background-color: #4C8DCB;
  transition: 0.3s ease;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-top-message__block .message-text .icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 8px;
  -webkit-mask-image: url("../img/common/icon_arrow.svg");
  mask-image: url("../img/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .p-top-message__block:hover a {
    background-color: #4C8DCB;
    color: #fff;
  }

  .p-top-message__block:hover .message-img img {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  .p-top-message__block:hover .message-ttl {
    border-color: #fff;
  }

  .p-top-message__block:hover .message-text .icon {
    background-color: #fff;
  }

  .p-top-message__block:hover .message-text .icon::after {
    background-color: #4C8DCB;
    transform: translateX(4px);
  }
}

@media screen and (max-width: 768px) {
  .p-top-about {
    padding: 80px 0;
    margin-top: -32px;
    border-radius: 32px 0 0 32px;
  }

  .p-top-about__block {
    display: grid;
    grid-template-columns: 1fr;
  }

  .p-top-about__block .c-ttl {
    padding-top: 0;
  }

  .p-top-about__block .about-img {
    grid-row: span 2;
    width: calc(100vw - 16px);
    margin-bottom: 40px;
  }

  .p-top-about__block .about-img img {
    border-radius: 16px 0 0 16px;
  }

  .p-top-message__block {
    width: 100%;
    max-width: 420px;
    margin: 64px auto 0;
  }

  .p-top-message__block::after {
    width: 200px;
    top: -90px;
    left: 55%;
    -ms-transform: none;
    transform: none;
  }

  .p-top-message__block a {
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-top-message__block .message-ttl {
    font-size: 1.25rem;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-color: #F5F7FA;
  }

  .p-top-message__block .message-text {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }

  .p-top-message__block .message-text .wrap {
    -ms-flex: 1;
    flex: 1;
    padding-top: 0;
  }

  .p-top-message__block .message-text .icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    margin: 0 0 0 auto;
  }

  .p-top-message__block .message-text .icon::after {
    width: 18px;
    height: 7px;
  }
}

/* ---------------------------------------------
  top-jobs
  --------------------------------------------- */
.p-top-jobs {
  background-color: #F5F7FA;
  padding: 10rem 0;
  position: relative;
  border-radius: 0 7.5rem 7.5rem 0;
}

.p-top-jobs::before {
  content: "";
  display: block;
  width: 7.5rem;
  height: 7.5rem;
  background-color: #F5F7FA;
  position: absolute;
  top: -7.5rem;
  left: 0;
}

.p-top-jobs::after {
  content: "";
  display: block;
  width: 7.5rem;
  height: 7.5rem;
  background-color: #F5F7FA;
  position: absolute;
  bottom: -7.5rem;
  left: 0;
}

.p-top-jobs__block {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.p-top-jobs__block .jobs-text {
  width: 42%;
  max-width: 520px;
}

.p-top-jobs__slider {
  width: 54vw;
  margin-left: calc(50% - 50vw);
}

.p-top-jobs__slider .swiper-wrapper {
  transition-timing-function: linear;
  -ms-flex-align: center;
  align-items: center;
}

.p-top-jobs__slider .swiper-slide {
  width: auto;
  max-width: 37.5rem;
}

.p-top-jobs__slider .swiper-slide img {
  border-radius: 16px;
  aspect-ratio: 600/500;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .p-top-jobs {
    padding: 80px 0;
    border-radius: 0 32px 32px 0;
  }

  .p-top-jobs__block {
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 40px;
  }

  .p-top-jobs__block .jobs-text {
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }

  .p-top-jobs__slider {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .p-top-jobs__slider .swiper-slide {
    max-width: 288px;
  }

  .p-top-jobs__slider .swiper-slide img {
    aspect-ratio: 288/240;
  }
}

/* ---------------------------------------------
 top interview
  --------------------------------------------- */
.p-top-interview {
  padding: 10rem 0 7.5rem;
  background-color: #fff;
  position: relative;
  border-radius: 7.5rem 0 0 7.5rem;
  z-index: 2;
  overflow: hidden;
}

.p-top-interview::before {
  content: "";
  display: block;
  width: 22%;
  max-width: 400px;
  aspect-ratio: 1/1;
  background: url("../img/common/bg_parts-02.svg") no-repeat center/100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-top-interview::after {
  content: "";
  display: block;
  width: 25%;
  max-width: 440px;
  aspect-ratio: 1/1;
  background: url("../img/common/bg_parts-03.svg") no-repeat center/100%;
  position: absolute;
  bottom: 0;
  left: 72%;
}

.p-top-interview__list,
.p-jobs-interview__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto 1fr;
  gap: 0 3.75rem;
  margin-top: 4rem;
}

.p-top-interview__list .p-interview-card,
.p-jobs-interview__list .p-interview-card {
  box-shadow: none;
  border-radius: 16px;
}

.p-top-interview__list .p-interview-card:first-child,
.p-jobs-interview__list .p-interview-card:first-child {
  grid-row: span 2;
  align-self: start;
}

.p-top-interview__list .p-interview-card:not(:first-child) a,
.p-jobs-interview__list .p-interview-card:not(:first-child) a {
  display: grid;
  grid-template-columns: minmax(0, 240px) auto;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.p-top-interview__list .p-interview-card:nth-child(2),
.p-jobs-interview__list .p-interview-card:nth-child(2) {
  border-bottom: 2px solid #F5F7FA;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.p-top-interview__list .p-interview-card .interview-img,
.p-jobs-interview__list .p-interview-card .interview-img {
  border-radius: 16px;
}

.p-top-interview__list .p-interview-card .interview-text,
.p-jobs-interview__list .p-interview-card .interview-text {
  padding: 0;
  margin-top: 16px;
}

.p-interview-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(24, 33, 41, 0.08);
  overflow: hidden;
}

.p-interview-card .interview-img {
  overflow: hidden;
}

.p-interview-card .interview-img img {
  transition: 0.3s ease;
}

.p-interview-card .interview-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 24px 32px;
}

.p-interview-card .interview-text .name {
  font-size: 0.875rem;
}

.p-interview-card .interview-text .interview-ttl {
  width: 100%;
  font-weight: 700;
  line-height: 2;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .p-interview-card a:hover .interview-img img {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  .p-interview-card a:hover .interview-text .interview-ttl {
    color: #4C8DCB;
  }
}

@media screen and (max-width: 768px) {
  .p-top-interview {
    padding: 80px 0;
    border-radius: 32px 0 0 32px;
  }

  .p-top-interview::before {
    width: 26%;
  }

  .p-top-interview::after {
    display: none;
  }

  .p-top-interview__list,
  .p-jobs-interview__list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    margin-top: 40px;
  }

  .p-top-interview__list .p-interview-card,
  .p-jobs-interview__list .p-interview-card {
    padding-bottom: 24px;
  }

  .p-top-interview__list .p-interview-card:not(:first-child) a,
  .p-jobs-interview__list .p-interview-card:not(:first-child) a {
    display: grid;
    grid-template-columns: minmax(130px, 38%) auto;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
  }

  .p-top-interview__list .p-interview-card:not(:first-child) .interview-img,
  .p-jobs-interview__list .p-interview-card:not(:first-child) .interview-img {
    /* border-radius: 16px; */
    border-radius: 8px;
    overflow: hidden;
  }

  .p-top-interview__list .p-interview-card:not(:first-child) .interview-img img,
  .p-jobs-interview__list .p-interview-card:not(:first-child) .interview-img img {
    aspect-ratio: 1/1;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-top-interview__list .p-interview-card:not(:last-of-type),
  .p-jobs-interview__list .p-interview-card:not(:last-of-type) {
    margin-bottom: 24px;
  }

  .p-top-interview__list .p-interview-card:nth-child(2),
  .p-jobs-interview__list .p-interview-card:nth-child(2) {
    margin-bottom: 24px;
  }

  .p-interview-card {
    border-bottom: 2px solid #F5F7FA;
  }

  .p-interview-card .interview-text {
    gap: 16px 12px;
    margin-top: 12px;
  }

  .p-interview-card .interview-text .interview-ttl {
    font-size: 0.875rem;
  }
}

/* ---------------------------------------------
  environment section
  --------------------------------------------- */
.p-top-environment {
  padding: 10rem 0;
  border-radius: 0 7.5rem 0 0;
  background-color: #E1EBF5;
  position: relative;
  z-index: 1;
}

.p-top-environment::before {
  content: "";
  display: block;
  width: 7.5rem;
  height: 7.5rem;
  background-color: #E1EBF5;
  position: absolute;
  top: -7.5rem;
  left: 0;
}

.p-top-environment .l-wrap {
  background-color: #fff;
  border-radius: 40px;
  padding: 80px 24px;
}

.p-top-environment__block {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 4fr 5fr;
  gap: 20px;
}

.p-top-environment__block .environment-img {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.25rem;
  position: relative;
}

.p-top-environment__block .environment-img img {
  border-radius: 16px;
}

.p-top-environment__block .environment-img .item:nth-child(1) {
  width: 60%;
}

.p-top-environment__block .environment-img .item:nth-child(2) {
  width: 35%;
  padding-top: 10%;
}

.p-top-environment__block .environment-img .item:last-child {
  grid-column: span 2;
  width: 68%;
  max-width: 360px;
  margin: -12% auto 0;
}

@media screen and (max-width: 768px) {
  .p-top-environment {
    padding: 80px 0;
    border-radius: 0 32px 0 0;
  }

  .p-top-environment .l-wrap {
    border-radius: 16px;
    padding: 40px 16px;
  }

  .p-top-environment__block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .p-top-environment__block .environment-img {
    gap: 8px;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
  }

  .p-top-environment__block .environment-img img {
    border-radius: 16px;
  }

  .p-top-environment__block .environment-img .item:nth-child(2) {
    padding-top: 20px;
  }

  .p-top-environment__block .environment-img .item:last-child {
    width: 58%;
    margin: -35px auto 0;
  }
}

/* ---------------------------------------------
  links section
  --------------------------------------------- */
.p-top-links {
  padding: 5rem 0;
}

.p-top-links__block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}

.p-link-bnr {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(24, 33, 41, 0.08);
  padding: 2.5rem 1rem 2.5rem 2.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  border: 1px solid #fff;
  transition: 0.3s ease;
  gap: 8px;
}

.p-link-bnr .bnr-img {
  margin-right: 2rem;
}

.p-link-bnr .link-ttl {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.p-link-bnr .icon {
  width: 56px;
  aspect-ratio: 1/1;
  border-radius: 8px;
  background-color: #F5F7FA;
  transition: 0.3s ease;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-left: auto;
}

.p-link-bnr .icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 8px;
  -webkit-mask-image: url("../img/common/icon_arrow.svg");
  mask-image: url("../img/common/icon_arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #182129;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .p-link-bnr:hover {
    border: 1px solid #4C8DCB;
  }

  .p-link-bnr:hover .link-ttl {
    color: #4C8DCB;
  }

  .p-link-bnr:hover .icon {
    background-color: #4C8DCB;
  }

  .p-link-bnr:hover .icon::after {
    -ms-transform: translateX(4px);
    transform: translateX(4px);
    background-color: #fff;
  }
}

@media screen and (max-width: 768px) {
  .p-top-links__block {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 16px;
  }

  .p-link-bnr {
    padding: 48px 16px 16px;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .p-link-bnr .bnr-img {
    margin-right: 0;
    margin-bottom: 40px;
  }

  .p-link-bnr .link-ttl {
    font-size: 1.25rem;
    text-align: center;
  }

  .p-link-bnr .bnr-text {
    width: 100%;
  }

  .p-link-bnr .icon {
    width: 36px;
    height: 36px;
    border-radius: 4px;
    margin-top: 16px;
  }

  .p-link-bnr .icon::after {
    width: 18px;
    height: 7px;
  }
}

/* ------------ container ------------*/
.l-container {
  position: relative;
  height: 100%;
}

.l-side-block {
  width: 100%;
  max-width: 280px;
  position: absolute;
  top: 10rem;
  left: max(50vw - 600px, 5vw);
  height: calc(100% - 120px);
  padding-bottom: 60px;
  z-index: 9;
}

.l-side-block .l-side-menu {
  position: sticky;
  top: 7.5rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

.l-side-block .l-side-menu li:not(:last-child) {
  margin-bottom: 24px;
}

.l-side-block .l-side-menu li a {
  width: 100%;
  font-weight: 500;
  transition: 0.2s ease;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.l-side-block .l-side-menu li a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
}

.l-side-block .l-side-menu li.is-active a {
  color: #4C8DCB;
  font-weight: 700;
}

.l-side-block .l-side-menu li.is-active a::before {
  background-color: #4C8DCB;
  border: 4px solid #CEE2F5;
}

.l-side-block .l-side-menu.is-color li a {
  color: #fff;
}

.l-side-block .l-side-menu.is-color li.is-active a::before {
  border: 4px solid #CEE2F5;
}

@media screen and (max-width: 992px) {
  .l-side-block {
    display: none;
  }
}

/* ------------------------
  page component
  ------------------------*/
/* -------- page-head -------- */
.c-page-head {
  position: relative;
  z-index: 3;
  padding: 11.25rem 0 5rem;
  background-color: #fff;
  border-radius: 0 0 7.5rem 0;
}

.c-page-head .c-ttl {
  margin-bottom: 0;
}

.c-page-head.has-parts {
  z-index: 9;
}

.c-page-head.has-parts::before {
  content: "";
  display: block;
  width: 28%;
  max-width: 400px;
  aspect-ratio: 1/1;
  background: url("../img/common/bg_parts-04.svg") no-repeat center/cover;
  position: absolute;
  bottom: 0;
  right: 0;
}

.c-page-head__lead {
  margin: 5rem 0 2.5rem;
}

.c-page-head__lead.mb0 {
  margin-bottom: 0;
}

.c-page-head__lead.has-border {
  border-bottom: 2px solid #F5F7FA;
  margin-bottom: 0;
  padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
  .c-page-head {
    padding: 128px 0 64px;
    border-radius: 0 0 32px 0;
  }

  .c-page-head__ttl .en {
    font-size: 2.25rem;
  }

  .c-page-head__ttl .ja {
    font-size: 1rem;
  }

  .c-page-head__lead {
    margin: 64px 0 0;
  }

  .c-page-head__lead.has-border {
    padding-bottom: 64px;
  }
}

/* ----------- breadcrumbs -----------*/
.c-breadcrumbs {
  position: relative;
  z-index: 1;
  width: calc(100% - 32px);
  max-width: 1200px;
  margin: 0 auto ! IMPORTANT;
  padding-bottom: 24px;
}

.c-breadcrumbs.is-bg::before {
  content: "";
  display: block;
  width: 100vw;
  height: 360px;
  background-color: #E1EBF5;
  position: absolute;
  top: -7.5rem;
  left: calc(50% - 50vw);
}

.c-breadcrumbs__list {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #F5F7FA;
  border-radius: 8px;
  padding: 10px;
  gap: 10px;
}

.c-breadcrumbs__list li:not(:last-of-type) {
  border-right: 1px solid #C8CACC;
  margin-right: 10px;
  padding-right: 10px;
}

.c-breadcrumbs__list li,
.c-breadcrumbs__list a {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #C8CACC;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.c-breadcrumbs__list a {
  color: #5F6061;
}

.c-breadcrumbs__list span.current-item {
  font-size: 0.75rem;
  color: #C8CACC;
}

.breadcrumbs-slash {
  color: #C8CACC;
}

@media screen and (max-width: 768px) {
  .c-breadcrumbs.is-bg::before {
    top: -32px;
  }

  .c-breadcrumbs {
    overflow-x: scroll;
  }
  .c-breadcrumbs.is-bg{
    overflow-x: visible;
  }

  .c-breadcrumbs__list {
    width: auto;
    display: -ms-flexbox;
    /* display: flex; */
    display: inline-flex;
    white-space: nowrap;
    overflow: auto;
  }

  .c-breadcrumbs__list li,
  .c-breadcrumbs__list a {
    font-size: 0.75rem;
  }
}

.c-text-area p:not(:last-child) {
  margin-bottom: 24px;
}

.c-block:not(:last-child) {
  margin-bottom: 120px;
}

.p-section {
  padding: 10rem max(50vw - 600px, 3vw) 10rem calc(max(50vw - 600px, 8vw) + 18.75vw);
}

@media screen and (max-width: 992px) {
  .p-section {
    padding: 80px max(16px, 4vw);
  }

  .c-block:not(:last-child) {
    margin-bottom: 64px;
  }
}

/* ---------------------------------------------
  about us page
  --------------------------------------------- */
/* -------------- philosophy -------------- */
.p-about-philosophy {
  position: relative;
  background-color: #F5F7FA;
  border-radius: 7.5rem 0 0 7.5rem;
}

.p-about-philosophy::before {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-color: #F5F7FA;
  position: absolute;
  top: -7.5rem;
  right: 0;
}

.p-about-philosophy::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-color: #F5F7FA;
  position: absolute;
  bottom: -rem(120);
  right: 0;
}

.p-about-philosophy__container {
  background-color: #fff;
  box-shadow: 0 0 24px rgba(24, 33, 41, 0.08);
  border-radius: 16px;
  padding: 64px 40px;
  margin-bottom: 80px;
}

.p-about-philosophy__block:not(:last-child) {
  border-bottom: 2px solid #F5F7FA;
  padding-bottom: 32px;
  margin-bottom: 32px;
}

.p-about-philosophy__block .philosophy-ttl {
  margin-bottom: 32px;
}

.p-about-philosophy__block .philosophy-ttl .en {
  font-size: 0.875rem;
}

.p-about-philosophy__block .philosophy-ttl .ja {
  font-size: 1.25rem;
}

.p-about-philosophy__block p {
  /* font-weight: 500; */
  font-weight: normal;
}

.p-value__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  text-align: center;
}

.p-value__list li {
  border: 2px solid #F5F7FA;
  border-radius: 8px;
  background-color: #fff;
  padding: 32px 16px 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.p-value__list .value-icon {
  background-color: #F5F7FA;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto;
}

.p-value__list .value-ttl {
  width: 100%;
  color: #4C8DCB;
  font-weight: 700;
  font-size: 1.25rem;
  border-bottom: 1px solid #F5F7FA;
  padding-bottom: 16px;
}

.p-thoughts__block {
  display: grid;
  grid-template-columns: 1fr minmax(0, 360px);
  gap: 40px;
  -ms-flex-align: center;
  align-items: center;
}

.p-thoughts__block:not(:last-child) {
  margin-bottom: 64px;
}

.p-thoughts__block .c-ttl-circle {
  font-size: 1.125rem;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.p-thoughts__block .c-ttl-circle::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #4C8DCB;
  border-radius: 50%;
}

.p-thoughts__block .thoughts-img img {
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .p-about-philosophy {
    border-radius: 32px 0 0 32px;
  }

  .p-about-philosophy__container {
    border-radius: 8px;
    padding: 40px 16px;
    margin-bottom: 64px;
  }

  .p-about-philosophy__block:not(:last-child) {
    padding-bottom: 24px;
    margin-bottom: 24px;
  }

  .p-about-philosophy__block .philosophy-ttl {
    margin-bottom: 16px;
  }

  .p-about-philosophy__block .philosophy-ttl .en {
    font-size: 0.625rem;
  }

  .p-about-philosophy__block .philosophy-ttl .ja {
    font-size: 1rem;
  }

  .p-value__list {
    grid-template-columns: 1fr;
  }

  .p-value__list li {
    padding: 24px 16px;
    gap: 14px;
  }

  .p-value__list .value-ttl {
    font-size: 1rem;
    padding-bottom: 14px;
  }

  .p-thoughts__block {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-thoughts__block:not(:last-child) {
    margin-bottom: 48px;
  }

  .p-thoughts__block .c-ttl-circle {
    font-size: 0.875rem;
    gap: 8px;
    margin-bottom: 16px;
  }

  .p-thoughts__block .c-ttl-circle::before {
    width: 6px;
    height: 6px;
  }

  .p-thoughts__block .thoughts-text {
    -ms-flex-order: 2;
    order: 2;
  }

  .p-thoughts__block .thoughts-img {
    -ms-flex-order: 1;
    order: 1;
  }
}

/* -------------- message -------------- */
.p-about-message {
  background-color: #fff;
  position: relative;
  border-radius: 0 7.5rem 7.5rem 0;
  z-index: 1;
}

.p-message__block {
  position: relative;
  margin-bottom: 80px;
}

.p-message__block .message-img img {
  border-radius: 8px;
}

.p-message__block .message-text {
  width: 60%;
  position: absolute;
  bottom: 20px;
  left: 40px;
}

.p-message__block .message-lead {
  font-size: 2rem;
  font-weight: 700;
}

.p-message__block .message-lead strong {
  color: #4C8DCB;
}

.p-message__block .message-profile {
  background-color: #fff;
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px 40px;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  margin-top: 4rem;
}

.p-message__block .message-profile .pos {
  color: #4C8DCB;
}

.p-message__block .message-profile .name {
  font-size: 1.5rem;
  line-height: 1.5;
}

.p-movie__block {
  border-radius: 16px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .p-about-message {
    border-radius: 0 32px 32px 0;
  }

  .p-message__block {
    margin-bottom: 64px;
  }

  .p-message__block .message-img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }

  .p-message__block .message-img img {
    border-radius: 0;
  }

  .p-message__block .message-text {
    width: 70%;
    position: absolute;
    bottom: 16px;
    left: 16px;
  }

  .p-message__block .message-lead {
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .p-message__block .message-profile {
    padding: 8px 20px;
    gap: 4px;
    margin-top: 38%;
    border-radius: 4px;
  }

  .p-message__block .message-profile .pos {
    line-height: 1.4;
  }

  .p-message__block .message-profile .name {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

/* -------------- feature -------------- */
.p-about-feature {
  position: relative;
  background-color: #4C8DCB;
  border-radius: 7.5rem 0 0 7.5rem;
  z-index: 0;
}

.p-about-feature .c-section-ttl {
  margin-bottom: 4rem;
}

.p-about-feature::before {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-color: #4C8DCB;
  position: absolute;
  top: -7.5rem;
  right: 0;
}

.p-about-feature::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-color: #4C8DCB;
  position: absolute;
  bottom: -rem(120);
  right: 0;
}

.p-about-feature .c-section-ttl {
  color: #fff;
}

.p-about-feature .c-section-ttl .en {
  color: #fff;
}

.p-feature__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.p-feature__list li {
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  position: relative;
  padding: 20px 16px 58px;
}

.p-feature__list .num {
  font-size: 2rem;
  font-weight: 700;
  position: absolute;
  top: -1px;
  left: -1px;
  background-color: #4C8DCB;
  color: #fff;
  width: 72px;
  height: 72px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 0 0 16px 0;
}

.p-feature__list .feature-ttl {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 20px;
  width: -moz-fit-content;
  width: fit-content;
}

.p-feature__list .feature-ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: url("../img/common/border-bottom.svg") repeat-x center/cover;
  margin-top: 8px;
}

.p-feature__list .feature-icon {
  margin-bottom: 32px;
}

@media screen and (max-width: 768px) {
  .p-about-feature {
    border-radius: 32px 0 0 32px;
  }

  .p-about-feature .c-section-ttl {
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
  }

  .p-feature__list {
    grid-template-columns: 1fr;
  }

  .p-feature__list li {
    padding: 20px 16px 40px;
  }

  .p-feature__list .num {
    font-size: 1.5rem;
    width: 65px;
    height: 65px;
  }

  .p-feature__list .feature-ttl {
    font-size: 1.25rem;
    margin-bottom: 16px;
  }

  .p-feature__list .feature-icon {
    margin-bottom: 24px;
  }
}

/* -------------- company -------------- */
.p-about-company {
  position: relative;
  background-color: #fff;
  border-radius: 0 7.5rem 7.5rem 0;
}

.p-company__block {
  display: grid;
  grid-template-columns: 4fr 3fr;
  gap: 60px;
}

.p-company__block .c-section-ttl {
  margin-bottom: 80px;
}

.p-outline__block dl {
  display: grid;
  grid-template-columns: 1fr 3fr;
  padding: 24px 0;
  border-bottom: 1px solid #F5F7FA;
}

.p-outline__block dl:first-of-type {
  border-top: 1px solid #F5F7FA;
}

.p-outline__block dl dt {
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-about-company {
    border-radius: 0 32px 32px 0;
  }

  .p-company__block {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .p-company__block .c-section-ttl {
    margin-bottom: 24px;
  }

  .p-company__block .company-img {
    width: 90%;
    margin: 0 auto;
  }

  .p-outline__block dl {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-outline__block dl dt, .p-outline__block dl dd {
    font-size: 0.875rem;
  }
}

/* -------------- more -------------- */
.p-about-more {
  padding: 10rem 0;
}

.p-about-more__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.p-about-more__list a {
  display: block;
  background-color: #4C8DCB;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

@media (hover: hover) {
  .p-about-more__list a:hover img {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0.48;
  }
}

.p-about-more__list .next-ttl {
  width: 100%;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-about-more__list img {
  display: inline-block;
  will-change: opacity;
  opacity: 0.48;
  transition: transform 0.3s ease;
}

@media screen and (max-width: 768px) {
  .p-about-more {
    padding: 80px 0;
  }

  .p-about-more__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-about-more__list img {
    aspect-ratio: 358/120;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-about-more__list .next-ttl {
    font-size: 1.25rem;
  }

  .p-about-more__list li:nth-child(2) img {
    -o-object-position: 50% 20%;
    object-position: 50% 20%;
  }
}

/* ---------------------------------------------
  jobs page
  --------------------------------------------- */
/* -------------- jobs section -------------- */
.p-jobs-section {
  position: relative;
  background-color: #F5F7FA;
  border-radius: 7.5rem 0 0 7.5rem;
  padding-bottom: 0;
}

.p-jobs-section::before {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-color: #F5F7FA;
  position: absolute;
  top: -120px;
  right: 0;
}

.p-jobs-section::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-color: #F5F7FA;
  position: absolute;
  bottom: -120px;
  right: 0;
}

.p-jobs-section__container::before {
  content: "";
  display: block;
  width: 30%;
  max-width: 480px;
  aspect-ratio: 480/800;
  background: url("../img/common/bg_parts-01.svg") no-repeat center/cover;
  position: absolute;
  top: 50%;
  right: 0;
}

.p-jobs-section__container .c-block {
  position: relative;
  z-index: 1;
}

.p-jobs__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.p-jobs__list li {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(24, 33, 41, 0.08);
  background-color: #fff;
}

.p-jobs__list .jobs-text {
  padding: 16px 16px 40px;
  background-color: #fff;
}

.p-jobs__list .jobs-ttl {
  width: 100%;
  font-weight: 700;
  font-size: 1.125rem;
  border-bottom: 1px solid #F5F7FA;
  padding-bottom: 16px;
  margin-bottom: 16px;
  text-align: center;
}

.p-workstyle__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.p-workstyle__list li {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(24, 33, 41, 0.08);
  position: relative;
  padding: 32px 20px;
}

.p-workstyle__list .workstyle-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  max-width: 58px;
}

.p-workstyle__list .workstyle-ttl {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.p-jobs__slider {
  width: calc(100% + max(50vw - 600px, 3vw));
  -ms-transform: translateY(120px);
  transform: translateY(120px);
}

.p-jobs__slider .swiper-wrapper {
  transition-timing-function: linear;
  -ms-flex-align: center;
  align-items: center;
}

.p-jobs__slider .swiper-slide {
  width: auto;
  max-width: 400px;
}

.p-jobs__slider .swiper-slide img {
  border-radius: 16px;
  aspect-ratio: 400/300;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-jobs__slider .swiper-slide:nth-child(odd) {
  margin-top: -40px;
}

.p-jobs__slider .swiper-slide:nth-child(even) {
  margin-top: 40px;
}

@media screen and (max-width: 992px) {
  .p-jobs__slider {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}

@media screen and (max-width: 768px) {
  .p-jobs-section {
    border-radius: 32px 0 0 32px;
  }

  .p-jobs-section__container::before {
    display: none;
  }

  .p-jobs__list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .p-jobs__list .jobs-text {
    padding: 12px 16px 32px;
  }

  .p-jobs__list .jobs-ttl {
    font-size: 1rem;
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .p-workstyle__list {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .p-workstyle__list li {
    padding: 32px 16px;
  }

  .p-workstyle__list .workstyle-ttl {
    font-size: 1rem;
  }

  .p-jobs__slider {
    margin: 0 calc(50% - 50vw);
    -ms-transform: translateY(80px);
    transform: translateY(80px);
    overflow-y: visible;
  }

  .p-jobs__slider .swiper-slide {
    max-width: 280px;
  }

  .p-jobs__slider .swiper-slide img {
    aspect-ratio: 280/210;
  }

  .p-jobs__slider .swiper-slide:nth-child(even) {
    margin-top: 20px;
  }
}

/* -------------- interview -------------- */
.p-jobs-interview {
  background-color: #fff;
  position: relative;
  border-radius: 0 7.5rem 7.5rem 0;
  padding: 16.25rem max(50vw - 720px, 3vw) 10rem calc(max(50vw - 600px, 8vw) + 18.75vw);
}

.p-jobs-interview .c-btn {
  margin-top: 5rem;
}

.p-jobs-interview__list {
  display: grid;
  grid-template-columns: 7fr 8fr;
  grid-template-rows: auto 1fr;
  gap: 0 2.5rem;
}

@media screen and (max-width: 992px) {
  .p-jobs-interview {
    padding: 160px max(16px, 4vw) 80px;
  }
}

@media screen and (max-width: 768px) {
  .p-jobs-interview {
    padding-top: 160px;
    padding-bottom: 0;
  }

  .p-jobs-interview .c-btn {
    margin-right: auto;
    margin-left: auto;
    margin-top: 64px;
  }

  .p-jobs-interview__list {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 0;
    margin-top: 40px;
  }
}

/* -------------- carrer -------------- */
.p-jobs-career {
  position: relative;
  background-color: #F5F7FA;
  border-radius: 7.5rem 0 0 7.5rem;
}

.p-jobs-career::before {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-color: #F5F7FA;
  position: absolute;
  top: -7.5rem;
  right: 0;
}

.p-jobs-career::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-color: #F5F7FA;
  position: absolute;
  bottom: -7.5rem;
  right: 0;
}

.p-career-path__block picture {
  display: block;
  margin-bottom: 40px;
}

.p-career-path__block picture img {
  width: 100%;
}

.p-career-support__block.c-block {
  margin-bottom: 0;
}

.p-career-evaluation__block {
  display: grid;
  grid-template-columns: 8fr 7fr;
  gap: 40px;
  padding-top: 7.5rem;
}

.p-career-evaluation__block .evaluation-img img {
  border-radius: 16px;
}

.c-dl {
  display: grid;
  grid-template-columns: 2fr 5fr;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #E1EBF5;
}

.c-dl:first-of-type {
  border-top: 1px solid #E1EBF5;
}

.c-dl dt {
  font-weight: 700;
}

.c-dl .c-ttl-circle {
  margin-bottom: 0;
}

.c-dl dd {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .p-jobs-career {
    border-radius: 32px 0 0 32px;
  }

  .p-career-path__block picture {
    display: block;
    margin-bottom: 24px;
  }

  .p-career-evaluation__block {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 5rem;
  }

  .c-dl {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 16px 0;
  }

  .c-dl .c-ttl-circle {
    font-size: 1rem;
  }

  .c-dl dd {
    font-size: 0.875rem;
  }
}

/* -------------- training -------------- */
.p-jobs-training {
  position: relative;
  background-color: #fff;
  border-radius: 0 7.5rem 7.5rem 0;
  z-index: 1;
}

.p-jobs-training__block {
  margin-top: 40px;
}

.p-jobs-training__block .training-img {
  margin-bottom: 32px;
}

.p-jobs-training__block .training-img img {
  border-radius: 16px;
}

@media screen and (max-width: 768px) {
  .p-jobs-training {
    border-radius: 0 32px 32px 0;
  }

  .p-jobs-training__block {
    margin-top: 40px;
  }

  .p-jobs-training__block .training-img {
    margin-bottom: 40px;
  }
}

/* -------------- welfare -------------- */
.p-jobs-welfare {
  position: relative;
  background-color: #E1EBF5;
  border-radius: 7.5rem 0 0 7.5rem;
  z-index: 0;
}

.p-jobs-welfare::before {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background-color: #E1EBF5;
  position: absolute;
  top: -120px;
  right: 0;
}

.p-welfare__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.p-welfare__list li {
  background-color: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 16px;
  position: relative;
  padding: 40px;
}

.p-welfare__list .num {
  font-size: 1.25rem;
  font-weight: 700;
  position: absolute;
  top: 40px;
  left: 40px;
  color: #4C8DCB;
  line-height: 1;
}

.p-welfare__list .welfare-ttl {
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 4px;
  text-align: center;
}

.p-welfare__list .welfare-icon {
  margin-bottom: 12px;
}

.p-welfare__block {
  margin-top: 80px;
  padding-top: 80px;
  border-top: 1px solid #4C8DCB;
}

@media screen and (max-width: 768px) {
  .p-jobs-welfare {
    border-radius: 32px 0 0 32px;
  }

  .p-jobs-welfare .c-section-ttl {
    -ms-flex-align: center;
    align-items: center;
  }

  .p-jobs-welfare .p-link-bnr {
    width: calc(100% - 32px);
    margin: 0 auto;
  }

  .p-welfare__list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .p-welfare__list li {
    padding: 24px;
  }

  .p-welfare__list .num {
    font-size: 1.125rem;
    top: 24px;
    left: 24px;
  }

  .p-welfare__list .welfare-ttl {
    font-size: 1.25rem;
  }

  .p-welfare__list .welfare-icon {
    margin-bottom: 8px;
  }

  .p-welfare__block {
    margin-top: 64px;
    padding-top: 64px;
  }
}

/* ---------------------------------------------
  interview index page
  --------------------------------------------- */
/* -------- sort -------- */
.c-sort-block {
  border-bottom: 1px solid #F5F7FA;
  padding-bottom: 80px;
  margin-bottom: 80px;
}

.c-sort-block .wrap {
  background-color: #F5F7FA;
  border-radius: 16px;
  padding: 42px 40px;
}

.c-sort-block .c-ttl-circle {
  font-size: 1.5rem;
  margin-bottom: 40px;
}

.c-sort-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

.c-sort-item:not(:last-of-type) {
  margin-bottom: 24px;
}

.c-sort-item .sort-ttl {
  font-size: 1.125rem;
  font-weight: 700;
  min-width: 56px;
}

.c-sort-item .c-ttl-circle {
  margin-bottom: 0;
}

.c-sort-list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.c-sort-list li {
  cursor: pointer;
  font-weight: 700;
  /* padding: 4px 8px; */
  border-radius: 4px;
  text-align: center;
  border: 1px solid #4C8DCB;
  color: #4C8DCB;
  transition: 0.3s ease;
}

.c-sort-list li a {
  display: block;
  padding: 4px 8px;
}

.c-sort-list li.active {
  background-color: #4C8DCB;
  color: #fff;
}

.c-sort-list li.active a {
  color: #fff;
}

@media (hover: hover) {
  .c-sort-list li:hover {
    background-color: #4C8DCB;
    color: #fff;
  }

  .c-sort-list li:hover a {
    color: #fff;
  }
}

.c-sort-list__check {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
}

.c-sort-list__check .check-item {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 700;
}

.c-sort-list__check input[type=checkbox] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #C8CACC;
  border-radius: 2px;
  cursor: pointer;
  background-color: #fff;
}

.c-sort-list__check input[type=checkbox]:checked {
  border-color: #4C8DCB;
}

.c-sort-list__check input[type=checkbox]:checked:after {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 4px;
  width: 12px;
  height: 12px;
  background: url("../img/common/icon_check.svg") no-repeat center/100%;
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .c-sort-item {
    gap: 20px;
  }
}

@media screen and (max-width: 768px) {
  .c-sort-block {
    padding-bottom: 64px;
    margin-bottom: 64px;
  }

  .c-sort-block .wrap {
    padding: 24px 24px 40px;
  }

  .c-sort-block .c-ttl-circle {
    font-size: 1.125rem;
    margin-bottom: 24px;
  }

  .c-sort-item {
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 8px;
  }

  .c-sort-item .c-ttl-circle {
    margin-bottom: 16px;
  }

  .c-sort-list li {
    padding: 2px 6px;
  }

  .c-sort-list__check {
    gap: 8px 24px;
  }

  .c-sort-list__check input[type=checkbox] {
    width: 16px;
    height: 16px;
  }

  .c-sort-list__check input[type=checkbox]:checked:after {
    top: 3px;
    left: 3px;
    width: 8px;
    height: 8px;
  }
}

.p-interview-section {
  padding-bottom: 120px;
}

.p-interview__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
}

.p-interview__list .p-interview-card:nth-child(n+10) {
  display: none;
}

.p-interview__list.is-open .p-interview-card:nth-child(n+10) {
  display: block;
}

.c-more-btn {
  cursor: pointer;
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .p-interview-section {
    padding-bottom: 80px;
  }

  .p-interview__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .c-more-btn {
    margin-top: 64px;
  }
}

/* ---------------------------------------------
  interview article
  --------------------------------------------- */
.l-main-article {
  background-color: #F5F7FA;
}

.l-main-article .c-breadcrumbs__list {
  background-color: #fff;
}

.p-article {
  padding: 11.25rem 0 7.5rem;
}

.p-article>.c-btn {
  margin-top: 80px;
}

.p-article-area {
  overflow: hidden;
  width: calc(100% - 32px);
  max-width: 1200px;
  background-color: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin: 0 auto;
}

.p-article-area .l-wrap {
  width: calc(100% - 3rem);
  max-width: 960px;
  padding: 5rem 0 7.5rem;
}

.p-article-area .l-wrap>.c-btn {
  margin-top: 80px;
}

.p-interview-article__head {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -ms-flex-align: center;
  align-items: center;
}

.p-interview-article__head .block-text {
  position: relative;
}

.p-interview-article__head .block-text::before {
  content: "";
  display: block;
  width: 85%;
  max-width: 400px;
  aspect-ratio: 400/500;
  background: url("../img/common/bg_parts-05.svg") no-repeat center/cover;
  position: absolute;
  top: 50%;
  left: -8.75rem;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-interview-article__head .block-text>* {
  position: relative;
}

.p-interview-article__head .block-text .en {
  color: #4C8DCB;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 40px;
}

.p-interview-article__head .block-text .interview-category {
  color: #4C8DCB;
  font-weight: 700;
  font-size: 0.875rem;
}

.p-interview-article__head .block-text .interview-name {
  font-size: 1.25rem;
  font-weight: 700;
}

.p-interview-article__head .block-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.p-interview-article__head .block-img img {
  aspect-ratio: 1/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-interview-article__head .p-interview__ttl {
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  margin-bottom: 60px;
}

.p-interview-article__bnr {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  border-radius: 16px;
  background-color: #4C8DCB;
  position: relative;
  overflow: hidden;
  margin-top: 5rem;
}

.p-interview-article__bnr img {
  transition: 0.3s ease;
  opacity: 0.48;
}

.p-interview-article__bnr .bnr-ttl {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 80px;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.p-interview-article__bnr .bnr-ttl::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url("../img/common/icon_window.svg");
  mask-image: url("../img/common/icon_window.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
}

@media (hover: hover) {
  .p-interview-article__bnr:hover img {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }
}

.p-interview-article__body h2 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 12px;
  position: relative;
  line-height: 2;
  margin-top: 5rem;
  margin-bottom: 32px;
}

.p-interview-article__body h2::before {
  content: "";
  display: block;
  width: 4px;
  height: 75%;
  background-color: #4C8DCB;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-interview-article__body img {
  border-radius: 16px;
  margin-top: 5rem;
}

.p-interview-article__body p {
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .p-article {
    padding: 100px 0 80px;
  }

  .p-article-area .l-wrap {
    width: calc(100% - 2rem);
    padding: 40px 0;
  }

  .p-article-area .l-wrap>.c-btn {
    margin-top: 64px;
  }

  .p-interview-article__head {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .p-interview-article__head .block-text {
    -ms-flex-order: 2;
    order: 2;
  }

  .p-interview-article__head .block-text::before {
    top: 40%;
    left: -16px;
  }

  .p-interview-article__head .block-text .en {
    line-height: 1;
    font-size: 1rem;
    margin-bottom: 24px;
  }

  .p-interview-article__head .block-img {
    -ms-flex-order: 1;
    order: 1;
  }

  .p-interview-article__head .p-interview__ttl {
    font-size: 1.5rem;
    margin-bottom: 32px;
  }

  .p-interview-article__bnr {
    margin-top: 64px;
    border-radius: 8px;
  }

  .p-interview-article__bnr img {
    aspect-ratio: 326/120;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 65% 50%;
    object-position: 65% 50%;
  }

  .p-interview-article__bnr .bnr-ttl {
    font-size: 1rem;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -ms-flex-pack: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
  }

  .p-interview-article__bnr .bnr-ttl::after {
    width: 12px;
    height: 9px;
  }

  .p-interview-article__body h2 {
    font-size: 1.25rem;
    margin-top: 64px;
    margin-bottom: 16px;
  }

  .p-interview-article__body img {
    border-radius: 16px;
    margin-top: 64px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .p-interview-article__body p {
    margin-top: 16px;
  }
}

/* ---------------------------------------------
  faq page
  --------------------------------------------- */
.c-page-head__faq {
  padding-bottom: 0;
}

.l-container-faq .l-side-block {
  top: 5.625rem;
}

.p-faq-section {
  padding-top: 7.5rem;
  padding-bottom: 0;
}

.p-faq-section:first-of-type {
  padding-top: 5rem;
}

.p-faq-section:last-of-type {
  padding-bottom: 7.5rem;
}

.p-faq__list {
  margin-top: 32px;
}

.p-faq__block {
  margin: 0 auto;
  background-color: #F5F7FA;
  border-radius: 8px;
  padding: 24px;
  cursor: pointer;
}

.p-faq__block:not(:last-child) {
  margin-bottom: 24px;
}

.p-faq__block .p-faq__question {
  font-size: 1.125rem;
  position: relative;
  transition: 0.3s ease all;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding-right: 24px;
  font-weight: 700;
  line-height: 2;
}

.p-faq__block .p-faq__question::before {
  content: "Q";
  font-family: "Montserrat", sans-serif;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
  color: #4C8DCB;
}

.p-faq__block .p-faq__question::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 7px;
  -webkit-mask-image: url("../img/common/icon_accordion.svg");
  mask-image: url("../img/common/icon_accordion.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #4C8DCB;
  transition: 0.3s ease;
  position: absolute;
  top: 16px;
  right: 0;
  -ms-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
}

.p-faq__block .p-faq__answer {
  display: none;
  margin: 0;
  padding: 0;
  position: relative;
  border-top: 2px solid #C8CACC;
  padding-top: 24px;
  margin-top: 24px;
}

.p-faq__block .p-faq__answer .wrap {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.p-faq__block .p-faq__answer .wrap::before {
  content: "A";
  font-family: "Montserrat", sans-serif;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 2;
}

.p-faq__block.is-open .p-faq__question::after {
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 1024px) and (min-width: 769px) {
  .p-faq__block .p-faq__question {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .p-faq-section {
    padding-top: 80px;
  }

  .p-faq-section:first-of-type {
    padding-top: 64px;
  }

  .p-faq-section:last-of-type {
    padding-bottom: 80px;
  }

  .p-faq__list {
    margin-top: 24px;
  }

  .p-faq__block {
    padding: 24px 16px;
  }

  .p-faq__block:not(:last-child) {
    margin-bottom: 24px;
  }

  .p-faq__block .p-faq__question {
    font-size: 1rem;
    padding-right: 16px;
  }

  .p-faq__block .p-faq__question::before {
    font-size: 1rem;
  }

  .p-faq__block .p-faq__answer .wrap::before {
    font-size: 1rem;
  }
}

/* ---------------------------------------------
  recruitment index page
  --------------------------------------------- */
.p-recruitment-index {
  padding-bottom: 120px;
}

.p-recruitment__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.p-recruitment__list .p-recruitment-card:nth-child(n+9) {
  display: none;
}

.p-recruitment__list.is-open .p-recruitment-card:nth-child(n+9) {
  display: block;
}

.p-recruitment-card a {
  display: block;
  padding: 24px 24px 40px;
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(24, 33, 41, 0.08);
  border: 1px solid #fff;
  transition: .3s;
}

@media (hover: hover) {
  .p-recruitment-card a:hover .recruitment-ttl {
    color: #4C8DCB;
  }

  .p-recruitment-card a:hover {
    border-color: #4C8DCB;
  }
}

.p-recruitment-card .p-recruitment-card__head {
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px;
}

.p-recruitment-card .recruitment-ttl {
  font-weight: 700;
  font-size: 1.25rem;
  transition: 0.3s ease;
}

.p-recruitment-card .c-category {
  font-size: 0.875rem;
}

.p-recruitment-card .recruitment-area {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 2px solid #F5F7FA;
}

.p-recruitment-card .recruitment-area::before {
  content: "";
  display: block;
  width: 14px;
  height: 22px;
  background: url("../img/common/icon_pin.svg") no-repeat center/100%;
}

@media screen and (max-width: 768px) {
  .p-recruitment-index {
    padding-bottom: 80px;
  }

  .p-recruitment__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .p-recruitment-card a {
    /* padding: 16px 16px 24px; */
    padding: 16px 8px 24px;
  }

  .p-recruitment-card .p-recruitment-card__head {
    margin-bottom: 12px;
  }

  .p-recruitment-card .recruitment-ttl {
    /* font-size: 1rem; */
    font-size: 14px;
  }

  .p-recruitment-card .c-category {
    font-size: 0.75rem;
  }

  .p-recruitment-card .recruitment-area {
    gap: 8px;
    padding-top: 16px;
    margin-top: 16px;
  }

  .p-recruitment-card .recruitment-area::before {
    width: 12px;
    height: 18px;
  }
}

/* ---------------------------------------------
  recruitment article
  --------------------------------------------- */
.p-recruitment-article__head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.p-recruitment-article__head .c-category {
  width: -moz-fit-content;
  width: fit-content;
}

.p-recruitment-article__ttl {
  font-size: 2rem;
  font-weight: 700;
}

.p-recruitment-article__img {
  padding-bottom: 80px;
}

.p-recruitment-article__img img {
  border-radius: 16px;
}

.p-recruitment-section:not(:last-of-type) {
  margin-bottom: 7.5rem;
}

.p-recruitment-section .contents-block:not(:last-of-type) {
  margin-bottom: 80px;
}

.p-recruitment-section .bold {
  font-weight: 700;
  background-color: #E1EBF5;
}

.p-recruitment-section p:not(:last-of-type) {
  margin-bottom: 32px;
}

.p-recruitment-section .c-ttl-line {
  margin-bottom: 16px;
}

.p-recruitment-section dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  -ms-flex-align: center;
  align-items: center;
  padding: 24px 0;
  border-bottom: 1px solid #E1EBF5;
}

.p-recruitment-section dl:first-of-type {
  border-top: 1px solid #E1EBF5;
}

.p-recruitment-section dl dt {
  font-weight: 700;
}

.p-recruitment-section dl .c-ttl-circle {
  margin-bottom: 0;
}

.p-recruitment-section dl dd {
  line-height: 2;
}

/* ---------------- flow ---------------- */
.p-recruitment-flow {
  margin-bottom: 5rem;
}

.p-flow-list {
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  width: calc(100% - 2.5rem);
}

.p-flow-list .item {
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 25%;
  max-width: 240px;
  height: 88px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  padding-left: 2.5rem;
}

.p-flow-list .item::after {
  content: "";
  display: block;
  width: 2.5rem;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  top: 0;
  right: -2.5rem;
  z-index: 1;
}

.p-flow-list .item .num {
  margin: 0;
  font-weight: 700;
  font-size: 1.375rem;
  color: #4C8DCB;
}

.p-flow-list .item .text {
  font-weight: 700;
  font-size: 1.125rem;
  position: relative;
  z-index: 2;
  letter-spacing: 0;
  white-space: nowrap;
}

.p-flow-list .item:first-child, .p-flow-list .item:last-child {
  max-width: 220px;
}

.p-flow-list .item:nth-child(odd) {
  background-color: #CEE2F5;
}

.p-flow-list .item:nth-child(odd)::after {
  background-color: #CEE2F5;
}

.p-flow-list .item:nth-child(even) {
  background-color: #F5F7FA;
}

.p-flow-list .item:nth-child(even)::after {
  background-color: #F5F7FA;
}

/* ---------------- entry ---------------- */
.p-recruitment-entry {
  padding: 64px 16px;
  border-radius: 16px;
  background: linear-gradient(135deg, #82B0DB 0%, #4C8DCB 50%, #82B0DB 100%);
  color: #fff;
  text-align: center;
}

.p-recruitment-entry .c-section-ttl {
  line-height: 2;
}

.p-recruitment-entry .c-btn {
  color: #fff;
  padding-right: 4.375rem;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.p-recruitment-entry .c-btn .text {
  position: relative;
  z-index: 1;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.p-recruitment-entry .c-btn .text::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  -webkit-mask-image: url("../img/common/icon_window.svg");
  mask-image: url("../img/common/icon_window.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-position: center;
  mask-position: center;
  background-color: #fff;
}

.p-recruitment-entry .c-btn .icon {
  background: none;
}

.p-recruitment-entry .c-btn .icon::after {
  background-color: #fff;
}

.p-recruitment-entry .c-btn::before {
  content: "";
  display: block;
  border: 1px solid #fff;
  width: 56px;
  height: 100%;
  border-radius: 8px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .p-recruitment-entry .c-btn:hover::before {
    width: 100%;
    background-color: #fff;
  }

  .p-recruitment-entry .c-btn:hover .text {
    color: #4C8DCB;
  }

  .p-recruitment-entry .c-btn:hover .text::after {
    background-color: #4C8DCB;
  }

  .p-recruitment-entry .c-btn:hover .icon::after {
    background-color: #4C8DCB;
  }
}

@media screen and (max-width: 768px) {
  .p-recruitment-article__head {
    gap: 8px;
    margin-bottom: 32px;
  }

  .p-recruitment-article__ttl {
    font-size: 1.5rem;
  }

  .p-recruitment-article__img {
    padding-bottom: 64px;
  }

  .p-recruitment-article__img img {
    aspect-ratio: 326/216;
    -o-object-fit: cover;
    object-fit: cover;
  }

  .p-recruitment-section:not(:last-of-type) {
    margin-bottom: 80px;
  }

  .p-recruitment-section .contents-block:not(:last-of-type) {
    margin-bottom: 64px;
  }

  .p-recruitment-section .c-ttl-line {
    font-size: 1.125rem;
  }

  .p-recruitment-section dl {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ---------------- flow ---------------- */
  .p-flow-list {
    width: 100%;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 32px;
  }

  .p-flow-list .item {
    -ms-flex: initial;
    flex: initial;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    gap: 10px;
    padding: 15px 20px;
  }

  .p-flow-list .item::after {
    width: 100%;
    height: 20px;
    -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
    clip-path: polygon(50% 100%, 0 0, 100% 0);
    top: initial;
    right: initial;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: -20px;
    z-index: 1;
  }

  .p-flow-list .item .num {
    font-size: 1.375rem;
  }

  .p-flow-list .item .text {
    font-size: 1rem;
  }

  .p-flow-list .item:not(:first-child) {
    padding: 50px 0 24px;
  }

  .p-flow-list .item:first-child {
    height: 78px;
  }

  .p-flow-list .item:first-child, .p-flow-list .item:last-child {
    max-width: 100%;
  }

  /* ---------------- entry ---------------- */
  .p-recruitment-entry {
    text-align: left;
  }

  .p-recruitment-entry .c-section-ttl {
    font-size: 1.25rem;
  }

  .p-recruitment-entry .c-btn {
    color: #4C8DCB;
    padding-right: 0;
    width: 100%;
    height: 48px;
    background-color: #fff;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .p-recruitment-entry .c-btn .text {
    position: relative;
    z-index: 1;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
  }

  .p-recruitment-entry .c-btn .text::after {
    background-color: #4C8DCB;
  }

  .p-recruitment-entry .c-btn .icon {
    display: none;
  }
}

/* ---------------------------------------------
  news index page
  --------------------------------------------- */
.p-news-section {
  padding-bottom: 120px;
}

.p-news__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 24px;
}

.p-news__list .p-news-card:nth-child(n+10) {
  display: none;
}

.p-news__list.is-open .p-news-card:nth-child(n+10) {
  display: block;
}

.p-news-card {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 0 24px rgba(24, 33, 41, 0.08);
  overflow: hidden;
  min-height: 25rem;
}

.p-news-card .news-img {
  overflow: hidden;
}

.p-news-card .news-img img {
  transition: 0.3s ease;
  aspect-ratio: 384/216;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-news-card .news-text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  padding: 16px 16px 32px;
}

.p-news-card .news-text .date {
  color: #5F6061;
  font-size: 0.875rem;
}

.p-news-card .news-text .news-ttl {
  width: 100%;
  line-height: 2;
  transition: 0.3s ease;
}

@media (hover: hover) {
  .p-news-card a:hover .news-img img {
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  .p-news-card a:hover .news-text .news-ttl {
    color: #4C8DCB;
  }
}

@media screen and (max-width: 768px) {
  .p-news-section {
    padding-bottom: 80px;
  }

  .p-news__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .p-news-card {
    border-bottom: 2px solid #F5F7FA;
    min-height: initial;
  }

  .p-news-card .news-img img {
    aspect-ratio: 358/216;
  }

  .p-news-card .news-text {
    gap: 16px 12px;
    padding-bottom: 40px;
  }

  .p-news-card .news-text .news-ttl {
    font-size: 0.875rem;
  }
}

/* ---------------------------------------------
  news article
  --------------------------------------------- */
.p-news-article__head {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.p-news-article__head .date {
  color: #5F6061;
  font-size: 0.875rem;
}

.p-news-article__head .news-ttl {
  font-weight: 700;
}

.p-news-article__ttl {
  font-size: 2rem;
  font-weight: 700;
}

.p-news-article__eye-catch {
  margin-bottom: 80px;
}

.p-news-article__eye-catch img {
  border-radius: 16px;
  aspect-ratio: 1.7/1;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-news-article__body h2 {
  margin-bottom: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  padding-bottom: 32px;
}

.p-news-article__body h2::before {
  content: "";
  display: block;
  width: 28px;
  height: 16px;
  background: url("../img/common/underline-deco.svg") no-repeat center/100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.p-news-article__body h2::after {
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: 2px;
  background-color: #F5F7FA;
  border-radius: 2px;
  position: absolute;
  bottom: 8px;
  left: 32px;
}

.p-news-article__body h3 {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 12px;
  position: relative;
  margin-top: 80px;
  margin-bottom: 16px;
}

.p-news-article__body h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 75%;
  background-color: #4C8DCB;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-news-article__body img {
  border-radius: 16px;
  margin-top: 80px;
}

.p-news-article__body p {
  margin-top: 16px;
}

.p-news-article__body p+p {
  margin-top: 32px;
}

.p-news-article__body .bold, .p-news-article__body strong, .p-recruitment-section .contents-block strong {
  font-weight: 700;
  background-color: #E1EBF5;
}

.p-news-article__body a {
  color: #4C8DCB;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .p-news-article__ttl {
    font-size: 1.5rem;
  }

  .p-news-article__eye-catch {
    margin-bottom: 64px;
  }

  .p-news-article__body h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .p-news-article__body h2::before {
    width: 22px;
    height: 12px;
  }

  .p-news-article__body h2::after {
    width: calc(100% - 24px);
    bottom: 6px;
    left: 24px;
  }

  .p-news-article__body h3 {
    font-size: 1.25rem;
    margin-top: 64px;
    margin-bottom: 16px;
  }

  .p-news-article__body img {
    border-radius: 16px;
    margin-top: 64px;
  }

  .p-news-article__body p {
    margin-top: 16px;
  }

  .p-news-article__body p+p {
    margin-top: 40px;
  }
}

/* ---------------------------------------------
  privacy page
  --------------------------------------------- */
.p-privacy-section {
  padding-bottom: 120px;
}

.p-privacy-section .c-ttl-line {
  margin-bottom: 16px;
}

.p-privacy-section .c-ttl-line:not(:first-of-type) {
  margin-top: 80px;
}

.p-privacy-section p+p {
  margin-top: 16px;
}

.p-privacy__block {
  background-color: #F5F7FA;
  border-radius: 8px;
  padding: 40px;
  margin-top: 80px;
}

.p-privacy__block .c-ttl-circle {
  font-size: 1rem;
}

@media screen and (max-width: 768px) {
  .p-privacy-section {
    padding-bottom: 80px;
  }

  .p-privacy-section .c-ttl-line {
    font-size: 1.125rem;
  }

  .p-privacy-section .c-ttl-line:not(:first-of-type) {
    margin-top: 64px;
  }

  .p-privacy__block {
    padding: 32px;
    margin-top: 64px;
  }
}

/* Gutenberg ブロックエディタの見出しスタイル調整 */

/* h2（募集要項詳細・お知らせ詳細に対応） */
.editor-styles-wrapper h2.wp-block-heading {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 2rem;
  position: relative;
  padding-bottom: 32px;
}

.editor-styles-wrapper h2.wp-block-heading::before {
  content: "";
  display: block;
  width: 28px;
  height: 16px;
  background: url("../img/common/underline-deco.svg") no-repeat center/100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.editor-styles-wrapper h2.wp-block-heading::after {
  content: "";
  display: block;
  width: calc(100% - 32px);
  height: 2px;
  background-color: #F5F7FA;
  border-radius: 2px;
  position: absolute;
  bottom: 8px;
  left: 32px;
}

/* h3（募集要項詳細・お知らせ詳細に対応） */
.editor-styles-wrapper h3.wp-block-heading {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 12px;
  position: relative;
  margin-top: 80px;
  margin-bottom: 16px;
}

.editor-styles-wrapper h3.wp-block-heading::before {
  content: "";
  display: block;
  width: 4px;
  height: 75%;
  background-color: #4C8DCB;
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* h4（募集要項詳細に対応：.c-ttl-circle を模倣） */
.editor-styles-wrapper h4.wp-block-heading {
  font-size: 1.125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.editor-styles-wrapper h4.wp-block-heading::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #4C8DCB;
  border-radius: 50%;
}

/* スマホ対応 */
@media screen and (max-width: 768px) {
  .editor-styles-wrapper h2.wp-block-heading {
    font-size: 1.5rem;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .editor-styles-wrapper h2.wp-block-heading::before {
    width: 22px;
    height: 12px;
  }

  .editor-styles-wrapper h2.wp-block-heading::after {
    width: calc(100% - 24px);
    bottom: 6px;
    left: 24px;
  }

  .editor-styles-wrapper h3.wp-block-heading {
    font-size: 1.25rem;
    margin-top: 64px;
    margin-bottom: 16px;
  }

  .editor-styles-wrapper h4.wp-block-heading {
    font-size: 0.875rem;
    margin-bottom: 16px;
  }

  .editor-styles-wrapper h4.wp-block-heading::before {
    width: 6px;
    height: 6px;
  }
}