/* ------------------------
  modal
------------------------ */
#content .modal {
  visibility: hidden;
  opacity: 0;
  position: relative;
  z-index: 1000;
  transition: opacity 0.4s, visibility 0.4s;
  pointer-events: none;
}
#content .modal[aria-hidden='false'] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
#content .modal_overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 25px;
  background: rgba(0, 0, 0, 0.8);
}
@media (min-width: 640px) {
  #content .modal_overlay {
    padding: 0 80px;
    height: 100%;
  }
}
#content .modal_content {
  position: relative;
  width: calc(100% - 50px);
  height: 600px;
  max-height: calc(100% - 128px);
}
@media (min-width: 640px) {
  #content .modal_content {
    width: 1000px;
    height: auto;
    max-height: calc(100% - 180px);
  }
}
#content .modal_wrap {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 639.98px) {
  #content .modal_wrap {
    overflow: scroll;

    overscroll-behavior: contain;
  }
}
#content .modal_inner {
  margin: 0 auto;
  padding: 46px 23px 42px;
}
@media (min-width: 640px) {
  #content .modal_inner {
    display: flex;
    align-items: flex-start;
    padding: 40px 0;
    width: calc(100% - 130px);

    -moz-column-gap: 40px;

    column-gap: 40px;
  }
}
#content .modal_case {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 2px;
  min-height: 25px;
  background-color: #ebf3ff;
  letter-spacing: 0.06em;
  color: #2764ef;
  font-size: 0.875rem;
  line-height: 1;
}
@media (min-width: 640px) {
  #content .modal_case {
    padding: 2px 12px;
    letter-spacing: 0.06em;
    font-size: 1rem;
    line-height: 1.5;
  }
}
#content .modal_container {
  position: relative;
  z-index: 2;
}
@media (min-width: 640px) {
  #content .modal_container {
    padding-top: 30px;
  }
}
#content .modal_title {
  margin-top: 25px;
  letter-spacing: 0.02em;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}
@media (min-width: 640px) {
  #content .modal_title {
    margin-top: 30px;
    letter-spacing: 0.02em;
    font-size: 1.375rem;
    line-height: 1.6363636364;
  }
}
#content .modal_text {
  margin-top: 7px;
  letter-spacing: 0.06em;
  font-size: 0.875rem;
  line-height: 2;
}
@media (min-width: 640px) {
  #content .modal_text {
    margin-top: 4px;
    letter-spacing: 0.08em;
    font-size: 1rem;
    line-height: 2.25;
  }
}
#content .modal_img {
  position: relative;
  z-index: 1;
  margin-top: 27px;
  width: 100%;
}
@media (min-width: 640px) {
  #content .modal_img {
    flex-shrink: 0;
    margin-top: 0;
    width: 300px;
    max-width: 40%;
    height: 360px;
  }
}
@media (min-width: 640px) {
  #content .modal_thum {
    position: absolute;
    top: 0;
    right: 0;
    width: 34.8275862069vw;
  }
}
@media (min-width: 1160px) {
  #content .modal_thum {
    width: 404px;
  }
}
#content .modal_close {
  display: block;
  position: absolute;
  top: -34px;
  right: 0;
  width: 26px;
  height: 26px;
}
@media (min-width: 640px) {
  #content .modal_close {
    top: -38px;
    width: 22px;
    height: 22px;
  }
}
#content .modal_close::before,
#content .modal_close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  background-color: #fff;
}
@media (min-width: 640px) {
  #content .modal_close::before,
  #content .modal_close::after {
    width: 26px;
  }
}
#content .modal_close::before {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
#content .modal_close::after {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}
#content .modal_arw {
  position: absolute;
  z-index: 20;
  bottom: -56px;
  border: solid 1px #2864ef;
  border-radius: 50%;
  width: 41px;
  height: 41px;
  background-color: #fff;
}
@media (min-width: 640px) {
  #content .modal_arw {
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 54px;
    height: 54px;
  }
}
#content .modal_arw::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-top: solid 2px #2864ef;
  border-right: solid 2px #2864ef;
  width: 7px;
  height: 7px;
}
@media (min-width: 640px) {
  #content .modal_arw::before {
    border-width: 2px;
    width: 10px;
    height: 10px;
  }
}
#content .modal_next {
  right: 88px;
}
#content .modal_next::before {
  transform: translate3d(-56%, -50%, 0) rotate(45deg);
}
@media (min-width: 640px) {
  #content .modal_next {
    right: -70px;
  }
}
#content .modal_prev {
  left: 88px;
}
#content .modal_prev::before {
  transform: translate3d(-44%, -50%, 0) rotate(-135deg);
}
@media (min-width: 640px) {
  #content .modal_prev {
    left: -70px;
  }
}

/* ------------------------
  Components
------------------------ */
#content .combSec_card_btn .combSec_card_btn_inner {
  transition: background-color 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .combSec_card_btn .combSec_card_btn_inner > span {
  transition: color 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .combSec_card_btn .combSec_card_btn_inner > span::before {
  transition: opacity 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .combSec_card_btn .combSec_card_btn_inner > span::after {
  transition: opacity 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .combSec_card_btn:focus .combSec_card_btn_inner {
  background-color: #fff;
}
#content .combSec_card_btn:focus .combSec_card_btn_inner > span {
  color: #2864ef;
}
#content .combSec_card_btn:focus .combSec_card_btn_inner > span::before {
  opacity: 0;
}
#content .combSec_card_btn:focus .combSec_card_btn_inner > span::after {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  #content .combSec_card_btn:hover .combSec_card_btn_inner {
    background-color: #fff;
  }
  #content .combSec_card_btn:hover .combSec_card_btn_inner > span {
    color: #2864ef;
  }
  #content .combSec_card_btn:hover .combSec_card_btn_inner > span::before {
    opacity: 0;
  }
  #content .combSec_card_btn:hover .combSec_card_btn_inner > span::after {
    opacity: 1;
  }
}
#content .viewmore_link {
  transition: background-color 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .viewmore_link > span {
  transition: color 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .viewmore_link::before {
  transition: opacity 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .viewmore_link::after {
  transition: opacity 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .viewmore_link:focus {
  background-color: #fff;
}
#content .viewmore_link:focus > span {
  color: #2864ef;
}
#content .viewmore_link:focus::before {
  opacity: 0;
}
#content .viewmore_link:focus::after {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  #content .viewmore_link:hover {
    background-color: #fff;
  }
  #content .viewmore_link:hover > span {
    color: #2864ef;
  }
  #content .viewmore_link:hover::before {
    opacity: 0;
  }
  #content .viewmore_link:hover::after {
    opacity: 1;
  }
}
#content .business_case_btn > span {
  transition: background-color 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75),
    border-color 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75), color 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .business_case_btn:focus > span {
  border-color: #2864ef;
  background-color: #2864ef;
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  #content .business_case_btn:hover > span {
    border-color: #2864ef;
    background-color: #2864ef;
    color: #fff;
  }
}
#content .modal_arw {
  transition: background-color 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .modal_arw::before {
  transition: border-color 0.25s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .modal_arw:focus {
  background-color: #2864ef;
}
#content .modal_arw:focus::before {
  border-color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  #content .modal_arw:hover {
    background-color: #2864ef;
  }
  #content .modal_arw:hover::before {
    border-color: #fff;
  }
}

/* ------------------------
  kv anime
------------------------ */
body {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}

#content .kv_heading {
  opacity: 0;
  transition: transform 1.22s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.7s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transform: translate3d(0, 40px, 0);
}
#content .kv_text {
  opacity: 0;
  transition: transform 1.22s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.7s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition-delay: 0.3s;
  transform: translate3d(0, 40px, 0);
}
#content .kv.is-loaded .kv_heading {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#content .kv.is-loaded .kv_text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
#content .kv_img {
  visibility: hidden;
}
#content .kv_img.is-show {
  visibility: visible;
}
#content .kv_img_loading {
  opacity: 0;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  transform: scale(1.5);

  will-change: top, transform;
}
@media (min-width: 640px) {
  #content .kv_img_loading {
    position: absolute;
    top: 50%;
    right: calc(50% + 20px);
    left: auto;
    width: 76.511627907vh;
    transform: translate3d(0, -50%, 0) scale(1.5);

    will-change: width;
  }
}
@media screen and (min-width: 640px) and (min-height: 860px) {
  #content .kv_img_loading {
    width: 658px;

    will-change: unset;
  }
}
#content .is-loaded.kv_img_loading {
  opacity: 1;
  transition: transform 2s cubic-bezier(0.23, 1, 0.32, 1), opacity 1.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transform: translate3d(0, 0, 0) scale(1);
}
@media (min-width: 640px) {
  #content .is-loaded.kv_img_loading {
    top: 47px;
    transition: top 2s cubic-bezier(0.23, 1, 0.32, 1), transform 2s cubic-bezier(0.23, 1, 0.32, 1),
      opacity 1.3s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  }
}

/* ------------------------
  Components
------------------------ */
#content .comb_heading {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
}
#content .comb_lead {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
}
#content .is-scrolled .comb_heading {
  opacity: 1;
  transition: transform 1.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.84s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transform: translate3d(0, 0, 0);
}
#content .is-scrolled .comb_lead {
  opacity: 1;
  transition: transform 1.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.84s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition-delay: 0.3s;
  transform: translate3d(0, 0, 0);
}
#content .combSec_index_inner > span {
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.5s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .combSec_index_inner > span:nth-of-type(1) {
  transition-delay: 0.03s;
  transform: translate3d(-70px, 0, 0);
}
#content .combSec_index_inner > span:nth-of-type(2) {
  transform: translate3d(-50px, 0, 0);
}
@media (min-width: 640px) {
  #content .combSec._02 .combSec_index_inner > span:nth-of-type(1) {
    transition-delay: 0s;
    transform: translate3d(50px, 0, 0);
  }
  #content .combSec._02 .combSec_index_inner > span:nth-of-type(2) {
    transition-delay: 0.03s;
    transform: translate3d(70px, 0, 0);
  }
}
#content .combSec_heading {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
}
#content .combSec_text {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
}
#content .combSec_img {
  opacity: 0;
}
#content .combSec_list > li {
  opacity: 0;
}
#content .is-scrolled .combSec_index_inner > span {
  opacity: 1;
}
#content .is-scrolled .combSec_index_inner > span:nth-of-type(1) {
  transform: translate3d(0, 0, 0);
}
#content .is-scrolled .combSec_index_inner > span:nth-of-type(2) {
  transform: translate3d(0, 0, 0);
}
#content .is-scrolled .combSec_heading {
  opacity: 1;
  transition: transform 1.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.84s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition-delay: 0.54s;
  transform: translate3d(0, 0, 0);
}
#content .is-scrolled .combSec_text {
  opacity: 1;
  transition: transform 1.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.84s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition-delay: 0.84s;
  transform: translate3d(0, 0, 0);
}
#content .is-scrolled .combSec_img {
  opacity: 1;
  transition: transform 1.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.84s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition-delay: 0.84s;
  transform: translate3d(0, 0, 0);
}
#content .is-scrolled .combSec_list > li {
  opacity: 1;
  transition: opacity 0.88s cubic-bezier(0.25, 0.25, 0.75, 0.75);
}
#content .is-scrolled .combSec_list > li:nth-of-type(1) {
  transition-delay: 1.3s;
}
#content .is-scrolled .combSec_list > li:nth-of-type(2) {
  transition-delay: 1.47s;
}
#content .is-scrolled .combSec_list > li:nth-of-type(3) {
  transition-delay: 1.64s;
}
#content .combSec._02.is-scrolled .combSec_index_inner > span {
  opacity: 1;
}
#content .combSec._02.is-scrolled .combSec_index_inner > span:nth-of-type(1) {
  transform: translate3d(0, 0, 0);
}
#content .combSec._02.is-scrolled .combSec_index_inner > span:nth-of-type(2) {
  transform: translate3d(0, 0, 0);
}
#content .business_heading {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
}
#content .business_text {
  opacity: 0;
  transform: translate3d(0, 40px, 0);
}
#content .is-scrolled .business_heading {
  opacity: 1;
  transition: transform 1.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.84s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transform: translate3d(0, 0, 0);
}
#content .is-scrolled .business_text {
  opacity: 1;
  transition: transform 1.6s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.84s cubic-bezier(0.25, 0.25, 0.75, 0.75);
  transition-delay: 0.3s;
  transform: translate3d(0, 0, 0);
}

/*
* top.css
*
*/
/* --------------------------------
  top
-------------------------------- */
#content {
  overflow: hidden;
  font-family: 'Noto Sans JP', sans-serif;
}
@media (min-width: 640px) {
  #content .kv {
    margin: 0 auto;
    max-width: 1440px;
  }
}
#content .kv_inner {
  position: relative;
  padding: 474px 25px 0;
}
@media (min-width: 640px) {
  #content .kv_inner {
    padding: 92px 0 0;
  }
}
#content .kv_img {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
}
@media (min-width: 640px) {
  #content .kv_img {
    top: 47px;
    right: calc(50% + 20px);
    left: auto;
    width: 76.511627907vh;

    will-change: width;
  }
}
@media screen and (min-width: 640px) and (min-height: 860px) {
  #content .kv_img {
    width: 658px;

    will-change: unset;
  }
}
#content .kv_content {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 375px;
}
@media (min-width: 640px) {
  #content .kv_content {
    margin: 0 0 0 auto;
    padding-right: 50px;
    padding-bottom: 100px;
    width: 600px;
    max-width: inherit;
  }
}
@media (min-width: 1200px) {
  #content .kv_content {
    margin: 0 auto 0 50%;
  }
}
#content .kv_heading {
  font-size: 1.5625rem;
  font-weight: 700;
  line-height: 1.52;
}
@media (min-width: 640px) {
  #content .kv_heading {
    letter-spacing: 0.04em;
    font-size: 2.5rem;
    line-height: 1.4;
  }
}
#content .kv_text {
  margin-top: 19px;
  font-size: 1rem;
  line-height: 2.1875;
}
@media (min-width: 640px) {
  #content .kv_text {
    margin-top: 36px;
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}
#content .comb {
  margin-top: 200px;
}
@media (min-width: 640px) {
  #content .comb {
    margin-top: 120px;
  }
}
@media (min-width: 640px) {
  #content .comb_inner {
    margin: 0 auto;
    padding: 0 50px;
    max-width: 1100px;
  }
}
#content .comb_heading {
  position: relative;
  z-index: 2;
  text-align: center;
  letter-spacing: 0.04em;
  color: #2864ef;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5416666667;
}
@media (min-width: 640px) {
  #content .comb_heading {
    letter-spacing: 0.06em;
    font-size: 2.375rem;
    line-height: 1.4736842105;
  }
}
#content .comb_lead {
  position: relative;
  z-index: 2;
  margin: 15px auto 0;
  padding: 0 25px;
  max-width: 375px;
  text-align: center;
  font-size: 1rem;
  line-height: 2.125;
}
@media (min-width: 640px) {
  #content .comb_lead {
    margin-top: 20px;
    padding: 0;
    max-width: inherit;
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}
#content .comb_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 113.8666666667vw;
}
@media (min-width: 640px) {
  #content .comb_img {
    height: 750px;
  }
}
#content .comb_img_inner {
  overflow: hidden;
  position: absolute;
  top: -14.8vw;
  left: 0;
  width: 100%;
}
@media (min-width: 640px) {
  #content .comb_img_inner {
    top: -164px;
    left: 50%;
    width: 1116px;
    transform: translateX(-50%);
  }
}
#content .comb_img_inner img {
  position: relative;
  z-index: 1;
}
#content .comb_img_inner::before {
  content: '';
  position: absolute;
  z-index: 2;
  top: 54.4vw;
  right: 0;
  left: 0.2666666667vw;
  margin: 0 auto;
  border-radius: 50%;
  width: 29.3333333333vw;
  height: 29.3333333333vw;
  background-color: #ebf3ff;
}
@media (min-width: 640px) {
  #content .comb_img_inner::before {
    top: 430px;
    left: 8px;
    width: 230px;
    height: 230px;
  }
}
#content .comb_img_bg {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: auto;
  transform: scale(2);
  background-image: radial-gradient(transparent 0%, #fff 30px, #fff 100%);
  pointer-events: none;

  aspect-ratio: 1/1;
}
@media (min-width: 640px) {
  #content .comb_img_bg {
    transform: scale(1);
    background-image: radial-gradient(transparent 0%, #fff 140px, #fff 100%);
  }
}
#content .comb_img_icon {
  position: absolute;
  z-index: 4;
  top: 39.7333333333vw;
  right: 0;
  left: 0.2666666667vw;
  margin: 0 auto;
  width: 27.4666666667vw;
}
@media (min-width: 640px) {
  #content .comb_img_icon {
    top: 265px;
    left: 8px;
    width: 220px;
  }
}
#content .comb_diff {
  position: relative;
  z-index: 2;
  padding: 60px 26px 65px;
  background-color: #f7f5f5;
}
@media (min-width: 640px) {
  #content .comb_diff {
    padding: 84px 64px 96px;
  }
}
#content .comb_diff_heading {
  text-align: center;
  letter-spacing: 0.06em;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.5238095238;

  font-feature-settings: 'palt';
}
@media (min-width: 640px) {
  #content .comb_diff_heading {
    letter-spacing: 0.06em;
    font-size: 2rem;
    line-height: 1.75;

    font-feature-settings: inherit;
  }
}
#content .comb_diff_text {
  margin-top: 18px;
  letter-spacing: 0.04em;
  font-size: 0.875rem;
  line-height: 2;
}
@media (min-width: 640px) {
  #content .comb_diff_text {
    margin-top: 16px;
    letter-spacing: 0.06em;
    font-size: 1rem;
    line-height: 2.25;
  }
}
#content .comb_diff_img {
  margin-top: 43px;
}
@media (min-width: 640px) {
  #content .comb_diff_img {
    margin-top: 46px;
  }
}
#content .combSec {
  padding: 75px 0 130px;
}
@media (min-width: 640px) {
  #content .combSec {
    margin: 0 auto;
    padding: 232px 0 200px;
    max-width: 1370px;
  }
}
#content .combSec._02 {
  padding-top: 55px;
  background-color: #ebf3ff;
}
@media (min-width: 640px) {
  #content .combSec._02 {
    padding-top: 188px;
  }
}
#content .combSec._03 {
  padding-top: 59px;
}
@media (min-width: 640px) {
  #content .combSec._03 {
    padding-top: 232px;
  }
}
#content .combSec_inner {
  margin: 0 auto;
  padding: 0 26px;
  max-width: 375px;
}
@media (min-width: 640px) {
  #content .combSec_inner {
    padding: 0 100px;
    max-width: 1200px;
  }
}
@media (min-width: 640px) {
  #content .combSec_container {
    display: flex;
    justify-content: space-between;

    -moz-column-gap: 40px;

    column-gap: 40px;
  }
}
#content .combSec_content {
  position: relative;
}
@media (min-width: 640px) {
  #content .combSec_content {
    width: 535px;
  }
}
@media (min-width: 640px) {
  #content ._01 .combSec_content,
  #content ._03 .combSec_content {
    order: 2;
  }
}
@media (min-width: 640px) {
  #content ._02 .combSec_content {
    order: 1;
  }
}
#content .combSec_index {
  margin-top: -30px;
  height: 110px;
  text-align: right;
}
@media (min-width: 640px) {
  #content .combSec_index {
    position: absolute;
    z-index: 1;
    margin: 0;
    height: auto;
    text-align: inherit;
  }
}
#content .combSec_index .combSec_index_inner {
  position: absolute;
  top: 0;
  text-align: right;
  letter-spacing: -0.11em;
  font-size: 150px;
  line-height: 1;
}
@media (min-width: 640px) {
  #content .combSec_index .combSec_index_inner {
    position: relative;
    top: auto;
    right: auto;
    white-space: nowrap;
    font-size: 252px;
  }
}
#content .combSec_index .combSec_index_inner > span {
  display: inline-block;
}
#content ._01 .combSec_index .combSec_index_inner {
  right: -13px;
  color: #dce8ff;
}
@media (min-width: 640px) {
  #content ._01 .combSec_index .combSec_index_inner {
    right: auto;
  }
}
@media (min-width: 640px) {
  #content ._01 .combSec_index {
    top: -110px;
    right: -32px;
    width: 227px;
  }
}
#content ._02 .combSec_index .combSec_index_inner {
  right: 10px;
  color: #fff;
}
@media (min-width: 640px) {
  #content ._02 .combSec_index .combSec_index_inner {
    right: auto;
    text-align: left;
  }
}
@media (min-width: 640px) {
  #content ._02 .combSec_index {
    top: -159px;
    left: -88px;
    width: 266px;
  }
}
#content ._03 .combSec_index .combSec_index_inner {
  right: 10px;
  color: #dce8ff;
}
@media (min-width: 640px) {
  #content ._03 .combSec_index .combSec_index_inner {
    right: auto;
  }
}
@media (min-width: 640px) {
  #content ._03 .combSec_index {
    top: -118px;
    right: -28px;
    width: 265px;
  }
}
#content .combSec_heading {
  position: relative;
  z-index: 2;
  margin-top: -9px;
  letter-spacing: 0.06em;
  font-size: 1.3125rem;
  font-weight: 700;
  line-height: 1.619047619;

  font-feature-settings: 'palt';
}
@media (min-width: 640px) {
  #content .combSec_heading {
    margin-top: 0;
    letter-spacing: 0.16em;
    font-size: 2rem;
    line-height: 1.75;
  }
}
@media (min-width: 640px) {
  #content ._02 .combSec_heading {
    letter-spacing: 0.08em;

    font-feature-settings: inherit;
  }
}
@media (max-width: 639.98px) {
  #content ._03 .combSec_heading {
    letter-spacing: 0.12em;
  }
}
#content .combSec_text {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  letter-spacing: 0.04em;
  font-size: 0.875rem;
  line-height: 2;
}
@media (min-width: 640px) {
  #content .combSec_text {
    margin-top: 26px;
    letter-spacing: 0.08em;
    font-size: 1rem;
    line-height: 2.25;
  }
}
#content .combSec_img {
  margin: 69px auto 0;
}
@media (min-width: 640px) {
  #content .combSec_img {
    flex-shrink: 0;
    margin: -48px 0 0;
  }
}
#content ._01 .combSec_img {
  padding-left: 5px;
  width: 262px;
}
@media (min-width: 640px) {
  #content ._01 .combSec_img {
    order: 1;
    margin-left: 27px;
    padding-left: 0;
    width: 356px;
  }
}
#content ._02 .combSec_img {
  width: 265px;
}
@media (min-width: 640px) {
  #content ._02 .combSec_img {
    order: 2;
    margin-right: 24px;
    width: 367px;
  }
}
#content ._03 .combSec_img {
  width: 290px;
}
@media (min-width: 640px) {
  #content ._03 .combSec_img {
    order: 1;
    width: 402px;
  }
}
#content .combSec_list {
  display: flex;
  flex-direction: column;
  margin-top: 56px;

  row-gap: 27px;
}
@media (min-width: 640px) {
  #content .combSec_list {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 88px;

    row-gap: 32px;
    -moz-column-gap: 32px;
    column-gap: 32px;
  }
}
#content .combSec_card {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  width: 100%;
}
@media (min-width: 640px) {
  #content .combSec_card {
    width: calc((100% - 64px) / 3);
  }
}
#content .combSec_card::before,
#content .combSec_card::after {
  content: '';
  position: absolute;
  z-index: 1;
  top: 0;
  background-color: #2864ef;
}
#content .combSec_card::before {
  left: 0;
  width: 37%;
  height: 33%;
}
#content .combSec_card::after {
  right: 0;
  width: 57%;
  height: 8%;
}
#content .combSec_card_wrap {
  height: 100%;
}
#content .combSec_card_wrap::before,
#content .combSec_card_wrap::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  background-color: #2864ef;
}
#content .combSec_card_wrap::before {
  left: 0;
  width: 29%;
  height: 59%;
}
#content .combSec_card_wrap::after {
  right: 0;
  width: 65%;
  height: 84%;
}
#content .combSec_card_inner {
  position: relative;
  z-index: 2;
  margin: 1px;
  padding: 21px 24px 30px;
  border-radius: 9px;
  background-color: #fff;
  text-align: center;
}
@media (min-width: 640px) {
  #content .combSec_card_inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: space-between;
    padding: 33px 32px 37px;
    border-radius: 10px;
    height: calc(100% - 2px);
    text-align: left;
  }
}
#content .combSec_card_case {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 2px;
  background-color: #ebf3ff;
  letter-spacing: 0.06em;
  color: #2764ef;
  font-size: 0.875rem;
  line-height: 1.2;
}
@media (min-width: 640px) {
  #content .combSec_card_case {
    padding: 2px 12px;
    letter-spacing: 0.06em;
    font-size: 1rem;
    line-height: 1.5;
  }
}
#content .combSec_card_title {
  margin-top: 7px;
  letter-spacing: 0.02em;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.935483871;
}
@media (min-width: 640px) {
  #content .combSec_card_title {
    margin-top: 8px;
    letter-spacing: 0.02em;
    font-size: 1.125rem;
    line-height: 1.8888888889;
  }
}
#content .combSec_card_btn {
  margin: 21px auto 0;
  padding: 0;
  border-radius: 16px;
  width: 140px;
}
@media (min-width: 640px) {
  #content .combSec_card_btn {
    margin-top: 15px;
    border-radius: 18px;
    width: 162px;
  }
}
#content .combSec_card_btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#content .combSec_card_btn_inner {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 7px 22px 7px 17px;
  border: solid 1px #2864ef;
  border-radius: 16px;
  width: 100%;
  background-color: #2864ef;
}
@media (min-width: 640px) {
  #content .combSec_card_btn_inner {
    padding: 5px 30px 5px 22px;
    border-radius: 18px;
  }
}
#content .combSec_card_btn_inner > span {
  letter-spacing: 0.06em;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
}
@media (min-width: 640px) {
  #content .combSec_card_btn_inner > span {
    letter-spacing: 0;
    font-size: 0.875rem;
    line-height: 1.7142857143;
  }
}
#content .combSec_card_btn_inner > span::before {
  content: '';
  opacity: 1;
  position: absolute;
  top: 50%;
  right: 13px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background: url('../img/icon_viewmore.png') no-repeat;
  background-size: contain;
}
#content .combSec_card_btn_inner > span::after {
  content: '';
  opacity: 0;
  position: absolute;
  top: 50%;
  right: 13px;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  background: url('../img/icon_viewmore_ov.png') no-repeat;
  background-size: contain;
}
#content .business {
  padding: 95px 0 100px;
  background-color: #ebf3ff;
}
@media (min-width: 640px) {
  #content .business {
    padding: 185px 0 200px;
  }
}
@media (min-width: 640px) {
  #content .business_inner {
    margin: 0 auto;
    padding: 0 50px;
    max-width: 1100px;
  }
}
#content .business_heading {
  position: relative;
  z-index: 2;
  text-align: center;
  letter-spacing: 0.04em;
  color: #2864ef;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5416666667;
}
@media (min-width: 640px) {
  #content .business_heading {
    letter-spacing: 0.06em;
    font-size: 2.375rem;
    line-height: 1.4736842105;
  }
}
#content .business_text {
  position: relative;
  z-index: 2;
  margin: 15px auto 0;
  padding: 0 25px;
  max-width: 375px;
  text-align: center;
  font-size: 1rem;
  line-height: 2.125;
}
@media (min-width: 640px) {
  #content .business_text {
    margin-top: 23px;
    padding: 0;
    max-width: inherit;
    font-size: 1.125rem;
    line-height: 2.2222222222;
  }
}
#content .business_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 71.2vw;
}
@media (min-width: 640px) {
  #content .business_img {
    height: 510px;
  }
}
#content .business_img_inner {
  overflow: hidden;
  position: absolute;
  z-index: 2;
  top: -7.4666666667vw;
  left: 0;
  width: 100%;
}
@media (min-width: 640px) {
  #content .business_img_inner {
    top: -82px;
    left: 50%;
    width: 1138px;
    transform: translateX(-50%);
  }
}
#content .business_img_bg {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: auto;
  background-image: radial-gradient(transparent 0%, #ebf3ff 50px, #ebf3ff 100%);
  pointer-events: none;

  aspect-ratio: 1/1;
}
@media (min-width: 640px) {
  #content .business_img_bg {
    background-image: radial-gradient(transparent 0%, #ebf3ff 170px, #ebf3ff 100%);
  }
}
#content .business_img_hidden {
  position: absolute;
  z-index: 4;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: #ebf3ff;
  pointer-events: none;
}
@media (min-width: 640px) {
  #content .business_img_hidden {
    width: 330px;
    height: 330px;
  }
}
#content .business_case {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  padding: 0 25px;
  max-width: 375px;
}
@media (min-width: 640px) {
  #content .business_case {
    padding: 0;
    max-width: inherit;
  }
}
#content .business_case_list {
  display: flex;

  -moz-column-gap: 9px;

  column-gap: 9px;
  row-gap: 8px;
}
@media (min-width: 640px) {
  #content .business_case_list {
    -moz-column-gap: 10px;
    column-gap: 10px;
  }
}
#content .business_case_content + .business_case_list {
  margin-top: 16px;
}
#content .business_case_btn {
  display: block;
  position: relative;
  padding: 0;
  width: calc((100% - 18px) / 3);
}
@media (min-width: 640px) {
  #content .business_case_btn {
    width: calc((100% - 16px) / 3);
  }
}
#content .business_case_btn > span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 12px 10px;
  border: solid 1px #e1dcdc;
  border-radius: 4px;
  width: 100%;
  background-color: #fff;
  letter-spacing: 0.06em;
  color: #2864ef;
  font-size: 0.8125rem;
  line-height: 1;
}
@media (min-width: 640px) {
  #content .business_case_btn > span {
    padding: 18px 10px;
    letter-spacing: 0.06em;
    font-size: 1.125rem;
    line-height: 1.3333333333;
  }
}
#content .business_case_btn::before {
  content: '';
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  margin: 0 auto;
  border-width: 12px 9px 0 9px;
  border-style: solid;
  border-color: #2864ef transparent transparent transparent;
  width: 0;
  height: 0;
  transition: transform 0.3s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform: translateY(-7px);
}
@media (min-width: 640px) {
  #content .business_case_btn::before {
    bottom: -11px;
    border-width: 12px 12px 0 12px;
    transform: translateY(-12px);
  }
}
#content .business_case_btn[aria-selected='true'] {
  pointer-events: none;
}
#content .business_case_btn[aria-selected='true'] > span {
  border-color: #2864ef;
  background-color: #2864ef;
  color: #fff;
}
#content .business_case_btn[aria-selected='true']::before {
  transform: translateY(0);
}
@media (min-width: 640px) {
  #content .business_case_btn[aria-selected='true']::before {
    transform: translateY(0);
  }
}
#content .business_case_content + .business_case_list .business_case_btn::before {
  top: -6px;
  bottom: auto;
  border-width: 0 9px 12px 9px;
  border-color: transparent transparent #2864ef transparent;
  transform: translateY(7px);
}
#content .business_case_content + .business_case_list .business_case_btn[aria-selected='true']::before {
  transform: translateY(0);
}
#content .business_case_content {
  margin-top: 16px;
  padding: 37px 24px 44px;
  border-radius: 4px;
  background-color: #fff;
}
@media (min-width: 640px) {
  #content .business_case_content {
    margin-top: 20px;
    padding: 60px 67px 70px;
  }
}
#content .business_case_title {
  letter-spacing: 0.02em;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.875;
}
@media (min-width: 640px) {
  #content .business_case_title {
    letter-spacing: 0.06em;
    font-size: 1.25rem;
    line-height: 1.1787819253;
  }
}
@media (min-width: 640px) {
  #content .business_case_container {
    display: flex;
    align-items: flex-start;

    -moz-column-gap: 40px;

    column-gap: 40px;
  }
}
#content .business_case_text {
  margin-top: 6px;
  letter-spacing: 0.06em;
  font-size: 0.875rem;
  line-height: 2;
}
@media (min-width: 640px) {
  #content .business_case_text {
    margin-top: 10px;
    letter-spacing: 0.08em;
    font-size: 1rem;
    line-height: 2.25;
  }
}
#content .business_case_img {
  margin-top: 23px;
  width: 100%;
}
@media (min-width: 640px) {
  #content .business_case_img {
    flex-shrink: 0;
    margin-top: 7px;
    width: 300px;
  }
}
#content .viewmore {
  padding: 110px 0 50px;
}
@media (min-width: 640px) {
  #content .viewmore {
    padding: 133px 0 0;
  }
}
#content .viewmore_inner {
  position: relative;
  margin: 0 auto;
  max-width: 375px;
}
@media (min-width: 640px) {
  #content .viewmore_inner {
    padding: 0 50px;
    max-width: 1100px;
  }
}
#content .viewmore_section {
  padding: 0 24px;
}
@media (min-width: 640px) {
  #content .viewmore_section {
    padding: 0;
  }
}
#content .viewmore_section + .viewmore_section {
  margin-top: 56px;
}
@media (min-width: 640px) {
  #content .viewmore_section + .viewmore_section {
    margin-top: 74px;
  }
}
#content .viewmore_illust {
  position: absolute;
  top: -74px;
  left: 23px;
  width: 168px;
  height: 56px;
}
@media (min-width: 640px) {
  #content .viewmore_illust {
    top: -78px;
    left: 205px;
    width: 265px;
    height: 88px;
  }
}
#content .viewmore_illust .viewmore_illust_svg {
  position: relative;
  z-index: 1;
}
#content .viewmore_illust .viewmore_illust_svg .viewmore_illust_path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 20px;
  stroke-miterlimit: 10;
  stroke: #fff;
}
#content .viewmore_illust_bard {
  opacity: 0;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 39px;
  height: 56px;
  transform: translate3d(150px, -40px, 0);
}
@media (min-width: 640px) {
  #content .viewmore_illust_bard {
    top: 3px;
    left: 2px;
    width: 57px;
    height: 88px;
    transform: translate3d(208px, -43px, 0);
  }
}
#content .viewmore_title {
  text-align: center;
  letter-spacing: 0.04em;
  font-size: 1.3125rem;
  font-weight: 500;
  line-height: 1.3333333333;
}
@media (min-width: 640px) {
  #content .viewmore_title {
    letter-spacing: 0.08em;
    font-size: 2rem;
    line-height: 1.75;
  }
}
#content .viewmore_text {
  margin-top: 18px;
  letter-spacing: 0.04em;
  font-size: 0.875rem;
  line-height: 2;
}
@media (min-width: 640px) {
  #content .viewmore_text {
    margin-top: 16px;
    letter-spacing: 0.06em;
    font-size: 1rem;
    line-height: 2.25;
  }
}
#content .viewmore_container {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-top: 31px;

  row-gap: 12px;
}
@media (min-width: 640px) {
  #content .viewmore_container {
    flex-direction: row;
    flex-wrap: wrap;
    margin: 37px auto 0;
    width: 661px;
    gap: 17px;
    justify-content: center;
  }
}
/* @media (min-width: 1100px) {
  #content .viewmore_container {
    width: auto;
  }
} */
#content .viewmore_link {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 9px 30px 9px 23px;
  border: solid 1px #2764ef;
  border-radius: 20px;
  width: 258px;
  min-height: 40px;
  background-color: #2764ef;
}
@media (min-width: 640px) {
  #content .viewmore_link {
    padding: 17px 30px;
    border-radius: 30px;
    width: 322px;
    min-height: 60px;
  }
}
#content .viewmore_link > span {
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
}
@media (min-width: 640px) {
  #content .viewmore_link > span {
    font-size: 1rem;
    line-height: 1.5;
  }
}
#content .viewmore_link[target='_blank']::before {
  content: '';
  opacity: 1;
  position: absolute;
  top: 50%;
  right: 15px;
  width: 10px;
  height: 8px;
  transform: translateY(-50%);
  background: url('../img/icon_blank.png') no-repeat;
  background-size: contain;
}
@media (min-width: 640px) {
  #content .viewmore_link[target='_blank']::before {
    right: 24px;
    width: 12px;
    height: 10px;
  }
}
#content .viewmore_link[target='_blank']::after {
  content: none;
}
@media (min-width: 640px) {
  #content .viewmore_link[target='_blank']::after {
    content: '';
    opacity: 0;
    position: absolute;
    top: 50%;
    right: 24px;
    width: 12px;
    height: 10px;
    transform: translateY(-50%);
    background: url('../img/icon_blank_ov.png') no-repeat;
    background-size: contain;
  }
}
