@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

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

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

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

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

option {
  color: black;
}

body {
  background: #FFFFFF;
  color: #0F3755;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5625;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.u-hidden-sp {
  display: none;
}
@media screen and (min-width: 1100px) {
  .u-hidden-sp {
    display: initial;
  }
}

@media screen and (min-width: 1100px) {
  .u-hidden-pc {
    display: none;
  }
}

.l-inner {
  padding-inline: 30px;
  max-width: 1260px;
  margin-inline: auto;
}

.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background: #0F3755;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1100px) {
  .l-header {
    padding-block: 20px;
  }
}
@media screen and (min-width: 1100px) and (max-width: 1239.98px) {
  .l-header {
    padding-inline: clamp(1.25rem, -11.027rem + 17.86vw, 2.813rem);
  }
}
@media screen and (min-width: 1240px) {
  .l-header {
    padding-inline: 45px;
  }
}
.l-header a {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-header a:hover {
    opacity: 0.7;
  }
}

.p-header__contents {
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
@media screen and (min-width: 1100px) {
  .p-header__contents {
    padding-left: 0;
  }
}

.p-header__logo a {
  display: flex;
  align-items: center;
  gap: 18.12px;
}
.p-header__logo a img {
  width: 168px;
  height: 40px;
}
@media screen and (max-width: 390px) {
  .p-header__logo a img {
    width: clamp(8.75rem, 0.75rem + 40vw, 10.5rem);
    height: clamp(2.083rem, 0.179rem + 9.52vw, 2.5rem);
  }
}
@media screen and (min-width: 768px) {
  .p-header__logo a img {
    width: 177.883px;
  }
}
.p-header__logo a .text {
  color: #FFF;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.47368;
}
@media screen and (max-width: 1239.98px) {
  .p-header__logo a .text {
    display: none;
  }
}

.p-header-nav__list {
  display: none;
}
@media screen and (min-width: 1100px) {
  .p-header-nav__list {
    display: flex;
    align-items: center;
    gap: 15px;
  }
}

.p-header-nav__link {
  width: 130px;
  height: 25px;
  border-radius: 50px;
  border: 1px solid #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.461538;
}

.p-header-nav__button {
  display: block;
  width: 40px;
  height: 40px;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .p-header-nav__button {
    display: none;
  }
}
.p-header-nav__button span {
  position: absolute;
  left: 5px;
  transform: translateY(-50%);
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
}
.p-header-nav__button span:nth-child(1) {
  top: calc(50% - 8px);
  width: 30px;
}
.p-header-nav__button span:nth-child(2) {
  top: 50%;
  width: 25px;
}
.p-header-nav__button span:nth-child(3) {
  top: calc(50% + 8px);
  width: 30px;
}

.p-header__subNav {
  padding-left: 30px;
}
@media screen and (max-width: 390px) {
  .p-header__subNav {
    padding-left: clamp(0.625rem, -5.089rem + 28.57vw, 1.875rem);
  }
}
@media screen and (min-width: 1100px) {
  .p-header__subNav {
    padding-left: 0;
    position: absolute;
    bottom: -60px;
    right: 0;
  }
}
.p-header__subNav ul {
  display: flex;
}

.p-header-subNav__link {
  display: flex;
  align-items: center;
  height: 60px;
  border-radius: 0 0 0 20px;
  color: #0F3755;
  font-family: "Anton", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.52;
  position: relative;
}
.p-header-subNav__link--entry {
  width: 90px;
  padding-left: 20px;
  background: #44ACEB;
}
@media screen and (min-width: 1100px) {
  .p-header-subNav__link--entry {
    width: 171.992px;
    padding-left: 28px;
    margin-right: -32px;
    z-index: 120;
  }
}
.p-header-subNav__link--contact {
  display: none;
}
@media screen and (min-width: 1100px) {
  .p-header-subNav__link--contact {
    display: flex;
    width: 160px;
    padding-left: 39px;
    background: #BDE200;
    z-index: 125;
  }
}

.l-drawer {
  position: fixed;
  z-index: 120;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  padding: 80px 30px 36px;
  background: linear-gradient(343deg, #44ACEB 3.5%, #2FDB8E 48.77%, #BDE200 99.24%);
  transform: translateX(100%);
  transition: transform 1s ease;
  overflow-y: scroll;
}
@media screen and (min-width: 1100px) {
  .l-drawer {
    display: none;
  }
}
.l-drawer.is-checked {
  transform: translateX(0);
}
.l-drawer a {
  transition: opacity 0.3s ease;
}
@media (any-hover: hover) {
  .l-drawer a:hover {
    opacity: 0.7;
  }
}

.p-drawer__closeButton {
  position: absolute;
  z-index: 130;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #FFF;
}
.p-drawer__closeButton span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 5px;
  background: #78DF46;
}
.p-drawer__closeButton span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-drawer__closeButton span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-drawer__nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 26px;
}

.p-drawer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.p-drawer-nav__link {
  color: #FFF;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 1.2px;
}

.p-drawer-nav__subList {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-drawer-subList__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 60px;
  border-radius: 0 0 0 20px;
  color: #0F3755;
  font-family: "Anton", sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.52;
}
.p-drawer-subList__link--entry {
  background: #44ACEB;
}
.p-drawer-subList__link--contact {
  background: #BDE200;
}

.l-main {
  margin-top: 60px;
}
@media screen and (min-width: 1100px) {
  .l-main {
    margin-top: 80px;
  }
}

.l-footer {
  padding-top: 33px;
  padding-bottom: 28px;
  background: #0F3755;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1100px) {
  .l-footer {
    padding-top: 41px;
    padding-bottom: 40px;
  }
}

.p-footer__contents {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 1100px) {
  .p-footer__contents {
    flex-direction: row;
    justify-content: space-between;
  }
}

.p-footer__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) and (max-width: 1099.98px) {
  .p-footer__head {
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .p-footer__head {
    gap: 21px;
  }
}

.p-footer-head__logo {
  width: 244px;
  aspect-ratio: 244/55;
}
.p-footer-head__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-footer-head__name {
  color: #FFF;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.6px;
}
@media screen and (min-width: 768px) and (max-width: 1099.98px) {
  .p-footer-head__name {
    text-align: center;
  }
}

.p-footer__body {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
@media screen and (min-width: 768px) {
  .p-footer__body {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    gap: 81px;
  }
}

.p-footer__nav {
  display: flex;
}
@media screen and (min-width: 768px) {
  .p-footer__nav {
    gap: 74px;
  }
}

.p-footer__navList {
  width: 50%;
}
@media screen and (min-width: 768px) {
  .p-footer__navList {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.p-footer__navList a {
  color: #FFF;
  font-size: 16px;
  font-weight: 700;
  line-height: 2.875;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 390px) {
  .p-footer__navList a {
    font-size: clamp(0.813rem, -0.045rem + 4.29vw, 1rem);
  }
}
@media screen and (min-width: 768px) {
  .p-footer__navList a {
    font-size: 15px;
    line-height: 3.06667;
    letter-spacing: 1.5px;
  }
}

@media screen and (min-width: 768px) {
  .p-footer__copyright {
    padding-bottom: 10px;
  }
}
.p-footer__copyright small {
  color: #FFF;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.p-toTop {
  position: fixed;
  z-index: 80;
  bottom: 15.5px;
  right: 15.5px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-family: "Anton", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: normal;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) and (max-width: 1259.98px) {
  .p-toTop {
    right: 30px;
  }
}
@media screen and (min-width: 1260px) {
  .p-toTop {
    right: calc(30px + (100vw - 1260px) / 2);
  }
}
@media screen and (min-width: 768px) {
  .p-toTop {
    bottom: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099.98px) {
  .p-toTop {
    width: 80px;
    height: 80px;
  }
}
@media screen and (min-width: 1100px) {
  .p-toTop {
    width: 100px;
    height: 100px;
  }
}
.p-toTop.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.c-section-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-section-title__en span {
  display: inline-block;
  color: #0F3755;
  font-family: "Anton", sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1.5px;
}
@media screen and (min-width: 768px) {
  .c-section-title__en span {
    font-size: 56px;
    letter-spacing: -0.8px;
  }
}
.c-section-title__en span:nth-child(1) {
  color: #FFF;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #0F3755;
}
.c-section-title__en--white span {
  color: #FFF;
}
.c-section-title__en--white span:nth-child(1) {
  color: #0F3755;
  -webkit-text-stroke-color: #FFF;
}

.c-section-title__ja {
  width: 110px;
  height: 21px;
  border-radius: 42.373px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  color: #FFF;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-section-title__ja {
    width: 130px;
    height: 25px;
    border-radius: 50px;
    font-size: 18px;
  }
}

.js-titleSlide .a-slideUp {
  height: -moz-fit-content;
  height: fit-content;
  overflow: hidden;
}
.js-titleSlide .a-slideUp span {
  transform: translateY(120%);
  transition: transform 0.3s linear;
}
.js-titleSlide .a-slideUp span:nth-child(1) {
  transition-delay: 0.4s;
}
.js-titleSlide .a-slideUp span:nth-child(2) {
  transition-delay: 0.5s;
}
.js-titleSlide .a-slideUp span:nth-child(3) {
  transition-delay: 0.6s;
}
.js-titleSlide .a-slideUp span:nth-child(4) {
  transition-delay: 0.7s;
}
.js-titleSlide .a-slideUp span:nth-child(5) {
  transition-delay: 0.8s;
}
.js-titleSlide .a-slideUp span:nth-child(6) {
  transition-delay: 0.9s;
}
.js-titleSlide .a-slideUp span:nth-child(7) {
  transition-delay: 1s;
}
.js-titleSlide .a-slideUp span:nth-child(8) {
  transition-delay: 1.1s;
}
.js-titleSlide .a-slideUp span:nth-child(9) {
  transition-delay: 1.2s;
}
.js-titleSlide .a-slideUp span:nth-child(10) {
  transition-delay: 1.3s;
}
.js-titleSlide .a-slideUp span:nth-child(11) {
  transition-delay: 1.4s;
}
.js-titleSlide .a-slideUp span:nth-child(12) {
  transition-delay: 1.5s;
}
.js-titleSlide.title-show .a-slideUp span {
  transform: translateY(0);
}

.p-hero {
  width: 100%;
  height: calc(100vh - 60px);
  padding: 15px 15px 30px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1100px) {
  .p-hero {
    height: calc(100vh - 80px);
    padding: 41px 45px 49px;
  }
}

.p-hero__images {
  position: absolute;
  top: 15px;
  left: 15px;
  width: calc(100% - 30px);
  height: calc(100% - 15px - 30px);
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  .p-hero__images {
    top: 41px;
    left: 45px;
    width: calc(100% - 90px);
    height: calc(100% - 41px - 49px);
  }
}

.p-hero__image {
  position: absolute;
  inset: 0;
  transform: scale(1.05);
  animation: fvScale 12s linear infinite;
}
.p-hero__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-hero__image.image01 {
  z-index: 8;
}
.p-hero__image.image02 {
  z-index: 5;
  animation-delay: 4s;
}
.p-hero__image.image03 {
  z-index: 3;
  animation-delay: 8s;
}

@keyframes fvScale {
  0% {
    opacity: 1;
    transform: scale(1.05);
  }
  30% {
    opacity: 1;
  }
  33% {
    opacity: 0;
    transform: scale(1);
  }
  66% {
    opacity: 0;
  }
  95% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1.05);
  }
}
.p-hero__catchphrase {
  margin-top: 47px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1100px) {
  .p-hero__catchphrase {
    margin-top: 79px;
    gap: 20px;
  }
}
.p-hero__catchphrase p {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-hero__catchphrase p::before {
  content: "";
  position: absolute;
  z-index: 10;
  inset: 0;
  background: #FFF;
  opacity: 0;
  transform: scaleX(0);
  animation: showSlide 0.5s linear forwards;
  transform-origin: left center;
}
.p-hero__catchphrase p span {
  display: inline-block;
  padding-left: 15px;
  font-size: clamp(18px, 6.1538vw, 31px);
  font-weight: 700;
  line-height: 1.5777;
  letter-spacing: 1.2px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 12;
  opacity: 0;
  animation: showOpacity 0.5s linear forwards;
}
@media screen and (min-width: 1100px) {
  .p-hero__catchphrase p span {
    padding-left: 25px;
    padding-right: 5px;
    font-size: 42px;
    line-height: 1.5476;
    letter-spacing: 2.1px;
  }
}

@keyframes showSlide {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
@keyframes showOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-lead {
  padding-top: 17px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1100px) {
  .p-lead {
    padding-top: 11px;
  }
}

.p-lead__slideText {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: textSlide 10s linear infinite;
}
.p-lead__slideText p {
  margin-right: 12px;
  width: -moz-fit-content;
  width: fit-content;
  color: #FFF;
  font-family: "Anton", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.041237;
  letter-spacing: 1.6px;
  white-space: nowrap;
}
@media screen and (min-width: 768px) and (max-width: 1099.98px) {
  .p-lead__slideText p {
    margin-right: clamp(0.75rem, -0.407rem + 2.41vw, 1.25rem);
    font-size: clamp(2rem, -7.398rem + 19.58vw, 6.063rem);
  }
}
@media screen and (min-width: 1100px) {
  .p-lead__slideText p {
    margin-right: 20px;
    font-size: 97px;
    letter-spacing: 4.85px;
  }
}

@keyframes textSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-25%);
  }
}
.p-message {
  padding-top: 55px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-message {
    padding-top: 86px;
  }
}
.p-message.bg-show .p-message__bgFigure {
  opacity: 1;
}

.p-message__bgFigure {
  position: absolute;
  z-index: 0;
  top: -23.8461538462vw;
  left: 0;
  width: 100%;
  height: 141.2820512821vw;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1s ease-out 0.3s;
}
@media screen and (min-width: 768px) {
  .p-message__bgFigure {
    top: -22.8472222222vw;
    height: 133.4027777778vw;
  }
}
.p-message__bgFigure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}

.p-message__head {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-message__head {
    flex-direction: row;
    align-items: stretch;
    gap: 13px;
  }
}
@media screen and (min-width: 1260px) {
  .p-message__head {
    width: calc(1260px + (100vw - 1260px) / 2);
    margin-left: auto;
  }
}

.p-message__headLeft {
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .p-message__headLeft {
    flex-shrink: 0;
  }
}

.p-message__title {
  width: 100%;
}

.p-message__imagesWrapper {
  position: relative;
  z-index: 10;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-message__imagesWrapper {
    flex-grow: 1;
  }
}
.p-message__imagesWrapper::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-message__imagesWrapper::after {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 10%;
    height: 100%;
    background: linear-gradient(90deg, rgb(255, 255, 255), rgba(255, 255, 255, 0));
  }
}

.p-message__images {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: slideImgs 15s linear infinite;
}
@media screen and (min-width: 768px) {
  .p-message__images {
    animation-duration: 23s;
  }
}

@keyframes slideImgs {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.p-message__image {
  flex-shrink: 0;
  width: 200px;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 12px;
}
@media screen and (min-width: 768px) {
  .p-message__image {
    width: 330px;
    aspect-ratio: 330/248;
    border-radius: 10px;
    margin-right: 20px;
  }
}
.p-message__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-message__inner {
  position: relative;
  z-index: 10;
}

.p-message__heading {
  margin-top: 16px;
  color: #0F3755;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 390px) {
  .p-message__heading {
    font-size: clamp(1.625rem, -0.089rem + 8.57vw, 2rem);
  }
}
@media screen and (min-width: 1100px) {
  .p-message__heading {
    margin-top: 38px;
    font-size: 42px;
    line-height: 1.47619;
    letter-spacing: 4.2px;
  }
}

.p-message__main {
  margin-top: 31px;
  padding-inline: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-message__main {
    margin: 40px auto 0;
    max-width: 1260px;
    gap: 31px;
  }
}

.p-message__text {
  color: #0F3755;
  text-align: justify;
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.66667;
  letter-spacing: 0.27px;
}
@media screen and (min-width: 768px) {
  .p-message__text {
    font-size: 18px;
    line-height: 1.94444;
    letter-spacing: 0.54px;
    width: 88.5%;
    max-width: 1062px;
  }
}

.p-message__name {
  text-align: right;
  color: #0F3755;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.125;
  letter-spacing: 2.4px;
}
@media screen and (min-width: 768px) {
  .p-message__name {
    text-align: left;
    font-size: 20px;
    line-height: 3.1;
    letter-spacing: 3px;
  }
}

.p-work {
  padding-top: 73px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-work {
    padding-top: 95px;
  }
}

.p-work__contents {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-work__contents {
    margin-top: 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.p-work__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-work__content {
    gap: 20px;
  }
}

.p-work-content__image {
  width: 100%;
  aspect-ratio: 330/190;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-work-content__image {
    aspect-ratio: 223/127;
    border-radius: 20px;
  }
}
.p-work-content__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-work-content__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1100px) {
  .p-work-content__body {
    padding-left: 159px;
    padding-right: 15px;
    gap: 22px;
  }
}

.p-work-content__bodyHead {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 1100px) {
  .p-work-content__bodyHead {
    position: relative;
  }
}

.p-work-content__number {
  flex-shrink: 0;
  width: 24.2424242424%;
  max-width: 80px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1100px) {
  .p-work-content__number {
    position: absolute;
    top: 1px;
    left: -144px;
    width: 114px;
    max-width: none;
  }
}
.p-work-content__number::before {
  content: "";
  position: absolute;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 50%;
  background: #FFF;
}
.p-work-content__number span {
  font-family: "Anton", sans-serif;
  font-size: 35.088px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.754px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-work-content__number span {
    font-size: 50px;
    letter-spacing: 2.5px;
  }
}

.p-work-content__heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 4.8px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 390px) {
  .p-work-content__heading {
    font-size: clamp(1.5rem, -0.786rem + 11.43vw, 2rem);
  }
}
@media screen and (min-width: 1100px) {
  .p-work-content__heading {
    font-size: 20px;
    letter-spacing: 3px;
  }
}

.p-work-content__text {
  color: #0F3755;
  text-align: justify;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.4px;
}
@media screen and (min-width: 768px) {
  .p-work-content__text {
    font-size: 16px;
    line-height: 1.5625;
    letter-spacing: 1.6px;
  }
}

.p-experience {
  padding-top: 72px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-experience {
    padding-top: 103px;
  }
}

.p-experience__head {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media screen and (min-width: 768px) {
  .p-experience__head {
    flex-direction: row;
    gap: 5.5%;
  }
}

@media screen and (min-width: 768px) {
  .p-experience__headText {
    padding-top: 15px;
  }
}
.p-experience__headText span {
  color: #0F3755;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.4px;
}
@media screen and (min-width: 768px) {
  .p-experience__headText span {
    font-size: 25px;
    letter-spacing: 1.25px;
  }
}
@media screen and (min-width: 768px) {
  .p-experience__headText span.sp {
    display: none;
  }
}
.p-experience__headText span.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-experience__headText span.pc {
    display: initial;
  }
}

.p-experience__cards {
  margin-top: 25px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-experience__cards {
    margin-top: 50px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

.p-experience-card {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-experience-card {
    border-radius: 20px;
  }
}
@media screen and (min-width: 1200px) {
  .p-experience-card {
    flex-direction: row;
  }
}

.p-experience-card__icon {
  width: 100%;
  height: 136px;
  background: #CFD7DD;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 1200px) {
  .p-experience-card__icon {
    flex-shrink: 0;
    width: 225px;
    height: 100%;
  }
}

.p-experience-card__image {
  -o-object-fit: contain;
     object-fit: contain;
}
.p-experience-card__image.image1 {
  width: 147px;
  height: 82px;
}
@media screen and (min-width: 1200px) {
  .p-experience-card__image.image1 {
    width: 186px;
    height: 104px;
  }
}
.p-experience-card__image.image2 {
  width: 105px;
  height: 95.134px;
}
@media screen and (min-width: 1200px) {
  .p-experience-card__image.image2 {
    width: 149px;
    height: 135px;
  }
}
.p-experience-card__image.image3 {
  width: 90px;
  height: 81.964px;
}
@media screen and (min-width: 1200px) {
  .p-experience-card__image.image3 {
    width: 112px;
    height: 102px;
  }
}
.p-experience-card__image.image4 {
  width: 98px;
  height: 75px;
}
@media screen and (min-width: 1200px) {
  .p-experience-card__image.image4 {
    width: 137px;
    height: 105px;
  }
}

.p-experience-card__body {
  padding: 20px;
  background: #0F3755;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media screen and (min-width: 768px) {
  .p-experience-card__body {
    flex-grow: 1;
    gap: 8px;
  }
}
@media screen and (min-width: 1200px) {
  .p-experience-card__body {
    padding: 32px 39px 36px 38px;
  }
}

.p-experience-card__heading {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 3.3px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 390px) {
  .p-experience-card__heading {
    font-size: clamp(1.125rem, -0.018rem + 5.71vw, 1.375rem);
  }
}
@media screen and (min-width: 1200px) {
  .p-experience-card__heading {
    line-height: 1.45455;
    letter-spacing: 3.3px;
  }
}
.p-experience-card__heading span {
  display: inline-block;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 3.3px;
}
@media screen and (min-width: 1200px) {
  .p-experience-card__heading span {
    line-height: 1.45455;
    letter-spacing: 3.3px;
  }
}

.p-experience-card__text {
  color: #FFF;
  text-align: justify;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 1200px) {
  .p-experience-card__text {
    line-height: 1.5625;
  }
}

.p-slider {
  padding-top: 30px;
  padding-bottom: 72px;
}
@media screen and (min-width: 1100px) {
  .p-slider {
    padding-top: 102px;
    padding-bottom: 100px;
  }
}

.p-slider__imagesWrapper {
  overflow: hidden;
}

.p-slider__images {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  animation: slider 35s linear infinite;
}
@media screen and (min-width: 1100px) {
  .p-slider__images {
    animation-duration: 25s;
  }
}

@keyframes slider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%);
  }
}
.p-slider__image {
  flex-shrink: 0;
  aspect-ratio: 5/4;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 13.75px;
}
@media screen and (min-width: 768px) {
  .p-slider__image {
    border-radius: 20px;
    margin-right: 20px;
  }
}
.p-slider__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-slider__image.image1, .p-slider__image.image4 {
  width: 268.124px;
}
@media screen and (min-width: 1100px) {
  .p-slider__image.image1, .p-slider__image.image4 {
    width: 375px;
  }
}
.p-slider__image.image2, .p-slider__image.image3, .p-slider__image.image5, .p-slider__image.image6 {
  width: 196.624px;
}
@media screen and (min-width: 1100px) {
  .p-slider__image.image2, .p-slider__image.image3, .p-slider__image.image5, .p-slider__image.image6 {
    width: 275px;
  }
}
.p-slider__image.image2, .p-slider__image.image5 {
  margin-bottom: auto;
}
.p-slider__image.image3, .p-slider__image.image6 {
  margin-top: auto;
}

.p-benefits {
  padding-top: 34px;
  padding-bottom: 31px;
  background: #0F3755;
}
@media screen and (min-width: 768px) {
  .p-benefits {
    padding-top: 83px;
    padding-bottom: 88px;
  }
}

.p-benefits__contents {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1100px) {
  .p-benefits__contents {
    flex-direction: row;
    gap: 68px;
  }
}

.p-benefits__head {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 1100px) {
  .p-benefits__head {
    gap: 50px;
    width: 428px;
    flex-shrink: 0;
  }
}

.p-benefits__headText {
  color: #FFF;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 2.4px;
}
@media screen and (min-width: 1100px) {
  .p-benefits__headText {
    text-align: justify;
    line-height: 1.5625;
  }
}

.p-benefits__cardsArea {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-benefits__cardsArea {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1100px) {
  .p-benefits__cardsArea {
    margin-top: 3px;
    flex-grow: 1;
  }
}

.p-benefits__cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-benefits__cards {
    gap: 20px;
  }
}

.p-benefits-card {
  width: 100%;
  min-height: 108.07px;
  border-radius: 10px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  position: relative;
  padding: 7px 20px 0 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10.61px;
}
@media screen and (min-width: 768px) {
  .p-benefits-card {
    min-height: 112px;
    border-radius: 20px;
  }
}
.p-benefits-card::before {
  content: "";
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #FFF;
  border-radius: 9px;
}
@media screen and (min-width: 768px) {
  .p-benefits-card::before {
    border-radius: 19px;
  }
}

.p-benefits-card__head {
  display: flex;
  align-items: center;
  gap: 15.44px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-benefits-card__head {
    gap: 16px;
  }
}

.p-benefits-card__checkIcon {
  width: 34.7px;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  .p-benefits-card__checkIcon {
    width: 36px;
  }
}
.p-benefits-card__checkIcon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-benefits-card__heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 2.7px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 1100px) {
  .p-benefits-card__heading {
    font-size: 20px;
    letter-spacing: 3px;
  }
}

.p-benefits-card__subText {
  color: #0F3755;
  text-align: justify;
  font-weight: 700;
  line-height: 1.50768;
  letter-spacing: 0.6px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-benefits-card__subText {
    font-size: 15px;
    line-height: 1.6667;
    letter-spacing: 1.5px;
  }
}

.p-interview {
  padding-top: 72px;
}
@media screen and (min-width: 1100px) {
  .p-interview {
    padding-top: 96px;
  }
}

.p-interview__head {
  display: flex;
  gap: 92px;
}

.p-interview__headText {
  display: none;
}
@media screen and (min-width: 1100px) {
  .p-interview__headText {
    margin-top: -6px;
    display: block;
    flex-grow: 1;
    color: #0F3755;
    font-size: 25px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 1.25px;
  }
}

.p-interview__cards {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-interview__cards {
    margin-top: 37px;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
.p-interview__cards li {
  border-radius: 11.186px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-interview__cards li {
    border-radius: 20px;
  }
}
@media (any-hover: hover) {
  .p-interview__cards li a:hover .p-interview-card__bgImage img {
    transform: scale(1.2);
  }
}

.p-interview-card {
  width: 100%;
  aspect-ratio: 59/29;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  padding: 24.05px 16.78px 11.19px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media screen and (min-width: 1100px) {
  .p-interview-card {
    padding: 43px 32px 20px;
  }
}
.p-interview-card::after {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: 6.48px;
  right: 11.94px;
  width: 23.719px;
  height: 23.719px;
  background: url(../img/arrow-icon-gradation.webp) no-repeat center center/contain;
}
@media screen and (min-width: 1100px) {
  .p-interview-card::after {
    bottom: 11.59px;
    right: 21.34px;
    width: 42.4px;
    height: 42.4px;
  }
}

.p-interview-card__bgImage {
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 10.186px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-interview-card__bgImage {
    border-radius: 19px;
  }
}
.p-interview-card__bgImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(68, 172, 235, 0) 0%, rgba(47, 219, 142, 0.025) 45.67%, rgba(189, 226, 0, 0.5) 100%);
}
.p-interview-card__bgImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.p-interview-card__catchphrase {
  color: #FFF;
  font-size: 13.424px;
  font-weight: 800;
  line-height: 1.41667;
  letter-spacing: 2.014px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 390px) and (max-width: 767.98px) {
  .p-interview-card__catchphrase {
    font-size: clamp(0.839rem, 0.157rem + 2.8vw, 1.5rem);
  }
}
@media screen and (min-width: 1100px) {
  .p-interview-card__catchphrase {
    font-size: 24px;
    letter-spacing: 3.6px;
  }
}

.p-interview-card__bottomInfo {
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1100px) {
  .p-interview-card__bottomInfo {
    gap: 16px;
  }
}

.p-interview-card__name {
  color: #FFF;
  font-family: "Anton", sans-serif;
  font-size: 27.966px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.398px;
}
@media screen and (min-width: 390px) and (max-width: 767.98px) {
  .p-interview-card__name {
    font-size: clamp(1.748rem, 0.327rem + 5.83vw, 3.125rem);
  }
}
@media screen and (min-width: 1100px) {
  .p-interview-card__name {
    font-size: 50px;
    letter-spacing: 2.5px;
  }
}

.p-interview-card__subInfo {
  display: flex;
  align-items: center;
  gap: 5.59px;
}
@media screen and (min-width: 1100px) {
  .p-interview-card__subInfo {
    gap: 10px;
  }
}

.p-interview-card__position {
  padding: 4px;
  border-radius: 15.102px;
  background: #0F3755;
  color: #FFF;
  font-size: 8.39px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.839px;
}
@media screen and (min-width: 1100px) {
  .p-interview-card__position {
    padding: 6px 8px 7px;
    border-radius: 27px;
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}

.p-interview-card__year {
  color: #0F3755;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.39831;
  letter-spacing: 1px;
}
@media screen and (min-width: 1100px) {
  .p-interview-card__year {
    font-size: 15px;
    line-height: 1.66667;
    letter-spacing: 1.5px;
  }
}

.p-news {
  padding-top: 71px;
}
@media screen and (min-width: 768px) {
  .p-news {
    padding-top: 98px;
  }
}

.p-news__listWrapper {
  margin-top: 31px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news__listWrapper {
    margin-top: 51px;
  }
}

.p-news__list li {
  height: auto;
}
.p-news__list li:nth-child(2), .p-news__list li:nth-child(3) {
  position: relative;
}
.p-news__list li:nth-child(2)::before, .p-news__list li:nth-child(3)::before {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
}
@media screen and (min-width: 768px) {
  .p-news__list li:nth-child(2)::before, .p-news__list li:nth-child(3)::before {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099.98px) {
  .p-news__list li:nth-child(2)::before, .p-news__list li:nth-child(3)::before {
    left: -15px;
  }
}
@media screen and (min-width: 1100px) {
  .p-news__list li:nth-child(2)::before, .p-news__list li:nth-child(3)::before {
    left: -27px;
  }
}

.p-news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-news-card {
    padding-bottom: 44px;
  }
}

.p-news-card__image {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 8.777px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-news-card__image {
    aspect-ratio: 365/274;
    border-radius: 10px;
  }
}
.p-news-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-news-card__date {
  color: #0F3755;
  font-weight: 700;
  line-height: 1.37134;
}
@media screen and (min-width: 768px) {
  .p-news-card__date {
    font-size: 18px;
    line-height: 1.38889;
  }
}

.p-news-card__title {
  color: #0F3755;
  text-align: justify;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.33739;
  letter-spacing: 1.05px;
  min-height: 64px;
}
@media screen and (min-width: 768px) {
  .p-news-card__title {
    margin-top: -6px;
    font-size: 24px;
    line-height: 1.33333;
    letter-spacing: 1.2px;
  }
}

.p-news-card__text {
  margin-top: -6px;
  color: #0F3755;
  text-align: justify;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 768px) {
  .p-news-card__text {
    margin-top: -4px;
    line-height: 1.5625;
  }
}

.p-news__listPrev,
.p-news__listNext {
  position: absolute;
  z-index: 10;
  top: 18%;
  width: 9.2307692308vw;
  aspect-ratio: 1/1;
  background: url(../img/swiper-nextBtn.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (max-width: 1099.98px) {
  .p-news__listPrev,
  .p-news__listNext {
    width: 4.6875vw;
  }
}
.p-news__listPrev.swiper-button-disabled,
.p-news__listNext.swiper-button-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.p-news__listPrev {
  left: -16px;
  transform: translateY(-50%) rotate(180deg);
}

.p-news__listNext {
  right: -19px;
  transform: translateY(-50%);
}

.p-data {
  padding-top: 47px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-data {
    padding-top: 242px;
  }
}

.p-data__bgFigure {
  position: absolute;
  z-index: 1;
  top: 3.5897435897vw;
  left: 0;
  width: 100%;
  height: 397.4358974359vw;
  max-height: 3874px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-data__bgFigure {
    top: 8.6805555556vw;
    height: 255.9722222222vw;
  }
}
.p-data__bgFigure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-data__inner {
  position: relative;
  z-index: 10;
}

.p-data__head {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .p-data__head {
    flex-direction: row;
    gap: 0;
  }
}

@media screen and (min-width: 768px) {
  .p-data__title {
    width: 391px;
    flex-shrink: 0;
  }
}

.p-data-title__ja {
  width: 160px;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .p-data-title__ja {
    width: 176px;
  }
}
.p-data-title__ja span {
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-data-title__ja span {
    height: 25px;
    border-radius: 50px;
    font-size: 18px;
  }
}

.p-data__headText {
  color: #0F3755;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.6px;
}
@media screen and (min-width: 768px) {
  .p-data__headText {
    flex-grow: 1;
    font-size: 25px;
    line-height: 2.48;
    letter-spacing: 1.25px;
  }
}

.p-data__cards {
  margin-top: 29px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 9.5px;
}
@media screen and (min-width: 768px) {
  .p-data__cards {
    margin-top: 51px;
    gap: 20px;
  }
}
@media screen and (min-width: 590px) and (max-width: 1099.98px) {
  .p-data__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1100px) {
  .p-data__cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-data__cards li {
  width: 100%;
}

.p-data-card {
  padding-top: 5.6838461538vw;
  padding-bottom: 3.3223076923vw;
  width: 100%;
  max-width: 400px;
  margin-inline: auto;
  aspect-ratio: 330/272.868;
  border-radius: 17.054px;
  border: 0.853px solid #0F3755;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width: 590px) {
  .p-data-card {
    aspect-ratio: auto;
    height: 100%;
    margin-inline: 0;
    max-width: none;
    border-radius: 20px;
    border-width: 1px;
    padding-top: 26px;
    padding-bottom: 15px;
  }
}
.p-data-card.establishment .p-data-card__number .value {
  font-size: 93.023px;
}
@media screen and (min-width: 660px) {
  .p-data-card.establishment .p-data-card__number .value {
    font-size: 120px;
  }
}
.p-data-card.establishment .p-data-card__text {
  font-size: 30.698px;
  font-weight: 700;
  line-height: 1.69444;
}
@media screen and (max-width: 390px) {
  .p-data-card.establishment .p-data-card__text {
    font-size: clamp(1.375rem, -1.11rem + 12.43vw, 1.919rem);
  }
}
@media screen and (min-width: 590px) and (max-width: 659.98px) {
  .p-data-card.establishment .p-data-card__text {
    font-size: clamp(1.375rem, -3.21rem + 12.43vw, 1.919rem);
  }
}
@media screen and (min-width: 768px) {
  .p-data-card.establishment .p-data-card__text {
    font-size: 36px;
  }
}
.p-data-card.establishment .p-data-card__text .number {
  font-weight: 700;
  line-height: 1.69444;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-data-card__title {
  color: #0F3755;
  text-align: center;
  font-size: 32.403px;
  font-weight: 700;
  line-height: 1.65789;
  letter-spacing: 1.62px;
}
@media screen and (min-width: 768px) {
  .p-data-card__title {
    font-size: 38px;
    letter-spacing: 1.9px;
  }
}

.p-data-card__number span {
  font-weight: 700;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-data-card__number span.value {
  font-size: 117.922px;
  line-height: 1;
}
@media screen and (max-width: 390px) {
  .p-data-card__number span.value {
    font-size: clamp(5.814rem, -1.3rem + 35.57vw, 7.37rem);
  }
}
@media screen and (min-width: 590px) and (max-width: 659.98px) {
  .p-data-card__number span.value {
    font-size: clamp(5.814rem, -7.301rem + 35.57vw, 7.37rem);
  }
}
@media screen and (min-width: 768px) {
  .p-data-card__number span.value {
    font-size: 140px;
  }
}
.p-data-card__number span.unit {
  font-size: 33px;
  line-height: 1.375;
}
@media screen and (min-width: 768px) {
  .p-data-card__number span.unit {
    font-size: 40px;
  }
}

.p-data-card__text {
  color: #0F3755;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 390px) {
  .p-data-card__text {
    font-size: clamp(1rem, -0.143rem + 5.71vw, 1.25rem);
  }
}
@media screen and (min-width: 590px) and (max-width: 659.98px) {
  .p-data-card__text {
    font-size: clamp(1rem, -1.107rem + 5.71vw, 1.25rem);
  }
}
@media screen and (min-width: 768px) {
  .p-data-card__text {
    margin-top: 14px;
    line-height: 1.45;
  }
}

.p-data-card__prefecture {
  text-align: center;
  font-size: 63.818px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 390px) {
  .p-data-card__prefecture {
    font-size: clamp(3.125rem, -0.823rem + 19.74vw, 3.989rem);
  }
}
@media screen and (min-width: 590px) and (max-width: 659.98px) {
  .p-data-card__prefecture {
    font-size: clamp(3.125rem, -4.157rem + 19.75vw, 3.989rem);
  }
}
@media screen and (min-width: 768px) {
  .p-data-card__prefecture {
    font-size: 81px;
  }
}

.p-recruitInfo {
  padding-top: 78px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-recruitInfo {
    padding-top: 97px;
  }
}

.p-recruitInfo__head {
  position: relative;
  height: 128.2051282051vw;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-recruitInfo__head {
    margin-top: calc(-1 * clamp(0px, 1.90476vw, 24px));
    height: 55.5555555556vw;
    padding-bottom: clamp(1.875rem, -3.296rem + 10.77vw, 5.188rem);
  }
}

.p-recruitInfo-head__bgImage {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.p-recruitInfo-head__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 39px;
  height: 100%;
}
@media screen and (max-width: 390px) {
  .p-recruitInfo-head__inner {
    gap: clamp(1rem, -5.571rem + 32.86vw, 2.438rem);
  }
}
@media screen and (min-width: 768px) {
  .p-recruitInfo-head__inner {
    gap: clamp(39px, 3.6805vw, 53px);
  }
}

.p-recruitInfo-head__catchphrase span {
  display: block;
  color: #FFF;
  font-size: 4.6153846154vw;
  font-weight: 700;
  line-height: 1.5;
  clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
@media screen and (min-width: 768px) {
  .p-recruitInfo-head__catchphrase span {
    font-size: clamp(2.063rem, -1.742rem + 7.93vw, 4.5rem);
    line-height: 1.43056;
  }
}
.p-recruitInfo-head__catchphrase span.is-animated {
  clip-path: inset(0);
}

.p-recruitInfo-head__link {
  display: block;
  width: 100%;
  padding: 8px;
  border-radius: 31.408px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  text-align: center;
  color: #FFF;
  font-weight: 700;
  line-height: 1.49681;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 390px) {
  .p-recruitInfo-head__link {
    font-size: clamp(0.75rem, -0.393rem + 5.71vw, 1rem);
  }
}
@media screen and (min-width: 768px) {
  .p-recruitInfo-head__link {
    padding: clamp(8px, 0.76388vw, 11px);
    max-width: 568px;
    font-size: clamp(16px, 1.80555vw, 26px);
  }
}
@media (any-hover: hover) {
  .p-recruitInfo-head__link:hover {
    opacity: 0.7;
  }
}

.p-recruitInfo__contents {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-recruitInfo__contents {
    gap: 63px;
  }
}
@media screen and (min-width: 1100px) {
  .p-recruitInfo__contents {
    margin-top: 49px;
    flex-direction: row;
    align-items: start;
  }
}

.p-recruitInfo__picture {
  width: 100%;
  aspect-ratio: 330/277.75;
  border-radius: 11px;
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  .p-recruitInfo__picture {
    width: 50%;
    aspect-ratio: 600/505;
    border-radius: 20px;
  }
}
.p-recruitInfo__picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-recruitInfo-main {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-recruitInfo-main {
    gap: 36px;
  }
}
@media screen and (min-width: 1100px) {
  .p-recruitInfo-main {
    width: 44.75%;
  }
}

.p-recruitInfo-main__heading {
  font-size: 27px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.35px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-recruitInfo-main__information {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 768px) {
  .p-recruitInfo-main__information {
    gap: 29px;
  }
}

.p-recruitInfo-main__row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
}
@media screen and (min-width: 768px) {
  .p-recruitInfo-main__row {
    flex-direction: row;
    gap: 48px;
    padding-bottom: 31px;
  }
}
.p-recruitInfo-main__row:not(:last-child) {
  position: relative;
}
.p-recruitInfo-main__row:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
}
.p-recruitInfo-main__row dt {
  display: block;
  color: #0F3755;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  width: 90px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (min-width: 768px) {
  .p-recruitInfo-main__row dt {
    padding-top: 8px;
    flex-shrink: 0;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }
}
.p-recruitInfo-main__row dd {
  color: #0F3755;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-recruitInfo-main__row dd {
    flex-grow: 1;
    text-align: justify;
    font-size: 18px;
    line-height: 1.94444;
  }
}

.p-aboutUs {
  padding-top: 53px;
  padding-bottom: 52.49px;
  background: #FFF;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-aboutUs {
    padding-top: 63px;
    padding-bottom: 43px;
  }
}

.p-aboutUs__contents {
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  gap: 23px;
}
@media screen and (min-width: 768px) {
  .p-aboutUs__contents {
    margin-top: 41px;
  }
}
@media screen and (min-width: 1100px) {
  .p-aboutUs__contents {
    flex-direction: row;
    gap: 5.3333333333%;
  }
}

.p-aboutUs__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-aboutUs__info {
    gap: 25px;
  }
}
@media screen and (min-width: 1100px) {
  .p-aboutUs__info {
    width: 44.6666666667%;
  }
}

.p-aboutUs__infoRow {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-bottom: 12px;
}
@media screen and (min-width: 768px) {
  .p-aboutUs__infoRow {
    flex-direction: row;
    gap: 47px;
    padding-bottom: 25px;
  }
}
.p-aboutUs__infoRow:not(:last-child) {
  position: relative;
}
.p-aboutUs__infoRow:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
}
.p-aboutUs__infoRow.colorBlack dt, .p-aboutUs__infoRow.colorBlack dd {
  color: #363B45;
}
.p-aboutUs__infoRow dt {
  display: block;
  color: #0F3755;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  width: 90px;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
@media screen and (min-width: 768px) {
  .p-aboutUs__infoRow dt {
    padding-top: 8px;
    flex-shrink: 0;
    letter-spacing: 0.2px;
    white-space: nowrap;
  }
}
.p-aboutUs__infoRow dd {
  color: #0F3755;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-aboutUs__infoRow dd {
    flex-grow: 1;
    text-align: justify;
    font-size: 18px;
    line-height: 1.94444;
  }
}

@media screen and (min-width: 1100px) {
  .p-aboutUs__access {
    width: 50%;
  }
}

.p-aboutUs-access__heading {
  color: #0F3755;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}

.p-aboutUs-access__methods {
  margin-top: 17px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
@media screen and (min-width: 768px) {
  .p-aboutUs-access__methods {
    margin-top: 13px;
    gap: 34px;
  }
}

.p-aboutUs-access__method {
  padding-left: 24px;
  position: relative;
}
.p-aboutUs-access__method::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 8px;
  height: calc(100% - 5px);
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
}

.p-aboutUs-access__methodHeading {
  color: #0F3755;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.p-aboutUs-access__methodHeading::before {
  content: "[";
}
.p-aboutUs-access__methodHeading::after {
  content: "]";
}

.p-aboutUs-access__methodText {
  color: #0F3755;
  font-weight: 500;
  line-height: 1.5;
}
.p-aboutUs-access__methodText.mt11 {
  margin-top: 11px;
}
@media screen and (min-width: 768px) {
  .p-aboutUs-access__methodText.mt11 {
    margin-top: 10px;
  }
}
.p-aboutUs-access__methodText.mt2 {
  margin-top: 2px;
}
@media screen and (min-width: 768px) {
  .p-aboutUs-access__methodText.mt2 {
    margin-top: 13px;
  }
}

.p-aboutUs-root {
  margin-top: 5px;
}

.p-aboutUs-root__heading {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.33333;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-aboutUs-root__area {
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 1100px) {
  .p-aboutUs-root__area {
    margin-top: 2px;
    gap: 9px;
  }
}

.p-aboutUs-root__areaRow {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  .p-aboutUs-root__areaRow {
    flex-direction: row;
    align-items: center;
  }
}
.p-aboutUs-root__areaRow dt {
  width: 190px;
  padding-block: 2px;
  border-radius: 50px;
  border: 1px solid #0F3755;
  color: #0F3755;
  text-align: center;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.461538;
}
@media screen and (min-width: 768px) {
  .p-aboutUs-root__areaRow dt {
    flex-shrink: 0;
  }
}
.p-aboutUs-root__areaRow dd {
  padding-left: 5px;
  color: #0F3755;
  font-weight: 500;
  line-height: 1.375;
}
@media screen and (min-width: 768px) {
  .p-aboutUs-root__areaRow dd {
    padding-left: 14px;
  }
}

.p-aboutUs-access__map {
  margin-top: 30px;
  width: 100%;
  aspect-ratio: 150/59;
  border-radius: 10.123px;
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  .p-aboutUs-access__map {
    border-radius: 10px;
  }
}
.p-aboutUs-access__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

body.single-interviews .p-interviewArticle {
  padding-top: 25px;
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interviewArticle {
    padding-top: 71px;
    padding-bottom: 50px;
  }
}
body.single-interviews .p-interview__mainArea {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 29px;
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview__mainArea {
    margin-top: 51px;
    flex-direction: row;
    gap: 50px;
  }
}

body.single-interviews .p-interview__headArea {
  margin-top: 15px;
  position: relative;
  width: 100%;
  aspect-ratio: 330/162.203;
  border-radius: 11.186px;
  overflow: hidden;
  padding: 6.1538461538vw 18px 2.6128205128vw;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview__headArea {
    margin-top: 49px;
    border-radius: 40.678px;
    aspect-ratio: 1200/590;
    padding: clamp(24px, 6.5873vw, 83px) 64px clamp(10.19px, 3.149206vw, 39.68px);
  }
}
body.single-interviews .p-interview-head__bgImage {
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 10.186px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-head__bgImage {
    border-radius: 39.678px;
  }
}
body.single-interviews .p-interview-head__bgImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(68, 172, 235, 0) 0%, rgba(47, 219, 142, 0.025) 45.67%, rgba(189, 226, 0, 0.5) 100%);
}
body.single-interviews .p-interview-head__bgImage img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.single-interviews .p-interview-head__catchphrase {
  color: #FFF;
  font-size: 13.75px;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 2.063px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 390px) and (max-width: 1099.98px) {
  body.single-interviews .p-interview-head__catchphrase {
    font-size: clamp(13.75px, 3.52564vw, 50px);
  }
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview-head__catchphrase {
    font-size: 50px;
    letter-spacing: 7.5px;
  }
}
body.single-interviews .p-interview-head__bottomInfo {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 2.05128vw, 29px);
  position: relative;
  z-index: 10;
}
body.single-interviews .p-interview-head__name {
  color: #FFF;
  font-family: "Anton", sans-serif;
  font-size: 27.5px;
  font-size: clamp(27.5px, 7.05128vw, 100px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.375px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-head__name {
    letter-spacing: 5px;
  }
}
body.single-interviews .p-interview-head__subInfo {
  display: flex;
  align-items: center;
  gap: 6px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-head__subInfo {
    gap: 20px;
  }
}
body.single-interviews .p-interview-head__position {
  padding: 4px 8px 4px 6px;
  border-radius: 15.102px;
  background: #0F3755;
  color: #FFF;
  font-size: 8.25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.825px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-head__position {
    padding: 15px 27px 17px 25px;
    border-radius: 54.915px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1099.98px) {
  body.single-interviews .p-interview-head__position {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview-head__position {
    font-size: 30px;
    letter-spacing: 3px;
  }
}
body.single-interviews .p-interview-head__year {
  color: #0F3755;
  font-size: 8.25px;
  font-weight: 700;
  line-height: 1.69492;
  letter-spacing: 0.825px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-head__year {
    font-size: 30px;
    letter-spacing: 3px;
  }
}

body.single-interviews .p-interview__faq {
  display: flex;
  flex-direction: column;
  gap: 29px;
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview__faq {
    padding-left: 6px;
    width: 357px;
    flex-shrink: 0;
  }
}
body.single-interviews .p-interview__faqContent {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
body.single-interviews .p-interview__faqContent:not(:last-child) {
  position: relative;
  padding-bottom: 29px;
}
body.single-interviews .p-interview__faqContent:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
}
body.single-interviews .p-interview__faqContent dt {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #0F3755;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.13636;
  letter-spacing: 2.2px;
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview__faqContent dt {
    font-size: 24px;
    line-height: 1.04167;
    letter-spacing: 2.4px;
  }
}
body.single-interviews .p-interview__faqContent dt.lsn {
  letter-spacing: normal;
}
body.single-interviews .p-interview__faqContent dt .headIcon {
  font-family: "Anton", sans-serif;
  font-size: 50px;
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body.single-interviews .p-interview__faqContent dd {
  padding-left: 4px;
  color: #0F3755;
  text-align: justify;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.8px;
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview__faqContent dd {
    font-size: 18px;
    line-height: 1.66667;
    letter-spacing: 0.9px;
  }
}

body.single-interviews .p-interview__schedule {
  border-radius: 15px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  padding: 18px 8px 10px;
  max-width: 793px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview__schedule {
    border-radius: 20px;
    padding: 24px 20px 20px;
  }
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview__schedule {
    flex-grow: 1;
  }
}
body.single-interviews .p-interview-schedule__head {
  display: flex;
  align-items: center;
  gap: 34px;
  padding-left: 10px;
  padding-bottom: 16px;
}
@media screen and (max-width: 380px) {
  body.single-interviews .p-interview-schedule__head {
    flex-direction: column;
    align-items: start;
    gap: 10px;
  }
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-schedule__head {
    padding-left: 4px;
    padding-bottom: 21px;
    gap: 43px;
  }
}
body.single-interviews .p-interview-schedule__headEn {
  color: #FFF;
  font-family: "Anton", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-schedule__headEn {
    font-size: 40px;
    letter-spacing: 2px;
  }
}
body.single-interviews .p-interview-schedule__headJa {
  color: #0F3755;
  font-size: 13.619px;
  font-weight: 700;
  line-height: 1.38889;
  letter-spacing: 1.362px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-schedule__headJa {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}
body.single-interviews .p-interview-schedule__body {
  border-radius: 15px;
  background: #FFF;
  padding: 19px 15px 24px 14px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-schedule__body {
    border-radius: 20px;
    padding: 25px 33px 30px 28px;
    gap: 32px;
  }
}
body.single-interviews .p-interview-schedule__line {
  position: absolute;
  top: 19px;
  left: 53px;
  width: 1px;
  height: calc(100% - 19px - 23px);
  background: #0F3755;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-schedule__line {
    top: 25px;
    left: 79px;
    height: calc(100% - 25px - 30px);
  }
}
body.single-interviews .p-interview-schedule__line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #0F3755;
}
body.single-interviews .p-interview-schedule__row {
  display: flex;
  align-items: start;
  gap: 11.94px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-schedule__row {
    gap: 29px;
  }
}
body.single-interviews .p-interview-schedule__time {
  flex-shrink: 0;
  width: 77.175px;
  height: 22.699px;
  background: #0F3755;
  border-radius: 20.429px;
  display: grid;
  place-items: center;
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.4px;
}
@media screen and (max-width: 390px) {
  body.single-interviews .p-interview-schedule__time {
    width: clamp(65px, 19.78846vw, 77.175px);
  }
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-schedule__time {
    width: 102px;
    height: 30px;
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}
body.single-interviews .p-interview-schedule__main {
  flex-grow: 1;
  padding-top: 2px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-schedule__main {
    padding-top: 3px;
    gap: 5px;
  }
}
body.single-interviews .p-interview-schedule__heading {
  color: #0F3755;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.05086;
  letter-spacing: 1.4px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-schedule__heading {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 2px;
  }
}
body.single-interviews .p-interview-schedule__detail {
  color: #0F3755;
  text-align: justify;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.11;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-schedule__detail {
    line-height: 1.5625;
  }
}

body.single-interviews .p-interview__others {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview__others {
    margin-top: 49px;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
}
body.single-interviews .p-interview__others li {
  border-radius: 11.186px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview__others li {
    border-radius: 20px;
  }
}
@media (any-hover: hover) {
  body.single-interviews .p-interview__others li a:hover .p-interview-otherCard__bgImage img {
    transform: scale(1.2);
  }
}
body.single-interviews .p-interview-otherCard {
  width: 100%;
  aspect-ratio: 330/247.287;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  padding: 17px 26px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 1099.98px) {
  body.single-interviews .p-interview-otherCard {
    padding: clamp(10px, 1.302083vw, 20px);
  }
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview-otherCard {
    padding: 43px 32px 20px;
  }
}
body.single-interviews .p-interview-otherCard::after {
  content: "";
  position: absolute;
  z-index: 10;
  bottom: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FFF url(../img/arrow-icon-gradation.webp) no-repeat center center/contain;
}
@media screen and (min-width: 768px) and (max-width: 1099.98px) {
  body.single-interviews .p-interview-otherCard::after {
    bottom: clamp(9px, 1.171875vw, 21px);
    right: clamp(9px, 1.171875vw, 21px);
    width: clamp(36px, 4.6875vw, 42px);
    height: clamp(36px, 4.6875vw, 42px);
  }
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview-otherCard::after {
    bottom: 21px;
    right: 21.34px;
    width: 42.4px;
    height: 42.4px;
  }
}
body.single-interviews .p-interview-otherCard__bgImage {
  position: absolute;
  z-index: 1;
  top: 1px;
  left: 1px;
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  border-radius: 10.186px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview-otherCard__bgImage {
    border-radius: 19px;
  }
}
body.single-interviews .p-interview-otherCard__bgImage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(68, 172, 235, 0) 0%, rgba(47, 219, 142, 0.025) 45.67%, rgba(189, 226, 0, 0.5) 100%);
}
body.single-interviews .p-interview-otherCard__bgImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
body.single-interviews .p-interview-otherCard__bottomInfo {
  display: flex;
  flex-direction: column;
  gap: 13px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview-otherCard__bottomInfo {
    gap: 16px;
  }
}
body.single-interviews .p-interview-otherCard__name {
  color: #FFF;
  font-family: "Anton", sans-serif;
  font-weight: 400;
  font-size: 42.636px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2.132px;
}
@media screen and (min-width: 768px) and (max-width: 1099.98px) {
  body.single-interviews .p-interview-otherCard__name {
    font-size: clamp(20px, 2.604166vw, 50px);
  }
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview-otherCard__name {
    font-size: 50px;
    letter-spacing: 2.5px;
  }
}
body.single-interviews .p-interview-otherCard__subInfo {
  display: flex;
  align-items: center;
  gap: 5.59px;
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview-otherCard__subInfo {
    gap: 10px;
  }
}
body.single-interviews .p-interview-otherCard__position {
  padding: 6px 8px;
  border-radius: 15.102px;
  background: #0F3755;
  color: #FFF;
  font-size: 12.791px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.279px;
}
@media screen and (min-width: 768px) and (max-width: 1099.98px) {
  body.single-interviews .p-interview-otherCard__position {
    font-size: clamp(9px, 1.171875vw, 15px);
  }
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview-otherCard__position {
    padding: 6px 8px 7px;
    border-radius: 27px;
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}
body.single-interviews .p-interview-otherCard__year {
  color: #FFF;
  font-size: 12.791px;
  font-weight: 700;
  line-height: 1.39831;
  letter-spacing: 1.279px;
}
@media screen and (min-width: 1100px) {
  body.single-interviews .p-interview-otherCard__year {
    font-size: 15px;
    line-height: 1.66667;
    letter-spacing: 1.5px;
  }
}

body.single-interviews .p-interview__backLink {
  margin: 25px auto 0;
  border-radius: 68.041px;
  overflow: hidden;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  padding: 1.701px;
  max-width: 388px;
  height: 51.031px;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview__backLink {
    margin-top: 51px;
    border-radius: 80px;
    padding: 2px;
    height: 60px;
  }
}
body.single-interviews .p-interview__backLink a {
  background: #FFF;
  border-radius: 66.34px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview__backLink a {
    border-radius: 78px;
  }
}
@media (any-hover: hover) {
  body.single-interviews .p-interview__backLink a:hover {
    opacity: 0.7;
  }
  body.single-interviews .p-interview__backLink a:hover span {
    opacity: 1;
  }
}
body.single-interviews .p-interview__backLink a span {
  font-size: 18.711px;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (min-width: 768px) {
  body.single-interviews .p-interview__backLink a span {
    font-size: 22px;
  }
}

body.page-id-65 .p-contact {
  padding-top: 37px;
  padding-bottom: 37px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-contact {
    padding-top: 71px;
    padding-bottom: 149px;
  }
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-contact-title__en {
    display: flex;
  }
}
body.page-id-65 .p-contact-title__ja {
  width: 205px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-contact-title__ja {
    width: 235px;
  }
}
body.page-id-65 .p-contact__formArea {
  margin-top: 15px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  border-radius: 15px;
  padding: 1px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-contact__formArea {
    margin-top: 50px;
    border-radius: 20px;
  }
}
body.page-id-65 .p-contact__formArea form {
  background: #FFF;
  border-radius: 14px;
  padding: 35px 19px 29px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-contact__formArea form {
    border-radius: 19px;
    padding: 53px 49px 63px;
  }
}
body.page-id-65 .p-cForm__fields {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm__fields {
    gap: 32px;
  }
}
body.page-id-65 .p-cForm__fieldRow {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm__fieldRow {
    flex-direction: row;
    gap: 30px;
  }
}
body.page-id-65 .p-cForm__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm__field {
    gap: 13px;
  }
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm__field--left {
    flex-shrink: 0;
    width: 323px;
  }
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm__field--right {
    flex-grow: 1;
  }
}
body.page-id-65 .p-cForm-field__head {
  padding-right: 54px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-field__head {
    padding-right: 71px;
  }
}
body.page-id-65 .p-cForm-field__head label {
  color: #0F3755;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.5px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-field__head label {
    font-size: 20px;
    letter-spacing: 2px;
  }
}
body.page-id-65 .p-cForm-field__head.required::after {
  content: "必須";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 44px;
  height: 19px;
  border-radius: 37.5px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  display: grid;
  place-items: center;
  color: #FFF;
  font-size: 9.75px;
  font-weight: 800;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-field__head.required::after {
    top: 42%;
    width: 58px;
    height: 25px;
    font-size: 13px;
  }
}
body.page-id-65 .p-cForm-field__item {
  width: 100%;
}
body.page-id-65 .p-cForm-field__item--address {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 1100px) {
  body.page-id-65 .p-cForm-field__item--address {
    flex-direction: row;
    gap: 10px;
  }
  body.page-id-65 .p-cForm-field__item--address select {
    width: 152px;
    flex-shrink: 0;
  }
  body.page-id-65 .p-cForm-field__item--address .wpcf7-form-control-wrap[data-name=your-address-detail] {
    width: 100%;
  }
}
body.page-id-65 .p-cForm-field__input {
  width: 100%;
  border-radius: 7.5px;
  border: 0.75px solid #0F3755;
  padding: 3px 15px 7px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-field__input {
    border-radius: 10px;
    border-width: 1px;
    padding: 11px 19px 12px;
  }
}
body.page-id-65 .p-cForm-field__input::-moz-placeholder {
  color: rgba(101, 107, 118, 0.3);
  font-size: 11.25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.125px;
}
body.page-id-65 .p-cForm-field__input::placeholder {
  color: rgba(101, 107, 118, 0.3);
  font-size: 11.25px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.125px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-field__input::-moz-placeholder {
    color: rgba(15, 55, 85, 0.3);
    font-size: 15px;
    letter-spacing: 1.5px;
  }
  body.page-id-65 .p-cForm-field__input::placeholder {
    color: rgba(15, 55, 85, 0.3);
    font-size: 15px;
    letter-spacing: 1.5px;
  }
}
body.page-id-65 .p-cForm-field__radio {
  width: 100%;
  height: 38px;
  border-radius: 7.5px;
  border: 0.75px solid #0F3755;
  padding: 3px 14px;
  display: flex;
  gap: 23px;
}
@media screen and (max-width: 390px) {
  body.page-id-65 .p-cForm-field__radio {
    gap: clamp(0.875rem, -1.696rem + 12.86vw, 1.438rem);
  }
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-field__radio {
    height: 50px;
    border-radius: 10px;
    padding: 7px 19px;
    gap: 30px;
  }
}
body.page-id-65 .p-cForm-field__radio .wpcf7-list-item {
  margin: 0;
}
body.page-id-65 .p-cForm-field__radio input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
body.page-id-65 .p-cForm-field__radio input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
body.page-id-65 .p-cForm-field__radio input:focus + .wpcf7-list-item-label::before {
  border-color: #0F3755;
}
body.page-id-65 .p-cForm-field__radio .wpcf7-list-item-label {
  color: #656B76;
  font-size: 13.5px;
  line-height: 1.6;
  padding-left: 22.5px;
  position: relative;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-field__radio .wpcf7-list-item-label {
    color: #0F3755;
    font-size: 18px;
    padding-left: 30px;
  }
}
body.page-id-65 .p-cForm-field__radio .wpcf7-list-item-label::before, body.page-id-65 .p-cForm-field__radio .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 58%;
}
body.page-id-65 .p-cForm-field__radio .wpcf7-list-item-label::before {
  left: 0;
  width: 15px;
  height: 15px;
  border: 1.5px solid #656B76;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-field__radio .wpcf7-list-item-label::before {
    top: 59%;
    width: 20px;
    height: 20px;
    border: 2px solid #0F3755;
  }
}
body.page-id-65 .p-cForm-field__radio .wpcf7-list-item-label::after {
  left: 3.75px;
  width: 7.5px;
  height: 7.5px;
  background: #0F3755;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-field__radio .wpcf7-list-item-label::after {
    top: 60%;
    left: 4.7px;
    width: 10px;
    height: 10px;
    background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  }
}
body.page-id-65 .p-cForm-field__selectArea > span {
  display: inline-block;
  width: 100%;
  position: relative;
}
body.page-id-65 .p-cForm-field__selectArea > span::after {
  content: "";
  position: absolute;
  top: 16px;
  right: 17px;
  width: 14px;
  height: 7.5px;
  background: url(../img/select-arrow.svg) no-repeat center center/contain;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-field__selectArea > span::after {
    top: 24px;
  }
}
body.page-id-65 .p-cForm-field__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  border-radius: 7.5px;
  border: 0.75px solid #0F3755;
  padding: 5px 15px 7px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-field__select {
    border-radius: 10px;
    border-width: 1px;
    padding: 13px 19px 10px;
  }
}
body.page-id-65 .p-cForm-field__select:hover, body.page-id-65 .p-cForm-field__select:focus {
  border-color: #0F3755;
  outline: none;
}
body.page-id-65 .p-cForm-field__textarea {
  width: 100%;
  height: 250px;
  border-radius: 7.5px;
  border: 0.75px solid #0F3755;
  padding: 3px 15px 7px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-field__textarea {
    height: 202px;
    border-radius: 10px;
    border-width: 1px;
    padding: 11px 19px 12px;
  }
}
body.page-id-65 .p-cForm__privacy {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm__privacy {
    margin-top: 29px;
  }
}
body.page-id-65 .p-cForm-privacy__text {
  color: #0F3755;
  text-align: justify;
  font-size: 13.5px;
  line-height: 1.66667;
  letter-spacing: 1.35px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-privacy__text {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}
body.page-id-65 .p-cForm-privacy__ruleBox {
  margin-top: 15px;
  width: 100%;
  height: 167px;
  border-radius: 7.5px;
  border: 0.75px solid #0F3755;
  overflow-y: scroll;
  padding: 14px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-privacy__ruleBox {
    margin-top: 45px;
    height: 198px;
    border-radius: 10px;
    border-width: 1px;
    padding: 20px;
  }
}
body.page-id-65 .p-cForm-privacy__ruleBox::-webkit-scrollbar {
  width: 6px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-privacy__ruleBox::-webkit-scrollbar {
    width: 8px;
  }
}
body.page-id-65 .p-cForm-privacy__ruleBox::-webkit-scrollbar-thumb {
  background: #D9D9D9;
  border-radius: 3px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-privacy__ruleBox::-webkit-scrollbar-thumb {
    border-radius: 4px;
  }
}
body.page-id-65 .p-cForm-privacy__ruleContent + .p-cForm-privacy__ruleContent {
  margin-top: 17.25px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-privacy__ruleContent + .p-cForm-privacy__ruleContent {
    margin-top: 23px;
  }
}
body.page-id-65 .p-cForm-privacy__ruleHead {
  color: #0F3755;
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.64286;
  letter-spacing: 0.525px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-privacy__ruleHead {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}
body.page-id-65 .p-cForm-privacy__ruleText {
  color: #0F3755;
  text-align: justify;
  font-size: 10.5px;
  line-height: 1.64286;
  letter-spacing: 0.525px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-privacy__ruleText {
    font-size: 14px;
    letter-spacing: 0.7px;
  }
}
body.page-id-65 .p-cForm-privacy__check {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-privacy__check {
    margin-top: 45px;
  }
}
body.page-id-65 .p-cForm-privacy__check > span, body.page-id-65 .p-cForm-privacy__check > span > span,
body.page-id-65 .p-cForm-privacy__check .wpcf7-list-item {
  display: inline-block;
  width: 100%;
}
body.page-id-65 .p-cForm-privacy__check .wpcf7-list-item {
  margin: 0;
}
body.page-id-65 .p-cForm-privacy__checkbox label {
  width: 100%;
  height: 37px;
  border-radius: 7.5px;
  background: #0F3755;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-privacy__checkbox label {
    height: 49px;
    border-radius: 10px;
  }
}
body.page-id-65 .p-cForm-privacy__checkbox input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
body.page-id-65 .p-cForm-privacy__checkbox input:checked + .wpcf7-list-item-label::after {
  opacity: 1;
}
body.page-id-65 .p-cForm-privacy__checkbox input:focus + .wpcf7-list-item-label::before {
  border-color: #0F3755;
}
body.page-id-65 .p-cForm-privacy__checkbox .wpcf7-list-item-label {
  display: block;
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 1.5px;
  padding-left: 26.25px;
  position: relative;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-privacy__checkbox .wpcf7-list-item-label {
    font-size: 20px;
    letter-spacing: 2px;
    padding-left: 35px;
  }
}
body.page-id-65 .p-cForm-privacy__checkbox .wpcf7-list-item-label::before, body.page-id-65 .p-cForm-privacy__checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
}
body.page-id-65 .p-cForm-privacy__checkbox .wpcf7-list-item-label::before {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 15px;
  height: 15px;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-privacy__checkbox .wpcf7-list-item-label::before {
    width: 20px;
    height: 20px;
  }
}
body.page-id-65 .p-cForm-privacy__checkbox .wpcf7-list-item-label::after {
  top: 6px;
  left: 2px;
  width: 10px;
  height: 5px;
  border-left: 3px solid #0F3755;
  border-bottom: 3px solid #0F3755;
  transform: rotate(-40deg);
  opacity: 0;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm-privacy__checkbox .wpcf7-list-item-label::after {
    top: 8px;
    left: 4px;
    width: 12px;
    height: 7px;
  }
}
body.page-id-65 .p-cForm__submit {
  margin-top: 15px;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm__submit {
    margin-top: 31px;
  }
}
body.page-id-65 .p-cForm__submit input {
  display: block;
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
  height: 45px;
  border-radius: 7.5px;
  background: linear-gradient(270deg, #44ACEB 0%, #2FDB8E 45.67%, #BDE200 100%);
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 1.5px;
  border: 0;
}
@media screen and (min-width: 768px) {
  body.page-id-65 .p-cForm__submit input {
    height: 60px;
    font-size: 20px;
    letter-spacing: 2px;
  }
}
body.page-id-65 .p-cForm__submit .wpcf7-spinner {
  position: absolute;
}