@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Kiwi+Maru&family=Noto+Sans+JP:wght@400;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
li {
  text-decoration: none;
  list-style: none;
}

a {
  text-decoration: none;
}

a,
img,
span {
  display: inline-block;
}

img {
  max-width: 100%;
  width: 100%;
  display: block;
  height: auto;
  vertical-align: top;
  box-sizing: border-box;
  object-fit: cover;
}

em {
  font-style: normal;
}

.sp-only {
  display: none;
}
@media (max-width: 768px) {
  .sp-only {
    display: block;
  }
}

.tab-only {
  display: none;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .tab-only {
    display: block;
  }
}

.pc-only {
  display: block;
}
@media (max-width: 768px) {
  .pc-only {
    display: none;
  }
}

.spbtm-only {
  display: none;
}
@media (max-width: 350px) {
  .spbtm-only {
    display: block;
  }
}

:root {
  --white: #ffffff;
  --main: #005bac;
  --black: #000;
  --gray: #555555;
  --red: #ff0202;
  --blue: #005bac;
  --blue-light: #f3f5f9;
  --btn-blue: #225ca7;
  --navy: #002f7b;
  --footer-color: #002656;
  --blue-gradient: linear-gradient(90deg, #009ce5 0%, #005bac 100%);
  --link: #1d4e7c;
  --bd-gray: #8d97a1;
  --leading-trim: calc((1em - 1lh) / 2);
  --notosans: "Noto Sans JP", sans-serif;
  --mincho: "Hiragino Mincho ProN", "Yu Mincho", "游明朝体", "YuMincho", "MS Mincho", "Meiryo",
    serif;
  --gothic: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "游ゴシック体", "YuGothic",
    "Helvetica Neue", "Arial", "Meiryo", sans-serif;
  --kiwi-maru: "Kiwi Maru", serif;
}

.bold {
  font-weight: 700;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.lh130 {
  line-height: 130%;
}

.lh170 {
  line-height: 170%;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  /* @include mq(xlpc) {
    font-size: calc(10 / (1920 / 100) * 1vw);
  } */
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 2.6666666667vw;
  }
}

body {
  font-weight: 500;
  line-height: normal;
  letter-spacing: normal;
  font-family: "Noto Sans JP", sans-serif;
  background-color: var(--white);
  color: var(--black);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

main {
  margin-top: 8.6rem;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 6rem;
  }
}

a {
  color: var(--black);
  transition: 0.5s;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    transition: 0.5s;
  }
}

.palt {
  font-feature-settings: "palt";
}

.small_2 {
  font-size: 1.2rem;
  color: inherit;
}

p,
h2,
h3,
h4,
span {
  font-weight: 500;
  color: var(--black);
}

svg {
  width: 100%;
  height: 100%;
}

main {
  margin-top: 8.384rem;
}
@media screen and (max-width: 768px) {
  main {
    margin-top: 6rem;
  }
}

header {
  position: fixed;
  z-index: 2;
  background: white;
  width: 100%;
  top: 0;
  z-index: 100;
}
header > .header_wrapper {
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  header > .header_wrapper.pc {
    display: none;
  }
}
header > .header_wrapper.sp {
  display: none;
  padding: 0;
}
@media screen and (max-width: 768px) {
  header > .header_wrapper.sp {
    display: block;
  }
}
header > .header_wrapper > .header_logo {
  width: 29.2rem;
}
header > .header_wrapper > .header_logo > a {
  display: block;
  width: 100%;
}
header > .header_wrapper > .header_logo > a:not(:has(img)) {
  width: 100%;
  height: 3rem;
  background-color: #aaaaaa;
}
header > .header_wrapper > .header_nav > nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8.8rem;
}
@media (width <= 1200) {
  header > .header_wrapper > .header_nav > nav {
    gap: 4rem;
  }
}
header > .header_wrapper > .header_nav > nav > ul.nav_list {
  display: flex;
  align-items: center;
  gap: 4rem;
}
@media (width <= 1200px) {
  header > .header_wrapper > .header_nav > nav > ul.nav_list {
    gap: 2rem;
  }
}
header > .header_wrapper > .header_nav > nav > ul.nav_list > li:last-child {
  margin-left: 2.4rem;
}
header > .header_wrapper > .header_nav > nav > ul.nav_list > li.external {
  position: relative;
}
header > .header_wrapper > .header_nav > nav > ul.nav_list > li.external::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url("/assets/images/icon/icon_external_black.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: -2.4rem;
  translate: 0 -50%;
}
@media screen and (max-width: 768px) {
  header > .header_wrapper > .header_nav > nav > ul.nav_list > li.external::before {
    right: -3.4rem;
  }
}
header > .header_wrapper > .header_nav > nav > ul.nav_list > li:hover > a {
  border-bottom: 2px solid var(--btn-blue);
}
header > .header_wrapper > .header_nav > nav > ul.nav_list > li > a {
  display: inline;
  color: var(--black);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 600;
  padding-bottom: 3rem;
}
header > .header_wrapper > .header_nav > nav .header_btn > .btn_container {
  background: var(--btn-blue);
  width: 20rem;
  text-align: center;
  position: relative;
}
header > .header_wrapper > .header_nav > nav .header_btn > .btn_container:hover {
  background: var(--btn-blue);
  transition-duration: 0.3s;
}
header > .header_wrapper > .header_nav > nav .header_btn > .btn_container > a {
  font-weight: 600;
  line-height: 1.375;
  font-size: 1.6rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding-block: 1.1rem;
  width: 100%;
}
header > .header_wrapper > .header_nav > nav .header_btn > .btn_container > a::before {
  content: "";
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
  background: url("/assets/images/icon/icon_mail.svg") no-repeat;
  background-size: contain;
}
header > .header_wrapper > .header_sp {
  position: fixed;
  z-index: 3;
  top: 0px;
  width: 100%;
  background-color: #fff;
  height: 6rem;
  display: none;
}
header > .header_wrapper > .header_sp > .header_logo {
  width: 15rem;
}
header > .header_wrapper > .header_sp > .header_logo > a:not(:has(img)) {
  width: 100%;
  height: 1.6rem;
  background-color: #aaaaaa;
}
@media screen and (max-width: 768px) {
  header > .header_wrapper > .header_sp {
    display: flex;
    align-items: center;
    gap: 1.9rem;
    padding-inline: 1.5rem 0;
  }
}
header > .header_wrapper > .header_sp > a > picture {
  display: block;
  max-width: 150px;
  width: 100%;
}
header > .header_wrapper > .header_sp .header_btn > .btn_container {
  background: var(--btn-blue);
  width: 12.4rem;
  text-align: center;
  position: relative;
  border-radius: 100vmax;
}
header > .header_wrapper > .header_sp .header_btn > .btn_container:hover {
  background: var(--btn-blue);
  transition-duration: 0.3s;
}
header > .header_wrapper > .header_sp .header_btn > .btn_container::before {
  content: "";
  display: inline-block;
  width: 1.3rem;
  height: 1.3rem;
  background: url("/assets/images/icon_mail.svg") no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 2.4rem;
  translate: 0 -50%;
}
header > .header_wrapper > .header_sp .header_btn > .btn_container > a {
  font-weight: 600;
  line-height: 24%;
  color: var(--white);
  display: inline-block;
  padding-block: 0.4rem;
  width: 100%;
  padding-left: 2rem;
  font-size: 1rem;
  line-height: 2.4;
  font-weight: 600;
}
header > .header_wrapper > .header_sp > #open {
  position: absolute;
  right: 1.5rem;
  font-size: 3.2rem;
  line-height: 2;
  cursor: pointer;
  top: 50%;
  translate: 0 -50%;
}
header > .header_wrapper > .overlay {
  display: initial;
  position: absolute;
  z-index: 3;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: #f3f5f9;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
header > .header_wrapper > .overlay.show {
  opacity: 1;
  pointer-events: auto;
}
header > .header_wrapper > .overlay-text {
  padding-inline: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
}
header > .header_wrapper > .overlay > .is-layout-flow {
  padding: 4rem 3.2rem 4rem 2.4rem;
}
header > .header_wrapper > .overlay > .is-layout-flow ul {
  display: flex;
  flex-direction: column;
  gap: 3.9rem;
}
header > .header_wrapper > .overlay > .is-layout-flow ul li a {
  position: relative;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: var(--black);
  width: 100%;
}
header > .header_wrapper > .overlay > .is-layout-flow ul li a::after {
  content: "";
  display: inline-block;
  width: 0.7rem;
  height: 1.4rem;
  background: url("/assets/images/icon/icon_arrow_right.svg") no-repeat center center/contain;
  position: absolute;
  top: 50%;
  right: 0;
  translate: 0 -50%;
}
header > .header_wrapper > .overlay > .is-layout-flow ul li > .external {
  position: relative;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
  gap: 0.8rem;
}
header > .header_wrapper > .overlay > .is-layout-flow ul li > .external::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background: url("/assets/images/icon/icon_external_black.svg") no-repeat center center/contain;
}
header > .header_wrapper > .overlay > .header_close {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.9rem;
  padding-inline: 1.5rem 0;
  background-color: #fff;
  height: 6rem;
}
header > .header_wrapper > .overlay > .header_close > #close {
  position: absolute;
  right: 1.5rem;
  font-size: 3.2rem;
  line-height: 2;
  cursor: pointer;
  top: 50%;
  translate: 0 -50%;
}
header > .header_wrapper-link-btn {
  gap: 1rem;
}
header > .header_wrapper-link-btn__link--application {
  padding-inline: 1rem;
  padding-block: 0.5rem;
  font-size: 1.5rem;
}
header > .header_wrapper-link-btn__link--official {
  padding-inline: 0.5rem;
  font-size: 1.2rem;
}

.hamburger {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 4rem;
  position: relative;
  z-index: 102;
}
.hamburger::after {
  content: "";
  display: block;
  height: 100%;
  width: 0.2rem;
  background: var(--navy);
  position: absolute;
  top: 0;
  left: -2rem;
}
.hamburger__line {
  position: relative;
  width: 100%;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.hamburger__line span {
  position: absolute;
  display: block;
  width: 100%;
  height: 0.6rem;
  background: var(--navy);
  border-radius: 2em;
  transition: 0.3s;
}
.hamburger__line span:nth-of-type(1) {
  top: 0;
}
.hamburger__line span:nth-of-type(3) {
  top: 2rem;
}
@media (min-width: 769px) and (max-width: 1280px) {
  .hamburger {
    width: 7rem;
    height: 7rem;
  }
}
.hamburger.is-active span:nth-of-type(1) {
  top: 1rem;
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-of-type(3) {
  top: 1rem;
  transform: rotate(-45deg);
}

footer .footer__main {
  background-color: var(--footer-color);
}
footer .footer__main > .footer__mainInner {
  padding: 1.5rem 5.5rem 2.8rem;
  display: flex;
  flex-direction: column;
  row-gap: 2.3rem;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  footer .footer__main > .footer__mainInner {
    padding: 2.1rem 2.4rem 3rem;
  }
}
footer .footer__main > .footer__mainInner > .footer__mainList {
  display: flex;
  flex-wrap: wrap;
  row-gap: 2.4rem;
  justify-content: center;
}
footer .footer__main > .footer__mainInner > .footer__mainList > .footer__mainListItem {
  margin-left: 2.8rem;
}
@media screen and (max-width: 768px) {
  footer .footer__main > .footer__mainInner > .footer__mainList > .footer__mainListItem {
    margin-left: 1.6rem;
  }
}
footer
  .footer__main
  > .footer__mainInner
  > .footer__mainList
  > .footer__mainListItem:not(:last-child) {
  padding-right: 2.8rem;
  border-right: 1px solid var(--white);
}
@media screen and (max-width: 768px) {
  footer
    .footer__main
    > .footer__mainInner
    > .footer__mainList
    > .footer__mainListItem:not(:last-child) {
    padding-right: 1.2rem;
    margin-left: 1.6rem;
  }
}
footer
  .footer__main
  > .footer__mainInner
  > .footer__mainList
  > .footer__mainListItem
  > .footer__mainListLink {
  font-size: 1.6rem;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  footer
    .footer__main
    > .footer__mainInner
    > .footer__mainList
    > .footer__mainListItem
    > .footer__mainListLink {
    font-size: 1.4rem;
  }
}
footer .footer__main > .footer__mainInner > .footer__copyArea {
  border-top: 1px solid var(--white);
  display: grid;
  text-align: center;
  padding-top: 3.3rem;
  row-gap: 1.9rem;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, auto);
}
@media screen and (max-width: 768px) {
  footer .footer__main > .footer__mainInner > .footer__copyArea {
    padding-top: 3.2rem;
    grid-template-columns: 1fr;
    display: block;
  }
}
footer .footer__main > .footer__mainInner > .footer__copyArea > .footer__message {
  text-align: right;
  width: 22.9rem;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  footer .footer__main > .footer__mainInner > .footer__copyArea > .footer__message {
    line-height: 1;
    text-align: center;
    width: 17.2rem;
    margin-inline: auto;
  }
}
footer
  .footer__main
  > .footer__mainInner
  > .footer__copyArea
  > .footer__message
  > .footer__messageLink {
  transition: opacity 0.3s;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  footer
    .footer__main
    > .footer__mainInner
    > .footer__copyArea
    > .footer__message
    > .footer__messageLink {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
footer .footer__main > .footer__mainInner > .footer__copyArea > .footer__logo {
  grid-column: 1/2;
  grid-row: 1/3;
  display: flex;
  align-items: center;
  width: 22.3rem;
}
@media screen and (max-width: 768px) {
  footer .footer__main > .footer__mainInner > .footer__copyArea > .footer__logo {
    margin-top: 1.6rem;
    width: 19.4rem;
    margin-inline: auto;
  }
}
footer .footer__main > .footer__mainInner > .footer__copyArea > .footer__copy {
  grid-column: 2/3;
  grid-row: 2/3;
  text-align: right;
}
@media screen and (max-width: 768px) {
  footer .footer__main > .footer__mainInner > .footer__copyArea > .footer__copy {
    margin-top: 2.4rem;
    text-align: center;
  }
}
footer .footer__main > .footer__mainInner > .footer__copyArea > .footer__copy > small {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 400;
}

.contents_header {
  background-image: url("/assets/images/page-head-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 20rem;
  padding-block: 5.8rem;
}
.contents_header > .wrapper {
  height: 100%;
}
.contents_header .page_title {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.contents_header .page_title h1 {
  font-size: 4.2rem;
  line-height: 1;
  font-weight: 700;
  color: var(--white);
}
.contents_header .page_title p {
  font-size: 1.8rem;
  line-height: 1;
  color: var(--white);
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .contents_header {
    height: 13rem;
    padding-block: 3.8rem;
  }
  .contents_header .page_title {
    gap: 1.6rem;
  }
  .contents_header .page_title h1 {
    font-size: 2.4rem;
  }
  .contents_header .page_title p {
    font-size: 1.4rem;
  }
}

/* 下層サイドバー */
.contents_container {
  display: flex;
  gap: 10rem;
  padding-block: 6.4rem 9.6rem;
}
@media screen and (max-width: 768px) {
  .contents_container {
    flex-direction: column;
    gap: 4rem;
  }
}
.contents_container > .navigation {
  position: sticky;
  top: 14.6rem;
  padding: 3.2rem 0;
  width: 24rem;
  border-top: 1px solid var(--main);
  border-bottom: 1px solid var(--main);
  height: fit-content;
}
@media screen and (max-width: 768px) {
  .contents_container > .navigation {
    width: 100%;
    position: relative;
    top: 0;
  }
}
.contents_container > .navigation > nav > .nav_title {
  font-size: 2rem;
  font-weight: 500;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  .contents_container > .navigation > nav > .nav_title {
    font-size: 1.6rem;
  }
}
.contents_container > .navigation > nav > .nav_lists > ol {
  margin-top: 2.4rem;
}
.contents_container > .navigation > nav > .nav_lists > ol > li {
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .contents_container > .navigation > nav > .nav_lists > ol > li {
    font-size: 1.4rem;
  }
}
.contents_container > .navigation > nav > .nav_lists > ol > li:hover a {
  color: var(--main);
}
.contents_container > .navigation > nav > .nav_lists > ol > li.page-active a {
  color: var(--main);
  font-weight: 700;
}
.contents_container > .navigation > nav > .nav_lists > ol > li.page-active::before {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url("/assets/images/round-arrow-blue.webp") no-repeat center center/contain;
}
@media screen and (max-width: 768px) {
  .contents_container > .navigation > nav > .nav_lists > ol > li.page-active::before {
    width: 1.8rem;
    height: 1.8rem;
  }
}
.contents_container > .navigation > nav > .nav_lists > ol > li > a {
  display: inline-block;
  width: 100%;
  padding-block: 0.8rem;
  line-height: 150%;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .contents_container > .navigation > nav > .nav_lists > ol > li > a {
    padding-block: 0.4rem;
  }
}
.contents_container > .main_contents {
  flex: 1;
}

/* 青の角丸背景 */
.blue-bd {
  display: inline-block;
  text-align: center;
  background: var(--main);
  color: var(--white);
  font-weight: 500;
  border-radius: 62.5rem;
}

.wrapper {
  max-width: 124rem;
  padding-inline: 2rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    max-width: 100%;
  }
}

.fdc--row {
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
}
@media screen and (min-width: 769px) {
  .fdc--row {
    flex-direction: row;
  }
}

.dib {
  display: inline-block;
}

.u-flex {
  display: flex;
}

.mt3 {
  margin-top: 0.3rem;
}

.mt7 {
  margin-top: 0.7rem;
}

.mt32 {
  margin-top: 3.2rem;
}

.mobile {
  display: block !important;
}
@media screen and (min-width: 769px) {
  .mobile {
    display: none !important;
  }
}

.desktop {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .desktop {
    display: block !important;
  }
}

.font-red {
  color: #f00;
  font-weight: 400;
}

.link-blue {
  color: var(--main);
  text-decoration: underline;
  display: inline;
}

.bread_crumb {
  padding-block: 1.3rem;
  background-color: #f7f7f7;
}
.bread_crumb ol {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.bread_crumb ol > li {
  font-size: 1.4rem;
  line-height: 1.7142857143;
}
.bread_crumb ol > li > a {
  color: var(--link);
  text-decoration: underline;
}
@media screen and (max-width: 768px) {
  .bread_crumb {
    padding-block: 0.4rem;
  }
  .bread_crumb ol {
    gap: 0.8rem;
  }
  .bread_crumb ol > li {
    font-size: 1.3rem;
    line-height: 1.8461538462;
  }
}

.contents_lists {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
}
@media screen and (max-width: 768px) {
  .contents_lists {
    gap: 8rem;
  }
}

.contents_list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .contents_list {
    gap: 3.2rem;
  }
}

.contents_text {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.contents_text p {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .contents_text p {
    font-size: 1.5rem;
  }
}
.contents_text ._tar {
  text-align: right;
}
.contents_text ._sp-fszs {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .contents_text ._sp-fszs {
    font-size: 1.4rem;
  }
}

.contents_title {
  position: relative;
  padding-left: 1.6rem;
}
.contents_title::after {
  content: "";
  display: block;
  width: 0.3rem;
  height: 3.2rem;
  background: linear-gradient(to right, #4db2f8 0%, #0b3793 100%);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.contents_title > h2 {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding-block: 0.2rem;
}
@media screen and (max-width: 768px) {
  .contents_title > h2 {
    font-size: 1.8rem;
    padding-block: 0.7rem;
  }
}
@media screen and (max-width: 768px) {
  .contents_title._sp-lh15::after {
    height: 5.2rem;
  }
  .contents_title._sp-lh15 > h2 {
    line-height: 1.5;
  }
}

.blank_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3.3rem;
  width: fit-content;
  padding-block: 1.2rem;
  padding-inline: 3rem;
  background-color: var(--main);
  font-size: 1.8rem;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: 1px solid transparent;
}
.blank_btn span {
  color: var(--white);
  transition: color 0.3s ease;
}
.blank_btn::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("/assets/images/icon/icon_external_white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}
.blank_btn:hover {
  background-color: var(--white);
  border: 1px solid var(--main);
}
.blank_btn:hover span {
  color: var(--main);
}
.blank_btn:hover::after {
  background-image: url("/assets/images/icon/icon_external_blue.svg");
}
@media screen and (max-width: 768px) {
  .blank_btn {
    font-size: 1.6rem;
    line-height: 2.25;
    padding-block: 0.5rem;
    padding-inline: 2.4rem;
    gap: 0rem;
    width: 100%;
  }
  .blank_btn._sp-gap16 {
    gap: 1.6rem;
  }
  .blank_btn._sp-lh16 {
    line-height: 1.6;
  }
  .blank_btn span {
    flex: 1;
    text-align: center;
  }
  .blank_btn::after {
    width: 2rem;
    height: 2rem;
  }
}

.history__lists {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.history__text {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  font-size: 1.6rem;
  line-height: 2.125;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .history__text {
    font-size: 1.5rem;
    line-height: 150%;
    gap: 0.7rem;
  }
}
.history__year {
  min-width: 12rem;
  padding-inline: 2.2rem;
  flex-shrink: 0;
  padding-block: 0.4rem 0.6rem;
  letter-spacing: 0.03em;
  font-size: 1.5rem;
  line-height: 160%;
}
@media screen and (max-width: 768px) {
  .history__year {
    min-width: auto;
    font-size: 1.3rem;
    padding-inline: 1.3rem;
    line-height: 184%;
    letter-spacing: 0.03em;
  }
}
.history__lists {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .history__lists {
    gap: 1.6rem;
  }
}

.privacy .privacy__container {
  padding-block: 6.4rem 9.6rem;
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
.privacy .privacy__contents h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.03em;
  padding-left: 1.6rem;
  border-left: 3px solid var(--main);
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__contents h2 {
    font-size: 1.8rem;
    letter-spacing: 0.03em;
    margin-bottom: 3.2rem;
  }
}
.privacy .privacy__contents--10 .privacy__text--list {
  margin-left: 0;
}
.privacy .privacy__text {
  line-height: 175%;
  font-weight: 400;
  counter-reset: list;
}
.privacy .privacy__text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-thickness: 0.1em;
  text-decoration-color: var(--blue);
}
@media screen and (max-width: 768px) {
  .privacy .privacy__text {
    line-height: 165%;
  }
}
.privacy .privacy__text--fz-sm {
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
}
.privacy .privacy__text--fz-md {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__text--fz-md {
    font-size: 1.4rem;
  }
}
.privacy .privacy__text--list-wrapper {
  display: block;
  font-weight: 400;
}
.privacy .privacy__text--list {
  margin-left: 0.25em;
  display: flex;
  align-items: flex-start;
  font-weight: 400;
  gap: 0.4rem;
}
.privacy .privacy__text--list:before {
  content: "・";
  display: block;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__text--list {
    gap: 0.4rem;
  }
}
.privacy .privacy__text--list--number {
  margin-left: 0rem;
}
.privacy .privacy__text--list--number:before {
  counter-increment: list;
  content: counter(list) ".";
  width: 2rem;
  text-align: right;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .privacy .privacy__text--list--number {
    margin-left: 0rem;
    gap: 0.4rem;
  }
  .privacy .privacy__text--list--number:before {
    width: 1.6rem;
  }
}
.privacy .mt-1em {
  margin-top: 2.8rem;
}
@media screen and (max-width: 768px) {
  .privacy .mt-1em {
    margin-top: 2.3rem;
  }
}
.privacy .ml-0 {
  margin-left: 0;
}

/* .privacy-policy {
  p {
    font-size: 1.6rem;
    line-height: 175%;
    margin-top: 4rem;

    @include mq(sp) {
      font-size: rem(14);
      margin-top: rem(32);
    }
  }

  & > .contents_container {
    display: block;

    .main_contents {
      & > .privacy-policy_container {
        & > .privacy-policy_contents {
          width: 100%;

          & > ul {
            margin-top: rem(80);
            display: flex;
            gap: rem(80);
            flex-direction: column;

            @include mq(sp) {
              margin-top: rem(64);
              gap: rem(64);
            }

            & > li {
              & > .contents_subtitle {
                padding-bottom: 1.6rem;
                border-bottom: 1px solid #d4dde6;

                & > h3 {
                  font-size: 2rem;
                  line-height: 175%;
                  font-weight: 600;

                  @include mq(sp) {
                    font-size: rem(16);
                  }
                }
              }

              & > p {
                margin-top: 2.4rem;
                font-size: 1.6rem;
                line-height: 175%;

                @include mq(sp) {
                  font-size: rem(14);
                }
              }

              & > ul {
                padding-left: 2rem;
                display: flex;
                flex-direction: column;
                gap: 1rem;
                margin-top: 3rem;

                & > li {
                  list-style: disc;
                  font-weight: 300;

                  & > a {
                    color: $link;
                    text-decoration: underline;
                    position: relative;
                    font-size: rem(16);
                    line-height: calc(24 / 16);

                    &::before {
                      content: "";
                      position: absolute;
                      width: 1.4rem;
                      height: 1.4rem;
                      background: url("/assets/images/icon_external_black.svg")
                        no-repeat center center/contain;
                      top: 50%;
                      right: -2rem;
                      translate: 0 -50%;
                    }

                    &:hover {
                      color: #004e8c;
                    }
                  }
                }

                @include mq(sp) {
                  gap: rem(4);
                }
              }
            }
          }
        }
      }
    }
  }
} */
.privacy-policy p {
  font-size: 1.6rem;
  line-height: 175%;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .privacy-policy p {
    font-size: 1.4rem;
    margin-top: 3.2rem;
  }
}
.privacy-policy > .contents_container {
  display: block;
}
.privacy-policy
  > .contents_container
  .main_contents
  > .privacy-policy_container
  > .privacy-policy_contents {
  width: 100%;
}
.privacy-policy
  > .contents_container
  .main_contents
  > .privacy-policy_container
  > .privacy-policy_contents
  > ul {
  margin-top: 8rem;
  display: flex;
  gap: 8rem;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .privacy-policy
    > .contents_container
    .main_contents
    > .privacy-policy_container
    > .privacy-policy_contents
    > ul {
    margin-top: 6.4rem;
    gap: 6.4rem;
  }
}
.privacy-policy
  > .contents_container
  .main_contents
  > .privacy-policy_container
  > .privacy-policy_contents
  > ul
  > li
  > .contents_subtitle {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #d4dde6;
}
.privacy-policy
  > .contents_container
  .main_contents
  > .privacy-policy_container
  > .privacy-policy_contents
  > ul
  > li
  > .contents_subtitle
  > h3 {
  font-size: 2rem;
  line-height: 175%;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .privacy-policy
    > .contents_container
    .main_contents
    > .privacy-policy_container
    > .privacy-policy_contents
    > ul
    > li
    > .contents_subtitle
    > h3 {
    font-size: 1.6rem;
  }
}
.privacy-policy
  > .contents_container
  .main_contents
  > .privacy-policy_container
  > .privacy-policy_contents
  > ul
  > li
  > p {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 175%;
}
@media screen and (max-width: 768px) {
  .privacy-policy
    > .contents_container
    .main_contents
    > .privacy-policy_container
    > .privacy-policy_contents
    > ul
    > li
    > p {
    font-size: 1.4rem;
  }
}
.privacy-policy
  > .contents_container
  .main_contents
  > .privacy-policy_container
  > .privacy-policy_contents
  > ul
  > li
  > p
  a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--blue);
  position: relative;
}
.privacy-policy
  > .contents_container
  .main_contents
  > .privacy-policy_container
  > .privacy-policy_contents
  > ul
  > li
  > ul {
  padding-left: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.privacy-policy
  > .contents_container
  .main_contents
  > .privacy-policy_container
  > .privacy-policy_contents
  > ul
  > li
  > ul
  > li {
  list-style: disc;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.5;
}
.privacy-policy
  > .contents_container
  .main_contents
  > .privacy-policy_container
  > .privacy-policy_contents
  > ul
  > li
  > ul
  > li
  > a {
  color: var(--link);
  text-decoration: underline;
  position: relative;
}
.privacy-policy
  > .contents_container
  .main_contents
  > .privacy-policy_container
  > .privacy-policy_contents
  > ul
  > li
  > ul
  > li
  > a::before {
  content: "";
  position: absolute;
  width: 1.4rem;
  height: 1.4rem;
  background: url("/assets/images/icon_external_black.svg") no-repeat center center/contain;
  top: 50%;
  right: -2rem;
  translate: 0 -50%;
}
.privacy-policy
  > .contents_container
  .main_contents
  > .privacy-policy_container
  > .privacy-policy_contents
  > ul
  > li
  > ul
  > li
  > a:hover {
  color: #004e8c;
}
@media screen and (max-width: 768px) {
  .privacy-policy
    > .contents_container
    .main_contents
    > .privacy-policy_container
    > .privacy-policy_contents
    > ul
    > li
    > ul {
    gap: 0.4rem;
  }
}

.group__lists {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.group__link {
  border: 1px solid var(--bd-gray);
  padding: 4.4rem 4rem;
  width: 100%;
  transition: all 0.3s ease;
}
.group__link:hover {
  background-color: rgba(141, 151, 161, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(2px);
}
.group__link h3 {
  color: var(--main);
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 140%;
}
.group__link h3::after {
  content: "";
  display: block;
  width: 2rem;
  aspect-ratio: 1/1;
  height: auto;
  background: url(../images/blank-icon-blue.webp) no-repeat center center/contain;
}
.group__link p {
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 175%;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .group__link {
    padding: 1.6rem 2.4rem;
  }
  .group__link h3 {
    gap: 1.3rem;
    justify-content: space-between;
    line-height: 160%;
  }
  .group__link h3::after {
    width: 1.6rem;
  }
  .group__link p {
    margin-top: 0.8rem;
    font-size: 1.5rem;
    line-height: 186%;
  }
}

.notfound_contents {
  text-align: center;
  padding-block: 8rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.notfound_contents h3 {
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 107%;
}
.notfound_contents p {
  font-size: 1.6rem;
  line-height: 175%;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .notfound_contents h3 {
    font-size: 2rem;
    line-height: 160%;
  }
  .notfound_contents p {
    font-size: 1.4rem;
    line-height: 175%;
  }
}
.notfound_btn a {
  font-size: 1.6rem;
  line-height: 225%;
  display: flex;
  font-weight: 400;
  gap: 1.6rem;
  justify-content: center;
  align-items: center;
}
.notfound_btn a span {
  display: block;
}
.notfound_btn a span svg {
  transform: translateY(3px);
}
@media screen and (max-width: 768px) {
  .notfound_btn a {
    font-size: 1.4rem;
    line-height: 257%;
  }
  .notfound_btn a span svg {
    width: 0.6rem;
    height: 1.2rem;
    transform: translateY(1px);
  }
}

.mission__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mission__wrapper {
    grid-template-columns: 1fr;
    position: relative;
    padding-bottom: 16rem;
  }
}
.mission__wrapper-text {
  margin-top: 7%;
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  .mission__wrapper-text {
    margin-top: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  .mission__wrapper-text {
    margin-top: 6.4rem;
  }
}
.mission__title {
  font-size: 3.1vw;
  color: var(--main);
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  .mission__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .mission__title {
    font-size: 3.2rem;
  }
}
.mission__text {
  margin-block: 6.7% 6.3%;
  letter-spacing: 0.05em;
  font-size: 1.05vw;
  line-height: 180%;
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  .mission__text {
    font-size: 1.6rem;
    margin-block: 3.2rem 3rem;
  }
}
@media screen and (max-width: 768px) {
  .mission__text {
    margin-block: 4rem 4rem;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}
.mission__title,
.mission__text {
  width: min(73.5rem, 80%);
  margin-right: 7rem;
  margin-left: auto;
  padding-left: 2rem;
}
@media screen and (max-width: 768px) {
  .mission__title,
  .mission__text {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-inline: 2rem;
  }
}
.mission__gradient {
  padding-block: 5.12%;
  position: relative;
  /* overflow: hidden; */
}
.mission__gradient::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #009ce5 0%, #005bac 100%);
  transform: translateX(-100%);
  transform-origin: left center;
}
.mission__gradient p {
  width: min(73.5rem, 76%);
  margin-right: 7rem;
  margin-left: auto;
  padding-left: 2rem;
  font-size: 1.35vw;
  color: var(--white);
  line-height: 180%;
  letter-spacing: 0.05em;
  font-weight: 700;
  opacity: 0;
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  .mission__gradient {
    padding-block: 3rem;
  }
  .mission__gradient p {
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 768px) {
  .mission__gradient {
    padding-block: 2.4rem;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .mission__gradient p {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-inline: 0rem;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    text-align: center;
  }
}
.mission__gradient.is-active::before {
  animation: slideInBg 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.mission__gradient.is-active p {
  animation: fadeInText 0.3s ease-out forwards;
  animation-delay: 0.6s;
}

.fv {
  position: relative;
}
.fv__wrapper {
  margin-left: 8rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fv__wrapper {
    margin-left: 2rem;
    top: auto;
    bottom: 10rem;
    transform: translateY(0);
    padding-inline: 0;
  }
}
.fv__wrapper:not(.is-active) .fv__title-block::before {
  animation: none;
  transform: translateX(-100%);
}
.fv__wrapper:not(.is-active) .grad-anime {
  animation: none;
  opacity: 0;
}
.fv__title {
  font-size: 5.6rem;
  line-height: 160%;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.fv__title-block {
  display: block;
  position: relative;
  padding-inline: 2rem;
  width: fit-content;
  overflow: hidden;
}
.fv__title-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #fff;
  transform: translateX(-100%);
  transform-origin: left center;
}
.fv__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.fv__title-sm {
  width: fit-content;
  font-size: 2.8rem;
  line-height: 1;
  letter-spacing: 0.05em;
}
.fv__title-sm-wrapper {
  display: flex;
  flex-direction: column;
}
.fv__title-sm-wrapper span + span {
  margin-top: -1px;
}
.fv__title-sm-block {
  padding: 1rem 0rem;
}
.fv__title-sm-block::before {
  background: linear-gradient(90deg, #009ce5 0%, #005bac 100%);
}
.fv__title-sm-text.fv__title-img {
  background: none;
}
.fv__title-sm-text.fv__title-img::before {
  background: none;
}
.fv__title-sm-block:has(.fv__title-img)::before {
  background: white;
  padding: 1rem;
}
.fv__title-sm-text.fv__title-img picture {
  display: block;
  text-align: center;
}
.fv__title-sm-text.fv__title-img img {
  max-width: 200px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .fv__title-sm-text.fv__title-img img {
    max-width: 150px;
  }
}
.fv__title-sm-block--slide01::before {
  background: linear-gradient(90deg, #009ce5 0%, #017cc8 100%);
}
@media screen and (max-width: 768px) {
  .fv__title-sm-block--slide01::before {
    background: linear-gradient(90deg, #009ce5 0%, #0168b7 100%);
  }
}
@media screen and (max-width: 768px) {
  .fv__title-sm-block--slide03::before {
    background: linear-gradient(90deg, #009ce5 0%, #0070be 100%);
  }
}
.fv__title-sm-text {
  color: var(--white);
  -webkit-text-fill-color: currentColor !important;
  padding-inline: 2rem;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 1.9rem;
  }
  .fv__title-block {
    padding-inline: 1rem;
  }
  .fv__title-sm {
    font-size: 1.5rem;
    padding: 0.8rem 0.6rem;
  }
  .fv__title-sm-text {
    padding-inline: 0rem;
  }
}
.fv .grad-anime {
  font-weight: 700;
  display: inline-block;
  position: relative;
  z-index: 1;
  background: linear-gradient(90deg, #009ce5 0%, #005bac 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
}
.fv__btn {
  opacity: 0;
  transform: translateY(40px);
  margin-top: 1.6rem;
  margin-left: 0 !important;
  background-color: var(--white);
  padding-inline: 4rem !important;
}
@media screen and (max-width: 768px) {
  .fv__btn {
    padding-block: 1rem !important;
    padding-inline: 2rem !important;
  }
}
.fv__btn.is-active {
  animation: fadeInBtn 0.5s ease-in-out forwards;
}
.fv__btn-text {
  font-size: 1.6rem !important;
}
@media screen and (max-width: 768px) {
  .fv__btn-text {
    font-size: 1.4rem !important;
  }
}
.fv__btn-icon {
  width: 2.4rem !important;
  height: 2.4rem !important;
}
@media screen and (max-width: 768px) {
  .fv__btn-icon {
    width: 1.8rem !important;
    height: 1.8rem !important;
  }
}
.fv__btn:not(.is-active) {
  animation: none;
  opacity: 0;
  transform: translateY(40px);
}
.fv .is-active .fv__title-block::before {
  animation: slideInBg 0.6s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
.fv .is-active .fv__title-block:nth-child(2)::before {
  animation-delay: 0.3s;
}
.fv .is-active .fv__title-block .grad-anime {
  animation: fadeInText 0.3s ease-out forwards;
  animation-delay: 0.9s;
}

@keyframes slideInBg {
  to {
    transform: translateX(0%);
  }
}
@keyframes fadeInText {
  to {
    opacity: 1;
  }
}
@keyframes fadeInBtn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .text-block::before {
    animation: none !important;
    transform: none !important;
  }
  .grad-anime {
    animation: none !important;
    opacity: 1 !important;
  }
}
.company {
  overflow-x: hidden;
}
.company_lists {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .company_lists {
    gap: 5.6rem;
  }
}
.company_list {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
@media screen and (max-width: 768px) {
  .company_list {
    gap: 2.4rem;
  }
}
.company_message {
  display: flex;
  background: var(--blue-light);
}
.company_message-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  width: 30%;
  aspect-ratio: 740 / 470;
  margin-left: 0rem;
  margin-left: 2rem;
  margin-top: 4.5rem;
}
.company_message-img img {
  width: 100%;
  object-fit: cover;
}
.company_message-body {
  max-width: 100%;
  width: 70%;
  position: relative;
  z-index: 2;
  margin-left: auto;
  background: var(--blue-light);
  display: flex;
  flex-direction: column;
  gap: 1.7rem;
  padding: 4rem;
}
.company_message-text {
  font-size: 1.8rem;
  line-height: 1.65;
  letter-spacing: 0em;
}
.company_message-name {
  display: flex;
  flex-direction: column;
  margin-left: auto;
}
.company_message-name_title {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0em;
  color: #555;
}
.company_message-name_name {
  font-size: 1.8rem;
  line-height: 1.75;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .company_message {
    gap: 2.4rem;
  }
  .company_message-img {
    width: 100%;
    aspect-ratio: 335/335;
  }
  .company_message-img img {
    height: 40rem;
  }
  .company_message-body {
    margin-top: -8rem;
    margin-inline: auto;
    max-width: calc(100% - 3rem);
    width: 100%;
    padding: 2.4rem 1.6rem;
  }
  .company_message-name_title {
    font-size: 1.5rem;
  }
  .company_message-name_name {
    font-size: 1.5rem;
  }
}
.company_message02 {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.company_message02-img {
  max-width: 100%;
  width: 100%;
  aspect-ratio: 860/400;
  background: #ccc;
}
.company_message02-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company_message02-body {
  max-width: 100%;
}
.company_message02-text {
  font-size: 1.6rem;
  line-height: 1.75;
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .company_message02 {
    gap: 2.4rem;
  }
  .company_message02-img {
    aspect-ratio: 335/220;
  }
  .company_message02-text {
    font-size: 1.5rem;
    line-height: 1.65;
  }
}
.company_dlist {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.company_dlist_item {
  display: flex;
  gap: 3.2rem;
}
.company_dlist_item dt {
  width: 14rem;
  height: 3.4rem;
  background: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.03em;
  border-radius: 6.25em;
}
.company_dlist_item dd {
  padding-block: 0.5rem;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .company_dlist_item {
    gap: 0.7rem;
  }
  .company_dlist_item dt {
    width: 11rem;
    height: 2.6rem;
    font-size: 1.3rem;
    flex-shrink: 0;
  }
  .company_dlist_item dd {
    font-size: 1.5rem;
    padding-block: 0;
  }
}
.company_box {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  background: var(--blue-light);
  padding: 4rem;
}
.company_box_title {
  font-size: 2.8rem;
  line-height: 1.5;
  letter-spacing: 0em;
  font-weight: 700;
  text-align: center;
}
.company_box_col {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.company_box_item {
  width: 100%;
  background: var(--white);
  padding: 4rem;
  display: flex;
  gap: 4rem;
}
.company_box_item_number {
  font-size: 11.2rem;
  font-weight: 200;
  line-height: 1;
  letter-spacing: 0em;
  flex-shrink: 0;
  font-style: italic;
  font-family: "Inter", sans-serif;
}
.company_box_item_text {
  display: flex;
  flex-direction: column;
}
.company_box_item_text h4 {
  font-size: 2rem;
  line-height: 1.65;
  letter-spacing: 0em;
  font-weight: 700;
  padding-bottom: 1.6rem;
  margin-bottom: 1.6rem;
  border-bottom: 1px solid rgba(141, 151, 161, 0.2);
}
.company_box_item_text p {
  font-size: 1.6rem;
  line-height: 1.6;
  letter-spacing: 0em;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .company_box {
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding: 4rem 2rem;
  }
  .company_box_title {
    font-size: 2.4rem;
    text-align: left;
  }
  .company_box_item {
    padding: 2.4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  .company_box_item_number {
    font-size: 5.6rem;
  }
  .company_box_item_text h4 {
    font-size: 1.8rem;
    text-align: center;
  }
  .company_box_item_text p {
    font-size: 1.5rem;
  }
}

.top-news {
  padding-block: 12rem;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding-block: 8rem 6.4rem;
  }
}
.top-news__wrapper {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  max-width: 148rem;
  width: 86%;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media screen and (max-width: 768px) {
  .top-news__wrapper {
    width: 100%;
    gap: 3.2rem;
  }
}
.top-news__title {
  font-size: 3.1vw;
  color: var(--main);
  text-transform: uppercase;
  font-weight: 700;
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  .top-news__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .top-news__title {
    font-size: 3.2rem;
  }
}
.top-news__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  margin-inline: auto;
  border: 1px solid var(--blue);
  padding: 1.5rem 3.5rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top-news__btn {
    padding: 1.45rem 3.1rem;
  }
}
.top-news__btn-text {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 0.03em;
  font-weight: 500;
  color: var(--blue);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top-news__btn-text {
    font-size: 1.5rem;
  }
}
.top-news__btn-icon {
  width: 3.8rem;
  height: 3.8rem;
  flex-shrink: 0;
  background: url(/assets/images/arrow-up-icon-white.svg) no-repeat center center/contain;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .top-news__btn-icon {
    width: 3.2rem;
    height: 3.2rem;
  }
}
.top-news__btn:hover {
  background: var(--blue);
  color: var(--white);
  gap: 1.5rem;
  padding-right: 2.5rem;
}
@media screen and (max-width: 768px) {
  .top-news__btn:hover {
    gap: 1rem;
    padding-right: 2.6rem;
  }
}
.top-news__btn:hover .top-news__btn-text {
  color: var(--white);
}
.top-news__btn:hover .top-news__btn-icon {
  background: url(/assets/images/arrow-up-icon-blue.svg) no-repeat center center/contain;
}

.news_lists {
  display: flex;
  flex-direction: column;
  border-block: 1px solid #555;
}
.news_lists > * + * {
  border-top: 1px solid #555;
}
.news_list {
  width: 100%;
}
.news_list_link {
  padding-block: 2.4rem;
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  transition: all 0.3s ease;
}
.news_list_link:hover {
  background-color: var(--blue-light);
}
.news_list_date {
  width: 13rem;
  font-size: 1.6rem;
  line-height: 2.25;
  letter-spacing: 0em;
  font-weight: 400;
  color: #009ce5;
  flex-shrink: 0;
}
.news_list_content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.news_list_title {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  max-width: 100%;
  width: fit-content;
}
.news_list_title_text {
  font-size: 1.6rem;
  line-height: 2.25;
  letter-spacing: 0em;
  font-weight: 400;
  flex: 1;
}
.news_list_title_icon {
  width: 3.2rem;
  height: 3.2rem;
  flex-shrink: 0;
  background: url(/assets/images/icon/icon_pdf.svg) no-repeat center center/contain;
}
.news_list_category {
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0em;
  font-weight: 400;
  color: #555;
}
@media screen and (max-width: 768px) {
  .news_list_link {
    padding-block: 1.6rem;
    gap: 0.8rem;
    flex-direction: column;
  }
  .news_list_date {
    width: 100%;
    font-size: 1.2rem;
    line-height: 1;
  }
  .news_list_content {
    gap: 1.6rem;
  }
  .news_list_title_text {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.solution {
  padding-block: 12rem;
}
@media screen and (max-width: 768px) {
  .solution {
    padding-block: 6.4rem 0rem;
  }
}
.solution__wrapper {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  max-width: 148rem;
  width: 86%;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media screen and (max-width: 768px) {
  .solution__wrapper {
    width: 100%;
    gap: 4.8rem;
  }
}
.solution__title {
  font-size: 3.1vw;
  color: var(--main);
  text-transform: uppercase;
  font-weight: 700;
  text-align: center;
  font-family: "Inter", sans-serif;
}
@media screen and (max-width: 1440px) and (min-width: 769px) {
  .solution__title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 768px) {
  .solution__title {
    font-size: 3.2rem;
  }
}
.solution__content {
  display: flex;
  gap: 10rem;
}
@media screen and (max-width: 768px) {
  .solution__content {
    gap: 9.6rem;
    flex-direction: column;
  }
}
.solution__content > * + * {
  position: relative;
}
.solution__content > * + *::before {
  content: "";
  position: absolute;
  top: 0;
  right: calc(100% + 6rem);
  width: 1px;
  height: 100%;
  background: rgba(141, 151, 161, 0.2);
  transform: translateX(50%);
}
@media screen and (max-width: 768px) {
  .solution__content > * + *::before {
    width: 100%;
    height: 1px;
    right: 0;
    top: auto;
    bottom: calc(100% + 4.8rem);
    transform: translateX(0) translateY(50%);
  }
}
.solution__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: auto;
  padding-block: 1.95rem;
  gap: 2.4rem;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .solution__item {
    padding-block: 0rem;
    gap: 1.6rem;
  }
}
.solution__item-tag {
  display: flex;
  gap: 1.6rem;
}
.solution__item-tag span {
  width: 8rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 10rem;
}
@media screen and (max-width: 768px) {
  .solution__item-tag {
    gap: 0.8rem;
  }
  .solution__item-tag span {
    width: 7rem;
    height: 2.6rem;
    font-size: 1.5rem;
  }
}
.solution__item-title {
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-align: center;
}
.solution__item-img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .solution__item-img {
    margin-top: 0.8rem;
  }
}
.solution__item-text {
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 175%;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .solution__item-text {
    margin-top: 0.8rem;
    font-size: 1.4rem;
    padding-inline: 1.75rem;
  }
}
.solution__item-btn {
  margin-inline: auto;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid #555;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  padding-inline: 1rem;
  transition: all 0.3s ease;
  margin-top: 4rem;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .solution__item-btn {
    margin-top: 2.4rem;
  }
}
.solution__item-btn-text {
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-align: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .solution__item-btn-text {
    font-size: 1.5rem;
  }
}
.solution__item-btn-icon {
  width: 1.6rem;
  height: 1.2rem;
  background: url(/assets/images/arrow-icon-black.svg) no-repeat center center/contain;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .solution__item-btn-icon {
    width: 1.3rem;
    height: 1rem;
  }
}
.solution__item-btn:hover {
  border-color: var(--blue);
}
.solution__item-btn:hover .solution__item-btn-text {
  color: var(--blue);
}
.solution__item-btn:hover .solution__item-btn-icon {
  transform: translateX(1rem);
  background: url(/assets/images/arrow-icon-blue.svg) no-repeat center center/contain;
}

.svg {
  position: absolute;
  width: 0;
  height: 0;
}

p.caution {
  font-size: 1.2rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  p.caution {
    margin-top: 2rem;
  }
}

.lp_container {
  display: flex;
  flex-direction: column;
}
.lp_header {
  position: relative;
  padding-top: 6rem;
  width: 100%;
  background-size: cover;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .lp_header {
    padding-top: 3.2rem;
  }
}
.lp_header_supply {
  background: linear-gradient(180deg, #009ce5 0%, #005bac 105.85%);
  clip-path: url(#lp_header_supply_clip_path);
  padding-bottom: 11.6rem;
}
@media screen and (max-width: 768px) {
  .lp_header_supply {
    background: linear-gradient(180deg, #009ce5 0%, #005bac 110.37%);
    clip-path: url(#lp_header_supply_clip_path-sp);
    padding-bottom: 6.6rem;
  }
}
.lp_header_merit {
  background: linear-gradient(180deg, #009ce5 0%, #005bac 126.57%);
  clip-path: url(#lp_header_merit_clip_path);
  padding-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .lp_header_merit {
    background: linear-gradient(180deg, #009ce5 0%, #005bac 152.74%);
    clip-path: url(#lp_header_merit_clip_path-sp);
    padding-bottom: 6.5rem;
  }
}
.lp_header_flow {
  background: linear-gradient(180deg, #009ce5 0%, #005bac 158.08%);
  clip-path: url(#lp_header_flow_clip_path);
  padding-bottom: 11.7rem;
}
@media screen and (max-width: 768px) {
  .lp_header_flow {
    background: linear-gradient(180deg, #009ce5 0%, #005bac 274.24%);
    clip-path: url(#lp_header_flow_clip_path-sp);
    padding-bottom: 6.5rem;
  }
}
.lp_header_reception {
  background: linear-gradient(180deg, #009ce5 0%, #005bac 158.08%);
  clip-path: url(#lp_header_reception_clip_path);
  padding-bottom: 11.7rem;
}
@media screen and (max-width: 768px) {
  .lp_header_reception {
    background: linear-gradient(180deg, #009ce5 0%, #005bac 274.24%);
    clip-path: url(#lp_header_reception_clip_path-sp);
    padding-bottom: 6.5rem;
  }
}
.lp_header_case {
  background: linear-gradient(180deg, #009ce5 0%, #005bac 114.56%);
  clip-path: url(#lp_header_case_clip_path);
  padding-bottom: 12rem;
}
@media screen and (max-width: 768px) {
  .lp_header_case {
    background: linear-gradient(180deg, #009ce5 0%, #005bac 152.74%);
    clip-path: url(#lp_header_merit_clip_path-sp);
    padding-bottom: 7.7rem;
  }
}
.lp_title {
  font-size: 3.6rem;
  line-height: 1.4444444444;
  font-weight: 700;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lp_title {
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }
}
.lp_sub_title {
  max-width: 93.6rem;
  width: 100%;
  margin-inline: auto;
  font-size: 1.8rem;
  line-height: 1.65;
  text-align: center;
  color: var(--white);
  letter-spacing: 0em;
}
@media screen and (max-width: 768px) {
  .lp_sub_title {
    max-width: 33.5rem;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  .lp_sub_title_sp_left {
    text-align: left;
  }
}
.lp .btn {
  display: block;
  height: 6.6rem;
  border-radius: 62.5rem;
  background: #f5c845;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}
.lp .btn span {
  height: 1.8rem;
  position: absolute;
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  transition: 0.3s;
}
.lp .btn:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.lp .btn:hover span {
  right: 3.6rem;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .lp .btn {
    font-size: 1.4rem;
    height: 5rem;
  }
  .lp .btn span {
    right: 2rem;
  }
}

.lp_fv {
  background-image: url(/assets/images/lp/lp-fv-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 8rem;
  padding-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .lp_fv {
    padding-top: 3.2rem;
    padding-bottom: 1.2rem;
  }
}
.lp_fv_body {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.lp_fv_title {
  font-size: 4rem;
  line-height: 1.2;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lp_fv_title {
    font-size: 2.3rem;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}
.lp_fv_box {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  width: 100%;
  background-color: var(--white);
  padding: 4.8rem 5.7rem 3.9rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  margin-top: 4.8rem;
}
@media screen and (max-width: 768px) {
  .lp_fv_box {
    width: calc(100% - 4rem);
    margin-inline: auto;
    padding: 3.2rem 1.7rem 3.2rem;
    gap: 1.8rem;
    margin-top: 2.4rem;
  }
}
.lp_fv_box_img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lp_fv_box_img {
    padding-inline: 1.25rem;
  }
}
.lp_fv_box_text {
  font-size: 2.8rem;
  line-height: 1.8;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lp_fv_box_text {
    font-size: 1.6rem;
    line-height: 1.8;
  }
  .lp_fv_box_text br {
    display: none;
  }
}
.lp_fv_text {
  font-size: 1.4rem;
  line-height: 1.65;
  color: var(--white);
  margin-top: 1.6rem;
  font-weight: 400;
}
.lp_fv_text span {
  background: yellow;
}

@media screen and (max-width: 768px) {
  .lp_fv_text {
    font-size: 1.2rem;
    margin-top: 1.2rem;
    padding-inline: 2rem;
  }
  .lp_fv_text br {
    display: none;
  }
}

.lp_supply_content {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}
@media screen and (max-width: 768px) {
  .lp_supply_content {
    gap: 4rem;
  }
}
.lp_supply_content01 {
  padding: 8rem 2rem 11.2rem;
}
@media screen and (max-width: 768px) {
  .lp_supply_content01 {
    padding: 4.8rem 0rem 4rem;
  }
}
.lp_supply_content02 {
  background-color: #f5f5f5;
  padding: 10rem 2rem;
}
@media screen and (max-width: 768px) {
  .lp_supply_content02 {
    padding: 4.8rem 2rem 8rem;
  }
}
.lp_supply_sec_titel {
  font-size: 3.6rem;
  line-height: 1.4444444444;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lp_supply_sec_titel {
    font-size: 2.4rem;
    line-height: 1.4583333333;
  }
}
.lp_supply_body {
  max-width: 120rem;
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
}
.lp_supply_col {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .lp_supply_col {
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4.6rem 1.5rem;
  }
}
.lp_supply_col_item {
  width: 27rem;
  height: 27rem;
  border: 0.5rem solid #e1eaf4;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.9rem;
}
@media screen and (max-width: 768px) {
  .lp_supply_col_item {
    width: 16rem;
    height: 16rem;
    border-width: 0.3rem;
    gap: 0.6rem;
  }
}
.lp_supply_col_item .container {
  margin-top: 8rem;
}
@media screen and (max-width: 768px) {
  .lp_supply_col_item .container {
    margin-top: 7rem;
  }
}
.lp_supply_col_item_title {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--blue);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lp_supply_col_item_title {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
.lp_supply_col_item_img {
  width: 16.2rem;
}
@media screen and (max-width: 768px) {
  .lp_supply_col_item_img {
    width: 9.72rem;
  }
}
.lp_supply_box {
  display: flex;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .lp_supply_box {
    flex-direction: column;
  }
}
.lp_supply_box_item {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 0.2rem solid var(--blue);
  padding: 4rem;
  background: var(--white);
}
@media screen and (max-width: 768px) {
  .lp_supply_box_item {
    padding: 2.4rem 2rem;
  }
}
.lp_supply_box_item_title {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
  color: var(--white);
  background-color: var(--blue);
  width: 100%;
  height: 8.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
}
.lp_supply_box_item_title .icon.icon01 {
  width: 3.5rem;
}
.lp_supply_box_item_title .icon.icon02 {
  width: 4.8rem;
}
.lp_supply_box_item_title .text {
  font-size: 2.4rem;
  line-height: 1.4583333333;
  font-weight: 700;
  color: var(--white);
}
@media screen and (max-width: 768px) {
  .lp_supply_box_item_title {
    flex-direction: column;
    height: auto;
    padding-block: 1.2rem;
    gap: 0.4rem;
  }
  .lp_supply_box_item_title .icon.icon01 {
    width: 3.1rem;
  }
  .lp_supply_box_item_title .icon.icon02 {
    width: 4rem;
  }
  .lp_supply_box_item_title .text {
    font-size: 1.8rem;
    line-height: 1.4444444444;
  }
}
.lp_supply_box_item_text {
  font-size: 1.6rem;
  line-height: 1.6;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .lp_supply_box_item_text {
    font-size: 1.6rem;
    margin-top: 2.4rem;
  }
}
.lp_supply_box_item_list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-top: 4rem;
  padding-top: 4rem;
  margin-bottom: 6.4rem;
  border-top: 0.1rem solid #d4dde6;
}
@media screen and (max-width: 768px) {
  .lp_supply_box_item_list {
    margin-top: 1.6rem;
    padding-top: 1.6rem;
    margin-bottom: 2.4rem;
  }
}
.lp_supply_box_item_list li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-left: 3.2rem;
}
.lp_supply_box_item_list li::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  background-image: url(/assets/images/lp/ic_baseline-check.webp);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
}
.lp_supply_box_item_list li h5 {
  font-size: 1.7rem;
  line-height: 1.65;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--blue);
}
@media screen and (max-width: 768px) {
  .lp_supply_box_item_list li h5 {
    font-size: 1.6rem;
  }
}
.lp_supply_box_item_list li p {
  font-size: 1.5rem;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #555555;
}
@media screen and (max-width: 768px) {
  .lp_supply_box_item_list li p {
    font-size: 1.4rem;
    letter-spacing: 0.01em;
  }
}
.lp_supply_box_item_box {
  background: #f2f3f5;
  display: flex;
  flex-direction: column;
  height: 15rem;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .lp_supply_box_item_box {
    height: auto;
  }
}
.lp_supply_box_item_box h5 {
  font-size: 1.8rem;
  line-height: 1.4444444444;
  font-weight: 500;
  padding: 0.2rem 2rem 0.4rem;
  background-color: #6fb277;
  color: var(--white);
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .lp_supply_box_item_box h5 {
    font-size: 1.5rem;
    line-height: 1.4666666667;
  }
}
.lp_supply_box_item_box p {
  font-size: 1.6rem;
  line-height: 1.6;
  padding-inline: 2.4rem;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .lp_supply_box_item_box p {
    flex: none;
    font-size: 1.5rem;
    padding: 0.8rem 1.4rem 1.6rem;
  }
}

.lp_case_body {
  max-width: 119.7rem;
  width: 100%;
  margin-inline: auto;
  padding: 8rem 2rem 12rem;
}
@media screen and (max-width: 768px) {
  .lp_case_body {
    padding: 4rem 2rem 8rem;
  }
}
.lp_case_col {
  display: flex;
  gap: 3.6rem;
}
@media screen and (max-width: 768px) {
  .lp_case_col {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.lp_case_item {
  display: flex;
  flex-direction: column;
  flex: 1;
  border: 2px solid var(--blue);
}
@media screen and (max-width: 768px) {
  .lp_case_item {
    width: 100%;
    flex: none;
  }
}
.lp_case_item_img {
  width: 100%;
  aspect-ratio: 375/230;
  background-color: #d9d9d9;
}
@media screen and (max-width: 768px) {
  .lp_case_item_img {
    aspect-ratio: 335/205;
  }
}
.lp_case_item_body {
  padding: 2.4rem 2rem;
}
.lp_case_item_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.lp_case_item_tag span {
  font-size: 1.4rem;
  line-height: 1.4285714286;
  color: var(--white);
  padding: 0.3rem 1.2rem;
  background-color: #979ca0;
  border-radius: 6.25em;
}
.lp_case_item_title {
  font-size: 2rem;
  line-height: 1.65;
  font-weight: 700;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .lp_case_item_title {
    font-size: 1.8rem;
    line-height: 1.6;
    margin-top: 2.4rem;
  }
}
.lp_case_item_text {
  font-size: 1.6rem;
  line-height: 1.65;
  margin-top: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .lp_case_item_text {
    font-size: 1.4rem;
  }
}
.lp_case_item_company {
  font-size: 1.6rem;
  line-height: 1.4375;
  margin-top: 3.2rem;
  color: #555555;
}
@media screen and (max-width: 768px) {
  .lp_case_item_company {
    font-size: 1.4rem;
    line-height: 1.4285714286;
    margin-top: 2.4rem;
  }
}

.lp_merit_body {
  margin-block: 8rem 15.5rem;
}
@media screen and (max-width: 768px) {
  .lp_merit_body {
    margin-block: 4rem 5.6rem;
  }
}
.lp_merit_list {
  display: flex;
  flex-direction: column;
  gap: 8rem;
}
@media screen and (max-width: 768px) {
  .lp_merit_list {
    gap: 6.4rem;
  }
}
.lp_merit_item {
  display: flex;
  justify-content: space-between;
  gap: 6.4rem;
}
.lp_merit_item:nth-child(1) .lp_merit_item_title,
.lp_merit_item:nth-child(3) .lp_merit_item_title {
  align-items: center;
}
@media screen and (max-width: 768px) {
  .lp_merit_item {
    flex-direction: column;
    gap: 2.4rem;
  }
  .lp_merit_item:nth-child(3) .lp_merit_item_title {
    align-items: flex-start;
  }
}
.lp_merit_item_img {
  width: 50rem;
}
@media screen and (max-width: 768px) {
  .lp_merit_item_img {
    width: 100%;
    order: 1;
  }
}
.lp_merit_item_content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .lp_merit_item_content {
    display: contents;
  }
}
.lp_merit_item_title {
  display: flex;
  align-items: flex-start;
  gap: 2.4rem;
  font-size: 2.4rem;
  line-height: 160%;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.lp_merit_item_title span {
  flex-shrink: 0;
  flex-basis: 6.4rem;
  width: 6.4rem;
  height: auto;
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  background: var(--main);
  color: var(--white);
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .lp_merit_item_title {
    order: 0;
    gap: 0.8rem;
    font-size: 1.8rem;
    letter-spacing: normal;
  }
  .lp_merit_item_title span {
    width: 4rem;
    flex-basis: 4rem;
    font-size: 2.4rem;
  }
}
.lp_merit_item_text {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .lp_merit_item_text {
    margin-top: 0;
    font-size: 1.4rem;
    order: 2;
  }
}
.lp_merit .btn {
  width: 32rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .lp_merit .btn {
    width: 100%;
    margin-top: 0rem;
    order: 3;
  }
}

.lp-flow-bg {
  background-image: url(/assets/images/lp/lp-flow-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .lp-flow-bg {
    background-image: url(/assets/images/lp/sp-lp-flow-bg.webp);
  }
}

.lp_flow_body {
  margin-block: 8rem 10rem;
}
@media screen and (max-width: 768px) {
  .lp_flow_body {
    margin-block: 4rem 5.6rem;
  }
}
.lp_flow_list {
  display: flex;
  width: 100%;
  gap: 1.8rem;
}
@media screen and (max-width: 768px) {
  .lp_flow_list {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.lp_flow_item {
  width: calc(16.6666666667% - 1.5rem);
  border: 1px solid var(--main);
  background: var(--white);
}
.lp_flow_item-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  padding: 1.6rem;
}
@media screen and (max-width: 768px) {
  .lp_flow_item {
    width: calc(50% - 0.75rem);
  }
  .lp_flow_item-wrapper {
    padding: 2.4rem 1.7rem;
  }
}
.lp_flow_num {
  font-size: 2rem;
  padding-block: 0.6rem;
  background: var(--main);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  line-height: normal;
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lp_flow_num {
    font-size: 1.8rem;
  }
}
.lp_flow_title {
  text-align: center;
  color: var(--main);
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .lp_flow_title {
    font-size: 1.6rem;
  }
}
.lp_flow_text {
  font-size: 1.6rem;
  line-height: 150%;
}
@media screen and (max-width: 768px) {
  .lp_flow_text {
    font-size: 1.4rem;
  }
}

.lp_reception_body {
  margin-block: 8rem 10rem;
  max-width: 96rem;
  width: 100%;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .lp_reception_body {
    padding-inline: 2rem;
    margin-block: 5rem 5.6rem;
    max-width: 100%;
  }
}
.lp_reception_list {
  display: flex;
  gap: 2.4rem;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .lp_reception_list {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
}
.lp_reception_item {
  padding-block: 0.8rem 0.6rem;
  background: #f5f5f5;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: calc(25% - 1.8rem);
}
@media screen and (max-width: 768px) {
  .lp_reception_item {
    padding-block: 0.8rem;
    width: calc(50% - 0.75rem);
  }
}
.lp_reception_num {
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .lp_reception_num {
    font-size: 1.6rem;
  }
}
.lp_reception_icon {
  width: 4.6rem;
  display: block;
  margin-inline: auto;
  margin-top: 1.1rem;
}
@media screen and (max-width: 768px) {
  .lp_reception_icon {
    margin-top: 0.8rem;
    width: 3.2rem;
  }
}
.lp_reception_text {
  font-size: 1.6rem;
  font-weight: 700;
  color: #555;
}
.lp_reception_note {
  text-align: center;
  font-size: 2rem;
  line-height: 160%;
}
@media screen and (max-width: 768px) {
  .lp_reception_note {
    font-size: 1.4rem;
    text-align: left;
  }
}

.lp_proposal_list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.lp_proposal_item {
  font-size: 1.8rem;
  line-height: 180%;
}

.lp_cta {
  background: var(--main);
  padding-block: 8rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lp_cta {
    padding-block: 4rem;
    padding-inline: 2rem;
  }
}
.lp_cta p {
  color: var(--white);
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .lp_cta p {
    font-size: 2rem;
  }
}
.lp_cta_btn {
  margin-top: 4rem;
  width: 40rem;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .lp_cta_btn {
    margin-top: 2.4rem;
    width: 100%;
  }
}
.lp_cta_link {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .lp_cta_link {
    font-size: 1.4rem;
  }
}

/*# sourceMappingURL=style.css.map */
