@charset "UTF-8";
/*================================================================
Chrome/Firefox/Edgeなど、各ブラウザはそれぞれデフォルトで効くCSSを持っています。
何もしないと見え方が微妙に変わるので、デフォルトのCSSをリセットして
ブラウザごとの表示の差異をなくすために書くのが「リセットCSS」です。
================================================================*/
* {
  -webkit-box-sizing: border-box;
  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, aside, figure, figcaption {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
  list-style-type: none;
} 
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-size: 100%; /* 相対基準を統一 */
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(16 / 375 * 100vw);
  }
}

body {
  color: #000;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
}

button {
  cursor: pointer;
  background: transparent;
  padding: 0;
  border: none;
}

a,
span {
  display: inline-block;
  font-weight: inherit;
}

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

img {
  display: inline-block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* Autofill対策：Chrome */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.1) inset !important;
  box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.1) inset !important;
  -webkit-text-fill-color: var(--white) !important;
  transition: background-color 5000s ease-in-out 0s;
}

/* Safari・Firefoxのフォーカス時の背景対応 */
input:focus,
textarea:focus {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  outline: none;
}

.container {
  background: url("./img/bg_drawer.webp") no-repeat center center/cover;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  overflow: scroll;
}
@media screen and (max-width: 767px) {
  .container {
    background: none;
  }
}
.container.no-scroll {
  overflow: hidden;
}

.wrapper {
  background: #fff;
  width: 23.4375rem;
  margin-left: 37.5%;
}
@media screen and (min-width: 1441px) and (max-width: 1920px) {
  .wrapper {
    margin-left: 40%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .wrapper {
    margin-left: 29%;
  }
}
@media screen and (max-width: 767px) {
  .wrapper {
    margin-left: 0;
  }
}

.--highlight {
  display: inline;
  background: linear-gradient(transparent 75%, #F2FF00 75% 100%);
}
.problem .--highlight {
  background: linear-gradient(transparent 60%, #F2FF00 60% 100%);
}
.inventory .--highlight {
  background: linear-gradient(transparent 75%, rgba(247, 255, 95, 0.7) 75% 100%);
}

.cta {
  text-align: center;
}

.cta__txt {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 2rem;
}
.inventory .cta__txt {
  margin-top: 0;
  line-height: 1.1;
}
@media screen and (min-width: 768px) {
  .side-cta .cta__txt {
    font-size: min(1.171875vw, 0.9375rem);
    margin-top: min(2.5vw, 2rem);
  }
}

.cta__btn {
  background: #003290;
  width: fit-content;
  padding-left: 1.625rem;
  padding-right: 4.5rem;
  padding-block: 1.0625rem;
  border-radius: 100vmax;
  margin-top: 1.5rem;
  margin-inline: auto;
  display: flex;
  align-items: center;
  column-gap: 2.1625rem;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .side-cta .cta__btn {
    margin-top: min(0.9375vw, 0.75rem);
    padding-left: min(3.125vw, 2.5rem);
    padding-right: min(6.796875vw, 5.4375rem);
    padding-block: min(1.484375vw, 1.1875rem);
    column-gap: min(2.703125vw, 2.1625rem);
  }
}
.inventory .cta__btn {
  margin-top: 0.5625rem;
  padding-left: 2.5rem;
  padding-right: 5.4375rem;
  padding-block: 1.1875rem;
  column-gap: 1.3rem;
}
.--white .cta__btn {
  background: #fff;
  padding-left: 2.125rem;
  padding-right: 4.9375rem;
  padding-block: 1.125rem;
  border: solid #003290;
  border-width: 0.0625rem;
}
.cta__btn::before {
  content: "";
  background: #fff;
  width: 1.875rem;
  height: 100%;
  rotate: 45deg;
  position: absolute;
  top: -11.25rem;
  left: 0;
  animation: 3s ease-in-out infinite forwards flash;
}
.--white .cta__btn::before {
  background: #003290;
}
@media screen and (min-width: 768px) {
  .side-cta .cta__btn::before {
    width: min(2.34375vw, 1.875rem);
    top: max(-14.0625vw, -11.25rem);
  }
}
@keyframes flash {
  0% {
    opacity: 0;
    scale: 0;
  }
  80% {
    opacity: 0.5;
    scale: 0;
  }
  81% {
    opacity: 1;
    scale: 4;
  }
  100% {
    opacity: 0;
    scale: 50;
  }
}
.cta__btn span {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
}
.fv .cta__btn span {
  font-size: 1rem;
  letter-spacing: 0.125rem;
  line-height: 1.5;
}
.--white .cta__btn span {
  color: #003290;
}
@media screen and (min-width: 768px) {
  .side-cta .cta__btn span {
    font-size: min(1.5625vw, 1.25rem);
  }
}

.cta__btn-arrow {
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  right: 1.4375rem;
  top: 50%;
  translate: 0 -50%;
}
.--white .cta__btn-arrow {
  right: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .side-cta .cta__btn-arrow {
    width: min(2.5vw, 2rem);
    right: max(1.59375vw, 1.275rem);
  }
}

.cta__btn {
  transition: opacity 0.3s ease;
}
.cta__btn .cta__btn-arrow {
  transition: right 0.3s ease;
}
@media (any-hover: hover) {
  .inventory .cta__btn:hover, .--white .cta__btn:hover {
    opacity: 0.8;
  }
  .cta__btn:hover .cta__btn-arrow {
    right: 0.75rem;
  }
  .inventory .cta__btn:hover .cta__btn-arrow, .--white .cta__btn:hover .cta__btn-arrow {
    right: 0.5rem;
  }
}

.header {
  background: #0B47B8;
  padding-left: 0.9375rem;
  padding-right: 1.625rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 23.4375rem;
  height: 4.75rem;
  position: fixed;
  top: 0;
  left: 50%;
  translate: -50%;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .header {
    display: none;
  }
}

.header__logo-link img {
  width: 3.9375rem;
}

.side-cta {
  margin-left: auto;
  padding-top: min(22.65625vw, 18.125rem);
  padding-left: min(2.96875vw, 2.375rem);
  padding-right: max(4.84375vw, 3.875rem);
  padding-bottom: min(3.125vw, 2.5rem);
  height: 100vh;
  height: 100svh;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 62.5vw;
  z-index: 1;
  scrollbar-width: none;
}
.side-cta::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .side-cta {
    margin-inline: auto;
    padding-inline: max(1.3020833333vw, 0.625rem);
    padding-inline: 0;
    right: unset;
    left: 2%;
  }
}
@media screen and (max-width: 767px) {
  .side-cta {
    display: none;
  }
}

.side-cta__logo img {
  width: min(27.890625vw, 22.3125rem);
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .side-cta__logo img {
    width: max(23.4375vw, 11.25rem);
  }
}

.side-menu {
  height: 100vh;
  height: 100svh;
  margin-right: auto;
  padding-left: min(5.78125vw, 4.625rem);
  padding-right: max(0.703125vw, 0.5625rem);
  overflow-y: scroll;
  position: fixed;
  top: 0;
  left: 66.796875vw;
  z-index: 1;
  scrollbar-width: none;
}
.side-menu::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .side-menu {
    width: max(25.8536585366vw, 16.5625rem);
    padding-left: min(3.1274433151vw, 2.5rem);
    left: calc(50% + 22.8125rem);
    translate: -50%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .side-menu {
    width: max(20.0520833333vw, 9.625rem);
    margin-inline: auto;
    padding-inline: 0;
    left: calc(50% + 18.875rem);
    translate: -50%;
  }
}
@media screen and (max-width: 767px) {
  .side-menu {
    display: none;
  }
}

.side-menu__nav {
  height: fit-content;
  padding-top: min(18.75vw, 15rem);
  padding-right: min(4.765625vw, 3.8125rem);
}
@media screen and (min-width: 1025px) and (max-width: 1279px) {
  .side-menu__nav {
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .side-menu__nav {
    padding-right: 0;
  }
}

.side-menu__list {
  display: flex;
  flex-direction: column;
  gap: min(1.953125vw, 1.5625rem);
}

.side-menu__link {
  color: #26344F;
  font-size: min(1.5625vw, 1.25rem);
  font-weight: 700;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .side-menu__link {
    font-size: clamp(0.6875rem, 1.3671875vw, 0.875rem);
  }
}
.side-menu__link.is-active {
  color: #0B47B8;
}

.side-menu__copyright {
  font-size: min(1.09375vw, 0.875rem);
  font-weight: 700;
  line-height: 1.5;
  margin-top: min(15.9375vw, 12.5rem);
  padding-bottom: min(3.125vw, 2.5rem);
  text-align: right;
}

.drawer-icon {
  cursor: pointer;
  background: transparent;
  width: 1.5rem;
  height: 1.125rem;
  border: none;
  position: absolute;
  top: 1.8125rem;
  right: 2.375rem;
  translate: 50%;
  z-index: 11;
}

.drawer-icon__bar {
  content: "";
  display: block;
  background: #fff;
  width: inherit;
  height: 0.125rem;
  transition: top 0.3s linear, bottom 0.3s linear, transform 0.3s linear;
  position: absolute;
}
.drawer-icon__bar.--bar1 {
  top: 0;
}
.drawer-icon__bar.--bar2 {
  top: 50%;
  translate: 0 -50%;
}
.drawer-icon__bar.--bar3 {
  bottom: 0;
}
.drawer-icon.is-show .drawer-icon__bar.--bar1 {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.drawer-icon.is-show .drawer-icon__bar.--bar2 {
  display: none;
}
.drawer-icon.is-show .drawer-icon__bar.--bar3 {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.drawer-content {
  background: url("./img/bg_drawer.webp") no-repeat top right/cover;
  width: 23.4375rem;
  height: 100vh;
  height: 100svh;
  padding-top: 6.25rem;
  overflow-y: scroll;
  position: fixed;
  top: -120%;
  left: 50%;
  translate: -50%;
  z-index: 9;
  transition: top 0.3s linear;
}
.drawer-content.is-show {
  top: 0;
}

.drawer-content__nav {
  width: 17.5rem;
  height: fit-content;
  margin-inline: auto;
  padding-block: 2.5rem;
}

.drawer-content__list {
  display: flex;
  flex-direction: column;
}

.drawer-content__item {
  border-bottom: 0.0625rem dotted #AABCDE;
}
.drawer-content__item:last-of-type {
  border-bottom: none;
}

.drawer-content__link {
  color: #26344F;
  font-size: 1.25rem;
  font-weight: 700;
  width: 100%;
  padding-block: 1rem;
}
.drawer-content__link.is-active {
  color: #0B47B8;
}

.drawer-content__copyright {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  margin-top: 6.25rem;
  margin-bottom: 0.9375rem;
  margin-right: 1.875rem;
  text-align: right;
}

.fv {
  overflow: hidden;
  position: relative;
}

.fv__txt {
  width: 20.17625rem;
  height: 17.235625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 8rem;
  left: 1.79125rem;
}

.fv__balloon {
  width: 19.2875rem;
}

.fv__title {
  width: 19.4375rem;
  margin-top: -1.6875rem;
  margin-right: 0.75rem;
}

.fv__desc {
  font-size: 1.163125rem;
  font-weight: 700;
  font-style: italic;
  line-height: 1.2;
  margin-top: 0.625rem;
  margin-right: 1rem;
  text-align: center;
}

.fv__campaign {
  background: #BCDDEA;
  padding-top: 0.64375rem;
  padding-bottom: 0.656875rem;
  padding-left: 1.0675rem;
  padding-right: 1.54rem;
  margin-top: 0.9375rem;
  display: flex;
  gap: 1.033125rem;
}

.fv__campaign-desc {
  font-size: 0.8125rem;
  line-height: 1.3;
}
.fv__campaign-desc span {
  color: #003088;
  font-size: 1rem;
  font-weight: 700;
}

.fv__campaign-img {
  width: 4.109375rem;
  height: auto;
  aspect-ratio: 0.9027873129;
}

.fv__achievement {
  padding-top: 1.9375rem;
  padding-bottom: 2.3125rem;
  padding-inline: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.375rem;
}

.fv__achievement-img {
  width: 9.71125rem;
}

.fv__case {
  background: #E4F0FC;
  padding-top: 3.6875rem;
  padding-bottom: 4.5625rem;
  text-align: center;
}

.fv__case-title {
  font-size: 1.25rem;
}
.fv__case-title span {
  color: #0B47B8;
  font-size: 2.25rem;
  font-weight: 700;
}

.fv__case-images {
  margin-top: 2.8125rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.875rem;
}
.fv__case-images img {
  width: 9.375rem;
}

.problem {
  color: #26344F;
  padding-top: 2.375rem;
  padding-bottom: 1.75rem;
  text-align: center;
  position: relative;
}

.problem__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.problem__list {
  width: 19.6875rem;
  margin-top: 2rem;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 1.1875rem;
}

.problem__item {
  display: flex;
  align-items: flex-end;
}
.problem__item:nth-of-type(even) {
  flex-direction: row-reverse;
}

.problem__item-txt {
  position: relative;
}
.problem__item-txt img {
  width: 16.45625rem;
}
.problem__item-txt p {
  font-size: 1rem;
  line-height: 1.3;
  white-space: nowrap;
  text-align: left;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.problem__item:nth-of-type(even) .problem__item-txt p {
  left: 46%;
}

.problem__item-img {
  flex-shrink: 0;
  position: relative;
}
.--item1 .problem__item-img {
  width: 4.25rem;
  margin-left: -1.375rem;
}
.--item2 .problem__item-img {
  width: 4.4375rem;
  margin-right: -1.0625rem;
}
.--item3 .problem__item-img {
  width: 4.25rem;
  margin-left: -1.1875rem;
}
.--item4 .problem__item-img {
  width: 4.75rem;
  margin-right: -1.625rem;
}
.--item5 .problem__item-img {
  width: 3.5rem;
  margin-left: -0.4375rem;
}
.--item6 .problem__item-img {
  width: 3.3125rem;
  margin-right: -0.4375rem;
}

.problem__visualization {
  margin-top: 1.125rem;
  margin-left: 1.4375rem;
}

.problem__visualization-txt {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}
.problem__visualization-txt .--large {
  font-size: 1.25rem;
}
.problem__visualization-txt .--xlarge {
  color: #0B47B8;
  font-size: 1.5rem;
}

.case {
  background: #F5F5F5;
  padding-top: 3.71875rem;
  padding-bottom: 3.25rem;
  padding-inline: 1.875rem;
  position: relative;
}

.case__title {
  color: #26344F;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.case__deco {
  width: 10.6875rem;
  height: auto;
  aspect-ratio: 0.9606741573;
  position: absolute;
  top: 1.825rem;
  right: 0.8125rem;
}

.case__cards {
  margin-top: 9rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  position: relative;
}

.case__card {
  background: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
}

.case__card-head {
  background: #1C52B8;
  padding-block: 0.8rem;
  padding-left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5625rem;
}

.case__card-head-num {
  color: #26344F;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  width: 3.75rem;
  height: 1.625rem;
  line-height: 1.625rem;
  border-radius: 100vmax;
  text-align: center;
  flex-shrink: 0;
}

.case__card-head-txt {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.case__card-head-txt .--small {
  font-size: 0.875rem;
}

.case__card-body {
  padding-top: 1.5rem;
  padding-inline: 1.5rem;
  padding-bottom: 2.3125rem;
}
.--card2 .case__card-body {
  padding-bottom: 3.4375rem;
}

.case__card-img img {
  display: block;
}

.case__card-txt {
  margin-top: 1.375rem;
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.case__card-common {
  display: flex;
  gap: 0.833125rem;
}
.--card2 .case__card-common {
  gap: 0.5625rem;
}

.case__card-tag {
  color: #fff;
  background: #6B6B6B;
  font-size: 0.875rem;
  width: 3.75rem;
  height: 1.5rem;
  line-height: 1.5rem;
  text-align: center;
  border-radius: 100vmax;
  flex-shrink: 0;
}
.case__card-result .case__card-tag {
  background: #0B47B8;
}

.case__card-desc {
  font-size: 0.875rem;
  line-height: 1.3;
}

.inventory {
  text-align: center;
}

.inventory__title {
  color: #fff;
  background: #0B47B8;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.58;
  padding-top: 1.5rem;
  padding-bottom: 0.3125rem;
  position: relative;
}
.inventory__title::before {
  content: "";
  background: #0B47B8;
  width: 100%;
  height: auto;
  aspect-ratio: 7.8125;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  position: absolute;
  top: 100%;
  left: 0;
}
.inventory__title .--large {
  font-size: 1.75rem;
  margin-right: -0.375rem;
}

.inventory__list {
  margin-top: 4.5625rem;
  padding-inline: 1.875rem;
  padding-bottom: 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
}

.inventory__item {
  height: 6.5625rem;
  border-bottom: solid #A3A3A3;
  border-width: 0.0625rem;
  display: flex;
  gap: 1.25rem;
}

.inventory__item-img {
  width: 4.5rem;
}

.inventory__item-head {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}

.inventory__item-num {
  color: #fff;
  background: #0B47B8;
  font-size: 1rem;
  font-weight: 700;
  width: 1.875rem;
  height: 1.875rem;
  line-height: 1.875rem;
  text-align: center;
  border-radius: 50%;
}

.inventory__item-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.inventory__item-desc {
  font-size: 0.875rem;
  line-height: 1.3;
  margin-top: 0.5625rem;
  text-align: left;
}

.inventory__cta {
  background: #E4F0FC;
  padding-block: 2rem 2.375rem;
  text-align: center;
}

.plan {
  padding-top: 1.7375rem;
  padding-bottom: 3.91875rem;
  padding-left: 2rem;
  padding-right: 1.75rem;
  position: relative;
}

.plan__deco1 {
  width: 5.56rem;
  height: auto;
  aspect-ratio: 0.7735652174;
  position: absolute;
  top: 1.7375rem;
  left: 0.8125rem;
}

.plan__deco2 {
  width: 6.5625rem;
  height: auto;
  aspect-ratio: 0.8646245059;
  position: absolute;
  top: 1.925rem;
  right: 0.25rem;
}

.plan__head {
  text-align: center;
}

.plan__lead {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.plan__title {
  color: #0B47B8;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  margin-top: 1.1875rem;
}

.plan__cards {
  margin-top: 3.8125rem;
}

.plan-card {
  overflow: hidden;
  background: #F5F5F5;
  padding-top: 2.18125rem;
  padding-bottom: 2.1875rem;
  padding-inline: 1.5rem;
  border-radius: 0.625rem;
  text-align: center;
}
.plan-card:nth-of-type(n + 2) {
  margin-top: 1.25rem;
}

.plan-card__title {
  color: #0B47B8;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.plan-card__desc {
  font-size: 0.875rem;
  line-height: 1.3;
  margin-top: 0.75rem;
}

.plan-card__recommendation {
  background: #fff;
  padding: 2rem 0.75rem;
  border: 0.0625rem solid #ACC3D7;
  margin-top: 1.3125rem;
}

.plan-card__recommendation-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.plan-card__recommendation-list {
  margin-top: 1.5rem;
  text-align: left;
}

.plan-card__recommendation-item {
  font-size: 0.875rem;
  line-height: 1.3;
  padding-left: 0.6875rem;
  position: relative;
}
.plan-card__recommendation-item:nth-of-type(n + 2) {
  margin-top: 0.625rem;
}
.plan-card__recommendation-item::before {
  content: "";
  background: #0B47B8;
  width: 0.375rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100vmax;
  position: absolute;
  top: 0.375rem;
  left: 0;
}

.plan-card__accordion {
  margin-top: 0.75rem;
}

.plan-card__btn {
  margin-top: 0.60625rem;
  position: relative;
}

.plan-card__more {
  color: #0B47B8;
  font-size: 0.9375rem;
  line-height: 1.3;
  width: 100%;
  padding-block: 0.35625rem;
  border: 0.0625rem solid currentColor;
  border-radius: 100vmax;
}

.plan-card__more-icon {
  display: block;
  width: 0.6875rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  right: 1.25rem;
  top: 50%;
  translate: 0 -50%;
}

.plan-card__more-icon-bar {
  background: #0B47B8;
  width: 0.6875rem;
  height: 0.0625rem;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}
.plan-card__more-icon-bar.--bar2 {
  rotate: 90deg;
  transition: rotate 0.3s ease;
}
.plan-card__btn.is-open .plan-card__more-icon-bar.--bar2 {
  rotate: 0deg;
}

.plan-card-accordion-body {
  display: none;
}

.plan-card-accordion-body__service {
  background: #fff;
  padding: 2rem 0.9375rem;
  border: 0.0625rem solid #ACC3D7;
  text-align: left;
}

.plan-card-accordion-body__service-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.plan-card-accordion-body__service-desc {
  font-size: 0.875rem;
  line-height: 1.3;
  text-align: left;
  margin-top: 1.5rem;
}

.plan-card-accordion-body__service-points {
  margin-top: 0.71875rem;
}

.plan-card-accordion-body__service-point:nth-of-type(n + 2) {
  margin-top: 0.96875rem;
}

.plan-card-accordion-body__service-point-title {
  margin-top: 0.71875rem;
  display: flex;
  align-items: center;
}
.plan-card-accordion-body__service-point-title svg {
  width: 1.1875rem;
  height: auto;
  aspect-ratio: 1;
}
.plan-card-accordion-body__service-point-title span {
  display: inline;
  color: #3372EB;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.3;
}

.plan-card-accordion-body__service-point-desc {
  font-size: 0.875rem;
  line-height: 1.3;
  margin-top: 0.625rem;
}

.plan-card-accordion-body__service-list {
  margin-top: 1.1875rem;
}

.plan-card-accordion-body__service-item {
  font-size: 0.875rem;
  line-height: 1.3;
  padding-left: 0.6875rem;
  position: relative;
}
.plan-card-accordion-body__service-item:nth-of-type(n + 2) {
  margin-top: 0.3125rem;
}
.plan-card-accordion-body__service-item::before {
  content: "";
  background: #0B47B8;
  width: 0.375rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 100vmax;
  position: absolute;
  top: 0.375rem;
  left: 0;
}

.plan-card-accordion-body__table-container {
  overflow-x: auto;
  margin-top: 1.54375rem;
  padding-bottom: 1.1875rem;
}
.plan-card-accordion-body__table-container::-webkit-scrollbar {
  height: 0.5rem;
}
.plan-card-accordion-body__table-container::-webkit-scrollbar-track {
  background-color: #D9D9D9;
  border-radius: 0.25rem;
  overflow: hidden;
}
.plan-card-accordion-body__table-container::-webkit-scrollbar-thumb {
  background-color: #949494;
  border-radius: 0.25rem;
  overflow: hidden;
}

.plan-card-accordion-body__table {
  width: max-content;
}

.plan-card-accordion-body__price {
  background: #fff;
  padding-top: 2rem;
  padding-bottom: 1.75rem;
  padding-inline: 0.9375rem;
  border: 0.0625rem solid #ACC3D7;
  margin-top: 1.5rem;
}
.--card2 .plan-card-accordion-body__price {
  padding-bottom: 1.5rem;
}

.plan-card-accordion-body__price-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.plan-card-accordion-body__price-table {
  margin-top: 0.625rem;
}
.--card2 .plan-card-accordion-body__price-table {
  margin-top: 1.125rem;
}
.--card3 .plan-card-accordion-body__price-table {
  margin-top: 1.1875rem;
}

.plan-card-accordion-body__price-row {
  display: flex;
}
.plan-card-accordion-body__price-row dt,
.plan-card-accordion-body__price-row dd {
  font-size: 0.875rem;
  line-height: 1.3;
  padding-top: 0.75rem;
  padding-bottom: 0.39375rem;
  text-align: left;
}
.plan-card-accordion-body__price-row dt {
  width: 5.88125rem;
  border-bottom: 0.0625rem solid #6B9BC7;
  flex-shrink: 0;
}
.plan-card-accordion-body__price-row dd {
  width: 100%;
  border-bottom: 0.0625rem solid #CED7DF;
}

.plan-card-accordion-body__recruitment {
  background: #fff;
  font-size: 0.875rem;
  line-height: 1.3;
  padding-top: 2rem;
  padding-bottom: 1.75rem;
  padding-inline: 0.9375rem;
  border: 0.0625rem solid #ACC3D7;
  margin-top: 1.5rem;
}

.plan-card-accordion-body__recruitment-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.plan-card-accordion-body__recruitment-list {
  margin-top: 1.5rem;
  text-align: left;
}

.plan-card-accordion-body__recruitment-item:nth-of-type(n + 2) {
  margin-top: 0.9375rem;
}

.plan-card-accordion-body__recruitment-head {
  padding-left: 1.125rem;
  position: relative;
}
.plan-card-accordion-body__recruitment-head svg {
  position: absolute;
  left: 0;
  top: 0.1875rem;
}
.plan-card-accordion-body__recruitment-head span {
  display: inline;
  color: #3372EB;
  font-weight: 700;
}

.plan-card-accordion-body__recruitment-desc {
  margin-top: 0.375rem;
}

.plan-card-accordion-body__recruitment-deliverable {
  margin-top: 0.6875rem;
}

.plan-card-accordion-body__recruitment-deliverable-banner {
  background: #0B47B8;
  width: 100%;
  padding-block: 0.25rem;
  border-radius: 100vmax;
  color: #fff;
  font-weight: 700;
  text-align: center;
}

.plan-card-accordion-body__recruitment-deliverable-title {
  color: #0B47B8;
  font-weight: 700;
  margin-top: 0.75rem;
  text-align: left;
}

.plan-card-accordion-body__recruitment-deliverable-desc {
  margin-top: 0.375rem;
  text-align: left;
}

.plan-card-accordion-body-table {
  font-size: 0.875rem;
  line-height: 1.3;
  border: 0.0625rem solid #D0D0D0;
  border-collapse: collapse;
}
.plan-card-accordion-body-table th, .plan-card-accordion-body-table td {
  width: 3.3125rem;
  border: 0.0625rem solid #D0D0D0;
  vertical-align: middle;
  text-align: center;
}
.plan-card-accordion-body-table th:nth-child(1), .plan-card-accordion-body-table td:nth-child(1) {
  width: 5.8125rem;
  padding-inline: 0.1875rem;
  text-align: left;
}
.plan-card-accordion-body-table th:nth-child(2), .plan-card-accordion-body-table td:nth-child(2) {
  width: 7.08125rem;
  padding-top: 0.375rem;
  padding-left: 0.375rem;
  padding-bottom: 0.4375rem;
  padding-right: 0.375rem;
}
.plan-card-accordion-body-table td:nth-child(2) {
  text-align: left;
}

.plan-card-accordion-body-table__head {
  background: #EAF6F7;
  line-height: 0.9;
}
.plan-card-accordion-body-table__head th {
  text-align: center;
}
.plan-card-accordion-body-table__body {
  background: #fff;
}

.qa {
  color: #26344F;
  background: #E4F0FC;
  padding-top: 1.875rem;
  padding-bottom: 2.8125rem;
  padding-inline: 1.875rem;
}

.qa__title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.qa__boxes {
  margin-top: 1.8125rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}

.qa-box {
  border-radius: 1.75rem;
  overflow: hidden;
}

.qa-box__head {
  cursor: pointer;
  background: #fff;
  width: 100%;
  min-height: 3.5rem;
  padding-left: 1.3125rem;
  padding-right: 3.4375rem;
  text-align: left;
  position: relative;
}

.qa-box__head-container {
  width: 100%;
  padding-block: 0.5625rem;
  display: flex;
  align-items: center;
  gap: 0.6875rem;
}

.qa-box__head-icon {
  color: #0B47B8;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.qa-box__head-txt {
  color: #26344F;
  font-size: 0.875rem;
  line-height: 1.3;
  margin-top: 0.25rem;
}

.qa-box__head-btn {
  width: 0.75rem;
  height: auto;
  aspect-ratio: 1;
  position: absolute;
  right: 1.4375rem;
  top: 50%;
  translate: 0 -50%;
  transition: rotate 0.3s;
}

.qa-box__head-btn-bar {
  content: "";
  background: #0B47B8;
  width: 100%;
  height: 0.0625rem;
  position: absolute;
  top: 50%;
}
.qa-box__head-btn-bar.--bar1 {
  left: 0;
  translate: 0 -50%;
}
.qa-box__head-btn-bar.--bar2 {
  left: 50%;
  translate: -50% -50%;
  rotate: 90deg;
  transition: rotate 0.3s;
}
.qa-box.is-open .qa-box__head-btn-bar.--bar2 {
  rotate: 0deg;
}

.qa-box__body {
  display: none;
  background: #fff;
  padding-top: 0.5625rem;
  padding-bottom: 1.25rem;
  padding-inline: 1.3125rem;
}
.qa-box__body-container {
  display: flex;
  align-items: flex-start;
  gap: 0.9375rem;
}

.qa-box__body-icon {
  color: #4F98C2;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.3;
}

.qa-box__body-txt {
  font-size: 0.875rem;
  line-height: 1.3;
}

.contact {
  padding-top: 1.9375rem;
  padding-bottom: 2.1875rem;
}

.contact__title {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.contact__inner {
  padding-inline: 1rem;
}

.contact__fields {
  margin-top: 1.8125rem;
}

.contact__privacy {
  margin-top: 2.5rem;
}

.contact__btn {
  margin-top: 2.3125rem;
  text-align: center;
}

.form-field {
  margin-top: 1.25rem;
}
.form-field.--radio {
  margin-top: 0;
}
.form-field.--radio2 {
  margin-top: 2.4375rem;
}
.form-field.--company {
  margin-top: 1.5625rem;
}

.form-field__head-required {
  color: #EF4444;
  font-size: 1rem;
  line-height: 1.5;
}

.form-field__label {
  font-size: 1rem;
  font-weight: 700;
  transition: color 0.3s ease;
}
.form-field:has(:user-invalid) .form-field__label {
  color: #EF4444;
}

.form-field__body {
  margin-top: 2.0625rem;
}
.--radio .form-field__body {
  margin-top: 0.8125rem;
}
.--radio2 .form-field__body {
  margin-top: 1.0625rem;
}

.form-field__input {
  font-size: 1rem;
  width: 100%;
  padding-block: 0.9375rem;
  padding-inline: 0.8125rem;
  border: solid #CECECE;
  border-width: 0.0625rem;
  box-shadow: inset 0px 0px 6px rgba(0, 0, 0, 0.25);
  transition: border-color 0.3s ease;
}
.form-field__input:user-invalid, .form-field__input:user-invalid:focus {
  border-color: #EF4444;
}
.form-field__input:focus {
  outline: none;
  border-color: #0B47B8;
}
@media (any-hover: hover) {
  .form-field__input:hover {
    outline: none;
    border-color: #0B47B8;
  }
}

.form-field__radios {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.--radio2 .form-field__radios {
  gap: 0.625rem;
}

.form-radio {
  cursor: pointer;
  width: fit-content;
}

.form-radio__input {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

.form-radio__txt {
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  padding-left: 2.25rem;
  position: relative;
}
.form-radio__txt::before, .form-radio__txt::after {
  content: "";
  border-radius: 50%;
  position: absolute;
  left: 0;
}
.form-radio__txt::before {
  width: 1.5rem;
  height: auto;
  aspect-ratio: 1;
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.25);
  top: 0;
  transition: border-color 0.3s;
}
.form-radio__input:focus + .form-radio__txt::before {
  border-color: #0B47B8;
}
@media (any-hover: hover) {
  .form-radio:hover .form-radio__txt::before {
    border-color: #0B47B8;
  }
}
.form-radio__txt::after {
  opacity: 0;
  background: #000;
  width: 0.75rem;
  height: auto;
  aspect-ratio: 1;
  left: 0.375rem;
  top: 0.375rem;
}
.form-radio__input:checked + .form-radio__txt::after {
  opacity: 1;
}

.form-textarea {
  font-size: 1rem;
  width: 100%;
  min-height: 17rem;
  resize: none;
  padding-block: 0.9375rem;
  padding-inline: 0.8125rem;
  border: solid #CECECE;
  border-width: 0.0625rem;
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.25);
  transition: border-color 0.3s;
}
.form-textarea:user-invalid, .form-textarea:user-invalid:focus {
  border-color: #EF4444;
}
.form-textarea:focus {
  border-color: #0B47B8;
  outline: none;
}
@media (any-hover: hover) {
  .form-textarea:hover {
    border-color: #0B47B8;
  }
}

.form-checkbox {
  cursor: pointer;
}

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

.form-checkbox__txt {
  font-size: 0.875rem;
  line-height: 1.25rem;
  padding-left: 2.25rem;
  position: relative;
  transition: color 0.3s ease;
}
.form-checkbox__input:user-invalid + .form-checkbox__txt {
  color: #EF4444;
}
.form-checkbox__txt::before, .form-checkbox__txt::after {
  content: "";
  position: absolute;
  left: 0;
}
.form-checkbox__txt::before {
  width: 1.5rem;
  height: auto;
  aspect-ratio: 1;
  box-shadow: inset 0 0 0.375rem rgba(0, 0, 0, 0.25);
  transition: border-color 0.3s;
}
.form-checkbox__input:user-invalid + .form-checkbox__txt::before, .form-checkbox__input:user-invalid:focus + .form-checkbox__txt::before {
  border-color: #EF4444;
}
.form-checkbox__input:focus + .form-checkbox__txt::before {
  border-color: #0B47B8;
}
@media (any-hover: hover) {
  .form-checkbox:hover .form-checkbox__txt::before {
    border-color: #0B47B8;
  }
}
.form-checkbox__txt::after {
  opacity: 0;
  width: 0.9375rem;
  height: 0.5rem;
  border-left: solid #000;
  border-bottom: solid #000;
  border-width: 0.1875rem;
  left: 0.25rem;
  top: 0.1875rem;
  transform: rotate(-45deg);
}
.form-checkbox__input:checked + .form-checkbox__txt::after {
  opacity: 1;
}

.form-btn {
  color: #fff;
  background: #0B47B8;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5555555556;
  padding-block: 1.5625rem;
  padding-inline: 5.75rem;
  border: none;
  border-radius: 0.375rem;
  transition: border-color 0.3s;
}
.form-btn:focus {
  border-color: #0B47B8;
  outline: none;
}
@media (any-hover: hover) {
  .form-btn:hover {
    border-color: #0B47B8;
  }
}

.privacy-container {
  overflow: scroll;
  font-size: 0.875rem;
  line-height: 1.6;
  height: 16.1875rem;
  margin-top: 1.5rem;
  padding-top: 2.0625rem;
  padding-bottom: 1.25rem;
  padding-left: 2.0625rem;
  padding-right: 1.9375rem;
  border: solid #707070;
  border-width: 0.0625rem;
}

.privacy-container__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5555555556;
  text-align: center;
}

.privacy-container__desc {
  font-size: 0.75rem;
  line-height: 1.625;
  margin-top: 1.125rem;
}

.privacy-container__list {
  margin-top: 2rem;
}

.privacy-container__item:nth-of-type(n + 2) {
  margin-top: 2rem;
}

.privacy-container__item-title {
  font-size: 1rem;
  font-weight: 700;
}

.privacy-container__item-desc {
  margin-top: 0.875rem;
}

.privacy-container__item-history {
  margin-top: 1rem;
}

.privacy-container__item-name {
  margin-top: 1rem;
}

.privacy-container__item-contact {
  margin-top: 1rem;
}
.privacy-container__item-contact span {
  margin-right: 0.3125rem;
}

.privacy-container__personal-list {
  margin-top: 1rem;
  padding-left: 1rem;
}

.privacy-container__personal-item:nth-of-type(n + 2) {
  margin-top: 0.5rem;
}

.privacy-container__personal-title {
  font-weight: 700;
}

.privacy-container__personal-desc {
  margin-top: 0.25rem;
}

.privacy-container__personal-purpose-list {
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.privacy-container__personal-purpose-item:nth-of-type(n + 2) {
  margin-top: 0.25rem;
}
.privacy-container__personal-purpose-item h6 {
  font-weight: 500;
}
.privacy-container__personal-purpose-item p {
  margin-top: 0.25rem;
}

.footer {
  background: #EDEDED;
  padding-block: 1.5rem;
  text-align: center;
}

.footer__logo img {
  width: 12.375rem;
}

.footer__copyright {
  font-size: 0.75rem;
  line-height: 1.3333333333;
  margin-top: 1.5rem;
}/*# sourceMappingURL=style.css.map */