/* ==================================================
  base
================================================== */

.main_content {
  overflow-x: clip;
  font-size: 16px;
  line-height: 1.375;
}
.main_content img {
  height: auto;
}



/* ----------------------------------------
  breadcrumbs, title
---------------------------------------- */

.page_title_area_aem {
  display: none;
}

@media (max-width: 1023px) {
  .breadcrumbs.for_mobile {
    display: none;
  }
}

@media (min-width: 1024px) {
  .breadcrumbs.for_pc {
    display: none;
  }
}



/* ----------------------------------------
  page_top
---------------------------------------- */

.page_top {
  padding: 0;
  border-top: none;
}
.page_top_text {
  display: none;
}





/* ==================================================
  color
================================================== */

:root {
  --Electric-Blue: #024ad8;
  --Power-Storm: #568393;
  --Orange-Bloom: #ff5050;
  --Standard-gray: #e6e6e6;
  --Light-gray: #f5f5f5;
}





/* ==================================================
  common
================================================== */

/* ----------------------------------------
  heading
---------------------------------------- */

.xl, .xxl,
.h1, .h2, .h3, .h4, .h5, .h6 {
  line-height: 1.1;
}
.xl, .xxl {
  font-family: "FormaDJRDisplay","FormaDJRJapaneseDisplay";
}

.xl, .xxl { font-size: 42px; }
.h1 { font-size: 42px; }
.h2 { font-size: 36px; }
.h3 { font-size: 32px; }
.h4 { font-size: 26px; }
.h5 { font-size: 22px; }
.h6 { font-size: 18px; }

@media (min-width: 768px) {
  .xl, .xxl { font-size: 72px; }
  .h1 { font-size: 61px; }
  .h2 { font-size: 48px; }
  .h3 { font-size: 40px; }
  .h4 { font-size: 30px; }
  .h5 { font-size: 24px; }
  .h6 { font-size: 20px; }
}

@media (min-width: 1280px) {
  .xl, .xxl { font-size: 100px; }
  .h1 { font-size: 80px; }
  .h2 { font-size: 60px; }
  .h3 { font-size: 48px; }
  .h4 { font-size: 34px; }
}



/* ----------------------------------------
  p
---------------------------------------- */

.main_content p + p {
  margin-top: 1em;
}

@media (min-width: 768px) {
  .font_body {
    font-size: 18px;
  }
}



/* ----------------------------------------
  sup
---------------------------------------- */

sup.small {
  vertical-align: super;
  font-size: 13.3333px;
  font-weight: normal;
}



/* ----------------------------------------
  button
---------------------------------------- */

.main_content .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  padding: 5px 24px;
  font-size: 16px;
  text-align: center;
  border-radius: 2px;
}
.main_content .button.slim {
  font-size: 13px;
}
.main_content .button.sslim {
  font-size: 11px;
}


/* primary -------------------- */

.main_content .button.primary {
  background: #000;
}
.main_content .button.primary:hover {
  background: #5a5a5a;
}



/* ----------------------------------------
  p_button
---------------------------------------- */

.p_button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  transition: .2s;
  min-height: 32px;
  font-size: 16px;
  text-align: left;
  text-decoration: none !important;
}
.p_button_arrow {
  overflow: hidden;
  position: relative;
  transition: .3s;
  width: 19px;
  height: 16px;
}
.p_button_arrow::after {
  content: "";
  position: absolute;
  right: 3px;
  transition: .3s;
  width: 100%;
  height: 100%;
  background: url(images/p_button_arrow.png) no-repeat center center;
}
.p_button:hover .p_button_arrow::after {
  right: 0;
}
.p_button_text {
  position: relative;
  color: #000;
}
.p_button_text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width .2s linear;
  width: 0;
  height: 1px;
  background: #000;
}
.p_button:hover .p_button_text::after {
  width: 100%;
}

/* white */
.p_button.light .p_button_text {
  color: #fff;
}
.p_button.light .p_button_text::after {
  background: #fff;
}
.p_button.light .p_button_arrow {
  filter: invert(1);
}

/* 斜め */
.p_button.rotated .p_button_arrow {
  transform: rotate(-45deg);
}


/* 矢印＆エッジ -------------------- */

@media (min-width: 1024px) {
  .p_button.edge {
    overflow: hidden;
    align-items: flex-end;
    position: relative;
    min-height: 52px;
    padding-right: 60px;
  }
  .p_button.edge::before {
    content: "";
    position: absolute;
    right: 3px;
    transition: .3s;
    width: 100%;
    height: 100%;
    background: url(images/p_button_edge.png) no-repeat top right;
  }
  .p_button.edge:hover::before {
    right: 0;
  }
  .p_button.edge .p_button_text {
    line-height: 1;
  }
  .p_button.edge .p_button_text::after {
    content: none;
  }

  /* white */
  .p_button.light.edge::before {
    filter: invert(1);
  }
}


/* list_basicで使う場合はmin-heightをなくす -------------------- */

.list_basic .p_button {
  min-height: auto;
}



/* ----------------------------------------
  list_basic
---------------------------------------- */

.main_content .list_basic > li {
  line-height: inherit;
}
.main_content .list_basic > li::before {
  content: "\2022";
  font-family: Arial;
  font-size: 130%;
  top: .06em;
  width: auto;
  height: auto;
  line-height: 1;
  background: none;
}
.main_content .list_basic > li + li {
  margin-top: 8px;
}



/* ----------------------------------------
  p_section
---------------------------------------- */

.p_section {
  max-width: 1280px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .p_section {
    padding-right: 30px;
    padding-left: 30px;
  }
}



/* ----------------------------------------
  グラデーションの背景
---------------------------------------- */

.bg_grad {
  background: linear-gradient(to bottom, var(--Power-Storm) -310%, #fff 90%);
}





/* ==================================================
  Swiper
================================================== */

/* ----------------------------------------
  controller
---------------------------------------- */

.main_content .swiper-controller {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
  width: 100%;
}
.main_content .swiper-button-prev,
.main_content .swiper-button-next {
  position: relative;
  cursor: pointer;
  pointer-events: all;
  width: 30px;
  height: 30px;
  margin: 7px;
}
.main_content .swiper-button-prev::before,
.main_content .swiper-button-next::before {
  content: "";
  position: absolute;
  top: -7px;
  left: -7px;
  transition: .2s;
  width: 44px;
  height: 44px;
  background: url(images/swiper_button.png) no-repeat center center / 30px 30px;
}
.main_content .swiper-button-next::before {
  transform: rotate(180deg);
}
.main_content .swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

@media (min-width: 1280px) {
  .main_content .swiper-controller {
    padding: 0 7px;
  }
}



/* ----------------------------------------
  pagination
---------------------------------------- */

.main_content .swiper-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  text-align: center;
  line-height: 1;
}
.main_content .swiper-pagination-bullet {
  display: inline-block;
  cursor: pointer;
  width: 45px;
  height: 5px;
  background-color: #eee;
  background-clip: padding-box;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
}
.main_content .swiper-pagination-bullet-active {
  background-color: #000;
}



/* ----------------------------------------
  非活性時
---------------------------------------- */

.main_content .swiper:not(.swiper-initialized) .swiper-controller,
.main_content .swiper:not(.swiper-initialized) .swiper-pagination {
  display: none;
}
.main_content .swiper:not(.swiper-initialized) .swiper-wrapper {
  margin: 0;
}





/* ==================================================
  colorBox（複数設置可能）
================================================== */

.colorBox_card {
  padding: 0 30px 30px;
  background: rgba(86 131 147 / .1);
}
.colorBox_card.dark {
  color: #fff;
  background: var(--Power-Storm);
}
.colorBox_caption {
  padding: 30px 0;
}
.colorBox_caption h3 {
  font-size: 16px;
  line-height: 1.1;
}
.colorBox_image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 0;
}
.colorBox_desc,
.colorBox_cta {
  margin-top: 20px;
}

/* キャプションあり */
.colorBox.v_caption .colorBox_image {
  padding: 30px 0 40px;
}

@media (max-width: 767px) {
  .colorBox .swiper {
    margin: 0 -20px;
    padding: 40px 0;
  }
  .colorBox .swiper-slide {
    height: auto;
    padding: 0 20px;
  }
  .colorBox_card {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .colorBox .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
  }
  .colorBox .swiper-slide {
    display: contents;
  }
  .colorBox_card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0;
    padding-bottom: 40px;
  }
  .colorBox_image {
    padding: 75px 0;
  }
  /* キャプションあり */
  .colorBox.v_caption .colorBox_card {
    grid-row: span 5;
  }
  .colorBox.v_caption .colorBox_image {
    padding: 40px 0 55px;
  }
}

@media (min-width: 1280px) {
  .colorBox.v_col3 .swiper-wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
  .colorBox.v_col4 .swiper-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}





/* ==================================================
  secondary_navi
================================================== */

#local_navi {
  transition: .5s;
  z-index: 101;
  background: #fff;
}
#local_navi a:link,
#local_navi a:visited,
#local_navi a:hover {
  color: #000;
}
.local_navi_menu_level1 > li > a {
  font-weight: bold;
}

@media (max-width: 1023px) {
  .local_navi_trigger {
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 10px;
    min-height: 60px;
    padding: 5px 20px;
    color: #000;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
  }
  .local_navi_trigger::before {
    content: "" !important;
    flex-shrink: 0;
    width: 12px;
    height: 6px;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6"><path d="m455.465 769.707-1.847-.974 3.478-5.054-3.475-4.989 1.841-.983 4.156 5.966z" transform="rotate(90 611.663 158.045)"></path></svg>');
  }
  .local_navi_trigger.local_navi_open::before {
    transform: rotate(180deg);
  }
  .local_navi_menu_level1 > li {
    background: #fff;
    border: none;
  }
  .local_navi_menu_level1 > li:last-child {
    border: none;
  }
  .local_navi_menu_level1 > li.local_navi_level2_open,
  .local_navi_menu_level2 {
    background: transparent;
  }
  .local_navi_level2_trigger {
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }
  .local_navi_level2_trigger::after {
    content: "" !important;
    position: static;
    transform: none;
    width: 12px;
    height: 6px;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6"><path d="m455.465 769.707-1.847-.974 3.478-5.054-3.475-4.989 1.841-.983 4.156 5.966z" transform="rotate(90 611.663 158.045)"></path></svg>');
  }
  .local_navi_level2_open .local_navi_level2_trigger::after {
    transform: rotate(180deg);
  }
  .secondary_navi_close {
    display: none;
  }
}

@media (min-width: 1024px) {
  .local_navi .local_navi_menu {
    justify-content: center;
  }
  .local_navi_logo {
    font-size: 20px;
  }
  .local_navi_menu_level1 > li:not(:first-child):hover::after {
    background: #165dba;
    border-radius: 0;
  }
  .local_navi_menu_level2 {
    background: #fff;
  }
  .local_navi_menu_level2 > li a:hover {
    background: transparent;
  }
}



/* ----------------------------------------
  anchor_naviが固定されてる時は隠す
---------------------------------------- */

@media (max-width: 1023px) {
  .anchor_navi_fixed .secondary_navi {
    transform: translateY(-62px);
  }
}

@media (min-width: 1024px) {
  .anchor_navi_fixed .secondary_navi {
    transform: translateY(-72px);
  }
}





/* ==================================================
  anchor_navi
================================================== */

#anchor_navi {
  position: relative;
  z-index: 100;
  width: 100%;
  background: #fff;
}
#anchor_navi.is_fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.anchor_navi_menu {
  background: #fff;
}
.anchor_navi_menu_level1 > li > a {
  transition: .2s;
  font-weight: bold;
}
.anchor_navi_menu_level1 > li > a:link,
.anchor_navi_menu_level1 > li > a:visited,
.anchor_navi_menu_level1 > li > a:hover {
  color: #000;
  text-decoration: none;
}
.anchor_navi_menu_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

@media (max-width: 1023px) {
  .anchor_navi_trigger {
    display: flex;
    align-items: center;
    height: 60px;
    padding: 0 20px;
    cursor: pointer;
  }
  .anchor_navi_trigger h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
  }
  .anchor_navi_trigger h2::after {
    content: "";
    flex-shrink: 0;
    width: 12px;
    height: 6px;
    background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6"><path d="m455.465 769.707-1.847-.974 3.478-5.054-3.475-4.989 1.841-.983 4.156 5.966z" transform="rotate(90 611.663 158.045)"></path></svg>');
  }
  .anchor_navi_trigger.is_active h2::after {
    transform: rotate(180deg);
  }
  .anchor_navi_menu {
    display: none;
    position: absolute;
    width: 100%;
  }
  .anchor_navi_menu h2 {
    display: none;
  }
  .anchor_navi_menu_level1 > li > a {
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0 20px;
  }
  .anchor_navi_menu_cta {
    padding: 10px 20px;
  }
}

@media (min-width: 1024px) {
  .anchor_navi {
    padding: 7px 20px;
  }
  .anchor_navi_trigger {
    display: none;
  }
  .anchor_navi_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    max-width: 1220px;
    height: 60px;
    margin: 0 auto;
  }
  .anchor_navi_menu h2 {
    padding-right: 30px;
    font-size: 24px;
    white-space: nowrap;
    border-right: 1px solid #000;
  }
  .anchor_navi_menu_level1 {
    display: flex;
    gap: 24px;
  }
  .anchor_navi_menu_level1 > li {
    position: relative;
  }
  .anchor_navi_menu_level1 > li > a:hover {
    color: #464646;
  }
  .anchor_navi_menu_level1 > li > a.is_current {
    color: #0249d7;
  }
  .anchor_navi_menu_level1 > li > a.is_current::after {
    display: block;
    content: "";
    position: absolute;
    bottom: auto;
    width: 100%;
    height: 2px;
    margin-top: 9px;
    background: #0249d7;
  }
  .anchor_navi_menu_cta {
    margin-left: auto;
    white-space: nowrap;
  }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .anchor_navi_menu {
    gap: 20px;
  }
  .anchor_navi_menu h2 {
    padding-right: 20px;
    font-size: 20px;
  }
  .anchor_navi_menu_level1 {
    gap: 18px;
    font-size: 14px;
  }
  .anchor_navi_menu_cta .button {
    padding-right: 10px;
    padding-left: 10px;
    font-size: 14px;
  }
}



/* ----------------------------------------
  レイアウトシフト防止
---------------------------------------- */

@media (max-width: 1023px) {
  body.anchor_navi_fixed {
    padding-top: 60px;
  }
}

@media (min-width: 1024px) {
  body.anchor_navi_fixed {
    padding-top: 74px;
  }
}





/* ==================================================
  hero
================================================== */

.hero {
  position: relative;
}
.hero_video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.hero_video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.hero_content {
  position: relative;
  z-index: 1;
  padding: 50px 20px;
  color: #fff;
  text-align: center;
}
.hero_content h2 {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .hero_content {
    max-width: 1280px;
    padding: 94px 30px 50px;
    margin: 0 auto;
  }
}



/* ----------------------------------------
  badge
---------------------------------------- */

.hero .badge {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}
.hero .badge img {
  opacity: 1 !important;
}

@media (max-width: 479px) {
  .hero .badge img {
    height: 33px;
  }
}

@media (min-width: 480px) {
  .hero .badge {
    align-items: flex-end;
  }
}



/* ----------------------------------------
  hero_link_list
---------------------------------------- */

.hero_link_list {
  display: flex;
  flex-direction: column;
  gap: 20px 30px;
  margin-top: 40px;
}
.hero_link_list > li {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  color: #000;
  text-align: left;
  background: #fff;
}

@media (min-width: 768px) {
  .hero_link_list {
    flex-direction: row;
  }
  .hero_link_list > li {
    flex: 1;
  }
}

@media (min-width: 1280px) {
  .hero_link_list > li {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    padding-right: 30px;
    padding-left: 30px;
  }
}






/* ==================================================
  floating_banner
================================================== */

.floating_banner {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 401;
}
.floating_banner a {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
  min-height: 60px;
  padding: 10px 35px;
  font-size: 16px;
  line-height: 1.375;
  text-align: center;
  text-decoration: none !important;
  background: #024ad8;
  border-radius: 100px;
  box-shadow: 6px 6px 12px 0 rgb(0 0 0 / .2);
}
.floating_banner a:hover {
  background: #000;
}
.floating_banner a span {
  color: #fff;
}
body.no_scroll .floating_banner {
  z-index: 199;
}

@media screen and (max-width: 479px) {
  .floating_banner a {
    font-size: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .floating_banner {
    right: 20px;
    bottom: 100px;
  }
}





/* ==================================================
  components
================================================== */

.components_card {
  padding: 30px 20px;
  background: linear-gradient(to bottom, var(--Power-Storm) -310%, #fff 90%);
}
.components_image {
  text-align: center;
}
.components_title {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #000;
}
.components_desc {
  padding-top: 10px;
}

@media (max-width: 767px) {
  .components .swiper {
    margin: 0 -20px;
    padding: 40px 0;
  }
  .components .swiper-slide {
    height: auto;
    padding: 0 20px;
  }
  .components_card {
    height: 100%;
  }
}

@media (min-width: 768px) {
  .components {
    margin-top: 50px;
  }
  .components .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .components .swiper-slide {
    display: contents;
  }
  .components_card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
  }
}

@media (min-width: 1024px) {
  .components .swiper-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .components_card {
    padding: 40px 30px;
  }
}





/* ==================================================
  tpos
================================================== */

.tpos {
  display: flex;
  flex-direction: column;
  gap: 20px 30px;
  padding: 30px 20px;
  outline: 1px solid #000;
  outline-offset: -1px;
}

@media (min-width: 768px) {
  .tpos {
    flex-direction: row;
    padding: 35px;
  }
  .tpos_title {
    flex-shrink: 0;
  }
}

@media (min-width: 1280px) {
  .tpos {
    padding-left: 60px;
  }
}





/* ==================================================
  merit
================================================== */

.merit {
  padding: 30px 20px;
  color: #fff;
  background: var(--Power-Storm);
}
.merit_list {
  margin-top: 30px;
}
.merit_list .font_body {
  margin-top: 10px;
}

@media (max-width: 1023px) {
  .merit_list > li + li {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #fff;
  }
}

@media (min-width: 768px) {
  .merit {
    padding: 40px 30px;
  }
  .merit_list {
    margin-top: 40px;
  }
}

@media (min-width: 1024px) {
  .merit {
    padding: 40px 0;
  }
  .merit_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
  .merit_list > li {
    position: relative;
    padding: 10px 30px;
  }
  .merit_list > li:not(:first-child)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: #fff;
  }
}





/* ==================================================
  portfolio
================================================== */

.portfolio {
  margin-top: 30px;
}
.portfolio_cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 767px) {
  .portfolio_cta {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .portfolio {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
  }
}





/* ==================================================
  size_and_complexity
================================================== */

.size_and_complexity {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 30px;
}

@media (max-width: 767px) {
  .size_and_complexity .list_basic + .list_basic {
    margin-top: 8px;
  }
}

@media (min-width: 768px) {
  .size_and_complexity {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  .size_and_complexity .list_basic {
    font-size: 18px;
  }
}





/* ==================================================
  example
================================================== */

.example {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  margin-top: 40px;
}
.example_card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
  position: relative;
}
.example_card::before,
.example_card::after {
  position: absolute;
  background: #000;
}
.example_image {
  text-align: center;
}
.example_title {
  margin-top: 20px;
}
.example_desc {
  margin-top: 10px;
}
.example_desc .list_basic {
  font-size: 14px;
}
.example_desc .list_basic li + li {
  margin-top: 4px;
}
.example_cta {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .example_card:not(:first-child)::before {
    content: "";
    top: -30px;
    left: 0;
    width: 100%;
    height: 1px;
  }
}

@media (min-width: 768px) {
  .example {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .example_card:nth-child(2n+3)::before {
    content: "";
    width: 200%;
    height: 1px;
    top: -30px;
    left: 0;
  }
  .example_card:nth-child(odd)::after {
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    right: -30px;
  }
}

@media (min-width: 1280px) {
  .example {
    grid-template-columns: repeat(4, 1fr);
  }
  .example_card:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 100%;
    top: 0;
    right: -30px;
  }
}





/* ==================================================
  linkBox
================================================== */

.linkBox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
.linkBox_card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
  padding: 30px 20px;
  border: 1px solid #000;
}
.linkBox_card.dark {
  color: #fff;
  background: #000;
}
.linkBox_desc {
  margin-top: 15px;
}
.linkBox_cta {
  margin-top: 30px;
}

@media (min-width: 768px) {
  .linkBox {
    grid-template-columns: repeat(2, 1fr);
  }
  .linkBox_card {
    padding: 40px 30px;
  }
}





/* ==================================================
  inquiry
================================================== */

.inquiry {
  padding: 30px 20px;
  color: #fff;
  background: #000;
}
.inquiry_detail_tel {
  color: #fff !important;
  font-size: 30px;
  line-height: 1;
  text-decoration: none !important;
}
.inquiry_detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}
.inquiry_detail_image {
  text-align: center;
}

@media (min-width: 480px) {
  .inquiry_detail {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .inquiry_detail_image {
    flex-shrink: 0;
  }
}

@media (min-width: 768px) {
  .inquiry {
    padding: 40px 30px;
    text-align: center;
  }
  .inquiry_detail {
    gap: 30px;
    text-align: left;
  }
  .inquiry_detail_tel {
    font-size: 40px;
  }
}





/* ==================================================
  hybrid_ai_committee
================================================== */

.hybrid_ai_committee {
  color: #fff;
  background: #000;
}
.hybrid_ai_committee_content {
  padding: 30px 20px;
}
.hybrid_ai_committee_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 300px;
}

@media (min-width: 768px) {
  .hybrid_ai_committee_content {
    padding: 40px 30px;
  }
}

@media (min-width: 1024px) {
  .hybrid_ai_committee {
    position: relative;
  }
  .hybrid_ai_committee_image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
  .hybrid_ai_committee_content {
    position: relative;
    z-index: 1;
    width: 50%;
    padding: 50px 40px;
  }
}





/* ==================================================
  data_scientists
================================================== */

/* ----------------------------------------
  data_scientists_top
---------------------------------------- */

.data_scientists_top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.data_scientists_top_video video {
  object-fit: cover;
  vertical-align: bottom;
  width: 100%;
  min-height: 300px;
}

@media (min-width: 1280px) {
  .data_scientists_top {
    grid-template-columns: 1fr 67.48688524590164%;
    gap: 30px;
  }
  .data_scientists_top_content {
    padding-top: 30px;
    border-bottom: 1px solid #000;
  }
  .data_scientists_top_video video {
    min-height: 500px;
  }
}



/* ----------------------------------------
  data_scientists_chara
---------------------------------------- */

.data_scientists_chara {
  display: grid;
  grid-template-columns: 1fr;
  padding: 10px 0;
}
.data_scientists_chara_card {
  padding: 30px 0;
}
.data_scientists_chara_desc {
  margin-top: 10px;
}
.data_scientists_chara_cta {
  margin-top: 30px;
}

@media (max-width: 1023px) {
  .data_scientists_chara_card + .data_scientists_chara_card {
    border-top: 1px solid #000;
  }
}

@media (min-width: 1024px) {
  .data_scientists_chara {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 60px;
    padding: 40px 0;
  }
  .data_scientists_chara_card {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    position: relative;
  }
  .data_scientists_chara_card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 0;
    right: -30px;
    width: 1px;
    height: 100%;
    background: #000;
  }
}





/* ==================================================
  casestudy
================================================== */

.casestudy {
  position: relative;
}
.casestudy_video {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.casestudy_video video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.casestudy_content {
  position: relative;
  z-index: 1;
  padding: 70px 20px 40px;
  color: #fff;
  text-align: center;
}
.casestudy_link {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 50px 0 20px;
  text-align: left;
  border-bottom: 1px solid #fff;
}
.casestudy_link_cta {
  align-self: flex-end;
}

@media (min-width: 768px) {
  .casestudy_content {
    max-width: 1280px;
    padding: 150px 30px 60px;
    margin: 0 auto;
  }
  .casestudy_link {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    padding-top: 120px;
  }
  .casestudy_link_cta {
    white-space: nowrap;
  }
}





/* ==================================================
  partner
================================================== */

.partner_list {
  display: grid;
  grid-template-columns: 1fr;
}
.partner_card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 20px;
}
.partner_image {
  text-align: center;
}
.partner_desc > * + * {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .partner_list {
    margin-top: 60px;
  }
  .partner_card:nth-child(n+2) {
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #000;
  }
}

@media (min-width: 768px) {
  .partner_list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
  }
  .partner_card {
    padding-top: 60px;
  }
}

@media (min-width: 1280px) {
  .partner_list {
    grid-template-columns: repeat(3, 1fr);
  }
}





/* ==================================================
  support_list
================================================== */

.support_list {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}
.support_card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 20px;
}
.support_image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .support_list {
    grid-template-columns: repeat(3, 1fr);
  }
}





/* ==================================================
  document
================================================== */

/* ----------------------------------------
  document_list
---------------------------------------- */

.document_list {
  display: grid;
  gap: 40px;
  margin-top: 40px;
}
.document_card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 20px;
}
.document_image img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .document_list {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* ----------------------------------------
  document_list2
---------------------------------------- */

.document_list2 {
  display: grid;
  gap: 16px;
  margin-top: 40px;
}
.document_list2 > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  row-gap: 0;
  transition: .2s;
  padding: 20px;
  background: #eee;
  border-radius: 10px;
}
.document_list2 > li:hover {
  color: #fff;
  background: #000;
}
.document_list2 h3 {
  margin-bottom: 10px;
}
.document_list2 .p_button {
  justify-self: flex-start;
  margin-top: 15px;
}

@media screen and (min-width: 480px) {
  .document_list2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 1024px) {
  .document_list2 {
    grid-template-columns: repeat(4, 1fr);
  }
}





/* ==================================================
  disclaimer
================================================== */

.disclaimer {
  padding: 30px 0;
  font-size: 13px;
  border-top: 1px solid #000;
}
.disclaimer h2 {
  font-size: 16px;
  line-height: 1.1;
}
.disclaimer h2 + * {
  margin-top: 20px;
}
.disclaimer p + p,
.disclaimer h2 ~ * + * {
  margin-top: 16px;
}
.disclaimer ol {
  counter-reset: disclaimer_num;
}
.disclaimer ol > li {
  position: relative;
  padding-left: 3em;
}
.disclaimer ol > li:nth-child(n+2) {
  margin-top: 16px;
}
.disclaimer ol > li::before {
  counter-increment: disclaimer_num;
  content: "\203B" counters(disclaimer_num, "-") "";
  position: absolute;
  left: 0;
}

@media (min-width: 768px) {
  .disclaimer {
    padding: 40px 0;
  }
}
