@charset "UTF-8";
/*============================================================================================================
	base
============================================================================================================*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	smooth scroll
------------------------------------------*/
html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 769px) {
  html {
    scroll-padding-top: 95px;
  }
}

/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 95px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #444;
  --color-blue: #153B8E;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 60px;
    --inner-padding: 20px;
    --cv-height: 50px;
  }
}

/*------------------------------------------
	.js-interview-slider
------------------------------------------*/
.js-interview-slider .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.js-interview-slider .splide__arrow {
  height: 40px;
  width: 40px;
  background: var(--color-blue);
  border-radius: 50%;
  border: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.js-interview-slider .splide__arrow svg {
  display: none;
}
.js-interview-slider .splide__arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 10px;
  background: url("../img/ico_arrow01.svg") no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.js-interview-slider .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  left: -30px;
}
.js-interview-slider .splide__arrow.splide__arrow--next {
  right: -30px;
  -webkit-transform: scale(1, -1);
          transform: scale(1, -1);
}
.js-interview-slider .splide__arrow:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .js-interview-slider .splide__arrow {
    width: 40px;
    height: 40px;
  }
  .js-interview-slider .splide__arrow::before {
    height: 18px;
  }
  .js-interview-slider .splide__arrow.splide__arrow--prev {
    left: -15px;
  }
  .js-interview-slider .splide__arrow.splide__arrow--next {
    right: -15px;
  }
}
@media screen and (max-width: 768px) {
  .js-interview-slider .splide__pagination {
    margin-top: 30px;
  }
}

/* 前へ / 次へボタン */
.splide--navWrap {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .splide--navWrap {
    width: 70%;
    margin: 20px auto 0;
  }
}

.my-carousel-progress {
  background: #E7E7E7;
  width: 180px;
}

.my-carousel-progress-bar {
  background: var(--color-blue);
  height: 2px;
  -webkit-transition: width 400ms ease;
  transition: width 400ms ease;
  width: 0;
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.6;
}

.f-serif {
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
}

.f-cormorantIn {
  font-weight: 400;
  font-family: "Cormorant Infant", serif;
}

/*------------------------------------------
	frame
------------------------------------------*/
@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}

.inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*------------------------------------------
	scroll action
------------------------------------------*/
.js-scroll {
  -webkit-transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, transform 1.5s;
  transition: opacity 1s, transform 1.5s, -webkit-transform 1.5s;
}
.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-scroll:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.js-scroll.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
}
.js-scroll.is-fadeInUp.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .js-scroll.is-fadeInUp {
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  height: var(--header-height);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 9990;
  top: 0;
  left: 0;
}
.l-header__logoWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.l-header__logoWrap a, .l-header__logoWrap img {
  display: block;
}
.l-header__logoWrap-txt {
  display: block;
  padding-inline: 15px;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
  line-height: 2;
}
.l-header__logoWrap-txtWrap {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.l-header__logoWrap-txt + .l-header__logoWrap-txt {
  border-top: 1px solid;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    padding: 0 40px;
    margin-bottom: calc(var(--header-height) * -1);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header.is-scroll {
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    position: absolute;
    padding: 0 70px 0 15px;
  }
  .l-header__logoWrap {
    gap: 10px;
  }
  .l-header__logoWrap img {
    width: 150px;
  }
  .l-header__logoWrap-txt {
    padding-inline: 10px;
    font-size: 10px;
  }
}

.l-header-cv {
  position: fixed;
  z-index: 9992;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 65px;
  height: 408px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
}
.l-header-cv__btn {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.2em;
  text-align: center;
}
.l-header-cv__btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-top: 5px;
  border-radius: inherit;
  background: var(--cv-color);
}
.l-header-cv__btn-en {
  font-size: 13px;
  letter-spacing: 0;
}
.l-header-cv__btn.is-blue {
  color: #fff;
}
.l-header-cv__btn.is-blue a {
  --cv-color: var(--color-blue);
}
.l-header-cv__btn.is-sky {
  color: #fff;
}
.l-header-cv__btn.is-sky a {
  --cv-color: #4FBCC8;
}
@media screen and (min-width: 769px) {
  .l-header-cv {
    height: 408px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-header-cv__btn {
    width: 100%;
    height: 220px;
    border-radius: 16px 0 0 16px;
  }
  .l-header-cv__btn a {
    border: 2px solid var(--cv-color);
    border-right: none;
    width: 100%;
    margin: 0 0 0 auto;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
  .l-header-cv__btn a:hover {
    opacity: 1;
    background: #fff;
  }
  .l-header-cv__btn.is-blue a:hover {
    color: var(--cv-color);
  }
  .l-header-cv__btn.is-sky a:hover {
    color: var(--cv-color);
  }
}
@media screen and (max-width: 768px) {
  .l-header-cv {
    top: auto;
    bottom: 0;
    width: 100%;
    margin: auto;
    height: var(--cv-height);
  }
  .l-header-cv__btn {
    width: 50%;
    border-radius: 10px 10px 0 0;
    font-size: 12px;
  }
  .l-header-cv__btn-en {
    font-size: 20px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: var(--color-blue);
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.l-footer a, .l-footer span {
  color: inherit !important;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a, .l-footer li, .l-footer div, .l-footer span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-footer-inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 50px 10px;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 25px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-size: 14px;
  text-align: center;
  font-weight: 500 !important;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding: 0 20px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-size: 11px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px 80px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: 70px;
  height: 70px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9990;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: #2A53AD;
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: currentColor;
  position: absolute;
  top: calc(50% - 4px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    display: block !important;
    width: 40px;
    height: 40px;
    position: fixed !important;
    opacity: 1 !important;
    right: 15px;
    bottom: 60px !important;
  }
  .pagetop a {
    opacity: 1;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}
.l-nav-list__item {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
  }
  .l-nav-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
  .l-nav-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 30px;
  }
  .l-nav-list__item {
    text-align: center;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-blue);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: 9992;
    position: fixed;
    top: 5px;
    right: 5px;
    background: var(--color-blue);
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 17px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 17px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(7px) rotate(-225deg);
            transform: translateY(7px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(225deg);
            transform: translateY(-7px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 80px 20px calc(var(--cv-height) + 80px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-blue);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-bottom: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  position: relative;
  background: url("../img/bg_mv01.webp") no-repeat right bottom/cover;
}
.l-mv img {
  width: 100%;
}
.l-mv-imgBox {
  width: 100%;
  margin: 95px auto 0;
  padding-inline: 95px 0;
  overflow: hidden;
}
.l-mv-imgBox img {
  width: 100%;
}
@media screen and (min-width: 769px) {
  .l-mv-imgBox img {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-mv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-bottom: 30px;
    margin-top: 0;
    padding: 0 15px;
    z-index: -1;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .l-mv::before {
    width: 170px;
    bottom: -8%;
  }
  .l-mv-imgBox {
    width: 100%;
    padding-inline: 0;
    margin-top: 65px;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  font-weight: 900;
  font-size: 44px;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
}
.c-tit01::after {
  content: "";
  display: block;
  width: 621px;
  aspect-ratio: 621/149;
  background: url("../img/bg_line01.svg") no-repeat center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: -1% auto 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 22px;
  }
  .c-tit01::after {
    width: 100%;
    max-height: 100px;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.c-tit02 {
  font-weight: 900;
  font-size: 44px;
  text-align: left;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
}
.c-tit02::before {
  content: "";
  display: block;
  width: 150px;
  aspect-ratio: 150/57;
  background: url("../img/txt_deco01.svg") no-repeat center/contain;
  position: absolute;
  top: -38%;
  left: -8%;
  margin: -1% auto 0;
  z-index: -1;
  pointer-events: none;
}
.c-tit02::after {
  content: "";
  display: block;
  width: 255px;
  aspect-ratio: 255/61;
  background: url("../img/bg_line02.svg") no-repeat center/contain;
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -2%;
  margin: -1% auto 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    font-size: 28px;
    margin-top: 40px !important;
  }
  .c-tit02::before {
    content: "";
    display: block;
    width: 100px;
    aspect-ratio: 150/57;
    background: url("../img/txt_deco01.svg") no-repeat center/contain;
    position: absolute;
    top: -54%;
    left: -4%;
    margin: -1% auto 0;
    z-index: -1;
    pointer-events: none;
  }
  .c-tit02::after {
    width: 50%;
    max-height: 100px;
    left: 0%;
  }
}

.c-tit03 {
  font-weight: 900;
  font-size: 44px;
  text-align: left;
  font-family: "Zen Old Mincho", serif;
  letter-spacing: 0.18em;
  position: relative;
  z-index: 1;
}
.c-tit03::before {
  content: "";
  display: block;
  width: 163px;
  aspect-ratio: 163/58;
  background: url("../img/txt_deco02.svg") no-repeat center/contain;
  position: absolute;
  top: -38%;
  left: -8%;
  margin: -1% auto 0;
  z-index: -1;
  pointer-events: none;
}
.c-tit03::after {
  content: "";
  display: block;
  width: 255px;
  aspect-ratio: 255/61;
  background: url("../img/bg_line02.svg") no-repeat center/contain;
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -2%;
  margin: -1% auto 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-tit03 {
    font-size: 28px;
    margin-top: 100px !important;
  }
  .c-tit03::before {
    content: "";
    display: block;
    width: 100px;
    aspect-ratio: 150/57;
    background: url("../img/txt_deco02.svg") no-repeat center/contain;
    position: absolute;
    top: -54%;
    left: -4%;
    margin: -1% auto 0;
    z-index: -1;
    pointer-events: none;
  }
  .c-tit03::after {
    width: 50%;
    max-height: 100px;
    left: 0%;
  }
}

.c-titBox01 {
  --titSize: min(47% - 60px, 565px);
  --imgSize: 45.5%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: var(--titSize) 50px var(--imgSize);
  grid-template-columns: var(--titSize) var(--imgSize);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 50px;
}
.c-titBox01__tit {
  margin-top: 90px;
}
.c-titBox01__img {
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 769px) {
  .c-titBox01 .c-tit01__en::after {
    content: none;
  }
  .c-titBox01.is-invert {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -ms-grid-columns: var(--imgSize) 50px var(--titSize);
    grid-template-columns: var(--imgSize) var(--titSize);
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-titBox01.is-invert {
    padding-right: var(--cv-width);
  }
}
@media screen and (min-width: 769px) {
  .c-titBox01.is-invert .c-titBox01__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-inline: auto 0;
  }
}
@media screen and (max-width: 768px) {
  .c-titBox01 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
    padding-inline: var(--inner-padding) 0;
  }
  .c-titBox01__tit {
    margin-top: 20px;
  }
  .c-titBox01__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }
  .c-titBox01.is-invert .c-titBox01__img {
    margin-inline: calc(var(--inner-padding) * -1) auto;
  }
}

.c-titBox02 {
  --titSize: min(47% - 60px, 565px);
  --imgSize: 45.5%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: var(--titSize) 120px var(--imgSize);
  grid-template-columns: var(--titSize) var(--imgSize);
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 120px;
}
.c-titBox02__img {
  border-radius: 0 20px 20px 0;
}
@media screen and (min-width: 769px) {
  .c-titBox02 .c-tit01__en::after {
    content: none;
  }
  .c-titBox02.is-invert {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    -ms-grid-columns: var(--imgSize) 120px var(--titSize);
    grid-template-columns: var(--imgSize) var(--titSize);
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .c-titBox02.is-invert {
    padding-right: var(--cv-width);
  }
}
@media screen and (min-width: 769px) {
  .c-titBox02.is-invert .c-titBox02__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-inline: auto 0;
  }
}
@media screen and (max-width: 768px) {
  .c-titBox02 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 0;
    padding-inline: var(--inner-padding) 0;
  }
  .c-titBox02__tit {
    margin-top: 20px;
  }
  .c-titBox02__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
  }
  .c-titBox02.is-invert .c-titBox02__img {
    margin-inline: calc(var(--inner-padding) * -1) auto;
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  padding: 65px 0 75px;
  position: relative;
}
.secMessage-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.secMessage__img {
  width: min(100%, 550px);
  border-radius: 20px;
}
.secMessage__txt {
  font-size: 18px;
  line-height: 240%;
  letter-spacing: 0.06em;
  width: min(100%, 460px);
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .secMessage {
    padding: 50px 0;
  }
  .secMessage-inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .secMessage__img {
    width: min(100%, 370px);
    margin-bottom: 0;
  }
  .secMessage__txt {
    font-size: min(3.5vw, 14px);
    line-height: 2;
    letter-spacing: 0;
  }
  .secMessage__txt + .secMessage__txt {
    margin-top: 30px;
  }
  .secMessage__txt.is-big {
    font-size: min(4.5vw, 18px);
    letter-spacing: 0;
  }
}

/*------------------------------------------
	.secFeature
------------------------------------------*/
.secFeature {
  padding: 60px 0 120px;
  background: url("../img/bg_feature.webp") no-repeat center top/cover;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.secFeature::after {
  content: "";
  display: block;
  width: 610px;
  aspect-ratio: 610/366;
  background: url("../img/bg_deco01.webp") no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: calc(50% - 710px);
  margin: 0 auto;
  z-index: -1;
  pointer-events: none;
}
.secFeature__secTit {
  margin-bottom: 80px;
  z-index: -1;
}
.secFeature__ttlDeco {
  margin: 0 auto 10px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
}
.secFeature-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  position: relative;
}
.secFeature-list::after {
  content: "";
  display: block;
  width: 100%;
  height: 186px;
  background: url("../img/bg_data02.svg") no-repeat 12px bottom, url("../img/bg_data03.svg") no-repeat right 44px bottom;
  position: absolute;
  left: 0;
  bottom: 100%;
  pointer-events: none;
}
.secFeature-list__item {
  padding: 40px;
  background: #fff;
  border-radius: 20px;
}
.secFeature-list__tit {
  margin-bottom: 32px;
  font-size: 26px;
  line-height: 1.4;
  text-align: center;
  position: relative;
  z-index: 1;
}
.secFeature-list__txt {
  font-size: 18px;
  line-height: 200%;
  letter-spacing: 0.02em;
}
.secFeature-list__num {
  margin-bottom: 20px;
}
.secFeature-list img {
  border-radius: 20px;
}
.secFeature__titBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.secFeature__titBox h3 {
  text-align: left;
}
@media screen and (min-width: 769px) {
  .secFeature-list__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .secFeature-list__item.is-wide {
    padding: 50px 40px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 54px 410px;
    grid-template-columns: 1fr 410px;
    grid-column-gap: 54px;
  }
  .secFeature-list__item.is-wide .secFeature-list__tit {
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
  .secFeature-list__item.is-wide .secFeature-list__txt {
    -ms-flex-item-align: start;
        -ms-grid-row-align: start;
        align-self: start;
  }
  .secFeature-list__item.is-wide .secFeature-list__img {
    width: 100%;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 1/2/3/3;
    -ms-grid-row-align: center;
        align-self: center;
  }
  .secFeature-list__item.is-wide.is-rev {
    -ms-grid-columns: 405px 1fr;
    grid-template-columns: 405px 1fr;
  }
  .secFeature-list__item.is-wide.is-rev .secFeature-list__img {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
  }
}
@media screen and (max-width: 768px) {
  .secFeature {
    padding: 10px 0 50px;
  }
  .secFeature::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 610/366;
    background: url("../img/bg_deco01.webp") no-repeat center/contain;
    position: absolute;
    bottom: 0;
    right: -100px;
    margin: 0 auto;
    z-index: -1;
    pointer-events: none;
  }
  .secFeature__secTit {
    margin-bottom: 40px;
    letter-spacing: 0;
  }
  .secFeature-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
  .secFeature-list::after {
    height: 100px;
    background-position: left bottom, right bottom;
    background-size: auto 90px, auto 100px;
    z-index: 2;
  }
  .secFeature-list__item {
    padding: 30px 20px;
  }
  .secFeature-list__item.is-wide {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secFeature-list__item.is-wide .secFeature-list__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 20px;
  }
  .secFeature-list__tit {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
    font-size: 22px;
  }
  .secFeature-list__tit span {
    display: contents;
  }
  .secFeature-list__tit::after {
    width: 90%;
    max-height: 35px;
    top: 60%;
  }
  .secFeature-list__txt {
    font-size: 16px;
  }
  .secFeature-list__num {
    width: 50px;
    margin: 0 auto 10px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .secFeature__titBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0px;
  }
  .secFeature__titBox h3 {
    text-align: center;
  }
}

/*------------------------------------------
	.secWorks
------------------------------------------*/
.secWorks {
  overflow: hidden;
  padding-block: 0 120px;
  background: url("../img/bg_works.webp") no-repeat center top/cover;
  position: relative;
  overflow: hidden;
  z-index: -2;
}
.secWorks::after {
  content: "";
  display: block;
  width: 979px;
  aspect-ratio: 979/616;
  background: url("../img/bg_deco02.webp") no-repeat center/contain;
  position: absolute;
  bottom: 35%;
  left: calc(50% - 1020px);
  margin: 0 auto;
  z-index: -1;
  pointer-events: none;
}
.secWorks-secTitBox {
  position: relative;
}
.secWorks__lead {
  margin-top: 30px;
  font-size: 18px;
}
.secWorks-flow {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 770px;
  grid-template-columns: 1fr 770px;
  margin-top: 100px;
}
.secWorks-flow__secTit {
  position: relative;
  font-size: 28px;
  line-height: 160%;
}
.secWorks-flow__secTit::after {
  content: "";
  display: block;
  width: 252px;
  aspect-ratio: 252/128;
  background: url("../img/bg_line03.webp") no-repeat center/contain;
  position: absolute;
  top: 6%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -2%;
  margin: -1% auto 0;
  z-index: -1;
  pointer-events: none;
}
.secWorks-flow-list {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.secWorks-flow-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.secWorks-flow-txtBox {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.secWorks-flow__ttl {
  font-size: 22px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
}
.secWorks-flow__txt {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.secWorks-flow img {
  border-radius: 10px;
}
.secWorks-point {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 800px;
  grid-template-columns: 1fr 800px;
  margin-top: 100px;
}
.secWorks-point__secTit {
  position: relative;
  font-size: 28px;
  line-height: 160%;
}
.secWorks-point__secTit::after {
  content: "";
  display: block;
  width: 252px;
  aspect-ratio: 252/128;
  background: url("../img/bg_line03.webp") no-repeat center/contain;
  position: absolute;
  top: 6%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -2%;
  margin: -1% auto 0;
  z-index: -1;
  pointer-events: none;
}
.secWorks-point__titBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  font-size: 28px;
  line-height: 160%;
  letter-spacing: 0;
}
.secWorks-point-list {
  display: -ms-grid;
  display: grid;
  gap: 20px;
}
.secWorks-point-list__item {
  padding: 30px 40px 40px;
  border-radius: 20px;
  background: #FFF;
  -webkit-box-shadow: 6px 6px 0px 0px #FFF799;
          box-shadow: 6px 6px 0px 0px #FFF799;
}
.secWorks-point-list__item__txt {
  margin-top: 14px;
  font-size: 18px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .secWorks {
    padding-block: 0 40px;
  }
  .secWorks::after {
    content: "";
    display: block;
    width: 500px;
    aspect-ratio: 979/616;
    background: url("../img/bg_deco02.webp") no-repeat center/contain;
    position: absolute;
    top: 0;
    left: 0;
    margin: 0 auto;
    z-index: -1;
    pointer-events: none;
  }
  .secWorks-secTitBox {
    margin-bottom: 80px;
  }
  .secWorks-list__num {
    width: 50px;
  }
  .secWorks-flow {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-top: 0;
  }
  .secWorks-flow__secTit {
    position: relative;
    font-size: 22px;
    line-height: 160%;
  }
  .secWorks-flow__secTit::after {
    content: "";
    display: block;
    width: 200px;
    aspect-ratio: 252/128;
    background: url("../img/bg_line03.webp") no-repeat center/contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -2%;
    margin: -1% auto 0;
    z-index: -1;
    pointer-events: none;
  }
  .secWorks-flow-list {
    display: -ms-grid;
    display: grid;
    gap: 30px;
    margin-top: 40px;
  }
  .secWorks-flow-list__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
  .secWorks-flow-txtBox {
    display: -ms-grid;
    display: grid;
    gap: 10px;
    width: 100%;
  }
  .secWorks-flow__ttl {
    font-size: 22px;
    font-weight: 700;
    line-height: 150%;
    letter-spacing: 0;
  }
  .secWorks-flow__txt {
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.02em;
  }
  .secWorks-flow img {
    border-radius: 10px;
  }
  .secWorks-point {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-top: 100px;
  }
  .secWorks-point__secTit {
    position: relative;
    font-size: 22px;
    line-height: 160%;
  }
  .secWorks-point__secTit::after {
    content: "";
    display: block;
    width: 200px;
    aspect-ratio: 252/128;
    background: url("../img/bg_line03.webp") no-repeat center/contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -2%;
    margin: -1% auto 0;
    z-index: -1;
    pointer-events: none;
  }
  .secWorks-point__titBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 16px;
    font-size: 20px;
    line-height: 160%;
    letter-spacing: 0;
  }
  .secWorks-point-list {
    display: -ms-grid;
    display: grid;
    gap: 20px;
    margin-top: 40px;
  }
  .secWorks-point-list__item {
    padding: 30px 40px 40px;
    border-radius: 20px;
    background: #FFF;
    -webkit-box-shadow: 6px 6px 0px 0px #FFF799;
            box-shadow: 6px 6px 0px 0px #FFF799;
  }
  .secWorks-point-list__item__txt {
    margin-top: 14px;
    font-size: 16px;
    letter-spacing: 0.04em;
  }
}

/*------------------------------------------
	.btnEntry
------------------------------------------*/
.btnEntry {
  overflow: hidden;
  color: #fff;
  font-weight: 900;
  font-size: 102px;
  text-align: center;
  letter-spacing: 0.1em;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.65);
}
.btnEntry a {
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.btnEntry a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url("../img/bg_entry01_pc.webp") no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .btnEntry a::after {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .btnEntry a:hover {
    opacity: 1;
  }
  .btnEntry a:hover::after {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
}
@media screen and (max-width: 768px) {
  .btnEntry {
    font-size: 60px;
  }
  .btnEntry a {
    height: 224px;
  }
  .btnEntry a::after {
    background-image: url("../img/bg_entry01_sp.webp");
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  padding: 100px 0 120px;
  position: relative;
  background: url("../img/bg_interview.webp") no-repeat center top/cover;
}
.secInterview__secTit {
  text-align: center;
}
.secInterview__secTit::after {
  content: "";
  display: block;
  width: 457px;
  aspect-ratio: 457/109;
  background: url("../img/bg_line04.svg") no-repeat center/contain;
  position: absolute;
  top: 78%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: -1;
  pointer-events: none;
}
.secInterview-front {
  margin-top: 60px;
  position: relative;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
}
.secInterview-front__img {
  width: auto !important;
}
.secInterview-front__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr auto;
  grid-template-rows: 1fr auto;
  height: 100%;
  border-radius: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #fff;
  border: 1px solid #153B8E;
}
.secInterview-front-txtBox {
  padding: 40px;
  display: contents;
}
.secInterview-front-txt {
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.secInterview-front-prof {
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: right;
  margin-top: 10px;
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding: 40px 0;
  }
  .secInterview__secTit {
    width: 80%;
    margin: 0 auto;
    overflow: visible;
  }
  .secInterview__secTit::after {
    content: "";
    display: block;
    width: 307px;
    aspect-ratio: 457/109;
    background: url("../img/bg_line04.svg") no-repeat center/contain;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0%;
    right: 50%;
    margin: 0 auto;
    z-index: -1;
    pointer-events: none;
  }
  .secInterview-front {
    margin-top: 30px;
  }
  .secInterview-front__img {
    width: 50% !important;
  }
  .secInterview-front__item {
    border-radius: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
  .secInterview-front-imgBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
  .secInterview-front-imgBox img {
    width: 35%;
  }
  .secInterview-front-txtBox {
    margin-top: 0 !important;
    padding: 0 !important;
    height: auto !important;
  }
  .secInterview-front-txt {
    font-size: 14px;
    line-height: 1.7;
  }
  .secInterview-front-prof {
    font-size: 12px !important;
  }
}

.splide__slide.secInterview-front__item {
  display: -ms-grid;
  display: grid;
  height: 100%;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #153B8E;
}

.secInterview-front-txtBox {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr auto;
  grid-template-rows: 1fr auto;
  padding: 40px;
  height: 100%;
}

.secInterview-front-txt {
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.secInterview-front-prof {
  -ms-flex-item-align: end;
      -ms-grid-row-align: end;
      align-self: end;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: right;
  margin-top: 10px;
}

/*------------------------------------------
	.secEnvironment
------------------------------------------*/
.secEnvironment {
  padding: 90px 0 120px;
  background: url("../img/bg_environmet.webp") no-repeat center top/cover;
  position: relative;
  overflow: hidden;
  z-index: -2;
}
.secEnvironment::after {
  content: "";
  display: block;
  width: 979px;
  aspect-ratio: 979/616;
  background: url("../img/bg_deco02.webp") no-repeat center/contain;
  position: absolute;
  top: 0%;
  right: calc(50% - 1020px);
  margin: 0 auto;
  z-index: -1;
  pointer-events: none;
}
.secEnvironment-box {
  margin-top: 100px;
  background: #fff;
  padding: 60px;
  border-radius: 20px;
}
.secEnvironment-inner {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
}
.secEnvironment-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.secEnvironment-content + .secEnvironment-content {
  margin-top: 40px;
}
.secEnvironment-imgBox {
  width: 100%;
  max-width: 440px;
}
.secEnvironment-imgBox img {
  border-radius: 10px;
}
.secEnvironment-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.secEnvironment-txtBox__tit {
  font-size: 32px;
  line-height: 160%;
  letter-spacing: 0;
  color: var(--color-blue);
}
.secEnvironment-txtBox__txt {
  margin-top: 20px;
  font-size: 18px;
  line-height: 180%;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .secEnvironment {
    padding: 40px 0 60px;
  }
  .secEnvironment::after {
    content: "";
    display: block;
    width: 400px;
    aspect-ratio: 979/616;
    background: url("../img/bg_deco02.webp") no-repeat center/contain;
    position: absolute;
    top: 15%;
    right: -20%;
    margin: 0 auto;
    z-index: -1;
    pointer-events: none;
  }
  .secEnvironment-box {
    margin-top: 40px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
  }
  .secEnvironment-inner {
    width: 100%;
    max-width: 1060px;
    margin: 0 auto;
  }
  .secEnvironment-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .secEnvironment-content + .secEnvironment-content {
    margin-top: 40px;
  }
  .secEnvironment-imgBox {
    width: 100%;
    max-width: 440px;
  }
  .secEnvironment-imgBox img {
    border-radius: 10px;
  }
  .secEnvironment-txtBox {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .secEnvironment-txtBox__tit {
    font-size: 28px;
    line-height: 160%;
    letter-spacing: 0;
    color: var(--color-blue);
  }
  .secEnvironment-txtBox__txt {
    margin-top: 20px;
    font-size: 18px;
    line-height: 180%;
    letter-spacing: 0.02em;
  }
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 112px;
  position: relative;
  text-align: center;
}
.secEntry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../img/img_entry_pc.webp") no-repeat center/cover;
  z-index: -1;
}
.secEntry__secTit {
  margin-bottom: 24px;
  font-size: 38px;
  line-height: 150%;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #fff;
}
.secEntry__btn {
  width: min(100%, 420px);
  margin: 0 auto;
  color: #fff;
  font-size: 24px;
  text-align: center;
  letter-spacing: 0.05em;
}
.secEntry__btn a {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 88px;
  background: var(--color-blue) url("../img/ico_arrow01.svg") no-repeat center right 32px/16px;
  border-radius: 100px;
  border: 1px solid #fff;
}
.secEntry__tel {
  width: min(100%, 420px);
  padding: 20px;
  border: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  gap: 20px;
  margin: 30px auto 0;
}
.secEntry__tel__label {
  font-size: 16px;
}
.secEntry__tel__num {
  font-size: 38px;
}
@media screen and (min-width: 769px) {
  .secEntry__btn a:hover {
    opacity: 1;
    background-color: var(--color-blue);
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding: 60px 0;
    background-position: 80% center;
  }
  .secEntry__secTit {
    margin-bottom: 20px;
    font-size: min(6vw, 22px);
    line-height: 1.7;
  }
  .secEntry__btn {
    width: min(100% - 40px, 350px);
    font-size: 18px;
  }
  .secEntry__btn a {
    height: 70px;
    background: var(--color-blue) url("../img/ico_arrow01.svg") no-repeat center right 20px/16px;
  }
  .secEntry__btn a::after {
    width: 60px;
  }
  .secEntry__tel {
    padding: 12px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin: 20px auto 0;
  }
  .secEntry__tel__label {
    font-size: 16px;
  }
  .secEntry__tel__num {
    font-size: 38px;
    line-height: 1.4;
  }
}
/*# sourceMappingURL=style.css.map */