@charset "UTF-8";
/***
  The new CSS reset - version 1.7.3 (last updated 7.8.2022)
  GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
*/
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a, button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input, textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
  - fix for the content editable attribute will work properly.
  - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element*/
:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

@keyframes subtleZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.03);
  }
}
@keyframes subtleRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(1.5deg);
  }
}
@keyframes subtleFloat {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  25% {
    transform: scale(1.02) rotate(90deg);
  }
  50% {
    transform: scale(0.89) rotate(180deg);
  }
  75% {
    transform: scale(1.02) rotate(270deg);
  }
}
@keyframes verySubtleZoom {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.015);
  }
}
@keyframes verySubtleRotate {
  0%, 100% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(0.8deg);
  }
}
html {
  font-size: 62.5%;
}

body {
  background: #edf1f0;
  color: #223A40;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0;
  line-height: 2;
  min-width: 375px;
  scroll-behavior: smooth;
}
@media screen and (min-width: 601px) {
  body {
    overflow-y: scroll;
    min-width: 1140px;
  }
}
body.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media screen and (min-width: 601px) {
  img,
  svg {
    width: auto;
  }
}

.c-svg-sprite {
  display: none;
}

a,
button {
  cursor: pointer;
}

.grecaptcha-badge {
  visibility: hidden;
}

@media screen and (min-width: 601px) {
  .l-wrapper {
    min-width: 1080px;
  }
}

.l-inner {
  max-width: 1300px;
  margin-inline: auto;
}
@media screen and (max-width: 600px) {
  .l-inner {
    padding-inline: 30px;
  }
}

.c-loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.c-loading__text {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  font-weight: 500;
}

.c-loading__count {
  font-size: 3rem;
  letter-spacing: 0.08em;
  font-weight: 500;
  line-height: 1;
  margin: 8px 0;
}

.c-loading__indicator {
  width: 400px;
  height: 2px;
  margin: 16px 0 0;
  background-color: rgba(0, 0, 0, 0.2);
}

.c-loading__progress {
  width: 0%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  transition: width 0.2s ease;
}

.-loaded .c-loading {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
}

.-loaded .c-loading__grp {
  transform: translate(0, -30%);
  transition: transform 2s ease;
}

.c-svg-sprite {
  display: none;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
}

.c-button {
  max-width: 300px;
  width: 100%;
  height: 75px;
  display: flex;
  width: 100%;
  border-radius: 100px;
  transition: 0.3s ease-out;
  background-color: #4C74C4;
}
@media screen and (max-width: 600px) {
  .c-button {
    width: 100%;
    height: auto;
    max-width: unset;
  }
}
.c-button:hover {
  background-color: white;
}
.c-button:hover span {
  color: #4C74C4 !important;
}
.c-button:hover svg {
  fill: #4C74C4 !important;
}

.c-button a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  padding: 30px 45px;
}
@media screen and (max-width: 600px) {
  .c-button a {
    padding: 20px 35px;
  }
}

.c-button__contents {
  position: relative;
  padding-right: 1em;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-button__contents span {
  color: white;
}
.c-button__contents-icon {
  position: relative;
  content: "";
  width: 15px;
  height: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.c-button__contents-deco svg {
  width: 15px;
  height: 15px;
  fill: white;
}

.c-button__contents-arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 21px;
  height: 8px;
  transition: 0.3s ease-out;
}
.c-button__contents-arrow svg {
  fill: white;
  width: 100%;
  height: 100%;
}

.c-button:hover {
  opacity: 0.8;
}

.c-button--navy {
  background-color: #253F75;
}

.c-button--capsule {
  border-radius: 75px;
}

.c-sectionTitle {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 36px;
  overflow: hidden;
}
.c-sectionTitle h2,
.c-sectionTitle p {
  font-size: 3.4rem;
  line-height: 1;
  font-weight: bold;
  color: #2E4174;
}
@media screen and (max-width: 600px) {
  .c-sectionTitle h2,
  .c-sectionTitle p {
    font-size: 3rem;
  }
}
.c-sectionTitle:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 28px;
  height: 28px;
  background-size: cover;
  background-position: center;
  background-image: url(../../assets/images/common/deco01.svg);
  opacity: 0;
  transition: opacity 1s;
}
@media screen and (max-width: 600px) {
  .c-sectionTitle:before {
    width: 24px;
    height: 24px;
  }
}
.c-sectionTitle.-animated:before {
  opacity: 1;
}
@media screen and (max-width: 600px) {
  .c-sectionTitle {
    padding-left: 32px;
  }
}

.c-sectionTitle--icon-white:before {
  background-image: url(../../assets/images/common/deco02.svg);
}

.c-sectionTitle--text-white h2,
.c-sectionTitle--text-white p {
  color: white;
}

.c-imagetextBlock__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.c-imagetextBlock {
  display: flex;
  align-items: center;
  gap: 60px;
}

.c-imagetextBlock__image {
  position: relative;
  width: 60%;
}
.c-imagetextBlock__image span {
  position: absolute;
  left: 50px;
  bottom: 50px;
  font-size: 4rem;
  line-height: 1;
  font-weight: bold;
  color: white;
}

.c-imagetextBlock__text {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.c-imagetextBlock__text-block__title {
  position: relative;
  margin-bottom: 0.5em;
  padding-left: 1em;
}
.c-imagetextBlock__text-block__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #4C74C4;
}

.c-partsContact {
  display: flex;
  flex-direction: column;
  gap: 50px;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  padding: 80px;
  border: 1px solid #223A40;
}
@media screen and (max-width: 600px) {
  .c-partsContact {
    padding: 80px 30px;
  }
}

.c-partsContact__title span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Montserrat Alternates";
  font-size: 9.1rem;
  line-height: 0.7;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: #253F75;
  margin: 0 auto 20px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .c-partsContact__title span {
    font-size: 5.8rem;
  }
}

.c-partsContact .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.c-partsContact .c-sectionTitle:before {
  opacity: 1 !important;
}

.c-partsContact__catchcopy {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .c-partsContact__catchcopy {
    letter-spacing: -0.05em;
  }
}

.c-partsContact .c-button {
  border: 1px solid #4C74C4;
  margin: 0 auto;
}

.c-partsContact__tel {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
.c-partsContact__tel svg {
  width: 40px;
  height: 41px;
  fill: #253F75;
}
.c-partsContact__tel a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  color: #253F75;
  font-size: 5.4rem;
  line-height: 0.7;
  font-weight: 500;
  font-family: "Montserrat Alternates";
  letter-spacing: -0.01em;
}
.c-partsContact__tel span {
  font-size: 1.5rem;
  letter-spacing: -0.05em;
  line-height: 1;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .c-partsContact__tel {
    gap: 10px;
  }
  .c-partsContact__tel svg {
    transform: scale(0.6);
  }
  .c-partsContact__tel span {
    font-size: 1.3rem;
    line-height: 1.2;
  }
  .c-partsContact__tel p {
    font-size: 2.9rem;
  }
}

.c-partsContact__flexArea {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  .c-partsContact__flexArea {
    flex-direction: column;
  }
}

.c-partsContact__flexArea-item {
  width: 50%;
  padding: 30px;
  border: 1px solid #223A40;
  border-radius: 5px;
}
@media screen and (max-width: 600px) {
  .c-partsContact__flexArea-item {
    width: 100%;
  }
}

.c-partsContact__flexArea-item__title {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 1em;
}

.c-partsContact__flexArea-item__caption {
  text-align: center;
  font-size: 1.3rem;
  line-height: 1.4;
  margin-bottom: 30px;
  letter-spacing: -0.05em;
}

.c-partsContact__flexArea-item .c-button {
  width: 215px;
  height: 35px;
  padding: 0 25px;
}
.c-partsContact__flexArea-item .c-button a {
  padding: unset;
}
.c-partsContact__flexArea-item .c-button .c-button__contents-deco {
  width: 12px;
  height: 12px;
}
.c-partsContact__flexArea-item .c-button .c-button__contents-deco img {
  width: 100%;
  height: auto;
}
.c-partsContact__flexArea-item .c-button .c-button__contents-deco .hover {
  display: none;
}
.c-partsContact__flexArea-item .c-button .c-button__contents-deco .nohover {
  display: block;
}
.c-partsContact__flexArea-item .c-button:hover .c-button__contents-deco .hover {
  display: block;
}
.c-partsContact__flexArea-item .c-button:hover .c-button__contents-deco .nohover {
  display: none;
}
@media screen and (max-width: 600px) {
  .c-partsContact__flexArea-item .c-button {
    width: 100%;
    padding: 0 15px;
  }
}

.c-partsContact__flexArea-item__tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
  pointer-events: none;
}
.c-partsContact__flexArea-item__tel svg {
  width: 40px;
  height: 41px;
  fill: #253F75;
  transform: scale(0.6);
}
.c-partsContact__flexArea-item__tel span {
  color: #253F75;
  font-size: 2.7rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Montserrat Alternates";
  letter-spacing: -0.01em;
}
@media screen and (max-width: 600px) {
  .c-partsContact__flexArea-item__tel span {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 600px) {
  .c-partsContact__flexArea-item__tel {
    pointer-events: auto;
  }
}

.c-partsContact__flexArea-item__note {
  font-size: 1.3rem;
  text-align: center;
  line-height: 1.2;
}

.c-lowerMv {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 475px;
}
@media screen and (max-width: 600px) {
  .c-lowerMv {
    height: 300px;
  }
}

.c-lowerMv .l-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 35px;
  width: 100%;
  height: 100%;
  padding: 0 80px;
}
@media screen and (max-width: 600px) {
  .c-lowerMv .l-inner {
    gap: 20px;
    justify-content: end;
    padding: 0 38px 60px;
  }
}

.c-lowerMv h1 {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.2;
  color: white;
  margin-top: 80px;
}
@media screen and (max-width: 600px) {
  .c-lowerMv h1 {
    font-size: 3rem;
  }
}

.c-serviceMv {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .c-serviceMv {
    height: auto;
  }
}

.c-serviceMv .l-inner {
  width: 100%;
  height: auto;
  aspect-ratio: 256/95;
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 65px;
  padding: 90px 0;
}
@media screen and (max-width: 600px) {
  .c-serviceMv .l-inner {
    min-height: unset;
    height: 300px;
    justify-content: start;
    padding-bottom: unset;
  }
}

.c-serviceMv__animation {
  position: absolute;
}
.c-serviceMv__animation picture {
  width: 100%;
  height: 100%;
}
.c-serviceMv__animation picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-serviceMv__textArea {
  position: relative;
  z-index: 1;
  padding-top: 90px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 45%;
  height: 100%;
}
.c-serviceMv__textArea h2 {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1.2;
  color: #253F75;
  white-space: nowrap;
}
.c-serviceMv__textArea .c-scrolldown {
  margin-top: 35px;
}
@media screen and (max-width: 600px) {
  .c-serviceMv__textArea .c-scrolldown {
    margin-top: 20px;
  }
}
.c-serviceMv__textArea .c-button {
  margin-top: 35px;
  border-radius: 100px;
}
.c-serviceMv__textArea .c-button a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-serviceMv__textArea .c-button span {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
}
.c-serviceMv__textArea .c-button span svg {
  width: 15px;
  height: 15px;
  fill: white;
}
.c-serviceMv__textArea .c-button svg {
  width: 22px;
  height: 8px;
  fill: white;
}
@media screen and (max-width: 600px) {
  .c-serviceMv__textArea .c-button {
    margin-top: 40px;
  }
}
@media screen and (max-width: 600px) {
  .c-serviceMv__textArea {
    width: 100%;
    padding: 0 28px 0px 38px;
    justify-content: start;
  }
  .c-serviceMv__textArea h2 {
    font-size: 3rem;
    letter-spacing: -0.07em;
    white-space: unset;
  }
}

.c-scrolldown {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #253F75;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  font-family: "Montserrat Alternates";
}
.c-scrolldown .c-scrolldown__deco {
  position: relative;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: 1px solid #253F75;
}
.c-scrolldown .c-scrolldown__deco::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 4px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-image: url(../../assets/images/common/scroll_arrow.svg);
  background-size: cover;
  background-position: center;
  animation: scrollArrowMove 1.5s ease-in-out infinite;
}

.c-scrolldown--white {
  color: white;
}
.c-scrolldown--white .c-scrolldown__deco {
  border-color: white;
}
.c-scrolldown--white .c-scrolldown__deco::before {
  background-image: url(../../assets/images/common/scroll_arrow_white.svg);
}

@keyframes scrollArrowMove {
  0% {
    transform: translateY(-6px);
    opacity: 0;
  }
  30% {
    transform: translateY(0);
    opacity: 1;
  }
  70% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(6px);
    opacity: 0;
  }
}
.c-faq {
  position: relative;
  background: linear-gradient(360deg, rgba(255, 252, 237, 0) -50.11%, #EAEEEE -4.28%);
  overflow: hidden;
  padding: 0 80px;
}
@media screen and (max-width: 600px) {
  .c-faq {
    padding: 0;
  }
}

.c-faq__deco {
  position: absolute;
  bottom: 0;
  left: -15%;
  width: 50%;
  height: auto;
  z-index: 0;
  pointer-events: none;
  animation: subtleFloat 240s linear infinite;
}
.c-faq__deco img {
  width: 100%;
  height: auto;
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg) scale(1.2);
  }
  51% {
    transform: rotate(360deg) scale(1.2);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media screen and (max-width: 600px) {
  .c-faq__deco {
    width: 110%;
    bottom: unset;
    top: -5%;
    left: -30%;
  }
}

.c-faq .l-inner {
  display: flex;
}
@media screen and (max-width: 600px) {
  .c-faq .l-inner {
    flex-direction: column;
  }
}

.c-faq__categoryArea {
  position: relative;
  z-index: 1;
  width: 270px;
  padding: 120px 0;
  border-right: 1px dashed #223A40;
}
@media screen and (max-width: 600px) {
  .c-faq__categoryArea {
    width: 100%;
    border-right: unset;
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: 1px dashed #223A40;
  }
}

.c-faq__categoryArea li {
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease-out;
  font-size: 1.6rem;
}
.c-faq__categoryArea li svg {
  width: 21px;
  height: 8px;
  fill: #4C74C4;
  transform: scale(0.5);
}
.c-faq__categoryArea li.is-active {
  color: #4C74C4;
  text-decoration: underline;
}
.c-faq__categoryArea li:hover {
  color: #4C74C4;
}

.c-faq__contentsArea {
  position: relative;
  width: calc(100% - 270px);
  height: 100%;
  padding: 120px 0;
  padding-left: 80px;
}
@media screen and (max-width: 600px) {
  .c-faq__contentsArea {
    width: 100%;
    padding: 80px 0;
    padding-left: 0;
  }
}

.c-faq .c-sectionTitle {
  margin-bottom: 25px;
}

.c-faq__catchcopy {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  color: #253F75;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .c-faq__catchcopy {
    font-size: 1.6rem;
    line-height: 1.44;
    margin-bottom: 30px;
  }
}

.c-faq__list {
  display: none;
  flex-direction: column;
  gap: 20px;
}
.c-faq__list.is-active {
  display: flex;
}

.c-faq__list-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: white;
  padding: 30px;
  border-radius: 7px;
  cursor: pointer;
}

.c-faq__list-item__cat {
  background-color: rgba(76, 116, 196, 0.2);
  padding: 5px 15px;
  border-radius: 75px;
  border: 1px solid #4C74C4;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  color: #4C74C4;
}

.c-faq__list-item__title {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.5rem;
  font-weight: bold;
}
.c-faq__list-item__title::before {
  content: "Q.";
  font-family: "Montserrat Alternates";
  position: absolute;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  left: 0;
  top: 5px;
}

.c-faq__list-more {
  display: flex;
  justify-content: end;
  max-width: 850px;
  width: 100%;
  margin: 20px 0 0;
}
.c-faq__list-more a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: bold;
}

.c-faq__list-more__deco {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: #4C74C4;
}
.c-faq__list-more__deco::before, .c-faq__list-more__deco::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 1px;
  background-color: white;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-faq__list-more__deco::after {
  transform: rotate(90deg);
}
.c-faq__list-item__contents {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
  padding-top: 0;
}
.c-faq__list-item__contents.is-active {
  max-height: 1000px;
  /* コンテンツの最大想定高さ */
  opacity: 1;
  padding-top: 15px;
}

.c-faq__list-item__contents a {
  color: #4C74C4;
  text-decoration: underline;
  transition: 0.3s ease-out;
}
.c-faq__list-item__contents a:hover {
  opacity: 0.7 !important;
}

.c-faq__more {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
  text-align: right;
  transition: 0.3s ease-out;
}
.c-faq__more:hover {
  opacity: 0.7 !important;
}
.c-faq__more span {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .c-faq__more {
    margin-top: 30px;
  }
}

.c-faq__more__deco {
  position: relative;
  width: 25px;
  height: 25px;
  background-color: #4C74C4;
  border-radius: 1px;
}
.c-faq__more__deco::before, .c-faq__more__deco::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 1px;
  background-color: white;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transition: 0.3s ease-out;
}
.c-faq__more__deco::after {
  transform: rotate(90deg);
}
.c-form {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 70px;
  border-radius: 20px;
  background-color: white;
  box-shadow: 3px 3px 23px rgba(35, 95, 236, 0.12);
}
.c-form .wpcf7-form {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .c-form {
    padding: 50px 30px;
  }
}

.c-form__item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-bottom: 1px solid #D6DAE8;
  padding-bottom: 30px;
  margin-bottom: 30px;
}

.c-form__item-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .c-form__item-label {
    align-items: flex-start;
  }
}
.c-form__item-label .c-form__item-label__required {
  line-height: 1.4;
  color: white;
  background-color: #4C74C4;
  padding: 5px 10px;
  border-radius: 5px;
  line-height: 1;
}
.c-form__item-label .c-form__item-label__required p {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .c-form__item-label .c-form__item-label__required {
    flex: none;
  }
}
.c-form__item-label p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}
.c-form__item-label p span {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .c-form__item-label p {
    flex-wrap: wrap;
    align-items: baseline;
  }
}

.c-form__item-input {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-form__item-input.birth {
  flex-direction: unset;
  align-items: center;
}
.c-form__item-input.birth p {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 600px) {
  .c-form__item-input.birth p {
    gap: 5px;
  }
}

.c-form__text {
  background-color: #EAEEEE;
  padding: 15px;
  max-width: 320px;
  border-radius: 5px;
  border: 1px solid #C9CAD6;
}
.c-form__text::-moz-placeholder {
  color: #3F444B;
  opacity: 0.33;
}
.c-form__text::placeholder {
  color: #3F444B;
  opacity: 0.33;
}
.c-form__text:not(:-moz-placeholder-shown) {
  background-color: white;
}
.c-form__text:not(:placeholder-shown) {
  background-color: white;
}
@media screen and (max-width: 600px) {
  .c-form__text {
    max-width: 100%;
    font-size: 1.3rem;
    line-height: 1;
    padding: 13px;
  }
}

.c-form__text--full {
  max-width: 100%;
  width: 100%;
}

.c-form__text--short {
  max-width: 110px;
  width: 100%;
}
.c-form__text--short span {
  font-size: 2rem;
}

.c-form__textarea {
  background-color: #EAEEEE;
  padding: 15px;
  max-width: 100%;
  width: 100%;
  border-radius: 5px;
  border: 1px solid #C9CAD6;
}
.c-form__textarea::-moz-placeholder {
  color: #3F444B;
  opacity: 0.33;
}
.c-form__textarea::placeholder {
  color: #3F444B;
  opacity: 0.33;
}
.c-form__textarea:not(:-moz-placeholder-shown) {
  background-color: white;
}
.c-form__textarea:not(:placeholder-shown) {
  background-color: white;
}

.c-form__checkArea {
  display: flex;
  justify-content: center;
}

.c-form__checkArea .c-form__item {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: unset;
}

.c-form__privacypolicy, .c-form__term {
  width: 100%;
  height: 175px;
  padding: 7px;
  border-radius: 5px;
  border: 1px solid #D6DAE8;
  margin-bottom: 30px;
}
.c-form__privacypolicy p, .c-form__term p {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 25px;
}
@media screen and (max-width: 600px) {
  .c-form__privacypolicy p, .c-form__term p {
    font-size: 1.9rem;
  }
}
.c-form__privacypolicy span, .c-form__term span {
  display: block;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
}
.c-form__privacypolicy strong, .c-form__term strong {
  display: block;
  font-weight: bold;
  margin: 1em 0 0;
}

.c-form__privacypolicy-contents {
  width: 100%;
  height: 100%;
  padding: 40px;
  overflow-y: scroll;
}
@media screen and (max-width: 600px) {
  .c-form__privacypolicy-contents {
    padding: 20px;
  }
}
.c-form__privacypolicy-contents::-webkit-scrollbar {
  width: 6px;
  height: 3px;
}
.c-form__privacypolicy-contents::-webkit-scrollbar-thumb {
  background-color: #C9CAD6;
  border-radius: 9px;
}
.c-form__privacypolicy-contents::-webkit-scrollbar-track {
  background-color: #EEEEF2;
  border-radius: 9px;
}

.c-form__privacypolicy-contents-text p,
.c-form__term-contents-text p {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.8;
  padding-left: 1em;
  margin-bottom: unset;
}
.c-form__privacypolicy-contents-text ul,
.c-form__term-contents-text ul {
  padding-left: 3em;
}
.c-form__privacypolicy-contents-text ul li,
.c-form__term-contents-text ul li {
  list-style: disc;
}
.c-form__privacypolicy-contents-text ul li p,
.c-form__term-contents-text ul li p {
  padding-left: unset;
}
.c-form__privacypolicy-contents-text ol,
.c-form__term-contents-text ol {
  padding-left: 3em;
}
.c-form__privacypolicy-contents-text ol li,
.c-form__term-contents-text ol li {
  list-style: decimal;
}
.c-form__privacypolicy-contents-text ol li p,
.c-form__term-contents-text ol li p {
  padding-left: unset;
}

.c-form__checkArea-item__label {
  display: flex;
  justify-content: center;
}

.c-form__buttonArea {
  position: relative;
  max-width: 300px;
  width: 100%;
  height: 75px;
  margin: 30px auto 0;
}
@media screen and (max-width: 600px) {
  .c-form__buttonArea {
    height: 55px;
  }
}
.c-form__buttonArea.c-form__buttonArea--multiple {
  max-width: 100%;
  height: auto;
  display: flex;
  justify-content: space-around;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  .c-form__buttonArea.c-form__buttonArea--multiple {
    flex-direction: column;
    gap: 10px;
  }
}

.c-form__buttonArea-item {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  transition: 0.3s ease-out;
  background-color: #4C74C4;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
}
.c-form__buttonArea-item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 45px;
  width: 17px;
  height: 17px;
  background-image: url(../../assets/images/common/deco02.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .c-form__buttonArea-item::after {
    left: 25px;
  }
}
.c-form__buttonArea-item p {
  width: 100%;
  height: 100%;
}
.c-form__buttonArea-item:hover {
  opacity: 0.8;
}
.c-form__buttonArea-item:has(.disabled) {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}
.c-form__buttonArea--multiple .c-form__buttonArea-item {
  width: calc(50% - 15px);
  height: 75px;
}
@media screen and (max-width: 600px) {
  .c-form__buttonArea--multiple .c-form__buttonArea-item {
    width: 100%;
    height: 55px;
  }
}
.c-form__buttonArea-item.c-form__buttonArea-item--back {
  background-color: white;
  color: #4C74C4;
  border: 1px solid #4C74C4;
}
.c-form__buttonArea-item.c-form__buttonArea-item--back::after {
  background-image: url(../../assets/images/common/deco01.svg);
}

.c-form__buttonArea .c-icon {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 45px;
  margin: auto;
  width: 21px;
  height: 8px;
  fill: white;
}
.c-form__buttonArea .c-icon svg {
  fill: white;
}
@media screen and (max-width: 600px) {
  .c-form__buttonArea .c-icon {
    right: 25px;
  }
}

.c-form__buttonArea .c-form__buttonArea-item--back .c-icon {
  fill: #4C74C4;
}
.c-form__buttonArea .c-form__buttonArea-item--back .c-icon svg {
  fill: #4C74C4;
}

@media screen and (max-width: 600px) {
  .c-form__buttonArea--multiple .c-form__buttonArea-item {
    height: 55px;
  }
}

.c-form__buttonArea-item__button,
.c-form__buttonArea-item__button--outline {
  width: 100%;
  height: 100%;
  padding: 0 70px;
  background: transparent;
  border: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  cursor: pointer;
  display: inline-block !important;
}

.c-form__buttonArea .wpcf7-spinner {
  display: none;
}

.c-form__radioArea {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.c-form__radioArea .wpcf7-list-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}
.c-form__radioArea .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1.5;
  margin: 0;
}
.c-form__radioArea .wpcf7-list-item input[type=radio] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #C9CAD6;
  border-radius: 50%;
  background-color: white;
  position: relative;
}
.c-form__radioArea .wpcf7-list-item input[type=radio]:checked {
  border-color: #4C74C4;
}
.c-form__radioArea .wpcf7-list-item input[type=radio]:checked::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #4C74C4;
}
.c-form__radioArea .wpcf7-list-item input[type=radio]:hover {
  border-color: #4C74C4;
}

.c-form__radioArea--vertical {
  display: flex;
  flex-direction: column;
}
.c-form__radioArea--vertical .wpcf7-list-item {
  margin-bottom: 10px;
}
.c-form__radioArea--vertical .wpcf7-list-item:last-child {
  margin-bottom: 0;
}

.c-form__checkArea input[type=checkbox] {
  width: 18px;
  height: 18px;
  margin: 0;
  flex-shrink: 0;
  margin-top: 2px;
  cursor: pointer;
  border: 2px solid #C9CAD6;
  position: relative;
}
.c-form__checkArea input[type=checkbox]:checked {
  border-color: #4C74C4;
}
.c-form__checkArea input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 10px;
  height: 8px;
  background-image: url(../../assets/images/contact/deco-check.svg);
  background-position: center;
  background-size: cover;
}
.c-form__checkArea input[type=checkbox]:hover {
  border-color: #4C74C4;
}

.c-form__checkArea .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.c-form__file {
  position: relative;
  display: inline-block;
}
.c-form__file .wpcf7-form-control-wrap, .c-form__file br {
  display: none;
}

input[type=file] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.c-form__file-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: #223A40;
  border: 1px solid #C9CAD6;
  border-radius: 5px;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease-out;
  position: relative;
  z-index: 1;
}
.c-form__file-button:hover {
  opacity: 0.8;
}
.c-form__file-button br {
  display: none;
}

.c-form__file-display {
  margin-top: 10px;
  padding: 8px 12px;
  border-radius: 3px;
  font-size: 1.3rem;
  color: #666;
  min-height: 40px;
  display: flex;
  align-items: center;
  word-break: break-all;
  line-height: 1.4;
}
.c-form__file-display:empty::before {
  content: "選択されていません";
  color: #999;
}

.c-form__file--inline {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.c-form__file--inline .c-form__file-display {
  margin-top: 0;
  flex: 1;
  min-width: 200px;
}

.wpcf7-file .wpcf7-not-valid-tip,
.wpcf7-file .wpcf7-validation-errors {
  margin-top: 5px;
}

.wpcf7-file {
  position: relative;
  display: block;
}
.wpcf7-file input[type=file] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  z-index: 2;
}

.c-form__recapture {
  margin-top: 1em;
  font-size: 1rem;
}

.p-mv {
  position: relative;
  width: 100%;
  min-height: 800px;
  height: 100vh;
  overflow-x: clip;
}
@media screen and (max-width: 600px) {
  .p-mv {
    min-height: unset;
    height: auto;
    padding-top: 65px;
  }
}

.p-mv .l-inner {
  position: relative;
  width: calc(100% - 160px);
  height: 100%;
}
@media screen and (max-width: 600px) {
  .p-mv .l-inner {
    width: calc(100% - 90px);
    padding-inline: unset;
  }
}

.p-mv__animation {
  position: absolute;
  pointer-events: none;
  width: 66%;
  height: -moz-fit-content;
  height: fit-content;
  top: 0;
  bottom: 0;
  right: 20%;
  margin: auto;
  z-index: -1;
}
@media screen and (max-width: 600px) {
  .p-mv__animation {
    position: relative;
    width: 110%;
    height: auto;
    top: unset;
    right: unset;
    left: -15%;
    margin-top: -10px;
  }
}
.p-mv__animation video {
  width: 100%;
  height: auto;
}

.p-mv__catchcopy {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 38px;
  top: 200px;
  left: 0;
}
@media screen and (max-width: 600px) {
  .p-mv__catchcopy {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
    gap: 20px;
    margin-top: 0px;
    margin-bottom: 50px;
  }
}
.p-mv__catchcopy h1 {
  font-size: 6.4rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
  color: #2E4174;
}
@media screen and (max-width: 600px) {
  .p-mv__catchcopy h1 {
    font-size: 4rem;
  }
}

.p-mv__title {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 20px;
  left: 0;
  bottom: 80px;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-mv__title {
    position: relative;
    left: unset;
    bottom: unset;
    width: 100%;
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
.p-mv__title span {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 600px) {
  .p-mv__title span {
    font-size: 1.3rem;
  }
}
.p-mv__title img {
  max-width: 279px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .p-mv__title img {
    max-width: 196px;
  }
}

.p-mv__linkArea {
  position: absolute;
  width: 300px;
  height: auto;
  right: 0px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 600px) {
  .p-mv__linkArea {
    position: fixed;
    flex-direction: unset;
    width: 100%;
    left: 0;
    bottom: 0;
    z-index: 2;
    gap: 3px;
    opacity: 0;
    pointer-events: none;
  }
}

@media screen and (max-width: 600px) {
  .scroll-down .p-mv__linkArea {
    opacity: 1;
    pointer-events: auto;
  }
}

.p-mv__button {
  max-width: 300px;
  width: 100%;
  height: 75px;
  display: flex;
  width: 100%;
  transition: 0.3s ease-out;
  background-color: #4C74C4;
  border: 1px solid #4C74C4;
  transition: 0.3s ease-out;
  border-radius: 100px;
}
@media screen and (max-width: 600px) {
  .p-mv__button {
    width: 50%;
    height: auto;
    max-width: unset;
    border-radius: unset;
  }
}
.p-mv__button:hover {
  background-color: white;
}
.p-mv__button:hover span {
  color: #4C74C4;
}
.p-mv__button:hover svg {
  fill: #4C74C4;
}

.p-mv__button--navy {
  background-color: #253F75;
  border: 1px solid #253F75;
}
.p-mv__button--navy:hover {
  background-color: white;
}
.p-mv__button--navy:hover span {
  color: #253F75;
}
.p-mv__button--navy:hover svg {
  fill: #253F75;
}

.p-mv__button a {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  line-height: 1;
  padding: 30px 45px;
}
@media screen and (max-width: 600px) {
  .p-mv__button a {
    padding: 21px 0px;
  }
}

.p-mv__button-contents {
  position: relative;
  padding-right: 1em;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
}
@media screen and (max-width: 600px) {
  .p-mv__button-contents {
    padding-right: 0;
    justify-content: center;
    flex-direction: row;
  }
}

.p-mv__button-contents__deco {
  position: relative;
  content: "";
  width: 15px;
  height: 15px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-mv__button-contents__deco svg {
  fill: white;
  width: 15px;
  height: 15px;
}

.p-mv__button-contents span {
  color: white;
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .p-mv__button-contents span {
    font-size: 1.5rem;
  }
}

.p-mv__button-contents__arrow {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 22px;
  height: 8px;
  transition: 0.3s ease-out;
}
.p-mv__button-contents__arrow svg {
  fill: white;
  width: 21px;
  height: 8px;
}

.p-mv__deco {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  width: 230px;
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
  z-index: -2;
  opacity: 0;
}
@media screen and (max-width: 600px) {
  .p-mv__deco {
    right: -5%;
    width: 140px;
  }
}

.p-mv__deco img {
  flex-shrink: 0;
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center right;
     object-position: center right;
  animation: scroll 15s linear infinite;
  will-change: transform;
  backface-visibility: hidden;
}

@keyframes scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -200vh, 0);
  }
}
.p-topservice {
  position: relative;
  overflow: hidden;
  width: 100%;
  margin: auto;
  padding: 100px 80px;
  background: linear-gradient(237.05deg, #567ADA 5.69%, #2E4174 122.2%);
}
@media screen and (max-width: 600px) {
  .p-topservice {
    max-width: 100%;
    padding: 60px 0px;
  }
}

.p-topservice__deco {
  position: absolute;
  top: -65%;
  left: -15%;
  pointer-events: none;
  width: 77%;
  height: auto;
  aspect-ratio: 1/1;
  mix-blend-mode: multiply;
  opacity: 0.5;
  animation: subtleFloat 240s linear infinite;
}
.p-topservice__deco img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .p-topservice__deco {
    top: -5%;
    left: -35%;
    width: 120%;
  }
}

.p-topservice .c-sectionTitle {
  color: white;
  margin-bottom: 25px;
}

.p-topservice .p-topservice__caption {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .p-topservice .p-topservice__caption {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

.p-topservice__list {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 600px) {
  .p-topservice__list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    row-gap: 15px;
    -moz-column-gap: 15px;
         column-gap: 15px;
  }
}

.p-topservice__item {
  position: relative;
  background-color: white;
  padding: 10px;
  border-radius: 7px;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 600px) {
  .p-topservice__item {
    padding: 10px 10px 0px;
  }
}
.p-topservice__item:hover .p-topservice__item-title,
.p-topservice__item:hover .p-topservice__item-content__imageArea {
  opacity: 0.7;
}

.p-topservice__item-content__textArea {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .p-topservice__item-content__textArea {
    padding-top: 0px;
    padding: 0 0 15px;
  }
}

.p-topservice__item-title {
  transition: 0.3s ease-out;
}
@media screen and (max-width: 600px) {
  .p-topservice__item-title {
    padding-inline: 5px;
  }
}

.p-topservice__item-title p {
  font-size: 2rme;
  line-height: 1.2;
}

.p-topservice__item:nth-of-type(1) {
  grid-column: 1/1;
  grid-row: 1/3;
}
@media screen and (max-width: 600px) {
  .p-topservice__item:nth-of-type(1) .p-topservice__item-content__textArea {
    padding-top: 0px;
    padding-inline: 20px;
    padding-bottom: 15px;
  }
  .p-topservice__item:nth-of-type(1) .p-topservice__item-content__textArea .p-topservice__item-button {
    width: calc(100% + 20px);
    margin-left: -10px;
    height: 48px;
    padding-inline: 20px;
  }
  .p-topservice__item:nth-of-type(1) .p-topservice__item-content__textArea .p-topservice__item-button span {
    font-size: 1.3rem;
  }
  .p-topservice__item:nth-of-type(1) .p-topservice__item-content__textArea .p-topservice__item-button svg {
    position: absolute;
    transform: scale(0.6);
    right: 30px;
  }
}
.p-topservice__item:nth-of-type(1) .p-topservice__item-title p {
  font-size: 3rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .p-topservice__item:nth-of-type(1) .p-topservice__item-title p {
    font-size: 2.6rem;
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 600px) {
  .p-topservice__item:nth-of-type(1) {
    grid-column: 1/3;
    grid-row: 1;
  }
}

.p-topservice__item:nth-of-type(2) {
  grid-column: 2/2;
}
@media screen and (max-width: 600px) {
  .p-topservice__item:nth-of-type(2) {
    grid-column: 1;
    grid-row: 2;
  }
}

.p-topservice__item:nth-of-type(3) {
  grid-column: 2/2;
}
@media screen and (max-width: 600px) {
  .p-topservice__item:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2;
  }
}

.p-topservice__item-title span {
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  color: #4C74C4;
  font-weight: 600;
  font-family: "Montserrat Alternates";
  margin-bottom: 22px;
}
@media screen and (max-width: 600px) {
  .p-topservice__item-title span {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
}
.p-topservice__item-title p {
  font-size: 2rem;
  letter-spacing: -0.05em;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .p-topservice__item-title p {
    font-size: 2.1rem;
    margin-bottom: 0;
  }
}

.p-topservice__item-content {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  gap: 20px;
}
.p-topservice__item-content__imageArea {
  width: 50%;
  transition: 0.3s ease-out;
}
.p-topservice__item-content__imageArea img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-topservice__item-content__textArea {
  width: 50%;
}
.p-topservice__item-content__textArea ul li {
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .p-topservice__item-content {
    flex-direction: column;
    gap: 15px;
  }
  .p-topservice__item-content__imageArea {
    width: 100%;
  }
  .p-topservice__item-content__textArea {
    width: 100%;
  }
  .p-topservice__item-content__textArea .p-topservice__item-title p {
    font-size: 1.4rem;
    line-height: 1.2;
    letter-spacing: -0.05em;
    margin-bottom: 13px;
  }
  .p-topservice__item-content__textArea .p-topservice__item-button {
    height: 35px;
    padding-inline: 15px;
  }
  .p-topservice__item-content__textArea .p-topservice__item-button svg {
    position: absolute;
    transform: scale(0.45);
    right: 10px;
  }
}

.p-topservice__item-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 142px;
  height: 36px;
  background-color: #4C74C4;
  border: 1px solid #4C74C4;
  border-radius: 3px;
  padding: 0 10px;
  transition: 0.3s ease-out;
  border-radius: 100px;
}
.p-topservice__item-button span {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}
.p-topservice__item-button svg {
  width: 21px;
  height: 8px;
  fill: white;
  transform: scale(0.8);
}
@media screen and (max-width: 600px) {
  .p-topservice__item-button {
    width: 100%;
    height: 48px;
    border-radius: 100px;
  }
}
.p-topservice__item-button:hover {
  background-color: white;
}
.p-topservice__item-button:hover span {
  color: #4C74C4;
}
.p-topservice__item-button:hover svg {
  fill: #4C74C4;
}

.p-topfeatures {
  position: relative;
  overflow: hidden;
  /* 202430 */
  background: linear-gradient(360deg, rgba(255, 252, 237, 0) -50.11%, #EAEEEE -4.28%);
  padding: 120px 80px;
}
@media screen and (max-width: 600px) {
  .p-topfeatures {
    padding: 100px 0;
  }
}

.p-topfeatures__deco {
  position: absolute;
  width: 100%;
  height: auto;
  pointer-events: none;
  aspect-ratio: 1/1;
  opacity: 0.5;
  margin: auto;
  animation: subtleFloat 240s linear infinite;
}
.p-topfeatures__deco img {
  width: 100%;
  height: auto;
}
.p-topfeatures__deco--top {
  top: -15%;
  right: -20%;
  width: 70%;
  filter: blur(1px);
}
@media screen and (max-width: 600px) {
  .p-topfeatures__deco--top {
    top: -5%;
    right: -55%;
    width: 120%;
  }
}
.p-topfeatures__deco--bottom {
  bottom: -10%;
  left: -13%;
  width: 40%;
  height: -moz-fit-content;
  height: fit-content;
  filter: blur(1px);
}
@media screen and (max-width: 600px) {
  .p-topfeatures__deco--bottom {
    top: -25%;
    bottom: 0%;
    left: -20%;
    width: 100%;
  }
}

.p-topfeatures .c-sectionTitle {
  margin: 0 auto 24px;
}
.p-topfeatures .c-sectionTitle h2 {
  color: #2E4174;
}
@media screen and (max-width: 600px) {
  .p-topfeatures .c-sectionTitle {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.p-topfeatures__catchcopy {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 99px;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-topfeatures__catchcopy {
    text-align: center;
    margin-bottom: 96px;
    font-size: 1.6rem;
  }
}

.p-topfeatures__list {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
@media screen and (max-width: 600px) {
  .p-topfeatures__list {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
}

.p-topfeatures__list-line {
  display: flex;
}
.p-topfeatures__list-line:nth-of-type(even) {
  justify-content: flex-end;
}
.p-topfeatures__list-line:nth-of-type(odd) {
  justify-content: flex-start;
}
.p-topfeatures__list-line:first-of-type {
  margin-top: unset;
}

.p-topfeatures__list-item {
  display: flex;
  gap: 40px;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .p-topfeatures__list-item {
    width: 100%;
    flex-direction: column;
  }
}

.p-topfeatures__list-item__image {
  position: relative;
  width: 42%;
}
@media screen and (max-width: 600px) {
  .p-topfeatures__list-item__image {
    width: 100%;
  }
}
.p-topfeatures__list-item__image span {
  position: absolute;
  font-family: "Montserrat Alternates";
  color: #2B69E5;
  font-size: 9.1rem;
  font-weight: 500;
  line-height: 1;
  right: 50px;
  top: -35px;
}
@media screen and (max-width: 600px) {
  .p-topfeatures__list-item__image span {
    font-size: 6rem;
    right: 10px;
    top: -20px;
  }
}

.p-topfeatures__list-item__text {
  position: relative;
  width: 58%;
  margin: auto;
}
@media screen and (max-width: 600px) {
  .p-topfeatures__list-item__text {
    width: 100%;
  }
}
.p-topfeatures__list-item__text span {
  display: block;
  margin-bottom: 30px;
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-topfeatures__list-item__text span {
    font-size: 2.4rem;
  }
}
.p-topfeatures__list-item__text p {
  font-size: 1.8rem;
  line-height: 1.9;
}
@media screen and (max-width: 600px) {
  .p-topfeatures__list-item__text p {
    font-size: 1.6rem;
  }
}

.p-topabout {
  position: relative;
  padding: 120px 80px;
  background: linear-gradient(237.05deg, #567ADA 5.69%, #2E4174 122.2%);
  overflow: hidden;
}
@media screen and (max-width: 600px) {
  .p-topabout {
    padding: unset;
  }
}

.p-topabout__deco {
  position: absolute;
  top: -20%;
  bottom: 0%;
  right: -30%;
  width: 80%;
  height: auto;
  pointer-events: none;
  aspect-ratio: 1/1;
  opacity: 0.5;
  mix-blend-mode: multiply;
  animation: subtleFloat 240s linear infinite;
}
.p-topabout__deco img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 600px) {
  .p-topabout__deco {
    top: unset;
    bottom: -50%;
    right: -70%;
    width: 150%;
    filter: blur(5px);
  }
}

.p-topabout .l-inner {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 110px;
}
@media screen and (max-width: 600px) {
  .p-topabout .l-inner {
    flex-direction: column-reverse;
    gap: 50px;
    padding-inline: unset;
  }
}

.p-topabout__textArea {
  position: relative;
  min-width: 360px;
}
@media screen and (max-width: 600px) {
  .p-topabout__textArea {
    min-width: unset;
    padding-inline: 33px;
    padding-bottom: 60px;
  }
}

.p-topabout__imageArea {
  max-width: 650px;
}
@media screen and (max-width: 600px) {
  .p-topabout__imageArea {
    height: 265px;
    width: 100%;
  }
  .p-topabout__imageArea img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-topabout .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
}
.p-topabout .c-sectionTitle h2 {
  color: white;
}
@media screen and (max-width: 600px) {
  .p-topabout .c-sectionTitle {
    margin-bottom: 25px;
  }
}

.p-topabout__catchcopy {
  font-size: 1.8rem;
  font-weight: bold;
  color: white;
  line-height: 1.56;
}
@media screen and (max-width: 600px) {
  .p-topabout__catchcopy {
    font-size: 1.6rem;
    margin-bottom: 38px;
    white-space: nowrap;
    letter-spacing: -0.06em;
  }
}

.p-topabout__slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.p-topabout__slide .swiper-wrapper {
  width: 100%;
  height: 100%;
  margin-bottom: 50px;
}

.p-topabout__slide .swiper-slide {
  width: 100%;
  height: 100%;
}

.p-topabout__slide .swiper-slide img {
  width: 100%;
  height: 100%;
}

.p-topabout__slide-controlArea {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 30px;
}

.p-topabout__slide-pagination {
  position: relative;
  width: 115px;
  height: 10px;
}
.p-topabout__slide-pagination .swiper-horizontal > .swiper-scrollbar,
.p-topabout__slide-pagination .swiper-scrollbar.swiper-scrollbar-horizontal {
  height: 1px;
}
.p-topabout__slide-pagination .swiper-scrollbar-drag {
  background: #253F75;
}

.p-topabout__slide-buttonArea {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  width: 65px;
  height: 10px;
}
.p-topabout__slide-buttonArea .swiper-button-prev,
.p-topabout__slide-buttonArea .swiper-button-next {
  position: unset;
  margin: unset;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.p-topabout__slide-buttonArea .swiper-button-prev svg,
.p-topabout__slide-buttonArea .swiper-button-next svg {
  fill: #253F75;
  height: 8px;
}
.p-topabout__slide-buttonArea .swiper-button-prev svg {
  transform: scale(-1, 1);
}
.p-topabout__slide-buttonArea .swiper-button-prev:after,
.p-topabout__slide-buttonArea .swiper-rtl .swiper-button-next:after,
.p-topabout__slide-buttonArea .swiper-button-next:after,
.p-topabout__slide-buttonArea .swiper-rtl .swiper-button-prev:after {
  display: none;
}

.p-topabout__slide .c-button {
  position: absolute;
  right: 0;
}

.p-topabout__link {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 302px;
  height: 74px;
  background-color: white;
  border: 1px solid white;
  border-radius: 100px;
  transition: 0.3s ease-out;
}
.p-topabout__link:hover {
  background-color: #4C74C4;
  border: 1px solid #4C74C4;
}
.p-topabout__link:hover span {
  color: white;
}
.p-topabout__link:hover svg {
  fill: white;
}
.p-topabout__link:hover .hover {
  display: block;
}
.p-topabout__link:hover .nohover {
  display: none;
}
.p-topabout__link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 45px;
}
.p-topabout__link a img {
  width: 14px;
  height: auto;
}
.p-topabout__link a .hover {
  display: none;
}
.p-topabout__link a .nohover {
  display: block;
}
.p-topabout__link a span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 1.8rem;
  font-weight: bold;
  color: #4C74C4;
}
.p-topabout__link a svg {
  width: 21px;
  height: 8px;
  fill: #4C74C4;
}
@media screen and (max-width: 600px) {
  .p-topabout__link {
    position: unset;
    height: 57px;
  }
  .p-topabout__link a {
    padding: 0 37px;
  }
}

.p-topnews {
  position: relative;
  padding: 120px 0 160px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .p-topnews {
    padding: 100px 0;
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}

.p-topnews::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 1.02%, rgba(255, 255, 255, 0.826755) 18.17%, #FFFFFF 61.68%);
  filter: drop-shadow(0px 4px 41.2px rgba(0, 0, 0, 0.15));
  pointer-events: none;
  z-index: 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}
@media screen and (max-width: 600px) {
  .p-topnews::before {
    border-bottom-left-radius: 30px;
    border-bottom-right-radius: 30px;
  }
}

.p-topnews .l-inner {
  position: relative;
}

.p-topnews .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 25px;
}

.p-topnews__catchcopy {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
  color: #253F75;
  margin-bottom: 120px;
}
@media screen and (max-width: 600px) {
  .p-topnews__catchcopy {
    font-size: 1.6rem;
    margin-bottom: 80px;
    line-height: 1.2;
  }
}

.p-topnews__list {
  max-width: 850px;
  width: 100%;
  margin: 0 auto 80px;
  border-top: 1px dashed #223A40;
  border-bottom: 1px dashed #223A40;
}
@media screen and (max-width: 600px) {
  .p-topnews__list {
    margin-bottom: 50px;
  }
}

.p-topnews__list-item {
  display: flex;
  gap: 30px;
  padding: 42px 0;
  border-top: 1px dashed #223A40;
  transition: 0.3s ease-out;
}
.p-topnews__list-item:hover {
  opacity: 0.7 !important;
}
.p-topnews__list-item:last-of-type {
  border-bottom: unset;
}
@media screen and (max-width: 600px) {
  .p-topnews__list-item {
    flex-direction: column;
  }
}

.p-topnews__list-item__thumnail {
  display: block;
  width: 230px;
  height: auto;
  aspect-ratio: 227/151;
}
.p-topnews__list-item__thumnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) {
  .p-topnews__list-item__thumnail {
    width: 100%;
  }
}

.p-topnews__list-item__textArea {
  width: calc(100% - 250px);
}
@media screen and (max-width: 600px) {
  .p-topnews__list-item__textArea {
    width: 100%;
  }
}

.p-topnews__list-item__textArea-metaArea {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 600px) {
  .p-topnews__list-item__textArea-metaArea {
    gap: 5px;
  }
}

.p-topnews__list-item__textArea-cat {
  min-width: 86px;
  text-align: center;
  background-color: rgba(76, 116, 196, 0.2);
  padding: 5px 1em;
  border-radius: 75px;
  border: 1px solid #4C74C4;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  color: #4C74C4;
}

.p-topnews__list-item__textArea-date {
  font-size: 1.3rem;
  line-height: 1;
  color: #AAAFB7;
}

.p-topnews__list-item__textArea-title {
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
  color: #253F75;
  margin-bottom: 30px;
}

.p-topnews__list-item__textArea-caption {
  font-size: 1.3rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.p-topnews__list-more {
  display: flex;
  max-width: 300px;
  width: 100%;
  height: 77px;
  padding: 0 45px;
  margin: 0 auto;
  background-color: #4C74C4;
  border: 1px solid #4C74C4;
  border-radius: 100px;
  transition: 0.3s ease-out;
}
.p-topnews__list-more:hover {
  background-color: white;
}
.p-topnews__list-more:hover span {
  color: #4C74C4;
}
.p-topnews__list-more:hover svg {
  fill: #4C74C4;
}
.p-topnews__list-more:hover .hover {
  display: block;
}
.p-topnews__list-more:hover .nohover {
  display: none;
}
.p-topnews__list-more a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.p-topnews__list-more span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
}
.p-topnews__list-more span img {
  width: 17px;
  height: 17px;
}
.p-topnews__list-more span .hover {
  display: none;
}
.p-topnews__list-more span .nohover {
  display: block;
}
.p-topnews__list-more svg {
  fill: white;
  width: 21px;
  height: 8px;
}
@media screen and (max-width: 600px) {
  .p-topnews__list-more {
    max-width: unset;
    width: 100%;
    height: 57px;
    padding: 0 35px;
  }
  .p-topnews__list-more a {
    gap: 7px;
  }
  .p-topnews__list-more span {
    font-size: 1.8rem;
  }
  .p-topnews__list-more img {
    width: 17px;
    height: 17px;
  }
}

.p-topparallax {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: -1;
  margin-top: -50px;
  margin-bottom: -50px;
}
@media screen and (max-width: 600px) {
  .p-topparallax {
    height: 465px;
  }
}

.p-topparallax img {
  width: 100%;
  height: 100%;
  transform: scale(1.3);
}
@media screen and (max-width: 600px) {
  .p-topparallax img {
    transform: scale(1.5);
  }
}

.p-topcontact {
  background-color: white;
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .p-topcontact {
    padding: 60px 30px;
  }
}
.p-topcontact .c-sectionTitle h2 {
  color: #253F75;
}
.p-topcontact .c-partsContact__flexArea-item__tel svg {
  transform: scale(1);
}
@media screen and (max-width: 600px) {
  .p-topcontact .c-partsContact__flexArea-item__tel svg {
    transform: scale(0.6);
  }
}
.p-topcontact .c-partsContact__flexArea-item__tel span {
  font-size: 5.4rem;
}
@media screen and (max-width: 600px) {
  .p-topcontact .c-partsContact__flexArea-item__tel span {
    font-size: 2.9rem;
  }
}

.p-service-volunteer .c-serviceMv__animation {
  width: 53%;
  height: 100%;
  left: -1.5%;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer .c-serviceMv__animation {
    width: 42%;
    height: -moz-fit-content;
    height: fit-content;
    left: unset;
    right: -5%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

.p-service-volunteer .c-serviceMv .c-button {
  background-color: #4C74C4;
  border: 1px solid #4C74C4;
}
.p-service-volunteer .c-serviceMv .c-button:hover {
  background-color: white;
}
.p-service-volunteer .c-serviceMv .c-button:hover span {
  color: #4C74C4 !important;
}
.p-service-volunteer .c-serviceMv .c-button:hover svg {
  fill: #4C74C4 !important;
}

@media screen and (max-width: 600px) {
  .p-service-volunteer .c-serviceMv .l-inner {
    padding-top: 140px;
    height: 410px;
  }
}

.p-service-volunteer_recruitArea {
  position: relative;
  padding: 120px 0;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_recruitArea {
    padding: 100px 0;
  }
}

.p-service-volunteer_recruitArea .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 25px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_recruitArea .c-sectionTitle h2 {
    letter-spacing: -0.06em;
  }
}

.p-service-volunteer_recruitArea-text {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1;
  color: #253F75;
  font-weight: bold;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_recruitArea-text {
    font-size: 1.6rem;
    line-height: 1.44;
  }
}

.p-service-volunteer_recruitArea-list {
  max-width: 850px;
  width: 100%;
  margin: 0 auto 80px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid #223A40;
  border-bottom: 1px solid #223A40;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_recruitArea-list {
    margin-bottom: 50px;
  }
}

.p-service-volunteer_recruitArea-list__item {
  position: relative;
  padding: 5px 0px 5px 70px;
  border-bottom: 1px dashed #223A40;
}
.p-service-volunteer_recruitArea-list__item:last-of-type {
  border-bottom: unset;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_recruitArea-list__item {
    padding: 5px 0 40px;
  }
}

.p-service-volunteer_recruitArea-list__item-type {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  left: 0;
  top: 5px;
  width: 40px;
  height: calc(100% - 10px);
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background-color: #253F75;
}
.p-service-volunteer_recruitArea-list__item-type.end {
  background-color: #8A9696;
}
.p-service-volunteer_recruitArea-list__item-type.new {
  background-color: #CC7A17;
}
.p-service-volunteer_recruitArea-list__item-type span {
  color: white;
  writing-mode: vertical-rl;
  line-height: 1;
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_recruitArea-list__item-type {
    position: relative;
    width: 100%;
    height: 57px;
    margin-bottom: 40px;
    border-radius: 3px;
  }
  .p-service-volunteer_recruitArea-list__item-type span {
    writing-mode: unset;
  }
}

.p-service-volunteer_recruitArea-list__item-title p {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
  margin: 30px 0;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_recruitArea-list__item-title p {
    line-height: 1.4;
    margin-bottom: 40px;
  }
}

.p-service-volunteer_recruitArea-list__item-condition {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_recruitArea-list__item-condition {
    flex-direction: column;
    margin-bottom: 0;
  }
}

.p-service-volunteer_recruitArea-list__item-condition p {
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  font-size: 1.5rem;
}
.p-service-volunteer_recruitArea-list__item-condition p span {
  font-weight: bold;
  line-height: 1.4;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_recruitArea-list__item-condition p {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .p-service-volunteer_recruitArea-list__item-condition p small {
    display: none;
  }
}

.p-service-volunteer_recruitArea-more {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
}
.p-service-volunteer_recruitArea-more a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
}

.p-service-volunteer_recruitArea-more__deco {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  background-color: #4C74C4;
}
.p-service-volunteer_recruitArea-more__deco svg {
  fill: white;
  height: 8px;
  transform: scale(0.65);
}

.p-service-volunteer_recruitArea-moreArea {
  max-width: 890px;
  width: 100%;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_recruitArea-moreArea {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }
}

.p-service-volunteer_recruitArea-moreArea .c-button {
  max-width: unset;
  width: 50%;
  height: 75px;
  background-color: #4C74C4;
  border: 1px solid #4C74C4;
  border-radius: 100px;
  gap: 10px;
  font-weight: bold;
  color: white;
}
.p-service-volunteer_recruitArea-moreArea .c-button a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 45px;
}
.p-service-volunteer_recruitArea-moreArea .c-button span {
  color: white;
  font-size: 1.8rem;
  line-height: 1.2;
}
.p-service-volunteer_recruitArea-moreArea .c-button svg {
  width: 21px;
  height: 8px;
  fill: white;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_recruitArea-moreArea .c-button {
    width: 100%;
    height: 74px;
  }
  .p-service-volunteer_recruitArea-moreArea .c-button a {
    padding: 0 27px;
  }
}
.p-service-volunteer_recruitArea-moreArea .c-button:hover {
  background-color: white;
}
.p-service-volunteer_recruitArea-moreArea .c-button:hover span {
  color: #4C74C4 !important;
}
.p-service-volunteer_recruitArea-moreArea .c-button:hover svg {
  fill: #4C74C4 !important;
}

.p-service-volunteer_recruitArea-caption {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
  text-align: center;
}

.p-service-volunteer__catch {
  position: relative;
  overflow: hidden;
  padding: 140px 0 140px;
  background-image: url(../../assets/images/service01/bg-catch.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__catch {
    padding: 60px 0;
    background-image: url(../../assets/images/service01/bg-catch__sp.webp);
  }
}

.p-service-volunteer__catch h2 {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 35px;
  color: #2E4174;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__catch h2 {
    font-size: 2.4rem;
    margin-bottom: 35px;
  }
}

.p-service-volunteer__catch-contents p {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__catch-contents p {
    text-align: left;
  }
}
.p-service-volunteer__catch-contents strong {
  display: inline-block;
  color: #4C74C4;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__catch-contents strong {
    display: unset;
  }
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__catch-contents br {
    display: none;
  }
}

.p-service-volunteer__recruit {
  position: relative;
  max-width: 100%;
  background-color: #253F75;
  padding: 100px 80px;
  margin: 0 auto;
  background-image: url(../../assets/images/service01/bg-recruit.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__recruit {
    background-image: url(../../assets/images/service01/bg-recruit__sp.webp);
    padding: 60px 0px;
  }
}

.p-service-volunteer__recruit .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 25px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__recruit .c-sectionTitle {
    flex-wrap: wrap;
    align-items: baseline;
  }
  .p-service-volunteer__recruit .c-sectionTitle::before {
    bottom: unset;
    top: 3px;
  }
}

.p-service-volunteer__recruit-text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 60px;
  color: white;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__recruit-text {
    font-size: 1.6rem;
  }
}

.p-service-volunteer__recruit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__recruit-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

.p-service-volunteer__recruit-list__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background-color: white;
  padding: 40px;
  border-radius: 7px;
}

.p-service-volunteer__recruit-list__item-title {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
}

.p-service-volunteer__recruit-list__item-text {
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 500;
}

.p-service-volunteer__support {
  padding: 150px 0;
  background-image: url(../../assets/images/service/bg-serviceContents.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__support {
    padding: 100px 33px;
    background-image: url(../../assets/images/service/bg-serviceContents__sp.webp);
  }
}

.p-service-volunteer__support .l-inner {
  padding-inline: 80px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__support .l-inner {
    padding-inline: 0;
  }
}

.p-service-volunteer__support .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 25px;
}

.p-service-volunteer__support-text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 140px;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__support-text {
    font-size: 1.6rem;
    margin-bottom: 80px;
  }
}

.p-service-volunteer__support-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-service-volunteer__support-list__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__support-list__item {
    flex-direction: column;
    gap: 30px;
  }
}

.p-service-volunteer__support-list__item-image {
  position: relative;
  width: 53.5%;
}
.p-service-volunteer__support-list__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 7px;
}
.p-service-volunteer__support-list__item-image p {
  position: absolute;
  left: 50px;
  bottom: 50px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  color: white;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__support-list__item-image {
    width: 100%;
  }
  .p-service-volunteer__support-list__item-image img {
    height: 270px;
  }
  .p-service-volunteer__support-list__item-image p {
    font-size: 2.4rem;
    left: 20px;
    bottom: 20px;
    line-height: 1.3;
  }
}

.p-service-volunteer__support-list__item-text {
  width: 46.5%;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__support-list__item-text {
    width: 100%;
  }
}

.p-service-volunteer__support-list__item-text .title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
  color: #253F75;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__support-list__item-text .title {
    font-size: 2.4rem;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
  }
}

.p-service-volunteer__support-list__item-text .caption {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
}

.p-service-volunteer__flow {
  padding: 120px 0;
  background-color: #253F75;
  background-image: url(../../assets/images/service01/bg-flow.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow {
    padding: 60px 30px;
    background-image: url(../../assets/images/service01/bg-flow__sp.webp);
  }
}

.p-service-volunteer__flow .l-inner {
  padding-inline: 80px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow .l-inner {
    padding-inline: 0;
  }
}

.p-service-volunteer__flow-contents {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents {
    flex-direction: column;
    gap: 80px;
  }
}

@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents__text {
    font-size: 1.6rem;
  }
}

.p-service-volunteer__flow-contents__textArea .c-sectionTitle {
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents__textArea .c-sectionTitle {
    margin-bottom: 25px;
  }
}

.p-service-volunteer__flow-contents__textArea {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents__textArea {
    font-size: 2.4rem;
    white-space: unset;
  }
}

.p-service-volunteer__flow-contents__flowArea {
  display: flex;
  gap: 170px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents__flowArea {
    flex-direction: column;
    gap: 40px;
  }
}

.p-service-volunteer__flow-contents__flowArea-item {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.p-service-volunteer__flow-contents__flowArea-item:before {
  position: absolute;
  content: "";
  width: 340px;
  height: 2px;
  background-image: url(../../assets/images/service01/border-flow.webp);
  background-size: cover;
  background-position: center;
  left: 50%;
  top: 65px;
  transform: scale(1, -1);
  z-index: 0;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents__flowArea-item:before {
    left: 32px;
    right: unset;
    width: 1px;
    height: 100%;
    background-image: url(../../assets/images/service01/border-flow__sp.webp);
  }
}
.p-service-volunteer__flow-contents__flowArea-item:nth-of-type(odd):before {
  top: 85px;
  transform: rotate(15deg) scale(-1, 1);
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents__flowArea-item:nth-of-type(odd):before {
    transform: rotate(0);
  }
}
.p-service-volunteer__flow-contents__flowArea-item:nth-of-type(even) {
  margin-top: 50px;
}
.p-service-volunteer__flow-contents__flowArea-item:nth-of-type(even):before {
  top: 45px;
  transform: rotate(-15deg);
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents__flowArea-item:nth-of-type(even) {
    margin-top: 0;
  }
  .p-service-volunteer__flow-contents__flowArea-item:nth-of-type(even):before {
    transform: rotate(0deg);
  }
}
.p-service-volunteer__flow-contents__flowArea-item:last-of-type:before {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents__flowArea-item {
    flex-direction: unset;
    align-items: flex-start;
  }
}

.p-service-volunteer__flow-contents__flowArea-item__no {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background-image: url(../../assets/images/service01/bg-flowitem.webp);
  background-size: cover;
  background-position: center;
  font-family: "Montserrat";
  line-height: 1;
  font-weight: 700;
}
.p-service-volunteer__flow-contents__flowArea-item__no span {
  font-size: 1.5rem;
}
.p-service-volunteer__flow-contents__flowArea-item__no p {
  font-size: 5.3rem;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents__flowArea-item__no {
    width: 65px;
    height: 65px;
  }
  .p-service-volunteer__flow-contents__flowArea-item__no span {
    font-size: 1rem;
  }
  .p-service-volunteer__flow-contents__flowArea-item__no p {
    font-size: 2.6rem;
  }
}

.p-service-volunteer__flow-contents__flowArea-item__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-service-volunteer__flow-contents__flowArea-item__content p {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.2;
}
.p-service-volunteer__flow-contents__flowArea-item__content span {
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents__flowArea-item__content span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents__flowArea-item__content {
    width: calc(100% - 95px);
  }
}

.p-service-volunteer__flow-contents__caption {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__flow-contents__caption {
    font-size: 1.6rem;
  }
}

.p-service-volunteer__voice {
  padding: 120px 0;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__voice {
    padding: 100px 30px;
  }
}

.p-service-volunteer__voice .l-inner {
  padding-inline: 120px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__voice .l-inner {
    padding-inline: 0;
  }
}

.p-service-volunteer__voice .p-service-volunteer__voice-caption {
  display: block;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 80px;
  text-align: center;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__voice .p-service-volunteer__voice-caption {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

.p-service-volunteer__voice .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 25px;
}

.p-service-volunteer__voice-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__voice-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

.p-service-volunteer__voice-list__item {
  display: flex;
  justify-content: baseline;
  align-items: center;
  flex-direction: column; /* Frame 920 */
  gap: 20px;
  background: #FFFFFF;
  box-shadow: 0px 4px 17.5px rgba(76, 116, 196, 0.1);
  border-radius: 7px;
  padding: 40px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer__voice-list__item {
    padding: 20px;
    padding: 40px;
  }
}

.p-service-volunteer__voice-list__item-type {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #4C74C4;
}

.p-service-volunteer__voice-list__item-text {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.7;
}

.p-service-volunteer_contact {
  padding: 120px 0;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_contact {
    padding: 60px 30px;
  }
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_contact .c-partsContact__flexArea {
    width: calc(100% - 26px);
    margin: auto;
  }
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_contact .c-partsContact__flexArea-item:last-of-type {
    padding: 30px 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_contact .c-partsContact__flexArea-item .c-button {
    width: 100%;
    height: 47px;
  }
}
.p-service-volunteer_contact .c-partsContact__flexArea-item__tel {
  margin-bottom: 20px;
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_contact .c-partsContact__flexArea-item__tel {
    margin-right: 0;
  }
}
.p-service-volunteer_contact .c-partsContact__flexArea-item__caption {
  margin-bottom: 20px;
}
.p-service-volunteer_contact .c-partsContact__flexArea-item:last-of-type .c-partsContact__flexArea-item__title {
  margin-bottom: 20px;
}
.p-service-volunteer_contact .c-partsContact__flexArea-item:last-of-type .c-partsContact__flexArea-item__caption {
  margin-bottom: unset;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_contact .c-partsContact {
    padding: 80px 20px;
  }
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_contact .c-sectionTitle h2 {
    font-size: 2.8rem;
    text-align: center;
    letter-spacing: -0.05em;
    line-height: 1.2;
  }
}

.p-service-volunteer_contact .c-partsContact__flexArea-item .c-button {
  width: 235px;
  padding: 0 22px;
}
.p-service-volunteer_contact .c-partsContact__flexArea-item .c-button span {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_contact .c-partsContact__flexArea-item .c-button {
    width: 100%;
    height: 47px;
  }
}

.p-service-volunteer_contact .c-button__contents-arrow {
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .p-service-volunteer_contact .c-button__contents-arrow {
    top: 0;
    bottom: 0;
    margin: auto;
    transform: unset;
  }
}

.p-service-support .c-serviceMv__animation {
  width: 53%;
  height: 100%;
  left: -1.5%;
}
@media screen and (max-width: 600px) {
  .p-service-support .c-serviceMv__animation {
    width: 42%;
    height: auto;
    left: unset;
    right: -5%;
    bottom: -5%;
  }
}

@media screen and (max-width: 600px) {
  .p-service-support .c-serviceMv .l-inner {
    padding-top: 107px;
  }
}

.p-service-support_support {
  position: relative;
  width: 100%;
  background-color: #253F75;
  padding: 100px 80px;
  margin: 0 auto;
  color: white;
  background-image: url(../../assets/images/service02/bg-service.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .p-service-support_support {
    background-image: url(../../assets/images/service02/bg-service__sp.webp);
    padding: 60px 0;
  }
}

.p-service-support_support .c-sectionTitle {
  margin-bottom: 25px;
}

.p-service-support_support__text {
  display: flex;
  flex-direction: column;
  gap: 25px;
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
  margin-bottom: 60px;
}
.p-service-support_support__text span {
  font-size: 2.6rem;
}
@media screen and (max-width: 600px) {
  .p-service-support_support__text {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }
}

.p-service-support_support__caption {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 60px;
}

.p-service-support_support__list {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media screen and (max-width: 600px) {
  .p-service-support_support__list {
    flex-wrap: wrap;
    gap: 10px;
  }
}

.p-service-support_support__list-item {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  gap: 22px;
  padding: 30px 10px 10px;
  border-radius: 7px;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .p-service-support_support__list-item {
    width: 48%;
    padding: 30px 10px 10px;
  }
}

.p-service-support_support__list-item__text {
  color: #223A40;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 600px) {
  .p-service-support_support__list-item__text {
    font-size: 1.5rem;
    text-align: center;
  }
}

.p-service-support_support__list-item__image {
  width: 100%;
  height: 100%;
}
.p-service-support_support__list-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) {
  .p-service-support_support__list-item__image {
    width: 100%;
    height: auto;
    aspect-ratio: 132/79;
  }
}

.p-service-support_contents {
  position: relative;
  padding: 150px 0;
  background-image: url(../../assets/images/service/bg-serviceContents.webp);
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .p-service-support_contents {
    background-image: url(../../assets/images/service/bg-serviceContents__sp.webp);
    padding: 100px 0;
  }
}

.p-service-support_contents .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 25px;
}
@media screen and (max-width: 600px) {
  .p-service-support_contents .c-sectionTitle {
    flex-wrap: wrap;
    align-items: baseline;
  }
  .p-service-support_contents .c-sectionTitle::before {
    bottom: unset;
    top: 3px;
  }
}

.p-service-support_contents__caption {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  margin-bottom: 140px;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-service-support_contents__caption {
    font-size: 1.6rem;
    line-height: 1.4;
    margin-bottom: 80px;
  }
}

.p-service-support_contents__listArea {
  display: flex;
  flex-direction: column;
  gap: 120px;
  padding-inline: 80px;
}
@media screen and (max-width: 600px) {
  .p-service-support_contents__listArea {
    gap: 60px;
    padding-inline: 0;
  }
}

.p-service-support_contents__list {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 600px) {
  .p-service-support_contents__list {
    flex-direction: column;
    gap: 40px;
  }
}

.p-service-support_contents__list-imageArea {
  position: relative;
  width: 44%;
}
.p-service-support_contents__list-imageArea img {
  width: 100%;
  height: auto;
  border-radius: 7px;
}
@media screen and (max-width: 600px) {
  .p-service-support_contents__list-imageArea {
    width: 100%;
  }
}

.p-service-support_contents__list-textArea {
  display: flex;
  flex-direction: column;
  gap: 2em;
  width: 56%;
}
@media screen and (max-width: 600px) {
  .p-service-support_contents__list-textArea {
    width: 100%;
  }
}

.p-service-support_contents__list-textArea ul li {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  text-indent: 1em;
}
.p-service-support_contents__list-textArea ul li:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #4C74C4;
  border-radius: 50%;
  left: 2px;
  top: 10px;
}

.p-service-support_contents__list-textArea ul ul {
  margin-left: 1em;
}

.p-service-support_contents__list-textArea ul ul li {
  font-size: 1.6rem;
  font-weight: 400;
  text-indent: 0;
}
.p-service-support_contents__list-textArea ul ul li:before {
  display: none;
}

.p-service-support_contents__list-textArea .title {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.02em;
  line-height: 1.27;
  color: #253F75;
}

.p-service-support_contents__list-textArea .caption {
  font-size: 1.8rem;
}

.p-service-support__area {
  position: relative;
  padding: 120px 0 133px;
  color: white;
  overflow: hidden;
  background-image: url(../../assets/images/service02/bg-serviceArea.webp);
  background-size: cover;
}
@media screen and (max-width: 600px) {
  .p-service-support__area {
    padding: 60px 0 440px;
    background-image: url(../../assets/images/service02/bg-serviceArea__sp.webp);
  }
}

.p-service-support__area .l-inner {
  padding-inline: 180px;
}
@media screen and (max-width: 600px) {
  .p-service-support__area .l-inner {
    padding-inline: 33px;
  }
}

.p-service-support__area .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .p-service-support__area .c-sectionTitle {
    margin-bottom: 25px;
  }
}

.p-service-support__area-catchcopy {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .p-service-support__area-catchcopy {
    font-size: 1.6rem;
    line-height: 1.44;
    margin: unset;
  }
}

.p-service-support__area-image {
  position: absolute;
  height: 80%;
  width: auto;
  left: 50%;
  top: 0;
  bottom: 0;
  margin: auto;
}
.p-service-support__area-image img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 600px) {
  .p-service-support__area-image {
    display: none;
  }
}

.p-service-support__facility {
  position: relative;
  padding: 120px 0;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .p-service-support__facility {
    padding: 60px 0;
  }
}

.p-service-support__facility .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 25px;
}

.p-service-support__facility-title {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 80px;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-service-support__facility-title {
    font-size: 1.6rem;
    margin-bottom: 60px;
    text-align: center;
    letter-spacing: -0.02em;
  }
}

.p-service-support__facility-list {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border: 1px solid #4C74C4;
}

.p-service-support__facility-list__item {
  display: flex;
  flex-direction: column;
}

.p-service-support__facility-list__item-label {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  background-color: #4C74C4;
  color: white;
  padding: 20px;
}

.p-service-support__facility-list__item-content {
  font-size: 1.6rem;
  line-height: 1.8;
  padding: 10px 20px;
}

.p-service-support__contact {
  padding: 120px 0;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .p-service-support__contact {
    padding: 100px 30px;
  }
}
.p-service-support__contact .c-partsContact__flexArea-item__tel svg {
  transform: scale(1);
}
@media screen and (max-width: 600px) {
  .p-service-support__contact .c-partsContact__flexArea-item__tel svg {
    transform: scale(0.6);
  }
}
.p-service-support__contact .c-partsContact__flexArea-item__tel span {
  font-size: 5.4rem;
}
@media screen and (max-width: 600px) {
  .p-service-support__contact .c-partsContact__flexArea-item__tel span {
    font-size: 2.9rem;
  }
}

.p-service-recruitment .c-serviceMv__animation {
  width: 42%;
  height: 100%;
  left: 0;
  bottom: -4%;
}
.p-service-recruitment .c-serviceMv__animation picture img {
  -o-object-position: bottom;
     object-position: bottom;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment .c-serviceMv__animation {
    width: 42%;
    height: -moz-fit-content;
    height: fit-content;
    left: unset;
    right: -5%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}

@media screen and (max-width: 600px) {
  .p-service-recruitment .c-serviceMv .l-inner {
    height: 410px;
    padding-top: 140px;
  }
}

.p-service-recruitment .c-serviceMv .c-button {
  background-color: #253F75;
  border: 1px solid #253F75;
}
.p-service-recruitment .c-serviceMv .c-button:hover {
  background-color: white;
}
.p-service-recruitment .c-serviceMv .c-button:hover span {
  color: #253F75 !important;
}
.p-service-recruitment .c-serviceMv .c-button:hover svg {
  fill: #253F75 !important;
}

.p-service-recruitment__catch {
  position: relative;
  overflow: hidden;
  padding: 149px 0 133px;
  background-color: white;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__catch {
    padding: 60px 0 70px;
  }
}

.p-service-recruitment__catch .c-parallax {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.3);
  z-index: -1;
}

.p-service-recruitment__catch .c-parallax .bg {
  width: 100%;
  height: 100%;
}
.p-service-recruitment__catch .c-parallax .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-service-recruitment__catch h2 {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 40px;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__catch h2 {
    font-size: 2.4rem;
    margin-bottom: 35px;
  }
}

.p-service-recruitment__catch p {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__catch p {
    text-align: left;
    margin-bottom: unset;
  }
}

.p-service-recruitment__catch a {
  display: inline-block;
  color: #A8CDFF;
  text-decoration: underline;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__catch a {
    display: unset;
  }
}

.p-service-recruitment__recruit {
  position: relative;
  width: 100%;
  background-color: #253F75;
  padding: 120px 80px;
  background-image: url(../../assets/images/service03/bg-recruit.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__recruit {
    padding: 60px 0px;
    background-image: url(../../assets/images/service03/bg-recruit__sp.webp);
  }
}

.p-service-recruitment__recruit .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 25px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__recruit .c-sectionTitle::before {
    bottom: unset;
    top: 3px;
  }
}

.p-service-recruitment__recruit-text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 60px;
  color: white;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__recruit-text {
    font-size: 1.6rem;
  }
}

.p-service-recruitment__recruit-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__recruit-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
}

.p-service-recruitment__recruit-list__item {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
  background-color: white;
  padding: 40px;
  border-radius: 7px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__recruit-list__item {
    gap: 22px;
  }
}

.p-service-recruitment__recruit-list__item-title {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__recruit-list__item-title {
    font-size: 2.6rem;
  }
}

.p-service-recruitment__recruit-list__item-text {
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 500;
}

.p-service-recruitment__support {
  padding: 150px 80px;
  background-image: url(../../assets/images/service03/bg-support.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__support {
    padding: 100px 0;
    background-image: url(../../assets/images/service03/bg-support__sp.webp);
  }
}

.p-service-recruitment__support .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 25px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__support .c-sectionTitle {
    flex-wrap: wrap;
    align-items: baseline;
  }
  .p-service-recruitment__support .c-sectionTitle::before {
    bottom: unset;
    top: 3px;
  }
}

.p-service-recruitment__support-text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: -0.05em;
  text-align: center;
  margin-bottom: 140px;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__support-text {
    font-size: 1.6rem;
    margin-bottom: 80px;
    line-height: 1.44;
  }
}

.p-service-recruitment__support-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-service-recruitment__support-list__item {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__support-list__item {
    flex-direction: column;
    gap: 30px;
  }
}

.p-service-recruitment__support-list__item-image {
  position: relative;
  width: 50.5%;
}
.p-service-recruitment__support-list__item-image img {
  width: 100%;
  height: auto;
  border-radius: 7px;
}
.p-service-recruitment__support-list__item-image p {
  position: absolute;
  left: 50px;
  bottom: 50px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  color: white;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__support-list__item-image {
    width: 100%;
  }
  .p-service-recruitment__support-list__item-image img {
    height: 270px;
  }
  .p-service-recruitment__support-list__item-image p {
    font-size: 2.4rem;
    left: 20px;
    bottom: 20px;
    line-height: 1.3;
  }
}

.p-service-recruitment__support-list__item-text {
  width: 49.5%;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__support-list__item-text {
    width: 100%;
  }
}

.p-service-recruitment__support-list__item-text__title {
  font-size: 3rem;
  line-height: 1;
  font-weight: bold;
  color: #253F75;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__support-list__item-text__title {
    font-size: 2.4rem;
  }
}

.p-service-recruitment__support-list__item-text__block {
  margin-bottom: 2em;
}
.p-service-recruitment__support-list__item-text__block p {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__support-list__item-text__block p {
    font-size: 1.6rem;
  }
}
.p-service-recruitment__support-list__item-text__block .title {
  position: relative;
  padding-left: 1em;
}
.p-service-recruitment__support-list__item-text__block .title::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #4C74C4;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.p-service-recruitment__support-list__item-text__block:last-of-type {
  margin-bottom: 0;
}

.p-service-recruitment__flow {
  padding: 120px 80px;
  background-image: url(../../assets/images/service03/bg-flow.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow {
    background-image: url(../../assets/images/service03/bg-flow__sp.webp);
    padding: 100px 0;
  }
}

.p-service-recruitment__flow-contents {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow-contents {
    flex-direction: column;
    gap: 80px;
  }
}

.p-service-recruitment__flow-contents__textArea {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow-contents__textArea {
    width: 100%;
  }
}

.p-service-recruitment__flow-contents__textArea .c-sectionTitle {
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow-contents__textArea .c-sectionTitle::before {
    bottom: unset;
    top: 3px;
  }
}

.p-service-recruitment__flow-contents__text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow-contents__text {
    font-size: 1.6rem;
    white-space: unset;
  }
}

.p-service-recruitment__flow-contents__flowArea {
  width: 100%;
  display: flex;
  gap: 35px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow-contents__flowArea {
    flex-direction: column;
  }
}

.p-service-recruitment__flow-contents__flowArea-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 16.6666666667%;
}
.p-service-recruitment__flow-contents__flowArea-item:before {
  position: absolute;
  content: "";
  width: 160px;
  height: 2px;
  background-image: url(../../assets/images/service03/border-flow.webp);
  background-size: cover;
  background-position: center;
  left: 50%;
  top: 65px;
  transform: scale(1, -1);
  z-index: 0;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow-contents__flowArea-item:before {
    left: 33px;
    right: unset;
    width: 1px;
    height: 100%;
    background-image: url(../../assets/images/service03/border-flow__sp.webp);
  }
}
.p-service-recruitment__flow-contents__flowArea-item:nth-of-type(odd):before {
  top: 85px;
  transform: rotate(15deg) scale(-1, 1);
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow-contents__flowArea-item:nth-of-type(odd):before {
    top: 45px;
    transform: rotate(0);
  }
}
.p-service-recruitment__flow-contents__flowArea-item:nth-of-type(even) {
  margin-top: 50px;
}
.p-service-recruitment__flow-contents__flowArea-item:nth-of-type(even):before {
  top: 45px;
  transform: rotate(-15deg);
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow-contents__flowArea-item:nth-of-type(even) {
    margin-top: 0;
  }
  .p-service-recruitment__flow-contents__flowArea-item:nth-of-type(even):before {
    transform: rotate(0deg);
  }
}
.p-service-recruitment__flow-contents__flowArea-item:last-of-type:before {
  display: none;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow-contents__flowArea-item {
    flex-direction: unset;
    align-items: flex-start;
    width: 100%;
  }
}

.prestep .p-service-recruitment__flow-contents__flowArea-item__no span {
  font-size: 3rem;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .prestep .p-service-recruitment__flow-contents__flowArea-item__no span {
    font-size: 1.4rem;
  }
}

.p-service-recruitment__flow-contents__flowArea-item__no {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 8px;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  background-image: url(../../assets/images/service03/bg-flowitem.webp);
  background-size: cover;
  background-position: center;
  font-family: "Montserrat";
  line-height: 1;
  font-weight: 600;
}
.p-service-recruitment__flow-contents__flowArea-item__no span {
  font-size: 1.5rem;
}
.p-service-recruitment__flow-contents__flowArea-item__no p {
  font-size: 5.3rem;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow-contents__flowArea-item__no {
    width: 65px;
    height: 65px;
  }
  .p-service-recruitment__flow-contents__flowArea-item__no span {
    font-size: 1rem;
  }
  .p-service-recruitment__flow-contents__flowArea-item__no p {
    font-size: 2.6rem;
  }
}

.p-service-recruitment__flow-contents__flowArea-item__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-service-recruitment__flow-contents__flowArea-item__content p {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.2;
}
.p-service-recruitment__flow-contents__flowArea-item__content span {
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow-contents__flowArea-item__content span {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__flow-contents__flowArea-item__content {
    width: calc(100% - 95px);
  }
}

.p-service-recruitment__ratio {
  padding: 120px 0;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__ratio {
    padding: 100px 0;
  }
}

.p-service-recruitment__ratio .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 25px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__ratio .c-sectionTitle {
    text-align: center;
  }
}

.p-service-recruitment__ratio-text {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 80px;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__ratio-text {
    font-size: 1.6rem;
    margin-bottom: 80px;
  }
}

.p-service-recruitment__ratio-list {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__ratio-list {
    flex-direction: column;
  }
}

.p-service-recruitment__ratio-list__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  width: 50%;
  padding: 40px;
  border-radius: 7px;
  box-shadow: 0px 4px 17.5px rgba(76, 116, 196, 0.1);
  box-shadow: 0px 4px 15.4px rgba(67, 103, 173, 0.3);
}
@media screen and (max-width: 600px) {
  .p-service-recruitment__ratio-list__item {
    width: 100%;
  }
}

.p-service-recruitment__ratio-list__item p {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1;
  letter-spacing: -0.05em;
  color: #223A40;
}

.p-service-recruitment_contact {
  padding: 120px 0;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment_contact {
    padding: 60px 30px;
  }
}
.p-service-recruitment_contact .c-partsContact__flexArea-item:last-of-type .c-partsContact__flexArea-item__caption {
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment_contact .c-partsContact__flexArea-item:last-of-type {
    padding: 30px 20px;
  }
}

.p-service-recruitment_contact .c-partsContact__flexArea-item .c-button {
  width: 235px;
  padding: 0 22px;
}
.p-service-recruitment_contact .c-partsContact__flexArea-item .c-button span {
  font-size: 1.4rem;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment_contact .c-partsContact__flexArea-item .c-button {
    width: 100%;
    height: 47px;
  }
}

.p-service-recruitment_contact .c-button__contents {
  padding: unset;
}

.p-service-recruitment_contact .c-button__contents-arrow {
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .p-service-recruitment_contact .c-button__contents-arrow {
    top: 0;
    bottom: 0;
    margin: auto;
    transform: unset;
  }
}

.p-service-recruitment_contact .c-partsContact__flexArea-item:last-of-type .c-partsContact__flexArea-item__title {
  margin-bottom: 20px;
}
.p-service-recruitment_contact .c-partsContact__flexArea-item:last-of-type .c-partsContact__flexArea-item__caption {
  margin-bottom: unset;
}
.p-service-recruitment_contact .c-partsContact__flexArea-item__tel {
  margin-bottom: 20px;
  margin-right: 10px;
}
@media screen and (max-width: 600px) {
  .p-service-recruitment_contact .c-partsContact__flexArea-item__tel {
    margin-right: 0;
  }
}

.p-company .c-lowerMv {
  background-image: url(../../assets/images/company/img-companyMv.webp);
}
@media screen and (max-width: 600px) {
  .p-company .c-lowerMv {
    background-image: url(../../assets/images/company/img-companyMv__sp.webp);
  }
}

.p-company__philosophy .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 100px;
}
@media screen and (max-width: 600px) {
  .p-company__philosophy .c-sectionTitle {
    margin: 0 auto 50px;
  }
}

.p-company__philosophy {
  padding: 150px 0;
  background-image: url(../../assets/images/company/bg-philosophy.webp);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 600px) {
  .p-company__philosophy {
    padding: 100px 0;
    background-image: url(../../assets/images/company/bg-philosophy__sp.webp);
  }
}

.p-company__philosophy-title {
  color: #253F75;
  font-size: 3.4rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
  .p-company__philosophy-title {
    font-size: 2.4rem;
    letter-spacing: -0.05em;
    margin-bottom: 32px;
  }
}

.p-company__philosophy-caption {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .p-company__philosophy-caption {
    text-align: left;
    font-size: 1.4rem;
  }
  .p-company__philosophy-caption br {
    display: none;
  }
}

.p-company__infoArea {
  padding: 120px 0 120px;
  background-color: white;
}
@media screen and (max-width: 600px) {
  .p-company__infoArea {
    padding: 100px 0;
  }
}

.p-company__infoArea .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 25px;
}
@media screen and (max-width: 600px) {
  .p-company__infoArea .c-sectionTitle {
    margin: 0 auto 40px;
  }
}

.p-company__infoArea-caption {
  color: #253F75;
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .p-company__infoArea-caption {
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
}

.p-company__infoArea-list {
  max-width: 850px;
  width: 100%;
  padding: 70px;
  margin: 0 auto;
  box-shadow: 0px 4px 17.5px rgba(76, 116, 196, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 600px) {
  .p-company__infoArea-list {
    padding: 50px 30px;
  }
}

.p-company__infoArea-list__item {
  display: flex;
  padding-bottom: 30px;
  border-bottom: 1px solid #223A40;
  margin-bottom: 30px;
}
.p-company__infoArea-list__item:last-of-type {
  border-bottom: unset;
  margin-bottom: 0;
}
@media screen and (max-width: 600px) {
  .p-company__infoArea-list__item {
    flex-direction: column;
    gap: 10px;
  }
}

.p-company__infoArea-list__item-title {
  width: 190px;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  .p-company__infoArea-list__item-title {
    width: 100%;
    font-size: 1.8rem;
  }
}

.p-company__infoArea-list__item-content {
  display: flex;
  align-items: center;
  width: calc(100% - 190px);
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .p-company__infoArea-list__item-content {
    width: 100%;
  }
}

.p-archive,
.blog {
  background-color: white;
}

.p-archive .c-lowerMv,
.blog .c-lowerMv {
  background-image: url(../../assets/images/archive/img-archiveMv.webp);
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 600px) {
  .p-archive .c-lowerMv,
  .blog .c-lowerMv {
    background-image: url(../../assets/images/archive/img-archiveMv__sp.webp);
  }
  .p-archive .c-lowerMv h1,
  .blog .c-lowerMv h1 {
    letter-spacing: -0.02em;
  }
}

.p-archive__introArea {
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .p-archive__introArea {
    padding: 100px 0 80px;
  }
}

.p-archive__introArea .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 25px;
}
@media screen and (max-width: 600px) {
  .p-archive__introArea .c-sectionTitle {
    flex-wrap: wrap;
    align-items: baseline;
  }
  .p-archive__introArea .c-sectionTitle::before {
    bottom: unset;
    top: 3px;
  }
}

.p-archive__introArea-caption {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-archive__introArea-caption {
    font-size: 1.6rem;
  }
}

.p-archive__list {
  max-width: 850px;
  width: 100%;
  margin: 0 auto 120px;
  border-top: 1px solid #223A40;
  border-bottom: 1px solid #223A40;
}
.p-archive__list .l-inner {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #223A40;
}
@media screen and (max-width: 600px) {
  .p-archive__list {
    max-width: calc(100% - 60px);
  }
  .p-archive__list .l-inner {
    padding-inline: unset;
  }
}

.p-archive__list__item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 50px 0;
  border-bottom: 1px dashed #223A40;
  width: 100%;
  height: 100%;
  transition: 0.3s ease-out;
}
.p-archive__list__item:hover {
  opacity: 0.7 !important;
}
.p-archive__list__item:last-of-type {
  border-bottom: unset;
}
@media screen and (max-width: 600px) {
  .p-archive__list__item {
    flex-direction: column;
    padding: 40px 0;
  }
}

.p-archive__list__item-thumbnail {
  display: block;
  width: 230px;
}
.p-archive__list__item-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 600px) {
  .p-archive__list__item-thumbnail {
    width: 100%;
  }
}

.p-archive__list__item-textArea {
  width: calc(100% - 230px);
}
@media screen and (max-width: 600px) {
  .p-archive__list__item-textArea {
    width: 100%;
  }
}

.p-archive__list__item-textArea-metaArea {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.p-archive__list__item-textArea-cat {
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: bold;
  background-color: rgba(76, 116, 196, 0.2);
  padding: 2px 15px;
  border-radius: 75px;
  border: 1px solid #4C74C4;
  color: #4C74C4;
}

.p-archive__list__item-textArea-date {
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 500;
  color: #AAAFB7;
}

.p-archive__list__item-textArea-title {
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 30px;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-archive__list__item-textArea-title {
    font-size: 2rem;
  }
}

.p-archive__list__item-textArea-caption {
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 500;
}

.p-archive__pagination {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 120px;
}

.p-archive__pagination .l-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.p-archive__pagination-prev {
  width: 21px;
  height: 8px;
  transform: scale(-1, 1);
  transition: 0.3s ease-out;
}
.p-archive__pagination-prev:hover {
  opacity: 0.7;
}
.p-archive__pagination-prev a {
  display: flex;
}
.p-archive__pagination-prev svg {
  width: 21px;
  height: 8px;
  fill: #253F75;
}

.p-archive__pagination-contents {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.p-archive__pagination-contents li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease-out;
  font-weight: bold;
  font-family: "Montserrat Alternates";
  opacity: 0.47;
  font-size: 2rem;
  border-radius: 50%;
}
@media screen and (max-width: 600px) {
  .p-archive__pagination-contents li {
    font-size: 1.6rem;
  }
}
.p-archive__pagination-contents li:hover {
  opacity: 0.7;
}

.p-archive__pagination-contents .current {
  opacity: 1;
  color: white;
  background-color: #253F75;
}

.p-archive__pagination-contents .dots {
  color: #253F75;
  opacity: 1;
}

.p-archive__pagination-next {
  width: 21px;
  height: 8px;
  transition: 0.3s ease-out;
}
.p-archive__pagination-next:hover {
  opacity: 0.7;
}
.p-archive__pagination-next a {
  display: flex;
}
.p-archive__pagination-next svg {
  width: 21px;
  height: 8px;
  fill: #253F75;
}

.p-archive__pagination-prev .first,
.p-archive__pagination-next .last {
  opacity: 0.47;
}

.p-terms {
  background-color: white;
}

.p-terms__mv {
  position: relative;
  padding: 210px 0 80px;
}
.p-terms__mv h2 {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 35px;
}
@media screen and (max-width: 600px) {
  .p-terms__mv {
    padding: 160px 0 80px;
  }
  .p-terms__mv h2 {
    font-size: 3rem;
  }
}

.p-terms__mv .l-inner {
  padding-inline: 120px;
}
@media screen and (max-width: 600px) {
  .p-terms__mv .l-inner {
    padding-inline: 33px;
  }
}

.p-terms__contents .l-inner {
  padding-inline: 120px;
}
@media screen and (max-width: 600px) {
  .p-terms__contents .l-inner {
    padding-inline: 33px;
  }
}

.p-terms__contents-intro {
  font-size: 1.4rem;
  line-height: 1.71;
  letter-spacing: 0.02em;
  font-weight: 500;
  margin-bottom: 80px;
}

.p-terms__contents-block {
  margin-bottom: 80px;
}
.p-terms__contents-block:last-of-type {
  margin-bottom: 120px;
}
@media screen and (max-width: 600px) {
  .p-terms__contents-block {
    margin-bottom: 60px;
  }
}

.p-terms__contents-block__title {
  display: flex;
  gap: 1em;
  align-items: center;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 20px;
}
.p-terms__contents-block__title span {
  white-space: nowrap;
}
@media screen and (max-width: 600px) {
  .p-terms__contents-block__title {
    align-items: flex-start;
    font-size: 1.8rem;
    letter-spacing: -0.05em;
  }
}

.p-terms__contents-block__detail {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding-left: 1em;
  font-size: 1.4rem;
  font-weight: 500;
}
.p-terms__contents-block__detail ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding-left: 2em;
  list-style: disc;
}
.p-terms__contents-block__detail li {
  line-height: 1.5;
  list-style: decimal;
}
.p-terms__contents-block__detail li::marker {
  font-weight: bold;
  font-size: 1.4rem;
  color: #4C74C4;
  letter-spacing: 0.02em;
}

.p-privacy {
  background-color: white;
}

.p-privacypolicy__mv {
  position: relative;
  padding: 210px 0 80px;
}
.p-privacypolicy__mv h2 {
  font-size: 5rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 35px;
}
@media screen and (max-width: 600px) {
  .p-privacypolicy__mv {
    padding: 160px 0 80px;
  }
  .p-privacypolicy__mv h2 {
    font-size: 3rem;
  }
}

.p-privacypolicy__mv .l-inner {
  padding-inline: 120px;
}
@media screen and (max-width: 600px) {
  .p-privacypolicy__mv .l-inner {
    padding-inline: 33px;
  }
}

.p-privacypolicy__contents .l-inner {
  padding-inline: 120px;
}
@media screen and (max-width: 600px) {
  .p-privacypolicy__contents .l-inner {
    padding-inline: 33px;
  }
}

.p-privacypolicy__contents-intro {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 80px;
}

.p-privacypolicy__contents-block {
  margin-bottom: 80px;
}
.p-privacypolicy__contents-block:last-of-type {
  margin-bottom: 120px;
}
.p-privacypolicy__contents-block__title {
  display: flex;
  gap: 1em;
  align-items: center;
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .p-privacypolicy__contents-block__title {
    font-size: 1.8rem;
    align-items: flex-start;
  }
  .p-privacypolicy__contents-block__title span {
    white-space: nowrap;
  }
}

.p-privacypolicy__contents-block__detail {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding-left: 1em;
  font-size: 1.4rem;
  font-weight: 500;
}
.p-privacypolicy__contents-block__detail ul {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding-left: 2em;
}
.p-privacypolicy__contents-block__detail ul li {
  line-height: 1.5;
  list-style: decimal;
}
.p-privacypolicy__contents-block__detail ul li::marker {
  color: #4C74C4;
  font-weight: bold;
  font-size: 1.4rem;
}
.p-privacypolicy__contents-block__detail ol {
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding-left: 2em;
}
.p-privacypolicy__contents-block__detail ol li {
  position: relative;
  line-height: 1.5;
}
.p-privacypolicy__contents-block__detail ol li:before {
  position: absolute;
  content: "";
  left: -15px;
  top: 5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #4C74C4;
}

.p-contact, .p-confirm {
  background-image: url(../../assets/images/contact/bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .p-contact, .p-confirm {
    background-image: url(../../assets/images/contact/bg__sp.webp);
  }
}

.p-contact .c-lowerMv, .p-confirm .c-lowerMv {
  background-image: url(../../assets/images/contact/img-contactMv.webp);
}
@media screen and (max-width: 600px) {
  .p-contact .c-lowerMv, .p-confirm .c-lowerMv {
    background-image: url(../../assets/images/contact/img-contactMv__sp.webp);
  }
}

.p-contact__contents, .p-confirm__contents {
  padding: 120px 0;
}
@media screen and (max-width: 600px) {
  .p-contact__contents, .p-confirm__contents {
    padding: 100px 0;
  }
}

.p-single, .single {
  background-color: white;
}

.p-single__title {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 50px;
  padding-top: 210px;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .p-single__title {
    padding-top: 165px;
  }
}

.p-single__title h1 {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  color: #253F75;
}
@media screen and (max-width: 600px) {
  .p-single__title h1 {
    font-size: 1.6rem;
    letter-spacing: -0.05em;
  }
}

.p-single__content-thumnail {
  margin-bottom: 80px;
}
.p-single__content-thumnail img {
  width: 100%;
  height: auto;
  margin-bottom: unset !important;
}
@media screen and (max-width: 600px) {
  .p-single__content-thumnail {
    margin-bottom: 60px;
  }
}

.p-single__content {
  max-width: 850px;
  width: 100%;
  margin: 0 auto 120px;
  overflow-x: hidden;
}

.p-single__content h2 {
  font-size: 3rem;
  font-weight: bold;
  color: #253F75;
  letter-spacing: -0.05em;
  margin-bottom: 1em;
  line-height: 1.2;
}

.p-single__content h3 {
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 1em;
  letter-spacing: -0.05em;
  line-height: 1.2;
}

.p-single__content h4 {
  position: relative;
  font-size: 1.6rem;
  font-weight: bold;
  padding-left: 1em;
  line-height: 1.2;
  margin-bottom: 1em;
}
.p-single__content h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 80%;
  background-color: #253F75;
}

.p-single__content p {
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  margin-bottom: 1em;
}

.p-single__content p a {
  color: #4C74C4;
  font-weight: bold;
  text-decoration: underline;
}

.p-single__content p span {
  display: inline;
  position: relative;
  text-decoration: unset !important;
  background: linear-gradient(transparent 80%, rgba(76, 116, 196, 0.4) 80%);
}

.p-single__content img {
  width: 100%;
  height: auto;
  margin-bottom: 1em;
}

.p-single__content ul {
  padding-left: 1em;
  margin-bottom: 1em;
}
.p-single__content ul li {
  position: relative;
}
.p-single__content ul li::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  background-color: #4C74C4;
  border-radius: 50%;
  left: -1em;
  top: 0.6em;
}

.p-single__content table {
  border: 1px solid #253F75;
  margin-bottom: 1em;
}
@media screen and (max-width: 600px) {
  .p-single__content table {
    display: block;
    table-layout: fixed;
    width: -moz-max-content !important;
    width: max-content !important;
    height: -moz-max-content !important;
    height: max-content !important;
  }
}

@media screen and (max-width: 600px) {
  .p-single__content .table-scrollArea {
    margin-bottom: 1em;
    overflow-x: scroll;
  }
  .p-single__content .table-scrollArea::-webkit-scrollbar {
    height: 2px;
  }
  .p-single__content .table-scrollArea::-webkit-scrollbar-thumb {
    background-color: #253F75;
  }
  .p-single__content .table-scrollArea::-webkit-scrollbar-track {
    background-color: #A0B1C7;
  }
}

.p-single__content table tr:first-of-type {
  background-color: #253F75 !important;
  color: white !important;
}
.p-single__content table tr:first-of-type td {
  border-right: 1px solid white;
}
.p-single__content table tr:first-of-type td:last-of-type {
  border-right: none;
}
.p-single__content table tr td {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  padding: 12px 15px;
  border-right: 1px solid #253F75;
}
.p-single__content table tr td:last-of-type {
  border-right: none;
}
.p-single__content table tr:nth-of-type(even) {
  background-color: white;
}
.p-single__content table tr:nth-of-type(odd) {
  background-color: #EAEEEE;
}

.p-single__content p + h2,
.p-single__content p + h3,
.p-single__content p + h4 {
  margin-top: 2em;
}

.p-single__content .table-scrollArea + h2,
.p-single__content .table-scrollArea + h3,
.p-single__content .table-scrollArea + h4 {
  margin-top: 2em;
}

.p-faq .l-main {
  padding-top: 65px;
}

.p-faq__list {
  max-width: 850px;
  width: 100%;
  margin: 0 auto 120px;
  border-top: 1px solid #223A40;
  border-bottom: 1px solid #223A40;
}
.p-faq__list .l-inner {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #223A40;
}

.error404 {
  background: white;
}

.error404__contents {
  padding: 195px 0 120px;
}
@media screen and (max-width: 600px) {
  .error404__contents {
    padding: 165px 0 100px;
  }
}

.error404__contents__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .error404__contents__title {
    margin-bottom: 50px;
  }
}
.error404__contents__title img {
  width: 450px;
  height: auto;
}
@media screen and (max-width: 600px) {
  .error404__contents__title img {
    width: 290px;
  }
}
.error404__contents__title span {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: bold;
  color: #253F75;
}

.error404__contents__text {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .error404__contents__text {
    margin-bottom: 53px;
  }
}

.error404 .c-button {
  display: flex;
  max-width: 300px;
  width: 100%;
  height: 77px;
  padding: 0 45px;
  margin: 0 auto;
  background-color: #4C74C4;
  border: 1px solid #4C74C4;
  border-radius: 100px;
  transition: 0.3s ease-out;
}
.error404 .c-button:hover {
  background-color: white;
}
.error404 .c-button:hover span {
  color: #4C74C4;
}
.error404 .c-button:hover svg {
  fill: #4C74C4;
}
.error404 .c-button:hover .hover {
  display: block;
}
.error404 .c-button:hover .nohover {
  display: none;
}
.error404 .c-button a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.error404 .c-button span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
}
.error404 .c-button span img {
  width: 17px;
  height: 17px;
}
.error404 .c-button span .hover {
  display: none;
}
.error404 .c-button span .nohover {
  display: block;
}
.error404 .c-button svg {
  fill: white;
  width: 21px;
  height: 8px;
}
@media screen and (max-width: 600px) {
  .error404 .c-button {
    max-width: unset;
    width: 100%;
    height: 57px;
    padding: 0 35px;
  }
  .error404 .c-button a {
    gap: 7px;
  }
  .error404 .c-button span {
    font-size: 1.8rem;
  }
  .error404 .c-button img {
    width: 17px;
    height: 17px;
  }
}

.p-thanks .p-contact__contents {
  padding-top: 210px;
}
@media screen and (max-width: 600px) {
  .p-thanks .p-contact__contents {
    padding-top: 165px;
  }
}

.p-thanks .c-sectionTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
}
@media screen and (max-width: 600px) {
  .p-thanks .c-sectionTitle {
    margin-bottom: 50px;
  }
}

.p-thanks .p-thanks__caption {
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .p-thanks .p-thanks__caption {
    margin-bottom: 50px;
  }
}

.p-thanks .c-button {
  max-width: 300px;
  width: 100%;
  margin: auto;
}

.p-thanks .c-button .c-icon {
  fill: white;
  transition: 0.3s ease-out;
}

.p-thanks .c-button span {
  display: flex;
  align-items: center;
  color: white;
}

.p-thanks .c-button .c-button__contents-deco {
  width: 15px;
  height: 15px;
}
.p-thanks .c-button .c-button__contents-deco img {
  width: 100%;
  height: auto;
}
.p-thanks .c-button .c-button__contents-deco .hover {
  display: none;
}
.p-thanks .c-button .c-button__contents-deco .nohover {
  display: block;
}

.p-thanks .c-button:hover .c-button__contents-deco .hover {
  display: block;
}
.p-thanks .c-button:hover .c-button__contents-deco .nohover {
  display: none;
}

.s-header {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px 20px 40px;
  background-color: white;
  z-index: 6;
  /* header */
  box-shadow: 0px 4px 17.5px rgba(76, 116, 196, 0.1);
  transition: 0.3s ease-out;
}
@media screen and (max-width: 600px) {
  .s-header {
    width: calc(100% - 30px);
    right: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 20px;
    padding: unset;
    height: 65px;
  }
}

.s-header__logo {
  width: 260px;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 600px) {
  .s-header__logo {
    width: 200px;
    margin-left: 25px;
  }
}
.s-header__logo:hover {
  opacity: 0.7 !important;
}

.s-header__navArea {
  display: flex;
  align-items: center;
  gap: 28px;
}

.s-header__nav {
  display: flex;
  align-items: center;
  gap: 20px;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 600px) {
  .s-header__nav {
    flex-direction: column;
    gap: 10px;
  }
}

.s-header__nav--right {
  position: relative;
  gap: unset;
}
.s-header__nav--right a {
  color: white;
  transition: 0.3s ease-out;
}

.s-header__navItem {
  position: relative;
}
.s-header__navItem a {
  display: flex;
  align-items: center;
  gap: 4px;
  transition: 0.3s ease-out;
}
.s-header__navItem a span {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  transition: 0.3s ease-out;
}
.s-header__navItem a svg {
  width: 13px;
  height: 13px;
  fill: white;
  transition: 0.3s ease-out;
}
.s-header__navItem a svg.arrow {
  width: 21px;
  height: 8px;
  fill: white;
  transform: scale(0.6);
}
.s-header__navItem:hover span {
  color: #4C74C4;
}
.s-header__navItem:hover .s-header__navItem-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.s-header__navItem:hover .s-header__navItem-sub span {
  color: #223A40;
}

.s-header__navItem--parent {
  position: relative;
  margin-right: 9px;
}
.s-header__navItem--parent:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: unset;
  right: -11px;
  width: 0;
  height: 0;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-top: 4px solid #4C74C4;
  border-bottom: 0;
  transition: 0.3s ease-out;
}
.s-header__navItem--parent:hover:before {
  transform: rotate(-180deg);
}

.s-header__navItem-sub {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  top: 100%;
  left: 0;
  width: -moz-max-content;
  width: max-content;
  z-index: 10;
  padding-top: 52px;
  transition: 0.3s ease-out;
}
.s-header__navItem-sub ul {
  width: 100%;
  background-color: white;
  padding: 30px;
  border-radius: 7px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.s-header__navItem-sub a {
  transition: 0.3s ease-out;
}
.s-header__navItem-sub a:hover {
  opacity: 0.7;
}
.s-header__navItem-sub a span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2E4174;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1;
}
.s-header__navItem-sub a span img {
  width: 14px;
  height: auto;
}

.s-header__navItem.s-header__navItem--button {
  min-width: 205px;
  width: 100%;
  border-radius: 3px;
  transition: 0.3s ease-out;
  border-radius: 100px;
}
.s-header__navItem.s-header__navItem--button a {
  width: 100%;
  height: 100%;
  padding: 11px 27px 11px 15px;
}
.s-header__navItem.s-header__navItem--button a span {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 1.4rem;
  color: white;
  transition: 0.3s ease-out;
}
.s-header__navItem.s-header__navItem--button a .c-icon.arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 9px;
  margin: auto;
}
.s-header__navItem.s-header__navItem--button a:hover {
  color: white;
  opacity: 1;
}
.s-header__navItem.s-header__navItem--button.member {
  background-color: #4C74C4;
  border: 1px solid #4C74C4;
  margin-right: 6px;
}
.s-header__navItem.s-header__navItem--button.member span .c-icon {
  width: 10px;
}
.s-header__navItem.s-header__navItem--button.member:hover {
  background-color: white;
}
.s-header__navItem.s-header__navItem--button.member:hover span {
  color: #4C74C4;
}
.s-header__navItem.s-header__navItem--button.member:hover svg {
  fill: #4C74C4;
}
.s-header__navItem.s-header__navItem--button.contact {
  margin-right: unset;
  background-color: #253F75;
  border: 1px solid #253F75;
}
.s-header__navItem.s-header__navItem--button.contact span .c-icon {
  width: 7px;
}
.s-header__navItem.s-header__navItem--button.contact:hover {
  background-color: white;
}
.s-header__navItem.s-header__navItem--button.contact:hover span {
  color: #253F75;
}
.s-header__navItem.s-header__navItem--button.contact:hover svg {
  fill: #253F75;
}

.s-header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background-color: #4C74C4;
  width: 65px;
  height: 65px;
}

.s-header__hamburger span {
  background-color: white;
  width: 25px;
  height: 2px;
  transition: 0.3s ease-out;
}

.s-header__hamburger span:nth-of-type(2) {
  background-color: white;
  width: 25px;
  height: 2px;
}

.s-header__hamburger span:nth-of-type(3) {
  background-color: white;
  width: 25px;
  height: 2px;
}

.s-header__hamburger.is-active span:nth-of-type(1) {
  transform: translateY(7px) rotate(45deg);
}
.s-header__hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.s-header__hamburger.is-active span:nth-of-type(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.s-header__humbergerMenu {
  position: fixed;
  top: 0;
  left: 100vw;
  width: 100%;
  height: 100dvh;
  box-sizing: border-box;
  background-color: #253F75;
  opacity: 0;
  transition: 0.3s ease-out;
  overflow-y: auto;
  padding: 100px 40px;
  overscroll-behavior-y: contain;
}
.s-header__humbergerMenu.is-active {
  left: 0;
  opacity: 1;
  z-index: 5;
}

.s-header__humbergerMenuInner {
  display: flex;
  align-items: center;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
}

.s-header__humbergerMenuNav {
  width: 100%;
  border-top: 1px solid white;
}

.s-header__humbergerMenuNavItem {
  padding: 20px 0;
  border-bottom: 1px solid white;
}
.s-header__humbergerMenuNavItem a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.s-header__humbergerMenuNavItem a img {
  width: 14px;
  height: 14px;
}
.s-header__humbergerMenuNavItem a span {
  color: white;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
}

.s-footer {
  padding: 80px 0;
  color: #fff;
  background-color: #253F75;
}

.s-footer .l-inner {
  width: calc(100% - 160px);
}
@media screen and (max-width: 600px) {
  .s-footer .l-inner {
    width: 100%;
  }
}

.s-footer__sitemap-title {
  font-size: 1.4rem;
  font-family: "Montserrat Alternates";
  font-weight: bold;
  color: #fff;
  opacity: 0.4;
  margin-bottom: 30px;
}

.s-footer__sitemap-linkArea {
  max-width: 855px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}
@media screen and (max-width: 600px) {
  .s-footer__sitemap-linkArea {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 60px;
  }
}

.s-footer__sitemap-linkBlock {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.s-footer__sitemap-linkParts {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s-footer__sitemap-linkParts .main {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  transition: 0.3s ease-out;
}
.s-footer__sitemap-linkParts .main:hover {
  opacity: 0.7;
}
.s-footer__sitemap-linkParts .main img {
  width: 15px;
  height: 15px;
}

.s-footer__sitemap-linkParts .sub {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.s-footer__sitemap-linkParts .sub li {
  display: flex;
}
.s-footer__sitemap-linkParts .sub a {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  opacity: 0.7;
  text-decoration: underline;
}

.s-footer__copyrightArea {
  position: relative;
  display: flex;
  align-items: center;
  gap: 115px;
  font-family: "Montserrat Alternates";
  font-size: 1.2rem;
  font-weight: 600;
  opacity: 0.7;
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.s-footer__copyrightArea::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: url(../../assets/images/common/border-footer.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 600px) {
  .s-footer__copyrightArea::after {
    background-size: contain;
  }
}
@media screen and (max-width: 600px) {
  .s-footer__copyrightArea {
    align-items: unset;
    flex-direction: column;
    gap: 60px;
  }
}

.s-footer__copyrightArea .pageTop {
  position: absolute;
  top: 0;
  right: 0;
  color: #4C74C4;
}
.s-footer__copyrightArea .pageTop p {
  font-size: 1.2rem;
  line-height: 1;
}
.s-footer__copyrightArea .pageTop p span {
  font-size: 1.8rem;
}
@media screen and (max-width: 600px) {
  .s-footer__copyrightArea .pageTop {
    position: unset;
    text-align: right;
  }
}

.s-footer__logoArea {
  display: flex;
  align-items: end;
  gap: 30px;
}
.s-footer__logoArea img {
  width: 408px;
  height: auto;
}
.s-footer__logoArea span {
  line-height: 1.2;
  opacity: 0.7;
  font-family: "Montserrat";
}
@media screen and (max-width: 600px) {
  .s-footer__logoArea {
    flex-direction: column;
    align-items: start;
    gap: 1em;
  }
}

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

@media screen and (max-width: 600px) {
  .u-pc {
    display: none;
  }
}

.u-mt05 {
  margin-top: 0.5em;
}

.u-mb05 {
  margin-bottom: 0.5em;
}

.u-pt05 {
  padding-top: 0.5em;
}

.u-pb05 {
  padding-bottom: 0.5em;
}

.u-mt1 {
  margin-top: 1em;
}

.u-mb1 {
  margin-bottom: 1em;
}

.u-pt1 {
  padding-top: 1em;
}

.u-pb1 {
  padding-bottom: 1em;
}

.u-mt2 {
  margin-top: 2em;
}

.u-mb2 {
  margin-bottom: 2em;
}

.u-pt2 {
  padding-top: 2em;
}

.u-pb2 {
  padding-bottom: 2em;
}

.u-mt3 {
  margin-top: 3em;
}

.u-mb3 {
  margin-bottom: 3em;
}

.u-pt3 {
  padding-top: 3em;
}

.u-pb3 {
  padding-bottom: 3em;
}

.u-mt4 {
  margin-top: 4em;
}

.u-mb4 {
  margin-bottom: 4em;
}

.u-pt4 {
  padding-top: 4em;
}

.u-pb4 {
  padding-bottom: 4em;
}

.u-mt5 {
  margin-top: 5em;
}

.u-mb5 {
  margin-bottom: 5em;
}

.u-pt5 {
  padding-top: 5em;
}

.u-pb5 {
  padding-bottom: 5em;
}

.u-white {
  color: #fff;
  fill: #fff;
}
.u-white * {
  color: #fff;
  fill: #fff;
}

.u-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.u-right {
  text-align: right;
  margin-left: auto;
}

.u-left {
  text-align: left;
  margin-right: auto;
}

@media screen and (min-width: 601px) {
  .u-sp {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .u-pc {
    display: none !important;
  }
}