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

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

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

ol,
ul {
  list-style: none;
}

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

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

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

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

/* 未使用 */
/* 28.8px */
body {
  color: #202020;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background: #F5F5F5;
}

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

a {
  color: inherit;
}

.wrapper {
  overflow: hidden;
}

figure {
  margin: 0;
  padding: 0;
  list-style: none;
}

figcaption {
  margin: 0;
  padding: 0;
}

.l-inner {
  max-width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .l-inner {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1200px;
  }
}

.c-button-link {
  text-align: center;
}

.c-button {
  display: inline-block;
  color: #FDFDFD;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
  padding-top: 16px;
  padding-bottom: 16px;
  padding-left: 48px;
  padding-right: 48px;
  background: #599CC2;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.c-button:hover {
  background-color: #FDFDFD;
  color: #599CC2;
  border-color: #599CC2;
}

.c-button-reverse {
  padding-left: 46px;
  padding-right: 46px;
  background: #FDFDFD;
  color: #599CC2;
  border: 1px solid currentColor;
  transition: all 0.3s;
}
.c-button-reverse:hover {
  background-color: #599CC2;
  color: #FDFDFD;
  border-color: #599CC2;
}

.c-button-login {
  padding-left: 37px;
  padding-right: 37px;
  padding-top: 13px;
  padding-bottom: 11px;
}

.c-button-icon {
  padding: 17px 10px 16px 42px;
  text-align: center;
  width: min(100%, 390px);
  position: relative;
}
@media (min-width: 992px) {
  .c-button-icon {
    width: 280px;
    padding: 10px 10px 10px 42px;
  }
}
.c-button-icon::before {
  position: absolute;
  content: "";
  width: 32px;
  height: 32px;
  background-image: url("/img/deco-icon__people.svg");
  background-position: center center;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
}

.c-button-icon-large {
  padding: 9px 10px 10px 42px;
  text-align: center;
  width: min(100%, 350px);
  position: relative;
}
@media (min-width: 992px) {
  .c-button-icon-large {
    width: 385px;
    padding: 10px 10px 10px 42px;
  }
}

.c-button-icon-reverse {
  background: #FDFDFD;
  color: #202020;
  border: 1px solid #202020;
}
.c-button-icon-reverse::before {
  background-image: url("/img/deco-icon__mail.svg");
}
.c-button-icon-reverse:hover {
  background-color: #202020;
  color: #FDFDFD;
}

.c-button-scroll-horizontal {
  position: absolute;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.8;
  /*矢印の動き1秒かけて永遠にループ*/
  animation: arrowmove 2s ease-in-out infinite;
}
.c-button-scroll-horizontal::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 11px;
  background-image: url(/img/img-icon-scroll-horizontal.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
  0% {
    right: 0px;
  }
  50% {
    right: 10px;
  }
  100% {
    right: 0px;
  }
}
.c-button-contact {
  width: min(100%, 390px);
  margin-inline: auto;
}
@media (min-width: 992px) {
  .c-button-contact {
    width: min(100%, 326px);
    padding-top: 13px;
    padding-bottom: 13px;
  }
}

.c-heading {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-heading-reverse {
  color: #FDFDFD;
}

.c-heading__ttl-en {
  font-family: "Roboto", sans-serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 700;
}
@media (min-width: 992px) {
  .c-heading__ttl-en {
    font-size: 3.875rem;
  }
}

.c-heading__ttl-ja {
  line-height: 1.8;
  font-weight: 400;
}
@media (min-width: 992px) {
  .c-heading__ttl-ja {
    font-size: 18px;
    line-height: 1.5;
  }
}

.p-header {
  background: #FDFDFD;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 60;
}

.p-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  padding-right: 20px;
  padding-left: 20px;
}
@media (min-width: 992px) {
  .p-header__inner {
    padding-left: 30px;
    padding-right: 30px;
    max-width: 1440px;
    margin-right: auto;
    margin-left: auto;
  }
}

.p-header__logo a {
  display: block;
  width: 156px;
  height: 38.905px;
}
@media (min-width: 992px) {
  .p-header__logo a {
    width: 200px;
    height: 49.878px;
  }
}

.p-header__nav {
  display: none;
}
@media (min-width: 1200px) {
  .p-header__nav {
    display: block;
  }
}

.p-header__nav-list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}
.p-header__nav-list li:nth-of-type(6) {
  margin-left: 10px;
  position: relative;
}
.p-header__nav-list li:nth-of-type(6)::before {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  left: -10px;
  width: 1px;
  height: 32px;
  background: #599CC2;
}

.p-header__nav-item {
  padding: 15px;
}
@media (min-width: 992px) {
  .p-header__nav-item:nth-of-type(7) {
    padding: 0;
  }
}

.drawer-active {
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.drawer-active::after {
  position: absolute;
  content: "";
  width: 110%;
  height: 3px;
  background: #599CC2;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s ease 0s;
  opacity: 0;
}
.drawer-active:hover {
  cursor: pointer;
  color: #599CC2;
}
.drawer-active:hover::after {
  opacity: 1;
  bottom: -5.5px;
}

.drawer-icon {
  width: 30px;
  height: 9px;
  right: 7px;
  z-index: 71;
  z-index: 100;
  position: fixed;
  top: 36px;
  right: 27px;
  transition: transform 0.3s ease;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(1) {
  transform: rotate(45deg);
  top: 4.5px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-of-type(2) {
  transform: rotate(-45deg);
  top: 4.5px;
}

@media (min-width: 1200px) {
  .p-header__open {
    display: none;
  }
}

.drawer-icon__bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #202020;
}
.drawer-icon__bar:nth-of-type(1) {
  top: 0;
}
.drawer-icon__bar:nth-of-type(2) {
  top: 7px;
}

.p-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 59;
  display: none;
}
.p-overlay.is-checked {
  display: block;
}

/* drawer */
.p-drawer-content {
  width: 400px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #FDFDFD;
  z-index: 70;
  padding-left: 20px;
  padding-right: 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.p-drawer-content.is-checked {
  transform: translateX(0);
}

.p-drawer__title-wrap {
  display: flex;
  width: 100%;
  height: 80px;
  justify-content: space-between;
  align-items: center;
}

.p-drawer__logo {
  width: 156px;
}

.drawer-icon-open {
  width: 30px;
  height: 9px;
  right: 7px;
  position: relative;
}

.drawer-icon__bar-open {
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #202020;
}
.drawer-icon__bar-open:nth-of-type(1) {
  transform: rotate(45deg);
  top: 4.5px;
}
.drawer-icon__bar-open:nth-of-type(2) {
  transform: rotate(-45deg);
  top: 4.5px;
}

.p-drawer-content__menu {
  padding-top: 50px;
  padding-bottom: 50px;
}

.p-drawer-content__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.p-drawer-content__item {
  text-align: center;
}

.p-drawer-content__link {
  display: block;
  padding-top: 10px;
  padding-bottom: 10px;
  text-align: center;
  line-height: 1.8;
}

.p-drawer-content__button-wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-drawer-button {
  width: min(100%, 300px);
  margin-left: auto;
  margin-right: auto;
}

.p-fv {
  margin-top: 80px;
}

.p-fv__inner {
  padding-top: 54px;
  padding-bottom: 50px;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .p-fv__inner {
    width: 1120px;
    max-width: 100%;
    padding-inline: 20px;
    margin-inline: auto;
    padding-top: 128px;
  }
}

.p-fv__container {
  background-image: url(/img/img-fv_bg-sp.webp);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 497px;
}
@media (min-width: 992px) {
  .p-fv__container {
    height: 678px;
    position: relative;
  }
}

.p-fv__heading-ttl {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media (min-width: 992px) {
  .p-fv__heading-ttl {
    gap: 20px;
  }
}

.p-fv__heading__main-ttl {
  color: #FDFDFD;
  font-size: 28px;
  font-weight: 700;
  line-height: 0.8; /* 28px */
}
.p-fv__heading__main-ttl p:last-child {
  margin-top: 2px;
}
@media (min-width: 992px) {
  .p-fv__heading__main-ttl p:last-child {
    margin-top: 4px;
  }
}
@media (min-width: 992px) {
  .p-fv__heading__main-ttl {
    font-size: 52px;
  }
}
.p-fv__heading__main-ttl strong {
  color: #599CC2;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}
@media (min-width: 992px) {
  .p-fv__heading__main-ttl strong {
    font-size: 38px;
  }
}
@media (min-width: 992px) and (min-width: 992px) {
  .p-fv__heading__main-ttl strong {
    font-size: 72px;
  }
}

.p-fv__heading__sub-ttl {
  color: #FDFDFD;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6; /* 28.8px */
}
.p-fv__heading__sub-ttl p:last-child {
  margin-top: 3px;
}
@media (min-width: 992px) {
  .p-fv__heading__sub-ttl p:last-child {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .p-fv__heading__sub-ttl {
    font-size: 18px;
  }
}

.p-fv__heading__concept {
  padding-top: 12px;
  color: #FDFDFD;
  font-weight: 700;
}
@media (min-width: 992px) {
  .p-fv__heading__concept {
    padding-top: 28px;
  }
}

.p-fv__concept-list {
  display: flex;
  align-items: center;
  height: 68px;
}
@media (min-width: 992px) {
  .p-fv__concept-list {
    height: 102px;
  }
}

.p-fv__concept-item {
  width: 68px;
  height: 68px;
  text-align: center;
  border: 1px solid #FDFDFD;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .p-fv__concept-item {
    width: 102px;
    height: 102px;
  }
}
.p-fv__concept-item:nth-of-type(1) {
  font-size: 16px;
}
@media (min-width: 992px) {
  .p-fv__concept-item:nth-of-type(1) {
    font-size: 24px;
  }
}
.p-fv__concept-item:nth-of-type(2) {
  font-size: 13px;
  position: relative;
}
@media (min-width: 992px) {
  .p-fv__concept-item:nth-of-type(2) {
    font-size: 18px;
  }
}
.p-fv__concept-item:nth-of-type(2)::before {
  position: absolute;
  content: "";
  display: block;
  height: 1.6px;
  width: 15px;
  rotate: 45deg;
  top: 50%;
  transform: translateY(-50%);
  left: -8px;
  background: #FDFDFD;
}
@media (min-width: 992px) {
  .p-fv__concept-item:nth-of-type(2)::before {
    width: 22px;
    left: -12px;
  }
}
.p-fv__concept-item:nth-of-type(2)::after {
  position: absolute;
  content: "";
  display: block;
  height: 1.6px;
  width: 15px;
  rotate: -45deg;
  top: 50%;
  transform: translateY(-50%);
  left: -8px;
  background: #FDFDFD;
}
@media (min-width: 992px) {
  .p-fv__concept-item:nth-of-type(2)::after {
    width: 22px;
    left: -12px;
  }
}
.p-fv__concept-item:nth-of-type(3) {
  font-size: 13px;
  position: relative;
}
@media (min-width: 992px) {
  .p-fv__concept-item:nth-of-type(3) {
    font-size: 18px;
  }
}
.p-fv__concept-item:nth-of-type(3)::before {
  position: absolute;
  content: "";
  display: block;
  height: 1.6px;
  width: 15px;
  rotate: 45deg;
  top: 50%;
  transform: translateY(-50%);
  left: -8px;
  background: #FDFDFD;
}
@media (min-width: 992px) {
  .p-fv__concept-item:nth-of-type(3)::before {
    width: 22px;
    left: -12px;
  }
}
.p-fv__concept-item:nth-of-type(3)::after {
  position: absolute;
  content: "";
  display: block;
  height: 1.6px;
  width: 15px;
  rotate: -45deg;
  top: 50%;
  transform: translateY(-50%);
  left: -8px;
  background: #FDFDFD;
}
@media (min-width: 992px) {
  .p-fv__concept-item:nth-of-type(3)::after {
    width: 22px;
    left: -12px;
  }
}

.p-fv__buttons {
  padding-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 19px;
}

.p-fv__bottom {
  background: #FDFDFD;
}
@media (min-width: 992px) {
  .p-fv__bottom {
    position: absolute;
    top: 573px;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
  }
}

.p-fv__bottom__inner {
  width: 100%;
  margin-inline: auto;
  padding-top: 30px;
  padding-bottom: 32px;
}
@media (min-width: 992px) {
  .p-fv__bottom__inner {
    width: 900px;
    max-width: 100%;
    padding-inline: 30px;
    margin-inline: auto;
    display: flex;
    justify-content: center;
    gap: 84px;
  }
}

.p-fv__bottom-logo {
  display: none;
}
@media (min-width: 992px) {
  .p-fv__bottom-logo {
    display: block;
    width: 136.69px;
    margin-top: 5px;
  }
}

.p-fv__bottom-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 270px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .p-fv__bottom-content {
    width: 360px;
    margin-right: 0;
    margin-left: 0;
    gap: 12px;
  }
}

.p-fv__content-ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8; /* 32.4px */
}
@media (min-width: 992px) {
  .p-fv__content-ttl {
    font-size: 24px;
  }
}

.p-fv__content-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  padding-left: 28px;
}
@media (min-width: 992px) {
  .p-fv__content-list {
    gap: 12px;
    padding-left: 58px;
  }
}
.p-fv__content-list li {
  position: relative;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .p-fv__content-list li {
    width: 267px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-fv__content-list li::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  top: 50%;
  transform: translateY(-50%);
  left: -28px;
  background-image: url(/img/img-check.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.p-login {
  display: none;
}
@media (min-width: 1200px) {
  .p-login {
    display: block;
    background: #FDFDFD;
    max-width: 320px;
    margin-inline: auto;
    position: absolute;
    top: 50px;
    right: 50px;
  }
}

.p-login__inner {
  padding: 30px 20px;
}

.p-login__fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-right: 22px;
  padding-left: 22px;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.75rem;
}

.login-field__label {
  font-weight: 700;
}

.login-text {
  -moz-appearance: none;
  -webkit-appearance: none;
  box-sizing: border-box;
  border-radius: 5px;
  color: #A1A1A1;
  border: 1px solid #D9D9D9;
  background: #F5F5F5;
  height: 42px;
  width: 100%;
  padding: 12px 10px;
}

.p-login__privacy {
  margin-top: 15px;
  text-align: center;
  font-size: 12px;
}

.login-checkbox {
  box-sizing: border-box;
}

.login-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.login-checkbox__input:checked + .login-checkbox__text::after {
  opacity: 1;
}

.login-checkbox__text {
  position: relative;
  padding-left: 18px;
}
.login-checkbox__text a {
  color: #599CC2;
}

.login-checkbox__text::before,
.login-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.login-checkbox__text::before {
  width: 10px;
  height: 10px;
  border-radius: 2px;
  border: 1px solid #A1A1A1;
}

.login-checkbox__text::after {
  width: 16px;
  height: 15px;
  left: 0px;
  margin-top: -1.2px;
  background: url("../img/img-check.svg") no-repeat center center/contain;
  opacity: 0;
  transition: opacity 0.3s;
}

.p-login__buttons {
  margin-top: 17px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.p-login__button-text {
  position: relative;
  margin: 0 22px;
  text-align: center;
}
.p-login__button-text::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #202020;
}
.p-login__button-text span {
  position: relative;
  padding: 8px;
  background: #FDFDFD;
}

.p-reason {
  margin-top: 249px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .p-reason {
    margin-top: 204px;
  }
}

.p-reason__inner {
  max-width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 992px) {
  .p-reason__inner {
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.p-reason__cards {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
@media (min-width: 992px) {
  .p-reason__cards {
    margin-top: 72px;
    gap: 72px;
  }
}

.p-reason__card {
  display: flex;
  flex-direction: column-reverse;
  position: relative;
}
@media (min-width: 992px) {
  .p-reason__card {
    flex-direction: row-reverse;
    justify-content: center;
    gap: 52px;
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .p-reason__card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(50% - 280px);
    right: calc(50% - 50vw);
    background-color: #FDFDFD;
    z-index: -1;
  }
  .p-reason__card:first-child .reason-card__image {
    width: 457px;
    margin-left: 52px;
  }
  .p-reason__card:nth-child(2) .reason-card__image {
    width: 475px;
    height: 329px;
    margin-right: 40px;
  }
  .p-reason__card:nth-child(3) {
    gap: 42px;
    padding-top: 36px;
  }
  .p-reason__card:nth-child(3) .reason-card__content {
    margin-top: 34px;
  }
  .p-reason__card:nth-child(3) .reason-card__image {
    margin-left: 42px;
    width: 475px;
    height: 329px;
  }
}

@media (min-width: 992px) {
  .p-reason__card-reverse {
    flex-direction: row;
    gap: 42px;
  }
  .p-reason__card-reverse::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: calc(50% - 280px);
    left: calc(50% - 50vw);
    background-color: #FDFDFD;
    z-index: -1;
  }
  .p-reason__card-reverse .reason-card__content {
    margin-top: 9px;
  }
  .p-reason__card-reverse .reason-card__heading-ja {
    line-height: 1.5;
    margin-top: -3px;
  }
}

.reason-card__inner {
  flex-direction: row;
}
@media (min-width: 992px) {
  .reason-card__inner {
    display: flex;
  }
}

@media (min-width: 992px) {
  .reason-card__content {
    width: 560px;
    margin-top: 26px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.reason-card__heading {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 3px solid #599CC2;
}
@media (min-width: 992px) {
  .reason-card__heading {
    padding-top: 0;
    padding-bottom: 19px;
  }
}

.reason-card__heading-en {
  color: #599CC2;
  /* SP/roboto16px */
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8; /* 28.8px */
}
@media (min-width: 992px) {
  .reason-card__heading-en {
    font-size: 18px;
  }
}

.reason-card__heading-ja {
  color: #202020;
  /* SP/本文強調24px */
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8; /* 43.2px */
}
@media (min-width: 992px) {
  .reason-card__heading-ja {
    margin-top: -4px;
    line-height: 1.5;
  }
}

.reason-card__body {
  padding-top: 20px;
  /* SP/本文16px */
  font-weight: 400;
  line-height: 1.8; /* 28.8px */
}
@media (min-width: 992px) {
  .reason-card__body {
    line-height: 1.5;
  }
}

.reason-card__image img {
  display: block;
  height: auto;
}

.p-pickup {
  background-image: url(/img/img-picup_bg-sp.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 641px;
}
@media (min-width: 992px) {
  .p-pickup {
    height: 808px;
    margin-top: 52px;
  }
}

.p-pickup__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
  padding-right: 20px;
  padding-left: 20px;
  overflow: hidden;
}
@media (min-width: 992px) {
  .p-pickup__inner {
    padding-top: 102px;
  }
}

.p-pickup__container {
  position: relative;
  padding-bottom: 37px;
}
@media (min-width: 992px) {
  .p-pickup__container {
    max-width: 966px;
    margin-inline: auto;
    padding-bottom: 80px;
  }
}

.p-reason__heading {
  transition-timing-function: linear;
}

.pickup__slider {
  margin-top: 50px;
  width: 100%;
}
@media (min-width: 1200px) {
  .pickup__slider {
    margin-top: 69px;
  }
}

.pickup-slide {
  width: 300px;
  height: auto;
  transform: translate(-55%, 0) !important;
}
.pickup-card {
  display: flex;
  flex-direction: column-reverse;
  border-radius: 15px;
  overflow: hidden;
  height: 100%;
}

.pickup-card__body {
  background: #FDFDFD;
  padding-top: 22px;
  padding-bottom: 30px;
  padding-right: 30px;
  padding-left: 30px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 20px;
}
@media (min-width: 1200px) {
  .pickup-card__body {
    gap: 20px;
    padding-bottom: 28px;
  }
}

.pickup-card__company {
  text-align: center;
  font-size: 16px;
}

.pickup-card__text {
  line-height: 1.8;
}
@media (min-width: 1200px) {
  .pickup-card__text {
    line-height: 1.5;
  }
}

.pickup-card__img {
  width: 300px;
  height: 168px;
}

.pickup__pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  bottom: 0 !important;
}
.pickup__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin-left: 0 !important;
  margin-right: 0 !important;
  background: #FDFDFD;
  opacity: 1;
}
.pickup__pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #599CC2;
}
@media (min-width: 1200px) {
  .pickup__pagination {
    gap: 12px;
  }
  .pickup__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.pickup__prev,
.pickup__next {
  display: none;
}
@media (min-width: 1200px) {
  .pickup__prev,
  .pickup__next {
    display: block;
    width: 42px;
    height: 42px;
    display: block; /* 全カードが表示されてもボタンを表示 */
    visibility: visible; /* 全カードが表示されてもボタンを表示 */
    opacity: 1; /* 初期値の薄くなる表示をリセット */
  }
}
.pickup__prev::after,
.pickup__next::after {
  display: none;
}

.pickup__prev {
  left: -78px;
  top: 46%;
  transform: translateY(-50%);
  background: url(/img/img-arrow__prev.webp) no-repeat center center/contain;
}

.pickup__next {
  right: -78px;
  top: 46%;
  transform: translateY(-50%);
  background: url(/img/img-arrow__next.webp) no-repeat center center/contain;
}

.p-cta {
  background: linear-gradient(180deg, #599CC2 0%, #8BBFDD 100%);
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative;
}
@media (min-width: 1200px) {
  .p-cta {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.cta-second {
  margin-top: -2px;
}

.p-cta__container {
  display: grid;
  frid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
}
@media (min-width: 1200px) {
  .p-cta__container {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}

.p-cta__item {
  border-radius: 15px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  background: #FDFDFD;
  padding-top: 22px;
  padding-right: 20px;
  padding-left: 20px;
  padding-bottom: 20px;
  display: flex;
  max-width: 545px;
  width: 100%;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  margin: 0 auto;
}
@media (min-width: 1200px) {
  .p-cta__item {
    padding: 50px;
    gap: 32px;
  }
}
.p-cta__item:nth-child(2) .p-cta__text {
  position: relative;
  padding-left: 40px;
}
.p-cta__item:nth-child(2) .p-cta__text p:nth-child(2) {
  padding-left: 8px;
}
@media (min-width: 992px) {
  .p-cta__item:nth-child(2) .p-cta__text {
    padding-left: 50px;
  }
}
.p-cta__item:nth-child(2) .p-cta__text::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: url("/img/deco-icon-cta_presentBox.svg");
  background-position: center center;
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: 3px;
}
@media (min-width: 1200px) {
  .p-cta__item:nth-child(2) .p-cta__text::before {
    width: 50px;
    height: 50px;
  }
}

.p-cta__text {
  text-align: center;
}
.p-cta__text p {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 992px) {
  .p-cta__text p {
    font-size: 18px;
    line-height: 1.5;
  }
}

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

.p-cta__decoration {
  position: absolute;
  overflow: hidden;
}

.p-cta__decoration__whiteLogo {
  bottom: 0;
  display: block;
}

.p-function {
  padding-top: 51px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .p-function {
    padding-top: 100px;
  }
}

.p-function__inner {
  max-width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .p-function__inner {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 980px;
  }
}

.p-function__items {
  margin-top: 33px;
  gap: 30px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .p-function__items {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    align-items: stretch; /* アイテムの高さを揃える */
    margin-top: 70px;
  }
}

.function-item {
  border-radius: 5px;
  background: #FDFDFD;
  /* card */
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 30px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1200px) {
  .function-item {
    width: calc(50% - 16px);
    padding-top: 27px;
    padding-bottom: 28px;
  }
}

.function-item__heading {
  display: flex;
  gap: 10px;
}
@media (min-width: 992px) {
  .function-item__heading {
    align-items: center;
  }
}

.function-item__icon {
  width: 36px;
}

.function-item__ttl {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8; /* 32.4px */
}
.function-item__ttl p {
  font-weight: 700;
}
@media (min-width: 992px) {
  .function-item__ttl {
    font-size: 24px;
  }
  .function-item__ttl p:last-child {
    margin-top: 5px;
    margin-top: -9px;
  }
}

.function-item__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-top: 11px;
}
@media (min-width: 992px) {
  .function-item__text {
    line-height: 1.5;
    margin-top: 9px;
  }
}

.p-price {
  padding-top: 49px;
  padding-bottom: 50px;
  background: #FDFDFD;
}
@media (min-width: 992px) {
  .p-price {
    margin-top: 52px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.p-price__heading__container {
  padding-left: 20px;
  padding-right: 20px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}

.p-price__button {
  margin-top: 12px;
  position: relative;
  right: 8%;
}

.p-price__table {
  margin-top: 43px;
  overflow: auto;
  padding-right: 20px;
  padding-left: 12px;
}
@media (min-width: 992px) {
  .p-price__table {
    margin-top: 74px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

.price-table-container {
  overflow-x: auto;
  white-space: normal;
  width: 100%;
  position: relative;
  -webkit-overflow-scrolling: touch; /* スムーズなタッチスクロールをサポート */
  -ms-overflow-style: none; /* IEとEdge向け */
  scrollbar-width: none; /* Firefox向け */
}

/* Webkit系ブラウザ（Chrome, Safari, Edgeなど）のスクロールバーを非表示にする */
.price-table-container::-webkit-scrollbar {
  display: none;
}

.price-table {
  width: 866px;
  border-collapse: collapse; /* 一重線 */
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
  border-collapse: separate; /* border-spacingを使うためにseparateに変更 */
  border-spacing: 3px 0;
  padding-bottom: 6px;
  padding-top: 6px;
  /* テーブル全体 */
  /* テーブルのタイトル行 */
  /* テーブルのデータ行 */
}
@media (min-width: 992px) {
  .price-table {
    border-spacing: 8px 0;
    width: 1118px;
  }
}
.price-table th,
.price-table td {
  text-align: center;
  border: none;
  vertical-align: middle;
}
.price-table th:nth-child(1),
.price-table td:nth-child(1) {
  width: 150px;
}
@media (min-width: 992px) {
  .price-table th:nth-child(1),
  .price-table td:nth-child(1) {
    width: 382px;
  }
}
.price-table th:nth-child(2),
.price-table td:nth-child(2) {
  width: 220px;
}
@media (min-width: 992px) {
  .price-table th:nth-child(2),
  .price-table td:nth-child(2) {
    width: 232px;
  }
}
.price-table th:nth-child(3),
.price-table td:nth-child(3) {
  width: 220px;
}
@media (min-width: 992px) {
  .price-table th:nth-child(3),
  .price-table td:nth-child(3) {
    width: 232px;
  }
}
.price-table th:nth-child(4),
.price-table td:nth-child(4) {
  width: 220px;
}
@media (min-width: 992px) {
  .price-table th:nth-child(4),
  .price-table td:nth-child(4) {
    width: 232px;
  }
}
.price-table thead th {
  vertical-align: baseline;
  padding: 30px 20px;
}
@media (min-width: 992px) {
  .price-table thead th {
    padding: 30px 20px;
  }
}
.price-table thead th .head__wrap {
  display: flex;
  flex-direction: column;
}
.price-table thead th:nth-child(2) {
  border-right: 6px solid #599CC2;
  border-left: 6px solid #599CC2;
  position: relative;
}
.price-table thead th:nth-child(2)::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px; /* 右側にはみ出すように調整 */
  width: 231px;
  height: 6px;
  background-color: #599CC2; /* 枠線の色 */
}
@media (min-width: 992px) {
  .price-table thead th:nth-child(2)::before {
    width: 232px;
  }
}
.price-table thead th:nth-child(3) {
  border-right: 6px solid #A1A1A1;
  border-left: 6px solid #A1A1A1;
  position: relative;
}
.price-table thead th:nth-child(3)::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px; /* 右側にはみ出すように調整 */
  width: 231px;
  height: 6px;
  background-color: #A1A1A1; /* 枠線の色 */
}
@media (min-width: 992px) {
  .price-table thead th:nth-child(3)::before {
    width: 232px;
  }
}
.price-table thead th:nth-child(4) {
  border-right: 6px solid #DCDCDC;
  border-left: 6px solid #DCDCDC;
  position: relative;
}
.price-table thead th:nth-child(4)::before {
  content: "";
  position: absolute;
  left: -6px;
  top: -6px; /* 右側にはみ出すように調整 */
  width: 232px;
  height: 6px;
  background-color: #DCDCDC; /* 枠線の色 */
}
@media (min-width: 992px) {
  .price-table thead th:nth-child(4) .table-button {
    margin-top: 49px;
  }
}
.price-table tbody {
  font-size: 14px;
  line-height: 1.8;
  /* データ行全体 */
  /* データ行のデータ列のみ */
  /* 1列目にのみボーダーを適用 */
  /* 2列目にのみボーダーを適用 */
  /* 3列目にのみボーダーを適用 */
  /* 4列目にのみボーダーを適用 */
}
@media (min-width: 992px) {
  .price-table tbody th,
  .price-table tbody td {
    height: 44px;
  }
}
.price-table tbody td img {
  width: 32px;
}
.price-table tbody th:nth-child(1),
.price-table tbody td:nth-child(1) {
  border-right: 6px solid #FDFDFD;
}
.price-table tbody th:nth-child(2),
.price-table tbody td:nth-child(2) {
  border-left: 6px solid #599CC2;
  border-right: 6px solid #599CC2;
}
.price-table tbody tr:last-child td:nth-child(2) {
  position: relative;
}
.price-table tbody tr:last-child td:nth-child(2)::before {
  content: "";
  position: absolute;
  left: -6px;
  right: 6px;
  bottom: -6px; /* 右側にはみ出すように調整 */
  width: 231px;
  height: 6px;
  background-color: #599CC2; /* 枠線の色 */
}
@media (min-width: 992px) {
  .price-table tbody tr:last-child td:nth-child(2)::before {
    width: 232px;
  }
}
.price-table tbody th:nth-child(3),
.price-table tbody td:nth-child(3) {
  border-left: 6px solid #A1A1A1;
  border-right: 6px solid #A1A1A1;
}
.price-table tbody tr:last-child td:nth-child(3) {
  position: relative;
}
.price-table tbody tr:last-child td:nth-child(3)::before {
  content: "";
  position: absolute;
  left: -6px;
  right: 6px;
  bottom: -6px; /* 右側にはみ出すように調整 */
  width: 231px;
  height: 6px;
  background-color: #A1A1A1; /* 枠線の色 */
}
@media (min-width: 992px) {
  .price-table tbody tr:last-child td:nth-child(3)::before {
    width: 232px;
  }
}
.price-table tbody th:nth-child(4),
.price-table tbody td:nth-child(4) {
  border-left: 6px solid #DCDCDC;
  border-right: 6px solid #DCDCDC;
}
.price-table tbody tr:last-child td:nth-child(4) {
  position: relative;
}
.price-table tbody tr:last-child td:nth-child(4)::before {
  content: "";
  position: absolute;
  left: -6px;
  right: 6px;
  bottom: -6px; /* 右側にはみ出すように調整 */
  width: 232px;
  height: 6px;
  background-color: #DCDCDC; /* 枠線の色 */
}
.price-table tbody th {
  padding-top: 5px;
  padding-bottom: 5px;
}
@media (min-width: 992px) {
  .price-table tbody th {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 16px;
  }
}
.price-table tbody:last-of-type {
  height: auto; /* 行の高さを自動に設定 */
}
.price-table tbody tr:nth-child(odd) {
  background: #F5F5F5;
}

.price-table__head p {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 992px) {
  .price-table__head p {
    line-height: 1.5;
  }
}
.price-table__head p:nth-of-type(2) {
  font-family: "Roboto", sans-serif;
  margin-top: 1px;
  line-height: 1.8;
  font-weight: 700;
  font-size: 16px;
}
@media (min-width: 992px) {
  .price-table__head p:nth-of-type(2) {
    margin-top: 4px;
    line-height: 1.5;
  }
}

.price-table__text {
  margin-top: 17px;
  font-size: 14px;
  line-height: 1.8;
  text-align: left;
  height: 100px;
}
@media (min-width: 992px) {
  .price-table__text {
    font-size: 16px;
    line-height: 1.5;
    height: auto;
    margin-top: 16px;
  }
}

.price-text P {
  display: block;
  padding-top: 9px;
}
@media (min-width: 992px) {
  .price-text P {
    padding-top: 57px;
  }
}

.price-table__price {
  font-size: 18px;
  line-height: 1.5;
  height: 72px;
  vertical-align: middle;
  margin-top: 16px;
}
.price-table__price span {
  font-family: "Roboto", sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 4px;
}

.price-table__button {
  margin-top: 16px;
}

.table-button {
  padding-top: 7px;
  padding-bottom: 7px;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}
@media (min-width: 992px) {
  .table-button {
    margin-top: 0;
  }
}

.p-price__info-container {
  padding-left: 20px;
  padding-right: 20px;
}

.p-price__info {
  margin-top: 42px;
}
@media (min-width: 992px) {
  .p-price__info {
    max-width: 900px;
    margin-inline: auto;
    margin-top: 76px;
  }
}

@media (min-width: 992px) {
  .p-price__info__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-price__info__container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-price__info__ttl {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 992px) {
  .p-price__info__ttl {
    font-size: 18px;
    line-height: 1.5;
  }
}
.p-price__info__ttl::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #599CC2;
  margin-top: -1px;
}
@media (min-width: 992px) {
  .p-price__info__ttl::after {
    width: 860px;
    margin-top: 2px;
  }
}

.p-price__info__text ul {
  line-height: 1.8;
}
@media (min-width: 992px) {
  .p-price__info__text ul {
    line-height: 1.5;
  }
}
.p-price__info__text ul li span {
  color: #599CC2;
  font-weight: 700;
}
.p-price__info__text ul li:nth-of-type(2) {
  margin-top: 10px;
}

.p-qa {
  padding-top: 50px;
  padding-bottom: 55px;
}
@media (min-width: 992px) {
  .p-qa {
    padding-top: 100px;
    padding-bottom: 104px;
  }
}

@media (min-width: 992px) {
  .p-qa__inner {
    max-width: 940px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.p-qa__boxes {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .p-qa__boxes {
    margin-top: 72px;
    gap: 24px;
  }
}

.p-qa__box {
  display: flex;
  flex-direction: column;
}
.p-qa__box.is-open .qa-box__head::after {
  transform: rotate(0deg);
}
@media (min-width: 992px) {
  .p-qa__box:nth-child(3) .qa-box__head-text {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .p-qa__box:nth-child(4) .qa-box__head-icon {
    padding-top: 10px;
  }
  .p-qa__box:nth-child(4) .qa-box__head-text {
    padding-bottom: 15px;
  }
}

.qa-box {
  background: #FDFDFD;
  border-radius: 15px;
  /* card */
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.qa-box__head {
  position: relative;
  padding-left: 20px;
  padding-right: 49px;
  padding-top: 20px;
  padding-bottom: 20px;
  gap: 5px;
  display: flex;
  flex-direction: row-reverse;
  align-items: start;
}
@media (min-width: 992px) {
  .qa-box__head {
    padding-top: 33px;
    padding-bottom: 12px;
    padding-left: 52px;
    padding-right: 50px;
  }
}
.qa-box__head::before, .qa-box__head::after {
  position: absolute;
  content: "";
  border-radius: 2px;
  width: 24px;
  height: 2.6px;
  top: 50%;
  right: 20px;
  background: #599CC2;
  transition: transform 0.3s ease; /* アニメーションの追加 */
}
@media (min-width: 992px) {
  .qa-box__head::before, .qa-box__head::after {
    display: none;
  }
}
.qa-box__head::after {
  transform: rotate(90deg);
}

.qa-box__head-text {
  display: flex;
  flex: 1;
  width: 100%;
  text-align: left;
  font-size: 16px;
  position: relative;
  font-weight: 700;
  line-height: 1.8;
}
@media (min-width: 992px) {
  .qa-box__head-text {
    font-size: 18px;
    line-height: 1.5; /* 27px */
    position: relative;
    padding-bottom: 20px;
  }
  .qa-box__head-text::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -24px;
    width: 795px;
    height: 2px;
    background: #599CC2;
  }
}

.qa-box__head-icon {
  color: #599CC2;
  font-weight: 700;
  line-height: 1.8;
  height: 100%;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 992px) {
  .qa-box__head-icon {
    font-size: 24px;
    line-height: 1.4444;
    left: -29px;
    top: -4px;
    display: flex;
    align-items: center;
  }
}

.qa-box__body {
  display: none;
}
@media (min-width: 992px) {
  .qa-box__body {
    display: block;
  }
}

.qa-box__a {
  padding-left: 41px;
  padding-right: 24px;
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .qa-box__a {
    padding-top: 0;
    padding-bottom: 30px;
    padding-left: 78px;
    padding-right: 55px;
  }
}

.qa-box__a-icon {
  color: #599CC2;
  font-weight: 700;
  line-height: 1.8;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  top: 2px;
  left: -21px;
  height: 100%;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
}
@media (min-width: 992px) {
  .qa-box__a-icon {
    font-size: 24px;
    line-height: 1.444;
    align-items: center;
    left: -27px;
    top: 0;
  }
}

.qa-box__text {
  line-height: 1.8;
  font-size: 16px;
  position: relative;
}
@media (min-width: 992px) {
  .qa-box__text {
    font-size: 14px;
    line-height: 1.4444;
    font-weight: 400;
  }
}

.p-vision {
  padding-top: 51px;
  padding-bottom: 50px;
  background-image: url("/img/img-vision-background-sp.webp");
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  height: 100%;
}
@media (min-width: 992px) {
  .p-vision {
    padding-top: 100px;
    padding-bottom: 100px;
    background-image: url("/img/img-vision-background.webp");
  }
}

.p-vision__cards {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .p-vision__cards {
    margin-top: 70px;
  }
}

.p-vision__cards__inner {
  display: flex;
  flex-direction: column;
  gap: 51px;
}
@media (min-width: 992px) {
  .p-vision__cards__inner {
    gap: 120px;
  }
}

.p-vision__card:nth-child(1) .vision-card__image {
  width: 100%;
  height: 216px;
  background: url(/img/img-vision-1-sp.webp) lightgray 50%/cover no-repeat;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 992px) {
  .p-vision__card:nth-child(1) .vision-card__image {
    background: url(/img/img-vision-1.webp) lightgray 50%/cover no-repeat;
    width: 39.2156862745%;
    height: 300px;
  }
}
.p-vision__card:nth-child(2) .vision-card__image {
  height: 216px;
  background: url(/img/img-vision-2-sp.webp) lightgray 50%/cover no-repeat;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 992px) {
  .p-vision__card:nth-child(2) .vision-card__image {
    background: url(/img/img-vision-2.webp) lightgray 50%/cover no-repeat;
    width: 39.2156862745%;
    height: 300px;
  }
}
.p-vision__card:nth-child(3) .vision-card__image {
  height: 216px;
  background: url(/img/img-vision-3-sp.webp) lightgray 50%/cover no-repeat;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
@media (min-width: 992px) {
  .p-vision__card:nth-child(3) .vision-card__image {
    background: url(/img/img-vision-3.webp) lightgray 50%/cover no-repeat;
    width: 39.2156862745%;
    height: 300px;
  }
}

.vision-card {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .vision-card {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    max-width: 1020px;
    gap: 50px;
  }
  .is-reverse .vision-card {
    flex-direction: row-reverse;
  }
}

.vision-card__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 992px) {
  .vision-card__body {
    width: 55.8823529412%;
    gap: 30px;
  }
}

.vision-card__ttl span {
  color: #599CC2;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.8;
  display: block;
}
.vision-card__ttl span:nth-child(2) {
  margin-top: 2px;
}
@media (min-width: 992px) {
  .vision-card__ttl span:nth-child(2) {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .vision-card__ttl span {
    font-size: 32px;
    line-height: 1.5;
  }
}

.vision-card__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.vision-card__text.text-wide {
  line-height: 1.5;
}
@media (min-width: 992px) {
  .vision-card__text {
    line-height: 1.5;
    gap: 20px;
  }
}

.vision-card__image {
  max-width: 390px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.p-company {
  padding-top: 50px;
  padding-bottom: 50px;
  background-image: url("/img/img-company-bg-sp.webp");
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  height: 100%;
}
@media (min-width: 992px) {
  .p-company {
    padding-top: 100px;
    padding-bottom: 103px;
    background-image: url("/img/img-company-bg.webp");
  }
}

.p-company__content {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .p-company__content {
    margin-top: 70px;
  }
}

.company-table {
  border-collapse: collapse; /* 一重線 */
  table-layout: fixed;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  color: #FDFDFD;
  line-height: 1.8;
  font-size: 16px;
}
@media (min-width: 992px) {
  .company-table {
    width: 900px;
    line-height: 1.5;
  }
}
.company-table .company-table__row:nth-child(2) .company-table__heading {
  margin-top: 7px;
}
@media (min-width: 992px) {
  .company-table .company-table__row:nth-child(2) .company-table__heading {
    margin-top: 0;
  }
}
.company-table .company-table__row:nth-child(2) .company-table__data {
  margin-top: 9px;
}
@media (min-width: 992px) {
  .company-table .company-table__row:nth-child(2) .company-table__data {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .company-table .company-table__row:nth-child(6) .company-table__data {
    padding: 0;
  }
}

.company-table__row,
.company-table__heading {
  text-align: left;
}

.company-table__row {
  display: flex;
  flex-direction: column;
  padding-bottom: 7px;
  padding-top: 8px;
  border-bottom: 1px solid #FDFDFD;
}
@media (min-width: 992px) {
  .company-table__row {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

.company-table__heading {
  font-size: 18px;
  font-weight: 700;
  padding: 10px;
  height: 100%;
}
@media (min-width: 992px) {
  .company-table__heading {
    width: calc(100% - 700px);
    text-align: center;
  }
}

.company-table__data {
  padding: 10px;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 992px) {
  .company-table__data {
    width: calc(100% - 200px);
  }
}
.company-table__data p:nth-child(2) {
  margin-top: 20px;
}

.company-table__data__container {
  margin-top: -5px;
  margin-bottom: -5px;
}
@media (min-width: 992px) {
  .company-table__data__container {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.company-table__data__wrap {
  display: flex;
  width: 100%;
}
.company-table__data__wrap:not(:first-child) {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .company-table__data__wrap:not(:first-child) {
    margin-top: 0;
  }
}

.p-company__data__post {
  width: 38.4615384615%;
}
@media (min-width: 992px) {
  .p-company__data__post {
    width: calc(100% - 550px + 20px);
    padding: 10px;
  }
}

.p-conpany__data__name {
  width: 61.5384615385%;
  padding-left: 8px;
}
@media (min-width: 992px) {
  .p-conpany__data__name {
    width: calc(100% - 150px + 80px);
    padding: 10px;
  }
}

.p-contact {
  padding-top: 53px;
  padding-bottom: 50px;
}
@media (min-width: 992px) {
  .p-contact {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

@media (min-width: 992px) {
  .p-contact__inner {
    width: 980px;
  }
}

@media (min-width: 992px) {
  .p-contact__ttl-ja {
    font-size: 18px;
  }
}

.p-contact__sub-heading {
  padding-top: 34px;
  line-height: 1.8;
}
@media (min-width: 992px) {
  .p-contact__sub-heading {
    width: 700px;
    margin-inline: auto;
    padding-top: 69px;
    line-height: 1.5;
  }
}

.p-contact__form {
  margin-top: 30px;
}
@media (min-width: 992px) {
  .p-contact__form {
    margin-top: 47px;
  }
}

.p-contact__fields {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 992px) {
  .p-contact__fields {
    gap: 31px;
  }
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
@media (min-width: 992px) {
  .form-field {
    gap: 8px;
  }
}

.form-field__head {
  display: flex; /* labelとtagを横並び */
  gap: 8px;
  align-items: center;
}

.form-field__tag {
  display: inline-block;
  background: #599CC2;
  padding: 3px 7px 4px 9px; /* ラベルの改行は横幅調整 */
  color: #FDFDFD;
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.98px;
}
@media (min-width: 992px) {
  .form-field__tag {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
  }
}

.form-field__label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
}

.form-field__attention {
  display: none;
}

.form-field.is-error .form-field__attention {
  display: block;
  color: #C92323;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%; /* 27px */
}

.form-field__item {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 180%; /* 28.8px */
}
@media (min-width: 992px) {
  .form-field__item {
    line-height: 1.5;
  }
}

.form-select {
  box-sizing: border-box;
  font: inherit;
  color: inherit;
  vertical-align: top;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; /* ブラウザ標準のドロップダウンボタンは非表示 */
  width: 100%;
  padding-left: 20px;
  padding-right: 46px;
  border: 1px solid #D9D9D9;
  background: #FDFDFD url(/img/img-contact-arrow.webp) no-repeat center right 0px/46px 46px;
  height: 46px;
}

.form-text {
  font: inherit;
  color: inherit;
  width: 100%;
  border: 1px solid #D9D9D9;
  background: #FDFDFD;
  padding: 9px 46px 9px 20px;
}
.form-text::placeholder {
  color: #A1A1A1;
  font: inherit;
}

.form-textarea {
  box-sizing: border-box;
  font: inherit;
  color: inherit;
  vertical-align: top;
  width: 100%;
  border: 1px solid #D9D9D9;
  background: #FDFDFD;
  height: 92px;
  padding: 14px;
}

.p-contact__privacy-info {
  margin-top: 30px;
  font-size: 16px;
  line-height: 1.8;
}
@media (min-width: 992px) {
  .p-contact__privacy-info {
    width: 700px;
    margin-inline: auto;
    line-height: 1.5;
    margin-top: 50px;
  }
}

.p-contact__privacy {
  text-align: center;
  margin-top: 22px;
}
@media (min-width: 992px) {
  .p-contact__privacy {
    margin-top: 18px;
  }
}

.form-checkbox {
  box-sizing: border-box;
}

.form-checkbox__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}
.form-checkbox__input:checked + .form-checkbox__text::after {
  opacity: 1;
}

.form-checkbox__text {
  position: relative;
  padding-left: 25px;
  font-size: 14px;
  line-height: 1.8;
}

.form-checkbox__text::before,
.form-checkbox__text::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.form-checkbox__text::before {
  width: 15px;
  height: 15px;
  border-radius: 1px;
  border: 1px solid #111;
}

.form-checkbox__text::after {
  width: 24px;
  height: 21.53px;
  left: -3px;
  margin-top: -1.2px;
  background: url(/img/img-icon_check.webp) no-repeat center center/contain;
  opacity: 0;
  transition: opacity 0.3s;
}

.contact__button {
  margin-top: 29px;
  text-align: center;
}
@media (min-width: 992px) {
  .contact__button {
    margin-top: 48px;
  }
}

.p-footer {
  background: #202020;
  color: #FDFDFD;
  font-size: 14px;
  line-height: 1.8;
  padding-top: 28px;
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .p-footer {
    padding-top: 23px;
  }
}

@media (min-width: 992px) {
  .p-footer__inner {
    max-width: 1420px;
  }
}

@media (min-width: 992px) {
  .p-footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.p-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .p-footer__nav-list {
    justify-content: flex-start;
    gap: 10px;
  }
}

.nav-item-1 {
  display: flex;
}
@media (min-width: 992px) {
  .nav-item-1 {
    gap: 10px;
  }
}

.nav-item-2 {
  display: flex;
  margin-top: 5px;
}
.nav-item-2 .p-footer__nav-item:last-child {
  position: relative;
}
.nav-item-2 .p-footer__nav-item:last-child::before {
  content: "";
  position: absolute;
  left: 0; /* ボーダーとテキストの間隔を調整 */
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background-color: #FDFDFD; /* ボーダーの色を指定 */
}
@media (min-width: 992px) {
  .nav-item-2 .p-footer__nav-item:last-child::before {
    height: 32px;
    top: 50%;
  }
}

.p-footer__nav-item {
  padding-left: 15px;
  padding-right: 15px;
}
@media (min-width: 992px) {
  .p-footer__nav-item {
    padding: 15px;
  }
}

.p-footer__nav-link {
  font-weight: 700;
}

.p-footer__infor-wrap {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .p-footer__infor-wrap {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    align-items: center;
  }
}

.p-footer__policy {
  display: flex;
  justify-content: center;
}
@media (min-width: 992px) {
  .p-footer__policy {
    padding: 0px 15px;
  }
}

.p-footer__policy-item {
  padding: 5px 15px;
}
@media (min-width: 992px) {
  .p-footer__policy-item {
    display: flex;
    padding: 0px 15px;
  }
}

.p-footer__company {
  padding: 5px 15px;
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
  margin-top: -5px;
}
@media (min-width: 992px) {
  .p-footer__company {
    font-size: 12px;
    line-height: 1.5;
  }
}

.p-footer__logo {
  display: none;
}
@media (min-width: 992px) {
  .p-footer__logo {
    display: block;
    width: 172px;
    margin-top: 3px;
  }
}

.p-footer__text {
  line-height: 1.5;
  text-align: left;
  margin-top: 13px;
}
@media (min-width: 992px) {
  .p-footer__text {
    text-align: center;
    margin-top: 14px;
  }
}

.u-separate {
  margin-top: 24px;
  margin-bottom: 24px;
}

.u-ttl__wrap {
  margin-top: 24px;
  margin-bottom: 24px;
}

.u-ttl {
  font-size: clamp(0.875rem, 0.6477272727rem + 1.1363636364vw, 1.5rem);
  font-weight: 700;
}

.u-text {
  font-size: clamp(0.75rem, 0.5681818182rem + 0.9090909091vw, 1.25rem);
}

@media (min-width: 300px) {
  .u-hidden-sm {
    display: none;
  }
}
@media (min-width: 768px) {
  .u-hidden-sm {
    display: block;
  }
}

@media (min-width: 768px) {
  .u-hidden-md {
    display: none;
  }
}

@media (min-width: 992px) {
  .u-hidden-lg {
    display: none;
  }
}

@media (min-width: 1200px) {
  .u-hidden-xl {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */