@charset "UTF-8";
/*
 * 参考
 * https://github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

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

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

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

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

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https://css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https://webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.2903225806vw;
  }
}
@media (min-width: 1240px) {
  html {
    font-size: 16px;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #333;
}

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

@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

.l-footer {
  min-height: 42.125rem;
  margin-top: -17.625rem;
  padding-block: 14.40625rem 3.75rem;
  color: #333;
  background: linear-gradient(180deg, #eef8ff 0%, #eef8ff 0.7568%, #d8eeff 72.2119%, #c1e4ff 100%);
}
@media screen and (min-width: 768px) {
  .l-footer {
    min-height: 23.4375rem;
    margin-top: -10.875rem;
    padding-block: 9.1875rem 5rem;
  }
}

@media screen and (min-width: 768px) {
  .l-footer--top {
    margin-top: -9.375rem;
  }
}

.l-footer__inner {
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
  padding-top: 5.5rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 1340px) {
  .l-footer__inner {
    padding-inline: 0;
  }
}

.l-footer__top {
  display: grid;
}

.l-footer__info {
  grid-row: 2;
  margin-top: 3.65625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__info {
    grid-row: auto;
    grid-column: 1;
    margin-top: 0;
    text-align: left;
  }
}

.l-footer__logo {
  width: 10.71875rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    width: 13.75rem;
    margin-inline: 0;
  }
}

.l-footer__logo img {
  width: 100%;
  height: auto;
}

.l-footer__address {
  margin-top: 1.40625rem;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2.0769230769;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .l-footer__address {
    margin-top: 1.75rem;
    font-size: 1rem;
    line-height: 2.125;
  }
}

.l-footer__nav {
  grid-row: 1;
  width: 18.75rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .l-footer__nav {
    grid-row: auto;
    grid-column: 2;
    align-self: start;
    width: 19.375rem;
    margin-top: 1.4375rem;
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
  .l-footer__top {
    grid-template-columns: 1fr 19.375rem;
    min-height: 12.75rem;
  }
}

.l-footer__list {
  border-top: 0.0625rem solid #bdc2c6;
}
@media screen and (min-width: 768px) {
  .l-footer__list {
    display: flex;
    flex-wrap: wrap;
    border-top: 0;
  }
}

.l-footer__item {
  border-bottom: 0.0625rem solid #bdc2c6;
}
@media screen and (min-width: 768px) {
  .l-footer__item {
    width: 33.333%;
    border-bottom: 0;
  }
}

.l-footer__link {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 3.71875rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .l-footer__link {
    display: inline-block;
    min-height: auto;
    font-size: 1rem;
    line-height: 3.125rem;
  }
}

.l-footer__link::after,
.l-footer__privacy::after {
  position: absolute;
  right: 0;
  bottom: 0.5rem;
  left: 0;
  height: 0.0625rem;
  background-color: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
}

.l-footer__link:hover,
.l-footer__privacy:hover {
  opacity: 1;
}

@media screen and (min-width: 1000px) {
  .l-footer__link:hover::after,
  .l-footer__privacy:hover::after {
    transform: scaleX(1);
  }
}

.l-footer__bottom {
  margin-top: 1.28125rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    border-top: 0.0625rem solid #bdc2c6;
    text-align: left;
  }
}

.l-footer__privacy {
  position: relative;
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2.1538461538;
  letter-spacing: 0.05em;
  color: #666;
}
@media screen and (min-width: 768px) {
  .l-footer__privacy {
    margin-top: 2rem;
    font-size: 1rem;
    line-height: 2.125;
  }
}

.l-footer__privacy::after {
  bottom: -0.1875rem;
}

.l-footer__copy {
  margin-top: 1.3125rem;
  font-family: "Figtree", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.075em;
  color: #666;
}
@media screen and (min-width: 768px) {
  .l-footer__copy {
    margin-top: 2rem;
    font-size: 0.86875rem;
  }
}

.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 4.375rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  transition: background 0.3s, box-shadow 0.3s, height 0.3s;
}
@media screen and (min-width: 1000px) {
  .l-header {
    height: 6rem;
  }
}

.l-header.is-scrolled {
  background: #fff;
  box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.06);
}
@media screen and (min-width: 1000px) {
  .l-header.is-scrolled {
    height: 6.25rem;
  }
}

.l-header__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-top: 1.09375rem;
  padding-inline: 1.21875rem;
}
@media screen and (min-width: 1000px) {
  .l-header__inner {
    align-items: center;
    padding-top: 0;
    padding-inline: 1.8125rem 3.0625rem;
  }
}

.l-header__logo {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  width: 8.84375rem;
}
@media screen and (min-width: 1000px) {
  .l-header__logo {
    width: 13.75rem;
  }
}

.l-header__logoLink {
  display: block;
}

.l-header__logoImage {
  width: 100%;
  height: auto;
  transition: opacity 0.3s;
}

.l-header__logoImage--color {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.l-header.is-scrolled .l-header__logoImage--white {
  opacity: 0;
}

.l-header.is-scrolled .l-header__logoImage--color {
  opacity: 1;
}

.l-header__nav {
  display: none;
}
@media screen and (min-width: 1000px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
}

.l-header__navList {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.l-header__navLink {
  position: relative;
  display: block;
  padding-block: 0.625rem;
  font-size: 0.96875rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #fff;
  transition: color 0.3s;
}

.l-header__navLink::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 0.0625rem;
  background-color: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s;
}

.l-header__navLink:hover {
  opacity: 1;
}

.l-header__navLink:hover::after {
  transform: scaleX(1);
}

.l-header.is-scrolled .l-header__navLink {
  color: #333;
}

.l-header__contact {
  display: grid;
  place-items: center;
  width: 8.75rem;
  height: 2.5rem;
  margin-left: 2.125rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #fff;
  background-color: #006cb8;
  transition: background-color 0.3s;
  border-radius: 0.375rem;
}

.l-header__contact:hover {
  opacity: 1;
  background-color: #097ac9;
}

.l-header__menuButton,
.l-header__closeButton {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.l-header__menuButton img,
.l-header__closeButton img {
  display: block;
  width: 100%;
  height: 100%;
}

.l-header__menuButton {
  position: relative;
  z-index: 2;
  width: 1.9375rem;
  height: 1.9375rem;
}
@media screen and (min-width: 1000px) {
  .l-header__menuButton {
    display: none;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .l-header,
  .l-header.is-scrolled {
    height: 70px;
  }
  .l-header__inner {
    align-items: flex-start;
    padding-top: 17.5px;
    padding-inline: 19.5px;
  }
  .l-header__logo {
    width: 141.5px;
  }
  .l-header__nav,
  .l-header__contact {
    display: none;
  }
  .l-header__menuButton {
    display: block;
    width: 31px;
    height: 31px;
  }
}
.l-header__drawer {
  position: fixed;
  z-index: 3;
  inset: 0;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-y: auto;
  visibility: hidden;
  background-color: #2d6ab2;
  opacity: 0;
  pointer-events: none;
  transition: visibility 0.3s, opacity 0.3s;
}
@media screen and (min-width: 1000px) {
  .l-header__drawer {
    display: none;
  }
}

.l-header__drawer.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.l-header__closeButton {
  position: absolute;
  top: 1.09375rem;
  right: 1.40625rem;
  width: 1.9375rem;
  height: 1.9375rem;
}
@media screen and (min-width: 768px) {
  .l-header__closeButton {
    top: 3vw;
    right: 3vw;
    width: 5vw;
    height: 5vw;
  }
}

.l-header__drawerLogo {
  position: absolute;
  top: 0.96875rem;
  left: 1.175rem;
  width: 9.6875rem;
}
@media screen and (min-width: 768px) {
  .l-header__drawerLogo {
    top: 3vw;
    left: 3vw;
    width: 22vw;
  }
}

.l-header__drawerLogo img {
  display: block;
  width: 100%;
  height: auto;
}

.l-header__drawerNav {
  width: 18.75rem;
  margin-inline: auto;
  padding-top: 5.53125rem;
}
@media screen and (min-width: 768px) {
  .l-header__drawerNav {
    width: 56%;
    padding-top: 14vw;
  }
}

.l-header__drawerList {
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.l-header__drawerItem {
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.l-header__drawerLink {
  display: grid;
  place-items: center;
  min-height: 3.6875rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-header__drawerLink {
    min-height: 8vw;
    font-size: 2vw;
    line-height: 1.6;
  }
}

.l-header__drawerLink:hover {
  opacity: 1;
}

body.is-drawerOpen {
  overflow: hidden;
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .l-header__drawer {
    display: block;
  }
  .l-header__closeButton {
    top: 17.5px;
    right: 22.5px;
    width: 31px;
    height: 31px;
  }
  .l-header__drawerLogo {
    top: 15.5px;
    left: 18.8px;
    width: 155px;
  }
  .l-header__drawerNav {
    width: 300px;
    padding-top: 88.5px;
  }
  .l-header__drawerList,
  .l-header__drawerItem {
    border-width: 1px;
  }
  .l-header__drawerLink {
    min-height: 59px;
    font-size: 14px;
    line-height: 1.5;
  }
}
.p-companyHeading {
  color: #006cb8;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.p-companyHeading.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.p-companyHeading__title {
  margin-top: 1.5rem;
  font-family: "Figtree", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-companyHeading__title {
    margin-top: 1.5625rem;
    font-size: 2.5rem;
  }
}

.p-companyHeading__subtitle {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-companyHeading__subtitle {
    margin-top: 0.25rem;
    font-size: 1.125rem;
  }
}

.p-companyMessage {
  padding-top: 4.375rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-companyMessage {
    padding-top: 8.75rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 1340px) {
  .p-companyMessage {
    padding-inline: 0;
  }
}

.p-companyMessage__inner,
.p-companyOutline__inner,
.p-companyAccess__inner {
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-companyMessage__inner,
  .p-companyOutline__inner,
  .p-companyAccess__inner {
    display: grid;
    grid-template-columns: 15rem minmax(0, 56.25rem);
    -moz-column-gap: 6.25rem;
         column-gap: 6.25rem;
  }
}

.p-companyMessage__body {
  min-height: 26.8125rem;
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-companyMessage__body {
    margin-top: 0;
  }
}

.p-companyMessage__body.is-inview,
.p-companyOutline__list.is-inview,
.p-companyAccess__body.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.p-companyMessage__text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-companyMessage__text {
    font-size: 1.125rem;
    line-height: 2.1111111111;
  }
}

.p-companyMessage__signature {
  margin-top: 1.125rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-companyMessage__signature {
    margin-top: 1.875rem;
    font-size: 1.125rem;
    line-height: 2.1111111111;
  }
}

.p-companyPhilosophy {
  position: relative;
  min-height: 30rem;
  margin-top: 5.3125rem;
  overflow: hidden;
  border-radius: 3.75rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-companyPhilosophy {
    min-height: 42.5rem;
    margin-top: 7.3125rem;
    border-radius: 7.5rem;
  }
}

.p-companyPhilosophy.is-inview {
  opacity: 1;
  transform: translateY(0);
}

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

.p-companyPhilosophy__body {
  position: relative;
  z-index: 1;
  padding-top: 5.75rem;
  padding-inline: 1.25rem;
  text-align: center;
  color: #006cb8;
}
@media screen and (min-width: 768px) {
  .p-companyPhilosophy__body {
    padding-top: 8.5625rem;
  }
}

.p-companyPhilosophy__title {
  font-family: "Figtree", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-companyPhilosophy__title {
    font-size: 3.10625rem;
  }
}

.p-companyPhilosophy__subtitle {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-companyPhilosophy__subtitle {
    margin-top: 0.5625rem;
    font-size: 1.11875rem;
  }
}

.p-companyPhilosophy__text {
  margin-top: 2.8125rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-companyPhilosophy__text {
    margin-top: 3.125rem;
    font-size: 1.75rem;
    line-height: 2.6785714286;
  }
}

.p-companyOutline {
  padding-top: 5.3125rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-companyOutline {
    padding-top: 8.125rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 1340px) {
  .p-companyOutline {
    padding-inline: 0;
  }
}

.p-companyOutline__list {
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-companyOutline__list {
    margin-top: 0;
  }
}

.p-companyOutline__row {
  padding-block: 1.375rem;
  border-bottom: 0.0625rem solid #ececec;
}
@media screen and (min-width: 768px) {
  .p-companyOutline__row {
    display: grid;
    grid-template-columns: 10.625rem minmax(0, 1fr);
    min-height: 6.25rem;
    padding-block: 1.8125rem;
  }
}

.p-companyOutline__row:first-child {
  border-top: 0.0625rem solid #ececec;
}

.p-companyOutline__row dt,
.p-companyOutline__row dd {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}

.p-companyOutline__row dt {
  font-weight: 500;
}

.p-companyOutline__row dd {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-companyOutline__row dd {
    margin-top: 0;
    font-size: 1.125rem;
    line-height: 2.1111111111;
  }
}

@media screen and (min-width: 768px) {
  .p-companyOutline__row dt {
    font-size: 1.125rem;
    line-height: 2.1111111111;
  }
}

@media screen and (min-width: 768px) {
  .p-companyOutline__row--business {
    min-height: 10.9375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-companyOutline__row--permit {
    height: 7.8125rem;
    min-height: 0;
    padding-block: 1.53125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-companyOutline__row--qualification {
    height: 19.5rem;
    min-height: 0;
    padding-block: 1.4375rem;
  }
}

.p-companyAccess {
  padding-top: 5.3125rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-companyAccess {
    padding-top: 7.4375rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 1340px) {
  .p-companyAccess {
    padding-inline: 0;
  }
}

.p-companyAccess__body {
  margin-top: 2.5rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-companyAccess__body {
    margin-top: 0;
  }
}

.p-companyAccess__map {
  display: block;
  width: 100%;
  height: 17.5rem;
  border: 0;
}
@media screen and (min-width: 768px) {
  .p-companyAccess__map {
    height: 23.75rem;
  }
}

.p-companyAccess__text {
  margin-top: 1.5625rem;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-companyAccess__text {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 2.1111111111;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .p-companyMessage,
  .p-companyOutline,
  .p-companyAccess,
  .p-topCta--company .p-topCta__inner {
    padding-inline: 40px;
  }
}
.p-topCta.p-topCta--company {
  margin-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-topCta.p-topCta--company {
    margin-top: 6.4375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-companyHeading,
  .p-companyMessage__body,
  .p-companyPhilosophy,
  .p-companyOutline__list,
  .p-companyAccess__body {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}
.p-topCta {
  position: relative;
  z-index: 1;
  margin-top: 4.4375rem;
}
@media screen and (min-width: 768px) {
  .p-topCta {
    margin-top: 7.8125rem;
  }
}

.p-topCta__inner {
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-topCta__inner {
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 1340px) {
  .p-topCta__inner {
    padding-inline: 0;
  }
}

.p-cta {
  position: relative;
  min-height: 23.75rem;
  overflow: hidden;
  border-radius: 1.25rem;
  padding-top: 3.3125rem;
  padding-inline: 2.34375rem;
  background-image: url("../images/common/footer_cta.webp");
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-cta {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 20rem;
    padding-top: 4.6875rem;
    padding-inline: 4.875rem 6.25rem;
  }
}

.p-cta.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.p-cta__body {
  position: relative;
  z-index: 1;
}

.p-cta__title {
  font-family: "Figtree", sans-serif;
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-cta__title {
    font-size: 2.25rem;
    line-height: 1.2;
    text-align: left;
  }
}

.p-cta__ja {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-cta__ja {
    display: inline-block;
    margin-left: 1.3125rem;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.025em;
  }
}

.p-cta__text {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2.1;
  letter-spacing: 0.025em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-cta__text {
    max-width: 40.125rem;
    font-size: 1.0625rem;
  }
}

.p-cta__btn {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 13.75rem;
  height: 3.125rem;
  margin-top: 1.25rem;
  margin-inline: auto;
  font-family: "Figtree", sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 0.625rem;
  background-color: transparent;
  transition: background-color 0.6s, border-color 0.6s, opacity 0.6s;
}
@media screen and (min-width: 768px) {
  .p-cta__btn {
    flex-shrink: 0;
    align-self: flex-start;
    width: 20.625rem;
    height: 5rem;
    margin-top: 3.5625rem;
    margin-inline: 0;
    font-size: 1.125rem;
  }
}

.p-cta__btn:hover {
  opacity: 1;
  border-color: transparent;
  background-color: #2c66cb;
}

@media (prefers-reduced-motion: reduce) {
  .p-cta {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
  .p-cta__btn {
    transition: none;
  }
}
.p-pageHero {
  position: relative;
  height: 20.5rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-pageHero {
    height: 37.5rem;
  }
}

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

.p-pageHero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 77.5rem;
  height: 100%;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-pageHero__inner {
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 1340px) {
  .p-pageHero__inner {
    padding-inline: 0;
  }
}

.p-pageHero__heading {
  position: absolute;
  top: 7.875rem;
  left: 2.25rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-pageHero__heading {
    top: 15.3125rem;
    left: 1.5625rem;
  }
}
@media screen and (min-width: 1340px) {
  .p-pageHero__heading {
    left: 0;
  }
}

.p-pageHero__title {
  font-family: "Figtree", sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-pageHero__title {
    font-size: 3.125rem;
  }
}

.p-pageHero__subtitle {
  margin-top: 0.3125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-pageHero__subtitle {
    margin-top: 0.625rem;
    font-size: 1.25rem;
  }
}

.p-subpage {
  padding-top: 3.875rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-subpage {
    padding-top: 8.875rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 1340px) {
  .p-subpage {
    padding-inline: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 999px) {
  .p-subpage {
    padding-inline: 40px;
  }
  .p-subpage:has(.p-contact) {
    padding-inline: 1.5625rem;
  }
}
.p-subpage__inner {
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
}

.p-sectionHeading {
  color: #006cb8;
}

.p-sectionHeading__line {
  display: block;
  width: 3.125rem;
  height: 0.375rem;
  border-radius: 0.1875rem;
  background: linear-gradient(90deg, #44af46 0%, #006eb5 100%);
}

.p-sectionHeading__title {
  margin-top: 1.375rem;
  font-family: "Figtree", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-sectionHeading__title {
    font-size: 2.5rem;
  }
}

.p-sectionHeading__subtitle {
  margin-top: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-sectionHeading__subtitle {
    font-size: 1.125rem;
  }
}

.p-headingLine {
  display: block;
  width: 2.1875rem;
  height: 0.2625rem;
  border-radius: 0.1875rem;
  background: linear-gradient(90deg, #44af46 0%, #006eb5 100%);
}
@media screen and (min-width: 768px) {
  .p-headingLine {
    width: 3.125rem;
    height: 0.375rem;
  }
}

.p-service__item {
  padding-block: 1.8125rem;
}
@media screen and (min-width: 768px) {
  .p-service__item {
    padding-block: 3.75rem;
  }
}

.p-service__item:first-child {
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .p-service__head {
    display: grid;
    grid-template-columns: minmax(0, 603fr) minmax(0, 600fr);
    -moz-column-gap: 2.3125rem;
         column-gap: 2.3125rem;
  }
}

.p-service__visual {
  position: relative;
  height: 13.28125rem;
  overflow: hidden;
  border-radius: 1.25rem;
  background: linear-gradient(180deg, #eef8ff 0%, #d8eeff 72%, #cfe9ff 100%);
}
@media screen and (min-width: 768px) {
  .p-service__visual {
    order: 2;
    align-self: start;
    height: 23.75rem;
  }
}

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

.p-service__body {
  margin-top: 1.4375rem;
}
@media screen and (min-width: 768px) {
  .p-service__body {
    order: 1;
    margin-top: 0;
  }
}

.p-service__title {
  margin-top: 0.75rem;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.5217391304;
  letter-spacing: 0.05em;
  color: #006cb8;
}
@media screen and (min-width: 768px) {
  .p-service__title {
    margin-top: 0.5rem;
    font-size: 2.5rem;
    line-height: 1.55;
  }
}

.p-service__text,
.p-service__detailText,
.p-recruit__text,
.p-contact__lead,
.p-contact__notice,
.p-thanks__text,
.p-privacy__text {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-service__text,
  .p-service__detailText,
  .p-recruit__text,
  .p-contact__lead,
  .p-contact__notice,
  .p-thanks__text,
  .p-privacy__text {
    font-size: 1.125rem;
  }
}

.p-service__text {
  margin-top: 1.1875rem;
  line-height: 2.1428571429;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .p-service__text {
    margin-top: 2.375rem;
    font-size: 1.25rem;
    line-height: 2.1;
  }
}

.p-service__detail {
  margin-top: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .p-service__detail {
    margin-top: 2.375rem;
  }
}

.p-service__head + .p-service__detail {
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .p-service__head + .p-service__detail {
    margin-top: 1.3125rem;
  }
}

.p-service__detailTitle {
  display: inline-grid;
  place-items: center;
  height: 1.4375rem;
  margin-top: 0.3125rem;
  padding-inline: 0.75rem;
  border-radius: 0.3125rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #006cb8;
  background-color: #e4edf4;
}
@media screen and (min-width: 768px) {
  .p-service__detailTitle {
    width: 10.625rem;
    height: 2.5rem;
    padding-inline: 0;
    font-size: 1.125rem;
  }
}

.p-service__detailText {
  margin-top: 0.5rem;
  line-height: 2.1428571429;
  letter-spacing: 0.025em;
}
@media screen and (min-width: 768px) {
  .p-service__detailText {
    margin-top: 0.8125rem;
    line-height: 2.3333333333;
  }
}

.p-works__section + .p-works__section {
  margin-top: 4.6875rem;
}
@media screen and (min-width: 768px) {
  .p-works__section + .p-works__section {
    margin-top: 4.9375rem;
  }
}

.p-works__title,
.p-recruit__title {
  margin-top: 0.75rem;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #006cb8;
}
@media screen and (min-width: 768px) {
  .p-works__title,
  .p-recruit__title {
    margin-top: 0.5rem;
    font-size: 2.25rem;
    line-height: 1.7222222222;
  }
}

.p-works__list {
  margin-top: 1.875rem;
  border-top: 0.0625rem solid #ececec;
}
@media screen and (min-width: 768px) {
  .p-works__list {
    margin-top: 2.9375rem;
  }
}

.p-works__more {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .p-works__more {
    margin-top: 2.5rem;
    font-size: 1.125rem;
  }
}

.p-works__row {
  padding-block: 1.25rem;
  border-bottom: 0.0625rem solid #ececec;
}
@media screen and (min-width: 768px) {
  .p-works__row {
    display: grid;
    grid-template-columns: 11.875rem 6.875rem minmax(0, 1fr);
    align-items: center;
    min-height: 6.875rem;
    padding-inline: 0.1875rem;
  }
}

.p-works__date,
.p-works__area,
.p-works__name {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-works__date,
  .p-works__area,
  .p-works__name {
    font-size: 1.125rem;
  }
}

.p-works__date {
  color: #006cb8;
}

.p-works__area {
  color: #333;
}

.p-recruit__block {
  position: relative;
  padding-block: 2.1875rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__block {
    padding-block: 4.375rem;
  }
}

.p-recruit__block:first-child {
  padding-top: 0;
}

.p-recruit__illust {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-recruit__illust {
    position: absolute;
    top: -1.03125rem;
    right: 5rem;
    display: block;
    width: 22.59375rem;
    height: auto;
  }
}

.p-recruit__text {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-recruit__text {
    margin-top: 1.75rem;
    line-height: 2.1111111111;
  }
}

.p-contact {
  max-width: 66.25rem;
  margin-inline: auto;
}

@media screen and (min-width: 768px) {
  .p-contact__lead {
    font-size: 1.375rem;
    line-height: 2;
  }
}

.p-contact__notice {
  margin-top: 1.875rem;
}

.p-contact__form {
  margin-top: 4.0625rem;
}
@media screen and (min-width: 768px) {
  .p-contact__form {
    margin-top: 5rem;
  }
}

.p-contact__row {
  padding-block: 1.5rem;
  border-top: 0.0625rem solid #c9cfd1;
}
@media screen and (min-width: 768px) {
  .p-contact__row {
    display: grid;
    grid-template-columns: 17.5625rem minmax(0, 1fr);
    -moz-column-gap: 0;
         column-gap: 0;
    padding-block: 1.34375rem;
  }
}

.p-contact__row:nth-of-type(8) {
  border-bottom: 0.0625rem solid #c9cfd1;
}

.p-contact__label {
  display: flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-contact__label {
    font-size: 1.125rem;
  }
}

.p-contact__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6875rem;
  height: 1.125rem;
  margin-left: 0.625rem;
  border-radius: 0.125rem;
  font-size: 0.6875rem;
  line-height: 1;
  color: #fff;
  background-color: #006cb8;
}
@media screen and (min-width: 768px) {
  .p-contact__required {
    transform: translateY(-0.03125rem);
  }
}

.p-contact__field {
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-contact__field {
    margin-top: 0;
  }
}

.p-contact__field input[type=text],
.p-contact__field input[type=email],
.p-contact__field input[type=tel],
.p-contact__field textarea {
  width: 100%;
  padding-block: 0.75rem;
  padding-inline: 0.9375rem;
  border: 0.125rem solid #e8ebec;
  border-radius: 0.25rem;
  background-color: #f3f3f3;
}
@media screen and (min-width: 768px) {
  .p-contact__field input[type=text],
  .p-contact__field input[type=email],
  .p-contact__field input[type=tel],
  .p-contact__field textarea {
    padding-block: 0;
    height: 2.875rem;
  }
}

.p-contact__field textarea {
  min-height: 10rem;
  resize: vertical;
}
@media screen and (min-width: 768px) {
  .p-contact__field textarea {
    padding-block: 0.75rem;
    height: 10rem;
  }
}

.p-contact__fieldSplit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-contact__fieldSplit {
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
}

.p-contact__choice + .p-contact__choice {
  display: flex;
  margin-top: 0.75rem;
}

.p-contact__choice {
  display: flex;
  align-items: flex-start;
}

.p-contact__choice input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.25rem;
  margin-right: 0.78125rem;
}

.p-contact__choice input[type=checkbox],
.p-contact__agreeCheck input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex-shrink: 0;
  border: 0.0625rem solid #c9c9c9;
  border-radius: 0.125rem;
  background-color: #c9c9c9;
  cursor: pointer;
}

.p-contact__choice input[type=checkbox]:checked,
.p-contact__agreeCheck input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1.5' fill='none' stroke='%23fff' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.75rem 0.625rem;
}

.p-contact__agree {
  margin-top: 2.1875rem;
  padding-bottom: 2.1875rem;
  border-bottom: 0.0625rem solid #c9cfd1;
}
@media screen and (min-width: 768px) {
  .p-contact__agree {
    display: grid;
    grid-template-columns: 17.5625rem minmax(0, 1fr);
    -moz-column-gap: 0;
         column-gap: 0;
    align-items: center;
  }
}

.p-contact__agreeLabel {
  font-size: 0.9375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-contact__agreeLabel {
    font-size: 1.125rem;
  }
}

.p-contact__agreeLabel .p-privacy__link {
  color: #333;
  text-decoration: none;
}

.p-contact__agreeCheck input[type=checkbox] {
  width: 1.25rem;
  height: 1.25rem;
  margin: 0 0.78125rem 0 0;
  vertical-align: -0.25rem;
}

.p-contact__agreeCheck {
  margin-top: 0.75rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-contact__agreeCheck {
    margin-top: 0;
  }
}

.cf-turnstile {
  min-width: 16.25rem;
  min-height: 4rem;
  margin-top: 2.1875rem;
  text-align: center;
}

.p-contact__submit,
.p-thanks__button {
  display: grid;
  place-items: center;
  width: min(100%, 20.625rem);
  height: 4.375rem;
  margin-top: 2.1875rem;
  margin-inline: auto;
  border: 0.0625rem solid #006cb8;
  letter-spacing: 0.05em;
  color: #006cb8;
  background-color: #fff;
  transition: color 0.3s, background-color 0.3s;
}

.p-contact__submit {
  width: min(100%, 14.4375rem);
  height: 3.0625rem;
  border-radius: 2.25rem;
  font-size: 0.875rem;
  transition-duration: 0.6s;
}
@media screen and (min-width: 768px) {
  .p-contact__submit {
    width: min(100%, 20.625rem);
    height: 4.375rem;
    font-size: 1rem;
  }
}

.p-thanks__button {
  width: min(100%, 14.4375rem);
  height: 3.0625rem;
  margin-top: 2.8125rem;
  border-radius: 2.25rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-thanks__button {
    width: min(100%, 15.625rem);
    height: 3.375rem;
    margin-top: 3.75rem;
    font-size: 0.9375rem;
  }
}

.p-contact__submit:hover,
.p-thanks__button:hover {
  color: #fff;
  background-color: #006cb8;
}

.p-thanks {
  max-width: 66.25rem;
  margin-inline: auto;
  text-align: center;
}

.p-thanks__title {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-thanks__title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}

.p-thanks__text {
  margin-top: 2.1875rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-thanks__text {
    font-size: 1rem;
  }
}

.p-privacy {
  max-width: 66.25rem;
  margin-inline: auto;
}

.p-privacy__intro {
  margin-bottom: 2.8125rem;
}

.p-privacy__article + .p-privacy__article {
  margin-top: 2.375rem;
}

.p-privacy__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-privacy__title {
    font-size: 1.375rem;
  }
}

.p-privacy__text {
  margin-top: 0.75rem;
}

.p-privacy__list {
  margin-top: 0.75rem;
  padding-inline: 1.25rem;
  list-style: disc;
}

.p-privacy__listItem {
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .p-privacy__listItem {
    font-size: 1.125rem;
  }
}

.p-privacy__link {
  color: #006cb8;
  text-decoration: underline;
  text-underline-offset: 0.125rem;
}

.p-subpage .js-fadeIn {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.p-subpage .js-fadeIn.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.p-topCta--subpage {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-topCta--subpage {
    margin-top: 8.125rem;
  }
}

@media screen and (min-width: 768px) {
  .p-topCta--service {
    margin-top: 4.375rem;
  }
}

@media screen and (min-width: 768px) {
  .p-topCta--works {
    margin-top: 7.1875rem;
  }
}

@media screen and (min-width: 768px) {
  .p-topCta--recruit {
    margin-top: 4.25rem;
  }
}

@media screen and (min-width: 768px) {
  .p-topCta--contact {
    margin-top: 7.5rem;
  }
}

@media screen and (min-width: 768px) {
  .p-topCta--thanks {
    margin-top: 8.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-subpage .js-fadeIn {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.p-topConcept {
  position: relative;
  z-index: 1;
  min-height: 47.4375rem;
  overflow: hidden;
  padding-bottom: 12.9375rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-topConcept {
    min-height: 77.8125rem;
    padding-bottom: 6.0625rem;
  }
}

.p-topConcept::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.08);
  content: "";
}

.p-topConcept__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/top_concept_bg.webp");
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .p-topConcept__background {
    background-position: center;
  }
}

.p-topConcept__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 77.5rem;
  min-height: 47.4375rem;
  margin-inline: auto;
  padding-top: 3.40625rem;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-topConcept__inner {
    min-height: 77.8125rem;
    padding-top: 7.75rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 1340px) {
  .p-topConcept__inner {
    padding-inline: 0;
  }
}

.p-topConcept__content {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-topConcept__content {
    width: 33.8125rem;
    margin-left: 41.625rem;
    text-align: left;
  }
}

.p-topConcept__title {
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-topConcept__title {
    font-size: 3.125rem;
  }
}

.p-topConcept__text {
  margin-top: 1.53125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-topConcept__text {
    margin-top: 2.25rem;
    font-size: 1.25rem;
    line-height: 2.2;
  }
}

.p-topConcept__text--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-topConcept__text--pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .p-topConcept__text--sp {
    display: none;
  }
}

.p-topConcept__note {
  margin-top: 1.375rem;
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-topConcept__note {
    margin-top: 1.8125rem;
    font-size: 1.0625rem;
    line-height: 2.1176470588;
  }
}

.p-topConcept__title.is-inview,
.p-topConcept__text.is-inview,
.p-topConcept__note.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.p-topConcept__photos {
  position: relative;
  width: 20.9375rem;
  height: 18.625rem;
  margin-top: 3.3125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-topConcept__photos {
    position: absolute;
    top: 7.625rem;
    left: 1.5625rem;
    width: 35rem;
    height: 33.75rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1340px) {
  .p-topConcept__photos {
    left: 0;
  }
}

.p-topConcept__photoWrap {
  position: absolute;
}

.p-topConcept__photoFrame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0.3125rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1.875rem);
  transition: opacity 1.2s ease-out, visibility 1.2s ease-out, transform 1.2s ease-out;
}
@media screen and (min-width: 768px) {
  .p-topConcept__photoFrame {
    border-radius: 1.25rem;
  }
}

.p-topConcept__photoFrame.is-inview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.p-topConcept__photoWrap--first {
  top: 0;
  left: 1.3125rem;
  width: 8.375rem;
  height: 10.5rem;
}
@media screen and (min-width: 768px) {
  .p-topConcept__photoWrap--first {
    left: 2.3125rem;
    width: 15rem;
    height: 18.75rem;
  }
}

.p-topConcept__photoWrap--second {
  top: 3.125rem;
  left: 11.25rem;
  width: 8.375rem;
  height: 10.5rem;
}
@media screen and (min-width: 768px) {
  .p-topConcept__photoWrap--second {
    top: 5.625rem;
    left: 19.5rem;
    width: 15rem;
    height: 18.75rem;
  }
}

.p-topConcept__photoWrap--third {
  top: 12.1875rem;
  left: 4.8125rem;
  width: 5.25rem;
  height: 6rem;
}
@media screen and (min-width: 768px) {
  .p-topConcept__photoWrap--third {
    top: 21.75rem;
    left: 8.125rem;
    width: 9.375rem;
    height: 11.75rem;
  }
}

.p-topConcept__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.7s cubic-bezier(0, 0, 0, 0.1);
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .p-topConcept__title,
  .p-topConcept__text,
  .p-topConcept__note {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
  .p-topConcept__photoFrame {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: none;
  }
  .p-topConcept__photo {
    transform: none !important;
    transition: none;
  }
}
.p-topFeature {
  position: relative;
  z-index: 2;
  width: 18.75rem;
  margin-top: 3.125rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-topFeature {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    width: 100%;
    margin-top: 6.125rem;
  }
}

.p-topFeature__item {
  min-height: 14.53125rem;
  padding-top: 1.8125rem;
  padding-right: 1.40625rem;
  padding-left: 1.40625rem;
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-topFeature__item {
    min-height: 19.375rem;
    padding-top: 2.375rem;
    padding-right: 2.1875rem;
    padding-left: 1.8125rem;
  }
}

.p-topFeature__item + .p-topFeature__item {
  margin-top: 1.5625rem;
}
@media screen and (min-width: 768px) {
  .p-topFeature__item + .p-topFeature__item {
    margin-top: 0;
  }
}

.p-topFeature__item.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.p-topFeature__head {
  display: flex;
  align-items: flex-start;
}

.p-topFeature__icon {
  flex-shrink: 0;
  width: 3.28125rem;
  height: 3.28125rem;
}
@media screen and (min-width: 768px) {
  .p-topFeature__icon {
    width: 4.5rem;
    height: 4.5rem;
  }
}

.p-topFeature__title {
  margin-top: 0.0625rem;
  margin-left: 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-topFeature__title {
    margin-top: 0.125rem;
    margin-left: 1.2875rem;
    font-size: 1.5rem;
  }
}

.p-topFeature__text {
  width: 15.4375rem;
  margin-top: 1.28125rem;
  margin-left: 0.21875rem;
  font-size: 0.84375rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-topFeature__text {
    width: 20.625rem;
    margin-top: 1.75rem;
    margin-left: 0.375rem;
    font-size: 1.125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-topFeature__item {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
}
.p-topFv {
  position: relative;
  min-height: 34.0625rem;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-topFv {
    min-height: 53.75rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) and (orientation: portrait) {
  .p-topFv {
    height: clamp(53.75rem, 100svh, 860px);
  }
}

.p-topFv__slider,
.p-topFv__slide {
  position: absolute;
  inset: 0;
}

.p-topFv__slide {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s linear 2s;
}

.p-topFv__slide.is-active {
  z-index: 1;
  opacity: 1;
  transition: opacity 2s ease;
}

.p-topFv__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 12s linear;
}

.p-topFv__slide:nth-child(2) img {
  -o-object-position: 65% 30%;
     object-position: 65% 30%;
  transform-origin: 65% 30%;
}
@media screen and (min-width: 768px) {
  .p-topFv__slide:nth-child(2) img {
    -o-object-position: center;
       object-position: center;
    transform-origin: center;
  }
}

.p-topFv__slide.is-zooming img {
  transform: scale(1.12);
  transition: transform 6s linear;
}

.p-topFv__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 77.5rem;
  min-height: 34.0625rem;
  margin-inline: auto;
  padding-top: 17.78125rem;
  padding-inline: 1.90625rem;
}
@media screen and (min-width: 768px) {
  .p-topFv__inner {
    min-height: 53.75rem;
    padding-top: 27.9375rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 1340px) {
  .p-topFv__inner {
    padding-inline: 0;
  }
}

.p-topFv__catch {
  font-size: 1.78125rem;
  font-weight: 500;
  line-height: 1.5438596491;
  letter-spacing: 0.01em;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}
@media (max-width: 359px) {
  .p-topFv__catch {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .p-topFv__catch {
    font-size: 3.5625rem;
    line-height: 1.4035087719;
  }
}

.p-topFv__lead {
  margin-top: 0.8125rem;
  font-size: 1.03125rem;
  font-weight: 500;
  line-height: 1.6060606061;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}
@media screen and (min-width: 768px) {
  .p-topFv__lead {
    margin-top: 1.5rem;
    font-size: 1.8125rem;
    line-height: 1.2413793103;
  }
}

.is-loaded .p-topFv__catch,
.is-loaded .p-topFv__lead {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (min-width: 768px) {
  .p-topFv__spBreak {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-topFv__slide,
  .p-topFv__slide img,
  .p-topFv__catch,
  .p-topFv__lead {
    transition: none;
  }
  .p-topFv__slide.is-zooming img {
    transform: scale(1);
  }
  .p-topFv__catch,
  .p-topFv__lead {
    opacity: 1;
    transform: translateY(0);
  }
}
.p-topLink {
  margin-top: 4.40625rem;
}
@media screen and (min-width: 768px) {
  .p-topLink {
    margin-top: 9.6875rem;
  }
}

.p-topLink__list {
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-topLink__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 2.375rem;
         column-gap: 2.375rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 1340px) {
  .p-topLink__list {
    grid-template-columns: repeat(2, 37.5rem);
    padding-inline: 0;
  }
}

.p-topLink__item {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.p-topLink__item + .p-topLink__item {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-topLink__item + .p-topLink__item {
    margin-top: 0;
  }
}

.p-topLink__item.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.p-topLink__link {
  position: relative;
  display: block;
  width: 100%;
  max-width: 20.9375rem;
  height: 13.3125rem;
  overflow: hidden;
  border-radius: 0.625rem;
  background-color: #f9f9f9;
}
@media screen and (min-width: 768px) {
  .p-topLink__link {
    width: 100%;
    max-width: none;
    height: auto;
    aspect-ratio: 600/380;
  }
}
@media screen and (min-width: 1340px) {
  .p-topLink__link {
    width: 37.5rem;
    height: 23.75rem;
    aspect-ratio: auto;
  }
}

.p-topLink__link::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.12);
  content: "";
}

.p-topLink__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}

.p-topLink__body {
  position: absolute;
  z-index: 2;
  top: 2.34375rem;
  left: 2.40625rem;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-topLink__body {
    top: 4.1875rem;
    left: 4.25rem;
  }
}

.p-topLink__title {
  font-family: "Figtree", sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-topLink__title {
    font-size: 3.125rem;
  }
}

.p-topLink__subtitle {
  margin-top: 0.375rem;
  margin-left: 0.3125rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .p-topLink__subtitle {
    margin-left: 0;
    font-size: 1.125rem;
  }
}

.p-topLink__arrow {
  position: absolute;
  z-index: 2;
  right: 0.84375rem;
  bottom: 0.96875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-topLink__arrow {
    right: 1.625rem;
    bottom: 1.75rem;
    width: 3.9375rem;
    height: 3.9375rem;
  }
}

.p-topLink__arrow img {
  width: 0.6875rem;
  height: 0.4375rem;
  transition: transform 0.4s ease;
}
@media screen and (min-width: 768px) {
  .p-topLink__arrow img {
    width: 1rem;
    height: 0.625rem;
  }
}

.p-topLink__link:hover {
  opacity: 1;
}

@media screen and (min-width: 1000px) {
  .p-topLink__link:hover .p-topLink__image {
    transform: scale(1.05);
  }
}

@media screen and (min-width: 1000px) {
  .p-topLink__link:hover .p-topLink__arrow img {
    transform: translateX(0.3125rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .p-topLink__item {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
  .p-topLink__image,
  .p-topLink__arrow img {
    transition: none;
  }
}
.p-topService {
  position: relative;
  z-index: 1;
  min-height: 78.28125rem;
  margin-top: -7.5625rem;
  border-radius: 3.125rem;
  background: linear-gradient(180deg, #eef8ff 0%, #d8eeff 72%, #cfe9ff 100%);
}
@media screen and (min-width: 768px) {
  .p-topService {
    min-height: 83.75rem;
    margin-top: -6.0625rem;
    border-radius: 7.5rem;
  }
}

.p-topService__inner {
  width: 100%;
  max-width: 77.5rem;
  margin-inline: auto;
  padding-top: 2.375rem;
  padding-inline: 2.34375rem;
}
@media screen and (min-width: 768px) {
  .p-topService__inner {
    padding-top: 6.625rem;
    padding-inline: 1.5625rem;
  }
}
@media screen and (min-width: 1340px) {
  .p-topService__inner {
    padding-inline: 0;
  }
}

.p-topService__heading {
  text-align: center;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.p-topService__heading.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.p-topService__title {
  font-family: "Figtree", sans-serif;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #006cb8;
}
@media screen and (min-width: 768px) {
  .p-topService__title {
    font-size: 3.125rem;
  }
}

.p-topService__subtitle {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #006cb8;
}
@media screen and (min-width: 768px) {
  .p-topService__subtitle {
    font-size: 1.125rem;
  }
}

.p-topService__list {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-topService__list {
    margin-top: 4.375rem;
  }
}

.p-topService__item {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
@media screen and (min-width: 768px) {
  .p-topService__item {
    display: grid;
    grid-template-columns: 37.5rem 31.5625rem;
    -moz-column-gap: 4.0625rem;
         column-gap: 4.0625rem;
    align-items: start;
  }
}

.p-topService__item + .p-topService__item {
  margin-top: 2.4375rem;
}
@media screen and (min-width: 768px) {
  .p-topService__item + .p-topService__item {
    margin-top: 1.875rem;
  }
}

.p-topService__item.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.p-topService__image {
  width: 18.75rem;
  height: 11.875rem;
  border-radius: 1.25rem;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #f9f9f9;
}
@media screen and (min-width: 768px) {
  .p-topService__image {
    width: 37.5rem;
    height: 23.75rem;
  }
}

@media screen and (min-width: 768px) {
  .p-topService__body {
    padding-top: 3.625rem;
  }
}

.p-topService__line {
  display: block;
  width: 2.1875rem;
  height: 0.2625rem;
  margin-top: 1.5625rem;
  border-radius: 0.1875rem;
  background: linear-gradient(90deg, #44af46 0%, #006eb5 100%);
}
@media screen and (min-width: 768px) {
  .p-topService__line {
    width: 3.125rem;
    height: 0.375rem;
    margin-top: 0;
  }
}

.p-topService__itemTitle {
  margin-top: 0.75rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-topService__itemTitle {
    margin-top: 1.0625rem;
    font-size: 1.875rem;
    line-height: 1.6666666667;
  }
}

.p-topService__itemTitleText {
  display: block;
}

.p-topService__itemTitleText--pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-topService__itemTitleText--pc {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .p-topService__itemTitleText--sp {
    display: none;
  }
}

.p-topService__itemTitleSuffix {
  white-space: nowrap;
}
@media screen and (min-width: 1000px) {
  .p-topService__itemTitleSuffix {
    white-space: normal;
  }
}

.p-topService__itemTitleBreak--desktop {
  display: none;
}
@media screen and (min-width: 1000px) {
  .p-topService__itemTitleBreak--desktop {
    display: initial;
  }
}

.p-topService__text {
  margin-top: 0.5625rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2.1428571429;
  letter-spacing: 0.075em;
  color: #333;
}
@media screen and (min-width: 768px) {
  .p-topService__text {
    width: 31.25rem;
    margin-top: 1.4375rem;
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.05em;
  }
}

.p-topService__button {
  position: relative;
  display: grid;
  place-items: center start;
  width: 13.75rem;
  height: 3.125rem;
  margin-top: 2.875rem;
  margin-inline: auto;
  padding-left: 1.4125rem;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #fff;
  border-radius: 0.375rem;
  background: linear-gradient(90deg, #3688c8 0%, #1978c1 100%);
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.3s;
}
@media screen and (min-width: 768px) {
  .p-topService__button {
    width: 19.375rem;
    height: 4.375rem;
    margin-top: 3.4375rem;
    padding-left: 2.1875rem;
    font-size: 1rem;
  }
}

.p-topService__button.is-inview {
  opacity: 1;
  transform: translateY(0);
}

.p-topService__button:hover {
  opacity: 1;
  filter: brightness(1.08);
}

.p-topService__buttonArrow {
  position: absolute;
  top: 50%;
  right: 1.5625rem;
  width: 0.6875rem;
  height: 0.41875rem;
  transform: translateY(-50%);
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .p-topService__buttonArrow {
    width: 1rem;
    height: 0.6125rem;
  }
}

.p-topService__button:hover .p-topService__buttonArrow {
  transform: translate(0.25rem, -50%);
}

@media (prefers-reduced-motion: reduce) {
  .p-topService__heading,
  .p-topService__item,
  .p-topService__button {
    opacity: 1;
    transform: translateY(0);
    transition: none;
  }
  .p-topService__buttonArrow {
    transition: none;
  }
}
@media screen and (min-width: 768px) {
  .u-spOnly {
    display: none;
  }
}