@charset "UTF-8";
/* フォント変換 */
/* フレキシブルサイズ（増加・減少の両方に対応） */
/* スマートフォン用フレキシブルサイズ（320-767pxでスケール） */
/* レスポンシブフォントサイズ（768-1200pxで縮小） */
/* 点線パターン */
/* Button  */
.c-btn01 {
  display: inline flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: fit-content;
  min-width: 280px;
  height: 40px;
  min-height: 62px;
  padding: 0 2em;
  border-radius: 50px;
  background-color: #014b95;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  overflow: hidden;
}
.c-btn01::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50px;
  background-image: linear-gradient(to right, #25a0de, #865190 51%, #bc0c13);
  transition: all 0.3s ease-out;
  translate: -101% 0;
}
.c-btn01::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 28px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #faf9f6;
  border-right: 2px solid #faf9f6;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}
.c-btn01:hover {
  opacity: 1;
}
.c-btn01:hover::before {
  translate: 0 0;
}
.c-btn01:hover::after {
  right: 18px;
}
.c-btn01 > span {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #faf9f6;
}

.c-btn02 {
  display: inline-block;
  position: relative;
  padding: 0 25px 0 0;
  font-size: clamp(15px, 13.5px + 0.1953125vw, 16px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #014b95;
}
.c-btn02::after {
  content: "";
  position: absolute;
  top: calc(50% - 3px);
  right: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid #014b95;
  border-right: 1px solid #014b95;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}

.c-btn03 {
  display: inline flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 620px;
  max-width: 100%;
  height: 130px;
  padding: 0 2em;
  border-radius: 100px;
  background-color: #bc0c13;
  font-size: clamp(18px, 15px + 0.390625vw, 20px);
  line-height: 1.4;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-btn03 {
    height: 70px;
    font-size: 16px;
  }
}
.c-btn03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 100px;
  background-image: linear-gradient(to right, #25a0de, #865190 51%, #bc0c13);
  transition: all 0.3s ease-out;
  translate: -101% 0;
}
.c-btn03::after {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: 70px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #faf9f6;
  border-right: 2px solid #faf9f6;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}
.c-btn03:hover {
  opacity: 1;
}
.c-btn03:hover::before {
  translate: 0 0;
}
.c-btn03:hover::after {
  right: 60px;
}
.c-btn03 > span {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #faf9f6;
}

.c-btn04 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  max-width: 340px;
  height: 44px;
  margin: auto;
  padding: 10px;
  border: 1px solid #014b95;
  border-radius: 50px;
  background: url("../img/icon-link.svg") no-repeat calc(100% - 30px) 13px;
  background-size: 15px auto;
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: 0;
  color: #014b95;
}

/* Breadcrumbs */
.c-breadcrumbs {
  margin: 15px 0 40px;
  font-size: 12px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .c-breadcrumbs {
    margin: 15px 0 30px;
  }
}
.c-breadcrumbs a {
  color: #282828;
}

/* Form reset */
input,
button,
select,
textarea {
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  appearance: none;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

/* form */
input {
  width: 100%;
  height: 70px;
  padding: 0.5em;
  box-sizing: border-box;
  border: 1px solid #faf9f6;
  border-radius: 15px;
  background-color: #faf9f6;
}
@media screen and (max-width: 767px) {
  input {
    height: 50px;
  }
}

textarea {
  width: 100%;
  height: 300px;
  padding: 0.5em;
  box-sizing: border-box;
  border: 1px solid #faf9f6;
  border-radius: 15px;
  background-color: #faf9f6;
}
@media screen and (max-width: 767px) {
  textarea {
    flex: none;
    width: 100%;
    height: 105px;
  }
}

input[type=checkbox] {
  position: absolute;
  z-index: -1;
  opacity: 0;
}

/* input[type="checkbox"]+* はチェックの次の要素 */
input[type=checkbox] + * {
  display: inline-block;
  position: relative;
  padding-left: 40px;
  margin-bottom: 5px;
  cursor: pointer;
}

input[type=checkbox] + *::before {
  content: "";
  display: inline-block;
  position: absolute;
  width: 30px;
  height: 30px;
  border: solid 1px #282828;
  border-radius: 5px;
  background-color: #fff;
  inset: 4px auto 0 0;
}

input[type=checkbox]:checked + *::after {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 23px;
  margin: auto;
  border: solid #282828;
  transform: rotate(45deg);
  border-width: 0 3px 3px 0;
  inset: 4px auto auto 7px;
}

input[type=checkbox]:focus + *::before {
  outline: 2px solid #3498db;
}

.submit-wrap {
  position: relative;
  width: 280px;
  height: 62px;
  margin: auto;
  text-align: center;
}
.submit-wrap::after {
  content: "";
  position: absolute;
  top: calc(50% - 4px);
  right: 28px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #faf9f6;
  border-right: 2px solid #faf9f6;
  transform: rotate(45deg);
  transition: all 0.3s ease-out;
}

input[type=submit] {
  display: inline flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 62px;
  margin: auto;
  padding: 0 2em;
  border-radius: 50px;
  background-color: #014b95;
  font-size: clamp(14px, 10.7457627119px + 0.4237288136vw, 16px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: #fff;
}

input[type=submit]:hover {
  opacity: 0.7;
}

input[type=submit]:active {
  background-color: #1c598a;
}

input[type=submit]:focus {
  border: 2px solid #3498db;
  background-color: #1c598a;
}

.require {
  display: inline flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  padding: 2px 5px;
  border-radius: 5px;
  background-color: #bc0c13;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
  margin-left: 8px;
}

.grecaptcha-badge {
  display: none;
}

.c-form-message {
  display: inline-block;
  width: 400px;
  max-width: 80%;
  padding: 10px;
  border: 1px solid #f07c26;
  text-align: left;
  text-align: center;
  margin-top: 50px;
}
.c-form-message strong {
  font-weight: bold;
  color: #ca5c7d;
}

.wpcf7-form-control-wrap {
  display: block;
  margin: 10px 0 32px;
}

[data-name=year] {
  width: 272px;
}

[data-name=month] {
  width: 93px;
}

[data-name=day] {
  width: 93px;
}

[data-name=year],
[data-name=month],
[data-name=day] {
  display: inline-block;
  position: relative;
  margin-right: 10px;
}

.p-entry [data-name=your-message] {
  margin-bottom: 0;
}

.wpcf7-acceptance {
  display: block;
  margin: 55px 0 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wpcf7-acceptance {
    text-align: left;
  }
}
.wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.wpcf7-acceptance a {
  color: #bc0c13;
}

/* 確認ページ
--------------------------- */
.wpcf7-form p label {
  display: block;
  margin-bottom: 30px;
  line-height: 2.5;
}
.wpcf7-form .form-birthday {
  margin-bottom: 30px;
  line-height: 2.5;
}
.wpcf7-form .acceptance {
  margin: 70px 0;
}
.wpcf7-form .confirm-wrap {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  grid-template-columns: 160px 280px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form .confirm-wrap {
    grid-template-columns: 280px;
  }
}
.wpcf7-form .confirm-previous input {
  height: 62px;
  border: 1px solid #014b95;
  border-radius: 50px;
  color: #014b95;
}

/* 完了ページ
--------------------------- */
.p-thanks-sec01 {
  padding-top: 60px;
}
.p-thanks-sec01__title {
  margin-bottom: clamp(80px, 50px + 3.90625vw, 100px);
  font-size: clamp(24px, 18px + 0.78125vw, 28px);
  font-weight: bold;
  line-height: 1.57;
  text-align: center;
  color: #014b95;
}
@media screen and (max-width: 767px) {
  .p-thanks-sec01__title {
    margin-bottom: 60px;
    font-size: 18px;
  }
}
.p-thanks-sec01__lead {
  margin-bottom: clamp(80px, 50px + 3.90625vw, 100px);
  line-height: 2.5;
  letter-spacing: 0.02em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-thanks-sec01__lead {
    margin-bottom: 60px;
    line-height: 2.27;
  }
}
.p-thanks-sec01__btn {
  margin-bottom: clamp(160px, 100px + 7.8125vw, 200px);
  text-align: center;
}

/* Page heading */
.c-heading01 {
  margin-bottom: clamp(40px, 25px + 1.953125vw, 50px);
}
.c-heading01__en {
  width: fit-content;
  margin: 0 auto;
  background-image: linear-gradient(to right, #25a0de, #bc0c13);
  font-family: "Cal Sans", sans-serif;
  font-size: clamp(20px, 14px + 0.78125vw, 24px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: transparent;
  word-break: break-word;
  background-clip: text;
}
@media screen and (max-width: 767px) {
  .c-heading01__en {
    font-size: 16px;
  }
}
.c-heading01__jp {
  font-size: clamp(30px, 21px + 1.171875vw, 36px);
  font-weight: bold;
  line-height: 1.67;
  text-align: center;
  color: #014b95;
}
@media screen and (max-width: 767px) {
  .c-heading01__jp {
    font-size: 22px;
  }
}

.c-history01 {
  width: 100%;
  max-width: 792px;
  margin: 0 auto;
}
.c-history01--interview {
  margin-top: 60px;
  max-width: 748px;
}
@media screen and (max-width: 767px) {
  .c-history01--interview {
    margin-top: 0;
  }
}
.c-history01--interview .c-history01__content {
  padding-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .c-history01--interview .c-history01__point {
    width: 44px;
  }
  .c-history01--interview .c-history01__point::after {
    inset: -2px 0 auto 4px;
  }
}
.c-history01__item {
  display: flex;
  justify-content: flex-start;
}
.c-history01__item:last-of-type .c-history01__point::before {
  display: none;
}
.c-history01__year {
  width: 2.2em;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 14px + 0.78125vw, 24px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  color: #014b95;
}
@media screen and (max-width: 767px) {
  .c-history01__year {
    font-size: 16px;
  }
}
.c-history01__time {
  width: 2.2em;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: clamp(20px, 14px + 0.78125vw, 24px);
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
  text-align: left;
  color: #014b95;
}
@media screen and (max-width: 767px) {
  .c-history01__time {
    position: relative;
    top: 2px;
    font-size: 16px;
  }
}
.c-history01__point {
  position: relative;
  top: 8px;
  z-index: 2;
  width: clamp(78px, 63px + 1.953125vw, 88px);
}
@media screen and (max-width: 767px) {
  .c-history01__point {
    width: 30px;
  }
}
.c-history01__point::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 2px;
  height: 100%;
  margin: auto;
  inset: auto 0 0 5px;
  border-left: 1px solid #014b95;
}
.c-history01__point--last::before {
  inset: auto 0 100px;
  height: calc(100% - 100px);
}
.c-history01__point::after {
  content: "";
  position: absolute;
  inset: -3px 0 auto 4px;
  width: 10px;
  height: 10px;
  margin: auto;
  border-radius: 20px;
  background-color: #014b95;
}
@media screen and (max-width: 767px) {
  .c-history01__point::after {
    inset: -3px 0 auto 4px;
  }
}
.c-history01__content {
  flex: 1;
  padding-bottom: 45px;
}
.c-history01__content-item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 12px;
}
.c-history01__content-item + .c-history01__content-item {
  margin-top: 20px;
}
.c-history01__content-item02 + .c-history01__content-item02 {
  margin-top: 30px;
}
.c-history01__month {
  width: 42px;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: clamp(18px, 15px + 0.390625vw, 20px);
  font-weight: bold;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: right;
  color: #014b95;
}
@media screen and (max-width: 767px) {
  .c-history01__month {
    width: 35px;
    font-size: 16px;
  }
}
.c-history01__month span {
  font-size: 16px;
  padding-left: 2px;
}
@media screen and (max-width: 767px) {
  .c-history01__month span {
    font-size: 14px;
  }
}
.c-history01__title {
  margin: -5px 0 3px;
  line-height: 1.88;
  color: #014b95;
}
.c-history01__text {
  flex: 1;
  position: relative;
  top: -4px;
  line-height: 1.88;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-history01__text {
    top: -6px;
  }
}

/* --------------------------
メニュー gnav
--------------------------- */
/* PC */
.c-nav .menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0 clamp(5px, -32.6708860759px + 4.9050632911vw, 36px);
}

/* sp ボタン  */
.c-nav-button__wrap {
  display: none;
}
@media screen and (max-width: 1090px) {
  .c-nav-button__wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 40px;
    right: 52px;
    z-index: 778;
    width: 45px;
    height: 45px;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .c-nav-button__wrap {
    top: 21px;
    right: 25px;
  }
}

.c-nav-button {
  position: relative;
  width: 20px;
  height: 16px;
  margin: auto;
  border: none;
  background: none;
  cursor: pointer;
}
.c-nav-button span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  border-radius: 10px;
  background: #282828;
  transition: 0.3s ease-in;
}
.c-nav-button span:nth-child(2) {
  top: 50%;
}
.c-nav-button span:nth-child(3) {
  top: 100%;
}
.c-nav-button.is-close span {
  top: 50%;
  transform: rotate(45deg);
}
.c-nav-button.is-close span:nth-child(2) {
  width: 0;
}
.c-nav-button.is-close span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

/* ハンバーガーメニュー内 */
.c-nav-sp {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  padding: 87px 40px 40px;
  background-color: rgba(255, 255, 255, 0.75);
  opacity: 0;
  transition: all 0.3s ease-in;
  backdrop-filter: blur(7.6px);
  visibility: hidden;
  overflow-y: auto;
}
.c-nav-sp.is-open {
  opacity: 1;
  visibility: visible;
}
.c-nav-sp__brand {
  margin-bottom: var(--sp-1-5);
}
.c-nav-sp .menu {
  display: block;
  margin: 0;
  padding: 0;
}
.c-nav-sp .menu > .menu-item {
  position: relative;
  padding: 0;
}
.c-nav-sp .menu > .menu-item > a {
  display: block;
  padding: 17px 0;
  font-size: 16px;
}
.c-nav-sp__privacy {
  margin-bottom: 17px;
  padding: 17px 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.85;
  text-align: left;
  color: #808080;
}
.c-nav-sp__copylight {
  margin-top: 35px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.64;
  letter-spacing: 0.22px;
}

/* Page Key Visual */
.c-page-kv {
  position: relative;
  width: 100%;
  height: 330px;
  background: url("./img/img_pagetitle_bg01.png") no-repeat 50% 50%;
  background-size: cover;
  background-color: #777;
}

.c-pageTop {
  position: fixed;
  bottom: 20px;
  right: 0;
  width: 76px;
  height: 60px;
  padding-top: 6px;
  box-sizing: border-box;
  text-align: center;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  background-color: #ff6a01;
  opacity: 0;
  transition: 0.3s;
  z-index: 777;
  cursor: pointer;
}
.c-pageTop img {
  rotate: -90deg;
}

.c-pageTop.is-show {
  opacity: 1;
}

.c-fix-banner-sp {
  display: none;
  position: fixed;
  bottom: 0%;
  left: 0;
  z-index: 775;
}
@media screen and (max-width: 767px) {
  .c-fix-banner-sp {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    width: 100%;
  }
}
.c-fix-banner-sp__item01 {
  width: 18%;
}
.c-fix-banner-sp__item02 {
  width: 50%;
}

.c-post-blog-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 0 0 clamp(110px, 80px + 3.90625vw, 130px);
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-post-blog-list {
    margin-bottom: 60px;
  }
}
.c-post-blog-list__item {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .c-post-blog-list__item {
    gap: 10px;
  }
}
.c-post-blog-list__img {
  width: 206px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-post-blog-list__img {
    width: 90px;
  }
}
.c-post-blog-list__img > a {
  display: block;
}
.c-post-blog-list__img > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 206/139;
  border-radius: 15px;
}
.c-post-blog-list__content {
  flex: 1;
  padding-top: 25px;
}
@media screen and (max-width: 767px) {
  .c-post-blog-list__content {
    padding-top: 0;
  }
}
.c-post-blog-list__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.c-post-blog-list__time {
  width: 60px;
  font-size: 13px;
  line-height: 1;
  color: #014b95;
}
.c-post-blog-list .post-categories {
  display: flex;
  gap: 4px;
  position: relative;
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.c-post-blog-list .post-categories > li > a {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2px 12px 3px;
  border: solid 1px #014b95;
  border-radius: 3px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  color: #014b95;
}
@media screen and (max-width: 767px) {
  .c-post-blog-list .post-categories > li > a {
    font-size: 11px;
  }
}
.c-post-blog-list__title {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.88;
}
@media screen and (max-width: 767px) {
  .c-post-blog-list__title {
    font-size: 14px;
    line-height: 1.43;
  }
}

.c-blog-single {
  margin: 0;
  padding: 0;
}
.c-blog-single__title {
  margin-bottom: 15px;
  font-size: clamp(25px, 20.5px + 0.5859375vw, 28px);
  font-weight: bold;
  line-height: 1.57;
  color: #014b95;
}
@media screen and (max-width: 767px) {
  .c-blog-single__title {
    font-size: 22px;
  }
}
.c-blog-single__info {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 0;
}
.c-blog-single__category {
  margin-right: 22px;
}
.c-blog-single__category > span {
  display: block;
  width: 150px;
  padding: 5px 2px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-blog-single__category > span {
    font-size: 14px;
  }
}
.c-blog-single__time {
  position: relative;
  top: 5px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
  color: #014b95;
}
.c-blog-single__img {
  margin-bottom: clamp(80px, 50px + 3.90625vw, 100px);
}
@media screen and (max-width: 767px) {
  .c-blog-single__img {
    margin-bottom: 60px;
  }
}
.c-blog-single__img img {
  width: 100%;
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .c-blog-single__img img {
    border-radius: 20px;
  }
}

/* 下層ページのキービジュアル */
.c-subpage-kv {
  padding: 20px 20px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-subpage-kv {
    padding: 10px 10px 0;
  }
}
.c-subpage-kv__inner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background-color: #e9eef4;
}
@media screen and (max-width: 767px) {
  .c-subpage-kv__inner {
    border-radius: 20px;
  }
}
.c-subpage-kv__heading {
  width: fit-content;
  height: 360px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .c-subpage-kv__heading {
    height: 200px;
  }
}
.c-subpage-kv__jp {
  position: absolute;
  z-index: 2;
  margin: auto;
  font-size: clamp(40px, 31px + 1.171875vw, 46px);
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-align: center;
  color: #014b95;
  inset: auto 0 68px;
}
@media screen and (max-width: 767px) {
  .c-subpage-kv__jp {
    inset: auto 0 50px;
    font-size: 22px;
  }
}
.c-subpage-kv__en {
  position: absolute;
  z-index: 1;
  margin: auto;
  font-family: "Cal Sans", sans-serif;
  font-size: clamp(120px, -60px + 23.4375vw, 240px);
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  color: #faf9f6;
  inset: auto 0 clamp(-37px, 18px + -4.296875vw, -15px);
}
@media screen and (max-width: 767px) {
  .c-subpage-kv__en {
    font-size: clamp(60px, 52.841163311px + 2.2371364653vw, 70px);
    inset: auto 0 -10px;
  }
}
.c-subpage-kv--recruit .c-subpage-kv__inner {
  background-color: transparent;
  background-image: linear-gradient(103deg, #f5b3b8 35%, #fafcb8);
}
.c-subpage-kv--recruit .c-subpage-kv__en {
  opacity: 0.3;
}

/*  Table1 */
.c-table01 {
  width: 100%;
  border: none;
}
.c-table01 th {
  padding: 19px 20px 20px 30px;
  border: none;
  background-color: transparent;
  letter-spacing: 0.02em;
  text-align: left;
  color: #014b95;
  border-bottom: 1px solid #014b95;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .c-table01 th {
    padding: 19px 10px 20px 0;
  }
}
.c-table01 td {
  padding: 19px 20px 20px 40px;
  border: none;
  border-bottom: 1px solid #dedede;
  line-height: 1.88;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  .c-table01 td {
    padding: 19px 10px 20px;
  }
}
.c-table01 tr:first-of-type th {
  border-top: 1px solid #014b95;
}
.c-table01 tr:first-of-type td {
  border-top: 1px solid #dedede;
}

.c-post-works-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px 36px;
  margin: 0 0 clamp(70px, -20px + 11.71875vw, 130px);
  padding: 0;
}
@media screen and (max-width: 1090px) {
  .c-post-works-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .c-post-works-list {
    gap: 30px 20px;
  }
}

.c-post-works-card {
  cursor: pointer;
  transition: 0.2s linear;
}
.c-post-works-card:hover {
  opacity: 0.9;
}
.c-post-works-card:hover .c-post-works-card__img > img {
  transform: scale(1.1);
}
.c-post-works-card__img {
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.c-post-works-card__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  aspect-ratio: 376/251;
  border-radius: 20px;
  transition: 0.2s linear;
}
.c-post-works-card__date {
  width: 60px;
  font-size: 13px;
  line-height: 1;
}
.c-post-works-card__title {
  padding: 5px 0;
  font-size: clamp(18px, 15px + 0.390625vw, 20px);
  font-weight: 700;
  line-height: 1.88;
  color: #282828;
}
@media screen and (max-width: 767px) {
  .c-post-works-card__title {
    font-size: 16px;
  }
}

.c-post-works-modal {
  position: fixed;
  z-index: 888;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 20px;
  opacity: 0;
  transition: 0.1s;
  inset: 0;
  overflow: hidden;
  scale: 0.9;
}
.c-post-works-modal.is-open {
  scale: 1;
  opacity: 1;
}
.c-post-works-modal::backdrop {
  display: none;
}
.c-post-works-modal__bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
}
.c-post-works-modal__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.c-post-works-modal__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(35px, 12.5px + 2.9296875vw, 50px);
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 1600px;
  margin: auto;
  padding: clamp(35px, 12.5px + 2.9296875vw, 50px);
  border-radius: 20px;
  background-color: #faf9f6;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1090px) {
  .c-post-works-modal__content {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .c-post-works-modal__content {
    flex-direction: column;
    gap: 30px;
    padding: 50px 20px 30px;
  }
}
.c-post-works-modal__img {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .c-post-works-modal__img {
    width: 100%;
  }
}
.c-post-works-modal__img img {
  border-radius: 15px;
}
.c-post-works-modal__contents {
  padding-top: clamp(60px, 30px + 3.90625vw, 80px);
  width: clamp(240px, 219px + 2.734375vw, 254px);
}
@media screen and (max-width: 767px) {
  .c-post-works-modal__contents {
    padding-top: 0;
    width: 100%;
  }
}
.c-post-works-modal__list {
  border-bottom: 1px solid #282828;
}
.c-post-works-modal__item {
  padding: 14px 0;
  border-top: 1px solid #282828;
}
.c-post-works-modal__item dt {
  margin-bottom: 5px;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #014b95;
}
.c-post-works-modal__item dd {
  letter-spacing: 0.02em;
}
.c-post-works-modal__date {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1;
}
.c-post-works-modal__btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 767px) {
  .c-post-works-modal__btn {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
  }
}
.c-post-works-modal__btn button {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.c-post-works-modal__btn button::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #282828;
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  .c-post-works-modal__btn button::before {
    width: 30px;
  }
}
.c-post-works-modal__btn button::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 40px;
  height: 1px;
  background-color: #282828;
  transform: rotate(-45deg);
}
@media screen and (max-width: 767px) {
  .c-post-works-modal__btn button::after {
    width: 30px;
  }
}

.c-works-single {
  margin: 0px 0 0 0;
  padding: 0;
}
.c-works-single__title {
  margin-bottom: 20px;
  font-size: clamp(25px, 20.5px + 0.5859375vw, 28px);
  font-weight: bold;
  line-height: 1.57;
  color: #014b95;
}
.c-works-single__img {
  margin-bottom: 20px;
}
.c-works-single__img img {
  width: 100%;
  border-radius: 30px;
}
