@charset "UTF-8";
/* リキッドレイアウト対応 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif;
}

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

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}

@media (max-width: 375px) {
  html {
    font-size: clamp(14px, 4.2666666667vw, 16px);
  }
}
html {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  html {
    font-size: clamp(14px, 1.4814814815vw, 16px);
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  a:focus-visible {
    opacity: 0.7;
  }
  a:hover {
    opacity: 0.7;
  }
}

/*header 高さ*/

@media (max-width: 768px) {
  :root {
    --header-height: 50px;
  }
}
/*スムーススクロール*/
html {
  scroll-behavior: smooth;
}

:target {
  scroll-margin-top: 80px;
}

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

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

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

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

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

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

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

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

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

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

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

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  cursor: pointer;
}

.breadcrumb__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  padding: 8px 16px;
  list-style: none;
}

.breadcrumb__item {
  color: #222;
  font-size: 14px;
  line-height: 1;
}

.breadcrumb__item a {
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: color;
  transition-property: color;
}

.breadcrumb__item a:focus-visible {
  color: #315EB2;
}

@media (any-hover: hover) {
  .breadcrumb__item a:hover {
    color: #27B9E8;
  }
}
.breadcrumb__item + .breadcrumb__item {
  position: relative;
  padding-left: 18px;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 2px solid #4184C5;
  border-right: 2px solid #4184C5;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

@media screen and (max-width: 768px) {
  .breadcrumb__item {
    font-size: 12px;
  }
}
.fade-left {
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease;
  transition: opacity 0.8s ease, transform 0.8s ease, -webkit-transform 0.8s ease;
}

.fade-left.is-show {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

#global-nav {
  width: 100%;
  height: 100svh;
  color: #222;
  position: fixed;
  top: 0;
  right: -120%;
  z-index: 999;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  overflow: auto;
  background-color: #fff;
}

#global-nav.panelactive {
  right: 0;
}

#global-nav .gnav__items {
  width: 100%;
  padding: 20px;
  padding-top: 110px;
  padding-top: 6.875rem;
}

#global-nav .gnav__item {
  list-style: none;
}

#global-nav .gnav__item a {
  display: block;
  font-size: 15px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.5;
  color: #4184C5;
  text-decoration: none;
  padding: 16px 10px 16px 40px;
  width: 100%;
  border-bottom: 0.5px solid #ebe7e7;
  position: relative;
}

#global-nav .gnav__item a::before {
  content: "";
  display: block;
  position: absolute;
  left: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(./../images/common/arrow-spmenu.svg) no-repeat center center/contain;
  width: 12px;
  height: 24px;
}

.gnav__item-contact {
  margin-left: 40px;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (max-width: 350px) {
  .gnav__item-contact {
    margin-left: 20px;
    margin-right: 20px;
  }
}

.gnav__contactbtn {
  width: 200px;
  width: 12.5rem;
  height: 48px;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 10px;
  color: #fff;
  background: linear-gradient(118.37deg, #44BEE5 0%, #315EB2 71.61%);
  border-radius: 4px;
  position: relative;
}

.gnav__contactbtn::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 20px;
  background: url(./../images/common/iconmail_w.svg) no-repeat center center/contain;
  width: 20px;
  height: 16px;
}

.hamburger {
  display: none;
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
}
@media screen and (max-width: 1024px) {
  .hamburger {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 9999;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    color: #fff;
    background: linear-gradient(118.37deg, #44BEE5 0%, #315EB2 71.61%);
  }
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 50px;
    height: 50px;
  }
}

.hamburger__line {
  position: relative;
  top: 24px;
  width: 48px;
  height: 1px;
  background-color: #fff;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .hamburger__line {
    top: 14px;
    width: 32px;
  }
}
.hamburger__line::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 768px) {
  .hamburger__line::before {
    top: 10px;
  }
}
.hamburger[aria-expanded=true] .hamburger__line {
  -webkit-transform: translateY(6px) rotate(-20deg);
          transform: translateY(6px) rotate(-20deg);
}

.hamburger[aria-expanded=true] .hamburger__line::before {
  top: 5px;
  -webkit-transform: translateY(-5px) rotate(40deg);
          transform: translateY(-5px) rotate(40deg);
}

@media screen and (max-width: 1024px) {
  .hamburger::after {
    content: "MENU";
    font-size: 14px;
    position: absolute;
    bottom: 10px;
    color: #fff;
    font-weight: 400;
    font-family: "Roboto", sans-serif;
  }
}
@media screen and (max-width: 768px) {
  .hamburger::after {
    font-size: 12px;
    bottom: 2px;
  }
}

@media screen and (max-width: 1024px) {
  .hamburger[aria-expanded=true]::after {
    content: "CLOSE";
  }
}

.hamburger__visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}

.inner {
  max-width: 1080px;
  width: 100%;
  margin-inline: auto;
}
@media (max-width: 1130px) {
  .inner {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 600px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.inner-s {
  max-width: 880px;
  width: 100%;
  margin-inline: auto;
}
@media (max-width: 930px) {
  .inner-s {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 768px) {
  .inner-s {
    max-width: 600px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.l-footer {
  width: 100%;
  background: #F6F8FA;
  padding: 64px 25px 8px;
  padding: 4rem 25px 8px;
  position: relative;
}

.l-footer::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(118.37deg, #44BEE5 0%, #315EB2 71.61%);
}

.l-footer__inner {
  max-width: 1187px;
  width: 100%;
  margin-right: 46px;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 1441px) {
  .l-footer__inner {
    max-width: 100%;
    margin-left: 0;
    margin-left: initial;
    padding-left: 11.25rem;
    padding-right: 7.5rem;
  }
}
.l-footer__info {
  width: 50%;
}

.l-footer__logo {
  display: block;
  font-size: 24px;
  font-size: 1.5rem;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  position: relative;
  padding-left: 46px;
  letter-spacing: 0.05em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
@media screen and (max-width: 768px) {
  .l-footer__logo {
    font-size: 16px;
    padding-left: 24px;
  }
}

.l-footer__logo:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .l-footer__logo:hover {
    opacity: 0.7;
  }
}
.l-footer__logo::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: url(../images/common/logo.svg) no-repeat center center/contain;
  width: 30px;
  height: 32px;
}
@media screen and (max-width: 768px) {
  .l-footer__logo::before {
    width: 20px;
    height: 20px;
  }
}

.l-footer__address {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.l-footer__address-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  line-height: 1.55;
  color: #222;
}

.l-footer__office {
  width: 80px;
  font-weight: 700;
  margin-right: 32px;
  margin-right: 2rem;
}

.l-footer__address-row p {
  line-height: 1.5;
}

.l-footer__nav {
  margin-left: auto;
}

.l-footer__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}

@media screen and (max-width: 1200px) {
  .l-footer__nav {
    margin-left: 0;
    width: 40%;
  }
  .l-footer__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}
@media screen and (max-width: 1000px) {
  .l-footer__nav {
    display: none;
  }
  .l-footer__info {
    width: 100%;
  }
}
.l-footer__nav a,
.l-footer__privacy {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: color;
  transition-property: color;
}
@media screen and (max-width: 768px) {
  .l-footer__nav a,
  .l-footer__privacy {
    font-size: 14px;
  }
}

.l-footer__nav a:focus-visible,
.l-footer__privacy:focus-visible {
  color: #315EB2;
}

@media (any-hover: hover) {
  .l-footer__nav a:hover,
  .l-footer__privacy:hover {
    color: #315EB2;
  }
}
.l-footer__bottom {
  text-align: right;
}

.l-footer__privacy {
  margin-top: 40px;
  margin-top: 2.5rem;
  display: inline-block;
}

.l-footer__copy {
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
  color: #222;
  font-size: 13px;
}

@media screen and (max-width: 768px) {
  .l-footer {
    padding: 3.5rem 20px 8px;
  }
  .l-footer__inner {
    margin-right: 0;
    margin-right: initial;
    margin-left: 0;
    margin-left: initial;
  }
  .l-footer__info {
    width: 100%;
  }
  .l-footer__address {
    margin-top: 24px;
  }
  .l-footer__address-row {
    display: block;
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.65;
  }
  .l-footer__office {
    width: auto;
    width: initial;
    font-size: 14px;
  }
  .l-footer__nav {
    display: none;
  }
  .l-footer__bottom {
    text-align: left;
    padding-left: 0;
  }
  .l-footer__privacy {
    margin-top: 80px;
    font-size: 14px;
    font-weight: 700;
  }
  .l-footer__copy {
    margin-top: 56px;
    font-size: 12px;
  }
}
.l-header {
  width: 100%;
  height: 80px;
  background: rgba(255, 255, 255, .8);
  position: fixed;
  z-index: 10;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  margin-inline: auto;
  padding-left: 56px;
}

.l-header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.l-header__logo a {
  display: block;
  font-size: 24px;
  color: #222;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  padding-left: 46px;
  letter-spacing: 0.05em;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.l-header__logo a:focus-visible {
  opacity: 0.7;
}

@media (any-hover: hover) {
  .l-header__logo a:hover {
    opacity: 0.7;
  }
}
.l-header__logo a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  background: url(../images/common/logo.svg) no-repeat center center/contain;
  width: 30px;
  height: 32px;
}

.l-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.l-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none;
}

.l-header__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.l-header__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 92px;
  margin-right: 40px;
  margin-right: 2.5rem;
  color: #222;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: color, -webkit-transform;
  transition-property: color, -webkit-transform;
  transition-property: color, transform;
  transition-property: color, transform, -webkit-transform;
}

.l-header__list a:focus-visible {
  color: #315EB2;
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
}

@media (any-hover: hover) {
  .l-header__list a:hover {
    color: #315EB2;
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
@media screen and (max-width: 1200px) {
  .l-header__list a {
    margin-right: 2rem;
  }
}
.l-header__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 192px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  background: linear-gradient(135deg, #43b9dc 0%, #2861bd 100%);
  position: relative;
  z-index: 9999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}

.l-header__contact:focus-visible {
  background: linear-gradient(135deg, #43b9dc 0%, #43b9dc 100%);
}

@media (any-hover: hover) {
  .l-header__contact:hover {
    background: linear-gradient(135deg, #43b9dc 0%, #43b9dc 100%);
  }
}
@media screen and (min-width: 1920px) {
  .l-header__contact {
    width: 240px;
  }
}
.l-header__contact span {
  display: inline-block;
  width: 28px;
  height: 20px;
  margin-right: 8px;
  margin-right: 0.5rem;
}

@media screen and (max-width: 1024px) {
  .l-header__nav {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 50px;
  }
  .l-header__inner {
    padding-left: 20px;
  }
  .l-header__logo a {
    font-size: 16px;
    padding-left: 23px;
  }
  .l-header__logo a::before {
    width: 19px;
    height: 20px;
  }
  .l-header__menu {
    width: 50px;
    height: 50px;
  }
}
.line-title {
  font-weight: 700;
  color: #222;
  padding-left: 16px;
  font-size: 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .line-title {
    padding-left: 16px;
    font-size: 16px;
  }
}

.line-title::before {
  content: "";
  display: block;
  width: 5px;
  height: 22px;
  background-color: #315EB2;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .line-title::before {
    height: 20px;
  }
}

.pagetop {
  width: 56px;
  width: 3.5rem;
  aspect-ratio: 1;
  position: fixed;
  bottom: 136px;
  right: 64px;
  background-color: #315EB2;
  border-radius: 4px;
  border: 0.5px solid #fff;
  z-index: 5;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: background-color;
  transition-property: background-color;
}

.pagetop:focus-visible {
  background-color: #27B9E8;
}

@media (any-hover: hover) {
  .pagetop:hover {
    background-color: #27B9E8;
  }
}
@media screen and (max-width: 768px) {
  .pagetop {
    bottom: 72px;
    right: 20px;
    width: 40px;
  }
}
.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.pagetop a::before {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  background: url(./../images/common/arrow-pagetop.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: top;
  transition-property: top;
}

@media screen and (max-width: 768px) {
  .pagetop a::before {
    width: 20px;
  }
}
.pagetop a:focus-visible::before {
  top: 40%;
}

@media (any-hover: hover) {
  .pagetop a:hover::before {
    top: 40%;
  }
}
/* レスポンシブ対応 */
.res500-b {
  display: none;
}

@media screen and (max-width: 500px) {
  .res500-b {
    display: block;
  }
}
.sub-ttl-en {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  color: #27B9E8;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .sub-ttl-en {
    font-size: 12px;
  }
}

.sub-ttl-h2 {
  color: #315EB2;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .sub-ttl-h2 {
    font-size: 20px;
  }
}

.text {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .text {
    font-size: 14px;
  }
}

.p-about {
  margin-top: 120px;
  margin-top: 7.5rem;
  padding-bottom: 104px;
  padding-bottom: 6.5rem;
  position: relative;
}

.p-about::before {
  content: "";
  display: block;
  position: absolute;
  top: 120px;
  right: 0;
  width: 53.19%;
  height: 447px;
  background-image: url("../images/common/about-bg.png");
  background-image: url("../images/common/about-bg.png");
  background-image: url("../images/common/about-bg.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  z-index: -1;
  /* アニメーション用 */
  opacity: 0;
  -webkit-transform: translateY(30px) scale(1.05);
          transform: translateY(30px) scale(1.05);
  -webkit-transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, -webkit-transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition: opacity 1.2s ease, transform 1.2s ease, -webkit-transform 1.2s ease;
}

.p-about.is-inview::before {
  opacity: 1;
  -webkit-transform: translateY(0) scale(1);
          transform: translateY(0) scale(1);
}

@media screen and (min-width: 1920px) {
  .p-about::before {
    width: 800px;
    height: 500px;
    right: calc(50% - 720px);
  }
}
.p-about__inner {
  max-width: 930px;
  width: 100%;
  padding-left: 25px;
  padding-right: 25px;
  margin-inline: auto;
  z-index: 1;
}

.p-about__content {
  position: relative;
  z-index: 2;
  width: 480px;
  padding-top: 80px;
  color: #fff;
}

.p-about__en {
  color: #27B9E8;
  font-size: 12px;
  font-weight: 400;
  padding-left: 8px;
  font-family: "Roboto", sans-serif;
  position: relative;
}

.p-about__en::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #27B9E8;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.p-about__title {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-about__text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 2;
  margin-top: 16px;
  margin-top: 1rem;
}

.p-about__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 240px;
  height: 48px;
  margin-top: 32px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  background: #27B9E8;
  padding-right: 16px;
  border-radius: 4px;
  position: relative;
}

.p-about__btn::before {
  content: "";
  display: block;
  width: 24px;
  height: 4px;
  background: url(../images/common/arrow_long_w.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.p-about__btn:focus-visible::before {
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
}

@media (any-hover: hover) {
  .p-about__btn:hover::before {
    -webkit-transform: translate(5px, -50%);
            transform: translate(5px, -50%);
  }
}
.p-about__btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #315EB2;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}

.p-about__btn:focus-visible::after {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

@media (any-hover: hover) {
  .p-about__btn:hover::after {
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@media screen and (max-width: 768px) {
  .p-about {
    margin-top: 1.5rem;
    padding-bottom: 8.5rem;
  }
  .p-about::before {
    top: 300px;
    width: 60%;
    height: 240px;
    background-image: url("../images/common/sp/sp-about-bg.png");
    background-image: url("../images/common/sp/sp-about-bg.png");
    background-image: url("../images/common/sp/sp-about-bg.png");
  }
  .p-about__content {
    width: 80%;
  }
  .p-about__en {
    font-size: 12px;
  }
  .p-about__title {
    font-size: 20px;
    line-height: 1.25;
    letter-spacing: 0.05em;
  }
  .p-about__text {
    margin-top: 1rem;
    line-height: 1.8;
  }
  .p-about__btn {
    width: 200px;
    height: 40px;
    margin-top: 1.5rem;
    font-size: 14px;
    letter-spacing: 0.05em;
    border-radius: 8px;
  }
  .p-about__btn::before {
    width: 18px;
  }
}
@media screen and (max-width: 400px) {
  .p-about::before {
    max-width: none;
    max-width: initial;
    width: 89.6%;
    height: 196px;
    top: 300px;
  }
  .p-about__content {
    width: 100%;
    padding-top: 40px;
  }
}
.p-fv {
  position: relative;
  width: 100%;
  margin-inline: auto;
  height: 100vh;
  padding-top: 80px;
}

.p-fv::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(100% + 158px);
  background: url(../images/common/Rectangle52-80.png);
  opacity: 0.15;
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
}

.p-fv::after {
  content: "";
  position: absolute;
  left: 0;
  top: 68%;
  width: 100%;
  min-height: max(780px, 78%);
  background: linear-gradient(135deg, #40bddc 0%, #2d5fc0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 86% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0%, 86% 100%, 0 100%);
  z-index: -1;
}

@media screen and (min-width: 1366px) {
  .p-fv::after {
    height: 80%;
  }
}
@media screen and (min-width: 2000px) {
  .p-fv::after {
    height: 70%;
  }
}
.p-fv__inner {
  position: relative;
  max-width: 2000px;
  height: inherit;
  margin: 0 auto;
}

.p-fv__slide {
  width: 100%;
  height: inherit;
}

.p-fv__slideItem {
  width: 100%;
  height: inherit;
  position: absolute;
  top: 0;
  opacity: 0;
  -webkit-animation: fade 20s infinite;
          animation: fade 20s infinite;
}

.p-fv__picture {
  display: block;
  width: 86%;
  height: inherit;
  margin-left: auto;
  -webkit-clip-path: polygon(0 0, 100% 0%, 100% 100%, 24% 100%);
          clip-path: polygon(0 0, 100% 0%, 100% 100%, 24% 100%);
  position: relative;
}

@media screen and (max-width: 1024px) {
  .p-fv__picture {
    width: 100%;
  }
}
.p-fv__picture ::before {
  padding-top: 64.4122%;
  display: block;
  content: "";
}

.p-fv__picture img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  z-index: 1;
}

.p-fv__slide li:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.p-fv__slide li:nth-child(2) {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

.p-fv__slide li:nth-child(3) {
  -webkit-animation-delay: 10s;
          animation-delay: 10s;
}

.p-fv__slide li:nth-child(4) {
  -webkit-animation-delay: 15s;
          animation-delay: 15s;
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.p-fv__copy {
  position: absolute;
  left: 9%;
  bottom: 20%;
  z-index: 3;
}

.p-fv__copy p {
  margin: 0;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.75;
  letter-spacing: 0.05em;
  color: #222222;
}

@media screen and (min-width: 1920px) {
  .p-fv__copy p {
    font-size: 2.0833333333vw;
  }
}
.p-fv__copy span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 16px;
  background: #fff;
}

.p-fv__copy strong {
  color: #315eb2;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .p-fv {
    padding-top: 0;
  }
  .p-fv__inner {
    width: 100%;
    margin: 0 auto;
  }
  .p-fv::before {
    top: 100%;
    height: 4.5rem;
    background: url(../images/common/Rectangle52-50.png);
  }
  .p-fv::after {
    min-height: 0;
    min-height: initial;
    top: 100%;
    height: 400px;
  }
  .p-fv__picture {
    width: 100%;
    margin-left: 0;
    margin-left: initial;
    -webkit-clip-path: none;
            clip-path: none;
  }
  .p-fv__picture::after {
    display: none;
  }
  .p-fv__picture img {
    width: 100%;
  }
  .p-fv__copy {
    left: 25px;
    bottom: 80px;
  }
  .p-fv__copy p {
    font-size: clamp(20px, 6.4vw, 26px);
    line-height: 1.5;
    letter-spacing: 0.05em;
  }
  .p-fv__copy span {
    padding: 8px;
    margin-top: 0.5rem;
  }
}
.p-service {
  padding-top: 136px;
  padding-top: 8.5rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  position: relative;
}

.p-service::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/common/Rectangle52-80.png);
  opacity: 0.15;
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -3;
}
@media screen and (max-width: 768px) {
  .p-service::before {
    background: url(../images/common/Rectangle52-50.png);
  }
}

.p-service__en {
  color: #27B9E8;
  font-size: 12px;
  font-weight: 400;
  padding-left: 8px;
  font-family: "Roboto", sans-serif;
  position: relative;
}

.p-service__en::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background-color: #27B9E8;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.p-service__title {
  display: inline-block;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(118.37deg, #44BEE5 0%, #315EB2 71.61%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.p-service__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 32px;
  margin-top: 2rem;
}

.p-service-card {
  width: 40.74%;
  pointer-events: none;
}

.p-service-card__picture {
  overflow: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-service-card__picture img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.p-service-card:focus-visible .p-service-card__picture img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

@media (any-hover: hover) {
  .p-service-card:hover .p-service-card__picture img {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}
.p-service-card--02 {
  margin-top: 108px;
  margin-top: 6.75rem;
}

.p-service-card__head {
  position: relative;
}

.p-service-card__num {
  display: inline-block;
  background: linear-gradient(118.37deg, #44BEE5 0%, #315EB2 71.61%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 14px;
  font-weight: 700;
  position: relative;
}

.p-service-card__num::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -40px;
  width: 36px;
  height: 0.5px;
  background: #315EB2;
}

.p-service-card__title {
  color: #315EB2;
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.p-service-card__text {
  color: #222;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.p-service-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  color: #4184C5;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 16px;
  margin-top: 1rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: color;
  transition-property: color;
  pointer-events: auto;
}

.p-service-card__link:focus-visible {
  color: #27B9E8;
}

@media (any-hover: hover) {
  .p-service-card__link:hover {
    color: #27B9E8;
  }
}
.p-service-card__link span {
  display: inline-block;
  width: 24px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #315EB2;
  margin-left: 16px;
  margin-left: 1rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: background-color;
  transition-property: background-color;
}

.p-service-card__link:focus-visible span {
  background-color: #27B9E8;
}

@media (any-hover: hover) {
  .p-service-card__link:hover span {
    background: #27B9E8;
  }
}
.p-service-card__link span::after {
  content: "";
  display: block;
  width: 12px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  background: url(../images/common/arrow-w-s.svg) no-repeat center center/contain;
}

.p-service-card__link:focus-visible span::after {
  -webkit-transform: translate(calc(-50% + 1px), -50%);
          transform: translate(calc(-50% + 1px), -50%);
}

@media (any-hover: hover) {
  .p-service-card__link:hover span::after {
    -webkit-transform: translate(calc(-50% + 1px), -50%);
            transform: translate(calc(-50% + 1px), -50%);
  }
}
.p-service-card__picture {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
  position: relative;
}

.p-service-card__picture::before {
  content: "";
  display: block;
  padding-top: 77.2727%;
}

.p-service-card__picture img {
  position: absolute;
  inset: 0;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
}

.p-service__btn-wrap {
  margin-top: 48px;
  margin-top: 3rem;
  text-align: center;
}

.p-service__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 280px;
  width: 17.5rem;
  height: 48px;
  height: 3rem;
  color: #fff;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: #315EB2;
  padding-right: 16px;
  border-radius: 4px;
  position: relative;
}

.p-service__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 20px;
  width: 24px;
  height: 5px;
  background: url(../images/common/arrow_long_w.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.p-service__btn:focus-visible::before {
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
}

@media (any-hover: hover) {
  .p-service__btn:hover::before {
    -webkit-transform: translate(5px, -50%);
            transform: translate(5px, -50%);
  }
}
.p-service__btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #27B9E8;
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}

.p-service__btn:focus-visible::after {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}

@media (any-hover: hover) {
  .p-service__btn:hover::after {
    -webkit-transform-origin: 0% 50%;
            transform-origin: 0% 50%;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@media screen and (max-width: 768px) {
  .p-service {
    padding-top: 13.5rem;
    padding-bottom: 4.5rem;
  }
  .p-service__title {
    font-size: 24px;
  }
  .p-service__items {
    display: block;
    margin-top: 2.5rem;
  }
  .p-service-card {
    width: 100%;
  }
  .p-service-card--02 {
    margin-top: 3.5rem;
  }
  .p-service-card__num {
    font-size: 11px;
  }
  .p-service-card__num::after {
    width: 24px;
  }
  .p-service-card__title {
    font-size: 18px;
  }
  .p-service-card__text {
    font-size: 14px;
    line-height: 1.5;
  }
  .p-service-card__link {
    font-size: 14px;
    margin-top: 0.5rem;
  }
  .p-service-card__link span {
    width: 20px;
  }
  .p-service-card__link span::after {
    width: 10px;
  }
  .p-service-card__picture {
    width: 100%;
  }
  .p-service-card__picture::before {
    padding-top: 71.6417%;
  }
  .p-service__btn-wrap {
    margin-top: 4.4rem;
  }
  .p-service__btn {
    width: 252px;
    height: 40px;
    font-size: 14px;
    border-radius: 4px;
  }
}
.p-top-cta {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  position: relative;
}

.p-top-cta::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95.1deg, rgba(21, 90, 168, .5625) 0.52%, rgba(21, 90, 168, .5625) 68.43%), url(../images/common/base_rec_contact.jpg) no-repeat center center/cover;
  z-index: -1;
}

.p-top-cta__inner {
  max-width: 1074px;
  width: 100%;
  padding: 0 25px;
  margin-inline: auto;
}

.p-top-cta__recruit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 40px 72px;
  padding: 2.5rem 4.5rem;
  background: #fff;
  border-radius: 32px;
}
@media screen and (max-width: 1024px) {
  .p-top-cta__recruit {
    padding: 2.5rem 2.5rem;
  }
}

.p-top-cta__recruit-title,
.p-top-cta__contact-title,
.p-top-cta__contact-title--tel {
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-top-cta__recruit-title {
  color: #315EB2;
  font-size: 28px;
  font-size: 1.75rem;
}

.p-top-cta__contact-title {
  color: #fff;
  font-size: 28px;
  font-size: 1.75rem;
}

.p-top-cta__contact-title--tel {
  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
}

.p-top-cta__recruit-title span,
.p-top-cta__contact-title span {
  margin-left: 7px;
  font-size: 13px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
  letter-spacing: initial;
}

.p-top-cta__text {
  margin-top: 24px;
  margin-top: 1.5rem;
  color: #222;
  font-size: 16px;
  line-height: 1.8;
}

.p-top-cta__recruit-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #315EB2;
  font-size: 15px;
  font-weight: 700;
  max-width: 200px;
  max-width: 12.5rem;
  width: 100%;
  margin-left: 48px;
  margin-left: 3rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: color;
  transition-property: color;
}

.p-top-cta__recruit-link:focus-visible {
  color: #4184C5;
}

@media (any-hover: hover) {
  .p-top-cta__recruit-link:hover {
    color: #4184C5;
  }
}
.p-top-cta__recruit-link span {
  display: inline-block;
  width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #315EB2;
  margin-left: 16px;
  margin-left: 1rem;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: background-color;
  transition-property: background-color;
}

.p-top-cta__recruit-link:focus-visible span {
  background-color: #4184C5;
}

@media (any-hover: hover) {
  .p-top-cta__recruit-link:hover span {
    background-color: #4184C5;
  }
}
.p-top-cta__recruit-link span::after {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../images/common/arrow-w-s.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.p-top-cta__recruit-link:focus-visible span::after {
  -webkit-transform: translate(calc(-50% + 3px), -50%);
          transform: translate(calc(-50% + 3px), -50%);
}

@media (any-hover: hover) {
  .p-top-cta__recruit-link:hover span::after {
    -webkit-transform: translate(calc(-50% + 3px), -50%);
            transform: translate(calc(-50% + 3px), -50%);
  }
}
.p-top-cta__contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  margin-top: 2.5rem;
  padding: 40px 72px;
  padding: 2.5rem 4.5rem;
  color: #fff;
  background: #315EB2;
  border-radius: 32px;
}
@media screen and (max-width: 1024px) {
  .p-top-cta__contact {
    padding: 2.5rem 2.5rem;
  }
}

.p-top-cta__contact-left {
  width: 50%;
  padding-top: 34px;
  padding-top: 2.125rem;
}

.p-top-cta__contact-left--tel {
  width: 50%;
  padding-top: 32px;
  padding-top: 2rem;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.p-top-cta__contact-right {
  width: 50%;
  padding-left: 8%;
  border-left: 1px solid rgb(255, 255, 255);
}
@media screen and (max-width: 1024px) {
  .p-top-cta__contact-right {
    padding-left: 2rem;
  }
}

.p-top-cta__contact-right--tel {
  padding-top: 32px;
  padding-top: 2rem;
  width: 50%;
  padding-left: 8%;
  border-left: 1px solid rgb(255, 255, 255);
}
@media screen and (max-width: 1024px) {
  .p-top-cta__contact-right--tel {
    padding-left: 2rem;
  }
}

.p-top-cta__contact-text {
  margin-top: 32px;
  margin-top: 2rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: 400;
}

.p-top-cta__tel {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 32px;
  padding-left: 2rem;
  display: block;
  position: relative;
}

.p-top-cta__tel::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}

.p-top-cta__tel:nth-child(1):before {
  width: 20px;
  height: 25px;
  background: url(../images/common/icon_tel.svg) no-repeat center center/contain;
}

.p-top-cta__tel:nth-child(2):before {
  width: 20px;
  height: 25px;
  background: url(../images/common/icon_sp.svg) no-repeat center center/contain;
}

.p-top-cta__tel + .p-top-cta__tel {
  margin-top: 16px;
  margin-top: 1rem;
}

.p-top-cta__tel img {
  width: 18px;
  height: auto;
}

.p-top-cta__time {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
}

.p-top-cta__mail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 324px;
  max-width: 20.25rem;
  width: 100%;
  height: 54px;
  height: 3.375rem;
  margin-top: 16px;
  margin-top: 1rem;
  color: #315EB2;
  font-size: 16px;
  font-size: 1rem;
  padding-left: 16px;
  padding-left: 1rem;
  font-weight: 700;
  background-color: #fff;
  border-radius: 4px;
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: color, background-color, border;
  transition-property: color, background-color, border;
}

.p-top-cta__mail:focus-visible {
  color: #fff;
  background-color: #315EB2;
  border: 1px solid #fff;
}

@media (any-hover: hover) {
  .p-top-cta__mail:hover {
    color: #fff;
    background-color: #315EB2;
    border: 1px solid #fff;
  }
}
.p-top-cta__mail::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 48px;
  width: 23px;
  height: 18px;
  background: url(../images/common/icon_mail_b.svg) no-repeat center center/contain;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}

.p-top-cta__mail:focus-visible::before {
  background: url(../images/common/icon_cta_mail_w.svg) no-repeat center center/contain;
}

@media (any-hover: hover) {
  .p-top-cta__mail:hover::before {
    background: url(../images/common/icon_cta_mail_w.svg) no-repeat center center/contain;
  }
}
@media screen and (max-width: 820px) {
  .p-top-cta__mail::before {
    left: 32px;
  }
}
@media screen and (max-width: 768px) {
  .p-top-cta {
    padding: 4.5rem 0 3.5rem 0;
  }
  .p-top-cta__inner {
    max-width: 37.5rem;
  }
  .p-top-cta__recruit {
    display: block;
    padding: 3rem 2rem;
    border-radius: 24px;
  }
  .p-top-cta__title,
  .p-top-cta__contact-title {
    font-size: 24px;
  }
  .p-top-cta__title span,
  .p-top-cta__contact-title span {
    font-size: 12px;
  }
  .p-top-cta__text {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.8;
  }
  .p-top-cta__recruit-link {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
    margin-top: 16px;
    font-size: 14px;
    margin-left: 0;
    max-width: none;
    max-width: initial;
  }
  .p-top-cta__recruit-link span {
    width: 32px;
  }
  .p-top-cta__recruit-link span::after {
    width: 14px;
  }
  .p-top-cta__contact {
    display: block;
    margin-top: 2.5rem;
    padding: 3rem 2rem;
    border-radius: 24px;
  }
  .p-top-cta__contact-left,
  .p-top-cta__contact-left--tel {
    width: auto;
    padding-top: 0;
  }
  .p-top-cta__contact-left--tel {
    padding-bottom: 0;
  }
  .p-top-cta__contact-right,
  .p-top-cta__contact-right--tel {
    width: auto;
    margin-top: 1.5rem;
    padding-left: 0;
    border-left: none;
  }
  .p-top-cta__contact-right--tel {
    padding-top: 0;
  }
  .p-top-cta__contact-text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.8;
  }
  .p-top-cta__tel {
    font-size: 20px;
  }
  .p-top-cta__tel + .p-top-cta__tel {
    margin-top: 1rem;
  }
  .p-top-cta__time {
    margin-top: 1rem;
    font-size: 13px;
  }
  .p-top-cta__mail {
    width: 100%;
    height: 2.5rem;
    margin-top: 2rem;
    font-size: 14px;
    margin-inline: auto;
  }
  .p-top-cta__mail::before {
    left: 40px;
    width: 18px;
    height: 14px;
  }
}
.p-top-cta__sub {
  padding-top: 72px;
  padding-top: 4.5rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
  position: relative;
}

.p-top-cta__sub::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95.1deg, rgba(21, 90, 168, .5625) 0.52%, rgba(21, 90, 168, .5625) 68.43%), url(../images/common/sub-base-cta.jpg) no-repeat center center/cover;
  z-index: -1;
}

.p-top-cta__sub-contact {
  margin-top: 0;
}

.sub-company-message {
  width: 100%;
  background-color: #F6FAFC;
  border-radius: 40px 40px 0 0;
}

.sub-company-message__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 80px 0;
  padding: 5rem 0;
}

@media screen and (max-width: 1130px) {
  .sub-company-message__inner {
    padding: 5rem 25px;
  }
}
.sub-company-message__side {
  width: 16%;
  margin-right: 2%;
}

.sub-company-message__label {
  color: #315EB2;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.sub-company-message__content {
  width: 82%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.sub-company-message__text-area {
  width: 51%;
  margin-right: 9%;
}

.sub-company-message__title {
  color: #315EB2;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
}

.sub-company-message__text {
  margin-top: 16px;
  margin-top: 1rem;
}

.sub-company-message__name {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.sub-company-message__imgbox {
  width: 40%;
  padding-right: auto;
}

.sub-company-message__img {
  display: block;
  width: 195px;
  margin-top: 60px;
  margin-top: 3.75rem;
  position: relative;
}

.sub-company-message__img::before {
  content: "";
  display: block;
  padding-top: 106.666666667%;
}

.sub-company-message__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 768px) {
  .sub-company-message {
    border-radius: 32px 32px 0 0;
  }
  .sub-company-message__inner {
    padding: 2.5rem 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sub-company-message__label {
    font-size: 16px;
  }
  .sub-company-message__content {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 1.5rem;
  }
  .sub-company-message__text-area {
    width: 100%;
    margin-right: 0;
  }
  .sub-company-message__title {
    font-size: 18px;
  }
  .sub-company-message__text {
    margin-top: 8px;
  }
  .sub-company-message__imgbox {
    width: 100%;
    padding-right: 0;
    padding-right: initial;
  }
  .sub-company-message__img {
    width: 187px;
    margin-top: 1.5rem;
    margin-inline: auto;
  }
  .sub-company-message__img::before {
    padding-top: 106.951%;
  }
}
.sub-company-profile {
  width: 100%;
  padding: 120px 0;
  padding: 7.5rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-company-profile {
    padding: 5rem 0;
  }
}

.sub-company-profile::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 240px;
  background: url(../images/common/Rectangle52-80.png);
  opacity: 0.15;
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sub-company-profile::before {
    background: url(../images/common/Rectangle52-50.png);
    width: 160px;
    height: 150px;
  }
}

.sub-contact {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-contact {
    padding-bottom: 5rem;
  }
}

.sub-contact::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 240px;
  background: url(../images/common/Rectangle52-80.png);
  opacity: 0.15;
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -3;
}
@media screen and (max-width: 768px) {
  .sub-contact::before {
    background: url(../images/common/Rectangle52-50.png);
    width: 160px;
    height: 150px;
  }
}

.sub-contact__inner {
  max-width: 1080px;
  margin-inline: auto;
  padding: 80px 100px;
  background-color: #F7F9F9;
  border-radius: 40px;
}

.sub-contact__heading {
  position: relative;
  padding-left: 30px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e7e7e7;
  color: #315EB2;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
}

.sub-contact__heading::before {
  content: "";
  display: block;
  width: 21px;
  height: 22px;
  background: url(../images/common/sub-icon-h2.png) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 0;
}

.sub-contact__lead {
  margin-top: 32px;
  margin-top: 2rem;
}

.sub-contact__form {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.sub-contact__radio-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
}

/*** radio,checkbox ***/
.sub-contact__radio,
.sub-contact__check {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.7;
  position: relative;
}

.sub-contact__radio {
  padding-left: 32px;
  white-space: nowrap;
}

.radio-title {
  position: relative;
}

.radio-title::before,
.radio-title::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.radio-title::before {
  background-color: #fff;
  border: 1px solid #a3c3fd;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  left: -32px;
}

.radio-title::after {
  background-color: #69aaea;
  border-radius: 50%;
  opacity: 0;
  width: 12px;
  height: 12px;
  left: -26px;
}

input[type=radio]:checked + .radio-title::after {
  opacity: 1;
}

/* checkbox */
.sub-contact__check {
  padding-left: 24px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .sub-contact__check {
    white-space: normal;
    white-space: initial;
  }
}

.check-title {
  position: relative;
}

.check-title::before,
.check-title::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.check-title::before {
  background-color: #fff;
  border: 1px solid #a3c3fd;
  width: 16px;
  height: 16px;
  left: -24px;
}

.check-title::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 1px solid #315EB2;
  border-left: 1px solid #315EB2;
  content: "";
  display: block;
  height: 0.6em;
  left: -24px;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 1em;
}

input[type=checkbox]:checked + .check-title::after {
  opacity: 1;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

/* radio,checkbox ここまで */
.sub-contact__item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 24px;
}

.sub-contact__label {
  font-size: 16px;
  font-weight: 500;
}

.sub-contact__required {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 4px;
  background-color: #ff0000;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.sub-contact__item input,
.sub-contact__item textarea {
  width: 100%;
  border: 1px solid #a3c3fd;
  background-color: #fff;
  font-size: 16px;
  color: #222;
}

.sub-contact__item input {
  height: 40px;
  padding: 0 16px;
}

.sub-contact__item textarea {
  height: 240px;
  padding: 16px;
  resize: vertical;
}

.sub-contact__item--textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}

.sub-contact__check-list {
  margin-top: 32px;
  margin-left: 204px;
}

.sub-contact__check {
  width: 100%;
}

.sub-contact__check + .sub-contact__check {
  margin-top: 16px;
}

.sub-contact__check a {
  color: #315EB2;
  text-decoration: underline;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: color;
  transition-property: color;
}

.sub-contact__check a:focus-visible {
  color: #27B9E8;
}

@media (any-hover: hover) {
  .sub-contact__check a:hover {
    color: #27B9E8;
  }
}
.sub-contact__button-wrap {
  margin-top: 32px;
  text-align: center;
}

.sub-contact__button {
  min-width: 160px;
  padding: 8px 40px;
  border-radius: 4px;
  background-color: #27B9E8;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: background-color, color, border;
  transition-property: background-color, color, border;
}

.sub-contact__button:focus-visible {
  background-color: #fff;
  color: #27B9E8;
  border: 1px solid #27B9E8;
}

@media (any-hover: hover) {
  .sub-contact__button:hover {
    background-color: #fff;
    color: #27B9E8;
    border: 1px solid #27B9E8;
  }
}
@media screen and (max-width: 768px) {
  .sub-contact__inner {
    max-width: 600px;
    width: 100%;
    padding: 56px 20px;
    border-radius: 32px;
  }
  .sub-contact__heading {
    font-size: 20px;
  }
  .sub-contact__lead {
    margin-top: 2.5rem;
  }
  .sub-contact__form {
    margin-top: 2.5rem;
  }
  .sub-contact__radio-list {
    display: block;
  }
  .sub-contact__radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .sub-contact__radio + .sub-contact__radio {
    margin-top: 1rem;
  }
  .sub-contact__item {
    display: block;
    margin-top: 24px;
  }
  .sub-contact__label {
    display: block;
    font-size: 14px;
  }
  .sub-contact__item input {
    margin-top: 4px;
  }
  .sub-contact__item textarea {
    height: 240px;
    margin-top: 4px;
  }
  .sub-contact__check-list {
    margin-top: 2rem;
    margin-left: 0;
  }
  .sub-contact__check {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: 14px;
  }
  .sub-contact__button-wrap {
    margin-top: 24px;
  }
  .sub-contact__button {
    max-width: 400px;
    width: 100%;
    padding: 12px 24px;
  }
}
.sub-fv {
  padding-top: 80px;
  width: 100%;
  height: 320px;
  position: relative;
}

.sub-fv::before {
  content: "";
  display: block;
  position: absolute;
  top: 80px;
  left: 0;
  width: 107px;
  height: 114px;
  background: url(../images/common/sub-icon-h1.png) no-repeat center center/contain;
}

.sub-fv__inner {
  width: 100%;
  height: 240px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 0 13%;
}

@media screen and (max-width: 1300px) {
  .sub-fv::before {
    width: 74px;
    height: 80px;
  }
}
.sub-fv__inner::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 57.3%;
  height: 100%;
  background: url(../images/common/Rectangle52-80.png);
  opacity: 0.15;
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sub-fv__inner::before {
    background: url(../images/common/Rectangle52-50.png);
  }
}

.sub-fv__title {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: linear-gradient(118.37deg, #44BEE5 0%, #315EB2 71.61%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1300px) {
  .sub-fv__title {
    padding-left: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  .sub-fv {
    padding-top: 50px;
    height: 230px;
  }
  .sub-fv::before {
    top: 50px;
    width: 57px;
    height: 61px;
  }
  .sub-fv__inner {
    height: 180px;
  }
  .sub-fv__title {
    font-size: 22px;
    padding-left: 0;
  }
}
.sub-info-list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.sub-info-list__side {
  width: 16%;
  margin-right: 2%;
}

.sub-info-list__body {
  width: 82%;
}

@media screen and (max-width: 1024px) {
  .sub-info-list__side {
    width: 20%;
  }
  .sub-info-list__body {
    width: 78%;
  }
}
.sub-info-list__row {
  display: grid;
  grid-template-columns: 180px 1fr;
  border-top: 1px solid #cbcaca;
}

.sub-info-list__row dd a {
  color: #315EB2;
  text-decoration: underline;
  -webkit-transform: 0.3s;
          transform: 0.3s;
}

.sub-info-list__row dd a:hover {
  color: #27B9E8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sub-info-list__row:last-child {
  position: relative;
  border-bottom: 1px solid #cbcaca;
}

.sub-info-list__row dt {
  position: relative;
  padding: 28px 32px;
  color: #222;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.sub-info-list__row dt::before {
  content: "";
  width: 120px;
  height: 1px;
  background: linear-gradient(118.37deg, #44BEE5 0%, #315EB2 71.61%);
  position: absolute;
  left: 0;
  top: -1px;
}

.sub-info-list__row:last-child::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(118.37deg, #44BEE5 0%, #315EB2 71.61%);
}

.sub-info-list__row dd {
  margin: 0;
  padding: 24px;
  font-size: 16px;
  line-height: 1.8;
}

.sub-info-list__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.sub-info-list__address p span {
  display: inline-block;
}

.sub-info-list__address-title {
  width: 88px;
  margin-right: 16px;
  margin-right: 1rem;
}

.sub-info-list__address + .sub-info-list__address {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.sub-info-list li {
  position: relative;
  padding-left: 14px;
}

.sub-info-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width: 768px) {
  .sub-info-list__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .sub-info-list__side {
    width: 100%;
    margin-right: 0;
  }
  .sub-info-list__body {
    width: 100%;
    margin-top: 2rem;
  }
  .sub-info-list__row {
    display: block;
  }
  .sub-info-list__row dt {
    padding: 16px 16px 0 16px;
    font-size: 14px;
  }
  .sub-info-list__row dt::before {
    width: 80px;
  }
  .sub-info-list__row dd {
    padding: 16px 0 16px 16px;
    font-size: 14px;
  }
  .sub-info-list__address {
    display: block;
  }
  .sub-info-list__address + .sub-info-list__address {
    margin-top: 16px;
  }
  .sub-info-list__address-title {
    width: 100%;
    margin-right: 0;
  }
  .sub-info-list__row:last-child::before {
    width: 80px;
  }
}
.sub-privacy {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .sub-privacy {
    padding-bottom: 5rem;
  }
}

.sub-privacy::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 240px;
  background: url(../images/common/Rectangle52-80.png);
  opacity: 0.15;
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -5;
}
@media screen and (max-width: 768px) {
  .sub-privacy::before {
    background: url(../images/common/Rectangle52-50.png);
    width: 160px;
    height: 150px;
  }
}

.sub-privacyIn {
  position: relative;
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

.sub-privacyIn::before {
  content: "";
  display: block;
  width: calc(100% + 160px);
  height: 100%;
  background-color: #F7F9F9;
  position: absolute;
  top: 0;
  left: -80px;
  border-radius: 40px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sub-privacyIn::before {
    width: calc(100% + 40px);
    left: -20px;
    border-radius: 32px;
  }
}

.sub-privacyIn__title {
  margin-top: 32px;
  margin-top: 2rem;
}

.sub-privacyIn ol {
  padding-left: 30px;
  margin: 16px 0;
  margin: 1rem 0;
}

.sub-privacyIn__title + p {
  margin-top: 16px;
  margin-top: 1rem;
}

.sub-privacyIn__lists-list {
  margin-top: 8px;
  margin-top: 0.5rem;
}

.sub-privacyIn__link {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
  color: #315EB2;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .sub-privacyIn__link {
    font-size: 14px;
  }
}

.sub-privacyIn__link:hover {
  color: #27B9E8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.sub-recruit {
  width: 100%;
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-recruit {
    padding-top: 4.5rem;
    padding-bottom: 5rem;
  }
}

.sub-recruit::before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% - 120px);
  position: absolute;
  top: 0;
  left: 0;
  background-color: #F6FAFC;
  border-radius: 40px;
  z-index: -3;
}
@media screen and (max-width: 768px) {
  .sub-recruit::before {
    border-radius: 32px;
    height: calc(100% - 80px);
  }
}

.sub-recruit::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 240px;
  background: url(../images/common/Rectangle52-80.png);
  opacity: 0.15;
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -5;
}
@media screen and (max-width: 768px) {
  .sub-recruit::after {
    background: url(../images/common/Rectangle52-50.png);
    width: 160px;
    height: 150px;
  }
}

.sub-recruit__head {
  width: 100%;
  position: relative;
}

.sub-recruit__head::after {
  content: "";
  display: block;
  width: 330px;
  height: 340px;
  position: absolute;
  top: 120px;
  left: 0;
  background: url(../images/common/bgimg-sub-recruit.png) no-repeat center center/contain;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .sub-recruit__head::after {
    display: none;
  }
}

.sub-recruit__head-lead {
  font-size: 18px;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  font-weight: 400;
  line-height: 2;
}

.sub-recruit__head-box {
  margin-top: 56px;
  margin-top: 3.5rem;
}

.sub-recruit__head-box-title {
  padding: 8px 24px;
  background-color: #315EB2;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sub-recruit__head-list {
  margin-top: 16px;
  margin-top: 1rem;
  padding-left: 0;
}

.sub-recruit__head-list li {
  position: relative;
  padding-left: 14px;
}

.sub-recruit__head-list li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.sub-recruit__head-note {
  margin-top: 8px;
}

.sub-recruit__head-img {
  display: block;
  margin-top: 16px;
  margin-top: 1rem;
}

.sub-recruit__head-img img {
  display: block;
  width: 100%;
  height: auto;
}

.sub-recruit__list {
  padding-top: 96px;
  padding-top: 6rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
}

@media screen and (max-width: 768px) {
  .sub-recruit__head-lead {
    font-size: 15px;
    line-height: 2;
  }
  .sub-recruit__head-box {
    margin-top: 2rem;
  }
  .sub-recruit__head-box-title {
    padding: 4px 16px;
    font-size: 16px;
  }
  .sub-recruit__head-list {
    margin-top: 1rem;
  }
  .sub-recruit__head-img {
    margin-top: 1rem;
  }
  .sub-recruit__list {
    padding-top: 5rem;
    padding-bottom: 4.5rem;
  }
}
.sub-service {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  position: relative;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .sub-service {
    padding-bottom: 5rem;
  }
}

.sub-service::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 240px;
  background: url(../images/common/Rectangle52-80.png);
  opacity: 0.15;
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -5;
}
@media screen and (max-width: 768px) {
  .sub-service::before {
    background: url(../images/common/Rectangle52-50.png);
    width: 160px;
    height: 150px;
  }
}

.sub-service__contents {
  width: 100%;
  margin-top: 64px;
  margin-top: 4rem;
  margin-bottom: 64px;
  margin-bottom: 4rem;
}

.sub-service__contents-inner {
  position: relative;
}

.sub-service__contents-inner::before {
  content: "";
  display: block;
  width: calc(100% + 160px);
  height: calc(100% + 128px);
  background-color: #F7F9F9;
  position: absolute;
  top: -64px;
  left: -80px;
  border-radius: 40px;
  z-index: -1;
}

.sub-service__lead-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 32px;
  margin-top: 2rem;
}

.sub-service__label {
  position: relative;
  padding-left: 29px;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.sub-service__label::before {
  content: "";
  width: 21px;
  height: 22px;
  background: url(../images/common/sub-icon-h2.png) no-repeat center center/contain;
  position: absolute;
  left: 0;
  top: 0;
}

.sub-service__label span {
  color: #315EB2;
}

.sub-service__heading {
  padding-left: 29px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e7e7e7;
  color: #315EB2;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.sub-service__text {
  width: 44.444%;
}

.sub-service__main-img {
  width: 44.444%;
  position: relative;
}

.sub-service__main-img::before {
  content: "";
  display: block;
  padding-top: 58.333333%;
}

.sub-service__main-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.sub-service__bar-title {
  margin-top: 32px;
  margin-top: 2rem;
  padding: 8px 24px;
  background-color: #315EB2;
  border-radius: 4px;
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.sub-service__case-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 72px;
  margin-top: 28px;
}

.sub-service__case-title {
  color: #315EB2;
  font-size: 18px;
  font-weight: 700;
}

.sub-service__case-client {
  margin-top: 4px;
}

.sub-service__case img {
  width: 100%;
  display: block;
  margin-top: 8px;
  position: relative;
}

.sub-service__case img::before {
  content: "";
  display: block;
  padding-top: 58.333333%;
}

.sub-service__case img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}

.sub-service__result-title {
  margin-top: 32px;
  margin-top: 2rem;
  color: #315EB2;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.sub-service__table-wrap {
  margin-top: 8px;
  overflow-x: auto;
  white-space: nowrap;
}

.sub-service__table {
  width: 800px;
  border-collapse: collapse;
  background-color: #fff;
}

.sub-service__table th,
.sub-service__table td {
  border: 1px solid #DFDBD5;
  padding: 8px 54px;
  font-size: 16px;
  line-height: 1.5;
}

.sub-service__table th {
  background-color: #4184C5;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.sub-service__table td:first-child {
  width: 220px;
}

@media screen and (max-width: 768px) {
  .sub-service__contents {
    margin-top: 3.5rem;
  }
  .sub-service__contents-inner::before {
    width: calc(100% + 40px);
    height: calc(100% + 112px);
    top: -48px;
    left: -20px;
    border-radius: 32px;
  }
  .sub-service__label {
    font-size: 14px;
  }
  .sub-service__heading {
    font-size: 18px;
    line-height: 1.5;
  }
  .sub-service__lead-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1rem;
  }
  .sub-service__text {
    width: 100%;
  }
  .sub-service__main-img {
    width: 100%;
  }
  .sub-service__main-img {
    margin-top: 24px;
  }
  .sub-service__main-img::before {
    padding-top: 59.7014%;
  }
  .sub-service__bar-title {
    margin-top: 2.5rem;
    padding: 8px 16px;
    font-size: 16px;
  }
  .sub-service__case-list {
    display: block;
    margin-top: 24px;
  }
  .sub-service__case + .sub-service__case {
    margin-top: 24px;
  }
  .sub-service__case-title {
    font-size: 16px;
  }
  .sub-service__case img {
    margin-top: 8px;
  }
  .sub-service__case img::before {
    padding-top: 59.7014%;
  }
  .sub-service__result-title {
    margin-top: 1.5rem;
    font-size: 16px;
  }
  .sub-service__table-wrap {
    margin-top: 10px;
    padding-bottom: 8px;
  }
  .sub-service__table {
    width: 440px;
    min-width: 440px;
  }
  .sub-service__table th,
  .sub-service__table td {
    padding: 8px 24px;
    font-size: 14px;
    white-space: nowrap;
  }
  .sub-service__table td:first-child {
    width: 140px;
  }
}
.sub-service__contents + .sub-service__contents {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .sub-service__contents + .sub-service__contents {
    margin-top: 136px;
  }
}

.sub-service__table--wide {
  max-width: 1080px;
  width: 100%;
}
@media screen and (max-width: 1130px) {
  .sub-service__table--wide {
    max-width: 100%;
  }
}

.sub-service__table--wide th:nth-child(1),
.sub-service__table--wide td:nth-child(1) {
  width: 160px;
}

.sub-service__table--wide th:nth-child(2),
.sub-service__table--wide td:nth-child(2) {
  width: 160px;
}

.sub-service__table--wide th:nth-child(3),
.sub-service__table--wide td:nth-child(3) {
  width: 340px;
}

.sub-service__table--wide th:nth-child(4),
.sub-service__table--wide td:nth-child(4) {
  width: 420px;
}

.sub-service__table--wide th,
.sub-service__table--wide td {
  padding: 8px 40px;
  white-space: nowrap;
}

@media screen and (max-width: 768px) {
  .sub-service__table--wide {
    width: 724px;
    min-width: 724px;
  }
  .sub-service__table--wide th,
  .sub-service__table--wide td {
    padding: 8px 24px;
  }
  .sub-service__table--wide th:nth-child(1),
  .sub-service__table--wide td:nth-child(1) {
    width: 104px;
  }
  .sub-service__table--wide th:nth-child(2),
  .sub-service__table--wide td:nth-child(2) {
    width: 117px;
  }
  .sub-service__table--wide th:nth-child(3),
  .sub-service__table--wide td:nth-child(3) {
    width: 230px;
  }
  .sub-service__table--wide th:nth-child(4),
  .sub-service__table--wide td:nth-child(4) {
    width: 271px;
  }
}
.scroll-hint-shadow-wrap {
  margin-right: calc(50% - 50vw);
  overflow-x: auto;
  overflow-y: hidden;
}

.sub-thanks {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-thanks {
    padding-bottom: 5rem;
  }
}

.sub-thanks::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 500px;
  height: 240px;
  background: url(../images/common/Rectangle52-80.png);
  opacity: 0.15;
  -webkit-transform: matrix(1, 0, 0, -1, 0, 0);
          transform: matrix(1, 0, 0, -1, 0, 0);
  z-index: -3;
}
@media screen and (max-width: 768px) {
  .sub-thanks::before {
    background: url(../images/common/Rectangle52-50.png);
    width: 160px;
    height: 150px;
  }
}

.sub-thanks__heading {
  padding-bottom: 8px;
  border-bottom: 1px solid #e7e7e7;
  color: #315EB2;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-thanks__heading {
    font-size: 20px;
  }
}

.sub-thanks__inner {
  padding: 56px 100px;
  background-color: #F7F9F9;
  border-radius: 40px;
}
@media screen and (max-width: 768px) {
  .sub-thanks__inner {
    padding: 56px 20px;
    border-radius: 32px;
  }
}

.sub-thanks__lead {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .sub-thanks__lead {
    margin-top: 2.5rem;
  }
}

.sub-thanks__btn-wrap {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sub-thanks__btn-wrap {
    margin-top: 24px;
  }
}

.c-btn__grade {
  display: inline-block;
  min-width: 160px;
  padding: 8px 40px;
  border-radius: 4px;
  background: linear-gradient(118.37deg, #44BEE5 0%, #315EB2 71.61%);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition-property: background, color, border;
  transition-property: background, color, border;
}
@media screen and (max-width: 768px) {
  .c-btn__grade {
    max-width: 400px;
    width: 100%;
    padding: 12px 24px;
  }
}

.c-btn__grade:focus-visible {
  background: #fff;
  color: #315EB2;
  border: 1px solid #315EB2;
}

@media (any-hover: hover) {
  .c-btn__grade:hover {
    background: #fff;
    color: #315EB2;
    border: 1px solid #315EB2;
  }
}
.sub-thanks__imgwrap {
  width: 100%;
  height: 400px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sub-thanks__imgwrap {
    height: 200px;
  }
}

.sub-thanks__imgwrap::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(95.1deg, rgba(21, 90, 168, .5625) 0.52%, rgba(21, 90, 168, .5625) 68.43%), url(../images/common/sub-base-cta.jpg) no-repeat center center/cover;
  z-index: -1;
}
/*# sourceMappingURL=styles.css.map */
