@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Caveat:wght@400..700&family=Noto+Sans+JP:wght@100..900&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

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

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

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

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

body {
  font-size: 16px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif, Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  color: #333;
  margin: 0;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

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

p {
  font-size: 16px;
  font-size: 1rem;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  padding: 0;
  font: inherit;
  color: inherit;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

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

@media screen and (min-width: 768px) and (max-width: 1025px) {
  p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

/* =============================================
フッター定義
============================================= */
.l-footer {
  position: relative;
  width: 100%;
  height: 500px;
  height: 31.25rem;
  overflow: hidden;
  z-index: 1;
}

.l-footer__wave-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
  z-index: 1;
}

.l-footer__inner {
  position: relative;
  z-index: 2;
  padding: 250px 30px 20px;
  padding: 15.625rem 1.875rem 1.25rem;
}

.l-footer__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  gap: 1.875rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  border-bottom: 1px solid #fff;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.l-footer__logo {
  width: 21.5%;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.l-footer__logo img {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

.l-footer__logo:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

.l-footer__logo-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
}

.l-footer__nav {
  width: 60.5%;
}

.l-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 30px;
  gap: 1.25rem 1.875rem;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.l-footer__item {
  color: #fff;
  font-weight: bold;
}

.l-footer__item-link {
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.l-footer__item-link:hover {
  color: #19DEFF;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.l-footer__item-link--corp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-footer__item-link--corp img, .l-footer__item-link--corp svg {
  width: 21px;
  width: 1.3125rem;
  height: 17px;
  height: 1.0625rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-footer__item-link--corp:hover svg path {
  fill: #19DEFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-footer__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  gap: 1.25rem;
}

.l-footer__bottom-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
  gap: 0.75rem;
  width: 55%;
}

.l-footer__bottom-info-text {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.l-footer__bottom-info-text:hover {
  color: #19DEFF;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.l-footer__bottom-copyright {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
}

.l-footer__bottom-info-text--corp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.l-footer__bottom-info-text--corp svg {
  width: 20px;
  width: 1.25rem;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-footer__bottom-info-text--corp:hover svg {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-footer__bottom-info-text--corp:hover svg path {
  fill: #19DEFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-footer__bottom-info-icon {
  width: 20px;
  width: 1.25rem;
}

@media screen and (max-width: 767px) {
  .l-footer {
    height: 49.6875rem;
  }
  .l-footer__inner {
    padding: 15.9375rem 1.875rem 2.8125rem;
  }
  .l-footer__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5625rem;
    padding-bottom: 1.875rem;
  }
  .l-footer__logo {
    width: 13.75rem;
  }
  .l-footer__logo img {
    margin-bottom: 0.3125rem;
  }
  .l-footer__logo-text {
    font-size: 0.875rem;
  }
  .l-footer__nav {
    width: 100%;
  }
  .l-footer__item-link {
    padding: 0;
    font-size: 0.9375rem;
  }
  .l-footer__item-link::after {
    bottom: 0;
  }
  .l-footer__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.8125rem;
  }
  .l-footer__bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
  .l-footer__bottom-info {
    width: 100%;
  }
  .l-footer__bottom-copyright {
    font-size: 0.875rem;
  }
}

.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 35px;
  gap: 2.1875rem;
  padding-right: 35px;
  padding-right: 2.1875rem;
  position: relative;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 5;
}

.l-header__logo {
  display: block;
  width: 30.7%;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, .25);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, .25);
  border-radius: 0 0 1.25rem 0;
  background-color: #fff;
  max-width: 400px;
}

.l-header__logo img {
  width: 60.1%;
  margin: 0 auto;
}

.l-header__logo-link {
  padding: 25px 25px;
  padding: 1.5625rem 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
}

.l-header__logo-text {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: bold;
  color: #1748B1;
}

.l-header-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.l-header-links__item {
  position: relative;
  padding: 15px 30px;
  padding: 0.9375rem 1.875rem;
  border-radius: 6.25rem;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.6;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#D0B0FF));
  background: linear-gradient(to right, #125EFF, #D0B0FF);
  background: #fff;
  color: #fff;
  min-width: 250px;
  min-width: 15.625rem;
  display: block;
  -webkit-transition: background,color 0.3s ease-in-out;
  transition: background,color 0.3s ease-in-out;
  -webkit-box-shadow: 0 0.625rem 1.875rem rgba(23, 72, 177, .25);
          box-shadow: 0 0.625rem 1.875rem rgba(23, 72, 177, .25);
}

.l-header-links__item svg {
  position: absolute;
  right: 20px;
  right: 1.25rem;
  width: 38.4px;
  width: 2.4rem;
  height: 10.1px;
  height: 0.63125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}

.l-header-links__item svg path {
  -webkit-transition: stroke 0.2s ease-in-out;
  transition: stroke 0.2s ease-in-out;
}

.l-header-links__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 102%;
  height: 111%;
  border-radius: 1.875rem;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  opacity: 0;
  z-index: -1;
}

.l-header-links__item--first {
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#D0B0FF));
  background: linear-gradient(to right, #125EFF, #D0B0FF);
}

.l-header-links__item--second {
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
}

.l-header-links__item:hover {
  background: #fff;
  color: #125EFF;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header-links__item:hover::after {
  right: 16px;
  right: 1rem;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}

.l-header-links__item:hover::before {
  opacity: 1;
}

.l-header-links__item:hover svg {
  right: 16px;
  right: 1rem;
  -webkit-transition: right 0.3s ease-in-out;
  transition: right 0.3s ease-in-out;
}

.l-header-links__item:hover svg path {
  stroke: #125EFF;
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}

.l-header-links__btn-inner {
  position: relative;
  z-index: 5;
}

.l-header-links__btn {
  width: 67px;
  width: 4.1875rem;
  height: 67px;
  height: 4.1875rem;
  border-radius: 50%;
  background-color: #fff;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  color: #125EFF;
  font-weight: bold;
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-transition: all  0.3s ease-in-out;
  transition: all  0.3s ease-in-out;
  -webkit-box-shadow: 0 0.625rem 1.875rem rgba(23, 72, 177, .2);
          box-shadow: 0 0.625rem 1.875rem rgba(23, 72, 177, .2);
}

.l-header-links__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 108%;
  height: 108%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  z-index: -1;
  opacity: 0;
}

.l-header-links__btn svg {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.l-header-links__btn figure {
  position: absolute;
  width: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header-links__btn figure:nth-child(1) {
  top: 20%;
}

.l-header-links__btn figure:nth-child(2) {
  top: 50%;
}

.l-header-links__btn figure:nth-child(3) {
  top: 80%;
}

.l-header-links__btn.is-active .l-header-links__btn-icon {
  top: 50%;
  width: 60%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  height: 30px;
  height: 1.875rem;
}

.l-header-links__btn.is-active .l-header-links__btn-text {
  opacity: 0;
}

.l-header-links__btn.is-active figure {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header-links__btn.is-active figure img, .l-header-links__btn.is-active figure svg {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header-links__btn.is-active figure:nth-child(1) {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  height: 3px;
  height: 0.1875rem;
  border-radius: 0.1875rem;
  width: 100%;
  -webkit-transform: translate(-50%, 0.5rem) rotate(45deg);
          transform: translate(-50%, 0.5rem) rotate(45deg);
}

.l-header-links__btn.is-active figure:nth-child(2) {
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header-links__btn.is-active figure:nth-child(3) {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  height: 3px;
  height: 0.1875rem;
  border-radius: 0.1875rem;
  width: 100%;
  -webkit-transform: translate(-50%, -0.6875rem) rotate(-45deg);
          transform: translate(-50%, -0.6875rem) rotate(-45deg);
}

.l-header-links__btn:hover {
  -webkit-transition: background-image  0.3s ease-in-out;
  transition: background-image  0.3s ease-in-out;
  padding: 3px;
  padding: 0.1875rem;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  -webkit-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  border: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header-links__btn:hover .l-header-links__btn-icon-line {
  fill: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header-links__btn:hover .l-header-links__btn-text {
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header-links__btn:hover figure {
  background: #fff !important;
}

.l-header-links__btn:not(.is-active):hover figure {
  -webkit-transition: all 0.3s  ease-in-out;
  transition: all 0.3s  ease-in-out;
  -webkit-animation: icon-flash 0.7s ease-out;
          animation: icon-flash 0.7s ease-out;
}

.l-header-links__btn:not(.is-active):hover .l-header-links__btn-icon {
  -webkit-animation: icon-flash 0.5s  ease-out;
          animation: icon-flash 0.5s  ease-out;
}

.l-header-links__btn:not(.is-active):hover .l-header-links__btn-icon::after {
  left: 155%;
  -webkit-transition: all 1.0s ease-in-out;
  transition: all 1.0s ease-in-out;
  opacity: 1;
}

@-webkit-keyframes icon-flash {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes icon-flash {
  0% {
    opacity: 1;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.l-header-links__btn-text {
  font-size: 12px;
  font-size: 0.75rem;
  position: absolute;
  top: 72%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.l-header-links__btn-icon-line {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header-links__btn-icon {
  position: absolute;
  top: 40%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50%;
  height: 25px;
  height: 1.5625rem;
  overflow: hidden;
  opacity: 1;
  -webkit-transition: opacity 0.4s ease-out;
  transition: opacity 0.4s ease-out;
}

.l-header-links__btn-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -54%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: 125%;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
}

.l-header__nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #125EFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  z-index: 1;
  overflow-x: hidden;
}

.l-header__circle-bg {
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  background-color: #125EFF;
  border-radius: 50%;
  position: absolute;
  top: 50px;
  top: 3.125rem;
  right: 35px;
  right: 2.1875rem;
  z-index: -1;
  max-width: 100vw;
  -webkit-transform: scale(0);
          transform: scale(0);
}

.l-header__nav-title {
  font-family: "Caveat", cursive;
  font-size: 40px;
  font-size: 2.5rem;
  color: #00CEC7;
  line-height: 1.6;
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}

.l-header__nav-left {
  width: 59%;
  height: 100%;
  padding: 100px 20px;
  padding: 6.25rem 1.25rem;
}

.l-header__nav-left-inner {
  width: 73.5%;
  margin: 0 auto;
  min-width: 300px;
  min-width: 18.75rem;
}

.l-header__nav-right {
  width: 41%;
  height: 100%;
  background-color: #fff;
  padding: 100px 20px;
  padding: 6.25rem 1.25rem;
}

.l-header__nav-right-inner {
  width: 75%;
  margin: 0 auto;
  min-width: 200px;
  min-width: 12.5rem;
}

.l-header__item-right {
  color: #1235E2;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
  position: relative;
}

.l-header__item-link-right {
  padding: 18px 0;
  padding: 1.125rem 0;
  display: inline-block;
  line-height: 1.6;
  position: relative;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.l-header__item-link-right:hover {
  color: #19DEFF;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.l-header__nav-right-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 18px;
  gap: 1.125rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
  position: relative;
  z-index: 1;
}

.l-header__nav-right-btn .l-header-links__item::before {
  height: 111%;
  width: 101.2%;
}

.l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.l-header__item {
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  border-bottom: 1px solid #fff;
  border-bottom: 0.0625rem solid #fff;
  font-weight: bold;
  position: relative;
}

.l-header__item:last-child {
  border-bottom: none;
}

.l-header__item:hover .l-header__item-arrow {
  -webkit-transform: translateY(-50%) translateX(4px);
          transform: translateY(-50%) translateX(4px);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.l-header__item:hover .l-header__item-arrow path {
  stroke: #19DEFF;
  -webkit-transition: stroke 0.3s ease-in-out;
  transition: stroke 0.3s ease-in-out;
}

.l-header__item:hover .l-header__item-link {
  color: #19DEFF;
  -webkit-transition: color 0.3s, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s, -webkit-transform 0.3s ease-in-out;
  transition: color 0.3s, transform 0.3s ease-in-out;
  transition: color 0.3s, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.l-header__item-link {
  padding: 20px 0;
  padding: 1.25rem 0;
  display: block;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}

.l-header__item-arrow {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.l-header__item-link-right--contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}

.l-header__item-link-right--contact svg {
  width: 25px;
  width: 1.5625rem;
  height: 23px;
  height: 1.4375rem;
  position: relative;
  top: 2px;
  left: -7px;
}
@media screen and (max-width: 767px) {
  .l-header__item-link-right--contact svg {
    top: -1px;
  }
}

.l-header__item-link-right--contact svg path {
  fill: #125EFF;
  -webkit-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}

.l-header__item-link-right--contact:hover svg path {
  fill: #19DEFF;
  -webkit-transition: fill 0.3s ease-in-out;
  transition: fill 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .l-header {
    gap: 0.9375rem;
    padding-right: 0.9375rem;
  }
  .l-header__logo {
    width: 75%;
    max-width: 20rem;
  }
  .l-header__logo img {
    width: 64%;
  }
  .l-header__logo-link {
    padding: 1.125rem 0.75rem;
    gap: 0.3125rem;
  }
  .l-header__logo-text {
    font-size: 0.625rem;
  }
  .l-header__nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-header__nav-left {
    width: 100%;
    padding: 1.25rem 0.9375rem 0.625rem;
    height: auto;
  }
  .l-header__nav-right {
    width: 100%;
    padding: 2.1875rem 1.25rem 5.9375rem;
    font-size: 0.9375rem;
  }
  .l-header__nav-right-btn {
    margin-top: 0.625rem;
    gap: 0.625rem;
  }
  .l-header__item {
    font-size: 0.9375rem;
  }
  .l-header-links__item {
    min-width: auto;
    display: none;
  }
  .l-header__nav-title {
    margin-bottom: 0.625rem;
    font-size: 2.125rem;
  }
  .l-header__item-link {
    padding: 0.8125rem 0;
  }
  .l-header__item-link-right {
    padding: 0.1875rem 0;
    font-size: 0.9375rem;
  }
  .l-header-links__btn {
    width: 3.125rem;
    height: 3.125rem;
    line-height: 4.375rem;
    font-size: 0.5rem;
  }
  .l-header-links__btn svg {
    width: 1.5625rem;
    height: 0.9375rem;
  }
  .l-header-links__btn-icon {
    height: 1.25rem;
  }
  .l-header-links__btn.is-active figure:nth-child(1) {
    -webkit-transform: translate(-50%, 7px) rotate(45deg);
            transform: translate(-50%, 7px) rotate(45deg);
  }
  .l-header-links__btn.is-active figure:nth-child(3) {
    -webkit-transform: translate(-50%, -11px) rotate(-45deg);
            transform: translate(-50%, -11px) rotate(-45deg);
  }
  .l-header-links__btn-text {
    font-size: 0.5rem;
  }
  .l-header__nav-left-inner, .l-header__nav-right-inner {
    width: 100%;
  }
  .l-header__item-link-right::after {
    bottom: 0.5rem;
  }
  .l-header__nav-right-btn .l-header-links__item {
    display: block;
  }
  .l-header__nav-right-inner .l-header__list {
    gap: 0.3125rem;
    margin-bottom: 1.5625rem;
  }
}

@media screen and (max-width: 440px) {
  .l-header__logo img {
    width: 60%;
  }
  .l-header__logo-link {
    padding: 1.125rem 0.5rem;
  }
}

.l-main {
  width: 100%;
  position: relative;
}

.l-main__inner {
  padding: 150px 25px 100px;
  padding: 9.375rem 1.5625rem 6.25rem;
  max-width: 1130px;
  max-width: 70.625rem;
  margin: 0 auto;
}

.l-main__subpage-wave {
  height: 440px;
  height: 27.5rem;
  width: 100vw;
  margin-top: 60px;
  margin-top: 3.75rem;
  position: absolute;
  z-index: -1;
}

.l-main__subpage-wave-canvas01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 600px;
  height: 37.5rem;
  z-index: -1;
  pointer-events: none;
}

.l-main__subpage-wave-canvas02 {
  position: absolute;
  top: 140px;
  top: 8.75rem;
  left: 0;
  width: 100% !important;
  height: 500px;
  height: 31.25rem;
  pointer-events: none;
}

.l-main__subpage-wave-canvas03 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  z-index: -1;
}

.l-main-second {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  gap: 2.1875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  opacity: 0;
}

.l-main-second .c-head {
  width: 49.5%;
}

.l-main-second__img {
  width: 47%;
  position: relative;
}

.l-main-second__img::before {
  content: "";
  display: block;
  padding-top: 56.77291%;
}

.l-main-second__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 1.25rem;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .l-main__inner {
    padding: 7.5rem 0.9375rem 1.875rem;
  }
  .is-pc {
    display: none;
  }
  .l-main__subpage-wave-canvas02 {
    top: 5.4375rem;
  }
  .l-main-second {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-main-second .c-head {
    width: 100%;
  }
  .l-main-second__img {
    width: 100%;
  }
}

.c-btn {
  display: inline-block;
  border-radius: 6.25rem;
  border: 3px solid #125EFF;
  border: 0.1875rem solid #125EFF;
  padding: 18px 85px 18px 30px;
  padding: 1.125rem 5.3125rem 1.125rem 1.875rem;
  background-color: #fff;
  color: #125EFF;
  font-weight: 600;
  font-size: 16px;
  font-size: 1rem;
  position: relative;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.c-btn:hover {
  background-color: #125EFF;
  color: #fff;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.c-btn:hover .c-btn__arrow {
  right: 25px;
  right: 1.5625rem;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}

.c-btn:hover .c-btn__arrow path {
  stroke: #fff;
}

.c-btn__arrow {
  position: absolute;
  right: 30px;
  right: 1.875rem;
  top: 48%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 38px;
  width: 2.375rem;
  -webkit-transition: right 0.3s ease;
  transition: right 0.3s ease;
}

.c-btn--gradient01 {
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#D0B0FF));
  background: linear-gradient(to right, #125EFF, #D0B0FF);
  color: #fff;
  border: none !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.c-btn--gradient01 path {
  stroke: #fff;
}

.c-btn--gradient01::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 101.2%;
  height: 110.5%;
  border-radius: 6.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  opacity: 0;
  z-index: -1;
}

.c-btn--gradient01:hover {
  background: #fff;
  color: #125EFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-btn--gradient01:hover::before {
  opacity: 1;
}

.c-btn--gradient01:hover .c-btn__arrow path {
  stroke: #125EFF;
}

.c-btn--gradient02 {
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  color: #fff;
  border: none !important;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
}

.c-btn--gradient02 path {
  stroke: #fff;
}

.c-btn--gradient02::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 101.2%;
  height: 110.5%;
  border-radius: 6.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  opacity: 0;
  z-index: -1;
}

.c-btn--gradient02:hover {
  background: #fff;
  color: #125EFF;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.c-btn--gradient02:hover .c-btn__arrow path {
  stroke: #125EFF;
}

.c-btn--gradient02:hover::before {
  opacity: 1;
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .c-btn {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .c-btn {
    padding: 0.9375rem 5.3125rem 0.9375rem 1.875rem;
  }
}

.c-head {
  opacity: 0;
}

.c-head__en {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: -0.04em;
  font-family: "Caveat", cursive;
  color: #00CEC7;
  min-width: 110px;
}

.c-head__h1 {
  font-size: 48px;
  font-size: 3rem;
  font-weight: 600;
  color: #1748B1;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.c-head__text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: #1748B1;
  line-height: 1.7;
}

.c-head__h2 {
  font-size: 35px;
  font-size: 2.1875rem;
  font-weight: 500;
  color: #1748B1;
  text-align: center;
  margin-bottom: 45px;
  margin-bottom: 2.8125rem;
  position: relative;
}

.c-head__h2::after {
  content: "";
  position: absolute;
  top: 120%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  width: 2.5rem;
  height: 9px;
  height: 0.5625rem;
  background-image: url(/recruit/assets/images/svg/header-wave-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.c-head__h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #1748B1;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  text-align: center;
}

.c-head__intro {
  line-height: 2.5;
  text-align: center;
  color: #1748B1;
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

.c-head__sub-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #1748B1;
  line-height: 1.7;
  max-width: 830px;
  max-width: 51.875rem;
  margin: 0 auto;
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .c-head__sub-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .c-head__en {
    font-size: 1.875rem;
  }
  .c-head__h1 {
    font-size: 1.5rem;
    margin-bottom: 0.625rem;
  }
  .c-head__ja {
    font-size: 1rem;
  }
  .c-head__h2 {
    font-size: 1.4375rem;
    margin-bottom: 2.4375rem;
  }
  .c-head__h3 {
    font-size: 1.125rem;
  }
  .c-head__text {
    font-size: 1.125rem;
  }
  .c-head__intro {
    line-height: 2;
    margin-bottom: 2.1875rem;
    text-align: left;
  }
  .c-head__sub-text {
    text-align: left;
  }
}

.c-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #e6fcff;
  /* 全体の淡い水色 */
  border-radius: 1.25rem;
  overflow: hidden;
  font-size: 16px;
  font-size: 1rem;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
          box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
  margin: 0 auto;
}

.c-table tr {
  height: 64px;
  height: 4rem;
}

.c-table th, .c-table td {
  padding: 17px 12px;
  padding: 1.0625rem 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
}

.c-table th {
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(90deg, #125EFF 0%, #00CEC7 100%);
  color: #fff;
  font-weight: bold;
  width: 170px;
  width: 10.625rem;
  min-width: 120px;
  min-width: 7.5rem;
  border-bottom: 3px solid #fff;
  border-bottom: 0.1875rem solid #fff;
}

.c-table tr:first-child th {
  border-top-left-radius: 20px;
  border-top-left-radius: 1.25rem;
}

.c-table tr:last-child th {
  border-bottom-left-radius: 20px;
  border-bottom-left-radius: 1.25rem;
  border-bottom: none;
}

.c-table tr:last-child td {
  border-bottom: none;
}

.c-table td {
  background: #e6fcff;
  color: #0056a3;
  border-bottom: 3px solid #fff;
  border-bottom: 0.1875rem solid #fff;
  padding: 15px 20px 15px 30px;
  padding: 0.9375rem 1.25rem 0.9375rem 1.875rem;
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .c-table th, .c-table td {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .c-table {
    display: block;
    background: none;
    border-radius: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .c-table tr {
    display: block;
    height: auto;
    overflow: hidden;
  }
  .c-table th, .c-table td {
    display: block;
    width: 100%;
    padding: 0.9375rem;
    border: none;
  }
  .c-table th {
    background: -webkit-gradient(linear, left top, left bottom, from(#125EFF), to(#00CEC7));
    background: linear-gradient(180deg, #125EFF 0%, #00CEC7 100%);
  }
  .c-table td {
    background: #e6fcff;
    padding: 0.9375rem;
  }
  .c-table tr:first-child th {
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
  }
  .c-table tr:last-child th {
    border-bottom-left-radius: 0;
  }
  .c-table tr:last-child td {
    border-bottom-left-radius: 1.25rem;
    border-bottom-right-radius: 1.25rem;
  }
}

.c-page-top {
  width: 140px;
  width: 8.75rem;
  height: 140px;
  height: 8.75rem;
  background: linear-gradient(110deg, #125EFF 0%, #19DEFF 100%);
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  bottom: 1.875rem;
  right: 50px;
  right: 3.125rem;
  z-index: 3;
  -webkit-transition: bottom 0.4s ease-in-out;
  transition: bottom 0.4s ease-in-out;
  -webkit-box-shadow: 0 0.625rem 1.875rem rgba(23, 72, 177, .5);
          box-shadow: 0 0.625rem 1.875rem rgba(23, 72, 177, .5);
}

.c-page-top:hover .c-page-top__icon {
  -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: translateX(0.3125rem) translateY(-0.375rem);
          transform: translateX(0.3125rem) translateY(-0.375rem);
}

.c-page-top:hover .c-page-top__arrow {
  -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: translateY(-0.1875rem);
          transform: translateY(-0.1875rem);
}

.c-page-top__inner {
  width: 100%;
  height: 100%;
  position: relative;
}

.c-page-top__icon {
  position: absolute;
  bottom: 8%;
  right: -20%;
  width: 84%;
  -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-page-top__text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #fff;
  font-weight: bold;
  padding-top: 20px;
  padding-top: 1.25rem;
  text-align: center;
}

.c-page-top__arrow {
  display: inline-block;
  width: 16px;
  width: 1rem;
  height: 14px;
  height: 0.875rem;
  -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;
}

@media screen and (max-width: 767px) {
  .c-page-top {
    width: 5.625rem;
    height: 5.625rem;
    bottom: 1.25rem;
    right: 1.875rem;
  }
  .c-page-top__text {
    font-size: 0.625rem;
    padding-top: 0.75rem;
  }
  .c-page-top__arrow {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.c-jump {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  gap: 1.125rem;
}

.c-jump__item {
  display: block;
  padding: 18px 70px 18px 30px;
  padding: 1.125rem 4.375rem 1.125rem 1.875rem;
  color: #1235E2;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6.25rem;
  background-color: #fff;
  border: 2px solid #F3F3F3;
  border: 0.125rem solid #F3F3F3;
  position: relative;
  width: 30%;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.c-jump__item::after {
  background-image: url(/recruit/assets/images/svg/arrow-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 42px;
  width: 2.625rem;
  height: 12px;
  height: 0.75rem;
  position: absolute;
  content: "";
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  -webkit-transition: top 0.2s ease-in-out;
  transition: top 0.2s ease-in-out;
}

.c-jump__item:hover {
  background-color: #F3F3F3;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.c-jump__item:hover::after {
  top: 60%;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .c-jump {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 2.1875rem auto;
  }
  .c-jump__item {
    width: 85%;
  }
}

.p-about-mv {
  background: -webkit-gradient(linear, left top, left bottom, from(#e4ecff), to(#fff));
  background: linear-gradient(to bottom, #e4ecff, #fff 100%);
  position: relative;
  height: 730px;
  height: 45.625rem;
}

.p-about-mv__inner {
  padding: 230px 20px;
  padding: 14.375rem 1.25rem;
  max-width: 1000px;
  max-width: 62.5rem;
  margin: 0 auto;
}

.p-about-mv__box {
  padding: 35px 60px 45px;
  padding: 2.1875rem 3.75rem 2.8125rem;
  background-color: #1748B1;
  border-radius: 2.5rem;
  color: #fff;
  position: relative;
  z-index: 1;
  width: 88%;
  margin: 0 auto;
  opacity: 0;
}

.p-about-mv__title {
  width: 97%;
  margin: 0 auto 26px;
  margin: 0 auto 1.625rem;
}

.p-about-mv__back {
  position: absolute;
  top: 57px;
  top: 3.5625rem;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-about-section__info-img-text {
  font-size: 12px;
  color: #1AA2EB;
  font-weight: 500;
  padding-left: 8px;
  padding-left: 0.5rem;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-about-mv__jump {
  margin-top: 95px;
  margin-top: 5.9375rem;
  opacity: 0;
}

.p-about-section {
  position: relative;
  overflow: hidden;
}

.p-about-section__wave {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-about-section__inner {
  padding: 150px 20px 60px;
  padding: 9.375rem 1.25rem 3.75rem;
  max-width: 1100px;
  max-width: 68.75rem;
  margin: 0 auto;
  position: relative;
}

.p-about-section__inner--short {
  max-width: 900px;
  padding: 0 20px;
  padding: 0 1.25rem;
  margin: 100px 0 0 auto;
  margin: 6.25rem 0 0 auto;
}

.p-about-section__inner--short:nth-child(odd) {
  margin: 100px auto 0 0;
  margin: 6.25rem auto 0 0;
}

.p-about-section__inner--short .p-about-section__box {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 40px;
  gap: 2.5rem;
}

.p-about-section__inner--amount {
  max-width: 670px;
}

.p-about-section__inner--ship {
  max-width: 820px;
}

.p-about-section__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-about-section__box--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-about-section__title {
  width: 54px;
  width: 3.375rem;
  margin-top: 30px;
  margin-top: 1.875rem;
  margin-left: 60px;
  margin-left: 3.75rem;
}

.p-about-section__text {
  font-weight: 500;
  line-height: 1.7;
  color: #1748B1;
  margin: 10px 0;
  margin: 0.625rem 0;
}

.p-about-section__title-en {
  font-size: 136px;
  font-size: 8.5rem;
  font-weight: 600;
  position: absolute;
  top: -45px;
  top: -2.8125rem;
  left: -70px;
  left: -4.375rem;
  opacity: 0.2;
  background: -webkit-gradient(linear, left bottom, left top, from(#D390FF), to(#9747FF));
  background: linear-gradient(to top, #D390FF, #9747FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  z-index: -1;
}

.p-about-section__title-en--history {
  background: -webkit-gradient(linear, left top, left bottom, from(#125EFF), to(#19DEFF));
  background: linear-gradient(to bottom, #125EFF, #19DEFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  left: auto;
  right: -85px;
  right: -5.3125rem;
}

.p-about-section__head--history .p-about-section__title {
  margin-left: 0;
  margin-right: 60px;
  margin-right: 3.75rem;
}

.p-about-section__title-en--future {
  font-size: 130px;
  font-size: 6.5rem;
  background: -webkit-gradient(linear, left bottom, left top, from(#00CEC7), to(#00E47D));
  background: linear-gradient(to top, #00CEC7, #00E47D);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  white-space: nowrap;
  top: -30px;
  top: -1.875rem;
  left: -41px;
  left: -2.5625rem;
  line-height: 1;
}

.p-about-section__catch--future {
  width: 50%;
}

.p-about-section__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  gap: 1.875rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-about-section__wrap:nth-child(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-about-section__content {
  width: 73%;
}

.p-about-section__wrap-img {
  width: 50%;
  position: relative;
}

.p-about-section__wrap-img::before {
  content: "";
  display: block;
  padding-top: 62.16216%;
}

.p-about-section__wrap-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}

.p-about-section__wrap-text {
  width: 48%;
}

.p-about-section__wrap-net {
  width: 44%;
}

.p-about-section__wrap--roro {
  width: 47%;
}

.p-about-section__wrap-net-img {
  width: 47%;
}

.p-about-section__wrap-text-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.p-about-section__catch {
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
}

.p-about-section__catch--about02 {
  width: 95%;
  margin-left: auto;
}

.p-about-section__catch--history01 {
  width: 64%;
}

.p-about-section__gird {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  gap: 1.5625rem;
}

.p-about-section__gird-text {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #1748B1;
  font-weight: 500;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-about-section__info {
  border-radius: 1.25rem;
  background-color: rgba(18, 172, 255, .15);
  padding: 45px 30px 30px;
  padding: 2.8125rem 1.875rem 1.875rem;
  position: relative;
  margin: 60px auto 30px;
  margin: 3.75rem auto 1.875rem;
}

.p-about-section__info-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  gap: 1.25rem;
}

.p-about-section__info-box--chassis {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 35px;
  gap: 2.1875rem;
}

.p-about-section__info-box--chassis .p-about-section__info-img {
  width: 40%;
}

.p-about-section__info-head {
  position: absolute;
  top: 0;
  left: 28px;
  left: 1.75rem;
  font-size: 55px;
  font-size: 3.4375rem;
  font-family: "Caveat", cursive;
  font-weight: 500;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #12ACFF;
}

.p-about-section__info-text {
  width: 48%;
}

.p-about-section__info-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
  color: #1748B1;
}

.p-about-section__info-img {
  width: 47%;
}

.p-about-section__carry-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  text-align: center;
  color: #12ACFF;
}

.p-about-section__carry-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 1.875rem;
  margin-bottom: 150px;
  margin-bottom: 9.375rem;
}

.p-about-section__carry-item {
  position: relative;
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-about-section__carry-item::before {
  content: "";
  display: block;
  padding-top: 76.2963%;
}

.p-about-section__carry-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
}

.p-about-section__carry-item:nth-child(2) {
  margin-top: 0;
}

.p-about-section__carry-comment-box {
  position: absolute;
  top: -62px;
  top: -3.875rem;
  left: 0%;
}

.p-about-section__carry-comment {
  width: 124px;
  width: 7.75rem;
  height: 124px;
  height: 7.75rem;
  border-radius: 50%;
  background-color: #12ACFF;
  line-height: 124px;
  line-height: 7.75rem;
  text-align: center;
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
}

.p-about-section__carry-comment::before {
  content: "";
  position: absolute;
  width: 25px;
  width: 1.5625rem;
  height: 25px;
  height: 1.5625rem;
  background-color: #12ACFF;
  left: 79%;
  top: 70%;
  -webkit-transform: rotate(12deg);
          transform: rotate(12deg);
  -webkit-clip-path: polygon(50% 15%, 0 100%, 100% 100%);
          clip-path: polygon(50% 15%, 0 100%, 100% 100%);
}

.p-about-section__carry-comment-box--02 {
  top: auto;
  bottom: 0;
  left: 0%;
  -webkit-transform: translateY(35%);
          transform: translateY(35%);
}

.p-about-section__carry-comment-box--02 .p-about-section__carry-comment::before {
  top: 5%;
  -webkit-transform: rotate(-70deg);
          transform: rotate(-70deg);
}

.p-about-section__carry-comment-box--03 {
  top: 0;
  left: auto;
  right: 0;
  -webkit-transform: translateY(-70%) translateX(50%);
          transform: translateY(-70%) translateX(50%);
}

.p-about-section__carry-comment-box--03 .p-about-section__carry-comment::before {
  top: 81%;
  left: 13%;
  -webkit-transform: rotate(-35deg);
          transform: rotate(-35deg);
}

.p-about-section__chassis-img {
  margin-bottom: 27px;
  margin-bottom: 1.6875rem;
}

.p-about-section__wrap-amount {
  width: 52%;
}

.p-about-section__wrap-ship {
  width: 58%;
}

.p-about-section__catch-head {
  border-radius: 3.125rem;
  background: -webkit-gradient(linear, left top, right top, from(#00CEC7), to(#00E47D));
  background: linear-gradient(to right, #00CEC7, #00E47D);
  padding: 7.5px 40px;
  padding: 0.46875rem 2.5rem;
  margin-bottom: 0;
  width: 97%;
  max-width: 360px;
}

.p-about-section__catch-head img {
  margin: 0 auto;
}

.p-about-section__future {
  margin-bottom: 60px;
  margin-bottom: 3.75rem;
}

.p-about-section__future-img {
  margin-bottom: 32px;
  margin-bottom: 2rem;
}

.p-about-section__future-head {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: bold;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  color: #00C8C1;
}

.p-about-section__future-head-map {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-about-section__box--future {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-about-more {
  position: relative;
}

.p-about-more::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(#CDF8F6), to(#fff));
  background: linear-gradient(to bottom, #CDF8F6, #fff);
  z-index: -1;
}

.p-about-more .p-index__head {
  font-weight: bold;
}

.p-about-more__inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 90px 20px 130px;
  padding: 5.625rem 1.25rem 8.125rem;
}

.p-about-more__list {
  margin: 50px 0;
  margin: 3.125rem 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  gap: 1.875rem;
}

.p-about-more__item {
  position: relative;
}

.p-about-more__item:hover .p-about-more__item-img img {
  scale: 1.05;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}

.p-about-more__item:hover .p-about-more__item-box-arrow {
  -webkit-transform: translateX(5px);
          transform: translateX(5px);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-about-more__item-img {
  position: relative;
  width: 87%;
  margin: 0 auto;
  z-index: 2;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
  overflow: hidden;
  border-radius: 1.25rem;
}

.p-about-more__item-img::before {
  content: "";
  display: block;
  padding-top: 56.80473%;
}

.p-about-more__item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1.25rem;
  z-index: 2;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
  object-position: 22% 50%;
}

.p-about-more__item-box {
  height: 200px;
  height: 12.5rem;
  border-radius: 1.25rem;
  padding: 120px 35px 20px;
  padding: 7.5rem 2.1875rem 1.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.p-about-more__item-box-text {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
}

.p-about-more__item-box-arrow {
  width: 38px;
  width: 2.375rem;
  height: 12px;
  height: 0.75rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-about-section__inner--short .p-about-section__box--amount {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  gap: 13px;
  gap: 0.8125rem;
}

.p-about-section__inner--short .p-about-section__box--amount img {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .p-about-section__carry-comment {
    font-size: 12px;
  }
  .p-about-section__info-title {
    font-size: 16px;
  }
  .p-about-more__item-box-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .p-about-mv {
    height: auto;
  }
  .p-about-mv__inner {
    padding: 8.4375rem 1.25rem 1.25rem;
  }
  .p-about-mv__box {
    width: 100%;
    padding: 1.25rem 0.9375rem 1.25rem;
  }
  .p-about-mv__title-sp {
    width: 100%;
    margin-bottom: 1.0625rem;
  }
  .p-about-mv__text-sp {
    width: 93%;
    margin: 0 auto;
  }
  .p-about-mv__jump {
    margin-top: 1.875rem;
  }
  .p-about-mv__back {
    top: 0rem;
  }
  .p-about-section__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-about-section__title-en {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    font-size: 5.375rem;
    left: 0;
    right: auto;
    top: -4.375rem;
    line-height: 1;
  }
  .p-about-section__inner {
    padding: 7.5rem 0.9375rem 1.875rem;
  }
  .p-about-section__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 1.875rem;
  }
  .p-about-section__content {
    width: 100%;
  }
  .p-about-section__wrap-img {
    width: 100%;
  }
  .p-about-section__wrap-text {
    width: 100%;
  }
  .p-about-section__wrap-net {
    width: 100%;
  }
  .p-about-section__wrap-text-title {
    font-size: 1.125rem;
  }
  .p-about-section__catch {
    width: 82%;
    margin-bottom: 0;
    max-width: 330px;
  }
  .p-about-section__wrap:nth-child(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-about-section__catch--about02 {
    margin-left: 0;
  }
  .p-about-section__title-sp {
    margin-left: auto;
  }
  .p-about-section__head--history {
    margin-left: auto;
  }
  .p-about-section__inner--short {
    padding: 0;
    margin-top: 4.375rem;
  }
  .p-about-section__gird {
    gap: 0.625rem;
  }
  .p-about-section__catch--history01 {
    width: 100%;
    margin-bottom: 0;
  }
  .p-about-section__wrap--history {
    gap: 0.625rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-about-section__wrap-net-img {
    width: 100%;
  }
  .p-about-section__info {
    padding: 2.8125rem 0.9375rem 1.875rem;
    margin: 2.5rem auto 1.875rem;
  }
  .p-about-section__info-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
  .p-about-section__info-box .p-about-section__info-img {
    width: 100%;
  }
  .p-about-section__info-text, .p-about-section__info-img {
    width: 100%;
  }
  .p-about-section__info-head {
    left: 1.25rem;
  }
  .p-about-section__info-title {
    font-size: 1rem;
    font-weight: 600;
  }
  .p-about-section__inner--short:nth-child(odd) {
    margin-top: 4.375rem;
  }
  .p-about-section__wrap--roro {
    width: 100%;
  }
  .p-about-section__wrap-ship {
    width: 100%;
  }
  .p-about-section__wrap-amount {
    width: 100%;
  }
  .p-about-section__wrap-amount img {
    margin: 0 auto;
  }
  .p-about-section__carry-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.125rem;
    max-width: 450px;
    margin: 0 auto 4.375rem;
  }
  .p-about-section__carry-item {
    width: 50%;
    margin-top: 0;
  }
  .p-about-section__carry-item .p-about-section__carry-comment {
    left: 0;
    -webkit-transform: translateX(-120%);
            transform: translateX(-120%);
  }
  .p-about-section__carry-item .p-about-section__carry-comment::before {
    top: 50%;
    left: 103%;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
  }
  .p-about-section__carry-item:nth-child(odd) {
    margin-left: auto;
  }
  .p-about-section__carry-item:nth-child(even) .p-about-section__carry-comment {
    right: 0;
    left: auto;
    -webkit-transform: translateX(210%);
            transform: translateX(210%);
  }
  .p-about-section__carry-item:nth-child(even) .p-about-section__carry-comment::before {
    top: 50%;
    left: -3%;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
            transform: translate(-50%, -50%) rotate(-90deg);
  }
  .p-about-section__carry-comment {
    width: 7.625rem;
    height: 7.625rem;
    line-height: 7.625rem;
  }
  .p-about-section__carry-comment-box {
    top: 10%;
    -webkit-transform: none;
            transform: none;
    right: auto;
    width: 100%;
  }
  .p-about-section__carry-comment-box--02 {
    position: absolute;
  }
  .p-about-section__title-en--future {
    font-size: 3.5rem;
    left: 0;
    top: -3.75rem;
    width: 95vw;
    line-height: 1.4;
    white-space: wrap;
  }
  .p-about-section__box--future {
    gap: 6.25rem;
  }
  .p-about-section__catch-head {
    margin: 0 auto 1.6875rem;
  }
  .p-about-section__future:first-of-type .p-about-section__catch-head {
    margin: 0 auto;
  }
  .p-about-section__future-head {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
  }
  .p-about-section__future-img {
    max-width: 420px;
    margin: 0 auto;
  }
  .p-about-more__inner {
    padding: 2.1875rem 0.9375rem 5rem;
  }
  .p-about-more__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 6.25rem;
    margin-bottom: 0;
  }
  .p-about-more__item-box {
    padding: 6.25rem 1rem 1.0625rem;
    height: auto;
  }
  .p-about-section__inner--short .p-about-section__box {
    gap: 0.9375rem;
  }
  .p-about-section__text {
    font-size: 0.875rem;
    margin-top: 0.875rem;
  }
  .p-about-section__carry-title {
    font-size: 1.125rem;
  }
  .p-about-section__box--roro {
    gap: 0.625rem;
  }
  .p-about-section__box--roro img {
    margin-bottom: 0;
  }
  .p-about-section__box--roro .p-about-section__text {
    margin-top: 0;
  }
  .p-about-more .p-index__head {
    font-size: 1.875rem;
  }
  .p-about-section__wrap-net .p-about-section__catch--history02 {
    width: 91%;
  }
  .p-about-section__inner--short .p-about-section__box--amount img {
    margin: 0;
  }
  .p-about-section__box--amount .p-about-section__catch {
    width: 72%;
  }
  .p-about-section--history .p-about-section__title-en {
    left: -60%;
  }
}

@media screen and (max-width: 480px) {
  .p-about-section__carry-item:nth-child(even) .p-about-section__carry-comment {
    -webkit-transform: translateX(190%);
            transform: translateX(190%);
  }
}

@media screen and (max-width: 440px) {
  .p-about-section__carry-item:nth-child(even) .p-about-section__carry-comment {
    -webkit-transform: translateX(180%);
            transform: translateX(180%);
  }
}

@media screen and (max-width: 410px) {
  .p-about-section__carry-item:nth-child(even) .p-about-section__carry-comment {
    -webkit-transform: translateX(170%);
            transform: translateX(170%);
  }
}

@media screen and (max-width: 390px) {
  .p-about-section__carry-item:nth-child(even) .p-about-section__carry-comment {
    -webkit-transform: translateX(160%);
            transform: translateX(160%);
  }
}

.p-index-mv {
  position: relative;
  width: 100%;
  height: 1461px;
  height: 91.3125rem;
  overflow: hidden;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1235E2), color-stop(10%, #124AF1), color-stop(21%, #125EFF), color-stop(26%, #1375FF), color-stop(39%, #16ADFF), color-stop(49%, #18D0FF), color-stop(54%, #19DEFF), color-stop(58%, #2DE2FF), color-stop(78%, #89F4FF), to(#EDFFD2));
  background-image: linear-gradient(to bottom, #1235E2 0%, #124AF1 10%, #125EFF 21%, #1375FF 26%, #16ADFF 39%, #18D0FF 49%, #19DEFF 54%, #2DE2FF 58%, #89F4FF 78%, #EDFFD2 100%);
}

.p-index-mv canvas {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-animation: mv-webgl 0.7s 1.2s ease-in-out forwards;
          animation: mv-webgl 0.7s 1.2s ease-in-out forwards;
}

@-webkit-keyframes mv-webgl {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes mv-webgl {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#webgl {
  position: absolute;
  top: -33px;
  top: -2.0625rem;
  left: -43%;
  width: 100%;
  z-index: 0;
  height: 1058px !important;
  height: 66.125rem !important;
}

@media screen and (min-width: 1400px) {
  #webgl {
    left: -36%;
  }
}

@media screen and (min-width: 1400px) {
  #webgl {
    left: -35%;
    top: -38px;
  }
}

@media screen and (min-width: 1600px) {
  #webgl {
    left: -37%;
    top: -40px;
  }
}

@media screen and (min-width: 1700px) {
  #webgl {
    left: -36%;
  }
}

@media screen and (min-width: 1800px) {
  #webgl {
    left: -37%;
  }
}

@media screen and (min-width: 1900px) {
  #webgl {
    left: -37.5%;
  }
}

.p-index-mv__inner {
  width: 100%;
  padding: 150px 100px 72px;
  padding: 9.375rem 6.25rem 4.5rem;
}

.p-index-mv__boat {
  width: 210px;
  width: 13.125rem;
  position: absolute;
  top: 142px;
  top: 8.875rem;
  right: 25%;
  -webkit-animation: mv-boat 1.0s .3s ease-in-out forwards;
          animation: mv-boat 1.0s .3s ease-in-out forwards;
  opacity: 0;
}

@media screen and (min-width: 768px) {
  .p-index-mv__boat {
    right: 30%;
  }
}

@media screen and (min-width: 1000px) {
  .p-index-mv__boat {
    right: 30%;
  }
}

@media screen and (min-width: 1100px) {
  .p-index-mv__boat {
    right: 31%;
  }
}

@media screen and (min-width: 1200px) {
  .p-index-mv__boat {
    right: 31%;
  }
}

@media screen and (min-width: 1270px) {
  .p-index-mv__boat {
    right: 31.5%;
  }
}

@media screen and (min-width: 1300px) {
  .p-index-mv__boat {
    right: 32%;
  }
}

@media screen and (min-width: 1400px) {
  .p-index-mv__boat {
    right: 25%;
  }
}

@media screen and (min-width: 1500px) {
  .p-index-mv__boat {
    right: 26%;
  }
}

@media screen and (min-width: 1600px) {
  .p-index-mv__boat {
    right: 28%;
  }
}

@media screen and (min-width: 1800px) {
  .p-index-mv__boat {
    right: 29%;
  }
}

@media screen and (min-width: 1900px) {
  .p-index-mv__boat {
    right: 30%;
  }
}

.p-index-mv__boat img {
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
  -webkit-animation: mv-boat-float 3s 1.7s ease-in-out infinite;
          animation: mv-boat-float 3s 1.7s ease-in-out infinite;
}

@-webkit-keyframes mv-boat {
  0% {
    opacity: 0;
    -webkit-transform: translate(-55%, 55%);
            transform: translate(-55%, 55%);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@keyframes mv-boat {
  0% {
    opacity: 0;
    -webkit-transform: translate(-55%, 55%);
            transform: translate(-55%, 55%);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

@-webkit-keyframes mv-boat-float {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  25% {
    -webkit-transform: translate(0.125%, -0.5%);
            transform: translate(0.125%, -0.5%);
  }
  50% {
    -webkit-transform: translate(0.25%, -1%);
            transform: translate(0.25%, -1%);
  }
  75% {
    -webkit-transform: translate(0.125%, 1.25%);
            transform: translate(0.125%, 1.25%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

@keyframes mv-boat-float {
  0% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
  25% {
    -webkit-transform: translate(0.125%, -0.5%);
            transform: translate(0.125%, -0.5%);
  }
  50% {
    -webkit-transform: translate(0.25%, -1%);
            transform: translate(0.25%, -1%);
  }
  75% {
    -webkit-transform: translate(0.125%, 1.25%);
            transform: translate(0.125%, 1.25%);
  }
  100% {
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

.p-index-mv__head {
  opacity: 0;
  transition: opacity 0.4s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1.26), -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1.26);
  -webkit-transform: translateY(1.875rem);
          transform: translateY(1.875rem);
  -webkit-animation: mv-head 0.7s 1.9s ease-in-out forwards;
          animation: mv-head 0.7s 1.9s ease-in-out forwards;
}

@-webkit-keyframes mv-head {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes mv-head {
  0% {
    opacity: 0;
    -webkit-transform: translateY(1.875rem);
            transform: translateY(1.875rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.p-index-mv__box {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
  margin-top: 180px;
  margin-top: 11.25rem;
  margin-left: auto;
}

@media screen and (min-width: 1400px) {
  .p-index-mv__box {
    margin-left: 50%;
  }
}

.p-index-mv__head-text01 {
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  width: 609px;
  width: 38.0625rem;
}

.p-index-mv__head-text02 {
  width: 495px;
  width: 30.9375rem;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

.p-index-mv__text {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 2;
  color: #1748B1;
  opacity: 0;
  transition: opacity 0.4s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1.26), -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1.26);
  -webkit-animation: mv-head 0.7s 2.2s ease-in-out forwards;
          animation: mv-head 0.7s 2.2s ease-in-out forwards;
}

.p-index-mv__text-sub {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transform: translateY(140%) translateX(-130%);
          transform: translateY(140%) translateX(-130%);
  font-weight: bold;
  font-size: 18px;
  font-size: 1.125rem;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1.26), -webkit-transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1.26);
  -webkit-transform: translateY(1.875rem);
          transform: translateY(1.875rem);
  -webkit-animation: mv-text-sub 0.7s 1.9s ease-in-out forwards;
          animation: mv-text-sub 0.7s 1.9s ease-in-out forwards;
}

@-webkit-keyframes mv-text-sub {
  0% {
    opacity: 0;
    -webkit-transform: translateY(250%) translateX(-130%);
            transform: translateY(250%) translateX(-130%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(140%) translateX(-130%);
            transform: translateY(140%) translateX(-130%);
  }
}

@keyframes mv-text-sub {
  0% {
    opacity: 0;
    -webkit-transform: translateY(250%) translateX(-130%);
            transform: translateY(250%) translateX(-130%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(140%) translateX(-130%);
            transform: translateY(140%) translateX(-130%);
  }
}

.p-index-mv__separator {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.p-index-mv__wave-bottom {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 120px;
  height: 7.5rem;
  -webkit-transform: rotateY(180deg);
          transform: rotateY(180deg);
}

.p-index-mv__wave-bottom .shape-fill {
  fill: #FFFFFF;
}

.p-index-mv-keyword {
  border-radius: 1.25rem;
  width: 80%;
  margin: 0 auto;
  max-width: 1200px;
  position: relative;
  overflow: hidden;
}

.p-index-mv-keyword__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-index-mv-keyword__title {
  position: relative;
  z-index: 1;
  padding: 35px;
  padding: 2.1875rem;
  background-color: #1748B1;
  border-radius: 1.25rem;
  width: 68%;
  margin: 0 auto 25px;
  margin: 0 auto 1.5625rem;
}

.p-index-mv-keyword__title-text {
  width: 76%;
  margin: 0 auto;
}

.p-index-mv-keyword__inner {
  padding: 55px 20px 35px;
  padding: 3.4375rem 1.25rem 2.1875rem;
}

.p-index-mv-keyword__text {
  font-size: 18px;
  font-size: 1.125rem;
  color: #1748B1;
}

.p-index-mv-keyword__btn {
  text-align: center;
}

.p-index-mv-keyword:has(.c-btn:hover) .p-index-mv-keyword__back {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.p-index__head {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  color: #1748B1;
}

.p-index__head-sub {
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.6;
  color: #00CEC7;
  font-family: "Caveat", cursive;
  letter-spacing: -0.04em;
}

.p-index-work {
  position: relative;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  overflow-x: hidden;
}

.p-index-work::before {
  content: '';
  position: absolute;
  top: 25%;
  left: 50%;
  width: 100%;
  height: 934px;
  height: 58.375rem;
  border-radius: 3.125rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #F3F3F3;
  z-index: -1;
  display: none;
}

.p-index-work__inner {
  margin: 0 auto;
  max-width: 1150px;
  padding: 0 35px 100px;
  padding: 0 35px 6.25rem;
}

.p-index-work__inner .p-index__head-sub {
  min-width: 190px;
}

.p-index-work__textarea {
  background: -webkit-gradient(linear, left top, right top, from(#1235E2), to(#00CEC7));
  background: linear-gradient(to right, #1235E2 0%, #00CEC7 100%);
  border-radius: 1.25rem;
  padding: 80px 60px 60px 50px;
  padding: 5rem 3.75rem 3.75rem 3.125rem;
  width: 51%;
  color: #fff;
  font-weight: bold;
  position: relative;
}

.p-index-work__textarea-back {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 150px;
  font-size: 9.375rem;
  letter-spacing: -0.03em;
  color: #00CEC7;
  opacity: 0.2;
  line-height: 1;
  font-family: "Caveat", cursive;
}

.p-index-work__text {
  font-size: 21px;
  font-size: 1.3125rem;
  line-height: 1.8;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
  position: relative;
  z-index: 1;
}

.p-index-work__head {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1.6;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.p-index-work__box {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  margin: 0 auto;
  -webkit-transform: translateX(5%);
          transform: translateX(5%);
}

.p-index-work__box:has(.c-btn:hover) .p-index-work__box-img-box img {
  scale: 1.1;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}

.p-index-work__box-img {
  width: 45%;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) translateX(-25%);
          transform: translateY(-50%) translateX(-25%);
  border-radius: 1.25rem;
  overflow: hidden;
}

.p-index-work__box-img-box {
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
}

.p-index-work__box-img-box::before {
  content: "";
  display: block;
  padding-top: 62.15139%;
}

.p-index-work__box-img-box img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}

.p-index-work__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-index-work__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  gap: 1.25rem;
}

.p-index-work__list .swiper, .p-index-work__list .swiper-wrapper, .p-index-work__list .swiper-slide {
  display: contents;
}

.p-index-work__list .swiper-pagination {
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding-right: 25px;
  padding-right: 1.5625rem;
}

.p-index-work__list .swiper-pagination .swiper-pagination-bullet {
  background: #125EFF;
}

.p-index-work__item {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 0.625rem 1.875rem rgba(23, 72, 177, .15);
          box-shadow: 0 0.625rem 1.875rem rgba(23, 72, 177, .15);
}

.p-index-work__item:hover {
  background: #125EFF;
}

.p-index-work__item:hover .p-index-work__item-head, .p-index-work__item:hover .p-index-work__item-text, .p-index-work__item:hover .p-index-work__item-name {
  color: #fff;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.p-index-work__item:hover .p-index-work__item-img img {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.p-index-work__item:hover .p-index-work__item-arrow {
  -webkit-transform: translateX(0.25rem);
          transform: translateX(0.25rem);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-index-work__item:hover .p-index-work__item-arrow path {
  stroke: #fff;
}

.p-index-work__item-arrow {
  width: 38px;
  width: 2.375rem;
  margin-left: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-index-work__item-arrow path {
  -webkit-transition: stroke 0.3s ease;
  transition: stroke 0.3s ease;
}

.p-index-work__item--first {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-index-work__item--third {
  margin-top: 60px;
  margin-top: 3.75rem;
}

.p-index-work__item-box {
  position: relative;
  padding: 20px 30px 30px;
  padding: 1.25rem 1.875rem 1.875rem;
}

.p-index-work__item-img {
  overflow: hidden;
  border-radius: 1.25rem 1.25rem 0 0;
}

.p-index-work__item-img img {
  border-radius: 1.25rem 1.25rem 0 0;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-index-work__item-head {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #125EFF;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.p-index-work__item-text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1748B1;
  margin-bottom: 8px;
  margin-bottom: 0.5rem;
}

.p-index-work__item-name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #1748B1;
}

.p-index-work__btn {
  text-align: center;
  margin-top: 23px;
  margin-top: 1.4375rem;
}

.p-index-culture {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}

.p-index-culture .p-index__head-sub {
  min-width: 95px;
}

.p-index-culture__inner {
  margin: 0 auto;
  max-width: 1150px;
  padding: 80px 35px 100px;
  padding: 5rem 2.1875rem 6.25rem;
}

.p-index-culture__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  gap: 2.1875rem;
}

.p-index-culture__box:has(.c-btn:hover) .p-index-culture__img img {
  scale: 1.1;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}

.p-index-culture__box--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-top: 60px;
  margin-top: 3.75rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.p-index-culture__img {
  width: 61%;
  position: relative;
  overflow: hidden;
  border-radius: 1.25rem;
}

.p-index-culture__img::before {
  content: "";
  display: block;
  padding-top: 52.63158%;
}

.p-index-culture__img img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 1.25rem;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: scale 0.3s ease;
  transition: scale 0.3s ease;
}

.p-index-culture__textarea {
  width: 35%;
}

.p-index-culture__head {
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: bold;
  color: #1748B1;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

.p-index-culture__text {
  color: #1748B1;
  font-weight: 500;
}

.p-index-culture__btn {
  margin-top: 30px;
  margin-top: 1.875rem;
}

.p-index-info__head {
  text-align: center;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

.p-index-info__head .js-text-effect {
  margin: 0 auto;
}

.p-index-info__head .p-index__head-sub {
  min-width: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 5px;
}

.p-index-info__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 50px 30px;
  gap: 3.125rem 1.875rem;
  text-align: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-index-info__item {
  width: 47.5%;
}

.p-index-info__banner {
  width: 70%;
  margin: 0 auto;
}

.p-index-info__banner .banner-mynavi {
  margin: 0 auto;
}

.p-index-info__title {
  position: relative;
  display: inline-block;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #1748B1;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-index-info__title::after {
  content: "";
  position: absolute;
  top: 120%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  width: 40px;
  width: 2.5rem;
  height: 9px;
  height: 0.5625rem;
  background-image: url(/recruit/assets/images/svg/header-wave-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-index-info__btn .c-btn {
  text-align: left;
  width: 100%;
}

.p-index-info__btn .c-btn:first-of-type {
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
}

.p-index-info__btn .banner-mynavi {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
  margin: 0 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-index .l-main__inner {
    padding-top: 1.875rem;
    padding-bottom: 0;
  }
  #webgl {
    top: 0;
    left: -7.3125rem;
    height: 33.125rem !important;
  }
  .p-index__head-sub {
    font-size: 1.875rem;
  }
  .p-index__head {
    font-size: 1.4375rem;
  }
  .p-index-culture__head {
    font-size: 1.125rem;
  }
  .p-index-mv {
    height: 67.5rem;
  }
  .p-index-mv__inner {
    padding: 11.25rem 0.9375rem 2.5rem;
  }
  .p-index-mv__boat {
    right: 2.375rem;
    top: 5rem;
    width: 6.875rem;
  }
  .p-index-mv__box {
    margin-top: 1.875rem;
    width: 82%;
    max-width: 420px;
  }
  .p-index-mv__head-text01 {
    margin-bottom: 0.9375rem;
  }
  .p-index-mv__head-text01 {
    width: 92%;
  }
  .p-index-mv__head-text02 {
    width: 75%;
    margin-bottom: 1.5625rem;
  }
  .p-index-mv__text {
    font-size: 1rem;
  }
  .p-index-mv__text-sub {
    font-size: 0.9375rem;
    -webkit-transform: translateY(-180%) translateX(-45%);
            transform: translateY(-180%) translateX(-45%);
  }
  @-webkit-keyframes mv-text-sub {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-100%) translateX(-45%);
              transform: translateY(-100%) translateX(-45%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(-180%) translateX(-45%);
              transform: translateY(-180%) translateX(-45%);
    }
  }
  @keyframes mv-text-sub {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-100%) translateX(-45%);
              transform: translateY(-100%) translateX(-45%);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(-180%) translateX(-45%);
              transform: translateY(-180%) translateX(-45%);
    }
  }
  .p-index-mv__wave-bottom {
    height: 2.8125rem;
  }
  .p-index-mv-keyword {
    width: 91%;
  }
  .p-index-mv-keyword .c-btn {
    width: 100%;
    text-align: left;
  }
  .p-index-mv-keyword__inner {
    padding: 3.125rem 0.9375rem;
  }
  .p-index-mv-keyword__title {
    width: 100%;
    padding: 1.875rem 0.9375rem;
    margin-bottom: 1.375rem;
  }
  .p-index-mv-keyword__title-text {
    width: 100%;
    max-width: 400px;
  }
  .p-index-work::before {
    height: 75%;
  }
  .p-index-work__inner {
    padding: 0 1.875rem 0;
    overflow: hidden;
  }
  .p-index-work__inner .p-index__head-sub {
    min-width: 145px;
  }
  .p-index-work__box {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    margin-bottom: 0;
  }
  .p-index-work__textarea {
    width: 100%;
    padding: 2.5rem 1.5625rem;
  }
  .p-index-work__box-img {
    width: 90%;
    position: relative;
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
    margin: 0 auto;
    max-width: 550px;
  }
  .p-index-work__head {
    font-size: 1.3125rem;
  }
  .p-index-work__textarea-back {
    font-size: 25vw;
    left: 5%;
  }
  .p-index-work__list {
    display: block;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
  .p-index-work__btn {
    margin-top: 2.1875rem;
  }
  .p-index-work__list .swiper {
    padding-bottom: 3.125rem;
  }
  .p-index-culture .p-index__head-sub {
    min-width: 70px;
  }
  .p-index-culture .l-main__subpage-wave {
    height: 12.5rem;
    margin-top: 1.875rem;
  }
  .p-index-culture__inner {
    padding: 5rem 1.875rem 4.375rem;
  }
  .p-index-culture__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
  }
  .p-index-culture__img, .p-index-culture__textarea {
    width: 100%;
  }
  .p-index-work__item--first, .p-index-work__item--third {
    margin-top: 0;
  }
  .p-index-work__list .swiper {
    display: block;
  }
  .p-index-work__list .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 1.5625rem;
  }
  .p-index-work__list .swiper-slide {
    display: block;
  }
  .p-index-info__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5625rem;
  }
  .p-index-info__item {
    width: 100%;
  }
  .p-index-info__item:last-of-type .c-btn {
    margin-bottom: 0;
  }
  .p-index-info__title {
    font-size: 1.3125rem;
  }
  .p-index-culture__btn .c-btn {
    width: 100%;
    max-width: 400px;
  }
  .p-index-work__textarea .c-btn {
    width: 100%;
    max-width: 400px;
  }
  .p-index-info__btn .c-btn__arrow {
    width: 1.6875rem;
  }
  .p-index-info__btn .c-btn {
    padding-left: 1.125rem;
    padding-right: 4.375rem;
    font-size: 0.9375rem;
  }
  .p-index-info__head .p-index__head-sub {
    min-width: 120px;
    padding-right: 0;
  }
  .p-index-info__banner {
    margin: 1.25rem auto 1.25rem;
  }
}

@media screen and (max-width: 410px) {
  .p-index-work__head {
    font-size: 1.125rem;
  }
}

.p-faq-jump {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 18px;
  gap: 1.125rem;
  margin-bottom: 110px;
  margin-bottom: 6.875rem;
}

.p-faq-jump__item {
  display: block;
  padding: 18px 70px 18px 30px;
  padding: 1.125rem 4.375rem 1.125rem 1.875rem;
  color: #1235E2;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 6.25rem;
  background-color: #fff;
  border: 2px solid #F3F3F3;
  border: 0.125rem solid #F3F3F3;
  position: relative;
  width: 30%;
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}

.p-faq-jump__item::after {
  background-image: url(/recruit/assets/images/svg/arrow-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 42px;
  width: 2.625rem;
  height: 12px;
  height: 0.75rem;
  position: absolute;
  content: "";
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  right: 1.25rem;
  -webkit-transition: top 0.2s ease-in-out;
  transition: top 0.2s ease-in-out;
}

.p-faq-jump__item:hover {
  background-color: #F3F3F3;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

.p-faq-jump__item:hover::after {
  top: 60%;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}

.p-faq__head {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 500;
  color: #1748B1;
  text-align: center;
  margin-bottom: 75px;
  margin-bottom: 4.6875rem;
  position: relative;
}

.p-faq__head::after {
  content: "";
  position: absolute;
  top: 120%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 40px;
  width: 2.5rem;
  height: 9px;
  height: 0.5625rem;
  background-image: url(/recruit/assets/images/svg/header-wave-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-faq__subhead {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #1748B1;
  text-align: center;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.p-faq__table {
  margin-bottom: 55px;
  margin-bottom: 3.4375rem;
}

.p-faq-flow {
  margin: 0 auto;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.p-faq-flow .p-faq__subhead {
  margin-bottom: 35px;
  margin-bottom: 2.1875rem;
}

.p-faq-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px 32px;
  gap: 2.5rem 2rem;
}

.p-faq-flow__item {
  width: 17%;
  border-radius: 1.25rem;
  background-color: rgba(0, 206, 199, .12);
  padding: 37px 25px;
  padding: 2.3125rem 1.5625rem;
  text-align: center;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 500;
}

.p-faq-flow__item::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(90%);
          transform: translateY(-50%) translateX(90%);
  right: 0;
  width: 27px;
  width: 1.6875rem;
  height: 27px;
  height: 1.6875rem;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(90deg, #125EFF 0%, #00CEC7 100%);
  -webkit-clip-path: polygon(100% 50%, 45% 0, 45% 100%);
          clip-path: polygon(100% 50%, 45% 0, 45% 100%);
}

.p-faq-flow__text--first {
  line-height: 1.3;
}

.p-faq-flow__item:last-child::after {
  display: none;
}

.p-faq-flow__head {
  font-size: 35px;
  font-size: 2.1875rem;
  position: absolute;
  top: 0;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  left: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(90deg, #125EFF 0%, #00CEC7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.8;
  font-family: "Caveat", cursive;
  padding: 0 10px;
  padding: 0 0.625rem;
}

.p-faq-flow__head span {
  font-size: 45px;
  font-size: 2.8125rem;
}

.p-faq-flow__text {
  font-size: 16px;
  font-size: 1rem;
  color: #1748B1;
  font-weight: 350;
}

.p-faq-flow__text span {
  font-size: 22px;
  font-size: 1.375rem;
}

.p-faq-qa {
  max-width: 980px;
  margin: 0 auto;
}

.p-faq-qa__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-faq-qa__item {
  position: relative;
  border-radius: 1.25rem;
}

.p-faq-qa__item::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 1.25rem;
  -webkit-mask: -webkit-gradient(linear, left top, right top, from(#fff), color-stop(0%, #fff)) content-box, -webkit-gradient(linear, left top, right top, from(#fff), color-stop(0%, #fff));
  -webkit-mask: linear-gradient(to right, #fff 0%, #fff 0%) content-box, linear-gradient(to right, #fff 0%, #fff 0%);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.p-faq-qa__item:hover::before {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: #125EFF;
}

.p-faq-qa__item:hover .p-faq-qa__question {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
}

.p-faq-qa__item:hover .p-faq-qa__question::after {
  opacity: 1;
}

.p-faq-qa__item:hover .p-faq-qa__answer::after {
  opacity: 1;
}

.p-faq-qa__item:hover .p-faq-qa__icon {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-faq-qa__item.is-active::before {
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  background-color: #125EFF;
}

.p-faq-qa__item.is-active .p-faq-qa__question {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #fff;
  margin: 7px;
  padding: 19px 29px;
  padding: 1.1875rem 1.8125rem;
  padding-right: 35px;
  padding-right: 2.1875rem;
}

.p-faq-qa__item.is-active .p-faq-qa__question::after {
  opacity: 1;
}

.p-faq-qa__item.is-active .p-faq-qa__answer::after {
  opacity: 1;
}

.p-faq-qa__item.is-active .p-faq-qa__icon {
  right: 22px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-faq-qa__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 45px;
  gap: 0 2.8125rem;
  background-color: rgba(0, 206, 199, .12);
  padding: 25px 35px;
  padding: 1.5625rem 2.1875rem;
  position: relative;
  border-radius: 1.25rem;
  margin: 2px;
  margin: 0.125rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}

.p-faq-qa__q {
  font-weight: bold;
  font-size: 35px;
  font-size: 2.1875rem;
  font-family: "Caveat", cursive;
  color: #fff;
  line-height: 16px;
  line-height: 1rem;
  position: relative;
  z-index: 1;
}

.p-faq-qa__q::before {
  position: absolute;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(90deg, #125EFF 0%, #00CEC7 100%);
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  border-radius: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  left: 67%;
  z-index: -1;
}

.p-faq-qa__q-text {
  font-size: 18px;
  font-size: 1.125rem;
  color: #125EFF;
  font-weight: bold;
}

.p-faq-qa__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
  position: relative;
}

.p-faq-qa__answer::after {
  content: "";
  position: absolute;
  top: 2px;
  top: 0.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 95%;
  height: 1px;
  height: 0.0625rem;
  background-color: #125EFF;
  opacity: 0;
  -webkit-transition: all 0.6s ease-out;
  transition: all 0.6s ease-out;
}

.p-faq-qa__item.is-active .p-faq-qa__answer {
  max-height: 500px;
  opacity: 1;
  -webkit-transition: max-height 0.4s ease-in, opacity 0.4s ease-in;
  transition: max-height 0.4s ease-in, opacity 0.4s ease-in;
}

.p-faq-qa__answer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 45px;
  gap: 0 2.8125rem;
  padding: 25px 35px;
  padding: 1.5625rem 2.1875rem;
}

.p-faq-qa__a {
  font-weight: bold;
  font-size: 35px;
  font-size: 2.1875rem;
  font-family: "Caveat", cursive;
  color: #fff;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.p-faq-qa__a::before {
  position: absolute;
  content: "";
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(90deg, #125EFF 0%, #00CEC7 100%);
  width: 50px;
  width: 3.125rem;
  height: 50px;
  height: 3.125rem;
  border-radius: 50%;
  top: 46%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  left: 67%;
  z-index: -1;
}

.p-faq-qa__a-text {
  color: #1748B1;
  font-size: 16px;
  font-size: 1rem;
}

.p-faq-qa__a-text a {
  color: #125EFF;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-faq-qa__a-text a:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-faq-qa__icon {
  position: absolute;
  right: 30px;
  right: 30px;
  right: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  width: 2.5rem;
  height: 40px;
  height: 2.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.p-faq-qa__icon span {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  width: 70%;
  height: 2px;
  height: 0.125rem;
  background-color: #125EFF;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-faq-qa__icon span:last-child {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
          transform: translateY(-50%) translateX(-50%) rotate(90deg);
}

.p-faq-qa__item.is-active .p-faq-qa__icon span:last-child {
  -webkit-transform: translateY(-50%) translateX(-50%) rotate(0deg);
          transform: translateY(-50%) translateX(-50%) rotate(0deg);
}

.p-faq-flow__sub-text {
  color: #1748B1;
  font-size: 16px;
  font-size: 1rem;
  margin: 30px 0;
  margin: 1.875rem 0;
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .p-faq__subhead {
    font-size: 18px;
  }
  .p-faq-qa__q-text {
    font-size: 14px;
  }
  .p-faq-qa__a-text {
    font-size: 14px;
  }
  .p-faq-jump__item {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .p-faq-jump {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 2.1875rem auto;
  }
  .p-faq-jump__item {
    width: 85%;
  }
  .p-faq__head {
    margin-bottom: 3.125rem;
    font-size: 1.4375rem;
  }
  .p-faq-flow {
    margin-bottom: 1.5625rem;
  }
  .p-faq-flow__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-faq-flow__item {
    width: 100%;
    padding: 1.25rem 1.25rem;
  }
  .p-faq-flow__text span {
    font-size: 1.125rem;
  }
  .p-faq-flow__item::after {
    top: 112%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%) rotate(90deg);
            transform: translateY(-50%) translateX(-50%) rotate(90deg);
  }
  .p-faq-qa__question {
    gap: 0 2.1875rem;
  }
  .p-faq-qa__q-text {
    font-size: 1rem;
    width: 65%;
  }
  .p-faq-qa__icon {
    width: 1.875rem;
  }
  .p-faq-qa__a-text {
    font-size: 0.875rem;
  }
  .p-faq-flow__sub-text {
    font-size: 0.875rem;
    margin: 1.5625rem 0 1.25rem;
  }
  .p-faq-qa__list:last-of-type {
    margin-bottom: 0;
  }
  .p-faq .l-main__inner {
    padding-bottom: 0;
  }
}

.p-talk {
  overflow: hidden;
}

.p-talk .l-main__inner {
  padding-top: 90px;
  padding-top: 5.625rem;
}

.p-talk-mv {
  position: relative;
  height: 100vh;
  max-height: 900px;
}

.p-talk-mv__img {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 900px;
  z-index: 2;
}

.p-talk-mv__img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.p-talk-mv__back {
  position: absolute;
  z-index: 1;
  top: 155px;
  top: 9.6875rem;
  left: 0;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .p-talk-mv__back {
    top: 30%;
  }
}

@media screen and (min-width: 1000px) {
  .p-talk-mv__back {
    top: 40%;
  }
}

@media screen and (min-width: 1100px) {
  .p-talk-mv__back {
    top: 21.875rem;
  }
}

@media screen and (min-width: 1200px) {
  .p-talk-mv__back {
    top: 15.625rem;
  }
}

@media screen and (min-width: 1300px) {
  .p-talk-mv__back {
    top: 13.75rem;
  }
}

@media screen and (min-width: 1400px) {
  .p-talk-mv__back {
    top: 10.9375rem;
  }
}

@media screen and (min-width: 1400px) {
  .p-talk-mv__back {
    top: 8.125rem;
  }
}

@media screen and (min-width: 1600px) {
  .p-talk-mv__back {
    top: -3.125rem;
  }
}

.p-talk-mv__inner {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 25px;
  padding: 0 1.5625rem;
  position: absolute;
  bottom: 40px;
  bottom: 2.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(30%);
          transform: translateX(-50%) translateY(30%);
  width: 100%;
  z-index: 3;
}

.p-talk-mv__tag {
  display: inline-block;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
  padding: 3px 20px;
  padding: 0.1875rem 1.25rem;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  border-radius: 0.625rem;
}

.p-talk-mv__en-title {
  font-size: 96px;
  font-size: 6rem;
  font-weight: bold;
  color: #fff;
  font-family: "Caveat", cursive;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.9;
  width: 360px;
  width: 22.5rem;
  position: absolute;
  left: 170px;
  left: 10.625rem;
  top: -30%;
  line-height: 1;
}

.p-talk-mv__title {
  font-size: 48px;
  font-size: 3rem;
  font-weight: bold;
  color: #fff;
  padding: 5px 20px;
  padding: 0.3125rem 1.25rem;
  color: #1748B1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  margin-top: 0.625rem;
  position: relative;
}

.p-talk-mv__title::before {
  background-color: #fff;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  border-radius: 0.625rem;
  z-index: -1;
  -webkit-animation: titleBackground 0.8s ease 0.8s forwards;
          animation: titleBackground 0.8s ease 0.8s forwards;
}

@-webkit-keyframes titleBackground {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

@keyframes titleBackground {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}

.p-talk-mv__text {
  text-align: center;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  color: #1748B1;
  margin-top: 90px;
  margin-top: 5.625rem;
  line-height: 2;
  position: relative;
  z-index: 1;
}

.p-talk-intro {
  background-color: rgba(255, 255, 255, .6);
  max-width: 970px;
  margin: 0 auto;
  border-radius: 1.25rem;
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
  position: relative;
  z-index: 2;
}

.p-talk-intro__inner {
  padding: 15px 20px 45px;
  padding: 0.9375rem 1.25rem 2.8125rem;
}

.p-talk-intro__head {
  font-size: 50px;
  font-size: 3.125rem;
  font-weight: 500;
  font-family: "Caveat", cursive;
  text-align: center;
  color: #1748B1;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  position: relative;
}

.p-talk-intro__head::after {
  content: "";
  position: absolute;
  top: 85%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 34px;
  width: 2.125rem;
  height: 9px;
  background-image: url(/recruit/assets/images/svg/header-wave-btn.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.p-talk-intro__box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20%;
  position: relative;
  max-width: 786px;
  margin: 0 auto;
}

.p-talk-intro__box::before, .p-talk-intro__box::after {
  content: "";
  position: absolute;
  top: 85px;
  top: 5.3125rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
  width: 150px;
  width: 9.375rem;
  height: 2px;
  height: 0.125rem;
  background-color: #125EFF;
}

.p-talk-intro__box::after {
  background-color: #00CEC7;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.p-talk-intro__item {
  width: 95%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
}

.p-talk-intro__item-img {
  width: 60%;
  position: relative;
}

.p-talk-intro__item-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.p-talk-intro__item-img::after {
  content: "先輩";
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 89px;
  width: 5.5625rem;
  height: 89px;
  height: 5.5625rem;
  background: linear-gradient(135deg, #125EFF, #19DEFF);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  text-align: center;
  line-height: 89px;
  line-height: 5.5625rem;
}

.p-talk-intro__item-textarea {
  width: 45%;
  text-align: left;
}

.p-talk-intro__item-head {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: bold;
  color: #125EFF;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
}

.p-talk-intro__item-head--second {
  color: #00C8C1;
}

.p-talk-intro__item-text {
  color: #1748B1;
  font-weight: bold;
  font-size: 14px;
  font-size: 0.875rem;
}

.p-talk-intro__item--right .p-talk-intro__item-textarea {
  text-align: right;
}

.p-talk-intro__item--left {
  width: 43%;
}

.p-talk-intro__item--right {
  width: 43%;
}

.p-talk-intro__item--right .p-talk-intro__item-img::after {
  content: "後輩";
  background: -webkit-gradient(linear, left top, left bottom, from(#02B8D0), to(#00E47D));
  background: linear-gradient(to bottom, #02B8D0, #00E47D);
  right: -90px;
  right: -5.625rem;
  left: auto;
}

.p-talk-intro__text {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1748B1;
  line-height: 1.7;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.p-talk-head {
  border-radius: 1.25rem;
  background: -webkit-gradient(linear, left top, right top, from(rgba(18, 94, 255, .2)), to(rgba(0, 206, 199, .2)));
  background: linear-gradient(to right, rgba(18, 94, 255, .2), rgba(0, 206, 199, .2));
  color: #fff;
  text-align: center;
  padding: 48px 35px 40px;
  padding: 3rem 2.1875rem 2.5rem;
  max-width: 970px;
  margin: 0 auto;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
  color: #1748B1;
  position: relative;
  font-weight: 500;
}

.p-talk-head__q {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.7;
  padding: 15px 30px;
  padding: 0.9375rem 1.875rem;
  border-radius: 1.25rem;
  color: #fff;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
}

.p-talk-head__title {
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: bold;
}

.p-talk-section {
  position: relative;
  margin: 0 calc(50% - 50vw) 6.875rem;
  width: 100vw;
  z-index: 2;
}

.p-talk-section:last-of-type {
  margin-bottom: 0;
}

.p-talk-section__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 25px;
  padding: 0 1.5625rem;
}

.p-talk-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  gap: 1.5625rem;
  margin-bottom: 123px;
  margin-bottom: 7.6875rem;
}

.p-talk-section__list .p-talk-section__item:nth-of-type(2n) {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, right top, from(#00CEC7), to(#00E47D)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #00CEC7, #00E47D) border-box;
}

.p-talk-section__list .p-talk-section__item:nth-of-type(2n) .p-talk-section__item-person {
  left: auto;
  right: 8px;
  right: 0.5rem;
  -webkit-transform: translateX(127%);
          transform: translateX(127%);
}

.p-talk-section__list .p-talk-section__item:nth-of-type(2n) .p-talk-section__item-line {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.p-talk-section__list--reverse .p-talk-section__item:nth-of-type(2n +1) {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #125EFF, #00CEC7) border-box;
}

.p-talk-section__list--reverse .p-talk-section__item:nth-of-type(2n +1) .p-talk-section__item-person {
  left: auto;
  right: 8px;
  right: 0.5rem;
  -webkit-transform: translateX(127%);
          transform: translateX(127%);
}

.p-talk-section__list--reverse .p-talk-section__item:nth-of-type(2n +1) .p-talk-section__item-line {
  left: auto;
  right: 0;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

.p-talk-section__list--reverse .p-talk-section__item:nth-of-type(2n) .p-talk-section__item-person {
  left: 0%;
  top: 0;
  -webkit-transform: translateX(-130%);
          transform: translateX(-130%);
}

.p-talk-section__list--reverse .p-talk-section__item:nth-of-type(2n) .p-talk-section__item-line {
  left: 0;
  top: 30%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}

.p-talk-section__item {
  max-width: 670px;
  margin: 0 auto;
  padding: 20px 30px;
  padding: 1.25rem 1.875rem;
  border-radius: 1.25rem;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(to right, #125EFF, #00CEC7) border-box;
  border: 3px solid transparent;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  position: relative;
  width: 70%;
}

.p-talk-section__text {
  color: #1748B1;
  line-height: 1.7;
}

.p-talk-section__item-person {
  width: 112px;
  width: 7rem;
  position: absolute;
  left: 0%;
  top: 0;
  -webkit-transform: translateX(-130%);
          transform: translateX(-130%);
  z-index: 1;
}

.p-talk-section__item-person img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.p-talk-section__item-person-name {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
  margin-top: 0.625rem;
  color: #125EFF;
}

.p-talk-section__item-person-name--second {
  color: #00C8C1;
}

.p-talk-section__item-line {
  position: absolute;
  top: 30%;
  left: -3px;
  left: -0.1875rem;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  width: 35px;
  width: 2.1875rem;
}

.p-talk-head__h3 {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: bold;
  color: #1748B1;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
  text-align: center;
}

.p-talk-head__img {
  max-width: 670px;
  margin: 0 auto;
  margin-bottom: 50px;
  margin-bottom: 3.125rem;
}

.p-talk-head__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-talk-section__img {
  margin: 50px auto 0;
  margin: 3.125rem auto 0;
}

.p-talk-section__img img {
  border-radius: 1.25rem;
}

.p-talk-section__wave {
  position: absolute;
  top: 200px;
  top: 12.5rem;
  left: 0;
  width: 100%;
  z-index: -1;
}

.p-talk-section__sub-text {
  color: #1748B1;
  margin-top: 20px;
  margin-top: 1.25rem;
}

.p-talk-section__flow {
  max-width: 980px;
  margin: 0 auto;
}

.p-talk-section__flow .p-faq-flow__list {
  gap: 30px;
  gap: 1.875rem;
  margin-top: 35px;
  margin-top: 2.1875rem;
}

.p-talk-section__flow .p-faq-flow__item {
  padding: 12px 10px;
  padding: 0.75rem 0.625rem;
  font-weight: 500;
}

.p-talk-section__h3 {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #1748B1;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .p-talk-intro__box {
    gap: 10%;
  }
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .p-talk-mv {
    height: 55vh;
    min-height: 610px;
  }
  .p-talk-section__text {
    font-size: 14px;
  }
  .p-talk-intro__text {
    font-size: 14px;
  }
  .p-talk-intro__item-text {
    font-size: 14px;
  }
  .p-talk-mv__text {
    font-size: 14px;
  }
}
.p-talk::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120.625rem;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#16ADFF), color-stop(43%, #18D0FF), color-stop(50%, #19DEFF), color-stop(53%, #2DE2FF), color-stop(64%, #89F4FF), to(#FFFFFF));
    background-image: linear-gradient(to bottom, #16ADFF 0%, #18D0FF 43%, #19DEFF 50%, #2DE2FF 53%, #89F4FF 64%, #FFFFFF 100%);
    z-index: -1;
  }
@media screen and (max-width: 767px) {
  .p-talk-section {
    margin: 0 calc(50% - 50vw) 4.375rem;
  }
  .p-talk .l-main__inner {
    padding-top: 3.125rem;
  }
  .p-talk-section__h3 {
    font-size: 1.125rem;
  }
  .p-talk-section__flow .p-faq-flow__item::after {
    top: 120%;
  }
  .p-faq-flow__list {
    margin-top: 1.875rem;
  }
  .p-talk {
    position: relative;
  }
  .p-talk::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120.625rem;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#16ADFF), color-stop(43%, #18D0FF), color-stop(50%, #19DEFF), color-stop(53%, #2DE2FF), color-stop(64%, #89F4FF), to(#FFFFFF));
    background-image: linear-gradient(to bottom, #16ADFF 0%, #18D0FF 43%, #19DEFF 50%, #2DE2FF 53%, #89F4FF 64%, #FFFFFF 100%);
    z-index: -1;
  }
  .p-talk-mv__back {
    top: 50%;
  }
  .p-talk-mv__title {
    font-size: 5.5vw;
    padding: 0.3125rem 0.9375rem;
    margin-top: 0.25rem;
  }
  .p-talk-mv__tag {
    font-size: 3vw;
    margin-bottom: 1px;
  }
  .p-talk-mv__en-title {
    font-size: 11vw;
    top: -33%;
    left: 19%;
  }
  .p-talk-mv__inner {
    padding: 0 0.9375rem;
    bottom: -2.5rem;
  }
  .p-talk-mv__text {
    font-size: 1rem;
    text-align: left;
    padding: 0 0.9375rem;
    margin-top: 7.1875rem;
  }
  .p-talk-section__inner {
    padding: 0 0.9375rem;
  }
  .p-talk-intro__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6.875rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 84%;
  }
  .p-talk-intro__head {
    font-size: 1.875rem;
    margin-bottom: 0.625rem;
  }
  .p-talk-intro__item {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-talk-intro__item-img {
    width: 41%;
    max-width: 170px;
  }
  .p-talk-intro__item-text {
    font-size: 0.875rem;
  }
  .p-talk-intro__box::before, .p-talk-intro__box::after {
    width: 5.4375rem;
  }
  .p-talk-intro__item-head {
    font-size: 1.125rem;
  }
  .p-talk-head__q {
    font-size: 0.9375rem;
    width: 92%;
    padding: 0.5rem;
  }
  .p-talk-head__title {
    font-size: 1.125rem;
    text-align: left;
  }
  .p-talk-section__item {
    width: 100%;
  }
  .p-talk-head {
    padding: 2.3125rem 1.125rem 1.25rem;
    margin-bottom: 4.0625rem;
  }
  .p-talk-section__list {
    gap: 4.25rem;
    margin-bottom: 3.125rem;
  }
  .p-talk-section__item {
    padding: 1.25rem;
  }
  .p-talk-section__item-person {
    width: 100%;
    -webkit-transform: translateY(-69%);
            transform: translateY(-69%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 0.9375rem;
    top: -0.4375rem;
  }
  .p-talk-section__list .p-talk-section__item:nth-of-type(2n) .p-talk-section__item-person {
    -webkit-transform: translateY(-75%);
            transform: translateY(-75%);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .p-talk-section__item-person-name {
    font-size: 0.875rem;
  }
  .p-talk-section__item-line {
    width: 1.875rem;
    display: none;
  }
  .p-talk-section__item-person-img {
    width: 20%;
    max-width: 70px;
    min-width: 55px;
  }
  .p-talk-section__text {
    font-size: 0.875rem;
  }
  .p-talk-intro__item--left {
    width: 100%;
  }
  .p-talk-intro__item--right {
    width: 100%;
  }
  .p-talk-intro__item-img::after {
    width: 3.8125rem;
    height: 3.8125rem;
    line-height: 3.8125rem;
    font-size: 0.875rem;
  }
  .p-talk-intro__box::before, .p-talk-intro__box::after {
    top: 52%;
  }
  .p-talk-intro__item--right .p-talk-intro__item-img::after {
    right: -3.4375rem;
  }
  .p-talk-mv {
    height: 75vh;
  }
  .p-talk-section__sub-text {
    font-size: 0.75rem;
    margin-top: 0.625rem;
    padding: 0 0.3125rem;
  }
  .p-talk-section__img {
    margin-top: 1.875rem;
    position: relative;
    width: 100%;
  }
  .p-talk-section__img::before {
    content: "";
    display: block;
    padding-top: 65.87537%;
  }
  .p-talk-section__img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .p-talk-section__img-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.25rem;
  }
  .p-talk-section__list--reverse .p-talk-section__item:nth-of-type(2n +1) .p-talk-section__item-person {
    -webkit-transform: translateY(-69%);
            transform: translateY(-69%);
  }
}

@media screen and (max-width: 600px) {
  .p-talk-mv__en-title {
    font-size: 12vw;
    top: -32%;
    left: 20%;
  }
  .p-talk-mv {
    height: 65vh;
  }
}

@media screen and (max-width: 500px) {
  .p-talk-intro__item-img::after {
    left: -3%;
  }
  .p-talk-intro__item--right .p-talk-intro__item-img::after {
    right: -4.0625rem;
  }
  .p-talk-mv {
    height: 48vh;
  }
}

@media screen and (max-width: 450px) {
  .p-talk-mv__en-title {
    top: -33%;
    left: 22%;
  }
  .p-talk-mv__tag {
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .p-talk-mv__en-title {
    top: -29%;
  }
  .p-talk-intro__item--right .p-talk-intro__item-img::after {
    right: -4.1875rem;
  }
}

@media screen and (max-width: 575px) {
  .p-talk-intro__item-img::after {
    width: 3.8125rem;
    height: 3.8125rem;
    font-size: 0.75rem;
    line-height: 3.8125rem;
  }
  .p-talk-mv__back {
    top: 65%;
  }
}

@media screen and (max-width: 375px) {
  .p-talk-intro__item-img::after {
    width: 3.4375rem;
    height: 3.4375rem;
    font-size: 0.625rem;
    line-height: 3.4375rem;
  }
}

.p-benefit .l-main-second {
  margin-bottom: 89px;
  margin-bottom: 5.5625rem;
}

.p-benefit__table {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-benefit__point {
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  padding-left: 17px;
  padding-left: 1.0625rem;
  font-weight: bold;
  color: #1748B1;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
}

.p-benefit__point::before {
  content: "";
  position: absolute;
  top: 16px;
  top: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 11px;
  width: 0.6875rem;
  height: 11px;
  height: 0.6875rem;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(90deg, #125EFF 0%, #00CEC7 100%);
  border-radius: 50%;
}

.p-benefit__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
  margin-bottom: 80px;
  margin-bottom: 5rem;
  margin-top: 25px;
  margin-top: 1.5625rem;
}

.p-benefit__box--three {
  grid-template-columns: repeat(3, 1fr);
}

.p-benefit__person {
  text-align: center;
}

.p-benefit__person-img {
  width: 58px;
  width: 3.625rem;
  margin: 0 auto 10px;
  margin: 0 auto 0.625rem;
}

.p-benefit__person-name {
  font-size: 13px;
  font-size: 0.8125rem;
  color: #1748B1;
}

.p-benefit__comment {
  position: relative;
  padding: 15px 30px;
  padding: 0.9375rem 1.875rem;
  background-color: #D1EAFA;
  border-radius: 1.25rem;
  width: 90%;
  color: #1748B1;
  line-height: 1.7;
}

.p-benefit__comment::before {
  content: "";
  position: absolute;
  top: 35px;
  top: 2.1875rem;
  -webkit-transform: translateY(-50%) translateX(-98%);
          transform: translateY(-50%) translateX(-98%);
  left: 0;
  width: 19px;
  width: 1.1875rem;
  height: 19px;
  height: 1.1875rem;
  background-color: #D1EAFA;
  -webkit-clip-path: polygon(0 50%, 100% 100%, 100% 0);
          clip-path: polygon(0 50%, 100% 100%, 100% 0);
}

.p-benefit__box--bottom {
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}

.p-benefit__box--bottom .p-benefit__comment {
  width: 70%;
  padding: 15px 22px;
  padding: 0.9375rem 1.375rem;
}

.p-benefit__box-comment {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
  gap: 1.5625rem;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
}

.p-benefit__wave {
  position: relative;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  -webkit-transform: translateY(6.25rem);
          transform: translateY(6.25rem);
}

.p-benefit__wave .l-main__subpage-wave-canvas04 {
  position: absolute;
  top: 0;
  left: 0;
  height: 450px;
  height: 28.125rem;
  -webkit-transform: translateY(10%);
          transform: translateY(10%);
}

.p-benefit__wave-inner {
  padding: 210px 35px 0;
  padding: 13.125rem 2.1875rem 0;
  position: relative;
  z-index: 1;
  max-width: 1060px;
  margin: 0 auto;
}

.p-benefit__title {
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
  color: #1748B1;
  text-align: center;
  margin-bottom: 36px;
  margin-bottom: 2.25rem;
}

.p-benefit__back {
  position: absolute;
  top: 20px;
  top: 1.25rem;
  left: -0%;
  font-size: 166px;
  font-size: 10.425rem;
  font-family: "Caveat", cursive;
  color: #00CEC7;
  letter-spacing: -0.04em;
  opacity: 0.27;
}

.p-benefit__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  gap: 1.25rem;
}

.p-benefit__btn .c-btn {
  margin: 0 !important;
  color: #1748B1;
}

.p-benefit__btn .c-btn:hover {
  color: #fff;
}

.p-benefit__btn .c-btn--gradient01, .p-benefit__btn .c-btn--gradient02 {
  color: #fff;
}

.p-benefit__btn .c-btn--gradient01:hover, .p-benefit__btn .c-btn--gradient02:hover {
  color: #125EFF;
}

.p-benefit__btn .banner-mynavi {
  margin-top: 0;
  margin-bottom: 0;
}

.p-benefit__img-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-benefit__img-table img {
  width: 23%;
}

.p-benefit__img-table p {
  width: 74%;
}

.p-benefit__text {
  color: #1748B1;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

.p-benefit__item {
  width: 33.333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-benefit__item img {
  max-width: 380px;
  margin: 0 auto;
}

.p-benefit__text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media screen and (max-width: 767px) {
  .p-training .l-main__inner, .p-benefit .l-main__inner {
    padding-bottom: 0;
  }
  .p-benefit__table {
    margin-bottom: 1.875rem;
  }
  .p-benefit__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
  }
  .p-benefit__comment::before {
    -webkit-transform: translateY(-80%) translateX(-50%);
            transform: translateY(-80%) translateX(-50%);
    left: 50%;
    top: 0;
    -webkit-clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
            clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  }
  .p-benefit__comment {
    font-size: 0.875rem;
    padding: 0.9375rem 1.25rem;
  }
  .p-benefit__point {
    font-size: 1rem;
    width: 100%;
  }
  .p-benefit__person {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    gap: 0.625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-benefit__person-img {
    margin: 0;
  }
  .p-benefit__text {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }
  .p-benefit__box-comment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .p-benefit__box--bottom .p-benefit__comment {
    width: 100%;
  }
  .p-benefit__back {
    font-size: 2.625rem;
    left: 5%;
  }
  .p-benefit__wave {
    -webkit-transform: translateY(0rem);
            transform: translateY(0rem);
    overflow: hidden;
  }
  .p-benefit__wave-inner {
    padding-top: 3.125rem;
  }
  .p-benefit__title {
    font-size: 1.375rem;
  }
  .p-benefit__btn {
    gap: 0.9375rem;
  }
  .p-benefit__img-table {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1.25rem;
  }
  .p-benefit__img-table {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    gap: 0.9375rem !important;
  }
  .p-benefit__img-table img {
    margin: 0 auto;
    max-width: 200px;
    width: 100%;
  }
  .p-benefit__img-table p {
    width: 100%;
  }
  .p-benefit__item {
    width: 100%;
    padding: 0 1.125rem;
  }
  .p-benefit .l-main-second {
    margin-bottom: 4.0625rem;
  }
}

.p-training .c-head__intro {
  margin-bottom: 90px;
  margin-bottom: 5.625rem;
}

.p-training .l-main-second {
  margin-bottom: 89px;
  margin-bottom: 5.5625rem;
}

.p-training__portrait {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  gap: 1.25rem;
  margin: 0 auto 60px;
  margin: 0 auto 3.75rem;
}

.p-training__portrait-item {
  border-radius: 1.875rem;
  padding: 35px 35px;
  padding: 2.1875rem 2.1875rem;
  text-align: center;
  color: #fff;
  background: linear-gradient(110deg, #125EFF 0%, #00CEC7 100%);
}

.p-training__portrait-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-training-figure {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 10px;
  gap: 0.625rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
}

.p-training-figure img {
  width: 23px;
  width: 1.4375rem;
  -webkit-transform: translateY(0.125rem);
          transform: translateY(0.125rem);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.p-training-figure a {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  font-size: 16px;
  font-size: 1rem;
}

.p-training-figure a:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-training-figure__flow {
  margin: 0 auto;
}

.p-training-figure__item01:hover img, .p-training-figure__item02:hover img, .p-training-figure__item03:hover img, .p-training-figure__item04:hover img, .p-training-figure__item05:hover img, .p-training-figure__item06:hover img, .p-training-figure__item07:hover img, .p-training-figure__item08:hover img, .p-training-figure__item09:hover img, .p-training-figure__item10:hover img, .p-training-figure__item11:hover img, .p-training-figure__item12:hover img {
  -webkit-transform: translateY(0.28125rem);
          transform: translateY(0.28125rem);
}

.p-training-figure__item01 {
  grid-area: 1 / 1 / 2 / 3;
}

.p-training-figure__item02 {
  grid-area: 1 / 3 / 2 / 5;
}

.p-training-figure__item03 {
  grid-area: 1 / 5 / 2 / 7;
}

.p-training-figure__item04 {
  grid-area: 1 / 7 / 2 / 9;
}

.p-training-figure__item05 {
  grid-area: 1 / 9 / 2 / 11;
}

.p-training-figure__item06 {
  grid-area: 2 / 1 / 3 / 3;
}

.p-training-figure__item07 {
  grid-area: 2 / 3 / 3 / 11;
}

.p-training-figure__item08 {
  grid-area: 3 / 1 / 4 / 3;
}

.p-training-figure__item09 {
  grid-area: 3 / 3 / 4 / 8;
}

.p-training-figure__item10 {
  grid-area: 3 / 8 / 4 / 11;
}

.p-training-figure__item11 {
  grid-area: 4 / 1 / 5 / 11;
}

.p-training-figure__item12 {
  grid-area: 5 / 1 / 6 / 11;
}

.p-training-figure__item01, .p-training-figure__item02, .p-training-figure__item03, .p-training-figure__item04, .p-training-figure__item05, .p-training-figure__item06, .p-training-figure__item07, .p-training-figure__item08, .p-training-figure__item09, .p-training-figure__item10, .p-training-figure__item11, .p-training-figure__item12 {
  background-color: #CCF5F4;
  border-radius: 1.25rem;
  padding: 7.5px 20px;
  padding: 0.46875rem 1.25rem;
  color: #125EFF;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
}

.p-training-figure__item01, .p-training-figure__item02, .p-training-figure__item03, .p-training-figure__item04, .p-training-figure__item05 {
  color: #fff;
  background: #00CEC7;
}

@media screen and (max-width: 767px) {
  .p-training-figure {
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(8, 1fr);
    gap: 0.5rem;
  }
  .p-training-figure__item01 {
    grid-area: 1 / 1 / 2 / 3;
  }
  .p-training-figure__item02 {
    grid-area: 1 / 3 / 2 / 5;
  }
  .p-training-figure__item03 {
    grid-area: 1 / 5 / 2 / 7;
  }
  .p-training-figure__item04 {
    grid-area: 2 / 1 / 3 / 3;
  }
  .p-training-figure__item05 {
    grid-area: 2 / 3 / 3 / 5;
  }
  .p-training-figure__item06 {
    grid-area: 2 / 5 / 3 / 7;
  }
  .p-training-figure__item07 {
    grid-area: 3 / 1 / 4 / 7;
  }
  .p-training-figure__item08 {
    grid-area: 4 / 1 / 5 / 3;
  }
  .p-training-figure__item09 {
    grid-area: 4 / 3 / 5 / 5;
  }
  .p-training-figure__item10 {
    grid-area: 4 / 5 / 5 / 7;
  }
  .p-training-figure__item11 {
    grid-area: 5 / 1 / 6 / 7;
  }
  .p-training-figure__item12 {
    grid-area: 6 / 1 / 7 / 7;
  }
  .p-training-figure__item01, .p-training-figure__item02, .p-training-figure__item03, .p-training-figure__item04, .p-training-figure__item05, .p-training-figure__item06, .p-training-figure__item07, .p-training-figure__item08, .p-training-figure__item09, .p-training-figure__item10, .p-training-figure__item11, .p-training-figure__item12 {
    padding: 0.3125rem 0.625rem;
    font-size: 1rem;
    gap: 0.25rem;
  }
}

.p-training-figure__item09, .p-training-figure__item10 {
  color: #1748B1;
}

.p-training-figure__arrow {
  position: relative;
  display: inline-block;
  width: 100%;
  height: 3px;
  height: 0.1875rem;
  background: #1748B1;
  margin: 20px 0;
  margin: 1.25rem 0;
}

.p-training-figure__arrow::before, .p-training-figure__arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: -2px;
  right: -0.125rem;
  width: 15px;
  width: 0.9375rem;
  height: 3px;
  height: 0.1875rem;
  border-radius: 9999px;
  background-color: #1748B1;
  -webkit-transform-origin: calc(100% - 2px) 50%;
          transform-origin: calc(100% - 2px) 50%;
}

.p-training-figure__arrow::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.p-training-figure__arrow::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.p-training-figure__years {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 120px;
  gap: 7.5rem;
  width: 71%;
  place-content: center;
  place-items: center;
}

.p-training-figure__years p {
  font-weight: bold;
  padding: 7px;
  padding: 0.4375rem;
  background-color: #fff;
  color: #1748B1;
}

.p-training-support__box {
  background: rgba(0, 206, 199, .1);
  border-radius: 1.25rem;
  padding: 35px 45px;
  padding: 2.1875rem 2.8125rem;
  margin: 30px auto 80px;
  margin: 1.875rem auto 5rem;
}

.p-training-support__box .p-benefit__point {
  width: 30%;
}

.p-training-support__Illustrated {
  max-width: 855px;
  margin: 0 auto;
  width: 90%;
}

.p-training-support__circle {
  width: 270px;
  width: 16.875rem;
  height: 270px;
  height: 16.875rem;
  border-radius: 50%;
  background: #fff;
  position: relative;
  margin: 100px auto 100px;
  margin: 6.25rem auto 6.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}

.p-training-support__circle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 102%;
  height: 102%;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  z-index: -1;
}

.p-training-support__circle .item01 {
  top: 0%;
  left: 50%;
}

.p-training-support__circle .item02 {
  top: 50%;
  left: 100%;
}

.p-training-support__circle .item03 {
  top: 100%;
  left: 50%;
}

.p-training-support__circle .item04 {
  top: 50%;
  left: 0%;
}

.p-training-support__circle .point01 {
  top: -25px;
  top: -1.5625rem;
  left: 112%;
}

.p-training-support__circle .point02 {
  top: 50%;
  left: 460px;
  left: 28.75rem;
}

.p-training-support__circle .point03 {
  top: 106%;
  left: -35px;
  left: -2.1875rem;
}

.p-training-support__circle .point04 {
  top: 42%;
  left: -170px;
  left: -10.625rem;
}

.p-training-support__circle-contents {
  font-size: 22px;
  font-size: 1.375rem;
  text-align: center;
  font-weight: bold;
  color: #1748B1;
  line-height: 1.7;
}

.p-training-support__circle-item {
  font-weight: bold;
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 135px;
  width: 8.4375rem;
  height: 135px;
  height: 8.4375rem;
  border-radius: 50%;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  line-height: 1.7;
  text-align: center;
  font-size: 15px;
  font-size: 0.9375rem;
}

.p-training-support__circle-point {
  position: absolute;
  top: 0%;
  left: 130%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.p-training-support__circle-title {
  font-size: 17px;
  font-size: 1.0625rem;
  font-weight: bold;
  color: #1748B1;
  line-height: 1.7;
  margin-bottom: 7px;
  margin-bottom: 0.4375rem;
}

.p-training-support__circle-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: #1748B1;
}

.p-training-support__circle-bar {
  position: absolute;
  width: 210px;
  width: 13.125rem;
}

.p-training-support__circle-bar01 {
  height: 19px;
  height: 1.1875rem;
  width: 210px;
  width: 13.125rem;
  position: absolute;
  top: -50px;
  top: -3.125rem;
  left: 101%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
}

.p-training-support__circle-bar02 {
  height: 19px;
  height: 1.1875rem;
  width: 220px;
  width: 13.75rem;
  position: absolute;
  top: 50%;
  left: 430px;
  left: 26.875rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
}

.p-training-support__circle-bar03 {
  height: 30px;
  height: 1.875rem;
  width: 235px;
  width: 14.6875rem;
  position: absolute;
  top: 102%;
  left: -29px;
  left: -1.8125rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
}

.p-training-support__circle-bar04 {
  height: 32px;
  height: 2rem;
  width: 235px;
  width: 14.6875rem;
  position: absolute;
  top: 35%;
  left: -166px;
  left: -10.375rem;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: contain;
     object-fit: contain;
}

.p-training__icon-career {
  margin: 0 auto 8px;
  margin: 0 auto 0.5rem;
  width: 78px;
  width: 4.875rem;
}

.p-training-support__box-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #1748B1;
  border-bottom: 0.0625rem solid #1748B1;
}

.p-training-support__box-contents .p-benefit__box {
  margin: 0;
}

.p-training-support__box-contents .p-benefit__comment {
  width: 76%;
}

.p-training-support__box-contents .p-benefit__person {
  width: 130px;
  width: 8.125rem;
}

.p-training-support__box-contents:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.p-training-support__textarea {
  width: 670px;
  width: 41.875rem;
}

.p-training-support__box-title {
  font-weight: bold;
  color: #1748B1;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}

.p-training-support__box-text {
  color: #1748B1;
  line-height: 1.7;
  margin-bottom: 25px;
  margin-bottom: 1.5625rem;
}

.p-training-support__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  gap: 12px;
  gap: 0.75rem;
  margin-bottom: 30px;
  margin-bottom: 1.875rem;
}

.p-training-support__item {
  background: rgba(0, 206, 199, .2);
  border-radius: 1.25rem;
  padding: 15px 2px;
  padding: 0.9375rem 0.125rem;
  font-weight: 500;
  color: #1748B1;
  font-size: 17px;
  font-size: 1.0625rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-training-support__job {
  width: 450px;
  width: 28.125rem;
  margin: 30px auto;
  margin: 1.875rem auto;
}

@media screen and (max-width: 767px) {
  .p-training .p-faq-jump {
    margin-bottom: 2.9375rem;
  }
  .p-training__portrait {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .p-training__portrait-text {
    font-size: 1.125rem;
  }
  .p-training-figure__flow {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0.75rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-training-figure__arrow {
    width: 0.1875rem;
    height: 35.9375rem;
    margin: 0;
    margin-left: 1.25rem;
  }
  .p-training-figure__years {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3.3125rem;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    text-orientation: upright;
  }
  .p-training-figure__years p {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
  }
  .p-training-figure__arrow::before, .p-training-figure__arrow::after {
    top: 100%;
    right: 0;
  }
  .p-training-figure__arrow::before {
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .p-training-figure__arrow::after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .p-training-figure {
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(5, 1fr);
    height: 575px;
    width: calc(100% - 50px);
  }
  .p-training-figure__item01 {
    grid-area: 1 / 1 / 2 / 2;
  }
  .p-training-figure__item02 {
    grid-area: 2 / 1 / 3 / 2;
  }
  .p-training-figure__item03 {
    grid-area: 3 / 1 / 4 / 2;
  }
  .p-training-figure__item04 {
    grid-area: 4 / 1 / 5 / 2;
  }
  .p-training-figure__item05 {
    grid-area: 5 / 1 / 6 / 2;
  }
  .p-training-figure__item06 {
    grid-area: 1 / 2 / 2 / 3;
  }
  .p-training-figure__item07 {
    grid-area: 2 / 2 / 6 / 3;
  }
  .p-training-figure__item08 {
    grid-area: 1 / 3 / 2 / 4;
  }
  .p-training-figure__item09 {
    grid-area: 2 / 3 / 4 / 4;
  }
  .p-training-figure__item10 {
    grid-area: 4 / 3 / 6 / 4;
  }
  .p-training-figure__item11 {
    grid-area: 1 / 4 / 6 / 5;
  }
  .p-training-figure__item12 {
    grid-area: 1 / 5 / 6 / 6;
  }
  .p-training-figure img {
    width: 1rem;
    height: 0.625rem;
  }
  .p-training-figure__item01, .p-training-figure__item02, .p-training-figure__item03, .p-training-figure__item04, .p-training-figure__item05, .p-training-figure__item06, .p-training-figure__item07, .p-training-figure__item08, .p-training-figure__item09, .p-training-figure__item10, .p-training-figure__item11, .p-training-figure__item12 {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    border-radius: 1.5rem;
    padding: 0.3125rem 0.9375rem;
    letter-spacing: 0.1em;
    height: 100%;
    width: 100%;
    gap: 0.25rem;
  }
  .p-training-support__box-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 1.875rem;
    margin-bottom: 1.875rem;
    gap: 0.625rem;
  }
  .p-training-support__box {
    padding: 2rem 0.75rem;
    margin-bottom: 1.875rem;
  }
  .p-training-support__box:last-child {
    margin-bottom: 0;
  }
  .p-training-support__box .p-benefit__point {
    width: 100%;
  }
  .p-training-support__textarea {
    width: 100%;
  }
  .p-training-support__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-training-support__item {
    min-height: 110px;
  }
  .p-training-support__circle {
    margin: 11.25rem auto 10rem;
    width: 12.5rem;
    height: 12.5rem;
  }
  .p-training-support__circle-contents {
    font-size: 0.98125rem;
  }
  .p-training-support__circle-item {
    width: 6.875rem;
    height: 6.875rem;
    font-size: 0.8125rem;
  }
  .p-training-support__circle .point01 {
    top: -5.3125rem;
  }
  .p-training-support__circle .point02 {
    top: 17.5rem;
    left: 13.75rem;
    width: 7.5rem;
  }
  .p-training-support__circle .point04 {
    top: -4.0625rem;
    left: -1.25rem;
    width: 7.5rem;
  }
  .p-training-support__circle .point03 {
    top: 17.5rem;
    left: -1.25rem;
  }
  .p-training-support__circle-point {
    width: 8.125rem;
  }
  .p-training-support__circle-title {
    font-size: 0.875rem;
  }
  .p-training-support__circle-text {
    font-size: 0.75rem;
  }
  .p-training-support__circle-bar01, .p-training-support__circle-bar02, .p-training-support__circle-bar03, .p-training-support__circle-bar04 {
    display: none;
  }
  .p-training-support__circle-bar01-sp {
    width: 8.4375rem;
    height: 80px;
    position: absolute;
    top: -118px;
    right: -73px;
  }
  .p-training-support__circle-bar02-sp {
    width: 8.4375rem;
    height: 220px;
    position: absolute;
    top: -120px;
    left: -58px;
  }
  .p-training-support__box-contents .p-benefit__person {
    width: 100%;
  }
  .p-training-support__box-contents .p-benefit__comment {
    width: 100%;
  }
  .p-training__portrait-item {
    padding: 1.5625rem 0.625rem;
  }
  .p-training-figure__item01, .p-training-figure__item02, .p-training-figure__item03, .p-training-figure__item04, .p-training-figure__item05, .p-training-figure__item06, .p-training-figure__item08 {
    height: 100%;
    min-height: 6.75rem;
  }
  .p-training-figure__item07 {
    min-height: 28.625rem;
  }
  .p-training-figure__item09, .p-training-figure__item10 {
    min-height: 14.0875rem;
  }
  .p-training-figure__item11, .p-training-figure__item12 {
    min-height: 35.9375rem;
  }
  .p-training-figure a {
    font-size: 0.9375rem;
  }
  .p-training-support__Illustrated {
    margin: 1.5625rem auto;
    max-width: 400px;
  }
  .p-training .c-head__intro {
    margin-bottom: 2.5rem;
  }
  .p-training .l-main-second {
    margin-bottom: 2.125rem;
  }
}

@media screen and (max-width: 480px) {
  .p-training-figure {
    width: calc(100% - 35px);
  }
  .p-training-figure p, .p-training-figure a {
    font-size: 0.875rem;
  }
  .p-training-figure__arrow {
    margin-left: 0.625rem;
  }
  .p-training-figure__item01, .p-training-figure__item02, .p-training-figure__item03, .p-training-figure__item04, .p-training-figure__item05 {
    width: 3.4375rem;
  }
  .p-training-figure__item06, .p-training-figure__item08 {
    font-size: 0.75rem !important;
  }
}

.p-group .l-main-second {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.p-group-intro .c-head__h1 {
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

.p-group-intro__text {
  color: #1748B1;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

.p-group-intro__map {
  width: 38%;
  position: relative;
}

.p-group-intro__map-point-wrap {
  position: absolute;
  bottom: -10px;
  bottom: -0.625rem;
  right: 0;
}

.p-group-intro__map-point {
  font-size: 14px;
  font-size: 0.875rem;
  color: #1748B1;
  font-weight: 500;
  padding-left: 12px;
  padding-left: 0.75rem;
  position: relative;
}

.p-group-intro__map-point::before {
  content: '';
  position: absolute;
  top: 12px;
  top: 0.75rem;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
  width: 9px;
  width: 0.5625rem;
  height: 9px;
  height: 0.5625rem;
  background-color: #D383FF;
}

.p-group-intro__map-point--blue::before {
  background-color: #125EFF;
}

.p-group-intro__select {
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 35px 50px;
  padding: 2.1875rem 3.125rem;
  border: 2px solid #1748B1;
  border: 0.125rem solid #1748B1;
  position: relative;
}

.p-group-intro__select-title {
  color: #1748B1;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  line-height: 1.4;
}

.p-group-intro__select-options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-group-intro__select-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
  cursor: pointer;
  -webkit-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
}

.p-group-intro__select-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.p-group-intro__select-option .p-group-intro__select-radio {
  width: 19px;
  width: 1.1875rem;
  height: 19px;
  height: 1.1875rem;
  border: 1px solid #125EFF;
  border: 0.0625rem solid #125EFF;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.p-group-intro__select-option .p-group-intro__select-radio::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 11px;
  width: 0.6875rem;
  height: 11px;
  height: 0.6875rem;
  background-color: #125EFF;
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.p-group-intro__select-option input[type="radio"]:checked + .p-group-intro__select-radio::before {
  opacity: 1;
}

.p-group-intro__select-option input[type="radio"]:checked + .p-group-intro__select-radio::after {
  opacity: 1;
}

.p-group-intro__select-option label {
  color: #1748B1;
  font-size: 21px;
  font-size: 1.3125rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.p-group-list {
  margin-top: 80px;
  margin-top: 5rem;
  min-height: 580px;
}

.p-group-list__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 1.875rem;
  position: relative;
}

@media (max-width: 1024px) {
  .p-group-list__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5625rem;
  }
}

.p-group-list__item {
  background-color: #fff;
  border: 2px solid #125EFF;
  border: 0.125rem solid #125EFF;
  border-radius: 1rem;
  padding: 30px;
  padding: 1.875rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.p-group-list__item.hidden {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  pointer-events: none;
  -webkit-transition: visibility 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: visibility 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, visibility 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, visibility 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.p-group-list__item:not(.hidden) {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  -webkit-transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, visibility 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out, visibility 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}

.p-group-list__item:hover {
  -webkit-transform: translateY(-0.3125rem);
          transform: translateY(-0.3125rem);
}

.p-group-list__icon {
  width: 60px;
  width: 3.75rem;
  height: 60px;
  height: 3.75rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  color: #1748B1;
}

.p-group-list__icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) {
  .p-group-list__icon {
    width: 3.125rem;
    height: 3.125rem;
    margin-bottom: 0.9375rem;
  }
}

.p-group-list__company-name {
  color: #1748B1;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 15px;
  margin-bottom: 0.9375rem;
}

@media (max-width: 767px) {
  .p-group-list__company-name {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
}

.p-group-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  gap: 0.6875rem;
}

.p-group-list__description {
  color: #333;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media (max-width: 767px) {
  .p-group-list__description {
    font-size: 0.8125rem;
    margin-bottom: 0.9375rem;
  }
}

.p-group-list__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  color: #125EFF;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.p-group-list__link:not(:last-of-type) {
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}

.p-group-list__link img {
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease;
}

.p-group-list__link svg {
  width: 20px;
  width: 1.25rem;
  -webkit-transform: translateY(-0.0625rem);
          transform: translateY(-0.0625rem);
}

.p-group-list__link svg path {
  fill: #125EFF;
}

.p-group-list__link:hover {
  color: #125EFF;
}

@media (max-width: 767px) {
  .p-group-list__link {
    font-size: 0.875rem;
  }
}

@media screen and (min-width: 768px) and (max-width: 1025px) {
  .p-group-list__company-name {
    font-size: 16px;
  }
  .p-group-list__description {
    font-size: 14px;
  }
  .p-group-list__link {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .p-group-list {
    margin-top: 0;
  }
  .p-group-list__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .p-group-list__item {
    padding: 1.25rem;
  }
  .p-group-intro__select-options {
    gap: 0.3125rem 1.5rem;
  }
  .p-group-intro__select-option label {
    font-size: 1rem;
  }
  .p-group-intro__select-title {
    margin-bottom: 0.625rem;
  }
  .p-group-intro {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 0rem;
  }
  .p-group-intro .c-head {
    display: contents;
  }
  .p-group-intro__head {
    display: block;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .p-group-intro__map {
    width: 70%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    max-width: 300px;
    margin: 0 auto 1.25rem;
  }
  .p-group-intro__map-point-wrap {
    -webkit-transform: translateX(65%);
            transform: translateX(65%);
    width: 65%;
    bottom: 0;
  }
  .p-group-intro__select {
    padding: 0.9375rem 1.5625rem;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
  .p-group-intro__map-point {
    font-size: 0.75rem;
  }
  .p-group .l-main-second {
    margin-bottom: 1.5625rem;
  }
}

@media screen and (max-width: 560px) {
  .p-group-intro__map-point-wrap {
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
}

@media screen and (max-width: 475px) {
  .p-group-intro__map-point-wrap {
    -webkit-transform: translateX(70%);
            transform: translateX(70%);
    width: 75%;
    right: -0.625rem;
  }
  .p-group-intro__map {
    width: 65%;
    margin-left: 0;
  }
}

.banner-mynavi {
  display: block;
  width: 195px;
  margin: 0 auto;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.banner-mynavi:hover {
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.banner-mynavi--bottom {
  margin-bottom: 70px;
  margin-bottom: 4.375rem;
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.js-text-effect-trigger {
  overflow: hidden;
}

.js-text-effect {
  position: relative;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  --translateX:0px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.js-text-effect::before {
  content: '';
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(#125EFF), to(#00CEC7));
  background: linear-gradient(to right, #125EFF, #00CEC7);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateX(var(--translateX));
          transform: translateX(var(--translateX));
}

@-moz-document url-prefix(){
    .p-about-section__title-en {
       opacity: 0.4;
    }
}