@charset "UTF-8";
/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

html {
  color: #000;
  background: #fff;
  font-size: 16px;
  line-height: 1.8;
  overflow-wrap: break-word;
}

body {
  background: #fff;
  margin: 0;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

input,
select,
textarea,
button {
  color: inherit;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

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

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#main:focus {
  outline: none;
}

#wrapper {
  position: relative;
  margin: auto;
  max-width: 1920px;
}

.inner-block {
  margin: 0 auto;
  position: relative;
}
.inner-block.mw-1208 {
  max-width: 1208px;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

a,
a::before,
a::after,
button,
button::before,
button::after {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.ib {
  display: inline-block;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* --------------------------------
c-header
----------------------------------- */
header {
  position: -webkit-sticky;
  position: sticky;
  z-index: 10;
  width: 100%;
  top: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
header.is-hidden {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}

.c-header {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  position: relative;
  z-index: 10;
}
.c-header > .inner-block {
  padding-block: 22px;
  padding-inline: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1440px;
}
.c-header > .inner-block .logo-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
}
.c-header > .inner-block .logo-wrap .logo {
  max-width: 270px;
  width: 100%;
  display: block;
  aspect-ratio: 270/24;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.c-header > .inner-block .logo-wrap .logo a {
  display: block;
  height: 100%;
}
.c-header > .inner-block .logo-wrap .logo a img {
  width: 100%;
}
.c-header > .inner-block .logo-wrap .site-txt {
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
.c-header > .inner-block .btn-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.c-header > .inner-block .btn-wrap .entry-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 40px;
  max-width: 146px;
  width: 100%;
  border-radius: 100px;
  border: 1px solid #CD1B1B;
}
.c-header > .inner-block .btn-wrap .entry-btn .en {
  color: #CD1B1B;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header > .inner-block .btn-wrap .entry-btn:focus-visible {
  border: 1px solid #000;
  background: #CD1B1B;
}
.c-header > .inner-block .btn-wrap .entry-btn:focus-visible .en {
  color: #fff;
}
.c-header > .inner-block .btn-wrap .nav-btn {
  display: block;
  background: #0068B7;
  width: 106px;
  height: 39px;
  border-radius: 32.5px;
  position: relative;
}
.c-header > .inner-block .btn-wrap .nav-btn.is-active .inn {
  height: 1px;
  width: 16px;
}
.c-header > .inner-block .btn-wrap .nav-btn .inn {
  display: block;
  position: absolute;
  height: 13px;
  width: 26px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header > .inner-block .btn-wrap .nav-btn .inn > span {
  display: block;
  background: #fff;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-header > .inner-block .btn-wrap .nav-btn .inn > span:first-child {
  top: 0;
}
.c-header > .inner-block .btn-wrap .nav-btn .inn > span:nth-child(2) {
  top: 0;
  bottom: 0;
}
.c-header > .inner-block .btn-wrap .nav-btn .inn > span:last-child {
  bottom: 0;
}
.c-header > .inner-block .btn-wrap .nav-btn:focus-visible {
  border: 2px solid #000;
}
.c-header > .inner-block .btn-wrap .nav-btn:focus-visible .inn {
  height: 17px;
}

.header-entry-menu .close-btn-wrap,
.header-nav-menu .close-btn-wrap {
  position: fixed;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  padding-top: 23px;
  padding-right: 30px;
}
.header-entry-menu .menu-close-btn,
.header-nav-menu .menu-close-btn {
  margin-left: auto;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background: #fff;
  padding: 11px 35px 11px 21px;
  border-radius: 32.5px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #fff;
}
.header-entry-menu .menu-close-btn::before, .header-entry-menu .menu-close-btn::after,
.header-nav-menu .menu-close-btn::before,
.header-nav-menu .menu-close-btn::after {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 16px;
  height: 1px;
  top: 0;
  bottom: 0;
  right: 18px;
  margin: auto;
}
.header-entry-menu .menu-close-btn::before,
.header-nav-menu .menu-close-btn::before {
  rotate: 45deg;
}
.header-entry-menu .menu-close-btn::after,
.header-nav-menu .menu-close-btn::after {
  rotate: -45deg;
}
.header-entry-menu .menu-close-btn:focus-visible,
.header-nav-menu .menu-close-btn:focus-visible {
  border: 2px solid #000;
}
.header-entry-menu .menu-close-btn:focus-visible::before, .header-entry-menu .menu-close-btn:focus-visible::after,
.header-nav-menu .menu-close-btn:focus-visible::before,
.header-nav-menu .menu-close-btn:focus-visible::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.header-entry-menu .menu-close-btn .txt,
.header-nav-menu .menu-close-btn .txt {
  line-height: 1;
  letter-spacing: 0.04em;
  font-size: 16px;
}

.header-entry-menu {
  max-width: 1062px;
  width: calc(100% - 40px);
  height: calc(100vh - 200px);
  max-height: 621px;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 900;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-entry-menu.is-active {
  pointer-events: all;
  opacity: 1;
}
.header-entry-menu .box {
  background: -webkit-gradient(linear, left top, right top, from(#CD1B1B), to(#0068B7));
  background: linear-gradient(to right, #CD1B1B 0%, #0068B7 100%);
  overflow-y: auto;
  height: 100%;
  border-radius: 40px;
  padding-block: clamp(40px, 5.2083333333vw, 75px);
  padding-inline: clamp(50px, 6.25vw, 90px);
}
.header-entry-menu .box::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 100px;
}
.header-entry-menu .box::-webkit-scrollbar-button {
  display: none;
}
.header-entry-menu .box::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 100px;
}
.header-entry-menu .box::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}
.header-entry-menu .box .cont.top {
  padding-bottom: 50px;
}
.header-entry-menu .box .cont.middle {
  padding-block: 38px;
}
.header-entry-menu .box .cont.bottom {
  padding-top: 39px;
}
.header-entry-menu .box .cont .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.header-entry-menu .box .cont .inn.center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.header-entry-menu .box .cont .inn + .inn {
  margin-top: 30px;
}
.header-entry-menu .box .cont .inn .txt-wrap {
  max-width: 202px;
  width: 100%;
  color: #fff;
}
.header-entry-menu .box .cont .inn .txt-wrap .rec-ttl {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
}
.header-entry-menu .box .cont .inn .txt-wrap .rec-ttl + .txt {
  margin-top: 14px;
}
.header-entry-menu .box .cont .inn .txt-wrap .txt {
  letter-spacing: 0.04em;
}
.header-entry-menu .box .cont .inn .inn-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 300px;
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 46.5px;
  padding: 20px 54px;
  position: relative;
  border: 2px solid #fff;
}
.header-entry-menu .box .cont .inn .inn-btn .c-arrow-btn {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: none;
}
.header-entry-menu .box .cont .inn .inn-btn .c-arrow-btn::before {
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.header-entry-menu .box .cont .inn .inn-btn .c-arrow-btn::after {
  width: 100%;
  top: 0;
  left: -3px;
  bottom: 0;
}
.header-entry-menu .box .cont .inn .inn-btn:focus-visible {
  border: 2px solid #CD1B1B;
}
.header-entry-menu .box .cont .inn .inn-btn:focus-visible .c-arrow-btn::before {
  background: #fff;
}
.header-entry-menu .box .cont .inn .inn-btn .txt {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #CD1B1B;
  font-weight: 500;
}
.header-entry-menu .box .cont .inn .inn-btn img {
  max-width: 163px;
}
.header-entry-menu .box .cont .inn .inn-btn + .inn-btn {
  margin-left: 17px;
}
.header-entry-menu .box .cont .inn .rec-txt {
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: #fff;
}
.header-entry-menu .box .cont + .cont {
  position: relative;
}
.header-entry-menu .box .cont + .cont::before {
  content: "";
  position: absolute;
  background: #fff;
  display: block;
  width: 100%;
  height: 1px;
  opacity: 0.2;
  top: 0;
  left: 0;
}

.header-nav-menu {
  width: 100%;
  height: 100vh;
  position: fixed;
  background: #fff;
  top: 0;
  padding-top: 107px;
  right: 0;
  left: 0;
  margin: auto;
  z-index: 900;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-nav-menu.is-active {
  pointer-events: all;
  opacity: 1;
}
.header-nav-menu .nav-close {
  background: #0068B7;
  color: #0068B7;
  border: 1px solid #0068B7;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-nav-menu .nav-close::before, .header-nav-menu .nav-close::after {
  rotate: 0deg;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.header-nav-menu .nav-close.is-active {
  border-color: #000;
  color: #000;
  background: #fff;
}
.header-nav-menu .nav-close.is-active::after {
  rotate: -45deg;
}
.header-nav-menu .nav-close.is-active::before {
  rotate: 45deg;
}
.header-nav-menu .box {
  overflow-y: auto;
  height: 80vh;
  max-height: 597px;
  border-radius: 40px;
  padding-block: 20px 20vh;
  padding-inline: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header-nav-menu .box::-webkit-scrollbar-track {
  background: #fff;
  border-radius: 100px;
}
.header-nav-menu .box::-webkit-scrollbar-button {
  display: none;
}
.header-nav-menu .box::-webkit-scrollbar-thumb {
  background: #000;
  border-radius: 100px;
}
.header-nav-menu .box::-webkit-scrollbar {
  height: 6px;
  width: 6px;
}
.header-nav-menu .box .left {
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: repeat(3, auto);
  gap: 55px;
}
.header-nav-menu .box .left .c-nav-acc-box:first-child {
  grid-area: 1/1/2/2;
}
.header-nav-menu .box .left .c-nav-acc-box:nth-child(2) {
  grid-area: 2/1/3/2;
}
.header-nav-menu .box .left .c-nav-acc-box:nth-child(3) {
  grid-area: 3/1/4/2;
}
.header-nav-menu .box .left .c-nav-acc-box:nth-child(4) {
  grid-area: 1/2/2/3;
}
.header-nav-menu .box .left .c-nav-acc-box:nth-child(5) {
  grid-area: 2/2/4/3;
}
.header-nav-menu .box .right {
  margin-top: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.header-nav-menu .box .right .logo-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 18px;
}
.header-nav-menu .box .right .logo-wrap:focus-visible {
  opacity: 0.8;
}
.header-nav-menu .box .right .logo-wrap .logo {
  width: 438px;
}
.header-nav-menu .box .right .logo-wrap .logo img {
  display: block;
  width: 100%;
}
.header-nav-menu .box .right .logo-wrap .site-txt {
  font-size: 18px;
  letter-spacing: 0.04em;
  line-height: 1;
  font-weight: 500;
}
.header-nav-menu .box .right .insta-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 35px;
  padding: 13px 30px 13px 20px;
  max-width: 438px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
  gap: 20px;
}
.header-nav-menu .box .right .insta-link .ico {
  display: block;
  width: 44px;
  aspect-ratio: 1/1;
  height: auto;
}
.header-nav-menu .box .right .insta-link .txt {
  line-height: 1.8;
}
.header-nav-menu .box .right .insta-link:focus-visible {
  background: #CCC;
  border-color: #000;
}

.block-skip {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  height: 0;
  top: -36px;
  left: 0;
  z-index: 900;
  color: #0068B7;
  text-align: center;
  padding: 0;
  display: block;
  background: #fff;
  font-size: 16px;
  line-height: 1;
  position: relative;
  z-index: 11;
}
.block-skip:focus-within {
  clip: auto;
  height: auto;
  top: 0;
  padding: 10px 0;
}

.entry-bg {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 900;
  background: rgba(0, 0, 0, 0.7);
  pointer-events: none;
  cursor: pointer;
  opacity: 0;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.entry-bg.is-active {
  opacity: 1;
  pointer-events: all;
}

.c-footer {
  background: #000;
  color: #fff;
}
.c-footer .top-area > .inner-block {
  padding-block: 120px 72px;
  max-width: 1204px;
}
.c-footer .top-area .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
}
.c-footer .top-area .link-list > .each {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.c-footer .top-area .link-list > .each:first-child .c-nav-acc-box {
  border-top: 0;
}
.c-footer .top-area .link-list .c-nav-acc-box {
  padding-bottom: 0;
  border-color: rgba(255, 255, 255, 0.3);
}
.c-footer .top-area .link-list .c-nav-acc-box .nav-btn::before, .c-footer .top-area .link-list .c-nav-acc-box .nav-btn::after {
  background: #fff;
}
.c-footer .top-area .link-list .c-nav-acc-box .nav-btn:focus-visible {
  border: 2px solid #fff;
}
.c-footer .top-area .link-list .c-nav-acc-box .nav-list > li > a {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-footer .top-area .link-list .c-nav-acc-box .nav-list > li > a::before, .c-footer .top-area .link-list .c-nav-acc-box .nav-list > li > a::after {
  background: currentColor;
}
.c-footer .top-area .logo-btn-area {
  margin-top: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 26px;
}
.c-footer .top-area .logo-btn-area .logo-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.c-footer .top-area .logo-btn-area .logo-area .logo-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
}
.c-footer .top-area .logo-btn-area .logo-area .logo-link img {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-footer .top-area .logo-btn-area .logo-area .logo-link:focus-visible img {
  opacity: 0.7;
}
.c-footer .top-area .logo-btn-area .logo-area .txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: 0.04em;
}
.c-footer .top-area .logo-btn-area .logo-area .social-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #fff;
  padding: 6px;
}
.c-footer .top-area .logo-btn-area .logo-area .social-link:focus-visible {
  opacity: 0.7;
}
.c-footer .top-area .logo-btn-area .logo-area .social-link:focus-visible img {
  opacity: 0.7;
}
.c-footer .top-area .logo-btn-area .logo-area .social-link img {
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-footer .top-area .logo-btn-area .btn-area {
  width: 100%;
  max-width: 365px;
}
.c-footer .top-area .logo-btn-area .btn-area .c-btn01 {
  border-radius: 100vw;
  padding-block: 44px;
  padding-inline: 40px;
}
.c-footer .top-area .logo-btn-area .btn-area .c-btn01::before, .c-footer .top-area .logo-btn-area .btn-area .c-btn01::after {
  content: unset;
}
.c-footer .top-area .logo-btn-area .btn-area .c-btn01:focus-visible {
  border: 1px solid #fff;
}
.c-footer .top-area .logo-btn-area .btn-area .c-btn01 .txt {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 100%;
  text-align: center;
  display: block;
  width: 100%;
}
.c-footer .bottom-area > .inner-block {
  padding-block: 40px 45px;
  max-width: 1408px;
}
.c-footer .bottom-area > .inner-block::before {
  position: absolute;
  content: "";
  width: calc(100% - 80px);
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.c-footer .bottom-area .contents-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
.c-footer .bottom-area .link-list,
.c-footer .bottom-area .copyright {
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.04em;
}
.c-footer .bottom-area .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 1em 20px;
}

#pagetop {
  rotate: -90deg;
  right: clamp(20px, 1.5625vw, 30px);
  z-index: 80;
}
#pagetop .c-arrow-btn {
  width: 77px;
  height: 77px;
}

.c-ttl01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.c-ttl01:not(.js-anim) .ja {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
}
.c-ttl01:not(.js-anim) .en {
  font-size: clamp(50px, 5vw, 72px);
  line-height: 1;
  color: #0068B7;
  font-weight: 400;
}
.c-ttl01.small .ja {
  font-size: 18px;
}
.c-ttl01.small .en {
  font-size: 40px;
}
.c-ttl01.js-anim {
  color: transparent;
}
.c-ttl01.js-anim .ja {
  font-size: 24px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
}
.c-ttl01.js-anim .ja span {
  color: #000;
}
.c-ttl01.js-anim .en {
  font-size: clamp(50px, 5vw, 72px);
  line-height: 1;
  font-weight: 400;
}
.c-ttl01.js-anim .en span {
  color: #0068B7;
}

.c-ttl02 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.c-ttl02.center {
  text-align: center;
}
.c-ttl02.blue {
  color: #0068B7;
}
.c-ttl02.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  grid-area: 10px;
  gap: 10px;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.c-ttl02 .small {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}

.c-ttl03 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.c-ttl03.blue {
  color: #0068B7;
}
.c-ttl03.center {
  text-align: center;
}
.c-ttl03.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  grid-area: 10px;
  gap: 10px;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.c-ttl03 .small {
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
}

.c-just {
  text-align: justify;
}

main {
  scroll-margin-top: 100px;
}
main:focus {
  outline: none;
}

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

.c-link-txt {
  position: relative;
}
.c-link-txt::before {
  content: "";
  position: absolute;
  background: #fff;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-link-txt:focus-visible::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.c-link-txt.ico-external {
  padding-right: 1.5em;
  position: relative;
}
.c-link-txt.ico-external::after {
  position: absolute;
  content: "";
  -webkit-mask: url("../img/common/external.svg") no-repeat center center/contain;
          mask: url("../img/common/external.svg") no-repeat center center/contain;
  background: currentColor;
  width: 1em;
  height: 1em;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.c-link-txt02 {
  position: relative;
}
.c-link-txt02::before {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-link-txt02:focus-visible::before {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.c-link-txt03 {
  position: relative;
}
.c-link-txt03::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #dfdfdf;
}
.c-link-txt03::after {
  content: "";
  position: absolute;
  background: #000;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-link-txt03:focus-visible::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.c-nav-acc-box .nav-btn {
  display: block;
  width: 100%;
  padding-block: 24px;
  position: relative;
}
.c-nav-acc-box .nav-btn::before, .c-nav-acc-box .nav-btn::after {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  top: 0;
  bottom: 0;
  margin: auto;
}
.c-nav-acc-box .nav-btn::before {
  width: 18px;
  height: 1px;
  right: 20px;
}
.c-nav-acc-box .nav-btn::after {
  width: 1px;
  height: 18px;
  right: 28.5px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-nav-acc-box .nav-btn.is-open {
  padding-bottom: 10px;
}
.c-nav-acc-box .nav-btn.is-open::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-nav-acc-box .nav-btn:focus-visible {
  border: 1px solid #000;
}
.c-nav-acc-box .nav-btn:focus-visible::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.c-nav-acc-box .cat-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.c-nav-acc-box .cat-ttl .en {
  font-size: 32px;
  color: #0068B7;
  line-height: 1;
}
.c-nav-acc-box .cat-ttl .ja {
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em;
  font-size: 16px;
}
.c-nav-acc-box .acc-cont {
  padding: 0 30px 24px;
}
.c-nav-acc-box .nav-list > li a {
  display: block;
  padding-left: 10px;
  position: relative;
  line-height: 1.9;
  letter-spacing: 0.04em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-nav-acc-box .nav-list > li a::before {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 4px;
  height: 1px;
  top: 0;
  left: 1px;
  bottom: 0;
  margin: auto;
}
.c-nav-acc-box .nav-list > li a::after {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 2px;
  margin: auto;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-nav-acc-box .nav-list > li a:focus-visible::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.js-anim-txt span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(-70%);
          transform: translateY(-70%);
}
.js-anim-txt span.is-animated {
  -webkit-animation: anim-txt 1s ease-in-out normal forwards;
          animation: anim-txt 1s ease-in-out normal forwards;
}

@-webkit-keyframes anim-txt {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
  }
  50% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes anim-txt {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-70%);
            transform: translateY(-70%);
  }
  50% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes anim-txt-sp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
  50% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes anim-txt-sp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
  50% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.splide .splide__arrow {
  display: block;
  background: #000;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  position: relative;
  height: 40px;
  border: 1px solid #000;
}
.splide .splide__arrow:focus-visible {
  background: #fff;
}
.splide .splide__arrow:focus-visible::before {
  border-color: #000;
}
.splide .splide__arrow:disabled {
  opacity: 0.2;
}
.splide .splide__arrow::before {
  content: "";
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.splide .splide__arrow--prev::before {
  rotate: 225deg;
  left: 3px;
}
.splide .splide__arrow--next::before {
  rotate: 45deg;
  right: 4px;
}
.c-link-list > li a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 15px;
  border-top: 1px solid #e4e4e4;
  position: relative;
  font-size: 18px;
  font-weight: 500;
}
.c-link-list > li a::before {
  content: "";
  position: absolute;
  background: #CD1B1B;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-link-list > li a:focus-visible::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.c-link-list > li a:focus-visible .c-arrow-btn {
  color: #fff;
}
.c-link-list > li:last-child a {
  border-bottom: 1px solid #e4e4e4;
}
.c-link-list.border-b > li a {
  border-top: none;
  border-bottom: 1px solid #e4e4e4;
}

.c-breadcrumb {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 34px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-breadcrumb li {
  position: relative;
  font-size: 12px;
  line-height: 1.6em;
}
.c-breadcrumb li:has(> a)::before {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-breadcrumb li:has(> a):focus-visible::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.c-breadcrumb li + li {
  margin-left: 12px;
}
.c-breadcrumb li + li::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: -6px;
  width: 0.5px;
  height: 75%;
  background: #000;
}

.c-interview-list > li > a {
  display: block;
}
.c-interview-list > li > a .top {
  position: relative;
  border-radius: 24px 24px 24px 0;
  overflow: hidden;
}
.c-interview-list > li > a .top img {
  width: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-interview-list > li > a .top .blue {
  position: absolute;
  top: 24px;
  left: clamp(10px, 1.6666666667vw, 24px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #0068B7;
  color: #fff;
  padding: 9px 20px;
  line-height: 1;
  border-radius: 200px;
}
.c-interview-list > li > a .top .white {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  padding-left: clamp(10px, 1.6666666667vw, 24px);
  padding-right: clamp(20px, 3.3333333333vw, 48px);
  padding-bottom: 18px;
  padding-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 0 24px 0 0;
  gap: 9px;
}
.c-interview-list > li > a .top .white .en {
  background: #000;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 20px;
  color: #fff;
  line-height: 1;
  font-weight: 500;
  border-radius: 200px;
}
.c-interview-list > li > a .top .white .post {
  font-size: 14px;
  line-height: 1.6;
}
.c-interview-list > li > a .top .white .box {
  position: absolute;
  display: block;
  width: 24px;
  height: 24px;
  overflow: hidden;
}
.c-interview-list > li > a .top .white .box::before {
  content: "";
  position: absolute;
  background: transparent;
  display: block;
  width: 200%;
  height: 200%;
  top: 0;
  left: 0;
  bottom: 24px;
  right: 0;
  margin: auto;
  -webkit-box-shadow: -24px 24px 0 0 #fff;
          box-shadow: -24px 24px 0 0 #fff;
  border-radius: 0 0 0 24px;
}
.c-interview-list > li > a .top .white .box.left {
  top: -24px;
  left: 0;
}
.c-interview-list > li > a .top .white .box.right {
  right: -24px;
  bottom: 0;
}
.c-interview-list > li > a .bottom {
  margin-top: 19px;
}
.c-interview-list > li > a .bottom .txt {
  font-size: 18px;
  font-weight: 500;
  text-align: justify;
}

.c-comment-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(10px, 2.2916666667vw, 33px);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-comment-wrap + .c-comment-wrap {
  margin-top: 20px;
}
.c-comment-wrap .ico {
  width: clamp(60px, 6.875vw, 99px);
  aspect-ratio: 1/1;
  background: #bfbfbf;
  border-radius: 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-comment-wrap .ico img {
  display: block;
  aspect-ratio: 1/1;
  width: clamp(36px, 4.125vw, 59.4px);
}
.c-comment-wrap .comment {
  padding-left: 18px;
  position: relative;
}
.c-comment-wrap .comment::before {
  content: "";
  position: absolute;
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
  background: #fff;
  display: block;
  rotate: -90deg;
  width: 35px;
  height: 30px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  z-index: 0;
}
.c-comment-wrap .comment .inn {
  min-height: 176px;
  padding-block: 39px 43px;
  padding-left: clamp(20px, 3.6805555556vw, 53px);
  padding-right: clamp(20px, 3.8194444444vw, 55px);
  background: #fff;
  border-radius: 40px;
  position: relative;
  z-index: 1;
}
.c-comment-wrap .comment .inn .lead {
  color: #0068B7;
  font-weight: 500;
}
.c-comment-wrap .comment .inn .lead + .txt {
  margin-top: 7px;
}
.c-comment-wrap .comment .inn .txt {
  font-weight: 300;
  text-align: justify;
}

#gdpr-cookie-law {
  padding-block: 40px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  background: #0068B7;
}
#gdpr-cookie-law .gdpr-cookie-law__desc {
  padding-right: clamp(20px, 3.8888888889vw, 56px);
}
#gdpr-cookie-law .gdpr-cookie-law__desc .gdpr-cookie-law__link {
  font-size: 13px;
  font-weight: 300;
  border-bottom: 1px solid currentColor;
}
#gdpr-cookie-law .gdpr-cookie-law__btn--accept {
  background: #fff;
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 15px 35px;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1000000001;
  -webkit-transition: 0.1s ease;
  transition: 0.1s ease;
}
#loading.is-active {
  background: #0068B7;
}
#loading .loading-cont {
  width: 100%;
  height: 100%;
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#loading .loading-cont .bg-in,
#loading .loading-cont .bg-out {
  width: 100%;
  height: 100%;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  position: absolute;
  top: 0;
  right: 0;
}
#loading .loading-cont .bg-in.is-animated,
#loading .loading-cont .bg-out.is-animated {
  -webkit-animation: bg-in 0.6s cubic-bezier(0.65, 0, 0.35, 1) normal forwards;
          animation: bg-in 0.6s cubic-bezier(0.65, 0, 0.35, 1) normal forwards;
}
#loading .loading-cont .bg-in {
  background: #6FB1E2;
}
#loading .loading-cont .bg-out {
  background: #0068B7;
}
#loading .loading-cont .loading-txt {
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding-bottom: 4px;
}
#loading .loading-cont .loading-txt span {
  display: inline-block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
#loading .loading-cont .loading-txt span.is-animated {
  -webkit-animation: loading-in 0.6s cubic-bezier(0.65, 0, 0.35, 1) normal forwards;
          animation: loading-in 0.6s cubic-bezier(0.65, 0, 0.35, 1) normal forwards;
}
#loading .loading-cont .loading-txt span.is-hidden {
  -webkit-animation: loading-out 0.6s cubic-bezier(0.65, 0, 0.35, 1) normal forwards;
          animation: loading-out 0.6s cubic-bezier(0.65, 0, 0.35, 1) normal forwards;
}
@-webkit-keyframes loading-in {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes loading-in {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes loading-out {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
}
@keyframes loading-out {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
}
@-webkit-keyframes bg-in {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes bg-in {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.c-btn01 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-radius: 46.5px;
  padding: 35px 71px;
  width: 100%;
  position: relative;
  background: -webkit-gradient(linear, left top, right top, color-stop(20%, #CD1B1B), color-stop(0%, #CD1B1B), to(#0068B7));
  background: linear-gradient(to right, #CD1B1B 20%, #CD1B1B 0%, #0068B7 100%);
  background-size: 120%;
  background-position-x: right;
}
.c-btn01 .txt {
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
}
.c-btn01::before, .c-btn01::after {
  content: "";
  position: absolute;
  background: #fff;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-btn01::after {
  right: 40px;
  width: 45px;
  height: 45px;
  display: block;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: 1;
}
.c-btn01::before {
  -webkit-mask: url("../img/common/arrow.svg") no-repeat center/contain;
          mask: url("../img/common/arrow.svg") no-repeat center/contain;
  width: 15px;
  right: 55px;
  z-index: 2;
}
.c-btn01:focus-visible {
  background-position-x: left;
}
.c-btn01:focus-visible::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.c-btn01:focus-visible::before {
  background: #0068B7;
}
.c-btn01.max-393 {
  max-width: 393px;
}

.c-arrow-btn {
  display: inline-block;
  border: 1px solid #CD1B1B;
  border-radius: 50%;
  color: #CD1B1B;
  width: 46px;
  height: 46px;
  aspect-ratio: 1;
  position: relative;
}
.c-arrow-btn:not(.no-hover):focus-visible {
  color: #fff;
}
.c-arrow-btn:not(.no-hover):focus-visible::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.c-arrow-btn.bg-white {
  color: #CD1B1B;
  border-color: #CD1B1B;
  background: #fff;
}
.c-arrow-btn.bg-red {
  color: #fff;
  border-color: #CD1B1B;
  background: #CD1B1B;
}
.c-arrow-btn.bg-blue {
  color: #fff;
  border-color: #0068B7;
  background: #0068B7;
}
.c-arrow-btn.bg-blue::before, .c-arrow-btn.bg-blue::after {
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
}
.c-arrow-btn.bg-blue::after {
  background: #fff;
}
.c-arrow-btn.bg-blue:not(.no-hover):focus-visible {
  color: #0068B7;
}
.c-arrow-btn.bg-blue:not(.no-hover):focus-visible::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.c-arrow-btn.no-line {
  border: none;
}
.c-arrow-btn.arrow-white {
  color: #fff;
}
.c-arrow-btn::before, .c-arrow-btn::after {
  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: auto;
  aspect-ratio: 1;
  display: block;
  top: -2px;
  left: -2px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.c-arrow-btn::before {
  -webkit-mask: url("../img/common/arrow.svg") no-repeat center/15px auto;
          mask: url("../img/common/arrow.svg") no-repeat center/15px auto;
  background: currentColor;
  z-index: 2;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-arrow-btn::after {
  background: #CD1B1B;
  border-radius: 50%;
  -webkit-transform: scale(0);
          transform: scale(0);
  z-index: 1;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
a:focus-visible .c-arrow-btn {
  color: #0068B7;
}
a:focus-visible .c-arrow-btn::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
a:focus-visible .c-arrow-btn.arrow-white {
  color: #fff;
}

.c-text-icon-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.c-text-icon-link .link-txt {
  font-size: 18px;
  font-weight: 500;
}
.c-text-icon-link.white .link-txt {
  color: #fff;
}

.c-section {
  padding-top: 40px;
  padding-bottom: 180px;
}
.c-section.bg-gray {
  background: #F8F6F4;
  border-radius: 100px 100px 0 0;
  padding-top: 147px;
}
.c-section.bg-gray.no-radius {
  border-radius: 0;
}
.c-section.bg-gray.bottom-cta {
  padding-bottom: 300px;
}
.c-section.bg-gray.bottom-cta + .c-cta-section {
  margin-top: -100px;
  background: #fff;
}

.c-kv-section {
  padding-top: 10px;
  max-width: 1920px;
  margin-inline: auto;
}
.c-kv-section .inner-block {
  padding-block: 80px 100px;
}
.c-kv-section .ttl-block {
  max-width: 38.4%;
}
.c-kv-section .kv-ttl .js-anim-txt {
  color: transparent;
}
.c-kv-section .kv-ttl .js-anim-txt.en {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
.c-kv-section .kv-ttl .js-anim-txt.en span {
  color: #0068B7;
  min-width: 6px;
}
.c-kv-section .kv-ttl .js-anim-txt.ja {
  display: block;
  font-weight: bold;
  font-size: 48px;
  line-height: 1.5;
}
.c-kv-section .kv-ttl .js-anim-txt.ja span {
  color: #000;
  min-width: 11px;
}
.c-kv-section .kv-ttl .js-anim-txt.small {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
.c-kv-section .kv-ttl .js-anim-txt.small span {
  color: #000;
}
.c-kv-section .kv-txt {
  margin-top: 20px;
  text-align: justify;
}
.c-kv-section .kv-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 56%;
  max-width: 720px;
  border-bottom-left-radius: 80px;
  overflow: hidden;
}
.c-kv-section .kv-img > picture {
  display: block;
  width: 100%;
  height: auto;
}
.c-kv-section02 .inner-block {
  padding-top: 195px;
}
.c-kv-section02 .en {
  margin-bottom: 0;
  line-height: 1.3;
}
.c-kv-section02 .kv-txt {
  max-width: 395px;
}
.c-kv-section02 .kv-img {
  left: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 1440px;
  border-radius: 0;
  overflow: visible;
}
.c-kv-section02 .kv-img::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 46.5%;
  height: 58%;
  border-top-right-radius: 50px;
  background: #fff;
}
.c-kv-section02 .kv-img::after {
  content: "";
  position: absolute;
  left: 46.5%;
  bottom: 0;
  width: 60px;
  height: 60px;
  background: url("../img/common/kv-border.svg") no-repeat bottom left/contain;
}

.footer-formore-section {
  padding-block: 45px;
}
.footer-formore-section .contents-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px clamp(12px, 2.6785714286vw, 30px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.footer-formore-section .ttl {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.04em;
  color: #0068B7;
}
.footer-formore-section .btn-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-left: 1px solid #BBB;
}
.footer-formore-section .btn-area .btn {
  padding-inline: clamp(20px, 4.2857142857vw, 48px);
  border-right: 1px solid #BBB;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.footer-formore-section .btn-area .btn:focus-visible .c-arrow-btn {
  color: #fff;
}
.footer-formore-section .btn-area .btn:focus-visible .c-arrow-btn::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.footer-formore-section .btn-area .btn .inn-txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 100%; /* 18px */
  letter-spacing: 0.04em;
}

.footer-recruit-section {
  position: relative;
  z-index: 1;
}
.footer-recruit-section .contents-wrap {
  padding-block: 140px;
}
.footer-recruit-section .contents-wrap .top-ttl,
.footer-recruit-section .contents-wrap .top-txt {
  color: #fff;
  text-align: center;
}
.footer-recruit-section .contents-wrap .top-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.footer-recruit-section .contents-wrap .top-ttl .ja {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 24px */
  letter-spacing: 0.04em;
}
.footer-recruit-section .contents-wrap .top-ttl .ja span {
  color: #fff;
}
.footer-recruit-section .contents-wrap .top-ttl .en {
  font-family: "Montserrat", sans-serif;
  font-size: 72px;
  font-weight: 400;
  line-height: 100%;
}
.footer-recruit-section .contents-wrap .top-ttl .en span {
  color: #fff;
}
.footer-recruit-section .contents-wrap .top-txt {
  margin-top: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  letter-spacing: 0.04em;
}
.footer-recruit-section .contents-wrap .link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 35px;
  margin-top: 50px;
}
.footer-recruit-section .contents-wrap .link-list > li {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 30px;
  overflow: hidden;
  width: 100%;
}
.footer-recruit-section .contents-wrap .link-list .contents-wrap {
  padding-block: 62px 46px;
  padding-inline: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px 22px;
  width: 100%;
  height: 100%;
}
.footer-recruit-section .contents-wrap .link-list .contents-wrap:focus-visible {
  background: #CD1B1B;
}
.footer-recruit-section .contents-wrap .link-list .contents-wrap:focus-visible .ttl {
  color: #fff;
}
.footer-recruit-section .contents-wrap .link-list .contents-wrap:focus-visible .ttl .en {
  color: #fff;
}
.footer-recruit-section .contents-wrap .link-list .contents-wrap:focus-visible .c-arrow-btn {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.footer-recruit-section .contents-wrap .link-list .contents-wrap:focus-visible .c-arrow-btn::before {
  background: #CD1B1B;
}
.footer-recruit-section .contents-wrap .link-list .contents-wrap .ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer-recruit-section .contents-wrap .link-list .contents-wrap .ttl .en {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
  color: #CD1B1B;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer-recruit-section .contents-wrap .link-list .contents-wrap .ttl .ja {
  font-size: 20px;
  font-weight: 700;
  line-height: 140%;
}
.footer-recruit-section .contents-wrap .link-list .contents-wrap .c-arrow-btn {
  margin-top: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background: #fff;
}
.footer-recruit-section .contents-wrap .link-list .contents-wrap .c-arrow-btn::before {
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.footer-recruit-section .contents-wrap .link-list .contents-wrap .c-arrow-btn::after {
  content: none;
}
.footer-recruit-section .footer-bg-area {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.footer-recruit-section .footer-bg-area.is-animated .img::before {
  opacity: 1;
}
.footer-recruit-section .footer-bg-area .img {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.footer-recruit-section .footer-bg-area .img::before {
  position: absolute;
  content: "";
  z-index: 2;
  background-blend-mode: multiply;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  inset: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.footer-recruit-section .footer-bg-area .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-cta-section {
  background: #F8F6F4;
  border-radius: 100px 100px 0 0;
  padding-block: 100px;
}
.c-cta-section.bg-white {
  background: #fff;
}
.c-cta-section .c-link-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 11.3194444444vw;
     -moz-column-gap: 11.3194444444vw;
          column-gap: 11.3194444444vw;
  margin-top: 35px;
}
.c-cta-section .c-link-list > li {
  width: calc((100% - 11.3194444444vw) / 2);
}
.c-cta-section .c-link-list > li .small-txt {
  padding-left: 20px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}

.c-bg-gray {
  background: #F8F6F4;
}

.c-anchor-wrap {
  padding-bottom: 150px;
}
.c-anchor-wrap .inner-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8.3333333333vw;
}
.c-anchor-wrap .inner-block .ttl {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  color: #0068B7;
}
.c-anchor-wrap .inner-block .anchor-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2.7777777778vw;
}
.c-anchor-wrap .inner-block .anchor-list > li {
  width: calc((100% - 5.5555555556vw) / 3);
  min-width: 225px;
}
.c-anchor-wrap .inner-block .anchor-list > li > a {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  line-height: 1.4;
  padding-bottom: 6px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-bottom: 1px solid #CCC;
}
.c-anchor-wrap .inner-block .anchor-list > li > a:focus-visible::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.c-anchor-wrap .inner-block .anchor-list > li > a:focus-visible .arrow-down::before {
  background: #fff;
}
.c-anchor-wrap .inner-block .anchor-list > li > a:focus-visible .arrow-down::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.c-anchor-wrap .inner-block .anchor-list > li > a::before {
  content: "";
  position: absolute;
  background: #CD1B1B;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: right;
          transform-origin: right;
}
.c-anchor-wrap .inner-block .anchor-list > li > a .arrow-down {
  width: 24px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.c-anchor-wrap .inner-block .anchor-list > li > a .arrow-down::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  -webkit-mask: url("../img/common/arrow.svg") no-repeat center/15px auto;
          mask: url("../img/common/arrow.svg") no-repeat center/15px auto;
  background: #CD1B1B;
  rotate: 90deg;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 2;
}
.c-anchor-wrap .inner-block .anchor-list > li > a .arrow-down::after {
  content: "";
  position: absolute;
  background: #CD1B1B;
  display: block;
  width: calc(100% + 3px);
  height: calc(100% + 3px);
  border-radius: 50%;
  top: 0;
  left: -1px;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 0;
}

.c-menu-section-wrap {
  position: relative;
  padding-block: 138px;
  display: grid;
  grid-template-columns: 16% auto;
  gap: 10%;
}
.c-menu-section-wrap.bg {
  padding-block: 0px;
  margin-top: 80px;
  grid-template-columns: 1fr;
  gap: 6%;
}
.c-menu .menu-ttl {
  margin-bottom: 25px;
  position: relative;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  color: #0068B7;
}
.c-menu .menu-ttl::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: -20px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #0068B7;
}
.c-menu.bg {
  position: absolute;
  top: 138px;
  bottom: 138px;
}

.c-bg-section {
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  padding-block: 140px 152px;
  background: #F8F6F4;
}
.c-bg-section.bg-white {
  background: #fff;
}

.x-hidden {
  overflow-x: hidden;
}

/* -----------------------------------------------
* new-graduate, Module
* new-graduate, ページ用
-------------------------------------------------- */
.c-recruit-info .c-kv-section02 .br01 {
  display: none;
}
.c-recruit-info .c-kv-section02 .br02 {
  display: none;
}
.c-recruit-info .tab-block {
  margin-block: 34px 30px;
  border-bottom: 1px solid #0068B7;
}
.c-recruit-info .tab-block .tab-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-inline: 40px;
  margin-inline: auto;
  max-width: 916px;
}
.c-recruit-info .tab-block .tab-list.row-3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1102px;
}
.c-recruit-info .tab-block .tab-list.row-3 > li .tab-btn {
  padding: 30px 25px 36px;
}
.c-recruit-info .tab-block .tab-list > li .tab-btn {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  position: relative;
  padding: 30px 42px 36px;
  text-align: center;
  border: 1px solid transparent;
  border-bottom: none;
  border-radius: 30px 30px 0 0;
  background: #dfdfdf;
  color: #000;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-recruit-info .tab-block .tab-list > li .tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20px;
  margin: 0 auto;
  width: 15px;
  height: 9px;
  background: #000;
  -webkit-mask: url("../img/common/ico-tab-list.svg") no-repeat center/contain;
          mask: url("../img/common/ico-tab-list.svg") no-repeat center/contain;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.c-recruit-info .tab-block .tab-list > li .tab-btn:focus-visible::after {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
.c-recruit-info .tab-block .tab-list > li .tab-btn.is-active {
  color: #fff;
  background: #0068B7;
}
.c-recruit-info .tab-block .tab-list > li .tab-btn.is-active::after {
  background: #fff;
}
.c-recruit-info .tab-block .tab-list > li .tab-btn.is-active:focus-visible {
  border-color: #000;
}
.c-recruit-info .tab-block .tab-list > li .tab-btn:not(.is-active):focus-visible {
  color: #0068B7;
  border-color: #0068B7;
  background: #fff;
}
.c-recruit-info .tab-block .tab-list > li .tab-btn:not(.is-active):focus-visible::after {
  background: #0068B7;
}
.c-recruit-info .about-section {
  margin-top: 30px;
}
.c-recruit-info .about-section .about-ttl {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.c-recruit-info .about-section .txt-area {
  margin-top: 35px;
  text-align: justify;
}
.c-recruit-info .about-section .txt-area p + p {
  margin-top: 18px;
}
.c-recruit-info.p-welcome-back .about-section {
  margin-top: 0;
}
.c-recruit-info .req-section {
  padding-block: 130px 160px;
}
.c-recruit-info .req-section .req-ttl {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.c-recruit-info .req-section .req-list .req-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 9%;
  padding-block: 30px;
  border-top: 1px solid #dfdfdf;
}
.c-recruit-info .req-section .req-list .req-item:last-child {
  border-bottom: 1px solid #dfdfdf;
}
.c-recruit-info .req-section .req-list .req-item .ttl {
  width: 100px;
  font-weight: 400;
  text-align: left;
}
.c-recruit-info .req-section .req-list .req-item .cont {
  width: 100%;
}
.c-recruit-info .req-section .req-list .req-item .cont li {
  position: relative;
  padding-left: 18px;
}
.c-recruit-info .req-section .req-list .req-item .cont li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #000;
  border-radius: 50%;
}
.c-recruit-info .req-section .req-list .req-item .cont li.note::before {
  content: "※";
  top: 0px;
  background: none;
  border-radius: none;
}
.c-recruit-info .req-section .req-list .req-item .cont p + p, .c-recruit-info .req-section .req-list .req-item .cont p + ul {
  margin-top: 30px;
}
.c-recruit-info .flow-section, .c-recruit-info .flow-qa-section {
  background: #F8F6F4;
}
.c-recruit-info .flow-section .ttl, .c-recruit-info .flow-qa-section .ttl {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.c-recruit-info .flow-section {
  padding-block: 164px 156px;
}
.c-recruit-info .flow-section .flow-item {
  position: relative;
  padding: 28px 55px;
  border-radius: 30px;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
.c-recruit-info .flow-section .flow-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 22px 25px 0 25px;
  border-color: #0068B7 transparent transparent transparent;
}
.c-recruit-info .flow-section .flow-item + .flow-item {
  margin-top: 32px;
}
.c-recruit-info .flow-section .flow-ttl {
  min-height: 86px;
  width: 158px;
  min-width: 158px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  border-right: 1px solid #dfdfdf;
}
.c-recruit-info .flow-section .flow-ttl .en {
  display: block;
  color: #0068B7;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
}
.c-recruit-info .flow-section .flow-ttl .ja {
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.c-recruit-info .flow-section .flow-cont {
  font-weight: 300;
}
.c-recruit-info .flow-section .flow-cont a {
  position: relative;
}
.c-recruit-info .flow-section .flow-cont a:focus-visible::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.c-recruit-info .flow-qa-section {
  padding-bottom: 152px;
}
.c-recruit-info .flow-qa-section .qa-item {
  padding-block: 36px;
  border-top: 1px solid #bfbfbf;
}
.c-recruit-info .flow-qa-section .qa-item:last-child {
  border-bottom: 1px solid #bfbfbf;
}
.c-recruit-info .flow-qa-section .qa-item .table-box {
  background: #fff;
  margin-top: 20px;
  border-radius: 20px;
  padding: 38px 51px 46px;
  max-width: 909px;
}
.c-recruit-info .flow-qa-section .qa-item .table-box .lead {
  font-size: 18px;
  font-weight: 500;
}
.c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table {
  width: 100%;
  table-layout: fixed;
  margin-top: 16px;
}
.c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table tr:first-child td, .c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table tr:not(:first-child) th {
  width: 14.0024783147%;
}
.c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table tr:first-child, .c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table tr:not(:first-child) th {
  background: #F8F6F4;
}
.c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table tr,
.c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table th,
.c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table td {
  border: 1px solid #dfdfdf;
}
.c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table td {
  text-align: center;
}
.c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table td,
.c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table th {
  padding-block: 6px;
  padding-inline: 5px;
}
.c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table th {
  font-weight: 400;
}
.c-recruit-info .flow-qa-section .qa-item .table-box .note {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  margin-top: 10px;
  text-align: end;
}
.c-recruit-info .flow-qa-section .q-txt, .c-recruit-info .flow-qa-section .a-txt {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  font-size: 16px;
}
.c-recruit-info .flow-qa-section .q-txt {
  margin-bottom: 8px;
}
.c-recruit-info .flow-qa-section .a-txt {
  font-weight: 300;
}
.c-recruit-info .video-section {
  padding-top: 160px;
  display: grid;
  grid-template-columns: 344px 1fr;
  gap: 3.5%;
}
.c-recruit-info .video-section .video-ttl {
  margin-bottom: 18px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.c-recruit-info .video-section .movie-wrap {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
}
.c-recruit-info .video-section .movie-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background: url("../img/movie-gallery/ico-play.svg") no-repeat center/contain;
}
.c-recruit-info .video-section .movie-wrap:focus-visible > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.c-recruit-info .video-section .movie-wrap > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-recruit-info .video-section .time-txt {
  margin-top: 6px;
}
.c-recruit-info .recruit-info-cta {
  padding-bottom: 160px;
}
.c-recruit-info .recruit-info-cta.pt-70 {
  padding-top: 70px;
}
.c-recruit-info .recruit-info-cta .sns-section {
  margin-block: 90px;
}
.c-recruit-info .recruit-info-cta .sns-section .insta-wrap {
  display: block;
  margin-inline: auto;
  padding: 25px;
  max-width: 547px;
  border: 1px solid #dfdfdf;
  border-radius: 10px;
}
.c-recruit-info .recruit-info-cta .sns-section .insta-wrap:focus-visible {
  background: #CCC;
  border-color: #000;
}
.c-recruit-info .recruit-info-cta .sns-section .sns-ttl {
  position: relative;
}
.c-recruit-info .recruit-info-cta .sns-section .sns-ttl::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
  width: 67px;
  height: 67px;
  background: url("../img/common/ico-insta.png.webp") no-repeat center/contain;
}
.c-recruit-info .recruit-info-cta .sns-section .sns-ttl .main {
  display: block;
}
.c-recruit-info .recruit-info-cta .sns-section .sns-ttl .br01 {
  display: none;
}
.c-recruit-info .recruit-info-cta .entry-section {
  padding-block: 95px 42px;
}
.c-recruit-info .recruit-info-cta .entry-section .entry-ttl {
  margin-bottom: 30px;
  display: grid;
  place-items: center;
}
.c-recruit-info .recruit-info-cta .entry-section .entry-ttl .inn {
  display: inline-block;
  font-size: 72px;
  font-weight: 400;
  line-height: 1;
  background: -webkit-gradient(linear, left top, right top, from(#CD1B1B), to(#0068B7));
  background: linear-gradient(to right, #CD1B1B 0%, #0068B7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #0068B7;
}
.c-recruit-info .recruit-info-cta .entry-section .entry-block {
  padding: 59px 80px 59px 60px;
  background: -webkit-gradient(linear, left top, right top, from(#CD1B1B), to(#0068B7));
  background: linear-gradient(to right, #CD1B1B 0%, #0068B7 100%);
  border-radius: 40px;
}
.c-recruit-info .recruit-info-cta .entry-section .entry-block.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.c-recruit-info .recruit-info-cta .entry-section .entry-block + .entry-block {
  margin-top: 22px;
}
.c-recruit-info .recruit-info-cta .entry-section .entry-block.row-1 .btn-wrap {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-recruit-info .recruit-info-cta .entry-section .entry-block.row-1 .btn-wrap .inn-btn {
  max-width: 339px;
  width: 100%;
  padding-block: 35px;
}
.c-recruit-info .recruit-info-cta .entry-section .year-ttl {
  position: relative;
  padding-left: 28px;
  color: #fff;
  font-size: 20px;
  line-height: 1.5;
}
.c-recruit-info .recruit-info-cta .entry-section .year-ttl::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
}
.c-recruit-info .recruit-info-cta .entry-section .contact-ttl {
  position: relative;
  padding-block: 22px 32px;
  text-align: center;
  color: #fff;
}
.c-recruit-info .recruit-info-cta .entry-section .contact-ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.c-recruit-info .recruit-info-cta .entry-section .btn-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  width: 100%;
}
.c-recruit-info .recruit-info-cta .entry-section .info-area {
  padding-top: 26px;
}
.c-recruit-info .recruit-info-cta .entry-section .info-ttl {
  color: #fff;
  text-align: center;
}
.c-recruit-info .recruit-info-cta .entry-section .contact-wrap {
  margin-top: 8px;
  padding-bottom: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-recruit-info .recruit-info-cta .entry-section .contact-wrap .contact {
  position: relative;
  padding-left: 40px;
  font-size: 34px;
  font-weight: 600;
  line-height: 1.5;
  color: #fff;
}
.c-recruit-info .recruit-info-cta .entry-section .contact-wrap .contact::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 32px;
  height: 32px;
  background-repeat: none;
  background-position: center;
  background-size: contain;
}
.c-recruit-info .recruit-info-cta .entry-section .contact-wrap .contact.tel::before {
  background-image: url("../img/common/ico-tel.svg");
}
.c-recruit-info .recruit-info-cta .entry-section .contact-wrap .contact.mail::before {
  background-image: url("../img/common/ico-mail.svg");
}
.c-recruit-info .recruit-info-cta .entry-section .inn-btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  border-radius: 46.5px;
  padding-block: 22px;
  position: relative;
  border: 2px solid #fff;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.04em;
}
.c-recruit-info .recruit-info-cta .entry-section .inn-btn .c-arrow-btn {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: none;
}
.c-recruit-info .recruit-info-cta .entry-section .inn-btn .c-arrow-btn::before {
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.c-recruit-info .recruit-info-cta .entry-section .inn-btn .c-arrow-btn::after {
  width: 100%;
  top: 0;
  left: 0;
  bottom: 0;
}
.c-recruit-info .recruit-info-cta .entry-section .inn-btn:focus-visible {
  border: 2px solid #CD1B1B;
}
.c-recruit-info .recruit-info-cta .entry-section .inn-btn:focus-visible .txt {
  color: #CD1B1B;
}
.c-recruit-info .recruit-info-cta .entry-section .inn-btn:focus-visible .c-arrow-btn::before {
  background: #fff;
}
.c-recruit-info .recruit-info-cta .entry-section .inn-btn .txt {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.04em;
  font-weight: 500;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.c-recruit-info .recruit-info-cta .entry-section .inn-btn img {
  max-width: 212px;
}
.c-recruit-info .modal-block {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 101;
  position: fixed;
  padding-inline: 40px;
  max-width: 848px;
  height: auto;
  aspect-ratio: 16/9;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.c-recruit-info .modal-block.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.c-recruit-info .modal-block .close-btn {
  position: relative;
  display: block;
  margin-left: auto;
  margin-bottom: 23px;
  padding-top: 55px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.c-recruit-info .modal-block .close-btn > span::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.c-recruit-info .modal-block .close-btn:focus-visible > span::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.c-recruit-info .modal-block .close-btn::before, .c-recruit-info .modal-block .close-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 1px;
  height: 52px;
  background-color: #fff;
}
.c-recruit-info .modal-block .close-btn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.c-recruit-info .modal-block .close-btn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-recruit-info .modal-block .video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.c-recruit-info .modal-block .video-wrap > iframe {
  width: 100%;
  height: 100%;
}
.c-recruit-info .modal-bg {
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.c-recruit-info .modal-bg.is-open {
  opacity: 1;
  pointer-events: all;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
@-webkit-keyframes img-swap {
  0% {
    opacity: 0;
    -webkit-transform: translateX(8%);
            transform: translateX(8%);
  }
  100% {
    opacity: 1;
  }
}
@keyframes img-swap {
  0% {
    opacity: 0;
    -webkit-transform: translateX(8%);
            transform: translateX(8%);
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes img-change {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
@keyframes img-change {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.home .mv-section .inner-block {
  max-width: 1440px;
  padding-inline: 30px;
}
.home .mv-section .inner-block .movie-box {
  position: relative;
  height: calc(100vh - 84px);
}
.home .mv-section .inner-block .movie-box .scroll-box {
  position: absolute;
  width: 194px;
  aspect-ratio: 1/1;
  height: auto;
  top: 53%;
  right: 9.5%;
}
.home .mv-section .inner-block .movie-box .scroll-box .circle {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
@-webkit-keyframes scroll-circle {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
@keyframes scroll-circle {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}
.home .mv-section .inner-block .movie-box .scroll-box .arrow {
  width: 23px;
  height: 39px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@-webkit-keyframes scroll-arrow {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
@keyframes scroll-arrow {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
}
.home .mv-section .inner-block .movie-box .scroll-box.is-animated .circle {
  -webkit-animation: scroll-circle 15s linear infinite normal none;
          animation: scroll-circle 15s linear infinite normal none;
}
.home .mv-section .inner-block .movie-box .scroll-box.is-animated .arrow {
  -webkit-animation: scroll-arrow 3s cubic-bezier(0.87, 0, 0.13, 1) infinite normal none;
          animation: scroll-arrow 3s cubic-bezier(0.87, 0, 0.13, 1) infinite normal none;
}
.home .mv-section .inner-block .movie-box .movie {
  border-radius: 40px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.home .mv-section .inner-block .movie-box .movie video {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
}
.home .mv-section .inner-block .movie-box .movie .movie-btn {
  background: #fff;
  border-radius: 50%;
  width: 50px;
  display: block;
  aspect-ratio: 1/1;
  height: 50px;
  position: absolute;
  right: 3.5vw;
  bottom: 3.5vw;
  border: 2px solid #fff;
}
.home .mv-section .inner-block .movie-box .movie .movie-btn::before {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-mask: url("../img/home/movie-ico_stop.svg") no-repeat center/contain;
          mask: url("../img/home/movie-ico_stop.svg") no-repeat center/contain;
}
.home .mv-section .inner-block .movie-box .movie .movie-btn:focus-visible {
  border-color: #000;
}
.home .mv-section .inner-block .movie-box .movie .movie-btn.play::before {
  -webkit-mask: url("../img/home/movie-ico_play.svg") no-repeat center/contain;
          mask: url("../img/home/movie-ico_play.svg") no-repeat center/contain;
}
.home .inner-block {
  max-width: 1212px;
}
.home .copy-section {
  padding-top: 160px;
}
.home .copy-section .copy-wrap {
  position: absolute;
  width: 448px;
  height: 830px;
  margin-top: -560px;
}
.home .copy-section .copy-wrap .mask {
  width: 100%;
  height: 100%;
}
.home .copy-section .copy-wrap .mask .anim-ttl {
  -webkit-transition: opacity 1s ease 0.4s, -webkit-transform 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.4s;
  transition: opacity 1s ease 0.4s, -webkit-transform 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.4s;
  transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.4s, opacity 1s ease 0.4s;
  transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.4s, opacity 1s ease 0.4s, -webkit-transform 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.4s;
  opacity: 0;
  -webkit-transform: translate(0, 60%);
          transform: translate(0, 60%);
}
.home .copy-section .copy-wrap .mask .en.is-loaded {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.home .copy-section .copy-wrap .mask .copy span {
  display: block;
}
.home .copy-section .copy-wrap .mask .copy.is-loaded .anim-ttl {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.home .copy-section .copy-wrap .mask.white {
  -webkit-clip-path: polygon(0 0, 448px 0, 448px 400px, 0 400px);
          clip-path: polygon(0 0, 448px 0, 448px 400px, 0 400px);
  color: #fff;
  height: 400px;
}
.home .copy-section .copy-wrap .mask.white .anim-ttl {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1), -1px 1px 2px rgba(0, 0, 0, 0.1), 1px -1px 2px rgba(0, 0, 0, 0.1), -1px -1px 2px rgba(0, 0, 0, 0.1), 1px 0px 2px rgba(0, 0, 0, 0.1), 0px 1px 2px rgba(0, 0, 0, 0.1), -1px 0px 2px rgba(0, 0, 0, 0.1), 0px -1px 2px rgba(0, 0, 0, 0.1);
}
.home .copy-section .copy-wrap .mask.black {
  -webkit-clip-path: polygon(0 0, 448px 0, 448px 830px, 0 830px);
          clip-path: polygon(0 0, 448px 0, 448px 830px, 0 830px);
  height: 430px;
}
.home .copy-section .copy-wrap .mask.black .en {
  color: #0068B7;
}
.home .copy-section .copy-wrap .mask.black .copy {
  color: #000;
}
.home .copy-section .copy-wrap .mask .inn {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 100%;
}
.home .copy-section .copy-wrap .mask .box {
  position: -webkit-sticky;
  position: sticky;
  top: calc(100vh - 400px);
}
.home .copy-section .copy-wrap .mask .en {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}
.home .copy-section .copy-wrap .mask .copy {
  font-size: clamp(45px, 3.8888888889vw, 56px);
  font-weight: bold;
  line-height: 1.4;
}
.home .copy-section .txt-box {
  padding-left: clamp(440px, 37.9166666667vw, 546px);
}
.home .copy-section .txt-box .sec-txt {
  font-size: 20px;
  line-height: 1.9;
}
.home .copy-section .txt-box .sec-txt + .sec-txt {
  margin-top: 50px;
}
.home .copy-section .txt-box .c-btn01 {
  margin-top: 80px;
}
.home .company-section {
  padding-top: 180px;
}
.home .company-section .inner-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(50px, 6.9444444444vw, 100px);
}
.home .company-section .txt-wrap {
  width: clamp(440px, 33.3333333333vw, 480px);
  position: relative;
  z-index: 2;
}
.home .company-section .txt-wrap .txt {
  margin-top: 35px;
  line-height: 1.8;
}
.home .company-section .txt-wrap .sp-img-wrap {
  position: relative;
  padding-inline: 20px;
  margin-top: 25px;
  max-width: 500px;
  margin-inline: auto;
  z-index: 2;
}
.home .company-section .txt-wrap .sp-img-wrap .img {
  position: relative;
}
.home .company-section .txt-wrap .sp-img-wrap .img > img {
  width: 100%;
  border-radius: 20px;
}
.home .company-section .txt-wrap .sp-img-wrap .img:first-child {
  width: 39.66%;
}
.home .company-section .txt-wrap .sp-img-wrap .img:nth-child(2) {
  margin-top: -84px;
  margin-left: auto;
  width: 41.7%;
}
.home .company-section .txt-wrap .sp-img-wrap .img:nth-child(3) {
  margin-bottom: auto;
  margin-top: -55px;
  width: 47.8%;
  margin-left: 9px;
}
.home .company-section .c-link-list {
  margin-top: 80px;
}
.home .company-section .img-wrap {
  position: relative;
  aspect-ratio: 554/752;
  width: 100%;
}
.home .company-section .img-wrap .img {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}
.home .company-section .img-wrap .img.first {
  z-index: 2;
}
.home .company-section .img-wrap .img > img {
  display: block;
}
.home .company-section .img-wrap .img.is-show {
  -webkit-animation: img-change 0.3s linear normal forwards;
          animation: img-change 0.3s linear normal forwards;
  z-index: 2;
}
.home .company-section .anim-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: -60px;
}
.home .company-section .anim-wrap .en {
  font-size: 220px;
  line-height: 1;
  color: #F8F6F4;
  white-space: nowrap;
}
.home .job-section {
  padding-top: 120px;
}
.home .job-section .sec-txt {
  margin-top: 40px;
  max-width: 574px;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.home .job-section .btn-wrap {
  margin-top: 55px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 36px;
}
.home .job-section .btn-wrap .job-link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
}
.home .job-section .btn-wrap .job-link:first-child .bottom {
  padding-bottom: 49px;
}
.home .job-section .btn-wrap .job-link:focus-visible img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.home .job-section .btn-wrap .job-link:focus-visible .c-arrow-btn {
  color: #fff;
}
.home .job-section .btn-wrap .job-link:focus-visible .c-arrow-btn::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.home .job-section .btn-wrap .job-link img {
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.home .job-section .btn-wrap .job-link .bottom {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding-right: clamp(80px, 6.25vw, 90px);
  padding-left: clamp(25px, 2.9166666667vw, 42px);
  color: #fff;
  padding-bottom: 30px;
}
.home .job-section .btn-wrap .job-link .bottom .c-arrow-btn {
  position: absolute;
  right: 35px;
  bottom: 42px;
}
.home .job-section .btn-wrap .job-link .bottom .en {
  font-size: 40px;
  line-height: 1;
  display: block;
  font-weight: 400;
  padding-bottom: 10px;
}
.home .job-section .btn-wrap .job-link .bottom .ja {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.home .job-section .btn-wrap .job-link .bottom .small {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.03em;
}
.home .interview-section {
  background: #0068B7;
  border-radius: 100px 100px 0 0;
  margin-top: 170px;
  padding-block: 170px 150px;
}
.home .interview-section .c-ttl01 {
  margin-bottom: 50px;
}
.home .interview-section .c-ttl01 .en span {
  color: #fff;
}
.home .interview-section .c-ttl01 .ja span {
  color: #fff;
}
.home .interview-section .img-switching-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.home .interview-section .img-switching-area .img-wrap {
  position: relative;
  aspect-ratio: 415/604;
  width: 37%;
}
.home .interview-section .img-switching-area .img-wrap .img {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}
.home .interview-section .img-switching-area .img-wrap .img.is-show {
  -webkit-animation: img-swap 0.1s linear normal forwards;
          animation: img-swap 0.1s linear normal forwards;
  z-index: 2;
}
.home .interview-section .img-switching-area .img-wrap .ttl-wrap {
  position: absolute;
  left: clamp(1rem, 0.135rem + 1.8vw, 1.5rem);
  bottom: clamp(2.5rem, -2.257rem + 9.91vw, 5.25rem);
}
.home .interview-section .img-switching-area .img-wrap .ttl-wrap .ttl-txt {
  background: #fff;
  color: #0068B7;
  display: block;
  font-weight: bold;
  font-size: clamp(1rem, 0.135rem + 1.8vw, 1.5rem);
  line-height: 1;
  padding: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home .interview-section .img-switching-area .img-wrap .ttl-wrap .ttl-txt + .ttl-txt {
  margin-top: 6px;
}
.home .interview-section .img-switching-area .txt-wrap {
  width: 63%;
  padding-left: clamp(1.875rem, -0.611rem + 5.18vw, 3.313rem);
  padding-bottom: 80px;
}
.home .interview-section .img-switching-area .txt-wrap .btn-list {
  display: grid;
  gap: 24px 16px;
  grid-template-columns: repeat(2, 1fr);
}
.home .interview-section .interview-btn {
  border: 1px solid #fff;
  border-radius: 50px;
  color: #fff;
  display: block;
  padding: 18px 60px 18px clamp(1.563rem, -0.059rem + 3.38vw, 2.5rem);
  position: relative;
}
.home .interview-section .interview-btn .job,
.home .interview-section .interview-btn .name {
  display: block;
  line-height: 1.1;
}
.home .interview-section .interview-btn .job {
  font-size: clamp(0.75rem, 0.534rem + 0.45vw, 0.875rem);
  margin-bottom: 10px;
}
.home .interview-section .interview-btn .name {
  font-size: clamp(1.125rem, 0.476rem + 1.35vw, 1.5rem);
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.home .interview-section .interview-btn .c-arrow-btn {
  position: absolute;
  top: 0;
  right: 16px;
  bottom: 0;
  margin: auto;
  height: 46px;
}
.home .interview-section .interview-btn:focus-visible {
  background: #fff;
  color: #0068B7;
}
.home .interview-section .int-splide {
  max-width: 400px;
  width: 100%;
  margin: auto;
}
.home .interview-section .int-splide .splide__slide a {
  display: block;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
.home .interview-section .int-splide .splide__slide a:focus-visible {
  border: 2px solid #000;
}
.home .interview-section .int-splide .splide__slide a:focus-visible .txt-wrap .post-wrap .c-arrow-btn::before {
  color: #fff;
}
.home .interview-section .int-splide .splide__slide a > img {
  width: 100%;
}
.home .interview-section .int-splide .splide__slide a .txt-wrap {
  position: absolute;
  bottom: 0;
  left: clamp(10px, 5.3333333333vw, 20px);
  padding-bottom: 20px;
}
.home .interview-section .int-splide .splide__slide a .txt-wrap .ttl-txt {
  background: #fff;
  color: #0068B7;
  display: block;
  font-weight: bold;
  line-height: 1;
  font-size: clamp(13px, 5.3333333333vw, 20px);
  padding: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home .interview-section .int-splide .splide__slide a .txt-wrap .ttl-txt + .ttl-txt {
  margin-top: 4px;
}
.home .interview-section .int-splide .splide__slide a .txt-wrap .post-wrap {
  background: #fff;
  margin-top: 20px;
  border-radius: 30px;
  padding: 15px 55px 15px 28px;
  position: relative;
  min-width: 229px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.home .interview-section .int-splide .splide__slide a .txt-wrap .post-wrap .post {
  font-size: 12px;
  line-height: 1;
}
.home .interview-section .int-splide .splide__slide a .txt-wrap .post-wrap .name {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
}
.home .interview-section .int-splide .splide__slide a .txt-wrap .post-wrap .c-arrow-btn {
  position: absolute;
  right: 13px;
  top: 0;
  bottom: 0;
  margin: auto;
  aspect-ratio: 1/1;
}
.home .interview-section .int-splide {
  position: relative;
}
.home .interview-section .int-splide .splide__arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}
.home .interview-section .int-splide .splide__arrow--prev {
  left: -15px;
}
.home .interview-section .int-splide .splide__arrow--next {
  right: -15px;
}
.home .interview-section .c-text-icon-link:focus-visible .c-arrow-btn {
  color: #fff;
}
.home .environment-section {
  padding-top: 180px;
  padding-bottom: 160px;
}
.home .environment-section .inner-block {
  max-width: 1408px;
}
.home .environment-section .ttl-wrap {
  max-width: 1128px;
  margin: 0 auto 50px;
}
.home .environment-section .sec-txt {
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.home .environment-section .card-container {
  margin-bottom: 40px;
  max-width: 100%;
}
.home .environment-section .card-container:last-child {
  margin-bottom: 0;
}
.home .environment-section .card {
  padding-block: 56px;
  padding-left: clamp(40px, 6.6666666667vw, 96px);
  padding-right: clamp(20px, 3.8888888889vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 6.9444444444vw, 100px);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 40px;
  position: relative;
}
.home .environment-section .card.gray {
  background: #E7E7E7;
}
.home .environment-section .card.blue {
  background: #0068B7;
  z-index: 5;
}
.home .environment-section .card.blue .txt-wrap .c-ttl01 .en,
.home .environment-section .card.blue .txt-wrap .c-ttl01 .ja {
  color: #fff;
}
.home .environment-section .card.blue .txt-wrap .c-link-list > li > a {
  color: #fff;
  border-color: rgba(228, 228, 228, 0.4);
}
.home .environment-section .card .txt-wrap {
  width: clamp(440px, 33.3333333333vw, 480px);
  position: relative;
  z-index: 2;
}
.home .environment-section .card .txt-wrap .c-ttl01 {
  margin-bottom: 50px;
}
.home .environment-section .card .txt-wrap .c-link-list > li > a {
  border-color: #CCC;
}
.home .environment-section .card .img-wrap {
  position: relative;
  aspect-ratio: 590/417;
  width: 100%;
}
.home .environment-section .card .img-wrap .img {
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 40px;
  overflow: hidden;
  z-index: 1;
}
.home .environment-section .card .img-wrap .img.first {
  z-index: 2;
}
.home .environment-section .card .img-wrap .img > img {
  display: block;
}
.home .environment-section .card .img-wrap .img.is-show {
  -webkit-animation: img-change 0.3s linear normal forwards;
          animation: img-change 0.3s linear normal forwards;
  z-index: 2;
}
.home .environment-section .pin-spacer {
  max-width: 100% !important;
}

/* -----------------------------------------------
* work-advantage Module
* work-advantageページ用
-------------------------------------------------- */
.p-work-advantage .p-br01 {
  display: none;
}
.p-work-advantage .c-kv-section .ja {
  max-width: 350px;
}
.p-work-advantage .merit-section {
  display: grid;
  grid-template-columns: 1fr 493px;
  grid-template-areas: "ttl diag" "link diag";
  gap: 4%;
  padding-block: 100px;
}
.p-work-advantage .merit-section .ttl-block {
  grid-area: ttl;
}
.p-work-advantage .merit-section .c-link-list {
  max-width: 484px;
  grid-area: link;
  align-self: end;
}
.p-work-advantage .merit-section .diag-block {
  grid-area: diag;
  padding: 40px;
  border-radius: 40px;
  background-color: #F8F6F4;
}
.p-work-advantage .merit-tag {
  display: inline-block;
  padding: 8px 30px;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  background: #0068B7;
  border-radius: 100px;
}
.p-work-advantage .merit-ttl {
  margin-top: 28px;
  display: block;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.p-work-advantage .merit-txt {
  margin-top: 30px;
  text-align: justify;
}
.p-work-advantage .diag-block .diag-ttl {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.p-work-advantage .diag-block .diag-ttl {
  text-align: center;
}
.p-work-advantage .diag-block .graph-area {
  position: relative;
  padding-top: 10px;
  max-width: 415px;
  margin-inline: auto;
}
.p-work-advantage .diag-block .graph-area + .graph-area {
  position: relative;
  margin-top: 50px;
}
.p-work-advantage .diag-block .graph-area + .graph-area::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 68px;
  height: 40px;
  background: #F8F6F4;
}
.p-work-advantage .diag-block .graph-area + .graph-area::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 18px 0 18px;
  border-color: #bfbfbf transparent transparent transparent;
}
.p-work-advantage .diag-block .graph-area01 {
  position: relative;
  margin-top: 20px;
}
.p-work-advantage .diag-block .graph-area01::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #bfbfbf;
}
.p-work-advantage .diag-block .diag-list {
  padding-block: 40px;
  padding-inline: 30px;
  max-width: 415px;
  margin-inline: auto;
}
.p-work-advantage .diag-block .diag-list.with-stat > li {
  padding-left: 53px;
}
.p-work-advantage .diag-block .diag-list > li {
  position: relative;
  padding-block: 32px;
  padding-left: 72px;
  border-top: solid 1px #bfbfbf;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.p-work-advantage .diag-block .diag-list > li:last-child {
  border-bottom: solid 1px #bfbfbf;
}
.p-work-advantage .diag-block .diag-list > li .stat {
  display: block;
  width: 110px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 0;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #0068B7;
  white-space: nowrap;
}
.p-work-advantage .diag-block .diag-list > li .stat .unit {
  font-size: 24px;
  color: #000;
}
.p-work-advantage .diag-block .diag-list > li::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: 48px;
  height: 48px;
  background: #0068B7;
}
.p-work-advantage .diag-block .diag-list > li.ico-tech::before {
  -webkit-mask: url("../img/work-advantage/ico-tech.svg") no-repeat center center/contain;
          mask: url("../img/work-advantage/ico-tech.svg") no-repeat center center/contain;
}
.p-work-advantage .diag-block .diag-list > li.ico-career::before {
  -webkit-mask: url("../img/work-advantage/ico-career.svg") no-repeat center center/contain;
          mask: url("../img/work-advantage/ico-career.svg") no-repeat center center/contain;
}
.p-work-advantage .diag-block .diag-list > li.ico-skill::before {
  -webkit-mask: url("../img/work-advantage/ico-skill.svg") no-repeat center center/contain;
          mask: url("../img/work-advantage/ico-skill.svg") no-repeat center center/contain;
}
.p-work-advantage .diag-block .diag-list > li.ico-balance::before {
  -webkit-mask: url("../img/work-advantage/ico-balance.svg") no-repeat center center/contain;
          mask: url("../img/work-advantage/ico-balance.svg") no-repeat center center/contain;
}
.p-work-advantage .diag-block .diag-list > li.ico-team::before {
  -webkit-mask: url("../img/work-advantage/ico-team.svg") no-repeat center center/contain;
          mask: url("../img/work-advantage/ico-team.svg") no-repeat center center/contain;
}
.p-work-advantage .diag-block .diag-list > li.ico-health::before {
  -webkit-mask: url("../img/work-advantage/ico-health.svg") no-repeat center center/contain;
          mask: url("../img/work-advantage/ico-health.svg") no-repeat center center/contain;
}
.p-work-advantage .diag-block .img-wrap {
  margin-top: 25px;
  border-radius: 30px;
  overflow: hidden;
  max-width: 415px;
  margin-inline: auto;
}
.p-work-advantage .diag-block .img-wrap > img {
  width: 100%;
  height: auto;
}
.p-work-advantage .diag-block .diag-tag {
  position: absolute;
  top: 0;
  left: 0;
  padding-block: 10px;
  width: 104px;
  text-align: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  color: #fff;
  background-color: #000;
  border-radius: 20px;
}
.p-work-advantage .diag-block .diag-label {
  z-index: 2;
  position: absolute;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.p-work-advantage .diag-block .diag-label .txt {
  position: relative;
}
.p-work-advantage .diag-block .diag-label .txt::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: -12px;
  width: 133px;
  height: 1px;
  background: #000;
}
.p-work-advantage .diag-block .diag-label .txt::after {
  content: "";
  position: absolute;
  right: 131px;
  bottom: -14px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
}
.p-work-advantage .diag-block .diag-label .txt.left::before {
  right: auto;
  left: 0;
}
.p-work-advantage .diag-block .diag-label .txt.left::after {
  right: auto;
  left: 131px;
}
.p-work-advantage .diag-block .diag-label .num {
  position: absolute;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.04em;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0.8s ease;
  transition: opacity 0.3s 0.8s ease;
}
.p-work-advantage .diag-block .diag-label .num .unit {
  font-size: 18px;
}
.p-work-advantage .diag-block .diag-label01-01 {
  top: 35px;
  right: 40px;
}
.p-work-advantage .diag-block .diag-label01-01 .num {
  top: 50px;
  right: 105px;
}
.p-work-advantage .diag-block .diag-label01-02 {
  top: 45px;
  left: 40px;
}
.p-work-advantage .diag-block .diag-label01-02 .num {
  top: 10px;
  left: 100px;
}
.p-work-advantage .diag-block .diag-label02-01 {
  top: 25px;
  right: 40px;
}
.p-work-advantage .diag-block .diag-label02-01 .num {
  top: 50px;
  right: 105px;
}
.p-work-advantage .diag-block .diag-label02-02 {
  top: 60px;
  left: 40px;
}
.p-work-advantage .diag-block .diag-label02-02 .num {
  top: 0px;
  left: 110px;
}
.p-work-advantage .diag-block .graph-wrap {
  width: 151px;
  height: 151px;
  margin-inline: auto;
}
.p-work-advantage .diag-block .graph-wrap svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.p-work-advantage .diag-block .graph-wrap circle {
  fill: none;
  stroke-width: 31.8308px;
  opacity: 0;
}
.p-work-advantage .diag-block .is-animated .num {
  opacity: 1;
}
.p-work-advantage .diag-block .is-animated .graph-wrap01 circle:first-child {
  stroke: #0068B7;
  stroke-dashoffset: 0;
  -webkit-animation: anime01 1.2s 0s forwards ease-in-out;
          animation: anime01 1.2s 0s forwards ease-in-out;
}
@-webkit-keyframes anime01 {
  0% {
    stroke-dasharray: 0, 100;
    opacity: 0;
  }
  50%, 100% {
    stroke-dasharray: 60, 100;
    opacity: 1;
  }
}
@keyframes anime01 {
  0% {
    stroke-dasharray: 0, 100;
    opacity: 0;
  }
  50%, 100% {
    stroke-dasharray: 60, 100;
    opacity: 1;
  }
}
.p-work-advantage .diag-block .is-animated .graph-wrap01 circle:nth-child(2) {
  stroke: #99B8D0;
  stroke-dashoffset: 40;
  -webkit-animation: anime02 1.2s 0.25s forwards ease-in-out;
          animation: anime02 1.2s 0.25s forwards ease-in-out;
}
@-webkit-keyframes anime02 {
  0% {
    stroke-dasharray: 0, 100;
    opacity: 0;
  }
  50%, 100% {
    stroke-dasharray: 40, 60;
    opacity: 1;
  }
}
@keyframes anime02 {
  0% {
    stroke-dasharray: 0, 100;
    opacity: 0;
  }
  50%, 100% {
    stroke-dasharray: 40, 60;
    opacity: 1;
  }
}
.p-work-advantage .diag-block .is-animated .graph-wrap02 circle:first-child {
  stroke: #0068B7;
  stroke-dashoffset: 0;
  -webkit-animation: anime03 1.2s 0s forwards ease-in-out;
          animation: anime03 1.2s 0s forwards ease-in-out;
}
@-webkit-keyframes anime03 {
  0% {
    stroke-dasharray: 0, 100;
    opacity: 0;
  }
  50%, 100% {
    stroke-dasharray: 50, 100;
    opacity: 1;
  }
}
@keyframes anime03 {
  0% {
    stroke-dasharray: 0, 100;
    opacity: 0;
  }
  50%, 100% {
    stroke-dasharray: 50, 100;
    opacity: 1;
  }
}
.p-work-advantage .diag-block .is-animated .graph-wrap02 circle:nth-child(2) {
  stroke: #99B8D0;
  stroke-dashoffset: 50;
  -webkit-animation: anime04 1.2s 0.2s forwards ease-in-out;
          animation: anime04 1.2s 0.2s forwards ease-in-out;
}
@-webkit-keyframes anime04 {
  0% {
    stroke-dasharray: 0, 100;
    opacity: 0;
  }
  50%, 100% {
    stroke-dasharray: 50, 50;
    opacity: 1;
  }
}
@keyframes anime04 {
  0% {
    stroke-dasharray: 0, 100;
    opacity: 0;
  }
  50%, 100% {
    stroke-dasharray: 50, 50;
    opacity: 1;
  }
}

/* -----------------------------------------------
* message Module
* messageページ用
-------------------------------------------------- */
.message .c-kv-section .inner-block {
  padding-top: 88px;
}
.message .c-kv-section .kv-txt {
  max-width: 772px;
}
.message .c-kv-section .mv-img {
  margin-top: 35px;
  border-radius: 40px;
  overflow: hidden;
}
.message .copy-section .grid-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
}
.message .copy-section .grid-wrap .txt-wrap .copy-ttl {
  font-size: clamp(30px, 3.8888888889vw, 56px);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 56px;
}
.message .copy-section .grid-wrap .txt-wrap .sec-txt {
  font-size: 20px;
  line-height: 1.9;
}
.message .copy-section .grid-wrap .txt-wrap .sec-txt + .sec-txt {
  margin-top: 40px;
}
.message .copy-section .grid-wrap .img-wrap {
  width: clamp(400px, 35.3472222222vw, 509px);
  position: relative;
}
.message .copy-section .grid-wrap .img-wrap .img {
  position: absolute;
  border-radius: 40px;
  overflow: hidden;
}
.message .copy-section .grid-wrap .img-wrap .img > img {
  display: block;
}
.message .copy-section .grid-wrap .img-wrap .img:first-child {
  width: 59.5%;
  top: 0;
  left: 21px;
}
.message .copy-section .grid-wrap .img-wrap .img:nth-child(2) {
  width: 38.7%;
  top: 308px;
  right: 0;
}
.message .copy-section .grid-wrap .img-wrap .img:nth-child(3) {
  width: 44.6%;
  bottom: 269px;
  left: 0;
}
.message .copy-section .grid-wrap .img-wrap .img:nth-child(4) {
  width: 53.8%;
  bottom: 0;
  right: 20px;
}
.message .copy-section .logo-wrap {
  margin-top: 116px;
  max-width: 454px;
  width: 100%;
  margin-inline: auto;
}
.message .copy-section .logo-wrap .img {
  width: 100%;
}
.message .copy-section .logo-wrap .en {
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
  margin-top: 40px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  color: #0068B7;
}
.message .message-section .message-list {
  margin-top: 100px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 7.5vw;
     -moz-column-gap: 7.5vw;
          column-gap: 7.5vw;
  row-gap: 60px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.message .message-section .message-list > li {
  width: calc((100% - 7.5vw) / 2);
}
.message .message-section .message-list > li .top {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}
.message .message-section .message-list > li .top .txt {
  display: block;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 35px;
  position: relative;
}
.message .message-section .message-list > li .top .txt::before, .message .message-section .message-list > li .top .txt::after {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 1px;
  height: 70px;
  bottom: 0;
}
.message .message-section .message-list > li .top .txt::before {
  left: 17px;
  rotate: -30deg;
}
.message .message-section .message-list > li .top .txt::after {
  right: 17px;
  rotate: 30deg;
}
.message .message-section .message-list > li .cont {
  margin-top: 24px;
  position: relative;
  padding-top: 46px;
}
.message .message-section .message-list > li .cont::before {
  content: "";
  position: absolute;
  background: #0068B7;
  display: block;
  width: 100%;
  height: 46px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 30px 30px 0 30px;
}
.message .message-section .message-list > li .cont .pro-wrap {
  padding-right: clamp(30px, 4.8611111111vw, 70px);
  position: relative;
}
.message .message-section .message-list > li .cont .pro-wrap::before {
  content: "";
  position: absolute;
  background: #0068B7;
  display: block;
  width: 50%;
  height: calc(100% + 2px);
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.message .message-section .message-list > li .cont .pro-wrap .white {
  background: #fff;
  padding-top: 15px;
  padding-right: 36px;
  padding-bottom: 15px;
  padding-left: clamp(20px, 2.7777777778vw, 40px);
  border-radius: 0 30px 30px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  position: relative;
  z-index: 1;
}
.message .message-section .message-list > li .cont .pro-wrap .white .left {
  padding-right: clamp(6px, 1.1111111111vw, 16px);
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.message .message-section .message-list > li .cont .pro-wrap .white .left .name {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.message .message-section .message-list > li .cont .pro-wrap .white .left .post {
  font-weight: 300;
  line-height: 1.6;
}
.message .message-section .message-list > li .cont .pro-wrap .white .right {
  padding-left: clamp(6px, 1.1111111111vw, 16px);
  position: relative;
}
.message .message-section .message-list > li .cont .pro-wrap .white .right::before {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 1px;
  height: 90%;
  min-height: 33px;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.message .message-section .message-list > li .cont .pro-wrap .white .right .hobby {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 300;
}
.message .message-section .message-list > li .cont .pro-wrap .white .right .hobby .lead {
  font-weight: 500;
}
.message .message-section .message-list > li .cont .blue-wrap {
  background: #0068B7;
  border-radius: 30px 0 30px 30px;
  padding-block: 43px 40px;
  padding-inline: clamp(20px, 2.7777777778vw, 40px);
  color: #fff;
}
.message .message-section .message-list > li .cont .blue-wrap .ttl {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  display: block;
  padding-bottom: 13px;
  position: relative;
}
.message .message-section .message-list > li .cont .blue-wrap .ttl::before {
  content: "";
  position: absolute;
  background: #fff;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.message .message-section .message-list > li .cont .blue-wrap .txt {
  margin-top: 13px;
  font-weight: 300;
  line-height: 1.8;
  text-align: justify;
}

/* -----------------------------------------------
* movie gallery Module
* movie galleryページ用
-------------------------------------------------- */
.p-movie-gallery .movie-section {
  margin-block: 140px 170px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: min(80px, 5.5555555556vw) min(68px, 4.7222222222vw);
}
.p-movie-gallery .movie-tag {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 10px;
}
.p-movie-gallery .movie-tag > li {
  padding: 7px 16px 10px;
  min-width: 138px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  text-align: center;
  background-color: #dfdfdf;
  border-radius: 100px;
}
.p-movie-gallery .movie-ttl {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.p-movie-gallery .movie-ttl {
  margin-block: 35px 20px;
}
.p-movie-gallery .movie-wrap {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
}
.p-movie-gallery .movie-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background: url("../img/movie-gallery/ico-play.svg") no-repeat center/contain;
}
.p-movie-gallery .movie-wrap:focus-visible > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-movie-gallery .movie-wrap > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.p-movie-gallery .movie-txt {
  margin-top: 10px;
}
.p-movie-gallery .modal-block {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 101;
  position: fixed;
  padding-inline: 40px;
  max-width: 848px;
  height: auto;
  aspect-ratio: 16/9;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.p-movie-gallery .modal-block.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.p-movie-gallery .modal-block .close-btn {
  position: relative;
  display: block;
  margin-left: auto;
  margin-bottom: 23px;
  padding-top: 55px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.p-movie-gallery .modal-block .close-btn > span::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.p-movie-gallery .modal-block .close-btn:focus-visible > span::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.p-movie-gallery .modal-block .close-btn::before, .p-movie-gallery .modal-block .close-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 1px;
  height: 52px;
  background-color: #fff;
}
.p-movie-gallery .modal-block .close-btn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.p-movie-gallery .modal-block .close-btn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.p-movie-gallery .modal-block .video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.p-movie-gallery .modal-block .video-wrap > iframe {
  width: 100%;
  height: 100%;
}
.p-movie-gallery .modal-bg {
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.p-movie-gallery .modal-bg.is-open {
  opacity: 1;
  pointer-events: all;
}

/* -----------------------------------------------
* overview Module
* overviewページ用
-------------------------------------------------- */
.overview .intro-section {
  padding-top: 140px;
}
.overview .intro-section .sec-txt {
  font-weight: 300;
  line-height: 1.8;
}
.overview .intro-section .sec-txt + .sec-txt {
  margin-top: 35px;
}
.overview .intro-section .sec-txt:last-child {
  margin-bottom: 140px;
}
.overview .intro-section .overview-splide .splide__slide .img {
  width: 100%;
}
.overview .intro-section .overview-splide .splide__toggle {
  display: block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  position: absolute;
  right: 20px;
  bottom: 20px;
  background: #fff;
}
.overview .comp-section {
  padding-bottom: 200px;
}
.overview .comp-section .white {
  background: #fff;
  padding-block: 80px 115px;
  padding-inline: clamp(30px, 6.4583333333vw, 93px);
  border-radius: 40px;
}
.overview .comp-section .white .comp-table {
  width: 100%;
  margin-top: 40px;
}
.overview .comp-section .white .comp-table tr {
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
}
.overview .comp-section .white .comp-table tr th,
.overview .comp-section .white .comp-table tr td {
  padding-block: 30px;
}
.overview .comp-section .white .comp-table tr th {
  vertical-align: top;
  text-align: start;
  font-weight: 400;
  line-height: 1.8;
  width: clamp(180px, 17.1527777778vw, 247px);
}
.overview .comp-section .white .comp-table tr td {
  font-weight: 300;
  line-height: 1.8;
}
.overview .comp-section .base-wrap {
  padding-top: 140px;
  padding-bottom: 140px;
  border-bottom: 1px solid #bfbfbf;
}
.overview .comp-section .base-wrap .base-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 35px;
  margin-top: 40px;
}
.overview .comp-section .base-wrap .base-list > li {
  width: calc((100% - 35px) / 2);
}
.overview .comp-section .base-wrap .base-list > li .blue-box {
  background: #0068B7;
  border-radius: 30px 30px 0 0;
  color: #fff;
  padding-block: 24px 21px;
  padding-inline: 40px 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.overview .comp-section .base-wrap .base-list > li .blue-box .ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
}
.overview .comp-section .base-wrap .base-list > li .blue-box .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(4px, 0.6944444444vw, 10px);
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.overview .comp-section .base-wrap .base-list > li .blue-box .tag-list > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 100px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.overview .comp-section .base-wrap .base-list > li .blue-box .tag-list > li .txt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}
.overview .comp-section .base-wrap .base-list > li .white-box {
  background: #fff;
  padding: 20px 40px 30px;
  border-radius: 0 0 30px 30px;
  min-height: 112px;
}
.overview .comp-section .base-wrap .base-list > li .white-box > .txt {
  line-height: 1.8;
}
.overview .comp-section .area-wrap {
  padding-top: 140px;
}
.overview .comp-section .area-wrap .sec-txt {
  display: block;
  margin-top: 30px;
  line-height: 1.8;
  text-align: justify;
}
.overview .comp-section .area-wrap .area-list {
  margin-top: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
.overview .comp-section .area-wrap .area-list > li {
  width: calc((100% - 35px) / 2);
  background: #fff;
  border-radius: 40px;
  position: relative;
  padding-block: 44px;
  padding-inline: clamp(20px, 4.6527777778vw, 67px);
}
.overview .comp-section .area-wrap .area-list > li .num {
  position: absolute;
  font-size: 64px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #0068B7;
  left: 32px;
  top: -30px;
}
.overview .comp-section .area-wrap .area-list > li .img {
  margin-top: 40px;
  width: 100%;
  margin-inline: auto;
}
.overview .comp-section .area-wrap .area-list > li:first-child .img {
  max-width: 139px;
}
.overview .comp-section .area-wrap .area-list > li:nth-child(2) .img {
  max-width: 123px;
}
.overview .comp-section .area-wrap .area-list > li .txt {
  margin-top: 30px;
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}
.overview .comp-section .ex-wrap {
  padding-top: 150px;
}
.overview .comp-section .ex-wrap .ex-list {
  margin-top: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
}
.overview .comp-section .ex-wrap .ex-list > li {
  width: calc((100% - 35px) / 2);
}
.overview .comp-section .ex-wrap .ex-list > li .ttl {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.overview .comp-section .ex-wrap .ex-list > li .img {
  margin-top: 30px;
  margin-bottom: 50px;
  width: 100%;
}
.overview .comp-section .ex-wrap .ex-list > li .img > img {
  border-radius: 30px;
}
.overview .comp-section .ex-wrap .ex-list > li .cont {
  position: relative;
  padding-left: clamp(15px, 2.5vw, 36px);
}
.overview .comp-section .ex-wrap .ex-list > li .cont + .cont {
  margin-top: 46px;
}
.overview .comp-section .ex-wrap .ex-list > li .cont::before {
  content: "";
  position: absolute;
  background: #0068B7;
  display: block;
  width: 10px;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.overview .comp-section .ex-wrap .ex-list > li .cont .inn-ttl {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  padding-bottom: 16px;
  border-bottom: 1px solid #bfbfbf;
}
.overview .comp-section .ex-wrap .ex-list > li .cont .flex-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 6.7361111111vw;
     -moz-column-gap: 6.7361111111vw;
          column-gap: 6.7361111111vw;
  row-gap: 10px;
}
.overview .comp-section .ex-wrap .ex-list > li .cont .inn-list {
  margin-top: 20px;
}
.overview .comp-section .ex-wrap .ex-list > li .cont .inn-list > li {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 18px;
}
.overview .comp-section .ex-wrap .ex-list > li .cont .inn-list > li .lead {
  line-height: 1.8;
  position: relative;
  padding-left: 16px;
  min-width: 111px;
}
.overview .comp-section .ex-wrap .ex-list > li .cont .inn-list > li .lead::before {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.overview .pro-section {
  padding-top: 100px;
}
.overview .pro-section .our-wrap {
  padding-top: 100px;
  padding-bottom: 200px;
  border-bottom: 1px solid #bfbfbf;
}
.overview .pro-section .our-wrap .our-list {
  margin-top: 50px;
}
.overview .pro-section .our-wrap .our-list > li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(20px, 4.6527777778vw, 67px);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.overview .pro-section .our-wrap .our-list > li.reverse {
  grid-template-columns: 1fr auto;
}
.overview .pro-section .our-wrap .our-list > li.reverse .txt-wrap {
  grid-area: 1/1/2/2;
}
.overview .pro-section .our-wrap .our-list > li.reverse .img {
  grid-area: 1/2/2/3;
}
.overview .pro-section .our-wrap .our-list > li.border img {
  border: 1px solid #bfbfbf;
}
.overview .pro-section .our-wrap .our-list > li .img {
  width: clamp(350px, 37.9166666667vw, 546px);
}
.overview .pro-section .our-wrap .our-list > li .img > img {
  border-radius: 40px;
}
.overview .pro-section .our-wrap .our-list > li .txt-wrap .txt {
  margin-top: 25px;
  line-height: 1.8;
  text-align: justify;
}
.overview .pro-section .our-wrap .our-list > li + li {
  margin-top: 80px;
}
.overview .pro-section .num-wrap {
  padding-top: 200px;
}
.overview .pro-section .num-wrap .num-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(6, auto);
  gap: 36px;
  margin-top: 50px;
}
.overview .pro-section .num-wrap .num-list > li {
  background: #F8F6F4;
  border-radius: 40px;
  padding-block: 26px;
  padding-inline: clamp(20px, 3.2638888889vw, 47px);
}
.overview .pro-section .num-wrap .num-list > li .c-ttl03 {
  background: #fff;
  border-radius: 20px;
  padding-block: 10px;
  text-align: center;
}
.overview .pro-section .num-wrap .num-list > li .note {
  margin-top: 12px;
  font-size: 12px;
  line-height: 1.6;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.overview .pro-section .num-wrap .num-list > li .note::before {
  content: "※";
}
.overview .pro-section .num-wrap .num-list > li .note + .cont {
  margin-top: 1px;
}
.overview .pro-section .num-wrap .num-list > li .cont {
  position: relative;
}
.overview .pro-section .num-wrap .num-list > li .cont .ico {
  position: absolute;
}
.overview .pro-section .num-wrap .num-list > li .cont .num {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.04em;
  font-family: "Montserrat", sans-serif;
  color: #0068B7;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.overview .pro-section .num-wrap .num-list > li .cont .small {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
}
.overview .pro-section .num-wrap .num-list > li .cont .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.overview .pro-section .num-wrap .num-list > li .cont .lead {
  font-size: 18px;
  line-height: 1.8;
  font-weight: 500;
}
.overview .pro-section .num-wrap .num-list > li .cont .txt {
  font-size: 12px;
  line-height: 1.6;
  text-align: center;
}
.overview .pro-section .num-wrap .num-list > li .cont .graph-txt-box {
  position: absolute;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.overview .pro-section .num-wrap .num-list > li .cont .graph-txt-box .num {
  font-size: 50px;
  line-height: 1;
}
.overview .pro-section .num-wrap .num-list > li .cont .graph-txt-box.small .lead {
  font-size: 16px;
  font-weight: 300;
}
.overview .pro-section .num-wrap .num-list > li .cont .graph-txt-box.small .num {
  font-size: 30px;
}
.overview .pro-section .num-wrap .num-list > li .cont .graph-txt-box.small .num .small {
  font-size: 20px;
}
.overview .pro-section .num-wrap .num-list > li .cont .graph-txt-box::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
}
.overview .pro-section .num-wrap .num-list > li .cont .inn-num-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.overview .pro-section .num-wrap .num-list > li .cont .inn-num-wrap .num {
  line-height: 1;
}
.overview .pro-section .num-wrap .num-list > li .cont .inn-num-wrap.start {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.overview .pro-section .num-wrap .num-list > li .cont .num-note {
  font-size: 12px;
  line-height: 1.6;
}
.overview .pro-section .num-wrap .num-list > li:first-child {
  grid-area: 1/1/2/2;
}
.overview .pro-section .num-wrap .num-list > li:first-child .cont {
  padding-left: clamp(50px, 8.3333333333vw, 120px);
}
.overview .pro-section .num-wrap .num-list > li:first-child .cont .ico {
  top: 17px;
  left: 13px;
  width: clamp(36px, 4.7916666667vw, 69px);
}
.overview .pro-section .num-wrap .num-list > li:nth-child(2) {
  grid-area: 1/2/2/3;
  padding-bottom: 34px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(2) .cont {
  padding-left: clamp(50px, 4.2361111111vw, 62px);
  margin-top: 19px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(2) .cont .ico {
  top: 19px;
  left: -11px;
  width: clamp(30px, 4.7916666667vw, 69px);
}
.overview .pro-section .num-wrap .num-list > li:nth-child(2) .cont .flex-box {
  gap: 36px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(2) .cont .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(2) .cont .inn .num {
  line-height: 1;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) {
  grid-area: 2/1/3/3;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont {
  padding-left: clamp(70px, 10.8333333333vw, 156px);
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .ico {
  top: 87px;
  left: 19px;
  width: clamp(40px, 7.2916666667vw, 105px);
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 2.5vw, 36px);
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 842px;
  margin: auto;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .num {
  font-size: 42px;
  line-height: 1.2;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .num .small {
  font-size: 24px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .age {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 10px;
  text-align: center;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .graph {
  position: relative;
  height: 77px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .graph::before, .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .graph::after {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  left: 0;
  right: 0;
  margin: auto;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .graph::before {
  width: 1px;
  top: 0;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .graph::after {
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .graph .rod {
  width: clamp(60px, 6.25vw, 90px);
  background: #0068B7;
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
}
@-webkit-keyframes rod_anim {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
@keyframes rod_anim {
  0% {
    -webkit-transform: scaleY(0);
            transform: scaleY(0);
  }
  100% {
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
  }
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .graph .rod.is-animated {
  -webkit-animation: rod_anim 1s ease-in-out forwards;
          animation: rod_anim 1s ease-in-out forwards;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .graph .rod::before {
  content: "";
  position: absolute;
  background: #bfbfbf;
  display: block;
  width: 250%;
  height: 2px;
  left: -24px;
  bottom: -2px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:first-child .graph::before {
  top: 7px;
  height: 63px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:first-child .graph::after {
  top: 67px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:first-child .graph .rod {
  height: 1.5px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(2) .graph::before {
  top: -2px;
  height: 34px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(2) .graph::after {
  top: 28px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(2) .graph .rod {
  height: 39.5px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(3) .graph::before {
  top: -2px;
  height: 20px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(3) .graph::after {
  top: 14px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(3) .graph .rod {
  height: 54px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(4) .graph::before {
  top: -2px;
  height: 7px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(4) .graph::after {
  top: 2px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(4) .graph .rod {
  height: 67px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(5) .graph::before {
  top: -2px;
  height: 29px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(5) .graph::after {
  top: 24px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(5) .graph .rod {
  height: 44.3px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(6) .graph::before {
  top: -2px;
  height: 62px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(6) .graph::after {
  top: 57px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(6) .graph .rod {
  height: 11px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(6) .graph .rod::before {
  left: 0;
  width: 120%;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) {
  grid-area: 3/1/4/2;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont {
  padding-block: 68px 42px;
  position: relative;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:first-child {
  top: 27px;
  right: 11px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:first-child::before {
  bottom: -63px;
  width: 150px;
  height: 67px;
  left: -18px;
  background: url("../img/overview/graph-border01.svg") no-repeat center/contain;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(2) {
  top: 130px;
  left: 2px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(2)::before {
  bottom: -11px;
  width: 160px;
  height: 55px;
  right: -28px;
  background: url("../img/overview/graph-border02.svg") no-repeat center/contain;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(3) {
  top: 2px;
  left: 112px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(3)::before {
  bottom: -30px;
  width: 95px;
  height: 30px;
  right: -27px;
  background: url("../img/overview/graph-border03.svg") no-repeat center/contain;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph {
  width: 188px;
  height: 188px;
  margin: auto;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph circle {
  fill: none;
  stroke-width: 46px;
  stroke-linecap: butt;
  stroke-dasharray: 0 100;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph circle:first-child {
  stroke: #0068B7;
  stroke-dashoffset: 0;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph circle:nth-child(2) {
  stroke: rgba(0, 104, 183, 0.5);
  stroke-dashoffset: -53.9;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph circle:nth-child(3) {
  stroke: #99B8D0;
  stroke-dashoffset: -91.6;
}
@-webkit-keyframes arc1 {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: 53.9 46.1;
  }
}
@keyframes arc1 {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: 53.9 46.1;
  }
}
@-webkit-keyframes arc2 {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: 37.7 62.3;
  }
}
@keyframes arc2 {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: 37.7 62.3;
  }
}
@-webkit-keyframes arc3 {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: 8.4 91.6;
  }
}
@keyframes arc3 {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: 8.4 91.6;
  }
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph.is-animated circle:first-child {
  -webkit-animation: arc1 1s ease-in-out forwards;
          animation: arc1 1s ease-in-out forwards;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph.is-animated circle:nth-child(2) {
  -webkit-animation: arc2 1s 0.25s ease-in-out forwards;
          animation: arc2 1s 0.25s ease-in-out forwards;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph.is-animated circle:nth-child(3) {
  -webkit-animation: arc3 1s 0.5s ease-in-out forwards;
          animation: arc3 1s 0.5s ease-in-out forwards;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) {
  grid-area: 3/2/4/3;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont {
  padding-block: 68px 42px;
  position: relative;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:first-child {
  top: 65px;
  right: 35px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:first-child::before {
  bottom: -43px;
  width: 150px;
  height: 44px;
  left: -49px;
  background: url("../img/overview/graph-border04.svg") no-repeat center/contain;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(2) {
  top: 105px;
  left: 46px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(2)::before {
  bottom: -31px;
  width: 106px;
  height: 57px;
  right: -24px;
  background: url("../img/overview/graph-border05.svg") no-repeat center/contain;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(3) {
  top: 11px;
  left: 105px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(3)::before {
  bottom: -38px;
  width: 85px;
  height: 40px;
  right: -30px;
  background: url("../img/overview/graph-border06.svg") no-repeat center/contain;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph {
  width: 188px;
  height: 188px;
  margin: auto;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph svg {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph circle {
  fill: none;
  stroke-width: 46px;
  stroke-linecap: butt;
  stroke-dasharray: 0 100;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph circle:first-child {
  stroke: #0068B7;
  stroke-dashoffset: 0;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph circle:nth-child(2) {
  stroke: rgba(0, 104, 183, 0.5);
  stroke-dashoffset: -65;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph circle:nth-child(3) {
  stroke: #99B8D0;
  stroke-dashoffset: -79;
}
@-webkit-keyframes arc4 {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: 65 35;
  }
}
@keyframes arc4 {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: 65 35;
  }
}
@-webkit-keyframes arc5 {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: 14 86;
  }
}
@keyframes arc5 {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: 14 86;
  }
}
@-webkit-keyframes arc6 {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: 21 79;
  }
}
@keyframes arc6 {
  from {
    stroke-dasharray: 0 100;
  }
  to {
    stroke-dasharray: 21 79;
  }
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph.is-animated circle:first-child {
  -webkit-animation: arc4 1s ease-in-out forwards;
          animation: arc4 1s ease-in-out forwards;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph.is-animated circle:nth-child(2) {
  -webkit-animation: arc5 1s 0.25s ease-in-out forwards;
          animation: arc5 1s 0.25s ease-in-out forwards;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph.is-animated circle:nth-child(3) {
  -webkit-animation: arc6 1s 0.5s ease-in-out forwards;
          animation: arc6 1s 0.5s ease-in-out forwards;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(6) {
  grid-area: 4/1/5/2;
  padding-bottom: 43px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(6) .cont {
  padding-left: clamp(50px, 7.6388888889vw, 110px);
  margin-top: 1px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(6) .cont .ico {
  top: 18px;
  left: 9px;
  width: clamp(30px, 4.375vw, 63px);
}
.overview .pro-section .num-wrap .num-list > li:nth-child(6) .cont .flex-box {
  gap: 11px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(6) .cont .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(6) .cont .inn .num {
  line-height: 1;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(7) {
  grid-area: 4/2/5/3;
  padding-bottom: 63px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(7) .cont {
  padding-left: clamp(60px, 9.0277777778vw, 130px);
  margin-top: 28px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(7) .cont .ico {
  top: 25px;
  left: 0;
  width: clamp(40px, 5.7638888889vw, 83px);
}
.overview .pro-section .num-wrap .num-list > li:nth-child(7) .cont .num {
  line-height: 1;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(8) {
  grid-area: 5/1/6/2;
  padding-bottom: 34px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(8) .cont {
  padding-left: clamp(60px, 9.7222222222vw, 140px);
  margin-top: 21px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(8) .cont .ico {
  top: -3px;
  left: 9px;
  width: clamp(40px, 4.6527777778vw, 67px);
}
.overview .pro-section .num-wrap .num-list > li:nth-child(8) .cont .num {
  line-height: 1.2;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(8) .cont .num-note {
  margin-top: 5px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(9) {
  grid-area: 5/2/6/3;
  padding-bottom: 60px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(9) .cont {
  padding-left: clamp(60px, 10.5555555556vw, 152px);
  margin-top: 30px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(9) .cont .ico {
  top: 26px;
  left: 6px;
  width: clamp(40px, 5vw, 72px);
}
.overview .pro-section .num-wrap .num-list > li:nth-child(10) {
  grid-area: 6/1/7/2;
  padding-bottom: 50px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(10) .cont {
  padding-left: clamp(70px, 11.25vw, 162px);
  margin-top: 10px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(10) .cont .ico {
  top: 0;
  left: 17.5px;
  width: clamp(40px, 3.5416666667vw, 51px);
}
.overview .pro-section .num-wrap .num-list > li:nth-child(11) {
  grid-area: 6/2/7/3;
  padding-bottom: 50px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(11) .cont {
  padding-left: clamp(70px, 11.5972222222vw, 167px);
  margin-top: 10px;
}
.overview .pro-section .num-wrap .num-list > li:nth-child(11) .cont .ico {
  top: 8px;
  left: 6px;
  width: clamp(40px, 5vw, 72px);
}

/* -----------------------------------------------
* job Module
* jobページ用
-------------------------------------------------- */
.p-job .flow-section {
  padding-block: 138px;
  border-bottom: solid 1px #dfdfdf;
}
.p-job .flow-ttl {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.p-job .flow-ttl {
  margin-bottom: 20px;
}
.p-job .flow-txt {
  text-align: justify;
}
.p-job .flow-diag-wrap {
  margin-top: 50px;
}
.p-job .job-section .c-link-list {
  margin-top: 62px;
}
.p-job .job-section + .job-section {
  margin-top: 205px;
}
.p-job .job-ttl-block {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}
.p-job .flow-tag {
  display: block;
  padding-block: 5px 8px;
  width: 150px;
  text-align: center;
  color: #fff;
  background: #0068B7;
  border-radius: 50px;
}
.p-job .job-ttl {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.p-job .job-img {
  margin-top: 30px;
  border-radius: 40px;
  overflow: hidden;
}
.p-job .job-desc {
  margin-top: 30px;
  text-align: justify;
}
.p-job .skill-block {
  margin-top: 60px;
}
.p-job .partner-block {
  margin-top: 50px;
}
.p-job .skill-ttl, .p-job .partner-ttl {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.p-job .skill-txt {
  margin-top: 10px;
}
.p-job .skill-table-wrap {
  margin-top: 20px;
  border: solid 1px #dfdfdf;
  border-radius: 20px;
  overflow: hidden;
}
.p-job .skill-table-wrap01 {
  padding: 30px 42px 20px;
}
.p-job .skill-table {
  width: 100%;
}
.p-job .skill-table thead th {
  padding-bottom: 16px;
  text-align: left;
  font-weight: 500;
}
.p-job .skill-table thead th span {
  padding: 6px 16px 7px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  background: #000;
  border-radius: 100px;
}
.p-job .skill-table tbody th {
  font-weight: 500;
}
.p-job .skill-table tbody td {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  letter-spacing: 0;
}
.p-job .skill-table01 thead th:last-child {
  width: 80px;
}
.p-job .skill-table01 tbody tr:first-child td {
  padding-top: 7px;
}
.p-job .skill-table01 tbody td:last-child {
  text-align: center;
}
.p-job .skill-table01 tbody tr:last-child td::after {
  content: none;
}
.p-job .skill-table02 tbody th, .p-job .skill-table02 tbody td {
  padding: 24px 17px;
  position: relative;
}
.p-job .skill-table02 tbody th::after, .p-job .skill-table02 tbody td::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 17px;
  right: 17px;
  height: 1px;
  background: #dfdfdf;
}
.p-job .skill-table02 tbody tr:last-child th::after, .p-job .skill-table02 tbody tr:last-child td::after {
  content: none;
}
.p-job .skill-table02 tbody th {
  width: 17%;
  text-align: left;
  background-color: #F8F6F4;
}
.p-job .skill-table03 th, .p-job .skill-table03 td {
  padding-inline: 17px;
}
.p-job .skill-table03 thead td {
  background: #F8F6F4;
}
.p-job .skill-table03 thead th {
  padding-top: 30px;
}
.p-job .skill-table03 thead th:last-child {
  padding-inline: 0;
  width: 80px;
  text-align: center;
}
.p-job .skill-table03 tbody .group-ttl, .p-job .skill-table03 tbody .group-end {
  position: relative;
  padding-bottom: 24px;
}
.p-job .skill-table03 tbody .group-ttl::after, .p-job .skill-table03 tbody .group-end::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 17px;
  right: 17px;
  height: 1px;
  background: #dfdfdf;
}
.p-job .skill-table03 tbody .group-start {
  padding-top: 24px;
}
.p-job .skill-table03 tbody td:last-child {
  text-align: center;
}
.p-job .skill-table03 tbody td:last-child.group-end::after {
  left: 0;
  right: auto;
  width: 100%;
}
.p-job .skill-table03 tbody td > span {
  display: block;
  width: 100%;
}
.p-job .skill-table03 tbody td > span.group-start {
  padding-top: 24px;
}
.p-job .skill-table03 tbody th {
  width: 17%;
  text-align: left;
  background-color: #F8F6F4;
}
.p-job .skill-table03 tbody tr:last-child td {
  padding-bottom: 24px;
}
.p-job .skill-table-sp .ttl {
  margin-bottom: 12px;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  border-radius: 10px;
  background: #F8F6F4;
}
.p-job .skill-table-sp .skill-content {
  display: grid;
  grid-template-columns: auto 62px;
  gap: 0 6px;
  font-size: 13px;
}
.p-job .skill-table-sp .skill-content + .ttl {
  margin-top: 20px;
  margin-bottom: 0;
}
.p-job .skill-table-sp .skill-content .skill-header {
  padding-bottom: 2px;
}
.p-job .skill-table-sp .skill-content .skill-header > span {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 2;
  border-radius: 50px;
  color: #fff;
  background: #000;
}
.p-job .skill-table-sp .skill-content dt:not(.skill-header), .p-job .skill-table-sp .skill-content dd:not(.skill-header) {
  padding-block: 7px;
  font-weight: 300;
}
.p-job .skill-table-sp .skill-content dt:not(.skill-header):not(.last), .p-job .skill-table-sp .skill-content dd:not(.skill-header):not(.last) {
  border-bottom: solid 1px #dfdfdf;
}
.p-job .skill-table-sp .skill-content dd {
  text-align: center;
}
.p-job .partner-list-wrap {
  margin-top: 15px;
  padding: 28px 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 8.5%;
  border-radius: 20px;
  background: #F8F6F4;
}
.p-job .partner-list > li {
  position: relative;
  padding-left: 16px;
}
.p-job .partner-list > li::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 6px;
  width: 3px;
  height: 3px;
  background: #000;
  border-radius: 50%;
}

/* -----------------------------------------------
* business-field Module
* business-fieldページ用
-------------------------------------------------- */
.field .field-section {
  padding-top: 140px;
  padding-bottom: 200px;
}
.field .field-section .grid-wrap {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: clamp(30px, 4.6527777778vw, 67px);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.field .field-section .grid-wrap .txt-wrap .txt {
  margin-top: 25px;
  text-align: justify;
}
.field .field-section .grid-wrap .img {
  width: clamp(350px, 37.9861111111vw, 547px);
}
.field .field-section .grid-wrap .img > img {
  border-radius: 40px;
}
.field .field-section .gray-box {
  margin-top: 70px;
  border: 1px solid #dfdfdf;
  border-radius: 40px;
  padding-block: 50px 60px;
  padding-inline: clamp(20px, 3.6805555556vw, 53px);
}
.field .field-section .gray-box .c-ttl03 {
  padding-bottom: 24px;
  position: relative;
}
.field .field-section .gray-box .c-ttl03::before, .field .field-section .gray-box .c-ttl03::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  left: 8px;
  bottom: 0;
  margin: auto;
}
.field .field-section .gray-box .c-ttl03::before {
  background: #0068B7;
  width: 149px;
  z-index: 2;
}
.field .field-section .gray-box .c-ttl03::after {
  background: #dfdfdf;
  width: calc(100% - 16px);
  z-index: 1;
}
.field .field-section .gray-box .inn-list {
  margin-top: 26px;
}
.field .field-section .gray-box .inn-list > li {
  position: relative;
  padding-left: 16px;
  font-weight: 300;
}
.field .field-section .gray-box .inn-list > li::before {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  top: 14px;
  left: 6px;
  margin: auto;
}
.field .field-section .gray-box + .grid-wrap {
  margin-top: 160px;
}
.field .field-section .map-wrap {
  margin-top: 200px;
}
.field .field-section .map-wrap .img {
  margin-top: 31px;
  border-radius: 40px;
  overflow: hidden;
  position: relative;
}
.field .field-section .map-wrap .img .txt-box {
  position: absolute;
  right: 3.6805555556vw;
  top: 41px;
  background: #0068B7;
  border-radius: 30px;
  padding-top: clamp(20px, 4.5833333333vw, 66px);
  padding-bottom: clamp(15px, 3.3333333333vw, 48px);
  padding-right: clamp(15px, 3.4722222222vw, 50px);
  padding-left: clamp(10px, 2.5694444444vw, 37px);
  width: clamp(180px, 18.3333333333vw, 264px);
  color: #fff;
}
.field .field-section .map-wrap .img .txt-box .lead {
  font-size: clamp(16px, 1.6666666667vw, 24px);
  margin-left: 6px;
  line-height: 1.5;
}
.field .field-section .map-wrap .img .txt-box .inn-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
  margin-bottom: 25px;
}
.field .field-section .map-wrap .img .txt-box .inn-list > li {
  position: relative;
  font-size: clamp(13px, 1.1111111111vw, 16px);
  padding-left: 16px;
}
.field .field-section .map-wrap .img .txt-box .inn-list > li::before {
  content: "";
  position: absolute;
  background: #fff;
  display: block;
  border-radius: 50%;
  width: 3px;
  height: 3px;
  top: 12px;
  left: 6px;
  margin: auto;
}
.field .field-section .map-wrap .img .txt-box .inn-list + .lead {
  padding-top: 23px;
  border-top: 1px solid #fff;
}

/* -----------------------------------------------
* company-culture Module
* company-cultureページ用
-------------------------------------------------- */
.p-company-culture .motto-section {
  padding-top: 148px;
}
.p-company-culture .motto-ttl-block {
  text-align: center;
}
.p-company-culture .motto-ttl-block .ttl-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 38px;
}
.p-company-culture .motto-ttl-block .ttl {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.p-company-culture .motto-ttl-block .motto {
  font-size: 56px;
  font-weight: bold;
  line-height: 1.4;
}
.p-company-culture .motto-ttl-block .desc {
  margin-top: 40px;
  max-width: 672px;
  margin-inline: auto;
}
.p-company-culture .policy-block {
  margin-top: 140px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px 4%;
}
.p-company-culture .policy-block .policy-wrap {
  padding: 84px 65px 75px;
  background-color: #F8F6F4;
  border-radius: 40px;
}
.p-company-culture .policy-block .policy-ttl {
  position: relative;
  color: #0068B7;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.p-company-culture .policy-block .policy-ttl::before, .p-company-culture .policy-block .policy-ttl::after {
  content: "";
  position: absolute;
}
.p-company-culture .policy-block .policy-ttl::before {
  bottom: -10px;
  width: 30px;
  height: 1px;
  background: #0068B7;
}
.p-company-culture .policy-block .policy-ttl::after {
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 20px;
  width: 136px;
  height: 136px;
}
.p-company-culture .policy-block .policy-ttl.ico01::after {
  background: url("../img/company-culture/ico-policy01.png.webp") no-repeat center/contain;
}
.p-company-culture .policy-block .policy-ttl.ico02::after {
  background: url("../img/company-culture/ico-policy02.png.webp") no-repeat center/contain;
}
.p-company-culture .policy-block .policy-ttl.ico03::after {
  background: url("../img/company-culture/ico-policy03.png.webp") no-repeat center/contain;
}
.p-company-culture .policy-block .policy-ttl.ico04::after {
  background: url("../img/company-culture/ico-policy04.png.webp") no-repeat center/contain;
}
.p-company-culture .policy-block .policy-ttl.ico05::after {
  background: url("../img/company-culture/ico-policy05.png.webp") no-repeat center/contain;
}
.p-company-culture .policy-block .policy-ttl.ico06::after {
  background: url("../img/company-culture/ico-policy06.png.webp") no-repeat center/contain;
}
.p-company-culture .policy-block .policy-desc {
  margin-top: 56px;
}
.p-company-culture .link-block {
  max-width: 850px;
  margin-top: 95px;
  margin-inline: auto;
}
.p-company-culture .img-block {
  margin-block: 200px 300px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, 175px);
  gap: 5% 3%;
}
.p-company-culture .img-block .img-wrap {
  border-radius: 20px;
  overflow: hidden;
}
.p-company-culture .img-block .img-wrap > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* -----------------------------------------------
* interview Module
* interviewページ用
-------------------------------------------------- */
.interview .c-kv-section .inner-block {
  padding-top: 88px;
  min-height: inherit;
}
.interview .keyword-wrap {
  padding-top: 6px;
}
.interview .keyword-wrap .btn-wrap {
  margin-top: 13px;
  padding-top: 30px;
  padding-bottom: 40px;
  border-top: 1px solid #bfbfbf;
  border-bottom: 1px solid #bfbfbf;
}
.interview .keyword-wrap .btn-wrap .cont {
  display: grid;
  grid-template-columns: auto 1fr;
  margin-top: 32px;
  gap: 4px;
}
.interview .keyword-wrap .btn-wrap .cont + .cont {
  margin-top: 40px;
}
.interview .keyword-wrap .btn-wrap .cont .lead {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  min-width: 90px;
  position: relative;
  padding-right: 20px;
  margin-top: 10px;
}
.interview .keyword-wrap .btn-wrap .cont .lead::after {
  position: absolute;
  content: "：";
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.interview .keyword-wrap .btn-wrap .cont .btn-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.interview .keyword-wrap .btn-wrap .cont .btn-list > li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.interview .keyword-wrap .btn-wrap .cont .btn-list > li label {
  pointer-events: all;
}
.interview .keyword-wrap .btn-wrap .cont .btn-list > li label input[type=checkbox]:focus-visible + .tag-btn {
  outline: 2px solid #000; /* フォーカス表示 */
  outline-offset: 2px;
}
.interview .keyword-wrap .btn-wrap .cont .btn-list > li label input[type=checkbox]:checked + .tag-btn {
  background: #0068B7;
  color: #fff;
}
.interview .keyword-wrap .btn-wrap .cont .btn-list > li .tag-btn {
  display: inline-block;
  background: #dfdfdf;
  border-radius: 200px;
  padding: 11px 18px;
  line-height: 1;
  font-size: 16px;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.interview .keyword-wrap .reset-btn {
  margin-top: 20px;
  margin-left: auto;
  padding: 11px 40px;
  border: 1px solid #000;
  border-radius: 200px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.interview .keyword-wrap .reset-btn .en {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.interview .keyword-wrap .reset-btn:focus-visible {
  background: #dfdfdf;
}
.interview .int-list-wrap {
  padding-top: 122px;
  padding-bottom: 210px;
}
.interview .int-list-wrap .c-interview-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  row-gap: 64px;
  -webkit-column-gap: 2.5vw;
     -moz-column-gap: 2.5vw;
          column-gap: 2.5vw;
}
.interview .int-list-wrap .c-interview-list > li {
  width: calc((100% - 5vw) / 3);
}
.interview .int-list-wrap .c-interview-list > li.is-hide {
  display: none;
}
.interview .int-list-wrap .c-interview-list > li.is-more {
  display: none;
}
.interview .int-list-wrap .none-txt {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}
.interview .int-list-wrap .more-btn {
  margin: 66px auto 0;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.interview .int-list-wrap .more-btn:focus-visible {
  border: 1px solid #000;
}
.interview .int-list-wrap .more-btn:focus-visible .txt::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.interview .int-list-wrap .more-btn:focus-visible .c-arrow-btn::before {
  background: #fff;
}
.interview .int-list-wrap .more-btn:focus-visible .c-arrow-btn::after {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.interview .int-list-wrap .more-btn .txt {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding-right: 28px;
  position: relative;
}
.interview .int-list-wrap .more-btn .txt::before {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: calc(100% - 28px);
  height: 1px;
  left: 0;
  bottom: -2px;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.interview .int-list-wrap .more-btn .c-arrow-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  rotate: 90deg;
}
.interview .int-list-wrap .more-btn .c-arrow-btn::before {
  background: #0068B7;
}
.interview .int-list-wrap .more-btn .c-arrow-btn::after {
  background: #0068B7;
}

/* -----------------------------------------------
* schedule Module
* scheduleページ用
-------------------------------------------------- */
.schedule .c-menu-section-wrap {
  padding-bottom: 200px;
}
.schedule .schedule-wrap .schedule-block + .schedule-block {
  margin-top: 200px;
}
.schedule .schedule-wrap .schedule-block .ttl-box {
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 40px;
  overflow: hidden;
}
.schedule .schedule-wrap .schedule-block .ttl-box .txt-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #F8F6F4;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: clamp(20px, 5.1388888889vw, 74px);
  padding-right: clamp(20px, 2.7777777778vw, 40px);
  padding-block: 20px;
}
.schedule .schedule-wrap .schedule-block .ttl-box .txt-wrap .lead-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}
.schedule .schedule-wrap .schedule-block .ttl-box .txt-wrap .lead {
  background: #0068B7;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 5px 8px;
  padding-inline: 10px;
  max-width: 151px;
  width: 100%;
  border-radius: 200px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.schedule .schedule-wrap .schedule-block .ttl-box .txt-wrap .c-ttl02 {
  margin-top: 20px;
}
.schedule .schedule-wrap .schedule-block .ttl-box .img {
  width: clamp(300px, 32.2222222222vw, 464px);
  display: block;
  height: 100%;
}
.schedule .schedule-wrap .schedule-block .note {
  margin-top: 10px;
  font-size: 12px;
  text-align: end;
  display: inline-block;
  width: 100%;
  line-height: 1.6;
}
.schedule .schedule-wrap .schedule-block .table-wrap {
  margin-top: 28px;
}
.schedule .schedule-wrap .schedule-block .table-wrap + .table-wrap {
  margin-top: 38px;
}
.schedule .schedule-wrap .schedule-block .table-wrap .table-box {
  margin-top: 20px;
  border: 1px solid #bfbfbf;
  border-radius: 20px;
  overflow: hidden;
}
.schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table {
  width: 100%;
  border-bottom: 1px solid #bfbfbf;
}
.schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table.light-blue th {
  background: #6FB1E2;
}
.schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table.blue th {
  background: #0068B7;
}
.schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table tr:not(:last-child) th {
  position: relative;
}
.schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table tr:not(:last-child) th::before {
  content: "";
  position: absolute;
  background: #fff;
  display: block;
  width: 1px;
  height: 18px;
  left: 0;
  bottom: -10px;
  right: 0;
  margin: auto;
  z-index: 2;
}
.schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table tr:not(:last-child) td {
  position: relative;
}
.schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table tr:not(:last-child) td::before {
  content: "";
  position: absolute;
  background: #bfbfbf;
  display: block;
  width: calc(100% - 55px);
  height: 1px;
  left: 23px;
  bottom: 0;
}
.schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table th,
.schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table td {
  padding-block: 15px 14px;
  border: none;
}
.schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table th {
  width: 102px;
  color: #fff;
  font-weight: 500;
}
.schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table td {
  padding-inline: 23px 32px;
  font-weight: 500;
}
.schedule .schedule-wrap .schedule-block .table-wrap .table-box .txt {
  display: block;
  padding-block: 24px;
  padding-inline: clamp(15px, 2.7083333333vw, 39px);
  font-weight: 300;
  text-align: justify;
}
.schedule .schedule-wrap .schedule-block .c-link-list {
  margin-top: 30px;
}

/* -----------------------------------------------
* strengths Module
* strengthsページ用
-------------------------------------------------- */
.p-strengths .diff-section {
  margin-top: 140px;
}
.p-strengths .diff-section .lead-txt {
  margin-top: 20px;
  text-align: center;
}
.p-strengths .diff-section .table-wrap {
  margin-top: 40px;
}
.p-strengths .diff-section .diff-table {
  width: 100%;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.p-strengths .diff-section .diff-table .bg {
  display: block;
  text-align: center;
  border-radius: 10px;
}
.p-strengths .diff-section .diff-table th, .p-strengths .diff-section .diff-table td {
  padding-inline: 5px;
}
.p-strengths .diff-section .diff-table th:first-child, .p-strengths .diff-section .diff-table td:first-child {
  padding-left: 0;
}
.p-strengths .diff-section .diff-table th:last-child, .p-strengths .diff-section .diff-table td:last-child {
  padding-right: 0;
}
.p-strengths .diff-section .diff-table th:first-child {
  padding-right: 32px;
}
.p-strengths .diff-section .diff-table thead th:nth-child(2) {
  width: 37.2%;
}
.p-strengths .diff-section .diff-table thead th:nth-child(3) {
  width: 36.8%;
}
.p-strengths .diff-section .diff-table thead th .bg {
  padding-block: 5px;
  color: #fff;
  background-color: #9d9d9d;
}
.p-strengths .diff-section .diff-table thead th:last-child .bg {
  background-color: #0068B7;
}
.p-strengths .diff-section .diff-table tbody th, .p-strengths .diff-section .diff-table tbody td {
  padding-top: 10px;
}
.p-strengths .diff-section .diff-table tbody th:last-child .bg, .p-strengths .diff-section .diff-table tbody td:last-child .bg {
  border-color: #0068B7;
}
.p-strengths .diff-section .diff-table tbody th {
  position: relative;
}
.p-strengths .diff-section .diff-table tbody th::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 6px;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 15px;
  border-color: transparent transparent transparent #9d9d9d;
}
.p-strengths .diff-section .diff-table tbody .bg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 10px;
  height: 116px;
  border: 1px solid #dfdfdf;
}
.p-strengths .diff-section .detail-wrap {
  margin-top: 76px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 35px;
}
.p-strengths .diff-section .detail-child {
  padding: 42px 40px;
  background: #F8F6F4;
  border-radius: 30px;
}
.p-strengths .diff-section .detail-ttl {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.p-strengths .diff-section .detail-ttl {
  color: #0068B7;
  text-align: center;
}
.p-strengths .diff-section .txt-area {
  margin-top: 20px;
  padding: 25px 33px 45px;
}
.p-strengths .hyougo-section {
  margin-top: 160px;
}
.p-strengths .hyougo-section .merit-wrap {
  display: grid;
  grid-template-columns: 1fr 45.5%;
  gap: 8%;
  margin-top: 60px;
  font-weight: 300;
}
.p-strengths .hyougo-section .merit-desc {
  margin-top: 16px;
  text-align: justify;
}
.p-strengths .hyougo-section .merit-block + .merit-block {
  margin-top: 60px;
}
.p-strengths .hyougo-section .merit-block01 {
  grid-area: merit01;
}
.p-strengths .hyougo-section .merit-block02 {
  grid-area: merit02;
}
.p-strengths .hyougo-section .note-wrap {
  font-size: 14px;
}
.p-strengths .hyougo-section .note-ttl {
  margin-top: 20px;
}
.p-strengths .hyougo-section .note-list li {
  position: relative;
  padding-left: 15px;
}
.p-strengths .hyougo-section .note-list li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
}
.p-strengths .hyougo-section .img-wrap {
  width: 370px;
  height: 226px;
  border-radius: 40px;
  overflow: hidden;
}
.p-strengths .hyougo-section .img-wrap > img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-strengths .hyougo-section .img-wrap01 {
  grid-area: img01;
}
.p-strengths .hyougo-section .img-wrap02 {
  margin-left: auto;
  grid-area: img02;
}
.p-strengths .future-section {
  margin-top: 160px;
}
.p-strengths .future-section .future-list {
  margin-top: 60px;
}
.p-strengths .future-section .future-list > li {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
  padding: 38px 43px 38px 50px;
  border-radius: 40px;
  background: #F8F6F4;
}
.p-strengths .future-section .future-list > li + li {
  margin-top: 16px;
}
.p-strengths .future-section .future-list .future-ttl {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.p-strengths .future-section .future-list .future-ttl {
  color: #0068B7;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.p-strengths .future-section .future-list .txt-area {
  padding: 35px 45px;
}
.p-strengths .message-section {
  margin-block: 200px;
}
.p-strengths .message-section .message-block {
  padding: 74px 40px 80px;
  background: #0068B7;
  border-radius: 40px;
}
.p-strengths .message-section .message-block .inn {
  margin-inline: auto;
  max-width: 760px;
}
.p-strengths .message-section .message-ttl {
  position: relative;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.p-strengths .message-section .message-ttl {
  text-align: center;
  color: #fff;
  padding-bottom: 32px;
}
.p-strengths .message-section .message-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
}
.p-strengths .message-section .message-txt {
  margin-top: 30px;
  color: #fff;
  text-align: center;
  font-size: 18px;
}
.p-strengths .diff-section .detail-child .txt-area,
.p-strengths .future-section .future-list li .txt-area {
  border-radius: 20px;
  background-color: #fff;
}
.p-strengths .diff-section .detail-child .txt-area .bold,
.p-strengths .future-section .future-list li .txt-area .bold {
  font-weight: bold;
}

/* -----------------------------------------------
* faq Module
* faqページ用
-------------------------------------------------- */
.p-faq .c-menu-section-wrap {
  padding-block: 148px 200px;
  grid-template-columns: 20% 1fr;
  gap: 6%;
}
.p-faq .c-menu .menu-wrap {
  padding-bottom: 50px;
}
.p-faq .faq-block .faq-section + .faq-section {
  margin-top: 140px;
}
.p-faq .faq-block .faq-list {
  margin-top: 34px;
}
.p-faq .faq-block .qa-item {
  padding: 39px 28px;
  border-top: 1px solid #dfdfdf;
}
.p-faq .faq-block .qa-item:last-child {
  border-bottom: 1px solid #dfdfdf;
}
.p-faq .faq-block .q-txt {
  padding-bottom: 14px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.p-faq .faq-block .a-txt {
  text-align: justify;
}

/* -----------------------------------------------
* voices Module
* voicesページ用
-------------------------------------------------- */
.p-voices .c-menu-section-wrap {
  padding-block: 0px;
  margin-top: 80px;
  grid-template-columns: 1fr;
  gap: 6%;
}
.p-voices .c-menu {
  position: absolute;
  top: 138px;
  bottom: 138px;
}
.p-voices .q-section {
  margin-inline: calc(50% - 50vw);
  padding-inline: calc(50vw - 50%);
  padding-block: 140px 152px;
  background: #F8F6F4;
}
.p-voices .q-section.bg-white {
  background: #fff;
}
.p-voices .q-section.bg-white .comment-block {
  background-color: #F8F6F4;
}
.p-voices .q-section.bg-white .comment-block::after {
  background: #F8F6F4;
}
.p-voices .q-section.bg-white .comment-block .info {
  background: #fff;
}
.p-voices .q-section:last-child {
  padding-bottom: 230px;
}
.p-voices .tag-ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.p-voices .tag-ttl .tag {
  display: inline-block;
  padding: 10px 21px;
  text-align: center;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  background: #0068B7;
  border-radius: 50px;
}
.p-voices .tag-ttl .ttl {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.p-voices .voice-ttl {
  margin-top: 34px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.p-voices .voice-ttl {
  padding-bottom: 18px;
  border-bottom: 1px solid #bfbfbf;
}
.p-voices .voice-area + .voice-area {
  margin-top: 72px;
}
.p-voices .comment-wrap {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5%;
}
.p-voices .comment-block {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 43px 30px;
  background-color: #fff;
  border-radius: 30px;
}
.p-voices .comment-block .txt {
  padding-inline: 8px;
}
.p-voices .comment-block .blue {
  font-weight: bold;
  color: #0068B7;
}
.p-voices .comment-block .info {
  margin-top: 20px;
  display: block;
  padding: 10px 22px;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  background-color: #F8F6F4;
  border-radius: 10px;
}
.p-voices .comment-block::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 58px;
  height: 31px;
  -webkit-clip-path: polygon(100% 0, 0 0, 100% 100%);
          clip-path: polygon(100% 0, 0 0, 100% 100%);
  background: #fff;
}
.p-voices .bg-gray {
  background: #F8F6F4;
}

/* -----------------------------------------------
* interview-detail Module
* interview-detailページ用
-------------------------------------------------- */
.interview-detail .c-kv-section .inner-block {
  min-height: inherit;
  padding-bottom: 40px;
}
.interview-detail .c-kv-section .mv-cont {
  padding-right: 56px;
  position: relative;
}
.interview-detail .c-kv-section .mv-cont img {
  display: block;
  width: 100%;
  border-radius: 0 60px 60px 0;
}
.interview-detail .c-kv-section .mv-cont .white-box {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  width: 45.3%;
  max-width: 627px;
  border-radius: 0 60px 0 0;
  padding-top: clamp(20px, 7.3611111111vw, 106px);
  min-height: clamp(0px, 30.9027777778vw, 445px);
}
.interview-detail .c-kv-section .mv-cont .white-box .inn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 20px;
  max-width: 520px;
  width: 100%;
}
.interview-detail .c-kv-section .mv-cont .white-box .top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 1.3888888889vw, 20px);
}
.interview-detail .c-kv-section .mv-cont .white-box .top .tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(10px, 1.3888888889vw, 20px);
}
.interview-detail .c-kv-section .mv-cont .white-box .top .tag-list > li {
  background: #0068B7;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  line-height: 1;
  border-radius: 200px;
}
.interview-detail .c-kv-section .mv-cont .white-box .top .name.en {
  font-size: clamp(24px, 2.2222222222vw, 32px);
  font-weight: bold;
  line-height: 1;
  color: #000;
  margin-bottom: 0;
}
.interview-detail .c-kv-section .mv-cont .white-box .post {
  margin-top: 16px;
  font-weight: 300;
}
.interview-detail .c-kv-section .mv-cont .white-box .c-ttl02 {
  margin-top: 22px;
  font-size: clamp(24px, 2.2222222222vw, 32px);
  letter-spacing: 0.06em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
.interview-detail .c-kv-section .mv-cont .white-box .box {
  position: absolute;
  display: block;
  width: 60px;
  height: 60px;
  overflow: hidden;
}
.interview-detail .c-kv-section .mv-cont .white-box .box::before {
  content: "";
  position: absolute;
  background: transparent;
  display: block;
  width: 200%;
  height: 200%;
  top: 0;
  left: 0;
  bottom: 60px;
  right: 0;
  margin: auto;
  -webkit-box-shadow: -60px 60px 0 0 #fff;
          box-shadow: -60px 60px 0 0 #fff;
  border-radius: 0 0 0 60px;
}
.interview-detail .c-kv-section .mv-cont .white-box .box.right {
  right: -60px;
  bottom: 0;
}
.interview-detail .c-kv-section .tag-box {
  padding-right: 156px;
  text-align: end;
  margin-top: 30px;
  color: #9d9d9d;
  font-size: 14px;
}
.interview-detail .inner-block.detail-inner {
  padding-inline: 156px;
  max-width: 1440px;
}
.interview-detail .detail-section .detail-cont + .detail-cont {
  margin-top: 100px;
}
.interview-detail .detail-section .detail-cont .q-txt {
  padding: 10px 20px;
  background: #000;
  color: #fff;
  border-radius: 200px;
  font-weight: 500;
  line-height: 1;
  display: inline-block;
}
.interview-detail .detail-section .detail-cont .q-txt + .c-ttl03 {
  margin-top: 20px;
}
.interview-detail .detail-section .detail-cont .c-ttl03 + * {
  margin-top: 20px;
}
.interview-detail .detail-section .detail-cont .txt {
  font-weight: 300;
  text-align: justify;
}
.interview-detail .detail-section .detail-cont .txt + * {
  margin-top: 30px;
}
.interview-detail .detail-section .detail-cont .txt + .img {
  margin-top: 40px;
}
.interview-detail .detail-section .detail-cont .img {
  width: 100%;
}
.interview-detail .detail-section .detail-cont .img > img {
  border-radius: 40px;
  width: 100%;
}
.interview-detail .detail-section .note {
  margin-top: 40px;
  text-align: end;
  font-weight: 300;
}
.interview-detail .detail-section .bottom-img {
  margin-top: 100px;
  margin-right: -156px;
}
.interview-detail .detail-section .bottom-img img {
  border-radius: 40px 0 0 40px;
}
.interview-detail .c-cta-section {
  position: relative;
  padding-bottom: 80px;
}
.interview-detail .c-cta-section .interview-splide {
  margin-top: 40px;
}
.interview-detail .c-cta-section .interview-splide .splide__track .splide__slide > a .top .white {
  background: #F8F6F4;
}
.interview-detail .c-cta-section .interview-splide .splide__track .splide__slide > a .top .white .box::before {
  -webkit-box-shadow: -24px 24px 0 0 #F8F6F4;
          box-shadow: -24px 24px 0 0 #F8F6F4;
}
.interview-detail .c-cta-section .interview-splide .splide__arrows {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding-left: 156px;
  margin-top: 60px;
  padding-bottom: 76px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.interview-detail .c-cta-section .link-box {
  bottom: 159px;
  right: clamp(20px, 10.8333333333vw, 156px);
  max-width: 480px;
  position: absolute;
  width: 100%;
}
.interview-detail .c-cta-section .cta-link {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-block: 15px;
  border-bottom: 1px solid #e4e4e4;
  font-size: 18px;
  font-weight: 500;
}
.interview-detail .c-cta-section .cta-link::before {
  content: "";
  position: absolute;
  background: #CD1B1B;
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.interview-detail .c-cta-section .cta-link:focus-visible::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.interview-detail .c-cta-section .cta-link:focus-visible .c-arrow-btn {
  color: #fff;
}

/* -----------------------------------------------
* technical-skills Module
* technical-skillsページ用
-------------------------------------------------- */
.technical-skills .about-section {
  padding-bottom: 200px;
}
.technical-skills .about-section .sec-txt {
  font-weight: 300;
  text-align: justify;
  margin-top: 20px;
}
.technical-skills .about-section .c-ttl03 {
  margin-top: 40px;
}
.technical-skills .about-section .c-ttl02.mt200 {
  margin-top: 200px;
}
.technical-skills .about-section .about-table {
  width: 100%;
  margin-top: 20px;
  table-layout: fixed;
  border-radius: 30px;
  overflow: hidden;
}
.technical-skills .about-section .about-table tbody,
.technical-skills .about-section .about-table tr,
.technical-skills .about-section .about-table th,
.technical-skills .about-section .about-table td {
  border: none;
}
.technical-skills .about-section .about-table tbody {
  vertical-align: top;
}
.technical-skills .about-section .about-table tr:first-child td,
.technical-skills .about-section .about-table tr:first-child th {
  background: #0068B7;
  padding-block: 17px 15px;
  font-weight: 500;
  color: #fff;
}
.technical-skills .about-section .about-table tr:first-child td {
  width: 5vw;
}
.technical-skills .about-section .about-table tr:first-child th {
  width: calc((100% - 5vw) / 6);
  position: relative;
}
.technical-skills .about-section .about-table tr:first-child th::before {
  content: "";
  position: absolute;
  background: #fff;
  display: block;
  width: 1px;
  height: 62%;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.technical-skills .about-section .about-table tr:nth-child(2) {
  background: #fff;
}
.technical-skills .about-section .about-table tr:nth-child(2) th {
  font-weight: 500;
  line-height: 1.2;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  text-align: start;
}
.technical-skills .about-section .about-table tr:nth-child(2) td {
  padding-top: 15px;
  text-align: start;
  vertical-align: text-top;
  font-size: 14px;
  padding-left: clamp(5px, 1.3888888889vw, 20px);
  padding-right: clamp(5px, 1.1111111111vw, 16px);
  padding-bottom: 37px;
  position: relative;
}
.technical-skills .about-section .about-table tr:nth-child(2) td::before {
  content: "";
  position: absolute;
  background: #bfbfbf;
  display: block;
  width: 1px;
  height: 90%;
  top: 3px;
  left: 0;
}
.technical-skills .about-section .movie-wrap {
  position: relative;
  display: block;
  width: 100%;
  max-width: 746px;
  margin: 20px auto 0;
  cursor: pointer;
  overflow: hidden;
}
.technical-skills .about-section .movie-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background: url("../img/movie-gallery/ico-play.svg") no-repeat center/contain;
}
.technical-skills .about-section .movie-wrap:focus-visible > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.technical-skills .about-section .movie-wrap > img {
  width: 100%;
  height: auto;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.technical-skills .about-section .movie-txt {
  width: 100%;
  max-width: 746px;
  margin: 16px auto 0;
}
.technical-skills .state-section {
  padding-top: 200px;
}
.technical-skills .state-section .c-ttl03 {
  margin-top: 60px;
}
.technical-skills .state-section .c-ttl03 + .img-box {
  margin-top: 20px;
}
.technical-skills .state-section .img-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 38px;
}
.technical-skills .state-section .img-box .img {
  width: calc((100% - 38px) / 2);
  position: relative;
}
.technical-skills .state-section .img-box .img > img {
  border-radius: 10px;
}
.technical-skills .state-section .img-box .img .white {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #fff;
  max-width: 202px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: clamp(10px, 1.7361111111vw, 25px);
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 20px;
  z-index: 2;
  border-radius: 0 20px 0 0;
}
.technical-skills .state-section .img-box .img .white .txt {
  line-height: 1;
  font-weight: 300;
  font-size: 14px;
}
.technical-skills .state-section .img-box + .c-ttl03 {
  margin-top: 80px;
}
.technical-skills .state-section .flex-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 38px;
  margin-top: 80px;
}
.technical-skills .state-section .flex-box .c-ttl03 {
  margin-top: 0;
}
.technical-skills .state-section .flex-box .inn {
  width: calc((100% - 38px) / 2);
}
.technical-skills .state-section .flex-box .inn .img {
  width: 100%;
}
.technical-skills .comment-section {
  padding-top: 200px;
}
.technical-skills .comment-section .c-ttl02 {
  margin-bottom: 43px;
}
.technical-skills .modal-block {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 101;
  position: fixed;
  padding-inline: 40px;
  max-width: 848px;
  height: auto;
  aspect-ratio: 16/9;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.technical-skills .modal-block.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.technical-skills .modal-block .close-btn {
  position: relative;
  display: block;
  margin-left: auto;
  margin-bottom: 23px;
  padding-top: 55px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.technical-skills .modal-block .close-btn > span::before {
  content: "";
  position: absolute;
  background: #fff;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.technical-skills .modal-block .close-btn:focus-visible > span::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.technical-skills .modal-block .close-btn::before, .technical-skills .modal-block .close-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 1px;
  height: 52px;
  background-color: #fff;
}
.technical-skills .modal-block .close-btn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.technical-skills .modal-block .close-btn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.technical-skills .modal-block .video-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.technical-skills .modal-block .video-wrap > iframe {
  width: 100%;
  height: 100%;
  border: none !important;
}
.technical-skills .modal-block .video-wrap .movie-btn {
  background: #fff;
  border-radius: 50%;
  width: 50px;
  display: block;
  aspect-ratio: 1/1;
  height: 50px;
  position: absolute;
  right: 3.5vw;
  bottom: 3.5vw;
  border: 2px solid #fff;
}
.technical-skills .modal-block .video-wrap .movie-btn::before {
  content: "";
  position: absolute;
  background: #000;
  display: block;
  width: 20px;
  height: 20px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  -webkit-mask: url("../img/home/movie-ico_stop.svg") no-repeat center/contain;
          mask: url("../img/home/movie-ico_stop.svg") no-repeat center/contain;
}
.technical-skills .modal-block .video-wrap .movie-btn:focus-visible {
  border-color: #000;
}
.technical-skills .modal-block .video-wrap .movie-btn.play::before {
  -webkit-mask: url("../img/home/movie-ico_play.svg") no-repeat center/contain;
          mask: url("../img/home/movie-ico_play.svg") no-repeat center/contain;
}
.technical-skills .modal-bg {
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.technical-skills .modal-bg.is-open {
  opacity: 1;
  pointer-events: all;
}

/* -----------------------------------------------
* workstyle-benefits Module
* workstyle-benefitsページ用
-------------------------------------------------- */
.p-workstyle .c-menu.bg {
  top: 142px;
}
.p-workstyle .workstyle-section .c-ttl03 {
  margin-top: 34px;
}
.p-workstyle .workstyle-area + .workstyle-area {
  margin-top: 90px;
}
.p-workstyle .workstyle-list {
  margin-top: 20px;
}
.p-workstyle .workstyle-item {
  display: grid;
  grid-template-columns: 26.5% 1fr;
  border-radius: 40px;
  overflow: hidden;
}
.p-workstyle .workstyle-item + .workstyle-item {
  margin-top: 20px;
}
.p-workstyle .workstyle-item .l-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 20px;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.p-workstyle .workstyle-item .l-area {
  background: #0068B7;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.p-workstyle .workstyle-item .ico {
  position: relative;
  display: block;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: #fff;
}
.p-workstyle .workstyle-item .ico::after {
  content: "";
  position: absolute;
  width: 64px;
  height: 64px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-workstyle .workstyle-item .ico.ico-ws01::after {
  background-image: url("../img/workstyle-benefits/ico-ws01.svg");
}
.p-workstyle .workstyle-item .ico.ico-ws02::after {
  background-image: url("../img/workstyle-benefits/ico-ws02.svg");
}
.p-workstyle .workstyle-item .ico.ico-ws03::after {
  background-image: url("../img/workstyle-benefits/ico-ws03.svg");
}
.p-workstyle .workstyle-item .ico.ico-ws04::after {
  background-image: url("../img/workstyle-benefits/ico-ws04.svg");
}
.p-workstyle .workstyle-item .ico.ico-ws05::after {
  background-image: url("../img/workstyle-benefits/ico-ws05.svg");
}
.p-workstyle .workstyle-item .ico.ico-ws06::after {
  background-image: url("../img/workstyle-benefits/ico-ws06.svg");
}
.p-workstyle .workstyle-item .ico.ico-ws07::after {
  background-image: url("../img/workstyle-benefits/ico-ws07.svg");
}
.p-workstyle .workstyle-item .ico.ico-ws08::after {
  background-image: url("../img/workstyle-benefits/ico-ws08.svg");
}
.p-workstyle .workstyle-item .ico.ico-ws09::after {
  background-image: url("../img/workstyle-benefits/ico-ws09.svg");
}
.p-workstyle .workstyle-item .ico.ico-ws10::after {
  background-image: url("../img/workstyle-benefits/ico-ws10.svg");
}
.p-workstyle .workstyle-item .ico.ico-ws11::after {
  background-image: url("../img/workstyle-benefits/ico-ws11.svg");
}
.p-workstyle .workstyle-item .r-area {
  padding: 42px 52px 42px 35px;
  background: #fff;
}
.p-workstyle .workstyle-item .ttl {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.p-workstyle .workstyle-item .txt {
  margin-top: 10px;
  text-align: justify;
  font-weight: 300;
}
.p-workstyle .workstyle-item .note {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 10px;
  position: relative;
}
.p-workstyle .workstyle-item .note::before {
  content: "※";
}
.p-workstyle .workstyle-desc {
  margin-top: 20px;
  text-align: justify;
}
.p-workstyle .diverse-list {
  margin-top: 42px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.p-workstyle .diverse-item {
  padding: 40px 50px;
  color: #fff;
  background: #0068B7;
  border-radius: 40px;
}
.p-workstyle .diverse-item .ico {
  position: relative;
  display: block;
  width: 90px;
  height: 90px;
  margin-inline: auto;
  border-radius: 50%;
  background: #fff;
}
.p-workstyle .diverse-item .ico::after {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.p-workstyle .diverse-item .ico.ico-div01::after {
  background-image: url("../img/workstyle-benefits/ico-div01.png.webp");
}
.p-workstyle .diverse-item .ico.ico-div02::after {
  background-image: url("../img/workstyle-benefits/ico-div02.png.webp");
}
.p-workstyle .diverse-item .ico.ico-div03::after {
  background-image: url("../img/workstyle-benefits/ico-div03.png.webp");
}
.p-workstyle .diverse-item .ico.ico-div04::after {
  background-image: url("../img/workstyle-benefits/ico-div04.png.webp");
}
.p-workstyle .diverse-item .ttl {
  margin-top: 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.p-workstyle .diverse-item .txt {
  margin-top: 12px;
  text-align: justify;
}
.p-workstyle .comment-list {
  margin-top: 30px;
}
.p-workstyle .comment-item {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 28px;
  padding-left: 5px;
}
.p-workstyle .comment-item + .comment-item {
  margin-top: 25px;
}
.p-workstyle .comment-item .l-area {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding-top: 10px;
}
.p-workstyle .comment-item .ico-person {
  display: block;
  width: 85px;
  height: 85px;
  background: url("../img/workstyle-benefits/ico-person.svg") no-repeat center/contain;
}
.p-workstyle .comment-item .r-area {
  position: relative;
  padding: 40px 52px 40px 54px;
  background: #fff;
  border-radius: 40px;
}
.p-workstyle .comment-item .r-area::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 14px 11px 0;
  border-color: transparent #fff transparent transparent;
}
.p-workstyle .comment-item .comment-ttl {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.p-workstyle .comment-item .comment-ttl {
  color: #0068B7;
}
.p-workstyle .comment-item .comment-txt {
  margin-top: 6px;
  text-align: justify;
}
.p-workstyle .benefit-area {
  margin-top: 40px;
}
.p-workstyle .benefit-area + .benefit-area {
  margin-top: 54px;
}
.p-workstyle .benefit-list {
  margin-top: 22px;
  padding: 40px 45px 42px 42px;
  border-radius: 40px;
  background: #F8F6F4;
}
.p-workstyle .benefit-item {
  display: grid;
  grid-template-columns: 243px 1fr;
  gap: 27px;
}
.p-workstyle .benefit-item + .benefit-item {
  margin-top: 26px;
}
.p-workstyle .benefit-item .ttl {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.p-workstyle .benefit-item .ttl > span {
  display: inline-block;
  padding-block: 5px;
  width: 100%;
  background: #0068B7;
  border-radius: 100px;
}
.p-workstyle .benefit-item .ttl .small {
  font-size: 14px;
  line-height: 1;
  font-weight: 300;
}
.p-workstyle .benefit-item .txt {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.p-workstyle .point-list {
  margin-top: 38px;
}
.p-workstyle .point-item {
  display: grid;
  grid-template-columns: 203px 1fr;
  gap: 18px;
  padding: 45px 50px 50px;
  background: #F8F6F4;
  border-radius: 40px;
}
.p-workstyle .point-item + .point-item {
  margin-top: 20px;
}
.p-workstyle .point-item .ttl-area {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.p-workstyle .point-item .ttl {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
}
.p-workstyle .point-item .ttl {
  color: #0068B7;
}
.p-workstyle .point-item .case-area {
  padding-left: 25px;
  border-left: 1px solid #bfbfbf;
}
.p-workstyle .point-item .case-ttl {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.p-workstyle .point-item .case-list {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.p-workstyle .point-item .case-item {
  position: relative;
  padding-left: 50px;
}
.p-workstyle .point-item .case-item::before {
  content: "";
  position: absolute;
  width: 36px;
  height: 36px;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  background: url("../img/workstyle-benefits/ico-person02.svg") no-repeat center/contain;
}
.p-workstyle .point-item .case-item .inn {
  position: relative;
  display: block;
  padding: 10px;
  width: 100%;
  color: #fff;
  font-weight: 500;
  text-align: center;
  background: #0068B7;
  border-radius: 10px;
}
.p-workstyle .point-item .case-item .inn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
  margin: auto 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 8px 6px 0;
  border-color: transparent #0068B7 transparent transparent;
}
.p-workstyle .holiday-wrap {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 58% auto;
  gap: 20px;
  padding: 40px 60px;
  background: #fff;
  border-radius: 40px;
}
.p-workstyle .holiday-list > li {
  position: relative;
  padding-left: 20px;
}
.p-workstyle .holiday-list > li::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  left: 0;
  top: 8px;
  background: #0068B7;
}
.p-workstyle .cert-list {
  margin-top: 45px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.p-workstyle .cert-item {
  padding: 20px 28px 36px;
  border-radius: 30px;
  background: #F8F6F4;
}
.p-workstyle .cert-item.mt {
  padding-top: 14px;
}
.p-workstyle .cert-item .ttl {
  display: grid;
  place-items: center;
  height: 82px;
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
  font-weight: 500;
  gap: 5px;
}
.p-workstyle .cert-item .ttl .small {
  font-size: 12px;
  line-height: 1.6;
}
.p-workstyle .cert-item .img-wrap {
  margin-top: 20px;
  display: grid;
  place-items: center;
  height: 122px;
}
.p-workstyle .cert-item .img-wrap.dark {
  mix-blend-mode: darken;
}
.p-workstyle .cert-item .img-wrap.mt {
  margin-top: 28px;
}

/* -----------------------------------------------
* career-training Module
* career-trainingページ用
-------------------------------------------------- */
.p-career-training .c-menu.bg {
  top: 142px;
}
.p-career-training .p-desc {
  margin-top: 20px;
  text-align: justify;
}
.p-career-training .career-inner {
  margin-top: 20px;
  padding-top: 40px;
}
.p-career-training .career-area + .career-area {
  margin-top: 80px;
}
.p-career-training .diag-block .img-desc {
  margin-top: 50px;
  font-size: 14px;
  font-weight: 300;
  text-align: justify;
}
.p-career-training .training-inner {
  margin-top: 52px;
}
.p-career-training .training-area {
  margin-top: 30px;
}
.p-career-training .training-area + .training-area {
  margin-top: 30px;
}
.p-career-training .training-area .img-ttl {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
.p-career-training .training-area .img-wrap {
  display: grid;
  place-items: center;
}
.p-career-training .point-area {
  margin-top: 60px;
}
.p-career-training .point-block {
  padding: 52px;
  background: #0068B7;
  border-radius: 40px;
}
.p-career-training .point-block + .point-block {
  margin-top: 20px;
}
.p-career-training .point-block .top-area {
  display: grid;
  grid-template-columns: 1fr 100px;
  grid-template-areas: "ttl ico" "txt ico";
  gap: 18px 100px;
  padding-right: 18px;
  color: #fff;
}
.p-career-training .point-block .c-ttl03 {
  grid-area: ttl;
}
.p-career-training .point-block .txt {
  grid-area: txt;
  font-weight: 300;
  text-align: justify;
}
.p-career-training .point-block .ico {
  grid-area: ico;
  position: relative;
  align-self: center;
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #fff;
}
.p-career-training .point-block .ico::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.p-career-training .point-block .ico.ico-skill01::before {
  background-image: url("../img/career-training/ico-skill01.png.webp");
}
.p-career-training .point-block .ico.ico-skill02::before {
  background-image: url("../img/career-training/ico-skill02.png.webp");
}
.p-career-training .point-block .bottom-area {
  margin-top: 22px;
  padding: 18px 30px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  background: #fff;
  border-radius: 10px;
}
.p-career-training .skill-area {
  margin-top: 80px;
}
.p-career-training .skill-desc {
  margin-top: 10px;
}
.p-career-training .skill-block {
  margin-top: 30px;
}
.p-career-training .skill-block + .skill-block {
  margin-top: 40px;
}
.p-career-training .skill-ttl {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
.p-career-training .cat-list-wrap {
  margin-top: 20px;
  padding: 50px 45px;
  background: #fff;
  border-radius: 40px;
}
.p-career-training .cat-item + .cat-item {
  margin-top: 42px;
}
.p-career-training .cat-ttl {
  margin-bottom: 20px;
  padding-block: 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
.p-career-training .cat-ttl {
  color: #fff;
  text-align: center;
  background: #0068B7;
  border-radius: 100px;
}
.p-career-training .skill-list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6%;
}
.p-career-training .skill-list {
  display: grid;
  grid-template-columns: 1fr 50px;
  gap: 10px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 14px;
}
.p-career-training .skill-list dt, .p-career-training .skill-list dd {
  padding-bottom: 4px;
  border-bottom: 1px solid #dfdfdf;
  line-height: 1.2;
}
.p-career-training .skill-list .ttl {
  margin-bottom: 12px;
  padding-bottom: 6px;
  font-weight: bold;
  line-height: 2.1;
  border-color: #000;
}
.p-career-training .note-txt {
  margin-top: 20px;
  font-size: 12px;
  line-height: 1.6;
}

/* -----------------------------------------------
* movie gallery Module
* movie galleryページ用
-------------------------------------------------- */
.p-high-school .req-section {
  padding: 40px 0 0;
}
.p-high-school .req-section .req-item {
  padding-block: 30px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid #dfdfdf;
}
.p-high-school .req-section ul {
  margin-top: 30px;
}
.p-high-school .req-section li {
  position: relative;
  padding-left: 18px;
}
.p-high-school .req-section li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 16px;
  height: 16px;
  background: #000;
  border-radius: 50%;
}
.p-high-school .req-section li.note::before {
  content: "※";
  top: 0px;
  background: none;
  border-radius: none;
}
.p-high-school .video-section {
  padding-top: 140px;
  display: grid;
  grid-template-columns: 344px 1fr;
  gap: 3.5%;
}
.p-high-school .video-section .video-ttl {
  margin-bottom: 18px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.p-high-school .video-section .movie-wrap {
  position: relative;
  display: block;
  width: 100%;
  cursor: pointer;
  overflow: hidden;
}
.p-high-school .video-section .movie-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  background: url("../img/movie-gallery/ico-play.svg") no-repeat center/contain;
}
.p-high-school .video-section .movie-wrap:focus-visible > img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-high-school .video-section .movie-wrap > img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
.p-high-school .video-section .time-txt {
  margin-top: 6px;
}
.p-high-school .download-section {
  padding-top: 65px;
}
.p-high-school .download-section .download-item {
  border: solid 1px #dfdfdf;
  border-radius: 40px;
  padding: 70px 120px 70px 100px;
}
.p-high-school .download-section .download-item + .download-item {
  margin-top: 20px;
}
.p-high-school .download-section .download-ttl {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.5;
}
.p-high-school .download-section .download-txt {
  font-size: 16px;
  font-weight: 400;
  margin-top: 20px;
  line-height: 1.8;
}
.p-high-school .download-section .c-btn01 {
  margin-top: 30px;
  max-width: 364px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-high-school .download-section .img-area {
  text-align: center;
}
.p-high-school .download-section .img-area img {
  max-width: 284px;
}
.p-high-school .recruit-info-cta .entry-section .entry-block {
  padding: 86px 60px;
}
.p-high-school .recruit-info-cta .entry-section .entry-block .txt {
  color: #fff;
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 14px;
  }
  body {
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  #wrapper {
    min-width: 320px;
  }
  .inner-block {
    padding-left: 20px;
    padding-right: 20px;
  }
  .pc {
    display: none !important;
  }
  .c-header > .inner-block {
    padding-block: 15px;
    padding-inline: 20px 16px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-header > .inner-block .logo-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
  }
  .c-header > .inner-block .logo-wrap .logo {
    width: clamp(130px, 41.8666666667vw, 300px);
  }
  .c-header > .inner-block .logo-wrap .site-txt {
    font-size: 10px;
  }
  .c-header > .inner-block .btn-wrap {
    gap: 8px;
  }
  .c-header > .inner-block .btn-wrap .entry-btn {
    max-width: inherit;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 13px 28px;
  }
  .c-header > .inner-block .btn-wrap .entry-btn .en {
    font-size: 13px;
  }
  .c-header > .inner-block .btn-wrap .nav-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
  }
  .c-header > .inner-block .btn-wrap .nav-btn .inn {
    width: 18px;
    height: 13px;
  }
  .header-entry-menu .close-btn-wrap,
  .header-nav-menu .close-btn-wrap {
    padding-top: 16px;
    padding-right: 16px;
  }
  .header-entry-menu .menu-close-btn,
  .header-nav-menu .menu-close-btn {
    width: 40px;
    height: 40px;
    padding: 0;
  }
  .header-entry-menu .menu-close-btn::before, .header-entry-menu .menu-close-btn::after,
  .header-nav-menu .menu-close-btn::before,
  .header-nav-menu .menu-close-btn::after {
    right: 0;
    left: 0;
    width: 18px;
  }
  .header-entry-menu {
    height: calc(100vh - 132px);
    max-height: 829px;
    top: 72px;
  }
  .header-entry-menu .box {
    padding: 40px 10px 60px 10px;
  }
  .header-entry-menu .box .cont.top {
    padding-bottom: 30px;
  }
  .header-entry-menu .box .cont.top .inn {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header-entry-menu .box .cont.middle {
    padding-block: 28px;
  }
  .header-entry-menu .box .cont.middle .txt-wrap {
    margin-bottom: 20px;
  }
  .header-entry-menu .box .cont.bottom {
    padding-top: 29px;
  }
  .header-entry-menu .box .cont.bottom .txt-wrap {
    margin-bottom: 20px;
  }
  .header-entry-menu .box .cont .inn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-inline: clamp(10px, 8vw, 50px);
  }
  .header-entry-menu .box .cont .inn .txt-wrap {
    max-width: inherit;
  }
  .header-entry-menu .box .cont .inn .txt-wrap .rec-ttl {
    font-size: 20px;
  }
  .header-entry-menu .box .cont .inn .txt-wrap .rec-ttl + .txt {
    margin-top: 20px;
  }
  .header-entry-menu .box .cont .inn .txt-wrap .txt {
    font-size: 13px;
  }
  .header-entry-menu .box .cont .inn .inn-btn {
    margin-top: 10px;
    padding: 19px 40px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 67px;
    border-radius: 38px;
  }
  .header-entry-menu .box .cont .inn .inn-btn .txt {
    font-size: 13px;
  }
  .header-entry-menu .box .cont .inn .inn-btn img {
    max-width: 125px;
  }
  .header-entry-menu .box .cont .inn .rec-txt {
    font-size: 13px;
  }
  .header-nav-menu {
    padding-top: 72px;
  }
  .header-nav-menu .box .right .logo-wrap {
    width: 100%;
    gap: 10px;
    max-width: 305px;
    margin-inline: auto;
  }
  .header-nav-menu .box .right .logo-wrap .logo {
    max-width: 305px;
    width: 100%;
  }
  .header-nav-menu .box .right .logo-wrap .site-txt {
    font-size: 13px;
  }
  .header-nav-menu .box .right .insta-link {
    margin-top: 20px;
    padding: 13px 15px;
    gap: 0;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 325px;
    width: 100%;
    margin-inline: auto;
  }
  .header-nav-menu .box .right .insta-link .txt {
    font-size: 13px;
  }
  .c-footer .top-area > .inner-block {
    padding-block: 16px 70px;
  }
  .c-footer .top-area .link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .c-footer .top-area .link-list > .each {
    gap: 0;
  }
  .c-footer .top-area .link-list > .each:last-child .c-nav-acc-box {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .c-footer .top-area .logo-btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-footer .top-area .logo-btn-area {
    margin-top: 80px;
    max-width: 270px;
    margin-inline: auto;
  }
  .c-footer .top-area .logo-btn-area .logo-area {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 14px;
  }
  .c-footer .top-area .logo-btn-area .logo-area .logo-link {
    gap: 14px;
  }
  .c-footer .top-area .logo-btn-area .logo-area .txt {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .c-footer .top-area .logo-btn-area .logo-area .social-link {
    margin-left: auto;
  }
  .c-footer .top-area .logo-btn-area .btn-area .c-btn01 {
    padding-block: 28px;
  }
  .c-footer .top-area .logo-btn-area .btn-area .c-btn01 .txt {
    font-size: 24px;
    letter-spacing: 0.04em;
  }
  .c-footer .bottom-area > .inner-block::before {
    width: calc(100% - 40px);
  }
  .c-footer .bottom-area .contents-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-footer .bottom-area .link-list,
  .c-footer .bottom-area .copyright {
    font-size: 12px;
  }
  .c-footer .bottom-area .link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-footer .bottom-area .copyright {
    font-size: 12px;
  }
  #pagetop {
    right: 10px;
  }
  #pagetop .c-arrow-btn {
    width: 40px;
    height: 40px;
  }
  .c-ttl01 {
    gap: 3px;
    margin-bottom: 30px;
  }
  .c-ttl01:not(.js-anim) .ja {
    font-size: 16px;
  }
  .c-ttl01:not(.js-anim) .en {
    font-size: 48px;
  }
  .c-ttl01.small .ja {
    font-size: 13px;
  }
  .c-ttl01.small .en {
    font-size: 24px;
  }
  .c-ttl01.js-anim .ja {
    font-size: 16px;
  }
  .c-ttl01.js-anim .en {
    font-size: 48px;
  }
  .c-ttl02 {
    font-size: 20px;
  }
  .c-ttl02.sp-center {
    text-align: center;
  }
  .c-ttl02.flex.sp-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-ttl02 .small {
    font-size: 10px;
  }
  .c-ttl03 {
    font-size: 16px;
  }
  .c-ttl03.flex.sp-col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-ttl03 .small {
    font-size: 10px;
  }
  .c-link-txt03::before {
    background: #000;
  }
  .c-nav-acc-box {
    border-top: 1px solid #e4e4e4;
    padding-bottom: 24px;
  }
  .c-nav-acc-box .cat-ttl {
    gap: 8px;
  }
  .c-nav-acc-box .cat-ttl .en {
    font-size: 24px;
    text-align: start;
  }
  .c-nav-acc-box .cat-ttl .ja {
    font-size: 13px;
    text-align: start;
  }
  .c-nav-acc-box .nav-list > li a {
    font-size: 13px;
    line-height: 1;
    padding-block: 9px;
    width: 100%;
  }
  .js-anim-txt span {
    -webkit-transform: translateY(-150%);
            transform: translateY(-150%);
  }
  .js-anim-txt span.is-animated {
    -webkit-animation: anim-txt-sp 1s ease-in-out normal forwards;
            animation: anim-txt-sp 1s ease-in-out normal forwards;
  }
  .c-link-list > li:first-child a {
    border-top: none;
  }
  .c-link-list > li a {
    font-size: 14px;
  }
  .c-breadcrumb {
    padding-inline: 20px;
  }
  .c-breadcrumb li {
    font-size: 10px;
  }
  .c-interview-list > li > a .top {
    border-radius: 17px 17px 17px 0;
  }
  .c-interview-list > li > a .top .blue {
    top: 14px;
    left: clamp(7px, 3.7333333333vw, 14px);
  }
  .c-interview-list > li > a .top .white {
    padding-left: 0;
    padding-right: 20px;
    padding-bottom: 14px;
    padding-top: 25px;
    gap: 6px;
    border-radius: 0 17px 0 0;
    max-width: 220px;
    width: 100%;
  }
  .c-interview-list > li > a .top .white .en {
    font-size: 13px;
    padding: 8px 17px;
  }
  .c-interview-list > li > a .top .white .post {
    font-size: 12px;
    line-height: 1.5;
  }
  .c-interview-list > li > a .top .white .box::before {
    -webkit-box-shadow: -17px 17px 0 0 #fff;
            box-shadow: -17px 17px 0 0 #fff;
    border-radius: 0 0 0 17px;
  }
  .c-interview-list > li > a .bottom {
    margin-top: 15px;
  }
  .c-interview-list > li > a .bottom .txt {
    font-size: 13px;
  }
  .c-comment-wrap {
    gap: 8px;
  }
  .c-comment-wrap + .c-comment-wrap {
    margin-top: 16px;
  }
  .c-comment-wrap .comment {
    padding-left: 11px;
  }
  .c-comment-wrap .comment::before {
    width: 27px;
    height: 24px;
  }
  .c-comment-wrap .comment .inn {
    padding-block: 20px;
    padding-inline: 21px 19px;
    border-radius: 20px;
  }
  .c-comment-wrap .comment .inn .lead {
    letter-spacing: 0.04em;
  }
  .c-comment-wrap .comment .inn .txt {
    font-size: 13px;
  }
  #gdpr-cookie-law {
    font-size: 11px;
    padding-block: 20px;
  }
  #gdpr-cookie-law .gdpr-cookie-law__desc {
    padding-right: 0;
  }
  #gdpr-cookie-law .gdpr-cookie-law__desc .gdpr-cookie-law__link {
    font-size: 11px;
  }
  #gdpr-cookie-law .gdpr-cookie-law__btn--accept {
    font-size: 12px;
    padding: 10px 20px;
  }
  #loading .loading-cont .loading-txt {
    font-size: 30px;
    padding-bottom: 2px;
  }
  .c-btn01 {
    padding: 28px 55px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .c-btn01 .txt {
    font-size: 14px;
  }
  .c-btn01::after {
    right: 30px;
    width: 30px;
    height: 30px;
  }
  .c-btn01::before {
    right: 40px;
    width: 11px;
  }
  .c-btn01.max-393 {
    max-width: 282px;
    margin-inline: auto;
  }
  .c-arrow-btn {
    width: 40px;
    height: 40px;
  }
  .c-text-icon-link .link-txt {
    font-size: 14px;
  }
  .c-section {
    padding-top: 100px;
    padding-bottom: 80px;
  }
  .c-section.bg-gray {
    border-radius: 40px 40px 0 0;
    padding-top: 21px;
  }
  .c-section.bg-gray.no-radius {
    border-radius: 0;
  }
  .c-section.bg-gray.bottom-cta {
    padding-bottom: 120px;
  }
  .c-section.bg-gray.bottom-cta + .c-cta-section {
    margin-top: -40px;
  }
  .c-kv-section {
    padding-top: 0;
  }
  .c-kv-section .kv-ttl .js-anim-txt.en {
    margin-bottom: 0;
    font-size: 14px;
  }
  .c-kv-section .kv-ttl .js-anim-txt.en span {
    min-width: 4px;
  }
  .c-kv-section .kv-ttl .js-anim-txt.ja {
    font-size: 32px;
  }
  .c-kv-section .kv-ttl .js-anim-txt.ja span {
    min-width: 7px;
  }
  .c-kv-section .kv-ttl .js-anim-txt.small {
    font-size: 14px;
    letter-spacing: 0.04em;
  }
  .c-kv-section .kv-txt {
    margin-top: 10px;
    font-size: 13px;
  }
  .c-kv-section .kv-img {
    border-bottom-left-radius: 40px;
  }
  .c-kv-section02 .kv-img-wrap {
    padding-left: 0 !important;
  }
  .c-kv-section02 .kv-img {
    position: relative !important;
  }
  .c-kv-section02 .kv-img::before {
    border-top-right-radius: 16px;
    width: 55%;
    height: 31%;
  }
  .c-kv-section02 .kv-img::after {
    width: 20px;
    height: 20px;
    left: 55%;
  }
  .footer-formore-section {
    padding-block: 53px 80px;
  }
  .footer-formore-section .contents-wrap {
    width: auto;
  }
  .footer-formore-section .ttl {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
  }
  .footer-formore-section .btn-area {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    border-left: 0;
    border-bottom: 1px solid #BBB;
    width: 100%;
  }
  .footer-formore-section .btn-area .btn {
    border-right: 0;
    border-top: 1px solid #BBB;
    padding-block: 14px;
    padding-inline: 0;
  }
  .footer-formore-section .btn-area .btn .inn-txt {
    width: 100%;
    font-size: 14px;
    line-height: 160%;
  }
  .footer-recruit-section .contents-wrap {
    padding-block: 80px;
  }
  .footer-recruit-section .contents-wrap .top-ttl .ja {
    font-size: 16px;
  }
  .footer-recruit-section .contents-wrap .top-ttl .en {
    font-size: 48px;
  }
  .footer-recruit-section .contents-wrap .top-txt {
    margin-top: 16px;
    font-size: 13px;
  }
  .footer-recruit-section .contents-wrap .link-list {
    gap: 10px;
    margin-top: 40px;
  }
  .footer-recruit-section .contents-wrap .link-list > li {
    border-radius: 15px;
  }
  .footer-recruit-section .contents-wrap .link-list .contents-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-block: 35px;
    padding-inline: 24px;
    gap: 5px;
  }
  .footer-recruit-section .contents-wrap .link-list .contents-wrap.last {
    padding-block: 17px;
  }
  .footer-recruit-section .contents-wrap .link-list .contents-wrap .ttl {
    width: 100%;
    gap: 6px;
  }
  .footer-recruit-section .contents-wrap .link-list .contents-wrap .ttl .en {
    font-size: 13px;
    letter-spacing: 0.04em;
  }
  .footer-recruit-section .contents-wrap .link-list .contents-wrap .ttl .ja {
    font-size: 16px;
    letter-spacing: 0.04em;
  }
  .c-cta-section {
    border-radius: 40px 40px 0 0;
    padding-block: 60px;
  }
  .c-cta-section .c-ttl02 {
    font-weight: 500;
  }
  .c-anchor-wrap {
    padding-bottom: 60px;
  }
  .c-anchor-wrap .inner-block .ttl {
    font-size: 16px;
  }
  .c-anchor-wrap .inner-block .anchor-list {
    row-gap: 0;
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-anchor-wrap .inner-block .anchor-list > li {
    max-width: 400px;
    width: 100%;
  }
  .c-anchor-wrap .inner-block .anchor-list > li > a {
    padding-top: 10px;
    font-size: 14px;
    padding-bottom: 10px;
    padding-right: 14px;
  }
  .c-menu-section-wrap {
    display: block;
    padding-block: 50px 80px;
  }
  .c-menu-section-wrap.bg {
    display: block;
    margin-top: 0;
  }
  .c-menu .menu-wrap {
    padding-block: 10px 55px;
  }
  .c-menu .menu-ttl {
    margin-bottom: 8px;
    padding-left: 15px;
    font-size: 16px;
  }
  .c-menu .menu-ttl::before {
    left: 0;
  }
  .c-menu .menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 27px;
  }
  .c-menu .menu-list > li > a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 6px;
    padding-right: 20px;
    height: 100%;
    font-size: 13px;
  }
  .c-menu .menu-list > li > a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #dfdfdf;
  }
  .c-menu .menu-list > li > a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 15px;
    height: 100%;
    background: #CD1B1B;
    -webkit-mask: url(../img/common/arrow.svg) no-repeat center/15px auto;
            mask: url(../img/common/arrow.svg) no-repeat center/15px auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .c-menu.bg {
    padding-top: 5px;
    position: static;
    margin-inline: calc(50% - 50vw);
    padding-inline: calc(50vw - 50%);
    padding-top: 48px;
    background: #F8F6F4;
  }
  .c-menu.bg .menu-wrap {
    padding-bottom: 0px;
  }
  .c-bg-section {
    padding-block: 50px 80px;
  }
  .c-recruit-info .tab-block {
    margin-top: 0px;
  }
  .c-recruit-info .tab-block .tab-list {
    padding-inline: 25px;
    gap: 8px;
  }
  .c-recruit-info .tab-block .tab-list.row-3 {
    gap: 4px;
    padding-inline: 20px;
  }
  .c-recruit-info .tab-block .tab-list.row-3 > li .tab-btn {
    padding: 15px 6px 26px;
  }
  .c-recruit-info .tab-block .tab-list.row-3 > li .tab-btn .inn {
    font-size: 13px;
  }
  .c-recruit-info .tab-block .tab-list > li .tab-btn {
    padding: 15px 10px 26px;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    border-radius: 15px 15px 0 0;
  }
  .c-recruit-info .tab-block .tab-list > li .tab-btn::after {
    bottom: 10px;
  }
  .c-recruit-info .about-section .about-ttl {
    font-size: 20px;
  }
  .c-recruit-info .about-section .txt-area {
    margin-top: 10px;
    font-size: 13px;
  }
  .c-recruit-info .req-section {
    padding-block: 30px 60px;
  }
  .c-recruit-info .req-section .req-ttl {
    font-size: 20px;
  }
  .c-recruit-info .req-section .req-ttl {
    margin-bottom: 10px;
  }
  .c-recruit-info .req-section .req-list .req-item {
    padding-block: 12px;
    font-size: 13px;
    font-weight: 300;
  }
  .c-recruit-info .req-section .req-list .req-item .cont li {
    padding-left: 15px;
  }
  .c-recruit-info .req-section .req-list .req-item .cont li::before {
    top: 6px;
    width: 12px;
    height: 12px;
  }
  .c-recruit-info .flow-section .ttl, .c-recruit-info .flow-qa-section .ttl {
    font-size: 20px;
  }
  .c-recruit-info .flow-section .ttl, .c-recruit-info .flow-qa-section .ttl {
    margin-bottom: 8px;
  }
  .c-recruit-info .flow-section {
    padding-block: 52px 62px;
  }
  .c-recruit-info .flow-section .flow-item {
    padding: 22px 20px;
    border-radius: 15px;
    gap: 20px;
    font-size: 13px;
  }
  .c-recruit-info .flow-section .flow-item:not(:last-child)::after {
    border-width: 16px 18.5px 0 18.5px;
  }
  .c-recruit-info .flow-section .flow-item + .flow-item {
    margin-top: 24px;
  }
  .c-recruit-info .flow-section .flow-ttl {
    gap: 12px;
  }
  .c-recruit-info .flow-section .flow-ttl .en {
    font-size: 16px;
  }
  .c-recruit-info .flow-section .flow-ttl .ja {
    font-size: 16px;
  }
  .c-recruit-info .flow-section .flow-ttl .ja {
    line-height: 1;
  }
  .c-recruit-info .flow-section .flow-cont a {
    text-decoration: underline;
  }
  .c-recruit-info .flow-qa-section {
    padding-bottom: 60px;
  }
  .c-recruit-info .flow-qa-section .qa-item {
    padding-block: 16px;
  }
  .c-recruit-info .flow-qa-section .qa-item .table-box {
    padding: 15px 10px 13px;
    border-radius: 10px;
  }
  .c-recruit-info .flow-qa-section .qa-item .table-box .lead {
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table {
    margin-top: 8px;
  }
  .c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table tr:first-child td, .c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table tr:not(:first-child) th {
    width: 17.8343949045%;
  }
  .c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table td {
    font-size: 13px;
    padding-block: 10px;
  }
  .c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table td,
  .c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table th {
    padding-inline: 2px;
  }
  .c-recruit-info .flow-qa-section .qa-item .table-box .recruit-table th {
    font-size: 11px;
    line-height: 1.3;
  }
  .c-recruit-info .flow-qa-section .qa-item .table-box .note {
    font-size: 10px;
    margin-top: 5px;
    line-height: 1.6;
  }
  .c-recruit-info .flow-qa-section .q-txt, .c-recruit-info .flow-qa-section .a-txt {
    font-size: 13px;
  }
  .c-recruit-info .flow-qa-section .q-txt {
    margin-bottom: 5px;
  }
  .c-recruit-info .video-section .video-ttl {
    font-size: 20px;
  }
  .c-recruit-info .video-section .video-ttl {
    margin-bottom: 8px;
  }
  .c-recruit-info .video-section .movie-wrap::after {
    width: 40px;
    height: 40px;
  }
  .c-recruit-info .video-section .time-txt {
    margin-top: 3px;
  }
  .c-recruit-info .recruit-info-cta {
    padding-bottom: 64px;
  }
  .c-recruit-info .recruit-info-cta .sns-section {
    margin-block: 45px;
    font-size: 12px;
  }
  .c-recruit-info .recruit-info-cta .sns-section .insta-wrap {
    padding: 15px 12px 15px 15px;
  }
  .c-recruit-info .recruit-info-cta .sns-section .sns-ttl::after {
    width: 50px;
    height: 50px;
  }
  .c-recruit-info .recruit-info-cta .sns-section .sns-ttl .main {
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
  }
  .c-recruit-info .recruit-info-cta .entry-section {
    padding-block: 30px 20px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .entry-ttl {
    margin-bottom: 14px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .entry-ttl .inn {
    font-size: 40px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .entry-block {
    padding: 35px 40px 40px;
    border-radius: 20px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .entry-block-contact {
    padding-inline: 26px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .entry-block.flex {
    gap: 10px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .entry-block + .entry-block {
    margin-top: 12px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .entry-block.row-1 {
    padding-block: 97px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .entry-block.row-1 .btn-wrap .inn-btn {
    padding-block: 25px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .year-ttl {
    padding-left: 22px;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
  }
  .c-recruit-info .recruit-info-cta .entry-section .year-ttl::before {
    width: 15px;
    height: 15px;
    top: 5px;
    left: 2px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .contact-ttl {
    font-size: 16px;
    line-height: 1.8;
    padding-block: 15px 20px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .btn-wrap {
    gap: 10px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .info-area {
    padding-top: 20px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .info-ttl {
    font-size: 14px;
    line-height: 1.6;
  }
  .c-recruit-info .recruit-info-cta .entry-section .contact-wrap {
    padding-bottom: 10px;
    max-width: 400px;
    margin-inline: auto;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 8px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .contact-wrap .contact {
    font-size: 28px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .contact-wrap .contact::before {
    top: 5px;
    width: 27px;
    height: 27px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .contact-wrap .contact.mail {
    font-size: 20px;
    line-height: 1.3;
  }
  .c-recruit-info .recruit-info-cta .entry-section .inn-btn {
    padding: 19px 40px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    min-height: 67px;
    border-radius: 38px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .inn-btn + .inn-btn {
    margin-top: 16px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .inn-btn .txt {
    font-size: 13px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .inn-btn img {
    max-width: 125px;
  }
  .c-recruit-info .modal-block {
    padding-inline: 20px;
  }
  .c-recruit-info .modal-block .close-btn {
    font-size: 13px;
  }
  .c-recruit-info .modal-block .close-btn::before, .c-recruit-info .modal-block .close-btn::after {
    height: 43px;
  }
  .home .mv-section .inner-block {
    padding-inline: 10px;
  }
  .home .mv-section .inner-block .movie-box {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
  }
  .home .mv-section .inner-block .movie-box .scroll-box .arrow {
    height: 23px;
    width: 14px;
  }
  .home .mv-section .inner-block .movie-box .movie {
    border-radius: 20px;
  }
  .home .mv-section .inner-block .movie-box .movie .movie-btn {
    width: 40px;
    height: 40px;
  }
  .home .copy-section {
    padding-top: 40px;
  }
  .home .copy-section .copy-wrap .mask .sp-anim-ttl {
    -webkit-transition: opacity 1s ease 0.4s, -webkit-transform 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.4s;
    transition: opacity 1s ease 0.4s, -webkit-transform 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.4s;
    transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.4s, opacity 1s ease 0.4s;
    transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.4s, opacity 1s ease 0.4s, -webkit-transform 1.2s cubic-bezier(0.33, 1, 0.68, 1) 0.4s;
    opacity: 0;
    -webkit-transform: translate(0, 60%);
            transform: translate(0, 60%);
  }
  .home .copy-section .copy-wrap .mask .sp-anim-ttl.is-animated {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .home .copy-section .copy-wrap .mask .is-animated .sp-anim-ttl {
    opacity: 1;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .home .copy-section .copy-wrap .mask.black {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  .home .copy-section .txt-box .sec-txt {
    font-size: 14px;
  }
  .home .copy-section .txt-box .sec-txt + .sec-txt {
    margin-top: 30px;
  }
  .home .copy-section .txt-box .c-btn01 {
    margin-top: 40px;
  }
  .home .company-section {
    padding-top: 100px;
  }
  .home .company-section .txt-wrap .c-ttl01 {
    margin-bottom: 20px;
  }
  .home .company-section .txt-wrap .txt {
    margin-top: 0;
    font-size: 13px;
  }
  .home .company-section .txt-wrap .sp-img-wrap {
    margin-top: 33px;
  }
  .home .company-section .c-link-list {
    margin-top: 4px;
  }
  .home .company-section .anim-wrap {
    margin-top: -40px;
    margin-inline: -20px;
    width: auto;
  }
  .home .company-section .anim-wrap .en {
    font-size: 88px;
  }
  .home .job-section {
    padding-top: 100px;
  }
  .home .job-section .sec-txt {
    font-size: 13px;
    margin-top: 22px;
  }
  .home .job-section .btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 35px;
    gap: 20px;
  }
  .home .job-section .btn-wrap .job-link {
    border-radius: 20px;
  }
  .home .job-section .btn-wrap .job-link:first-child .bottom {
    padding-bottom: 35px;
  }
  .home .job-section .btn-wrap .job-link .bottom .small {
    font-size: 10px;
  }
  .home .interview-section {
    margin-top: 80px;
    padding-block: 80px;
    border-radius: 40px 40px 0 0;
  }
  .home .interview-section .c-ttl01 {
    margin-bottom: 30px;
  }
  .home .interview-section .c-text-icon-link {
    margin: 30px 0 0;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .home .environment-section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .home .environment-section .inner-block {
    padding-inline: 10px;
  }
  .home .environment-section .ttl-wrap {
    margin-bottom: 34px;
    padding-inline: 10px;
  }
  .home .environment-section .sec-txt {
    font-size: 13px;
  }
  .home .environment-section .card-container {
    margin-bottom: 20px;
  }
  .home .environment-section .card-container:last-child {
    margin-bottom: 0;
  }
  .home .environment-section .card {
    grid-template-columns: auto;
    grid-auto-rows: auto auto;
    padding-block: 40px;
    padding-inline: clamp(15px, 8vw, 30px);
    border-radius: 20px;
    min-height: 590px;
  }
  .home .environment-section .card .txt-wrap .c-ttl01 {
    margin-bottom: 20px;
  }
  .home .environment-section .card .img-wrap {
    margin-bottom: 15px;
  }
  .home .environment-section .card .img-wrap .img {
    border-radius: 15px;
  }
  .p-work-advantage .c-kv-section .ja {
    max-width: 250px;
  }
  .p-work-advantage .merit-section .diag-block {
    padding: 30px 20px;
  }
  .p-work-advantage .merit-section .diag-block01 {
    padding-inline: 10px;
  }
  .p-work-advantage .merit-tag {
    font-size: 14px;
    padding: 4px 20px;
  }
  .p-work-advantage .merit-ttl {
    font-size: 20px;
  }
  .p-work-advantage .merit-ttl {
    margin-top: 20px;
  }
  .p-work-advantage .merit-txt {
    margin-top: 12px;
    font-size: 13px;
    font-weight: 300;
  }
  .p-work-advantage .diag-block .diag-ttl {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .p-work-advantage .diag-block .graph-area {
    padding-top: 5px;
    max-width: 282px;
  }
  .p-work-advantage .diag-block .graph-area + .graph-area {
    margin-top: 30px;
  }
  .p-work-advantage .diag-block .graph-area + .graph-area::before {
    top: -20px;
    width: 45px;
    height: 20px;
  }
  .p-work-advantage .diag-block .graph-area + .graph-area::after {
    top: -20px;
    border-width: 10px 10px 0 10px;
  }
  .p-work-advantage .diag-block .graph-area01 {
    margin-top: 10px;
  }
  .p-work-advantage .diag-block .graph-area01::before {
    bottom: -15px;
  }
  .p-work-advantage .diag-block .diag-list {
    padding-block: 30px;
    padding-inline: 18px;
    max-width: 282px;
  }
  .p-work-advantage .diag-block .diag-list.with-stat {
    -webkit-padding-start: 12px;
            padding-inline-start: 12px;
  }
  .p-work-advantage .diag-block .diag-list.with-stat > li {
    padding-left: 40px;
  }
  .p-work-advantage .diag-block .diag-list > li {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .p-work-advantage .diag-block .diag-list > li {
    font-size: 13px;
    letter-spacing: 0;
    padding-block: 22px;
    padding-left: 45px;
  }
  .p-work-advantage .diag-block .diag-list > li .stat {
    width: 70px;
    font-size: 26px;
  }
  .p-work-advantage .diag-block .diag-list > li .stat .unit {
    font-size: 16px;
  }
  .p-work-advantage .diag-block .diag-list > li::before {
    width: 32px;
    height: 32px;
  }
  .p-work-advantage .diag-block .img-wrap {
    margin-top: 10px;
    border-radius: 22px;
  }
  .p-work-advantage .diag-block .diag-tag {
    padding-block: 6px;
    width: 82px;
    font-size: 12px;
  }
  .p-work-advantage .diag-block .diag-label {
    font-size: 12px;
    letter-spacing: 0;
  }
  .p-work-advantage .diag-block .diag-label .txt::before {
    width: 105px;
    bottom: -8px;
  }
  .p-work-advantage .diag-block .diag-label .txt::after {
    right: 103px;
    bottom: -10px;
  }
  .p-work-advantage .diag-block .diag-label .txt.left::after {
    left: 103px;
  }
  .p-work-advantage .diag-block .diag-label .num {
    font-size: 16px;
  }
  .p-work-advantage .diag-block .diag-label .num .unit {
    font-size: 12px;
  }
  .p-work-advantage .diag-block .diag-label01-01 {
    top: 16px;
    right: 12px;
  }
  .p-work-advantage .diag-block .diag-label01-01 .num {
    top: 40px;
    right: 85px;
  }
  .p-work-advantage .diag-block .diag-label01-02 {
    top: 30px;
    left: 15px;
  }
  .p-work-advantage .diag-block .diag-label01-02 .num {
    top: 5px;
    left: 85px;
  }
  .p-work-advantage .diag-block .diag-label02-01 {
    top: 15px;
    right: 12px;
  }
  .p-work-advantage .diag-block .diag-label02-01 .num {
    top: 42px;
    right: 90px;
  }
  .p-work-advantage .diag-block .diag-label02-02 {
    top: 45px;
    left: 16px;
  }
  .p-work-advantage .diag-block .diag-label02-02 .num {
    left: 85px;
  }
  .p-work-advantage .diag-block .graph-wrap {
    width: 104px;
    height: 104px;
  }
  .message .c-kv-section .inner-block {
    padding-top: 0;
  }
  .message .c-kv-section .mv-img {
    border-radius: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 10px auto 30px;
  }
  .message .copy-section {
    padding-bottom: 0;
    padding-top: 80px;
  }
  .message .copy-section .inner-block {
    padding-inline: 10px;
  }
  .message .copy-section .grid-wrap .txt-wrap .copy-ttl {
    font-size: clamp(24px, 8.5333333333vw, 32px);
    margin-bottom: 30px;
    padding-inline: 20px;
  }
  .message .copy-section .grid-wrap .txt-wrap .sec-txt {
    font-size: 14px;
    letter-spacing: 0.04em;
    padding-left: 20px;
  }
  .message .copy-section .grid-wrap .txt-wrap .sec-txt + .sec-txt {
    margin-top: 30px;
  }
  .message .copy-section .grid-wrap .img-wrap .img {
    border-radius: 15px;
  }
  .message .copy-section .logo-wrap {
    margin-top: 52px;
    max-width: inherit;
    width: clamp(200px, 62.1333333333vw, 500px);
  }
  .message .copy-section .logo-wrap .en {
    margin-top: 21px;
    font-size: 18px;
  }
  .message .message-section .message-list {
    margin-top: 51px;
    gap: 36px;
  }
  .message .message-section .message-list > li .top .txt {
    font-size: 16px;
    padding-inline: 24px;
  }
  .message .message-section .message-list > li .top .txt::before, .message .message-section .message-list > li .top .txt::after {
    height: 45px;
  }
  .message .message-section .message-list > li .top .txt::before {
    left: 12px;
  }
  .message .message-section .message-list > li .top .txt::after {
    right: 12px;
  }
  .message .message-section .message-list > li .cont {
    margin-top: 20px;
    padding-top: 32px;
  }
  .message .message-section .message-list > li .cont::before {
    height: 32px;
    border-radius: 20px 20px 0 20px;
  }
  .message .message-section .message-list > li .cont .pro-wrap {
    padding-right: 29px;
  }
  .message .message-section .message-list > li .cont .pro-wrap .white {
    padding-top: 18px;
    padding-bottom: 20px;
    padding-left: clamp(10px, 8vw, 30px);
    padding-right: 18px;
    border-radius: 20px;
  }
  .message .message-section .message-list > li .cont .pro-wrap .white .left {
    padding-right: clamp(5px, 2.6666666667vw, 10px);
  }
  .message .message-section .message-list > li .cont .pro-wrap .white .left .name {
    font-size: 14px;
  }
  .message .message-section .message-list > li .cont .pro-wrap .white .left .post {
    font-size: 11px;
  }
  .message .message-section .message-list > li .cont .pro-wrap .white .right {
    padding-left: clamp(5px, 2.6666666667vw, 10px);
  }
  .message .message-section .message-list > li .cont .pro-wrap .white .right .hobby {
    font-size: 11px;
  }
  .message .message-section .message-list > li .cont .blue-wrap {
    padding-block: 23px 30px;
    padding-inline: clamp(15px, 8vw, 30px);
    border-radius: 20px 0 20px 20px;
  }
  .message .message-section .message-list > li .cont .blue-wrap .ttl {
    font-size: 14px;
    padding-bottom: 12px;
  }
  .message .message-section .message-list > li .cont .blue-wrap .txt {
    margin-top: 7px;
    font-size: 13px;
  }
  .p-movie-gallery .movie-tag {
    gap: 4px;
  }
  .p-movie-gallery .movie-ttl {
    font-size: 16px;
  }
  .p-movie-gallery .movie-wrap::after {
    width: 40px;
    height: 40px;
  }
  .p-movie-gallery .movie-txt {
    margin-top: 2px;
    font-size: 13px;
    line-height: 1.8;
  }
  .p-movie-gallery .modal-block {
    padding-inline: 20px;
  }
  .p-movie-gallery .modal-block .close-btn {
    font-size: 13px;
  }
  .p-movie-gallery .modal-block .close-btn::before, .p-movie-gallery .modal-block .close-btn::after {
    height: 43px;
  }
  .overview .intro-section {
    padding-top: 39px;
    padding-bottom: 63px;
  }
  .overview .intro-section .sec-txt {
    margin-top: 22px;
    font-size: 13px;
  }
  .overview .intro-section .sec-txt + .sec-txt {
    margin-top: 22px;
  }
  .overview .intro-section .sec-txt:last-child {
    margin-bottom: 50px;
  }
  .overview .intro-section .overview-splide .splide__toggle {
    width: 40px;
    height: 40px;
    bottom: 19px;
  }
  .overview .comp-section {
    padding-bottom: 80px;
  }
  .overview .comp-section .white {
    padding-inline: 20px;
    padding-block: 40px;
    border-radius: 30px;
  }
  .overview .comp-section .white .comp-table {
    margin-top: 16px;
  }
  .overview .comp-section .white .comp-table tr {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-block: 12px;
  }
  .overview .comp-section .white .comp-table tr th {
    padding: 0;
    font-size: 13px;
  }
  .overview .comp-section .white .comp-table tr td {
    padding: 0;
    font-size: 13px;
  }
  .overview .comp-section .base-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .overview .comp-section .base-wrap .base-list > li .blue-box {
    border-radius: 10px 10px 0 0;
    padding-block: 12px;
    padding-inline: clamp(5px, 4.2666666667vw, 16px);
  }
  .overview .comp-section .base-wrap .base-list > li .blue-box .ttl {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
  }
  .overview .comp-section .base-wrap .base-list > li .blue-box .tag-list > li {
    padding: 4px 10px;
  }
  .overview .comp-section .base-wrap .base-list > li .blue-box .tag-list > li .txt {
    font-size: 10px;
    font-weight: 400;
    line-height: 1.6;
  }
  .overview .comp-section .base-wrap .base-list > li .white-box {
    padding-block: 10px;
    padding-inline: clamp(5px, 4.2666666667vw, 16px);
    border-radius: 0 0 10px 10px;
    min-height: 69px;
  }
  .overview .comp-section .base-wrap .base-list > li .white-box > .txt {
    font-size: 12px;
  }
  .overview .comp-section .area-wrap {
    padding-top: 60px;
  }
  .overview .comp-section .area-wrap .sec-txt {
    font-size: 13px;
    margin-top: 15px;
  }
  .overview .comp-section .area-wrap .area-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 50px;
  }
  .overview .comp-section .area-wrap .area-list > li .num {
    font-size: 56px;
    top: -25px;
  }
  .overview .comp-section .area-wrap .area-list > li .img {
    margin-top: 34px;
  }
  .overview .comp-section .area-wrap .area-list > li:first-child .img {
    max-width: 100px;
  }
  .overview .comp-section .area-wrap .area-list > li:nth-child(2) .img {
    max-width: 90px;
  }
  .overview .comp-section .area-wrap .area-list > li .txt {
    font-size: 16px;
    margin-top: 16px;
    text-align: center;
  }
  .overview .comp-section .ex-wrap {
    padding-top: 60px;
  }
  .overview .comp-section .ex-wrap .ex-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 40px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 30px;
  }
  .overview .comp-section .ex-wrap .ex-list > li {
    width: 100%;
    max-width: 500px;
  }
  .overview .comp-section .ex-wrap .ex-list > li .ttl {
    font-size: 16px;
  }
  .overview .comp-section .ex-wrap .ex-list > li .img {
    margin-top: 15px;
    margin-bottom: 28px;
  }
  .overview .comp-section .ex-wrap .ex-list > li .img > img {
    border-radius: 20px;
  }
  .overview .comp-section .ex-wrap .ex-list > li .cont {
    padding-left: 16px;
  }
  .overview .comp-section .ex-wrap .ex-list > li .cont + .cont {
    margin-top: 20px;
  }
  .overview .comp-section .ex-wrap .ex-list > li .cont::before {
    width: 6px;
  }
  .overview .comp-section .ex-wrap .ex-list > li .cont .inn-ttl {
    font-size: 14px;
    padding-bottom: 12px;
  }
  .overview .comp-section .ex-wrap .ex-list > li .cont .flex-wrap {
    gap: 32px;
  }
  .overview .comp-section .ex-wrap .ex-list > li .cont .inn-list {
    margin-top: 6px;
  }
  .overview .comp-section .ex-wrap .ex-list > li .cont .inn-list > li {
    gap: 10px;
    font-size: 13px;
  }
  .overview .comp-section .ex-wrap .ex-list > li .cont .inn-list > li .lead {
    padding-left: 8px;
    min-width: 72px;
  }
  .overview .comp-section .ex-wrap .ex-list > li .cont .inn-list > li .lead::before {
    width: 3px;
    height: 3px;
  }
  .overview .pro-section {
    padding-top: 40px;
    padding-bottom: 68px;
  }
  .overview .pro-section .our-wrap {
    padding-top: 40px;
    padding-bottom: 80px;
  }
  .overview .pro-section .our-wrap .our-list {
    margin-top: 29px;
  }
  .overview .pro-section .our-wrap .our-list > li .img > img {
    border-radius: 20px;
  }
  .overview .pro-section .our-wrap .our-list > li .txt-wrap .txt {
    margin-top: 14px;
    font-size: 13px;
  }
  .overview .pro-section .our-wrap .our-list > li + li {
    margin-top: 50px;
  }
  .overview .pro-section .num-wrap {
    padding-top: 80px;
  }
  .overview .pro-section .num-wrap .num-list > li {
    -webkit-padding-start: 17px;
            padding-inline-start: 17px;
    padding-block: 16px;
    border-radius: 20px;
  }
  .overview .pro-section .num-wrap .num-list > li .c-ttl03 {
    padding-block: 6px 5px;
  }
  .overview .pro-section .num-wrap .num-list > li .note {
    font-size: 10px;
    margin-top: 6px;
    padding-right: 8px;
  }
  .overview .pro-section .num-wrap .num-list > li .cont .num {
    font-size: 39px;
  }
  .overview .pro-section .num-wrap .num-list > li .cont .small {
    font-size: 14px;
  }
  .overview .pro-section .num-wrap .num-list > li .cont .lead {
    font-size: 12px;
  }
  .overview .pro-section .num-wrap .num-list > li .cont .txt {
    font-size: 10px;
  }
  .overview .pro-section .num-wrap .num-list > li .cont .graph-txt-box .num {
    font-size: 30px;
  }
  .overview .pro-section .num-wrap .num-list > li .cont .graph-txt-box.small .lead {
    font-size: 10px;
  }
  .overview .pro-section .num-wrap .num-list > li .cont .graph-txt-box.small .num {
    font-size: 18px;
  }
  .overview .pro-section .num-wrap .num-list > li .cont .graph-txt-box.small .num .small {
    font-size: 12px;
  }
  .overview .pro-section .num-wrap .num-list > li .cont .num-note {
    font-size: 13px;
  }
  .overview .pro-section .num-wrap .num-list > li:first-child {
    padding-bottom: 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(2) {
    padding-bottom: 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(2) .cont {
    padding-inline: 12px;
    margin-top: 12px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(2) .cont .flex-box {
    gap: clamp(10px, 5.8666666667vw, 22px);
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) {
    padding-inline: 15px;
    padding-bottom: 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont {
    padding-left: 0;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .ico {
    width: 62px;
    top: -10px;
    left: 4px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .age {
    font-size: 12px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .graph .rod {
    width: clamp(20px, 8.2666666667vw, 40px);
    bottom: 1px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:first-child .graph::before {
    top: 0;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:first-child .graph::after {
    top: 60px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(2) .graph::before {
    top: 0;
    height: 30px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(2) .graph::after {
    top: 25px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(2) .graph .rod {
    height: 37.3px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(3) .graph::before {
    top: 0;
    height: 18px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(3) .graph .rod {
    height: 50px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(4) .graph::before {
    height: 4px;
    top: 0;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(4) .graph .rod {
    height: 62px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(5) .graph::before {
    height: 25px;
    top: 0;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(5) .graph::after {
    top: 20px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(5) .graph .rod {
    height: 41.6px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(6) .graph::before {
    height: 56px;
    top: 0;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(6) .graph::after {
    top: 54px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn:nth-child(6) .graph .rod {
    height: 10px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(2)::before {
    background: url("../img/overview/graph-border02-sp.svg") no-repeat center/contain;
    width: 98px;
    height: 34px;
    bottom: -5px;
    right: -18px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(3)::before {
    background: url("../img/overview/graph-border03-sp.svg") no-repeat center/contain;
    width: 60px;
    height: 22px;
    bottom: -20px;
    right: -18px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph {
    width: 116px;
    height: 116px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(3)::before {
    background: url("../img/overview/graph-border06-sp.svg") no-repeat center/contain;
    width: 53px;
    height: 25px;
    bottom: -26px;
    right: -22px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph {
    width: 116px;
    height: 116px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(6) {
    padding-bottom: 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(6) .cont {
    padding-inline: 45px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(7) {
    padding-bottom: 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(7) .cont {
    margin-top: 20px;
    padding-inline: 60px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(8) {
    padding-bottom: 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(8) .cont {
    padding-inline: 45px;
    margin-top: 0;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(8) .cont .num {
    line-height: 1;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(8) .cont .num-note {
    margin-top: 17px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(9) {
    padding-bottom: 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(9) .cont {
    margin-top: 23px;
    padding-inline: 50px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(10) {
    padding-bottom: 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(10) .cont {
    margin-top: 4px;
    padding-inline: 38px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(11) {
    padding-bottom: 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(11) .cont {
    margin-top: 5px;
    padding-inline: 50px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(11) .cont .num {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-job .flow-section {
    padding-block: 15px;
  }
  .p-job .flow-ttl {
    font-size: 20px;
  }
  .p-job .flow-ttl {
    margin-bottom: 12px;
  }
  .p-job .flow-txt {
    font-size: 13px;
  }
  .p-job .flow-diag-wrap {
    max-width: 440px;
    margin: 32px auto 45px;
  }
  .p-job .job-section .c-link-list {
    margin-top: 14px;
  }
  .p-job .job-section + .job-section {
    margin-top: 80px;
  }
  .p-job .job-ttl-block {
    gap: 10px;
  }
  .p-job .flow-tag {
    padding-block: 4px;
    width: 82px;
    font-size: 13px;
  }
  .p-job .job-ttl {
    font-size: 20px;
  }
  .p-job .job-img {
    margin-top: 20px;
    border-radius: 20px;
  }
  .p-job .job-desc {
    margin-top: 25px;
    font-size: 13px;
  }
  .p-job .skill-block {
    margin-top: 30px;
  }
  .p-job .partner-block {
    margin-top: 40px;
  }
  .p-job .skill-ttl, .p-job .partner-ttl {
    font-size: 16px;
  }
  .p-job .skill-txt {
    margin-top: 5px;
    font-size: 13px;
  }
  .p-job .skill-table-wrap {
    margin-top: 10px;
    border-radius: 10px;
  }
  .p-job .skill-table-wrap01 {
    padding: 16px;
  }
  .p-job .skill-table-wrap03 {
    padding: 16px;
  }
  .p-job .skill-table thead th {
    padding-bottom: 0px;
  }
  .p-job .skill-table thead th span {
    padding-inline: 10px;
    font-size: 12px;
    line-height: 1.8;
  }
  .p-job .skill-table tbody th, .p-job .skill-table tbody td {
    font-size: 13px;
  }
  .p-job .skill-table tbody td {
    line-height: 1.8;
  }
  .p-job .skill-table01 thead th:last-child {
    width: 62px;
  }
  .p-job .skill-table01 thead th span {
    display: inline-block;
    padding-block: 4px;
  }
  .p-job .skill-table01 tbody td {
    position: relative;
    padding-block: 5px;
  }
  .p-job .skill-table01 tbody td::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: #dfdfdf;
  }
  .p-job .skill-table01 tbody td:first-child {
    padding-right: 8px;
  }
  .p-job .skill-table01 tbody td:first-child::after {
    right: 8px;
  }
  .p-job .skill-table02 tbody th::after, .p-job .skill-table02 tbody td::after {
    left: 8px;
    right: 8px;
  }
  .p-job .skill-table02 tbody th, .p-job .skill-table02 tbody td {
    padding: 16px 8px;
  }
  .p-job .skill-table02 tbody th {
    width: 92px;
  }
  .p-job .partner-list-wrap {
    display: block;
    margin-top: 10px;
    padding: 15px 16px;
    border-radius: 10px;
  }
  .p-job .partner-list > li {
    padding-left: 8px;
    font-size: 13px;
  }
  .p-job .partner-list > li::before {
    top: 10px;
    left: 2px;
    width: 2px;
    height: 2px;
  }
  .field .field-section {
    padding-top: 30px;
    padding-bottom: 80px;
  }
  .field .field-section .grid-wrap .txt-wrap .txt {
    margin-top: 10px;
    font-size: 13px;
  }
  .field .field-section .grid-wrap .img > img {
    border-radius: 20px;
  }
  .field .field-section .gray-box {
    margin-top: 30px;
    border-radius: 20px;
    padding-block: 24px 30px;
    padding-inline: 21px;
  }
  .field .field-section .gray-box .c-ttl03 {
    padding-bottom: 12px;
  }
  .field .field-section .gray-box .c-ttl03::before, .field .field-section .gray-box .c-ttl03::after {
    left: 0;
  }
  .field .field-section .gray-box .c-ttl03::before {
    width: 97px;
  }
  .field .field-section .gray-box .c-ttl03::after {
    width: 100%;
  }
  .field .field-section .gray-box .inn-list {
    margin-top: 15px;
  }
  .field .field-section .gray-box .inn-list > li {
    font-size: 13px;
    padding-left: 12px;
  }
  .field .field-section .gray-box .inn-list > li::before {
    left: 2px;
    top: 10px;
  }
  .field .field-section .gray-box + .grid-wrap {
    margin-top: 60px;
  }
  .field .field-section .map-wrap {
    margin-top: 60px;
  }
  .field .field-section .map-wrap .img {
    border-radius: 20px;
    margin-top: 20px;
    margin-inline: auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .field .field-section .map-wrap .img .txt-box .lead {
    margin-left: 0;
    margin-right: 8px;
  }
  .field .field-section .map-wrap .img .txt-box .inn-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    margin-top: 7px;
    margin-bottom: 15px;
  }
  .field .field-section .map-wrap .img .txt-box .inn-list > li {
    width: 50%;
    padding-left: 7px;
    font-size: 13px;
  }
  .field .field-section .map-wrap .img .txt-box .inn-list > li::before {
    top: clamp(9px, 2.9333333333vw, 11px);
    left: 0;
  }
  .field .field-section .map-wrap .img .txt-box .inn-list + .lead {
    padding-top: 10px;
  }
  .p-company-culture .motto-section {
    padding-top: 34px;
  }
  .p-company-culture .motto-ttl-block .ttl-wrap {
    gap: 15px;
  }
  .p-company-culture .motto-ttl-block .ttl {
    font-size: 20px;
  }
  .p-company-culture .motto-ttl-block .motto {
    font-size: 32px;
  }
  .p-company-culture .motto-ttl-block .desc {
    margin-top: 12px;
    padding-inline: 14px;
    font-size: 13px;
  }
  .p-company-culture .policy-block .policy-wrap {
    border-radius: 20px;
  }
  .p-company-culture .policy-block .policy-ttl {
    font-size: 16px;
  }
  .p-company-culture .policy-block .policy-ttl::before {
    bottom: -3px;
    width: 15px;
  }
  .p-company-culture .policy-block .policy-desc {
    margin-top: 25px;
    font-size: 13px;
  }
  .p-company-culture .link-block {
    margin-top: 10px;
  }
  .p-company-culture .img-block {
    margin-block: 75px;
    gap: 10px;
    grid-template-columns: 1fr 1.2fr;
    grid-template-rows: repeat(7, 120px);
  }
  .p-company-culture .img-block .img-wrap {
    border-radius: 10px;
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
  }
  .p-company-culture .img-block .sp01 {
    grid-row: 1/3;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-company-culture .img-block .sp02 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .p-company-culture .img-block .sp03 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
    grid-row: 3/5;
    grid-column: 2/3;
  }
  .p-company-culture .img-block .sp04 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    grid-row: 5/7;
    grid-column: 1/3;
  }
  .interview .c-kv-section .inner-block {
    padding-top: 40px;
  }
  .interview .keyword-wrap {
    padding-top: 10px;
  }
  .interview .keyword-wrap .btn-wrap {
    margin-top: 12px;
    padding-top: 25px;
    padding-bottom: 30px;
  }
  .interview .keyword-wrap .btn-wrap .txt {
    font-size: 13px;
  }
  .interview .keyword-wrap .btn-wrap .cont {
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
    gap: 10px;
    margin-top: 5px;
  }
  .interview .keyword-wrap .btn-wrap .cont + .cont {
    margin-top: 15px;
  }
  .interview .keyword-wrap .btn-wrap .cont .lead {
    font-size: 14px;
    line-height: 1.5;
    padding-right: 0;
  }
  .interview .keyword-wrap .btn-wrap .cont .lead::after {
    content: none;
  }
  .interview .keyword-wrap .btn-wrap .cont .btn-list > li .tag-btn {
    padding: 11px 16px;
    font-size: 14px;
  }
  .interview .keyword-wrap .reset-btn {
    margin-top: 16px;
    padding: 11px 30px;
  }
  .interview .int-list-wrap {
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .interview .int-list-wrap .inner-block {
    padding-inline: clamp(20px, 9.6vw, 36px);
  }
  .interview .int-list-wrap .none-txt {
    font-size: 14px;
  }
  .interview .int-list-wrap .more-btn {
    margin-top: 60px;
  }
  .interview .int-list-wrap .more-btn .txt {
    font-size: 14px;
    line-height: 1;
  }
  .interview .int-list-wrap .more-btn .c-arrow-btn {
    width: 16px;
    height: 18px;
    top: 1px;
  }
  .schedule .c-menu-section-wrap {
    padding-top: 6px;
    padding-bottom: 80px;
  }
  .schedule .schedule-wrap .schedule-block + .schedule-block {
    margin-top: 80px;
  }
  .schedule .schedule-wrap .schedule-block .ttl-box .txt-wrap {
    padding-block: 26px 19px;
    min-height: 140px;
    padding-inline: clamp(10px, 5.6vw, 21px);
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .schedule .schedule-wrap .schedule-block .ttl-box .txt-wrap .lead {
    padding-block: 5px;
    max-width: 84px;
    padding-inline: 5px;
    font-size: 13px;
    font-weight: 400;
  }
  .schedule .schedule-wrap .schedule-block .ttl-box .txt-wrap .c-ttl02 {
    margin-top: 7px;
  }
  .schedule .schedule-wrap .schedule-block .note {
    font-size: 10px;
    margin-top: 7px;
  }
  .schedule .schedule-wrap .schedule-block .table-wrap {
    margin-top: 15px;
  }
  .schedule .schedule-wrap .schedule-block .table-wrap + .table-wrap {
    margin-top: 29px;
  }
  .schedule .schedule-wrap .schedule-block .table-wrap .table-box {
    margin-top: 10px;
  }
  .schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table tr:not(:last-child) th::before {
    height: 24px;
    bottom: -12px;
  }
  .schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table th,
  .schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table td {
    padding-block: 10px;
  }
  .schedule .schedule-wrap .schedule-block .table-wrap .table-box .txt {
    font-size: 13px;
    padding-inline: clamp(10px, 6.4vw, 24px);
  }
  .p-strengths .diff-section {
    margin-top: 34px;
  }
  .p-strengths .diff-section .lead-txt {
    margin-top: 8px;
    font-size: 13px;
  }
  .p-strengths .diff-section .table-wrap {
    margin-top: 15px;
  }
  .p-strengths .diff-section .diff-table {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .p-strengths .diff-section .diff-table th, .p-strengths .diff-section .diff-table td {
    font-size: 12px;
    padding-inline: 2.5px;
  }
  .p-strengths .diff-section .diff-table th:first-child {
    padding-right: 15px;
  }
  .p-strengths .diff-section .diff-table thead th:nth-child(2) {
    width: 37.6%;
  }
  .p-strengths .diff-section .diff-table thead th:nth-child(3) {
    width: 37.6%;
  }
  .p-strengths .diff-section .diff-table thead th .bg {
    padding-block: 8px;
  }
  .p-strengths .diff-section .diff-table tbody th, .p-strengths .diff-section .diff-table tbody td {
    padding-top: 6px;
  }
  .p-strengths .diff-section .diff-table tbody th::after {
    right: 1px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 9px 0 9px 10px;
    border-color: transparent transparent transparent #9d9d9d;
  }
  .p-strengths .diff-section .diff-table tbody .bg {
    padding-inline: 5px;
  }
  .p-strengths .diff-section .detail-wrap {
    margin-top: 28px;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .p-strengths .diff-section .detail-ttl {
    font-size: 16px;
  }
  .p-strengths .hyougo-section {
    margin-top: 80px;
  }
  .p-strengths .hyougo-section .merit-desc {
    margin-top: 10px;
    font-size: 13px;
  }
  .p-strengths .hyougo-section .merit-block + .merit-block {
    margin-top: 28px;
  }
  .p-strengths .hyougo-section .note-wrap {
    font-size: 13px;
  }
  .p-strengths .hyougo-section .note-ttl {
    margin-top: 12px;
  }
  .p-strengths .hyougo-section .note-list li {
    padding-left: 5px;
  }
  .p-strengths .hyougo-section .note-list li::before {
    left: 2px;
  }
  .p-strengths .hyougo-section .img-wrap {
    border-radius: 20px;
  }
  .p-strengths .future-section {
    margin-top: 80px;
  }
  .p-strengths .future-section .future-list {
    margin-top: 18px;
  }
  .p-strengths .future-section .future-list .future-ttl {
    font-size: 16px;
  }
  .p-strengths .future-section .future-list .future-ttl {
    text-align: center;
  }
  .p-strengths .message-section {
    margin-block: 45px 80px;
  }
  .p-strengths .message-section .message-block {
    padding: 50px 20px;
    border-radius: 20px;
  }
  .p-strengths .message-section .message-ttl {
    font-size: 20px;
  }
  .p-strengths .message-section .message-ttl {
    padding-bottom: 20px;
  }
  .p-strengths .message-section .message-txt {
    margin-top: 22px;
    padding-inline: 6px;
    font-size: 14px;
  }
  .p-strengths .diff-section .detail-child,
  .p-strengths .future-section .future-list li {
    display: block;
    padding: 30px 20px 20px 20px;
    border-radius: 20px;
  }
  .p-strengths .diff-section .detail-child .txt-area,
  .p-strengths .future-section .future-list li .txt-area {
    font-size: 13px;
    padding: 20px 16px 16px;
    margin-top: 14px;
    border-radius: 10px;
  }
  .p-faq .c-menu-section-wrap {
    padding-block: 25px 80px;
  }
  .p-faq .faq-block .faq-section + .faq-section {
    margin-top: 60px;
  }
  .p-faq .faq-block .faq-list {
    margin-top: 15px;
  }
  .p-faq .faq-block .qa-item {
    padding: 22px 10px;
  }
  .p-faq .faq-block .q-txt {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .p-faq .faq-block .q-txt {
    padding-bottom: 4px;
  }
  .p-faq .faq-block .a-txt {
    font-size: 13px;
  }
  .p-faq .faq-block .c-link-txt02::before, .p-faq .faq-block .c-link-txt02::after {
    content: none;
  }
  .p-faq .faq-block .c-link-txt02 {
    text-decoration: underline;
  }
  .p-voices .c-menu-section-wrap {
    display: block;
    margin-top: 0;
  }
  .p-voices .c-menu {
    padding-top: 5px;
    position: static;
    margin-inline: calc(50% - 50vw);
    padding-inline: calc(50vw - 50%);
    padding-top: 48px;
    background: #F8F6F4;
  }
  .p-voices .c-menu .menu-wrap {
    padding-bottom: 0px;
  }
  .p-voices .q-section {
    padding-block: 50px 80px;
  }
  .p-voices .q-section:last-child {
    padding-bottom: 105px;
  }
  .p-voices .tag-ttl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 12px;
  }
  .p-voices .tag-ttl .tag {
    padding: 8px 16px;
    font-size: 13px;
  }
  .p-voices .tag-ttl .ttl {
    font-size: 20px;
  }
  .p-voices .voice-ttl {
    font-size: 16px;
  }
  .p-voices .voice-ttl {
    margin-top: 18px;
    padding-bottom: 12px;
  }
  .p-voices .voice-area + .voice-area {
    margin-top: 56px;
  }
  .p-voices .comment-block {
    padding: 22px 24px;
    border-radius: 20px;
  }
  .p-voices .comment-block .txt {
    padding-inline: 0;
    font-size: 13px;
  }
  .p-voices .comment-block .info {
    margin-top: 12px;
    padding: 8px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.5;
  }
  .p-voices .comment-block::after {
    width: 52px;
    height: 22px;
  }
  .interview-detail .c-kv-section .inner-block {
    padding-bottom: 20px;
  }
  .interview-detail .c-kv-section .mv-cont .white-box .top {
    gap: clamp(10px, 5.3333333333vw, 20px);
  }
  .interview-detail .c-kv-section .mv-cont .white-box .top .tag-list {
    gap: clamp(10px, 5.3333333333vw, 20px);
  }
  .interview-detail .c-kv-section .mv-cont .white-box .top .tag-list > li {
    padding: 8px 16px;
    font-size: 13px;
  }
  .interview-detail .c-kv-section .mv-cont .white-box .top .name.en {
    font-size: clamp(16px, 5.3333333333vw, 20px);
  }
  .interview-detail .c-kv-section .mv-cont .white-box .post {
    font-size: 13px;
  }
  .interview-detail .c-kv-section .mv-cont .white-box .c-ttl02 {
    font-size: clamp(16px, 5.3333333333vw, 20px);
    margin-top: 20px;
  }
  .interview-detail .detail-section .detail-cont + .detail-cont {
    margin-top: 50px;
  }
  .interview-detail .detail-section .detail-cont .q-txt {
    padding: 8px 15px;
    font-size: 13px;
  }
  .interview-detail .detail-section .detail-cont .q-txt + .c-ttl03 {
    margin-top: 12px;
  }
  .interview-detail .detail-section .detail-cont .c-ttl03 + * {
    margin-top: 12px;
  }
  .interview-detail .detail-section .detail-cont .txt {
    font-size: 13px;
  }
  .interview-detail .detail-section .detail-cont .txt + * {
    margin-top: 25px;
  }
  .interview-detail .detail-section .detail-cont .txt + .img {
    margin-top: 20px;
  }
  .interview-detail .detail-section .detail-cont .img {
    aspect-ratio: 335/210;
    width: 100%;
  }
  .interview-detail .detail-section .detail-cont .img > img {
    display: block;
    width: auto;
    border-radius: 20px;
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  .interview-detail .detail-section .note {
    font-size: 13px;
  }
  .interview-detail .detail-section .bottom-img img {
    border-radius: 20px 0 0 20px;
  }
  .interview-detail .c-cta-section .interview-splide {
    margin-top: 30px;
  }
  .interview-detail .c-cta-section .interview-splide .splide__track {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .interview-detail .c-cta-section .link-box {
    position: static;
    padding-inline: 20px;
    padding-top: 15px;
  }
  .interview-detail .c-cta-section .cta-link {
    font-size: 14px;
  }
  .technical-skills .about-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .technical-skills .about-section .sec-txt {
    margin-top: 10px;
    font-size: 13px;
  }
  .technical-skills .about-section .c-ttl03 {
    margin-top: 25px;
  }
  .technical-skills .about-section .c-ttl02.mt200 {
    margin-top: 60px;
  }
  .technical-skills .about-section .movie-wrap {
    margin-top: 30px;
  }
  .technical-skills .about-section .movie-wrap::after {
    width: 40px;
    height: 40px;
  }
  .technical-skills .about-section .movie-txt {
    margin-top: 10px;
    font-size: 13px;
  }
  .technical-skills .state-section {
    padding-top: 50px;
    padding-bottom: 60px;
  }
  .technical-skills .state-section .c-ttl03 {
    margin-top: 15px;
  }
  .technical-skills .state-section .c-ttl03 + .img-box {
    margin-top: 7px;
  }
  .technical-skills .state-section .img-box {
    gap: 16px;
  }
  .technical-skills .state-section .img-box .img > img {
    border-radius: 5px;
  }
  .technical-skills .state-section .img-box .img .white {
    max-width: 142px;
    border-radius: 0 10px 0 0;
    padding-left: 7px;
    padding-block: 14px 10px;
  }
  .technical-skills .state-section .img-box .img .white .txt {
    font-size: 12px;
  }
  .technical-skills .state-section .img-box + .c-ttl03 {
    margin-top: 40px;
  }
  .technical-skills .comment-section {
    padding-top: 60px;
  }
  .technical-skills .comment-section .c-ttl02 {
    margin-bottom: 30px;
  }
  .technical-skills .modal-block {
    padding-inline: 20px;
  }
  .technical-skills .modal-block .close-btn {
    font-size: 13px;
  }
  .technical-skills .modal-block .close-btn::before, .technical-skills .modal-block .close-btn::after {
    height: 43px;
  }
  .technical-skills .modal-block .video-wrap .movie-btn {
    width: 40px;
    height: 40px;
  }
  .p-workstyle .workstyle-section {
    padding-top: 70px;
  }
  .p-workstyle .workstyle-section .c-ttl03 {
    margin-top: 15px;
  }
  .p-workstyle .workstyle-area + .workstyle-area {
    margin-top: 50px;
  }
  .p-workstyle .workstyle-item {
    border-radius: 20px;
  }
  .p-workstyle .workstyle-item .l-area {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .p-workstyle .workstyle-item .l-area {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    text-align: start;
  }
  .p-workstyle .workstyle-item .ico {
    width: 50px;
    height: 50px;
  }
  .p-workstyle .workstyle-item .ico::after {
    width: 30px;
    height: 30px;
  }
  .p-workstyle .workstyle-item .r-area {
    padding: 15px 20px 26px;
  }
  .p-workstyle .workstyle-item .ttl {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .p-workstyle .workstyle-item .txt {
    margin-top: 2px;
    font-size: 13px;
  }
  .p-workstyle .workstyle-item .note {
    margin-top: 5px;
    font-size: 10px;
  }
  .p-workstyle .workstyle-desc {
    margin-top: 10px;
    font-size: 13px;
  }
  .p-workstyle .diverse-list {
    margin-top: 20px;
  }
  .p-workstyle .diverse-item {
    padding: 30px 20px 18px 20px;
    border-radius: 20px;
  }
  .p-workstyle .diverse-item .ico {
    width: 60px;
    height: 60px;
  }
  .p-workstyle .diverse-item .ico::after {
    width: 45px;
    height: 45px;
  }
  .p-workstyle .diverse-item .ttl {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .p-workstyle .diverse-item .txt {
    margin-top: 6px;
    font-size: 13px;
  }
  .p-workstyle .comment-list {
    margin-top: 20px;
  }
  .p-workstyle .comment-item {
    grid-template-columns: 64px 1fr;
    padding-left: 0;
    gap: 20px;
  }
  .p-workstyle .comment-item + .comment-item {
    margin-top: 15px;
  }
  .p-workstyle .comment-item .ico-person {
    width: 60px;
    height: 60px;
  }
  .p-workstyle .comment-item .person-txt {
    font-size: 12px;
  }
  .p-workstyle .comment-item .r-area {
    padding: 15px 20px 20px;
    border-radius: 20px;
  }
  .p-workstyle .comment-item .comment-ttl {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .p-workstyle .comment-item .comment-ttl {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }
  .p-workstyle .comment-item .comment-txt {
    font-size: 13px;
    font-weight: 300;
  }
  .p-workstyle .benefit-area + .benefit-area {
    margin-top: 20px;
  }
  .p-workstyle .benefit-area + .benefit-area03 {
    margin-top: 60px;
  }
  .p-workstyle .benefit-list {
    padding: 24px 20px;
    border-radius: 20px;
  }
  .p-workstyle .benefit-item + .benefit-item {
    margin-top: 10px;
  }
  .p-workstyle .benefit-item .ttl {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .p-workstyle .benefit-item .ttl .small {
    font-size: 12px;
  }
  .p-workstyle .benefit-item .txt {
    font-size: 13px;
  }
  .p-workstyle .point-list {
    margin-top: 26px;
  }
  .p-workstyle .point-item {
    padding: 30px 20px 20px;
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .p-workstyle .point-item + .point-item {
    margin-top: 15px;
  }
  .p-workstyle .point-item .ttl-area {
    display: grid;
    grid-template-columns: 98px 1fr;
    gap: 20px;
  }
  .p-workstyle .point-item .ttl {
    font-size: 16px;
  }
  .p-workstyle .point-item .ttl {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
  .p-workstyle .point-item .txt {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
  }
  .p-workstyle .point-item .case-ttl {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .p-workstyle .point-item .case-list {
    margin-top: 8px;
  }
  .p-workstyle .point-item .case-item .inn {
    padding: 10px;
    font-size: 13px;
    line-height: 1.5;
  }
  .p-workstyle .holiday-wrap {
    padding: 14px 20px 24px;
    border-radius: 20px;
  }
  .p-workstyle .holiday-list > li {
    font-size: 13px;
  }
  .p-workstyle .holiday-list > li::before {
    top: 5px;
  }
  .p-workstyle .cert-list {
    margin-top: 20px;
    gap: 7px 12px;
  }
  .p-workstyle .cert-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 18px 18px 24px;
    border-radius: 12px;
  }
  .p-workstyle .cert-item:not(:first-child) .img-wrap {
    max-width: 85%;
  }
  .p-workstyle .cert-item .ttl {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
  }
  .p-workstyle .cert-item .ttl .small {
    font-size: 10px;
  }
  .p-workstyle .cert-item .img-wrap {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin-top: 0;
    height: auto;
  }
  .p-workstyle .cert-item .img-wrap.mt {
    margin-top: 4px;
  }
  .p-career-training .c-menu.bg {
    padding-bottom: 20px;
  }
  .p-career-training .p-desc {
    margin-top: 10px;
    font-size: 13px;
    font-weight: 300;
  }
  .p-career-training .career-section {
    padding-bottom: 0;
  }
  .p-career-training .career-inner {
    margin-top: 30px;
    margin-inline: calc(50% - 50vw);
    padding-inline: calc(50vw - 50%);
    padding-bottom: 20px;
    background: #fff;
  }
  .p-career-training .career-area + .career-area {
    position: relative;
    margin-top: 72px;
  }
  .p-career-training .career-area + .career-area::before {
    content: "";
    position: absolute;
    top: -42px;
    left: 0;
    right: 0;
    height: 1px;
    background: #dfdfdf;
  }
  .p-career-training .diag-block {
    margin-top: 16px;
  }
  .p-career-training .diag-block .img-desc {
    margin-top: 24px;
    font-size: 13px;
  }
  .p-career-training .diag-block .img-wrap {
    max-width: 450px;
    margin-inline: auto;
  }
  .p-career-training .training-inner {
    margin-top: 25px;
  }
  .p-career-training .training-area {
    margin-top: 15px;
  }
  .p-career-training .training-area .img-ttl {
    font-size: 14px;
    line-height: 1.5;
  }
  .p-career-training .training-area .img-ttl {
    margin-bottom: 10px;
  }
  .p-career-training .point-area {
    margin-top: 24px;
  }
  .p-career-training .point-block {
    padding: 24px;
    border-radius: 20px;
  }
  .p-career-training .point-block + .point-block {
    margin-top: 10px;
  }
  .p-career-training .point-block .top-area {
    padding-right: 0;
    grid-template-columns: 1fr 65px;
    gap: 10px;
  }
  .p-career-training .point-block .txt {
    font-size: 13px;
  }
  .p-career-training .point-block .ico {
    width: 65px;
    height: 65px;
  }
  .p-career-training .point-block .ico::before {
    width: 50px;
    height: 50px;
  }
  .p-career-training .point-block .bottom-area {
    margin-top: 12px;
    padding: 8px 14px;
    border-radius: 5px;
    font-size: 12px;
    line-height: 1.5;
  }
  .p-career-training .skill-area {
    margin-top: 38px;
  }
  .p-career-training .skill-desc {
    margin-top: 5px;
  }
  .p-career-training .skill-block {
    margin-top: 15px;
  }
  .p-career-training .skill-ttl {
    font-size: 14px;
    line-height: 1.5;
  }
  .p-career-training .cat-list-wrap {
    margin-top: 8px;
    padding: 24px 20px;
    border-radius: 20px;
  }
  .p-career-training .cat-item + .cat-item {
    margin-top: 24px;
  }
  .p-career-training .cat-item:not(:first-child) .cat-ttl {
    margin-bottom: 20px;
  }
  .p-career-training .cat-ttl {
    font-size: 14px;
    line-height: 1.5;
  }
  .p-career-training .cat-ttl {
    margin-bottom: 8px;
    padding-block: 5px;
  }
  .p-career-training .skill-list-wrap {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .p-career-training .skill-list {
    font-size: 13px;
    gap: 9px 14px;
  }
  .p-career-training .skill-list dt, .p-career-training .skill-list dd {
    padding-bottom: 8px;
  }
  .p-career-training .skill-list .ttl {
    margin-bottom: 0;
    padding-bottom: 4px;
  }
  .p-career-training .note-txt {
    margin-top: 14px;
    font-size: 10px;
  }
  .p-high-school .req-section {
    padding-top: 0;
  }
  .p-high-school .req-section .req-item {
    font-size: 13px;
    padding-block: 12px;
  }
  .p-high-school .req-section ul {
    margin-top: 22px;
  }
  .p-high-school .req-section li {
    padding-left: 15px;
  }
  .p-high-school .req-section li::before {
    top: 6px;
    width: 12px;
    height: 12px;
  }
  .p-high-school .video-section .video-ttl {
    font-size: 20px;
  }
  .p-high-school .video-section .video-ttl {
    margin-bottom: 8px;
  }
  .p-high-school .video-section .movie-wrap::after {
    width: 40px;
    height: 40px;
  }
  .p-high-school .video-section .time-txt {
    margin-top: 3px;
  }
  .p-high-school .download-section {
    padding-top: 36px;
  }
  .p-high-school .download-section .download-item {
    border-radius: 20px;
    padding: 30px 20px;
  }
  .p-high-school .download-section .download-item + .download-item {
    margin-top: 16px;
  }
  .p-high-school .download-section .download-ttl {
    font-size: 20px;
  }
  .p-high-school .download-section .download-txt {
    font-size: 13px;
    margin-top: 5px;
  }
  .p-high-school .download-section .img-area {
    margin-top: 24px;
  }
  .p-high-school .download-section .img-area img {
    max-width: 197px;
  }
  .p-high-school .recruit-info-cta .entry-section .entry-block {
    padding: 90px 40px;
  }
  .p-high-school .recruit-info-cta .entry-section .entry-block .txt {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .inner-block {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1280px;
  }
  .inner-block.mw-1216 {
    max-width: 1216px;
  }
  .inner-block.mw-1406 {
    max-width: 1406px;
  }
  .sp {
    display: none !important;
  }
  .c-header > .inner-block .btn-wrap .nav-btn.is-active .inn {
    left: 50px;
  }
  .header-entry-menu .box .cont .inn .inn-btn .txt {
    padding-block: 10px;
    padding-left: 28px;
  }
  .c-footer .top-area .link-list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-footer .top-area .link-list .c-nav-acc-box .nav-list > li > a {
    color: rgba(255, 255, 255, 0.6);
  }
  .c-footer .bottom-area .contents-wrap {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-footer .bottom-area .copyright {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
  #pagetop .c-arrow-btn::before {
    -webkit-mask-size: 30px;
            mask-size: 30px;
  }
  .c-ttl02.pc-center {
    text-align: center;
  }
  .c-nav-acc-box .nav-list {
    margin-top: 18px;
  }
  .c-link-list.holizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: min(50px, 3.4722222222vw);
  }
  .c-kv-section02 .c-breadcrumb {
    color: #fff;
  }
  .c-kv-section02 .c-breadcrumb > li:has(> a)::before {
    background: #fff;
  }
  .c-kv-section02 .c-breadcrumb > li + li::before {
    background: #fff;
  }
  .footer-recruit-section .contents-wrap .link-list > li:not(:last-child) {
    width: calc((100% - 70px) / 3);
  }
  .footer-recruit-section .contents-wrap .link-list > li:last-child {
    max-width: 678px;
    width: 100%;
    margin-inline: auto;
  }
  .footer-recruit-section .contents-wrap .link-list > li:last-child .contents-wrap {
    padding-block: 35px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .footer-recruit-section .contents-wrap .link-list .contents-wrap .ttl {
    text-align: center;
  }
  .c-cta-section .inner-block.flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .c-cta-section .inner-block.flex .c-link-list {
    width: 42%;
    margin-top: 0;
  }
  .c-cta-section .inner-block.flex .c-link-list > li {
    width: 100%;
  }
  .c-cta-section .c-link-list > li > a {
    border-top: none;
    border-bottom: 1px solid #e4e4e4;
    padding-top: 0;
    margin-top: 15px;
  }
  .c-cta-section .c-link-list > li:first-child > a, .c-cta-section .c-link-list > li:nth-child(2) > a {
    margin-top: 0;
  }
  .c-menu .menu-wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 15vh;
    padding-left: 24px;
  }
  .c-menu .menu-list > li {
    color: #bfbfbf;
    padding-block: 6.5px;
  }
  .c-menu .menu-list > li > a {
    display: inline-block;
    position: relative;
  }
  .c-menu .menu-list > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #CD1B1B;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .c-menu .menu-list > li > a:focus-visible::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .c-menu .menu-list > li > a.current {
    color: #000;
  }
  .c-menu .menu-list > li > a.current::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .c-bg-section .bg-inner {
    padding-left: 26%;
  }
  .c-recruit-info .tab-block .tab-list > li .tab-btn {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
  }
  .c-recruit-info .flow-section .flow-cont a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: #000;
  }
  .c-recruit-info .flow-section .flow-cont a::after {
    content: "";
    position: absolute;
    background: #fff;
    width: 100%;
    height: 1px;
    left: 0;
    bottom: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .c-recruit-info .recruit-info-cta .sns-section .sns-ttl .main {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
  }
  .c-recruit-info .recruit-info-cta .entry-section .entry-block-contact {
    padding-inline: 90px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .contact-ttl {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.5;
  }
  .c-recruit-info .recruit-info-cta .entry-section .info-ttl {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
  }
  .c-recruit-info .recruit-info-cta .entry-section .inn-btn .txt {
    padding-right: 20px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .inn-btn img {
    padding-right: 20px;
  }
  .home .company-section .txt-wrap .txt {
    max-width: 413px;
  }
  .home .interview-section .c-text-icon-link {
    position: absolute;
    bottom: -15px;
    z-index: 2;
    right: 40px;
  }
  .home .environment-section .sec-txt {
    max-width: 617px;
  }
  .p-work-advantage .c-kv-section {
    margin-bottom: 40px;
  }
  .message .copy-section .grid-wrap .txt-wrap {
    padding-top: 40px;
    padding-left: 4px;
    padding-bottom: 11px;
  }
  .message .message-section .message-list > li .cont .pro-wrap .white {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 114px;
  }
  .message .message-section .message-list > li .cont .blue-wrap {
    min-height: 430px;
  }
  .overview .intro-section .sec-txt {
    text-align: center;
    max-width: 804px;
    margin: 30px auto 0;
  }
  .overview .comp-section .area-wrap .sec-txt {
    max-width: 661px;
  }
  .p-job .flow-tag {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.8;
  }
  .p-job .skill-table-wrap03 {
    padding-right: 45px;
  }
  .field .field-section .gray-box .c-ttl03 {
    padding-inline: 8px;
  }
  .p-company-culture .img-block .pc01 {
    grid-row: 1/3;
  }
  .p-company-culture .img-block .pc02 {
    grid-row: 1/3;
    grid-column: 2/4;
  }
  .p-company-culture .img-block .pc03 {
    grid-row: 3/5;
    grid-column: 2/3;
  }
  .p-company-culture .img-block .pc04 {
    grid-row: 3/5;
    grid-column: 3/5;
  }
  .schedule .schedule-wrap .schedule-block .ttl-box .txt-wrap .lead-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-strengths .diff-section .detail-child {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-strengths .diff-section .txt-area {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .p-faq .faq-block .c-link-txt02 {
    display: inline-block;
  }
  .p-voices .q-inner {
    padding-left: 26%;
  }
  .p-voices .comment-block .txt {
    min-height: 87px;
  }
  .p-voices .comment-block .info {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .interview-detail .c-kv-section .mv-cont .white-box .top .name.en {
    letter-spacing: 0.05em;
  }
  .interview-detail .c-cta-section .interview-splide .splide__track {
    padding-left: 156px !important;
    padding-right: 156px !important;
  }
  .technical-skills .c-kv-section {
    padding-bottom: 120px;
  }
  .p-workstyle .workstyle-item .r-area {
    min-height: 213px;
  }
  .p-workstyle .point-item .txt {
    margin-top: 8px;
  }
  .p-workstyle .cert-item:not(:first-child) .img-wrap {
    max-width: 130px;
    margin-inline: auto;
  }
  .p-career-training .diag-block {
    margin-top: 30px;
    padding: 72px;
    padding-bottom: 78px;
    background: #fff;
    border-radius: 40px;
  }
  .p-high-school .download-section .download-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 120px;
  }
  .p-high-school .download-section .txt-area {
    width: calc(100% - 120px - 284px);
  }
}
@media only screen and (max-width: 767px) and (max-width: 350px) {
  .c-header > .inner-block .btn-wrap .entry-btn {
    padding: 13px 15px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .entry-block-contact {
    padding-inline: 10px;
  }
}
@media (any-hover: hover) {
  .c-header > .inner-block .btn-wrap .entry-btn:hover {
    background: #CD1B1B;
  }
  .c-header > .inner-block .btn-wrap .entry-btn:hover .en {
    color: #fff;
  }
  .c-header > .inner-block .btn-wrap .nav-btn:hover .inn {
    height: 17px;
  }
  .header-entry-menu .menu-close-btn:hover,
  .header-nav-menu .menu-close-btn:hover {
    border: 2px solid #000;
  }
  .header-entry-menu .menu-close-btn:hover::before, .header-entry-menu .menu-close-btn:hover::after,
  .header-nav-menu .menu-close-btn:hover::before,
  .header-nav-menu .menu-close-btn:hover::after {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
  .header-entry-menu .box .cont .inn .inn-btn:hover {
    border: 2px solid #CD1B1B;
  }
  .header-entry-menu .box .cont .inn .inn-btn:hover .c-arrow-btn::before {
    background: #fff;
  }
  .header-nav-menu .box .right .logo-wrap:hover {
    opacity: 0.8;
  }
  .header-nav-menu .box .right .insta-link:hover {
    background: #CCC;
    border-color: #000;
  }
  .c-footer .top-area .logo-btn-area .logo-area .logo-link:hover img {
    opacity: 0.7;
  }
  .c-footer .top-area .logo-btn-area .logo-area .social-link:hover {
    opacity: 0.7;
  }
  .c-footer .top-area .logo-btn-area .logo-area .social-link:hover img {
    opacity: 0.7;
  }
  .c-link-txt:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .c-link-txt02:hover::before {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
  }
  .c-link-txt03:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .c-nav-acc-box .nav-list > li a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .splide .splide__arrow:hover {
    background: #fff;
  }
  .splide .splide__arrow:hover::before {
    border-color: #000;
  }
  .c-link-list > li a:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .c-link-list > li a:hover .c-arrow-btn {
    color: #fff;
  }
  .c-breadcrumb li:has(> a):hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .c-interview-list > li > a:hover .top img {
    scale: 1.1;
  }
  .c-interview-list > li > a:focus-visible .top img {
    scale: 1.1;
  }
  .c-btn01:hover {
    background-position-x: left;
  }
  .c-btn01:hover::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .c-btn01:hover::before {
    background: #0068B7;
  }
  .c-arrow-btn:not(.no-hover):hover {
    color: #fff;
  }
  .c-arrow-btn:not(.no-hover):hover::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .c-arrow-btn.bg-blue:not(.no-hover):hover {
    color: #0068B7;
  }
  .c-arrow-btn.bg-blue:not(.no-hover):hover::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  a:hover .c-arrow-btn {
    color: #0068B7;
  }
  a:hover .c-arrow-btn::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  a:hover .c-arrow-btn.arrow-white {
    color: #fff;
  }
  .footer-formore-section .btn-area .btn:hover .c-arrow-btn {
    color: #fff;
  }
  .footer-formore-section .btn-area .btn:hover .c-arrow-btn::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .footer-recruit-section .contents-wrap .link-list .contents-wrap:hover {
    background: #CD1B1B;
  }
  .footer-recruit-section .contents-wrap .link-list .contents-wrap:hover .ttl {
    color: #fff;
  }
  .footer-recruit-section .contents-wrap .link-list .contents-wrap:hover .ttl .en {
    color: #fff;
  }
  .footer-recruit-section .contents-wrap .link-list .contents-wrap:hover .c-arrow-btn {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .footer-recruit-section .contents-wrap .link-list .contents-wrap:hover .c-arrow-btn::before {
    background: #CD1B1B;
  }
  .c-anchor-wrap .inner-block .anchor-list > li > a:hover::before {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .c-anchor-wrap .inner-block .anchor-list > li > a:hover .arrow-down::before {
    background: #fff;
  }
  .c-anchor-wrap .inner-block .anchor-list > li > a:hover .arrow-down::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .c-recruit-info .tab-block .tab-list > li .tab-btn:hover::after {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
  }
  .c-recruit-info .tab-block .tab-list > li .tab-btn:not(.is-active):hover {
    color: #0068B7;
    border-color: #0068B7;
    background: #fff;
  }
  .c-recruit-info .tab-block .tab-list > li .tab-btn:not(.is-active):hover::after {
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    background: #0068B7;
  }
  .c-recruit-info .flow-section .flow-cont a:hover::after {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .c-recruit-info .video-section .movie-wrap:hover > img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .c-recruit-info .recruit-info-cta .sns-section .insta-wrap:hover {
    background: #CCC;
    border-color: #000;
  }
  .c-recruit-info .recruit-info-cta .entry-section .inn-btn:hover {
    border: 2px solid #CD1B1B;
  }
  .c-recruit-info .recruit-info-cta .entry-section .inn-btn:hover .txt {
    color: #CD1B1B;
  }
  .c-recruit-info .recruit-info-cta .entry-section .inn-btn:hover .c-arrow-btn::before {
    background: #fff;
  }
  .c-recruit-info .modal-block .close-btn:hover > span::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .home .mv-section .inner-block .movie-box .movie .movie-btn:hover {
    border-color: #000;
  }
  .home .job-section .btn-wrap .job-link:hover img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .home .job-section .btn-wrap .job-link:hover .c-arrow-btn {
    color: #fff;
  }
  .home .job-section .btn-wrap .job-link:hover .c-arrow-btn::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .home .interview-section .interview-btn:hover {
    background: #fff;
    color: #0068B7;
  }
  .home .interview-section .c-text-icon-link:hover .c-arrow-btn {
    color: #fff;
  }
  .p-movie-gallery .movie-wrap:hover > img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .p-movie-gallery .modal-block .close-btn:hover > span::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .interview .keyword-wrap .btn-wrap .cont .btn-list > li label input[type=checkbox]:focus-visible + .tag-btn {
    background: #CCC;
  }
  .interview .keyword-wrap .btn-wrap .cont .btn-list > li label input[type=checkbox]:checked:focus-visible + .tag-btn {
    background: #0068B7;
    outline: 2px solid #000; /* フォーカス表示 */
    outline-offset: 2px;
  }
  .interview .keyword-wrap .reset-btn:hover {
    background: #dfdfdf;
  }
  .interview .int-list-wrap .more-btn:hover .txt::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .interview .int-list-wrap .more-btn:hover .c-arrow-btn::before {
    background: #fff;
  }
  .interview .int-list-wrap .more-btn:hover .c-arrow-btn::after {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .interview-detail .c-cta-section .cta-link:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .interview-detail .c-cta-section .cta-link:hover .c-arrow-btn {
    color: #fff;
  }
  .technical-skills .about-section .movie-wrap:hover > img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  .technical-skills .modal-block .close-btn:hover > span::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .technical-skills .modal-block .video-wrap .movie-btn:hover {
    border-color: #000;
  }
  .p-high-school .video-section .movie-wrap:hover > img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media only screen and (max-width: 950px) {
  .header-entry-menu .box .cont.top .inn {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-auto-rows: auto auto;
  }
  .header-entry-menu .box .cont.top .inn .inn-btn:last-child {
    grid-area: 2/2/3/3;
    margin-left: 0;
    margin-top: 20px;
  }
  .home .job-section .btn-wrap .job-link .bottom {
    padding-right: 55px;
    padding-left: 15px;
  }
  .home .job-section .btn-wrap .job-link .bottom .ja {
    font-size: 16px;
  }
  .overview .pro-section .num-wrap .num-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 800px;
    margin-inline: auto;
  }
  .overview .pro-section .num-wrap .num-list > li .cont .inn-num-wrap {
    width: 100%;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .overview .pro-section .num-wrap .num-list > li .cont .inn-num-wrap.start {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .overview .pro-section .num-wrap .num-list > li:first-child .cont {
    padding-inline: 45px;
  }
  .overview .pro-section .num-wrap .num-list > li:first-child .cont .num {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .overview .pro-section .num-wrap .num-list > li:first-child .cont .ico {
    width: 69px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(2) .cont .ico {
    width: 69px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont {
    max-width: 500px;
    margin: auto;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont {
    max-width: 500px;
    margin: auto;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(6) .cont .ico {
    width: 63px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(6) .cont .flex-box {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(7) .cont .ico {
    width: 83px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(8) .cont .ico {
    width: 67px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(9) .cont .ico {
    width: 72px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(10) .cont .ico {
    width: 51px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(10) .cont .num {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(11) .cont .ico {
    width: 72px;
  }
  .interview-detail .c-kv-section .mv-cont {
    padding-inline: 20px;
    max-width: 640px;
    margin-inline: auto;
  }
  .interview-detail .c-kv-section .mv-cont img {
    border-radius: 20px;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 335/261;
    -o-object-position: right;
       object-position: right;
  }
  .interview-detail .c-kv-section .mv-cont .white-box .inn {
    padding-inline: 0;
  }
  .interview-detail .c-kv-section .mv-cont .white-box .box {
    width: 0;
    height: 0;
  }
  .interview-detail .c-kv-section .mv-cont .white-box .box::before {
    content: none;
  }
  .interview-detail .c-kv-section .tag-box {
    padding-inline: 20px;
    margin-top: 20px;
    font-size: 13px;
  }
}
@media only screen and (max-width: 950px) and (max-width: 767px) {
  .header-entry-menu .box .cont.top .inn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .header-entry-menu .box .cont.top .inn .inn-btn:last-child {
    margin-top: 10px;
  }
  .home .job-section .btn-wrap .job-link .bottom {
    padding-right: 60px;
    padding-left: clamp(15px, 6.6666666667vw, 25px);
    padding-bottom: 25px;
  }
  .home .job-section .btn-wrap .job-link .bottom .ja {
    font-size: 13px;
  }
  .overview .pro-section .num-wrap .num-list {
    gap: 16px;
    margin-top: 30px;
  }
  .overview .pro-section .num-wrap .num-list > li:first-child .cont .ico {
    width: 36px;
    left: 6px;
    top: 9px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(2) .cont .ico {
    width: 42px;
    top: 9px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont {
    max-width: 270px;
    padding-block: 41px 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont {
    max-width: 270px;
    padding-block: 41px 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(6) .cont .ico {
    width: 39px;
    left: 0;
    top: 10px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(7) .cont .ico {
    width: 51px;
    top: 10px;
    left: 4px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(8) .cont .ico {
    width: 41.5px;
    top: 0;
    left: 0;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(9) .cont .ico {
    width: 44.5px;
    top: 0;
    left: 0;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(10) .cont .ico {
    width: 31px;
    left: 5px;
    top: 2px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(11) .cont .ico {
    width: 44.5px;
    top: 2px;
  }
}
@media only screen and (max-width: 950px) and (min-width: 768px) {
  .header-entry-menu .box .cont.top .inn .txt-wrap {
    width: 202px;
  }
}
@media only screen and (max-width: 1250px) {
  .header-nav-menu .box {
    display: block;
  }
  .header-nav-menu .box .left {
    max-width: 800px;
    margin: auto;
  }
  .header-nav-menu .box .right {
    max-width: 800px;
    margin: 40px auto 0;
  }
}
@media only screen and (max-width: 1250px) and (max-width: 767px) {
  .header-nav-menu .box {
    max-height: inherit;
    height: calc(100vh - 72px);
  }
  .header-nav-menu .box .left {
    display: block;
  }
  .header-nav-menu .box .right {
    padding-top: 60px;
    margin: 0;
    border-top: 1px solid #e4e4e4;
  }
}
@media only screen and (max-width: 350px) {
  .header-nav-menu .box .right .insta-link .ico {
    width: 35px;
  }
  .p-work-advantage .p-br01 {
    display: inline;
  }
}
@media only screen and (max-width: 767px) and (max-width: 370px) {
  .header-nav-menu .box .right .insta-link .txt {
    font-size: 12px;
  }
  #loading .loading-cont .loading-txt {
    font-size: 26px;
  }
  .message .copy-section .grid-wrap .txt-wrap .sec-txt {
    padding-inline: 20px;
  }
  .field .field-section .map-wrap .img .txt-box .lead {
    font-size: 14px;
  }
  .field .field-section .map-wrap .img .txt-box .inn-list {
    margin-top: 2px;
    margin-bottom: 7px;
  }
  .field .field-section .map-wrap .img .txt-box .inn-list > li {
    font-size: 11px;
  }
  .field .field-section .map-wrap .img .txt-box .inn-list + .lead {
    padding-top: 7px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 370px) and (max-width: 330px) {
  .header-nav-menu .box .right .insta-link .txt {
    font-size: 11px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 375px) {
  .c-ttl01:not(.js-anim) .en {
    font-size: 12.8vw;
  }
  .c-ttl01.js-anim .en {
    font-size: 12.8vw;
  }
}
@media only screen and (min-width: 361px) {
  .c-nav-acc-box .w-360 {
    display: none;
  }
}
@media only screen and (min-width: 981px) {
  .c-kv-section .inner-block {
    min-height: 460px;
  }
  .p-strengths .hyougo-section .img-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 34px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (max-width: 980px) {
  .c-kv-section .inner-block {
    padding-block: 40px;
  }
  .c-kv-section .ttl-block {
    max-width: none;
  }
  .c-kv-section .kv-img-wrap {
    margin-top: 20px;
  }
  .c-kv-section .kv-img {
    position: static;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
  }
  .c-kv-section02 .inner-block {
    padding-block: 150px;
  }
  .c-kv-section02 .en {
    max-width: 45%;
  }
  .p-work-advantage .merit-section {
    display: block;
    padding-block: 40px 80px;
  }
  .p-work-advantage .merit-section + .merit-section {
    padding-block: 0 80px;
  }
  .p-work-advantage .merit-section .c-link-list {
    margin-top: 10px;
  }
  .p-work-advantage .merit-section .diag-block {
    margin-top: 20px;
    border-radius: 14px;
  }
  .p-work-advantage .diag-block .diag-list {
    padding-bottom: 0;
  }
  .p-movie-gallery .movie-section {
    margin-block: 100px;
  }
  .p-movie-gallery .movie-ttl {
    margin-block: 20px;
  }
  .p-strengths .hyougo-section .merit-wrap {
    grid-template-columns: 1fr;
    grid-template-areas: "merit01" "img01" "merit02" "img02";
    gap: 30px;
    margin-inline: auto;
  }
  .p-strengths .hyougo-section .txt-area {
    display: contents;
  }
  .p-strengths .hyougo-section .img-area {
    display: contents;
  }
  .p-strengths .hyougo-section .img-wrap {
    margin-inline: auto;
    width: 100%;
    max-width: 370px;
    height: auto;
  }
}
@media only screen and (max-width: 980px) and (max-width: 767px) {
  .c-kv-section .inner-block {
    padding-block: 30px 60px;
  }
  .c-kv-section .kv-img-wrap {
    padding-left: 20px;
    margin-top: 10px;
  }
  .c-kv-section .kv-img {
    max-width: none;
  }
  .c-kv-section02 .inner-block {
    margin-top: -7.5%;
    padding-block: 0 54px;
  }
  .c-kv-section02 .en {
    max-width: 50%;
  }
  .p-movie-gallery .movie-section {
    margin-block: 40px 70px;
  }
  .p-movie-gallery .movie-ttl {
    margin-block: 15px 10px;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.5;
  }
  .p-strengths .hyougo-section .merit-wrap {
    margin-top: 22px;
    gap: 22px;
  }
}
@media only screen and (min-width: 1441px) {
  .c-kv-section .ttl-block {
    max-width: 34vw;
  }
  .c-cta-section .c-link-list {
    -webkit-column-gap: 163px;
       -moz-column-gap: 163px;
            column-gap: 163px;
  }
  .c-cta-section .c-link-list > li {
    width: calc((100% - 163px) / 2);
  }
  .c-anchor-wrap .inner-block .anchor-list {
    gap: 40px;
  }
  .c-anchor-wrap .inner-block .anchor-list > li {
    width: calc((100% - 80px) / 3);
  }
  .message .message-section .message-list {
    gap: 108px;
  }
  .message .message-section .message-list > li {
    width: calc((100% - 108px) / 2);
  }
  .field .field-section .map-wrap .img .txt-box {
    right: 53px;
  }
  .interview .int-list-wrap .c-interview-list {
    -webkit-column-gap: 36px;
       -moz-column-gap: 36px;
            column-gap: 36px;
  }
  .interview .int-list-wrap .c-interview-list > li {
    width: calc((100% - 72px) / 3);
  }
  .interview-detail .detail-section .bottom-img img {
    border-radius: 40px;
  }
  .technical-skills .about-section .about-table tr:first-child td {
    width: 72px;
  }
  .technical-skills .about-section .about-table tr:first-child th {
    width: calc((100% - 72px) / 6);
  }
}
@media only screen and (min-width: 1441px) and (min-width: 1921px) {
  .c-kv-section .ttl-block {
    max-width: 655px;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1441px) {
  .c-kv-section02 .kv-img img {
    border-radius: 50px;
    overflow: hidden;
  }
}
@media only screen and (min-width: 768px) and (max-width: 980px) {
  .c-kv-section02 .kv-img {
    position: absolute;
    max-width: none;
    margin: 0;
  }
  .c-recruit-info .c-kv-section02 .max-335 {
    display: none !important;
  }
  .p-company-culture .img-block {
    gap: 2%;
  }
  .p-workstyle .diverse-item {
    padding: 20px;
  }
  .p-career-training .point-block .top-area {
    gap: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1300px) {
  .c-kv-section02 .kv-img::before {
    height: 45%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1300px) and (max-width: 1040px) {
  .c-kv-section02 .kv-img::before {
    height: 35%;
  }
}
@media only screen and (max-width: 1200px) {
  .footer-formore-section .contents-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .home .job-section .btn-wrap .job-link .bottom .en {
    font-size: 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:first-child::before {
    left: -60px;
  }
  .interview-detail .c-kv-section .mv-cont .white-box {
    padding-top: 5vw;
  }
  .interview-detail .inner-block.detail-inner {
    padding-inline: 40px;
  }
  .interview-detail .detail-section .bottom-img {
    margin-right: -40px;
  }
  .interview-detail .c-cta-section .interview-splide .splide__arrows {
    padding-left: 40px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 767px) {
  .c-cta-section .c-ttl02 {
    font-size: 16px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .year-ttl {
    font-size: 16px;
  }
  .p-workstyle .cert-item .ttl {
    font-size: 14px;
    line-height: 1.5;
  }
}
@media only screen and (max-width: 1000px) {
  .c-cta-section .c-link-list {
    -webkit-column-gap: 6vw;
       -moz-column-gap: 6vw;
            column-gap: 6vw;
  }
  .c-cta-section .c-link-list > li {
    width: calc((100% - 6vw) / 2);
  }
  .home .mv-section .inner-block .movie-box .scroll-box {
    width: 140px;
    right: 12%;
  }
  .home .copy-section .copy-wrap .mask .en {
    font-size: 18px;
  }
  .home .copy-section .copy-wrap .mask .copy {
    font-size: 35px;
  }
  .home .copy-section .txt-box {
    padding-left: clamp(330px, 39vw, 390px);
  }
  .home .company-section .inner-block {
    gap: clamp(20px, 5vw, 50px);
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .home .company-section .img-wrap {
    width: clamp(300px, 43vw, 430px);
  }
  .message .copy-section .grid-wrap {
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
  }
  .message .copy-section .grid-wrap .img-wrap {
    padding-inline: 15px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, auto);
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 60px;
  }
  .message .copy-section .grid-wrap .img-wrap .img {
    position: relative;
  }
  .message .copy-section .grid-wrap .img-wrap .img:first-child {
    top: inherit;
    left: inherit;
    width: 93.3%;
    max-width: 400px;
    margin-top: 21px;
  }
  .message .copy-section .grid-wrap .img-wrap .img:nth-child(2) {
    top: inherit;
    right: inherit;
    margin-left: auto;
    margin-bottom: auto;
    width: 60.3%;
    max-width: 280px;
    margin-right: 24px;
  }
  .message .copy-section .grid-wrap .img-wrap .img:nth-child(3) {
    bottom: inherit;
    left: inherit;
    margin-left: 35px;
    width: 68.8%;
    max-width: 300px;
    margin-top: 30px;
  }
  .message .copy-section .grid-wrap .img-wrap .img:nth-child(4) {
    bottom: inherit;
    right: inherit;
    margin-left: auto;
    margin-top: -33px;
    width: 83.5%;
    max-width: 400px;
    margin-bottom: 44px;
  }
  .message .message-section .message-list > li {
    width: 100%;
    max-width: 500px;
  }
  .p-movie-gallery .movie-tag > li {
    min-width: 100px;
  }
  .overview .comp-section .base-wrap .base-list {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .overview .comp-section .base-wrap .base-list > li {
    width: 100%;
    max-width: 600px;
  }
  .overview .comp-section .area-wrap .area-list > li {
    padding-inline: 36px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(2) .cont .lead {
    font-size: 16px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box {
    gap: 2vw;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .graph .rod::before {
    left: -12px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 767px) {
  .c-cta-section .c-link-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 500px;
    margin: 18px auto 0;
  }
  .c-cta-section .c-link-list > li {
    width: 100%;
  }
  .home .mv-section .inner-block .movie-box .scroll-box {
    width: 112px;
    top: inherit;
    bottom: 17.4%;
  }
  .home .copy-section .copy-wrap .mask .en {
    font-size: 16px;
    margin-bottom: 0;
  }
  .home .copy-section .copy-wrap .mask .copy {
    font-size: 32px;
  }
  .home .copy-section .txt-box {
    margin-top: 20px;
    padding-left: 0;
  }
  .home .company-section .inner-block {
    display: block;
  }
  .message .copy-section .grid-wrap .img-wrap {
    padding-inline: 35px;
  }
  .p-movie-gallery .movie-tag > li {
    min-width: 93px;
    padding-inline: 8px;
    font-size: 10px;
  }
  .overview .comp-section .base-wrap .base-list {
    margin-top: 16px;
    gap: 16px;
  }
  .overview .comp-section .area-wrap .area-list > li {
    width: 100%;
    max-width: 500px;
    padding-block: 35px;
    border-radius: 20px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(2) .cont .lead {
    font-size: 12px;
    line-height: 1;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box {
    padding-top: 46px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    max-width: 500px;
    gap: 0;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .graph .rod::before {
    left: -8px;
    height: 1px;
    bottom: -1px;
  }
}
@media only screen and (max-width: 1125px) {
  .c-cta-section .c-link-list > li .small-txt {
    padding-left: 0;
    display: block;
  }
}
@media only screen and (max-width: 1125px) and (max-width: 767px) {
  .c-cta-section .c-link-list > li .small-txt {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.6;
  }
}
@media only screen and (max-width: 850px) {
  .c-anchor-wrap .inner-block {
    gap: 50px;
  }
}
@media only screen and (max-width: 850px) and (max-width: 800px) {
  .c-anchor-wrap .inner-block {
    gap: 30px;
  }
}
@media only screen and (max-width: 850px) and (max-width: 800px) and (max-width: 767px) {
  .c-anchor-wrap .inner-block {
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 400px) {
  .c-menu .menu-list.sp-1col {
    grid-template-columns: 1fr;
  }
  .c-menu .menu-list.sp-1col > li > a::after {
    right: 10px;
  }
}
@media only screen and (min-width: 768px) and (any-hover: hover) {
  .c-menu .menu-list > li > a:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
@media only screen and (max-width: 370px) {
  .c-menu.bg .menu-list {
    grid-template-columns: 1fr;
  }
  .c-menu.bg .menu-list > li > a::after {
    right: 10px;
  }
  .c-recruit-info .recruit-info-cta .sns-section .sns-ttl .br01 {
    display: inline;
  }
  .p-voices .c-menu .menu-list {
    grid-template-columns: 1fr;
  }
  .p-voices .c-menu .menu-list > li > a::after {
    right: 10px;
  }
  .interview-detail .max-370 {
    display: none !important;
  }
}
@media only screen and (min-width: 1921px) {
  .c-bg-section {
    margin-inline: calc(50% - 960px);
    padding-inline: calc(960px - 50%);
  }
  .p-voices .q-section {
    margin-inline: calc(50% - 960px);
    padding-inline: calc(960px - 50%);
  }
}
@media only screen and (min-width: 768px) and (max-width: 900px) {
  .c-bg-section .bg-inner {
    padding-left: 30%;
  }
  .p-voices .q-inner {
    padding-left: 30%;
  }
  .p-workstyle .diverse-list {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 1440px) and (min-width: 981px) {
  .c-recruit-info .c-kv-section02 .ttl-block {
    max-width: 38.7%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1005px) {
  .c-recruit-info .c-kv-section02 .br01 {
    display: inline;
  }
}
@media only screen and (max-width: 767px) and (max-width: 550px) {
  .c-recruit-info .c-kv-section02 .br01 {
    display: inline;
  }
  .c-recruit-info .c-kv-section02 .min-550 {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1160px) {
  .c-recruit-info .c-kv-section02 .min-550 {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 549px) {
  .c-recruit-info .c-kv-section02 .max-550 {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1161px) {
  .c-recruit-info .c-kv-section02 .max-550 {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1215px) and (min-width: 981px) {
  .c-recruit-info .c-kv-section02 .br02 {
    display: inline;
  }
}
@media only screen and (max-width: 767px) and (max-width: 335px) {
  .c-recruit-info .c-kv-section02 .br02 {
    display: inline;
  }
  .c-recruit-info .c-kv-section02 .min-335 {
    display: none !important;
  }
}
@media only screen and (min-width: 981px) and (max-width: 1215px) {
  .c-recruit-info .c-kv-section02 .min-335 {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) and (min-width: 336px) {
  .c-recruit-info .c-kv-section02 .max-335 {
    display: none !important;
  }
}
@media only screen and (min-width: 768px) and (min-width: 1216px) {
  .c-recruit-info .c-kv-section02 .max-335 {
    display: none !important;
  }
}
@media only screen and (max-width: 767px) and (max-width: 365px) {
  .c-recruit-info .tab-block .tab-list {
    padding-inline: 20px;
  }
  .c-recruit-info .tab-block .tab-list.row-3 > li .tab-btn {
    padding-inline: 5px;
  }
  .c-recruit-info .tab-block .tab-list > li .tab-btn {
    padding-inline: 5px;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 365px) and (max-width: 325px) {
  .c-recruit-info .tab-block .tab-list {
    padding-inline: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 767px) {
  .c-recruit-info .tab-block .tab-list > li .tab-btn {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .c-recruit-info .recruit-info-cta .sns-section .sns-ttl .main {
    font-size: 14px;
    line-height: 1.5;
  }
  .c-recruit-info .recruit-info-cta .entry-section .contact-ttl {
    font-size: 16px;
  }
  .c-recruit-info .recruit-info-cta .entry-section .info-ttl {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .p-job .flow-tag {
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
}
@media only screen and (max-width: 767px) and (max-width: 500px) {
  .c-recruit-info .req-section .req-list .req-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 560px) {
  .c-recruit-info .flow-section .flow-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 8px;
  }
  .c-recruit-info .flow-section .flow-ttl {
    padding-bottom: 8px;
    width: 100%;
    min-height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border-right: none;
    border-bottom: 1px solid #dfdfdf;
  }
  .c-recruit-info .flow-section .flow-ttl .ja {
    padding-bottom: 4px;
  }
}
@media only screen and (max-width: 767px) and (min-width: 561px) {
  .c-recruit-info .flow-section .flow-ttl {
    width: 110px;
    min-width: 110px;
  }
}
@media only screen and (max-width: 830px) {
  .c-recruit-info .video-section {
    display: block;
  }
  .c-recruit-info .video-section .movie-wrap {
    margin-top: 20px;
  }
  .p-high-school .video-section {
    display: block;
  }
  .p-high-school .video-section .movie-wrap {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 830px) and (max-width: 767px) {
  .c-recruit-info .video-section {
    padding-top: 64px;
    font-size: 13px;
  }
  .p-high-school .video-section {
    padding-top: 22px;
    font-size: 13px;
  }
}
@media only screen and (min-width: 1041px) {
  .c-recruit-info .video-section .txt-area {
    padding-top: 36%;
  }
  .p-high-school .video-section .txt-area {
    padding-top: 36%;
  }
}
@media only screen and (max-width: 1040px) {
  .c-recruit-info .video-section .txt-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-high-school .video-section .txt-area {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media only screen and (min-width: 831px) {
  .c-recruit-info .video-section .time-txt {
    text-align: right;
  }
  .p-high-school .video-section .time-txt {
    text-align: right;
  }
}
@media only screen and (min-width: 768px) and (max-width: 950px) {
  .c-recruit-info .recruit-info-cta .entry-section .entry-block-contact {
    padding-inline: 20px;
  }
}
@media only screen and (max-width: 1050px) {
  .c-recruit-info .recruit-info-cta .entry-section .entry-block.flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .home .job-section .btn-wrap .job-link .bottom .c-arrow-btn {
    right: 15px;
    bottom: 25px;
  }
}
@media only screen and (min-width: 1051px) {
  .c-recruit-info .recruit-info-cta .entry-section .year-ttl {
    width: 218px;
    min-width: 218px;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
  }
  .c-recruit-info .recruit-info-cta .entry-section .btn-wrap {
    width: 700px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 575px) {
  .c-recruit-info .recruit-info-cta .entry-section .btn-wrap {
    display: block;
  }
}
@media only screen and (max-width: 1190px) {
  .c-recruit-info .recruit-info-cta .entry-section .contact-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media only screen and (max-width: 767px) and (min-width: 481px) {
  .c-recruit-info .recruit-info-cta .entry-section .contact-wrap .contact.mail::before {
    top: 0;
    bottom: 0;
    margin: auto 0;
  }
}
@media only screen and (max-width: 1300px) {
  .home .copy-section .copy-wrap {
    width: 405px;
  }
  .home .copy-section .copy-wrap .mask .inn {
    padding-top: 60px;
    padding-bottom: 30px;
  }
  .home .copy-section .copy-wrap .mask .box {
    top: calc(100vh - 340px);
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1000px) {
  .home .copy-section .copy-wrap {
    width: 300px;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1000px) and (max-width: 767px) {
  .home .copy-section .copy-wrap {
    position: relative;
    margin-top: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    width: 100%;
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1200px) {
  .home .copy-section .copy-wrap .mask .inn {
    padding-bottom: 40px;
    padding-top: 100px;
  }
  .home .copy-section .copy-wrap .mask .box {
    top: calc(100vh - 300px);
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1200px) and (max-width: 1000px) {
  .home .copy-section .copy-wrap .mask .inn {
    padding-top: 120px;
    padding-bottom: 100px;
  }
  .home .copy-section .copy-wrap .mask .box {
    top: calc(100vh - 280px);
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1200px) and (max-width: 1000px) and (max-width: 900px) {
  .home .copy-section .copy-wrap .mask .inn {
    padding-top: 160px;
    padding-bottom: 100px;
  }
  .home .copy-section .copy-wrap .mask .box {
    top: calc(100vh - 240px);
  }
}
@media only screen and (max-width: 1300px) and (max-width: 1200px) and (max-width: 1000px) and (max-width: 900px) and (max-width: 767px) {
  .home .copy-section .copy-wrap .mask .inn {
    padding: 0;
    position: relative;
  }
  .home .copy-section .copy-wrap .mask .box {
    position: relative;
    top: 0;
  }
}
@media only screen and (max-width: 1100px) {
  .home .company-section .txt-wrap {
    width: clamp(335px, 40vw, 440px);
  }
  .home .environment-section .card .txt-wrap {
    width: clamp(250px, 36.3636363636vw, 400px);
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .num {
    font-size: 35px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .num .small {
    font-size: 20px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(3) {
    left: 80px;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 767px) {
  .home .company-section .txt-wrap {
    width: 100%;
  }
  .home .environment-section .card .txt-wrap {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1050px) {
  .home .job-section .btn-wrap .job-link .bottom .en {
    font-size: 30px;
  }
  .interview-detail .c-kv-section .mv-cont .white-box {
    padding-top: 3.8095238095vw;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1050px) and (max-width: 950px) {
  .home .job-section .btn-wrap .job-link .bottom .en {
    font-size: 24px;
  }
  .interview-detail .c-kv-section .mv-cont .white-box {
    position: relative;
    width: 100%;
    padding-top: 20px;
    min-height: inherit;
  }
}
@media only screen and (max-width: 767px) and (max-width: 340px) {
  .p-work-advantage .diag-block .diag-label01-01 {
    right: 8px;
  }
  .p-work-advantage .diag-block .diag-label01-02 {
    left: 8px;
  }
  .p-work-advantage .diag-block .diag-label02-01 {
    right: 5px;
  }
  .p-work-advantage .diag-block .diag-label02-02 {
    left: 8px;
  }
}
@media only screen and (max-width: 980px) and (max-width: 767px) and (max-width: 650px) {
  .p-movie-gallery .movie-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
@media only screen and (max-width: 1000px) and (max-width: 767px) and (max-width: 340px) {
  .p-movie-gallery .movie-tag > li {
    min-width: 90px;
  }
}
@media only screen and (max-width: 980px) and (max-width: 767px) and (max-width: 767px) {
  .p-movie-gallery .movie-ttl {
    font-size: 20px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 360px) {
  .overview .comp-section .ex-wrap .ex-list > li .cont .flex-wrap {
    gap: 20px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(6) .cont {
    padding-right: 0;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(8) .cont {
    padding-right: 0;
    padding-left: 35px;
  }
  .field .field-section .map-wrap .img .txt-box .inn-list > li:nth-child(2n+1) {
    width: 40%;
  }
  .field .field-section .map-wrap .img .txt-box .inn-list > li:nth-child(2n) {
    width: 60%;
  }
}
@media only screen and (max-width: 900px) {
  .overview .pro-section .our-wrap .our-list > li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .overview .pro-section .our-wrap .our-list > li .img {
    width: 100%;
    max-width: 500px;
  }
  .field .field-section .grid-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .field .field-section .grid-wrap .img {
    width: 100%;
    max-width: 500px;
  }
  .field .field-section .map-wrap .img .txt-box {
    right: 2.2222222222vw;
    top: 2.7777777778vw;
    padding-top: 20px;
    padding-bottom: 15px;
  }
  .schedule .schedule-wrap .schedule-block .ttl-box {
    grid-template-columns: auto;
    grid-template-rows: repeat(2, auto);
  }
  .schedule .schedule-wrap .schedule-block .ttl-box .img {
    width: 100%;
  }
  .schedule .schedule-wrap .schedule-block .ttl-box .img img {
    width: 100%;
  }
  .schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table tr:not(:last-child) td::before {
    width: calc(100% - 43px);
  }
  .schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table th {
    width: 80px;
  }
  .schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table td {
    padding-right: 20px;
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-wrap {
    padding-block: 10px 80px;
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 27px;
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list > li > a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-block: 6px;
    padding-right: 20px;
    height: 100%;
    font-size: 13px;
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list > li > a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #dfdfdf;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list > li > a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 15px;
    height: 100%;
    background: #CD1B1B;
    -webkit-mask: url("../img/common/arrow.svg") no-repeat center/15px auto;
            mask: url("../img/common/arrow.svg") no-repeat center/15px auto;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
  .technical-skills .about-section .about-table {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
    margin-inline: auto;
  }
  .technical-skills .about-section .about-table tr {
    min-height: 720px;
  }
  .technical-skills .about-section .about-table tr:first-child {
    width: 38.2089552239%;
  }
  .technical-skills .about-section .about-table tr:first-child td {
    width: 100%;
    height: 54px;
  }
  .technical-skills .about-section .about-table tr:first-child th {
    width: 100%;
    line-height: 1;
    padding-left: 20px;
    text-align: start;
    padding-block: 40px;
    min-height: 111px;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
  .technical-skills .about-section .about-table tr:first-child th::before {
    width: 76.5%;
    height: 1px;
    left: 20px;
    left: inherit;
    bottom: inherit;
  }
  .technical-skills .about-section .about-table tr:nth-child(2) {
    width: 61.7910447761%;
  }
  .technical-skills .about-section .about-table tr:nth-child(2) th {
    padding-block: 15px;
    min-height: 54px;
    padding-left: clamp(5px, 6.6666666667vw, 25px);
  }
  .technical-skills .about-section .about-table tr:nth-child(2) td::before {
    width: 84.5410628019%;
    height: 1px;
    top: 0;
    left: 12px;
  }
  .technical-skills .about-section .about-table tr:nth-child(2) td {
    min-height: 111px;
    padding-top: 0;
    padding-bottom: 0;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    font-size: 14px;
    padding-left: clamp(5px, 6.6666666667vw, 25px);
  }
  .technical-skills .about-section .about-table tr {
    display: inline-block;
    height: 100%;
  }
  .technical-skills .about-section .about-table th,
  .technical-skills .about-section .about-table td {
    display: block;
  }
}
@media only screen and (max-width: 900px) and (max-width: 767px) {
  .overview .pro-section .our-wrap .our-list > li {
    gap: 24px;
  }
  .field .field-section .grid-wrap {
    gap: 25px;
  }
  .field .field-section .map-wrap .img .txt-box {
    bottom: 24px;
    top: inherit;
    right: 0;
    left: 0;
    margin: auto;
    width: clamp(250px, 76.5333333333vw, 350px);
    padding-block: 17px 19px;
    padding-inline: clamp(15px, 5.3333333333vw, 20px);
    border-radius: 10px;
  }
  .schedule .schedule-wrap .schedule-block .ttl-box {
    border-radius: 20px;
  }
  .schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table tr:not(:last-child) td::before {
    width: calc(100% - 39px);
    left: 20px;
  }
  .schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table th {
    width: 64px;
  }
  .schedule .schedule-wrap .schedule-block .table-wrap .table-box .schedule-table td {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 13px;
    min-height: 64px;
    padding-inline: 20px 19px;
    font-weight: 400;
  }
  .technical-skills .about-section .about-table {
    margin-top: 15px;
  }
  .technical-skills .about-section .about-table tr:first-child th {
    font-size: 14px;
  }
  .technical-skills .about-section .about-table tr:nth-child(2) th {
    font-size: 14px;
  }
  .technical-skills .about-section .about-table tr:nth-child(2) td {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 900px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .num {
    font-size: 30px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .num .small {
    font-size: 18px;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 900px) and (max-width: 850px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .num {
    font-size: 24px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .num .small {
    font-size: 17px;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 900px) and (max-width: 850px) and (max-width: 767px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .num {
    font-size: 16px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .num .small {
    font-size: 12px;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 900px) and (max-width: 850px) and (max-width: 767px) and (max-width: 370px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .num {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 900px) and (max-width: 767px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(3) .cont .graph-box .inn .graph {
    height: 71px;
  }
}
@media only screen and (max-width: 1170px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:first-child {
    right: -10px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:first-child::before {
    left: -20px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(2) {
    left: -10px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(3) {
    left: 100px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:first-child {
    right: 20px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(2) {
    left: 30px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(2)::before {
    left: 16px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1080px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:first-child {
    right: -20px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(3) {
    left: 90px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1080px) and (max-width: 950px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:first-child {
    right: 30px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(3) {
    left: 135px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1080px) and (max-width: 950px) and (max-width: 767px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:first-child {
    top: 17px;
    right: 0;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(3) {
    left: 66px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 767px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:first-child::before {
    background: url("../img/overview/graph-border01-sp.svg") no-repeat center/contain;
    width: 95px;
    height: 39px;
    left: -15px;
    bottom: -40px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1100px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(2) {
    left: -20px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:first-child {
    right: 10px;
  }
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(2) {
    left: 20px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1100px) and (max-width: 950px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(2) {
    left: 25px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1100px) and (max-width: 950px) and (max-width: 767px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(4) .cont .graph-txt-box:nth-child(2) {
    left: 0;
    top: 83px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1100px) and (max-width: 1065px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:first-child {
    right: -10px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1100px) and (max-width: 1065px) and (max-width: 990px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:first-child {
    right: -20px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1100px) and (max-width: 1065px) and (max-width: 990px) and (max-width: 950px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:first-child {
    right: 50px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1100px) and (max-width: 1065px) and (max-width: 990px) and (max-width: 950px) and (max-width: 767px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:first-child {
    right: 17px;
    top: 40px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1065px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:first-child::before {
    left: -50px;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 1065px) and (max-width: 767px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:first-child::before {
    background: url("../img/overview/graph-border04-sp.svg") no-repeat center/contain;
    width: 80px;
    height: 25px;
    bottom: -24px;
    left: -27px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1100px) and (max-width: 1050px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(2) {
    left: 0;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1100px) and (max-width: 1050px) and (max-width: 950px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(2) {
    left: 65px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1100px) and (max-width: 1050px) and (max-width: 950px) and (max-width: 767px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(2) {
    left: 21px;
    top: 66px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1050px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(2)::before {
    left: 10px;
  }
}
@media only screen and (max-width: 1170px) and (max-width: 1050px) and (max-width: 767px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(2)::before {
    background: url("../img/overview/graph-border05-sp.svg") no-repeat center/contain;
    width: 70px;
    height: 40px;
    bottom: -22px;
    left: 1px;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 1050px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(3) {
    left: 60px;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 1050px) and (max-width: 950px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(3) {
    left: 130px;
  }
}
@media only screen and (max-width: 1100px) and (max-width: 1050px) and (max-width: 950px) and (max-width: 767px) {
  .overview .pro-section .num-wrap .num-list > li:nth-child(5) .cont .graph-txt-box:nth-child(3) {
    left: 59px;
    top: 4px;
  }
}
@media only screen and (min-width: 1201px) {
  .p-job .skill-table02 tbody th {
    padding-inline: 30px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 767px) and (max-width: 370px) {
  .field .field-section .map-wrap .img .txt-box {
    bottom: 4.0540540541vw;
    padding-block: 10px;
  }
}
@media only screen and (max-width: 940px) {
  .p-company-culture .policy-block {
    gap: 20px;
  }
  .p-company-culture .policy-block .policy-wrap {
    padding: 45px 26px 26px;
  }
}
@media only screen and (max-width: 940px) and (max-width: 767px) {
  .p-company-culture .policy-block {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 940px) and (max-width: 767px) and (max-width: 575px) {
  .p-company-culture .policy-block {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media only screen and (max-width: 1110px) {
  .p-company-culture .policy-block .policy-ttl::after {
    width: 70px;
    height: 70px;
    right: 0;
  }
}
@media only screen and (max-width: 1110px) and (max-width: 767px) {
  .p-company-culture .policy-block .policy-ttl::after {
    right: 30px;
  }
}
@media only screen and (max-width: 1110px) and (max-width: 767px) and (max-width: 360px) {
  .p-company-culture .policy-block .policy-ttl::after {
    right: 0;
  }
}
@media only screen and (max-width: 767px) and (max-width: 460px) {
  .p-company-culture .img-block {
    grid-template-rows: repeat(7, 82px);
  }
  .p-career-training .point-block .top-area {
    grid-template-areas: "ttl ttl" "txt ico";
    gap: 5px 24px;
  }
}
@media only screen and (max-width: 1150px) {
  .interview .int-list-wrap .c-interview-list {
    max-width: 900px;
    margin-inline: auto;
  }
  .interview .int-list-wrap .c-interview-list > li {
    width: calc((100% - 2.5vw) / 2);
  }
}
@media only screen and (max-width: 1150px) and (max-width: 767px) {
  .interview .int-list-wrap .c-interview-list {
    max-width: 500px;
    row-gap: 35px;
  }
  .interview .int-list-wrap .c-interview-list > li {
    width: 100%;
  }
}
@media only screen and (min-width: 901px) {
  .schedule .schedule-wrap .schedule-block .ttl-box .img img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-wrap {
    position: -webkit-sticky;
    position: sticky;
    top: 15vh;
    padding-left: 24px;
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list > li {
    color: #bfbfbf;
    padding-block: 6.5px;
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list > li > a {
    display: inline-block;
    position: relative;
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list > li > a::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #CD1B1B;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list > li > a:focus-visible::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list > li > a.current {
    color: #000;
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list > li > a.current::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .technical-skills .about-section .about-table tr:nth-child(2) th {
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
    padding-top: 33px;
  }
}
@media only screen and (max-width: 970px) {
  .p-voices .comment-wrap {
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media only screen and (min-width: 371px) {
  .interview-detail .min-370 {
    display: none !important;
  }
}
@media only screen and (max-width: 1200px) and (max-width: 767px) {
  .interview-detail .inner-block.detail-inner {
    padding-inline: 20px;
  }
  .interview-detail .detail-section .bottom-img {
    margin-right: -20px;
    margin-top: 60px;
  }
  .interview-detail .c-cta-section .interview-splide .splide__arrows {
    padding-left: 20px;
    margin-top: 25px;
    padding-bottom: 0;
    gap: 10px;
  }
}
@media only screen and (max-width: 1439px) {
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap {
    grid-template-columns: 20% auto;
    gap: 6%;
  }
}
@media only screen and (max-width: 1439px) and (max-width: 900px) {
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap {
    display: block;
    padding-block: 50px 80px;
  }
}
@media only screen and (max-width: 900px) and (max-width: 400px) {
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list.sp-1col {
    grid-template-columns: 1fr;
  }
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list.sp-1col > li > a::after {
    right: 10px;
  }
}
@media only screen and (min-width: 901px) and (any-hover: hover) {
  .interview-detail .inner-block.detail-inner .c-menu-section-wrap .menu-list > li > a:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1200px) {
  .interview-detail .c-cta-section .interview-splide .splide__track {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .p-workstyle .point-item .case-list {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}
@media only screen and (max-width: 800px) {
  .technical-skills .state-section .img-box .img {
    width: 100%;
    max-width: 500px;
    margin-inline: auto;
  }
  .technical-skills .state-section .flex-box .inn {
    width: 100%;
  }
}
@media only screen and (max-width: 1220px) {
  .p-workstyle .workstyle-item {
    grid-template-columns: 1fr;
  }
  .p-workstyle .workstyle-item .l-area {
    padding-block: 13px;
    gap: 8px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 640px) {
  .p-workstyle .diverse-list {
    grid-template-columns: 1fr;
  }
}
@media only screen and (min-width: 931px) {
  .p-workstyle .benefit-list02 .benefit-item {
    grid-template-columns: 270px 1fr;
  }
}
@media only screen and (max-width: 930px) {
  .p-workstyle .benefit-item {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  .p-workstyle .point-item .case-area {
    padding-left: 0;
    border-left: none;
    padding-top: 15px;
    border-top: 1px solid #bfbfbf;
  }
}
@media only screen and (min-width: 768px) and (max-width: 930px) {
  .p-workstyle .point-item {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 767px) and (max-width: 720px) {
  .p-workstyle .point-item .case-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 830px) {
  .p-workstyle .holiday-wrap {
    grid-template-columns: auto 150px;
  }
}
@media only screen and (max-width: 767px) and (max-width: 580px) {
  .p-workstyle .holiday-wrap {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 1210px) {
  .p-workstyle .cert-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1100px) {
  .p-high-school .download-section .download-item {
    padding: 40px;
    gap: 40px;
  }
  .p-high-school .download-section .txt-area {
    width: calc(100% - 40px - 284px);
  }
  .p-high-school .download-section .c-btn01 {
    padding: 35px 30px;
  }
  .p-high-school .download-section .c-btn01::before {
    right: 30px;
  }
}