@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;500;600;700;900&family=Roboto+Condensed:wght@300;400;700&family=Roboto:wght@300;400;500;700&Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap");
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  background-color: #fff;
  height: 100%;
}

html,
body {
  font-size: 62.5%; /*10px*/
  height: 100%;
  width: 100%;
}

body {
  font-size: 15px;
  font-family:
    Roboto, "Noto Sans JP", "游ゴシック体", YuGothic, "Yu Gothic Medium",
    "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,
    "ＭＳ Ｐゴシック", "MS PGothic", arial, helvetica, clean, sans-serif;
  line-height: 1.618; /* 黄金比 */
  text-align: left;
  -webkit-font-smoothing: antialiased;
  color: #19181b;
}

p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

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

a {
  color: #173e92;
  transition: 0.4s;
}

a:hover,
a:focus {
  color: #395eae;
  text-decoration: none;
  opacity: 0.85;
}

p {
  margin-top: 1.6rem;
  margin-bottom: 0.8rem;
}
p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  padding-left: 22px;
  list-style: outside;
}

dl,
dt {
  margin-top: 1.5em;
}

dt {
  font-weight: 700;
}

dd {
  margin-top: 1em;
}

.brackets,
.brackets_list li {
  padding-left: 1.6em;
  text-indent: -1.6em;
}

.idt,
.idt_list li {
  padding-left: 1em;
  text-indent: -1em;
}

.text-right {
  text-align: right;
}

/* clearfix */
.clearfix {
  overflow: hidden;
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* google map レスポンシブ */
.ggmap {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

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

/*------------------------------------------------------------
    全体
------------------------------------------------------------*/
body {
  font-family:
    "IBM Plex Sans", "Noto Sans JP", "Roboto Condensed", "ヒラギノ角ゴ ProN",
    "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック",
    "MS PGothic", arial, helvetica, clean, sans-serif;
  font-weight: 400;
  margin: 0;
}

.wrapper {
  width: 100%;
  position: relative;
  padding-top: 56px;
}

.main {
  margin-top: 60px;
}
@media (max-width: 1310px) {
  .main {
    margin-top: 50px;
  }
}

.inner {
  width: 100%;
  max-width: 1080px;
  margin: auto;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .inner {
    width: 100%;
    padding: 0 16px;
  }
}

.w800 {
  width: 800px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 480px) {
  .w800 {
    width: 100%;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 480px) {
  .sp_only {
    display: block;
  }
}

.pc_only {
  display: block;
}
@media (max-width: 480px) {
  .pc_only {
    display: none;
  }
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: #5653f2;
}
a:hover {
  color: #5282f2;
}
a.other_link {
  color: #173e92;
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: bold;
}
a.other_link span {
  line-height: 1.4;
  padding: 2px 8px;
  border-bottom: 0.15rem dotted #173e92;
}
a.other_link:before {
  content: "";
  display: block;
  background: url(../images/icon_web_black.svg) center center no-repeat;
  background-size: 100% auto;
  width: 24px;
  height: 24px;
}

/*--------------------------------
    button
--------------------------------*/
.round_btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  position: relative;
  color: #19181b;
  line-height: 1;
  letter-spacing: 1px;
  font-size: 1.8rem;
  font-weight: 600;
  background: #fff;
  color: #173e92;
  border: 1px solid #173e92;
  border-radius: 30px;
  padding: 8px 12px 8px 24px;
}
.round_btn:after {
  content: "";
  width: 28px;
  height: 28px;
  background: url(../images/icon_arrow_right_key.svg) center center no-repeat;
  background-size: 100% auto;
}
.round_btn._bg {
  background: #173e92;
  color: #fff;
}
.round_btn._bg:after {
  background: url(../images/icon_arrow_right_white.svg) center center no-repeat;
  background-size: 100% auto;
}
.round_btn:hover {
  background: #173e92;
  color: #fff;
  opacity: 1;
}
.round_btn:hover:after {
  background: url(../images/icon_arrow_right_white.svg) center center no-repeat;
  background-size: 100% auto;
}
.round_btn:hover._bg {
  background: #fff;
  color: #173e92;
}
.round_btn:hover._bg:after {
  background: url(../images/icon_arrow_right_key.svg) center center no-repeat;
  background-size: 100% auto;
}
@media (max-width: 480px) {
  .round_btn {
    font-size: 1.5rem;
    padding: 6px 8px 6px 18px;
  }
  .round_btn:after {
    content: "";
    width: 20px;
    height: 20px;
  }
}

.btn_box {
  display: flex;
}
.btn_box._vertical {
  flex-direction: row;
}

.btn {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: auto;
  position: relative;
  font-size: inherit;
  color: #19181b;
  line-height: 1;
  letter-spacing: 1px;
  font-weight: 600;
}
.btn span {
  display: inline-block;
  padding: 2px 6px 4px;
  border-bottom: 2px dotted #19181b;
}
.btn:after {
  content: "";
  width: 32px;
  height: 32px;
  background: url(../images/icon_arrow_right_default.svg) center center
    no-repeat;
  background-size: 100% auto;
}
.btn:hover {
  color: #173e92;
}
.btn:hover:after {
  background: url(../images/icon_arrow_right_key.svg) center center no-repeat;
  background-size: 100% auto;
}
.btn._large {
  font-size: 2rem;
}
.btn._left {
  justify-content: left;
}
.btn._right {
  justify-content: right;
}
.btn._white {
  color: #fff;
}
.btn._white:after {
  background: url(../images/icon_arrow_right_white.svg) center center no-repeat;
  background-size: 100% auto;
}
.btn._white:hover {
  color: #f2f2f2;
}
.btn._white:hover:after {
  background: url(../images/icon_arrow_right_grey.svg) center center no-repeat;
  background-size: 100% auto;
}
.btn._no_arrow:after {
  display: none;
}
.btn._no_arrow:hover:after {
  display: none;
}
.btn._round {
  display: inline;
  border-radius: 24px;
  padding: 8px 16px;
  width: auto;
}
.btn._round._bgwhite {
  background: #fff;
  color: #173e92;
  border: 1px solid #fff;
}
.btn._round._bgwhite:hover {
  background: #173e92;
  color: #fff;
  border: 1px solid #fff;
}
.btn._round._bgkey {
  background: #173e92;
  color: #fff;
  border: 1px solid #fff;
}
.btn._round._bgkey:hover {
  background: #fff;
  color: #173e92;
}
@media (max-width: 480px) {
  .btn {
    font-size: 1.4rem;
  }
  .btn:after {
    content: "";
    width: 22px;
    height: 22px;
    background: url(../images/icon_arrow_right_default.svg) center center
      no-repeat;
    background-size: 100% auto;
  }
  .btn._large {
    font-size: 1.6rem;
  }
}

/*--------------------------------
    page layout
--------------------------------*/
.page_header {
  font-weight: 900;
  color: #19181b;
  line-height: 1;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page_header .page_header_inner {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  gap: 32px;
  align-items: baseline;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  border-bottom: #f2f2f2 3px solid;
}
.page_header .page_title {
  font-size: 3.2rem;
  margin: 0;
  padding: 0;
}
.page_header .page_slug {
  font-size: 1.6rem;
  display: flex;
  gap: 8px;
  align-items: center;
}
.page_header .page_slug:before {
  content: "";
  width: 12px;
  height: 12px;
  background: #173e92;
  border-radius: 50%;
}
.page_header._featured {
  height: 300px;
  background: url(../images/image_page_head01.jpg) center center no-repeat;
  background-size: 2400px auto;
}
.page_header._featured .page_header_inner {
  border-bottom: none;
  justify-content: left;
}
@media (max-width: 480px) {
  .page_header {
    height: 180px;
  }
  .page_header .page_header_inner {
    flex-direction: column;
    justify-content: left;
    gap: 16px;
  }
  .page_header .page_title {
    font-size: 2.4rem;
    margin: 0;
    padding: 0;
  }
  .page_header._featured {
    background: url(../images/image_page_head01_sp.jpg) center center no-repeat;
    background-size: 100% auto;
  }
}

.page_content {
  margin: 40px auto;
}
.page_content._news,
.page_content._feature {
  margin-top: 0;
  margin-bottom: 0;
}
.page_content h2 {
  margin-top: 64px;
  margin-bottom: 32px;
  font-size: 2.4rem;
  font-weight: 700;
  color: #173e92;
  letter-spacing: 1px;
  border-left: 2px solid #173e92;
  padding-left: 24px;
}
.page_content h2:first-child {
  margin-top: 0;
}
.page_content h3 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 2rem;
  font-weight: 700;
  color: #173e92;
}

/*--------------------------------
    top / movie
--------------------------------*/
.video-wrapper {
  aspect-ratio: 16/9; /* 縦横比（アスペクト比） */
  overflow: hidden;
  position: relative; /* 絶対配置するコンテンツや疑似要素の基準とする */
  width: 100%;
  max-height: 80vh;
}
.video-wrapper .video {
  width: 100%; /* 明示的に幅を設定（必須） */
  height: 100%; /* 明示的に高さを設定（必須） */
  object-fit: cover; /* コンテンツボックスに収まるように拡大縮小 */
}
.video-wrapper .video_content {
  margin: 0;
  position: absolute; /* 絶対配置 */
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.video-wrapper .video_content .inner {
  width: 1160px;
  color: #fff;
}
.video-wrapper .video_content .key_title {
  font-size: 10rem;
  font-family: "DM Serif Text", serif;
  line-height: 1;
}
.video-wrapper .video_content .key_copy {
  font-size: 3rem;
  font-weight: 700;
}
.video-wrapper .video_content p {
  margin-top: 32px;
  font-size: 1.8rem;
  font-weight: 700;
}
.video-wrapper .video_bottom {
  position: absolute; /* 絶対配置 */
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #19181b;
  padding: 16px 16px 16px 32px;
  box-sizing: border-box;
  width: 1160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.video-wrapper .link_title {
  font-weight: 700;
  font-size: 1.8rem;
}
.video-wrapper .link_navi {
  display: flex;
  align-items: center;
  margin-left: auto;
  gap: 16px;
}
@media (max-width: 480px) {
  .video-wrapper {
    margin-top: 52px;
    aspect-ratio: 2/3;
  }
  .video-wrapper .video_content {
    left: 0;
    margin-right: 0;
    transform: translate(0, -50%);
  }
  .video-wrapper .video_content .inner {
    width: calc(100% - 32px);
  }
  .video-wrapper .video_content .key_title {
    font-size: 5rem;
  }
  .video-wrapper .video_content .key_copy {
    font-size: 1.6rem;
  }
  .video-wrapper .video_content p {
    font-size: 1.6rem;
  }
  .video-wrapper .video_bottom {
    bottom: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
    padding: 8px;
    flex-direction: column;
  }
  .video-wrapper .link_title {
    font-weight: 700;
    font-size: 1.5rem;
  }
  .video-wrapper .link_navi {
    flex-direction: column;
    gap: 4px;
    margin-left: 0;
    width: 100%;
  }
}

/*--------------------------------
    CASE slide function
--------------------------------*/
.section-lineup {
  overflow: hidden;
  padding: 60px 0 32px;
}
.section-lineup .inner {
  margin: 0 auto;
  width: 60%;
  padding-left: 4rem;
  padding-right: 4rem;
}
.section-lineup .lineup {
  position: relative;
}
.section-lineup .lineup-carousel li {
  text-align: center;
  margin-right: 24px;
}
.section-lineup .lineup-carousel img {
  width: 100%;
}
.section-lineup .slick-slider {
  padding-left: 0;
}
.section-lineup .slick-list {
  overflow: visible;
}
.section-lineup .slick-nav-arrows {
  position: absolute;
  top: -40px;
  right: 0%;
}
.section-lineup .slick-arrow {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}
.section-lineup .slick-next {
  right: 0;
}
.section-lineup .slick-prev {
  left: -80px;
}
.section-lineup .slick-next:before,
.section-lineup .slick-prev:before {
  color: #000;
}
.section-lineup .case_item {
  padding-left: 16px;
}
.section-lineup .case_item a {
  display: block;
  background: #fff;
  text-align: left;
  color: #19181b;
}
.section-lineup .case_item .case_eyecatch {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.section-lineup .case_item .case_eyecatch img {
  height: 100%;
  width: auto;
  max-width: initial;
  position: absolute; /* 絶対配置 */
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
}
.section-lineup .case_item .case_meta {
  padding: 8px 16px 16px;
}
.section-lineup .case_item .case_meta .case_title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  overflow: hidden;
}
.section-lineup .case_item .case_meta .case_title span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.section-lineup .case_item .case_meta .case_tags {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}
.section-lineup .case_item .case_meta .case_tags li {
  display: inline-block;
  background: #f3f3f3;
  padding: 4px 12px;
  line-height: 1;
  font-size: 1.2rem;
  font-weight: 500;
  margin-right: 4px;
  border-radius: 16px;
}
@media (max-width: 480px) {
  .section-lineup .inner {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
  .section-lineup .lineup-carousel li {
    margin-right: 0;
  }
}

/*--------------------------------
    icon_slider function
--------------------------------*/
.icon_slider {
  margin-top: 16px;
}
.icon_slider .clients_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.icon_slider .clients_list li {
  width: auto;
  text-align: center;
}
.icon_slider .clients_list li img {
  margin: auto;
}
.icon_slider .slick-track {
  display: flex;
}
.icon_slider .slick-slide {
  height: auto !important;
  width: auto !important;
  margin: 0 10px;
}

/*--------------------------------
    FAQ accordion function
--------------------------------*/
.faq_accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0 auto;
}
/*アコーディオンタイトル*/
.faq_title {
  position: relative; /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: normal;
  transition: all 0.5s ease;
  background: #ffffff;
  border-radius: 4px;
  padding: 16px;
}
.faq_title::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.faq_title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.faq_title.icon_close::before {
  transform: rotate(45deg);
}
.faq_title.icon_close::after {
  transform: rotate(-45deg);
}
@media (max-width: 480px) {
  .faq_title {
    padding-right: 24px;
  }
}

.faq_box {
  display: none;
  padding: 8px 16px 16px 16px;
}

/*--------------------------------
    FAQ accordion function
--------------------------------*/
.faq_accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
}

.faq_title {
  position: relative;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.5s ease;
  background: #f2f2f2;
  border-radius: 4px;
  margin: 0;
  padding: 8px 16px;
}
.faq_title::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.faq_title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #333;
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
.faq_title.icon_close::before {
  transform: rotate(45deg);
}
.faq_title.icon_close::after {
  transform: rotate(-45deg);
}
@media (max-width: 480px) {
  .faq_title {
    padding-right: 36px;
  }
}

.faq_box {
  display: none;
  padding: 8px 16px 16px 16px;
  font-size: 1.4rem;
}

/*--------------------------------
    navigation
--------------------------------*/
.modal {
  display: none;
  position: fixed;
  z-index: 8887;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  transition: all 1s ease-in-out;
}
.modal .modal-content {
  overflow-y: auto;
  background: #173e92;
  border: none;
  width: 100%;
  max-width: 600px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: show 0.6s linear 0s;
}
.modal.navi_area .modal-content {
  height: 100%;
}
.modal.navi_area .modal-container {
  height: 100%;
  padding: 32px;
  margin-top: 60px;
  min-height: 80%;
}
.modal.navi_area .sitemap {
  padding: 0;
  margin: 0;
  padding-bottom: 64px;
  list-style: none;
}
.modal.navi_area .sitemap li {
  border-bottom: 1px solid #fff;
}
.modal.navi_area .sitemap li.home {
  border-bottom: 2px solid #fff;
}
.modal.navi_area .sitemap li a {
  color: #fff;
  display: block;
  padding: 12px;
}
.modal.navi_area .sitemap li a:before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
}
@media (max-width: 480px) {
  .modal.navi_area .modal-container {
    padding: 16px;
  }
}
.modal.screan_option {
  background: rgba(55, 58, 79, 0.8);
}
.modal.screan_option .modal-content {
  max-width: 720px;
  height: auto;
}
.modal.screan_option .modal-container {
  display: flex;
  border: 1px solid #173e92;
  border-radius: 8px;
}
.modal.screan_option .modal-container .eyecatch {
  width: 180px;
  height: 180px;
  background: #f6f6f6;
  padding: 16px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal.screan_option .modal-container .text {
  padding: 16px 16px 24px;
  color: #fff;
  font-size: 1.6rem;
  box-sizing: border-box;
}
.modal.screan_option .modal-container .text .item_title {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.modal.screan_option .modal-container .text p {
  margin: 0;
}
@media (max-width: 480px) {
  .modal.screan_option .modal-content {
    width: calc(100% - 64px);
  }
  .modal.screan_option .modal-container {
    flex-direction: column;
  }
  .modal.screan_option .modal-container .eyecatch {
    width: 100%;
    height: 160px;
  }
  .modal.screan_option .modal-container .text {
    width: 100%;
  }
  .modal.screan_option .modal-btn {
    top: -50px;
  }
}

.navi_area {
  background: #173e92;
  color: #fff;
}

.modal-top {
  display: inline-block;
  position: fixed;
  right: 0;
  top: 0;
}

.modal-btn {
  position: fixed;
  right: 0;
  top: 0;
  cursor: pointer;
  transition: 0.3s;
  z-index: 1000;
  width: 36px;
  height: 36px;
}
.modal-btn:hover {
  transform: scale(1.1, 1.1);
}

@keyframes show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*--------------------------------
		header area
--------------------------------*/
.header {
  width: 100%;
  position: fixed;
  top: 0;
  background: #173e92;
  z-index: 1000;
}
.header .modal-btn {
  width: 48px;
  height: 48px;
}
.header .inner {
  max-width: 1280px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  font-size: 1.3rem;
  box-sizing: border-box;
  display: flex;
  gap: 16px;
  align-items: center;
}
.header a {
  color: #fff;
}
.header .logo img {
  width: 180px;
}
.header .h_nav {
  /* margin-top: 4px; */
}
.header .h_nav .gnav {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header .h_nav .gnav li a {
  display: block;
  padding: 12px 0 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 1;
}
.header .h_nav .gnav li a.h_btn {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 6px 16px;
}
.header .h_nav .gnav li a:hover {
  color: #afc6ff;
}
.header .h_nav .gnav li a:hover.h_btn {
  border: 1px solid #fff;
  background: #fff;
  color: #173e92;
}
.header .h_nav2 {
  display: flex;
  gap: 16px;
  margin-left: auto;
}
.header .h_nav2 .f_btn {
  display: flex;
  gap: 8px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 8px 16px;
  line-height: 1;
  font-weight: 600;
  text-align: center;
  background: #173e92;
}
.header .h_nav2 .f_btn._contact {
  padding: 8px 16px 8px 24px;
}
.header .h_nav2 .f_btn._contact:after {
  content: "";
  width: 18px;
  height: 18px;
  background: url(../images/icon_send_white.svg) no-repeat;
  background-image: 100% auto;
}
.header .h_nav2 .f_btn:hover {
  background: #fff;
  color: #173e92;
}
.header .h_nav2 .f_btn:hover._contact:after {
  background: url(../images/icon_send_key.svg) no-repeat;
  background-image: 100% auto;
}
@media (max-width: 480px) {
  .header .h_nav,
  .header .h_nav2,
  .header .btn_contact {
    display: none;
  }
  .header .inner {
    max-width: 100%;
  }
}

/*--------------------------------
		footer area
--------------------------------*/
.footer {
  background: #3d4551;
  padding: 32px 0 72px;
  color: #fff;
  font-weight: 600;
  font-size: 1.3rem;
}
.footer .inner {
  max-width: 1280px;
  position: relative;
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #afc6ff;
}
.footer .f_nav {
  display: flex;
  justify-content: space-between;
  padding: 32px 0;
}
.footer .f_nav._gnav {
  padding-bottom: 60px;
  border-bottom: 1px solid #f2f2f2;
}
@media (max-width: 480px) {
  .footer .f_nav {
    flex-direction: column-reverse;
    gap: 32px;
  }
  .footer .f_nav._gnav {
    padding-bottom: 32px;
  }
}
.footer .f_nav_01 {
  width: calc(100% - 140px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .f_nav_01 .f_nav_01_list {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 8px 0;
  flex-wrap: wrap;
}
.footer .f_nav_01 li {
  width: 20%;
}
.footer .f_nav_01 li a {
  display: block;
  padding: 8px 0;
  line-height: 1;
}
@media (max-width: 480px) {
  .footer .f_nav_01 {
    flex-direction: column;
  }
  .footer .f_nav_01 li {
    width: 100%;
  }
}
.footer .f_nav_02 {
  width: 120px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}
.footer .f_nav_02 .f_btn {
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 24px;
  padding: 8px 16px;
  line-height: 1;
  text-align: center;
  background: #173e92;
}
.footer .f_nav_02 .f_btn:hover {
  background: #395eae;
  color: #fff;
}
.footer .f_nav_02 .f_btn._trial {
  background: #fff;
  color: #173e92;
}
.footer .f_nav_02 .f_btn._trial:hover {
  background: #395eae;
  color: #fff;
}
.footer .f_nav_02 .f_btn._document {
  background: #0d1828;
}
.footer .f_nav_02 .f_btn._document:hover {
  background: #395eae;
  color: #fff;
}
@media (max-width: 480px) {
  .footer .f_nav_02 {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }
  .footer .f_nav_02 li {
    width: 100%;
  }
  .footer .f_nav_02 .f_btn {
    padding: 16px;
  }
}
.footer .f_nav_03 {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  margin-top: auto;
  padding: 0;
  line-height: 1;
}
@media (max-width: 480px) {
  .footer .f_nav_03 {
    flex-direction: column;
  }
}
.footer .f_company_content {
  display: flex;
  gap: 64px;
}
@media (max-width: 480px) {
  .footer .f_company_content {
    flex-direction: column;
    gap: 32px;
  }
}
.footer .copyright {
  display: flex;
  margin-top: auto;
}
.footer .pagetop {
  position: absolute;
  right: 0;
  top: -55px;
}
.footer .pagetop:hover {
  top: -60px;
  opacity: 1;
}
@media (max-width: 480px) {
  .footer .pagetop {
    right: 16px;
  }
}
@media (max-width: 480px) {
  .footer {
    padding-bottom: 32px;
  }
}

/*--------------------------------
		home key visual
--------------------------------*/
.kv {
  width: 100%;
  height: 540px;
  background: url(../images/kv01.jpg) center center no-repeat;
  background-size: 2000px auto;
  display: flex;
}
.kv .inner {
  margin: auto;
}
.kv .kv_title {
  line-height: 1.2;
  font-weight: 900;
}
.kv .kv_title .row01 {
  display: inline-block;
  background: #fff;
  color: #173e92;
  font-size: 4rem;
}
.kv .kv_title .row01 span {
  font-size: 3.2rem;
}
.kv .kv_title .row02 {
  display: inline-block;
  background: #173e92;
  color: #fff;
  font-size: 6rem;
}
.kv .kv_title .row02 span {
  font-size: 4.8rem;
}
.kv .list_point {
  list-style: none;
  margin: 32px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.kv .list_point .item {
  margin-right: auto;
  background: #fff;
  color: #173e92;
  display: flex;
  gap: 8px;
  padding: 8px 16px;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  position: relative;
}
.kv .list_point .item:before {
  content: "";
  background: url(../images/icon_checked_yellow01.svg) center center no-repeat;
  background-size: 100% auto;
  width: 24px;
  height: 24px;
}
.kv .btn_box {
  font-weight: 900;
  flex-direction: column;
  gap: 8px;
  display: inline-flex;
}
@media (max-width: 480px) {
  .kv {
    height: 82vw;
    background: url(../images/kv01_sp.jpg) center center no-repeat;
    background-size: 100% auto;
  }
  .kv .kv_title .row01 {
    font-size: 2.3rem;
  }
  .kv .kv_title .row01 span {
    font-size: 1.9rem;
  }
  .kv .kv_title .row02 {
    font-size: 2.9rem;
  }
  .kv .kv_title .row02 span {
    font-size: 2.6rem;
  }
  .kv .list_point {
    margin: 12px 0;
    gap: 3px;
  }
  .kv .list_point .item {
    gap: 4px;
    padding: 8px;
    font-size: 1.6rem;
  }
  .kv .list_point .item:before {
    content: "";
    background: url(../images/icon_checked_yellow01.svg) center center no-repeat;
    background-size: 100% auto;
    width: 18px;
    height: 18px;
  }
}

/*--------------------------------
		JICC key visual
--------------------------------*/
.kv._jicc {
  width: 100%;
  height: auto;
  max-height: 580px;
  aspect-ratio: 3.2/1;
  background: url(../images/kv_bg_jicc.jpg) center center no-repeat;
  background-size: cover;
}
.kv._jicc .inner {
  width: 960px;
  padding-top: 16px;
  padding-bottom: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.kv._jicc .kv_image {
  width: 42%;
  max-width: 700px;
}
.kv._jicc .kv_image img {
  width: 100%;
  max-width: 100%;
}
.kv._jicc .kv_text {
  font-weight: 700;
}
.kv._jicc .kv_title {
  font-size: 3.2rem;
  margin: 0 auto 16px;
}
.kv._jicc .btn_box {
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
}
.kv._jicc .btn_box .btn {
  box-sizing: border-box;
  min-width: 160px;
  text-align: center;
}
@media (max-width: 480px) {
  .kv._jicc {
    aspect-ratio: unset;
    max-height: unset;
    background: url(../images/kv_bg_jicc.jpg) center right -100px no-repeat;
    background-size: cover;
  }
  .kv._jicc .inner {
    flex-direction: column;
    gap: 32px;
  }
  .kv._jicc .kv_image {
    width: 60%;
  }
  .kv._jicc .kv_title {
    font-size: 2.8rem;
    text-align: center;
  }
}

/*--------------------------------
		多言語あんしんサポート key visual
--------------------------------*/
.hoge {
  display: none;
}

.kv._multilingual {
  width: 100%;
  height: auto;
  max-height: 580px;
  aspect-ratio: 4/1;
  background: url(../images/kv_bg_jicc.jpg) center center no-repeat;
  background-size: cover;
}
.kv._multilingual .inner {
  width: 960px;
  padding-top: 16px;
  padding-bottom: 16px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.kv._multilingual .kv_image {
  max-width: 700px;
}
.kv._multilingual .kv_image img {
  width: 100%;
  max-width: 100%;
}
.kv._multilingual .kv_text {
  font-weight: 700;
}
.kv._multilingual .kv_title {
  font-size: 3.2rem;
  margin: 0 auto 16px;
}
.kv._multilingual .btn_box {
  flex-direction: row;
  gap: 16px;
  margin-top: 16px;
}
.kv._multilingual .btn_box .btn {
  box-sizing: border-box;
  min-width: 160px;
  text-align: center;
}
@media (max-width: 480px) {
  .kv._multilingual {
    aspect-ratio: unset;
    max-height: unset;
    background: url(../images/kv_bg_jicc.jpg) center right -100px no-repeat;
    background-size: cover;
  }
  .kv._multilingual .inner {
    flex-direction: column;
    gap: 32px;
  }
  .kv._multilingual .kv_image {
    width: 60%;
  }
  .kv._multilingual .kv_title {
    font-size: 2.8rem;
    text-align: center;
  }
}

/*--------------------------------
		section components
--------------------------------*/
.sec {
  padding: 40px 0;
}
.sec .sec_heading {
  margin-top: 40px;
  margin-bottom: 40px;
}
.sec .sec_title {
  line-height: 1.3;
  font-size: 2.4rem;
  text-align: center;
  color: #173e92;
  padding-left: 0;
  border-left: none;
}
.sec .sec_title .en {
  display: block;
  font-size: 3.6rem;
  letter-spacing: 3px;
}
.sec .sec_title .jp {
  font-size: 1.8rem;
}
.sec .sec_title._large {
  font-size: 3.2rem;
}
.sec .sec_title .focus {
  background: #173e92;
  color: #fff;
}
.sec .sec_subtitle {
  margin: 40px 0 20px;
  line-height: 1.3;
  font-size: 1.8rem;
  text-align: center;
}
.sec .sec_content {
  margin: 64px auto;
}
.sec._bg_grey {
  background: #f2f2f2;
}
.sec._bg_key {
  background: #173e92;
  color: #fff;
}
.sec._bg_key .sec_title {
  color: #fff;
}
.sec._bg_key a {
  color: #fff;
}
@media (max-width: 480px) {
  .sec {
    padding: 30px 0 60px;
  }
  .sec .sec_title._large {
    font-size: 2.4rem;
  }
  .sec .sec_content {
    margin: 32px auto;
  }
}

.sec._movie {
  overflow: hidden;
}
.sec._movie .movie_guide {
  color: #173e92;
  line-height: 2;
  text-align: center;
  font-weight: 900;
  font-size: 2rem;
  margin: 32px auto;
}
.sec._movie .sub_title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 40px 0 20px;
}
.sec._movie .movie_box {
  aspect-ratio: 16/9;
  margin-top: 32px;
}
.sec._movie .movie_box iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.sec._movie .slick-slide {
  margin: 0 24px;
}
@media (max-width: 480px) {
  .sec._movie .movie_guide {
    font-size: 1.6rem;
    margin: 24px auto;
  }
}

.sec._fee_content {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.sec._fee_content .fee_detail {
  margin: 0 0 20px;
  border: 1px solid #173e92;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
}
.sec._fee_content .fee_detail .text {
  margin: 0;
  width: 50%;
  box-sizing: border-box;
  background: #173e92;
  padding: 40px;
}
.sec._fee_content .fee_detail .text .item_title {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 0 8px;
}
.sec._fee_content .fee_detail .text .desc {
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.sec._fee_content .fee_detail .price {
  margin: 0;
  width: 50%;
  box-sizing: border-box;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #173e92;
  font-weight: 900;
}
.sec._fee_content .fee_detail .price span {
  font-size: 3.2rem;
  font-weight: 600;
}
.sec._fee_content .fee_detail._per {
  border: 1px solid #395eae;
}
.sec._fee_content .fee_detail._per .text {
  background: #395eae;
}
@media (max-width: 480px) {
  .sec._fee_content .fee_detail {
    flex-direction: column;
  }
  .sec._fee_content .fee_detail .text,
  .sec._fee_content .fee_detail .price {
    width: 100%;
    padding: 16px 24px;
  }
}

.sec._point {
  background: url(../images/image_ai_01.jpg) center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
.sec._point .screaning_item {
  margin: 40px 7px;
  border-radius: 8px;
  border: 1px solid #173e92;
  box-sizing: border-box;
  background: #fff;
  overflow: hidden;
  display: flex;
}
.sec._point .screaning_item .text {
  padding: 16px;
  width: 40%;
  box-sizing: border-box;
}
.sec._point .screaning_item .text .item_title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #173e92;
}
.sec._point .screaning_item .eyecatch {
  width: 60%;
  box-sizing: border-box;
  background: #f6f6f6;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .sec._point .screaning_item {
    margin: 16px 0;
    flex-direction: column-reverse;
  }
  .sec._point .screaning_item .text,
  .sec._point .screaning_item .eyecatch {
    width: 100%;
    padding: 16px;
  }
}

.sec._algorithm {
  padding: 80px 0;
  background: url(../images/image_ai_02.jpg) center top no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media (max-width: 480px) {
  .sec._algorithm {
    background-size: auto;
  }
}

.sec._working .more {
  margin: 0 auto;
  box-sizing: border-box;
}
.sec._working .more__content {
  position: relative;
  height: auto;
  max-height: 200px;
  overflow: hidden;
  transition: max-height 1s;
}
.sec._working .more__content::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: 1s;
  background: linear-gradient(to bottom, transparent 0%, #ffffff 100%);
}
.sec._working .more__content.open:after {
  z-index: -1;
  opacity: 0;
}
.sec._working .more__btn {
  display: block;
  margin: 0 auto;
  padding: 12px 40px;
  border: 0;
  border-radius: 28px;
  font-weight: 700;
  background-color: #f2f2f2;
  cursor: pointer;
}

.sec._intro {
  padding-bottom: 40px;
}

.sec._functions .package_box02 {
  margin: 0 auto 60px;
}
.sec._functions .package_box02:last-child {
  margin-bottom: 0;
}

.sec._solution .sec_title {
  margin-bottom: 60px;
  font-size: 3.2rem;
  font-weight: 900;
  color: #173e92;
}
.sec._solution .sec_title .focus {
  background: #173e92;
  color: #fff;
}
.sec._solution .solution_part {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.sec._solution .solution_part .eyecatch {
  width: 49%;
  margin: auto 0;
}
.sec._solution .solution_part .solution_content {
  width: 49%;
}
.sec._solution .solution_package {
  margin-bottom: 0;
}
.sec._solution .solution_package .title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  text-align: center;
}
.sec._solution .package_box01 {
  margin: 64px 0;
  position: relative;
}
.sec._solution .package_box01 .logo_box {
  position: absolute;
  left: 50%;
  top: -6px;
}
.sec._solution .package_box01 .logo_box .logo {
  width: 260px;
  transform: translate(-50%, -50%);
}
.sec._solution .package_box01 .list_features {
  border: 2px solid #173e92;
  border-radius: 8px;
  padding: 32px;
  justify-content: space-between;
}
@media (max-width: 480px) {
  .sec._solution .sec_title {
    margin-bottom: 40px;
    font-size: 2.8rem;
  }
  .sec._solution .solution_part {
    flex-direction: column;
    gap: 16px;
  }
  .sec._solution .solution_part .eyecatch,
  .sec._solution .solution_part .solution_content {
    width: 100%;
  }
  .sec._solution .solution_package .title {
    font-size: 1.7rem;
  }
}

.sec._inquiry {
  background: url(../images/bg_inquiry.jpg) center bottom -100px no-repeat;
  background-image: 2400px auto;
  padding: 60px 0 100px;
}
.sec._inquiry .inquiry_list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  gap: 16px;
}
.sec._inquiry .inquiry_list li {
  width: 50%;
}
.sec._inquiry .inquiry_list li a {
  display: block;
  border-radius: 8px;
  background: #19181b;
  padding: 32px;
  color: #fff;
  font-size: 1.2rem;
}
.sec._inquiry .inquiry_list li a._contact {
  background: #173e92;
}
.sec._inquiry .inquiry_list li a:hover {
  opacity: 1;
  background: #3d4551;
}
.sec._inquiry .inquiry_list li a:hover._contact {
  background: #395eae;
}
.sec._inquiry .inquiry_list li .item_title {
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #fff;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
.sec._inquiry .inquiry_list li .btn {
  margin-top: 32px;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 1px;
}
@media (max-width: 480px) {
  .sec._inquiry {
    padding: 40px 0 80px;
    background-image: 1000px auto;
  }
  .sec._inquiry .sec_title {
    font-size: 2rem;
  }
  .sec._inquiry .inquiry_list {
    flex-direction: column;
  }
  .sec._inquiry .inquiry_list li {
    width: 100%;
  }
}

.sec._jicc_intro .credit_list {
  list-style: none;
  padding: 0;
  margin: 32px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.sec._jicc_intro .credit_list .item {
  width: 30%;
  position: relative;
  text-align: center;
}
.sec._jicc_intro .credit_list .item .item_text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
  color: #173e92;
  font-size: 1.6rem;
  font-weight: 900;
}
@media (max-width: 480px) {
  .sec._jicc_intro p br {
    display: none;
  }
  .sec._jicc_intro .credit_list {
    flex-direction: column;
  }
  .sec._jicc_intro .credit_list .item {
    width: 100%;
  }
}

.sec._jicc_feature .sec_heading {
  position: relative;
}
.sec._jicc_feature .sec_heading:before {
  content: "";
  width: 100%;
  height: 75%;
  background: #e9ecf0;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  z-index: -1;
}
.sec._jicc_feature .sec_heading .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sec._jicc_feature .sec_heading .sec_title {
  margin-bottom: 16px;
}
.sec._jicc_feature .sec_heading .sec_desc {
  font-weight: 700;
  color: #173e92;
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.sec._jicc_feature .sec_content .jicc_part01 {
  background: #f2f2f2;
  padding: 32px 40px;
  display: flex;
  gap: 32px;
  margin-bottom: 40px;
  font-size: 1.3rem;
}
.sec._jicc_feature .sec_content .jicc_part01 .part_title {
  margin: 0 0 16px;
}
.sec._jicc_feature .sec_content .jicc_part01 .part_image {
  width: 140px;
}
.sec._jicc_feature .sec_content .jicc_part01 .part_text {
  width: calc(100% - 140px);
}
.sec._jicc_feature .sec_content .jicc_part02 {
  border: 2px solid #173e92;
  padding: 16px;
  margin-bottom: 40px;
  font-size: 1.4rem;
  text-align: center;
}
.sec._jicc_feature .sec_content .jicc_part02 .part_title {
  margin: 0 0 16px;
}
.sec._jicc_feature .sec_content .jicc_part02 .part_image {
  width: 140px;
}
.sec._jicc_feature .sec_content .jicc_part02 .part_text {
  width: calc(100% - 140px);
}
.sec._jicc_feature .sec_content .image_jicc_system {
  margin: 32px auto;
}
@media (max-width: 480px) {
  .sec._jicc_feature .sec_heading .inner {
    flex-direction: column;
  }
  .sec._jicc_feature .sec_heading:before {
    height: 90%;
  }
  .sec._jicc_feature .sec_content .jicc_part01 {
    flex-direction: column;
  }
  .sec._jicc_feature .sec_content .jicc_part01 .part_image,
  .sec._jicc_feature .sec_content .jicc_part01 .part_text {
    width: 100%;
  }
  .sec._jicc_feature .sec_content .jicc_part01 .part_image,
  .sec._jicc_feature .sec_content .jicc_part01 .part_title {
    text-align: center;
  }
}

.sec._jicc_support {
  background: #e9ecf0;
}
.sec._jicc_support .sec_heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.sec._jicc_support .sec_heading .sec_title {
  text-align: left;
}
.sec._jicc_support .flow_navi {
  position: relative;
  padding: 0;
  margin: auto;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 16px;
  overflow-x: scroll;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.sec._jicc_support .flow_navi .item {
  position: relative;
  width: 180px;
  text-align: center;
}
.sec._jicc_support .flow_navi .item .period {
  position: absolute;
  right: calc(-50% - 8px);
  width: 100%;
  top: 6px;
  text-align: center;
}
.sec._jicc_support .flow_navi .item .period span {
  background: #fff;
  padding: 3px 8px;
  font-size: 1.1rem;
  border-radius: 16px;
  line-height: 1;
}
.sec._jicc_support .flow_navi .item .num {
  width: 180px;
  margin-bottom: 16px;
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}
.sec._jicc_support .flow_navi .item h3 {
  margin-top: 0;
  font-weight: 700;
  font-size: 1.5rem;
  color: #000;
}
.sec._jicc_support .flow_navi .item:before {
  content: "";
  display: block;
  margin: 4px auto 24px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #323232;
  position: relative;
}
.sec._jicc_support .flow_navi .item:nth-child(5n):before {
  background: #173e92;
}
.sec._jicc_support .flow_navi:before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  top: 12px;
  display: block;
  width: 784px;
  height: 1px;
  background: #323232;
}
@media (max-width: 480px) {
  .sec._jicc_support .sec_heading {
    flex-direction: column;
  }
  .sec._jicc_support .sec_heading .sec_title {
    text-align: center;
  }
  .sec._jicc_support .sec_heading br {
    display: none;
  }
  .sec._jicc_support .flow_navi {
    padding: 0 16px 24px;
    justify-content: flex-start;
  }
  .sec._jicc_support .flow_navi:before {
    left: 104px;
    transform: none;
    -webkit-transform: none;
    -ms-transform: none;
  }
}

.sec._jicc_cta {
  background: #173e92;
  padding: 40px 0;
}
.sec._jicc_cta .inner {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.sec._jicc_cta .inner .sec_image {
  margin: 0;
  width: 280px;
}
.sec._jicc_cta .inner .sec_text {
  width: calc(100% - 280px - 40px);
  color: #fff;
}
.sec._jicc_cta .inner .sec_title {
  margin-bottom: 24px;
  font-size: 2.1rem;
  color: #fff;
  text-align: left;
}
@media (max-width: 480px) {
  .sec._jicc_cta .inner {
    flex-direction: column;
  }
  .sec._jicc_cta .inner .sec_image,
  .sec._jicc_cta .inner .sec_text {
    width: 100%;
    text-align: center;
  }
  .sec._jicc_cta .inner .sec_title {
    text-align: center;
  }
}

/*--------------------------------
		common components
--------------------------------*/
.slide_area {
  padding: 40px 0;
  overflow: hidden;
}
.slide_area .inner {
  margin: 0 auto;
  /* width: 60%; */
  box-sizing: border-box;
  /* padding-left: 20px; */
}
.slide_area .lineup {
  position: relative;
}
.slide_area .carousel .slick-slide {
  /* margin-right: 40px; */
  margin: 0 16px;
}
@media (max-width: 480px) {
  .slide_area._01 .inner {
    padding-left: 16px;
    width: calc(100% - 16px);
  }
  .slide_area._03 .slick-nav-arrows {
    display: block;
  }
}

.slick-slider {
  padding-left: 0;
}

.slick-list {
  overflow: visible;
}

.slick-nav-arrows {
  position: absolute;
  top: -20px;
  right: 0%;
}

.slick-arrow {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
}

.slick-next {
  right: 40px;
  right: 15px;
}

.slick-prev {
  left: -100px;
  left: -75px;
}

.slick-next:before,
.slick-prev:before {
  color: #000;
  font-size: 24px;
}

.sli_next02:before,
.sli_prev02:before {
  color: #fff;
}

.list_logo {
  list-style: none;
  padding: 0;
  margin: 32px auto 0;
  display: flex;
  gap: 0 16px;
  flex-wrap: wrap;
  justify-content: center;
}
@media (max-width: 480px) {
  .list_logo {
    gap: 0 8px;
  }
  .list_logo .item {
    width: 45%;
  }
}

.list_ai {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-around;
}
.list_ai .item {
  width: 240px;
  height: 240px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 10px solid #eaebef;
  background: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_ai .item .item_title {
  font-size: 1.8rem;
  font-weight: 900;
  text-align: center;
  color: #173e92;
}

.list_screaning {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 40px 20px;
  flex-wrap: wrap;
  justify-content: space-around;
}
.list_screaning .item {
  width: 240px;
  border-radius: 8px;
  border: 1px solid #173e92;
  box-sizing: border-box;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
}
.list_screaning .item .eyecatch {
  background: #f6f6f6;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list_screaning .item .eyecatch img {
  transition: 0.3s;
}
.list_screaning .item .item_title {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: #173e92;
  padding: 16px 0;
  text-align: center;
}
.list_screaning .item:hover {
  background: #173e92;
}
.list_screaning .item:hover .eyecatch img {
  transform: scale(1.2, 1.2);
}
.list_screaning .item:hover .item_title {
  color: #fff;
}
@media (max-width: 480px) {
  .list_screaning {
    gap: 16px;
  }
  .list_screaning .item {
    width: 100%;
  }
}

.list_fee01 {
  display: flex;
  justify-content: space-between;
  text-align: center;
}
.list_fee01 .icon_plus {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3.2rem;
}
.list_fee01 .item {
  width: 240px;
  box-sizing: border-box;
  border: 1px solid #173e92;
  border-radius: 8px;
  overflow: hidden;
}
.list_fee01 .item .item_title {
  padding: 12px 0;
  background: #173e92;
  color: #fff;
  font-weight: 900;
  font-size: 1.8rem;
}
.list_fee01 .item .item_value {
  padding: 12px 0;
  color: #173e92;
  font-weight: 900;
  font-size: 1.8rem;
}
.list_fee01 .item .item_value span {
  font-size: 3.2rem;
}
.list_fee01 .item._free {
  border: 1px solid #235ad1;
}
.list_fee01 .item._free .item_title {
  background: #235ad1;
}
.list_fee01 .item._free .item_value {
  color: #235ad1;
}
.list_fee01 .item._per {
  border: 1px solid #395eae;
}
.list_fee01 .item._per .item_title {
  background: #395eae;
}
.list_fee01 .item._per .item_value {
  color: #395eae;
}
@media (max-width: 480px) {
  .list_fee01 {
    flex-direction: column;
  }
  .list_fee01 .item {
    width: 100%;
  }
}

.list_fee02 {
  display: flex;
  position: relative;
}
.list_fee02 .item._basic {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.list_fee02 .item._per {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.list_fee02 .icon_plus {
  position: absolute;
  width: 32px;
  height: 32px;
  left: calc(50% - 16px);
  top: calc(55% - 16px);
  font-size: 2.4rem;
  color: #fff;
  background: #173e92;
  border-radius: 4px;
}

.caption {
  font-size: 1.2rem;
  margin: 8px 0;
  text-align: right;
}

.list_algorithm {
  margin: 80px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list_algorithm .item {
  width: 360px;
  background: #fff;
  overflow: hidden;
  border-radius: 8px;
}
.list_algorithm .item .eyecatch {
  margin: 0 0 16px;
}
.list_algorithm .item .item_title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #19181b;
  padding: 16px;
}
@media (max-width: 480px) {
  .list_algorithm {
    gap: 32px;
  }
  .list_algorithm .item {
    width: 100%;
  }
  .list_algorithm .item img {
    max-width: auto;
    width: 100%;
  }
}

.list_challenge {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-around;
}
.list_challenge .item {
  width: 280px;
  text-align: center;
}
.list_challenge .item .eyecatch {
  margin: 0 0 16px;
}
.list_challenge .item .item_title {
  margin: 0 0 16px;
  font-size: 1.8rem;
  font-weight: 900;
}
@media (max-width: 480px) {
  .list_challenge .item {
    width: 100%;
  }
}

.list_features {
  list-style: none;
  margin: 0;
  padding: 0 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.list_features .item {
  width: 188px;
  box-sizing: border-box;
  border: 1px solid #173e92;
  border-radius: 4px;
  padding: 12px;
  line-height: 1;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  color: #173e92;
}
.list_features .item.modal-toggle {
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.list_features .item.modal-toggle:after {
  content: "";
  background: url(../images/icon_arrow_upright_navy.svg) center center no-repeat;
  width: 12px;
  height: 12px;
  background-size: 100% auto;
  display: block;
  position: absolute;
  top: 4px;
  right: 4px;
}
.list_features .item.modal-toggle:hover {
  cursor: pointer;
  background: #173e92;
  color: #fff;
}
.list_features .item.modal-toggle:hover:after {
  content: "";
  background: url(../images/icon_arrow_upright_white.svg) center center
    no-repeat;
  width: 12px;
  height: 12px;
  background-size: 100% auto;
}
.list_features a {
  display: block;
  color: #19181b;
}
.list_features a:hover {
  color: #395eae;
}
@media (max-width: 480px) {
  .list_features .item {
    width: 100%;
  }
}

.solution_list01 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.solution_list01 .item {
  display: flex;
  flex-wrap: wrap;
}
.solution_list01 .solution_image {
  width: 120px;
  margin: 0 20px 0 0;
}
.solution_list01 .text {
  width: calc(100% - 140px);
}
.solution_list01 .text .item_title {
  margin: 8px 0;
  font-size: 2.2rem;
  color: #173e92;
  font-weight: 900;
}
.solution_list01 .text .desc {
  font-size: 1.3rem;
}
@media (max-width: 480px) {
  .solution_list01 .item {
    flex-direction: row;
    justify-content: center;
  }
  .solution_list01 .item .solution_image,
  .solution_list01 .item .text {
    width: 100%;
    margin: auto;
    text-align: center;
  }
}

.solution_list02 {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}
.solution_list02 .item {
  text-align: center;
}
.solution_list02 .solution_image {
  width: 240px;
  margin: 0 auto 16px;
}
.solution_list02 .item_title {
  margin: 8px 0;
  font-size: 1.8rem;
  color: #173e92;
  font-weight: 900;
}
.solution_list02 .desc {
  font-size: 1.3rem;
}
@media (max-width: 480px) {
  .solution_list02 {
    flex-direction: column;
  }
  .solution_list02 .item {
    flex-direction: row;
    justify-content: center;
  }
  .solution_list02 .item .solution_image,
  .solution_list02 .item .text {
    width: 100%;
    margin: auto;
    text-align: center;
  }
}

.list_service_option {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-around;
}
.list_service_option li {
  width: 30%;
  text-align: center;
}
.list_service_option li .eyecatch {
  margin: 0 0 16px;
}
.list_service_option li .item_title {
  font-size: 1.6rem;
  font-weight: 600;
}
.list_service_option li a {
  color: #19181b;
  text-decoration: underline;
}
.list_service_option li a:hover {
  color: #395eae;
}
@media (max-width: 480px) {
  .list_service_option {
    flex-direction: column;
    gap: 32px;
  }
  .list_service_option li {
    width: 100%;
  }
}

.cat_nav {
  list-style: none;
  padding: 16px 32px;
  margin-top: 0;
  margin-bottom: 60px;
  background: #f2f2f2;
  display: flex;
  gap: 8px;
}
.cat_nav .item a {
  border-radius: 16px;
  padding: 4px 12px;
  background: #fff;
  color: #173e92;
  line-height: 1.1;
  font-size: 1.3rem;
  font-weight: 600;
}
.cat_nav .item._current a {
  background: #173e92;
  color: #fff;
}
.cat_nav .item:hover a {
  background: #395eae;
  color: #fff;
}

.list_article {
  list-style: none;
  margin: 0;
  padding: 0;
}
.list_article._colored .item a {
  color: #fff;
}
.list_article._paged {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 60px;
}
.list_article._paged .article a {
  display: flex;
  justify-content: space-between;
}
.list_article._paged .article a .eyecatch {
  width: 300px;
}
.list_article._paged .article a .text {
  width: calc(100% - 300px - 32px);
}
@media (max-width: 480px) {
  .list_article._paged {
    gap: 16px;
    margin-bottom: 40px;
  }
  .list_article._paged .article a {
    flex-direction: column;
  }
  .list_article._paged .article a .eyecatch,
  .list_article._paged .article a .text {
    width: 100%;
  }
}

.article .eyecatch {
  margin: 0 0 8px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.article .eyecatch img {
  transition: 0.3s;
}
.article .eyecatch._3x2 {
  aspect-ratio: 3/2;
}
.article .meta {
  display: flex;
  gap: 8px;
  align-items: center;
}
.article .cat {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.article .cat .item_cat {
  border-radius: 16px;
  background: #173e92;
  padding: 4px 12px;
  color: #fff;
  line-height: 1.1;
  font-size: 1.3rem;
  font-weight: 600;
}
.article .cat .item_cat:hover {
  background: #395eae;
}
.article .cat a {
  color: #fff;
}
.article .title {
  font-size: 1.8rem;
  margin: 8px 0;
}
.article .desc {
  font-size: 1.3rem;
}
.article > a {
  color: #19181b;
}
.article > a:hover .eyecatch img {
  transform: scale(1.1, 1.1);
  transition: 0.3s;
}

/*
.list_whitepaper {
	display: flex;
	flex-direction: column;
	gap: 60px;
	.item {
		display: flex;
		justify-content: space-between;
		.eyecatch {
			width: 49%;
			margin: 0;
		}
		.item_content {
			width: 49%;
			padding-top: 16px;
			display: flex;
			flex-direction: column;
			.item_title {
				margin: 0;
			}
		}
	}
	@include sp {
		gap: 40px;
		.item {
			flex-direction: column;
			.eyecatch {
				width: 100%;
				margin: 0;
			}
			.item_content {
				width: 100%;
				padding-top: 16px;
				display: flex;
				flex-direction: column;
				.item_title {
					margin: 0;
				}
			}
		}
	}
}
*/
.table_box02 table {
  table-layout: fixed;
  width: 100%;
  margin-top: 1em;
  border-collapse: collapse;
  border-bottom: 1px solid #dce1f2;
}
.table_box02 table th,
.table_box02 table td {
  padding: 0.5em 1em;
  border-top: 1px solid #dce1f2;
}
.table_box02 table th:not(:first-child),
.table_box02 table td:not(:first-child) {
  border-left: 1px solid #dce1f2;
}

.table_box {
  font-size: 1.3rem;
}
.table_box table {
  margin: 40px auto;
  text-align: left;
  width: 100%;
  border-collapse: collapse;
}
.table_box table tr {
  border: none;
  box-sizing: border-box;
}
.table_box table tr th {
  width: 25%;
  padding: 20px 10px;
  border: none;
}
.table_box table tr td {
  width: 40%;
  padding: 20px 10px;
  border: none;
  border-left: 1px solid #b3b4b5;
}
.table_box table tr td.subtitle {
  padding: 10px;
  color: #fff;
  font-weight: bold;
  text-align: center !important;
  background: #1f2c5c;
}
.table_box table tbody tr td:last-child {
  border-right: none;
}
.table_box table tbody tr:nth-child(even) th,
.table_box table tbody tr:nth-child(even) td {
  background: #f8f8f8;
}
.table_box table tbody tr td:first-child {
  text-align: left;
}

.notice_box {
  font-size: 1.2rem;
  line-height: 2;
  margin: 40px auto;
}

.company {
  padding: 35px 0 10px;
  text-align: center;
}
.company ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding-left: 0;
}

.page_content._multilingual {
  background-color: #f2f2f2;
}

.sec._multilingual h2 {
  text-align: left;
}
.sec._multilingual .sec_title_center {
  text-align: center;
}

.multilingual_list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.multilingual_list .item {
  width: 46%;
  box-sizing: border-box;
  border-radius: 8px;
  background-color: #e9ecf0;
  margin-bottom: 40px;
  padding: 0 20px 40px;
}

.support_language {
  text-align: center;
  display: block;
}

.sec_title_center.sec_title {
  text-align: center !important;
}

.sec._service .sec_content {
  text-align: center;
}

.js-noteOutput ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}

.js-noteOutput ul li {
  width: 50%;
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  position: relative;
}

.js-noteOutput .c-button {
  color: inherit;
}

.js-noteOutput .c-button:hover {
  opacity: 0.7;
}

.js-noteOutput .date {
  font-size: 12px;
  margin-left: 16px;
  margin-right: 16px;
  color: inherit;
}

.js-noteOutput .title {
  font-weight: bold;
  font-size: 18px;
  flex-grow: 1;
  margin-left: 16px;
  margin-right: 16px;
  margin-top: 0;
}

.js-noteOutput .description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-height: 4.8em;
  margin-top: 8px;
  line-height: 1.6;
  margin-left: 16px;
  margin-right: 16px;
  font-size: 14px;
}

.more-button {
  display: block;
  text-align: center;
  background-color: #102d7b;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  width: 240px;
  padding: 8px;
  border-radius: 8px;
  margin: auto;
}

.more-button:hover {
  color: #fff;
  opacity: 1;
  background-color: #5282f2;
}

.js-noteOutput-index ul li:nth-child(n + 3) {
  display: none;
}

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