/* ==================================================
  base
================================================== */

.main_content {
  overflow-x: clip;
  font-size: 16px;
  line-height: 1.375;
  overflow-wrap: anywhere;
}
.main_content img {
  height: auto;
}
.main_content video {
  vertical-align: bottom;
  max-width: 100%;
}



/* ----------------------------------------
  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
---------------------------------------- */

@media (min-width: 1024px) {
  .page_top {
    padding: 0;
    border-top: none;
  }
  .page_top_text {
    display: none;
  }
}





/* ==================================================
  common
================================================== */

/* ----------------------------------------
  heading
---------------------------------------- */

.xl, .xxl,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: bold;
  line-height: 1.1;
}
.xl, .xxl,
.h1, .h2 {
  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;
}



/* ----------------------------------------
  sup
---------------------------------------- */

.main_content sup {
  vertical-align: top;
  position: relative;
  top: .7em;
  font-size: 10px;
  line-height: 0;
}



/* ----------------------------------------
  i
---------------------------------------- */

.main_content i {
  color: #b1b1b1;
  font-style: 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;
}



/* ----------------------------------------
  ws_button
---------------------------------------- */

.ws_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;
}
.ws_button_arrow {
  overflow: hidden;
  position: relative;
  transition: .3s;
  width: 19px;
  height: 16px;
}
.ws_button_arrow::after {
  content: "";
  position: absolute;
  right: 3px;
  transition: .3s;
  width: 100%;
  height: 100%;
  background: url(images/ws_button_arrow.png) no-repeat center center;
}
.ws_button:hover .ws_button_arrow::after {
  right: 0;
}
.ws_button_text {
  position: relative;
  color: #000;
}
.ws_button_text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  transition: width .2s linear;
  width: 0;
  height: 1px;
  background: #000;
}
.ws_button:hover .ws_button_text::after {
  width: 100%;
}

/* white */
.ws_button.is_light .ws_button_text {
  color: #fff;
}
.ws_button.is_light .ws_button_arrow {
  filter: invert(1);
}


/* 矢印＆エッジ -------------------- */

@media (min-width: 1024px) {
  .ws_button.is_edge {
    overflow: hidden;
    align-items: flex-end;
    position: relative;
    min-height: 52px;
    padding-right: 60px;
  }
  .ws_button.is_edge::before {
    content: "";
    position: absolute;
    right: 3px;
    transition: .3s;
    width: 100%;
    height: 100%;
    background: url(images/ws_button_edge.png) no-repeat top right;
  }
  .ws_button.is_edge:hover::before {
    right: 0;
  }
  .ws_button.is_edge .ws_button_text {
    line-height: 1;
  }
  .ws_button.is_edge .ws_button_text::after {
    content: none;
  }

  /* white */
  .ws_button.is_light.is_edge::before {
    filter: invert(1);
  }
}


/* list_basicで使う場合はmin-heightをなくす -------------------- */

.list_basic .ws_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;
}



/* ----------------------------------------
  section
---------------------------------------- */

.section {
  max-width: 1280px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 768px) {
  .section {
    padding-right: 30px;
    padding-left: 30px;
  }
}



/* ----------------------------------------
  title
---------------------------------------- */

.title {
  text-align: center;
}



/* ----------------------------------------
  subtitle
---------------------------------------- */

.subtitle {
  padding-bottom: 16px;
  margin-bottom: 30px;
  border-bottom: 1px solid #000;
}

@media (min-width: 768px) {
  .subtitle {
    padding-bottom: 20px;
  }
}



/* ----------------------------------------
  desc
---------------------------------------- */

.desc {
  font-size: 16px;
}
.title * + .desc {
  margin-top: 40px;
}

@media (min-width: 768px) {
  .desc {
    font-size: 22px;
  }
}



/* ----------------------------------------
  text
---------------------------------------- */

.font_body {
  font-size: 16px;
}
.caption {
  font-size: 16px;
}
.cta_style {
  font-size: 16px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .font_body {
    font-size: 18px;
  }
}



/* ----------------------------------------
  bg_grad
---------------------------------------- */

.bg_grad {
  position: relative;
}
.bg_grad::after {
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 200px;
  background-image: linear-gradient(180deg, #d9e3e6, transparent);
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .bg_grad::after {
    max-height: 300px;
  }
}

@media screen and (min-width: 1280px) {
  .bg_grad::after {
    max-height: 560px;
  }
}



/* ----------------------------------------
  media_row
---------------------------------------- */

.media_row {
  display: flex;
  flex-direction: column;
}
.media_row_image img,
.media_row_image video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.media_row_content {
  padding: 30px 0;
}
.media_row_content .caption {
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .media_row_content .caption {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .media_row {
    flex-direction: row;
  }
  .media_row_image {
    width: 50%;
  }
  .media_row_image img,
  .media_row_image video {
    min-height: 500px;
  }
  .media_row_content {
    align-self: center;
    width: 50%;
    padding: 0 0 0 50px;
  }
  /* 画像を右側に表示する */
  .media_row.is_img_r {
    flex-direction: row-reverse;
  }
  .media_row.is_img_r .media_row_content {
    padding: 0 50px 0 0;
  }
}



/* ----------------------------------------
  media_box_row
---------------------------------------- */

.media_box_row {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.media_box_row_content {
  padding: 30px 20px;
  outline: 1px solid #000;
  outline-offset: -1px;
}
.media_box_row_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

@media (min-width: 768px) {
  .media_box_row {
    flex-direction: row;
    column-gap: 30px;
  }
  .media_box_row_content,
  .media_box_row_image {
    flex: 0 0 calc(50% - 15px);
  }
  .media_box_row_content {
    display: flex;
    align-items: center;
    padding: 40px 30px;
  }
  .media_box_row_image img {
    min-height: 420px;
  }
}

@media (min-width: 1280px) {
  .media_box_row_content {
    padding: 50px 65px;
  }
}



/* ----------------------------------------
  media_column
---------------------------------------- */

.media_column {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
}
.media_column_image img,
.media_column_image video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.media_column_title {
  margin-top: 28px;
}
.media_column_desc {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .media_column {
    flex-direction: row;
    column-gap: 30px;
  }
  .media_column_card {
    flex: 1;
  }
}



/* ----------------------------------------
  icon_box
---------------------------------------- */

.icon_box {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 40px 20px;
  color: #fff;
  background: #000;
}

@media (min-width: 768px) {
  .icon_box {
    flex-direction: row;
    align-items: center;
    padding: 70px 30px;
  }
  .icon_box_image {
    flex-shrink: 0;
    width: 38.36206896551724%;
    text-align: center;
  }
}

@media (max-width: 1219px) {
  .icon_box_image img {
    width: auto;
    max-height: 150px;
  }
}

@media (min-width: 1280px) {
  .icon_box {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}



/* ----------------------------------------
  media_box
---------------------------------------- */

.media_box {
  position: relative;
}
.media_box::after {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
}
.media_box_content {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 30px 20px;
}
.media_box_cta {
  padding-bottom: 16px;
  margin-top: auto;
}
.media_box_image {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.media_box_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .media_box {
    height: 100%;
  }
  .media_box_content {
    padding: 30px;
  }
}


/* is_dark -------------------- */

.media_box.is_dark {
  color: #fff;
  background: #000;
}


/* is_unborder -------------------- */

.media_box.is_unborder::after {
  content: none;
}





/* ==================================================
  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;
}
.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;
    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;
  }
}



/* ----------------------------------------
  レイアウトシフト防止
---------------------------------------- */

@media (max-width: 1023px) {
  body.anchor_navi_fixed {
    padding-top: 60px;
  }
}

@media (min-width: 1024px) {
  body.anchor_navi_fixed {
    padding-top: 74px;
  }
}



/* ----------------------------------------
  ドロップダウンボタン
---------------------------------------- */

.anchor_navi_dropdown {
  position: relative;
  display: inline-block;
}
.anchor_navi_dropdown button {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 5px 24px;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  background: #000;
}
.anchor_navi_dropdown button::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>');
  filter: invert(1);
}
.anchor_navi_dropdown.is_show button::after {
  transform: rotate(180deg);
}
.anchor_navi_dropdown_content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1;
  width: 100%;
  background: #fff;
  box-shadow: 0 12px 12px 0 rgb(0 0 0 / .2);
}
.anchor_navi_dropdown.is_show .anchor_navi_dropdown_content {
  display: block;
}
.anchor_navi_dropdown_content a {
  display: block;
  padding: 10px 20px;
  color: #000 !important;
  text-decoration: none !important;
}
.anchor_navi_dropdown_content a:hover {
  background: #f5f5f5;
}



/* ----------------------------------------
  secondary_navi
---------------------------------------- */

.secondary_navi {
  transition: .5s;
  z-index: 101;
}

@media (max-width: 1023px) {
  .anchor_navi_fixed .secondary_navi {
    transform: translateY(-62px);
  }
}

@media (min-width: 1024px) {
  .anchor_navi_fixed .secondary_navi {
    transform: translateY(-72px);
  }
}





/* ==================================================
  intro
================================================== */

.intro {
  padding: 40px 0 30px;
}
.intro_title {
  padding: 10px 0;
}
.intro_content {
  padding-top: 25px;
}
.intro_name {
  padding: 8px 0;
}
.intro_desc {
  padding: 20px 0;
}
.intro_cta {
  padding-bottom: 16px;
  margin-top: 16px;
}
.intro_cta_text {
  margin-bottom: 16px;
  font-size: 18px;
}
.intro_cta_wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (min-width: 768px) {
  .intro {
    padding: 40px 0 30px;
  }
  .intro_title {
    padding: 15px 0;
  }
  .intro_content {
    padding-bottom: 15px;
  }
  .intro_cta_text {
    font-size: 20px;
  }
}

@media (min-width: 1280px) {
  .intro {
    display: flex;
  }
  .intro_title {
    width: 50%;
    padding-right: 15px;
  }
  .intro_content {
    width: 50%;
    padding-left: 15px;
  }
  .intro_desc {
    padding: 25px 0;
  }
}





/* ==================================================
  hero
================================================== */

.hero {
  position: relative;
}
.hero_image {
  max-width: 1920px;
  margin: 0 auto;
  text-align: center;
}
.hero_image img {
  object-fit: cover;
  min-height: 360px;
}
.hero .section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}

@media (min-width: 768px) {
  .hero_image img {
    height: 800px;
  }
}

@media (max-width: 1279px) {
  .hero_name {
    display: none;
  }
}

@media (min-width: 1280px) {
  .hero .section {
    display: flex;
    align-items: center;
  }
  .hero .section > div {
    width: 33.3333333333%;
  }
  .hero_name {
    padding-left: 30px;
  }
  .hero_name h2 {
    transform: scale(-1);
    writing-mode: vertical-rl;
  }
}



/* ----------------------------------------
  動画再生ボタン
---------------------------------------- */

.hero_video {
  position: relative;
}
.hero_video a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 60px;
  height: 60px;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
}
.hero_video a:link,
.hero_video a:visited,
.hero_video a:hover {
  color: #000;
  text-decoration: none;
}

@media (max-width: 767px) {
  .hero_video a::after {
    content: "";
    height: 12px;
    aspect-ratio: cos(30deg);
    clip-path: polygon(0 0,100% 50%,0 100%);
    background: #000;
  }
  .hero_video a span {
    display: none;
  }
}

@media (min-width: 768px) {
  .hero_video a {
    width: 130px;
    height: 130px;
  }
}

@media (min-width: 1024px) {
  .hero_video a {
    transition: .3s;
  }
  .hero_video a:hover {
    width: 200px;
    height: 200px;
  }
  .hero_video a::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: .3s;
    width: 130px;
    height: 130px;
    border: 1px solid #fff;
    border-radius: 50%;
  }
  .hero_video a:hover::after {
    width: 400px;
    height: 400px;
  }
}





/* ==================================================
  feature_list
================================================== */

.feature_list {
  display: grid;
}
.feature_list .cta_style {
  color: #5b5a5e;
}
.feature_item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}
.feature_header {
  padding-bottom: 30px;
}
.feature_header:has(.cta_style) {
  padding-bottom: 20px;
}
.feature_title {
  padding-bottom: 16px;
}
.feature_desc:has(.cta_style) {
  padding-top: 10px;
}
.feature_cta {
  margin-top: 20px;
}

@media (max-width: 767px) {
  .feature_header .caption,
  .feature_desc .caption {
    font-size: 14px;
  }
}

@media (min-width: 768px) {
  .feature_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature_header {
    padding-bottom: 70px;
  }
  .feature_title {
    padding-bottom: 20px;
  }
  .feature_desc:has(.cta_style) {
    padding: 15px 0;
  }
  .feature_cta {
    margin-top: 40px;
  }
}


/* 枠線と余白 -------------------- */

.feature_item {
  position: relative;
  padding: 30px 0;
}
.feature_item::before,
.feature_item::after {
  position: absolute;
  top: 0;
  background: #5b5a5e;
}
.feature_item::before {
  left: 0;
  height: 1px;
}
.feature_item::after {
  right: 0;
  width: 1px;
  height: 100%;
}

@media (max-width: 767px) {
  .feature_item::before {
    content: "";
    width: 100%;
  }
}

@media (min-width: 768px) {
  .feature_item {
    padding: 40px 30px;
  }
}

@media (min-width: 1280px) {
  .feature_item {
    padding: 40px;
  }
}


/* 2カラム -------------------- */

@media (min-width: 768px) {
  .is_2col .feature_item {
    padding: 40px 30px;
  }
  .is_2col .feature_item:nth-child(2n + 3)::before {
    content: "";
    width: 200%;
  }
  .is_2col .feature_item:nth-child(odd)::after {
    content: "";
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .is_2col:not(.is_rows) .feature_item:nth-child(odd) {
    padding-left: 0;
  }
  .is_2col:not(.is_rows) .feature_item:nth-child(even) {
    padding-right: 0;
  }
  .is_2col:not(.is_rows) .feature_item:nth-child(-n + 2) {
    padding-top: 0;
  }
}

@media (min-width: 1280px) {
  .is_2col .feature_item:nth-child(odd) {
    padding-left: 0;
  }
  .is_2col .feature_item:nth-child(even) {
    padding-right: 0;
  }
  .is_2col .feature_item:nth-child(-n + 2) {
    padding-top: 0;
  }
}


/* 3カラム -------------------- */

@media (min-width: 768px) and (max-width: 1279px) {
  .is_3col:not(.is_rows) .feature_item:nth-child(odd) {
    padding-left: 0;
  }
  .is_3col:not(.is_rows) .feature_item:nth-child(even) {
    padding-right: 0;
  }
  .is_3col:not(.is_rows) .feature_item:nth-child(-n + 2) {
    padding-top: 0;
  }
  .is_3col .feature_item:nth-child(2n + 3)::before {
    content: "";
    width: 200%;
  }
  .is_3col .feature_item:nth-child(odd)::after {
    content: "";
  }
}

@media (min-width: 1280px) {
  .feature_list.is_3col {
    grid-template-columns: repeat(3, 1fr);
  }
  .is_3col .feature_item:nth-child(3n + 1) {
    padding-left: 0;
  }
  .is_3col .feature_item:nth-child(3n) {
    padding-right: 0;
  }
  .is_3col .feature_item:nth-child(-n + 3) {
    padding-top: 0;
  }
  .is_3col .feature_item:nth-child(3n + 4)::before {
    content: "";
    width: 300%;
  }
  .is_3col .feature_item:not(:nth-child(3n))::after {
    content: "";
  }
}


/* 4カラム -------------------- */

@media (min-width: 768px) {
  .is_4col .feature_item {
    padding: 40px 30px;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .is_4col:not(.is_rows) .feature_item:nth-child(odd) {
    padding-left: 0;
  }
  .is_4col:not(.is_rows) .feature_item:nth-child(even) {
    padding-right: 0;
  }
  .is_4col:not(.is_rows) .feature_item:nth-child(-n + 2) {
    padding-top: 0;
  }
  .is_4col .feature_item:nth-child(2n + 3)::before {
    content: "";
    width: 200%;
  }
  .is_4col .feature_item:nth-child(odd)::after {
    content: "";
  }
}

@media (min-width: 1280px) {
  .feature_list.is_4col {
    grid-template-columns: repeat(4, 1fr);
  }
  .is_4col .feature_item:nth-child(4n + 1) {
    padding-left: 0;
  }
  .is_4col .feature_item:nth-child(4n) {
    padding-right: 0;
  }
  .is_4col .feature_item:nth-child(-n + 4) {
    padding-top: 0;
  }
  .is_4col .feature_item:nth-child(4n + 5)::before {
    content: "";
    width: 400%;
  }
  .is_4col .feature_item:not(:nth-child(4n))::after {
    content: "";
  }
}


/* is_rows（1280pxの時に1行） -------------------- */

@media (max-width: 1279px) {
  .feature_list.is_rows {
    grid-template-columns: 1fr !important;
  }
  .is_rows .feature_title {
    padding-bottom: 10px;
  }
  .is_rows .feature_item {
    padding: 30px 0;
    border-top: 1px solid #000;
  }
  .is_rows .feature_item::before,
  .is_rows .feature_item::after {
    content: none !important;
  }
}

@media (min-width: 1280px) {
  .is_rows .feature_item {
    padding-top: 15px !important;
    padding-bottom: 15px;
  }
}





/* ==================================================
  spec_tab
================================================== */

.spec_tab_trigger {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 0;
  width: 100%;
  max-width: max-content;
  margin-right: auto;
  margin-left: auto;
}
.spec_tab_button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 1 186px; /* タブの最大幅 */
  appearance: none;
  position: relative;
  z-index: 2;
  transition: .2s;
  height: 100%;
  min-height: 82px;
  padding: 17px 24px;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  border-radius: 60px;
}
.spec_tab_button.is_active {
  color: #fff;
}

@media (max-width: 767px) {
  .spec_tab_trigger {
    gap: 10px;
  }
  .spec_tab_button {
    outline: 1px solid #000;
    outline-offset: -1px;
  }
  .spec_tab_button.is_active {
    background: #000;
  }
  .spec_tab_indicator {
    display: none;
  }
}

@media (min-width: 768px) {
  .spec_tab_trigger {
    background: #eee;
    border-radius: 60px;
  }
  .spec_tab_button {
    transition: color .3s;
    min-height: 90px;
    padding: 20px 50px;
  }
  .spec_tab_button:not(.is_active):hover {
    color: #464646;
  }
  .spec_tab_indicator {
    display: block;
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 1;
    transition: all .3s ease;
    background-color: #000;
    border-radius: 60px;
  }
}



/* ----------------------------------------
  spec_tab_panel
---------------------------------------- */

.spec_tab_panel {
  display: none;
  padding-top: 40px;
}
.spec_tab_panel.is_active {
  display: block;
}



/* ----------------------------------------
  spec_model_list
---------------------------------------- */

.spec_model_list > li {
  padding: 30px 0;
  border-top: 1px solid #000;
}
.spec_link_list {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}
.spec_link_list a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 40px;
  font-weight: bold;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .spec_link_list {
    flex-direction: row-reverse;
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .spec_model_list > li {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .spec_link_list {
    gap: 30px;
  }
  .spec_link_list > li {
    white-space: nowrap;
  }
}


/* spec_link_text -------------------- */

.spec_link_text {
  line-height: 1.2;
}
.spec_link_text:link,
.spec_link_text:visited,
.spec_link_text:hover {
  color: #000;
  text-decoration: none;
}

@media screen and (min-width: 1024px) {
  .spec_link_text {
    position: relative;
    transition: .2s;
  }
  .spec_link_text::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    transition: width .2s linear;
    width: 0;
    height: 1px;
    background: #ccc;
  }
  .spec_link_text:hover::after {
    width: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .spec_link_text::after {
    background: #000;
  }
}





/* ==================================================
  ポート
================================================== */

/* ----------------------------------------
  tab
---------------------------------------- */

.port_viewer .tab_trigger {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.port_viewer .tab_trigger > li {
  padding: 5px 0 8px;
  color: #b0b0b1;
  font-weight: bold;
  text-align: center;
  border-bottom: 1px solid #b0b0b1;
  transition: .2s;
}
.port_viewer .tab_trigger > li:hover,
.port_viewer .tab_trigger > li.tab_current {
  color: #000;
  border-bottom-color: #000;
}
.port_viewer .tab_content_area {
  margin-top: 40px;
}

@media screen and (min-width: 1280px) {
  .port_viewer .tab_content_area {
    margin-top: 80px;
  }
}



/* ----------------------------------------
  port_image
---------------------------------------- */

.port_image {
  text-align: center;
}



/* ----------------------------------------
  port_data
---------------------------------------- */

.port_data {
  margin-top: 45px;
}
.port_data_list {
  counter-reset: num;
  display: grid;
}
.port_data_list > li {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 8px 0;
  font-weight: bold;
  border-bottom: 1px solid #5b5a5e;
}
.port_data_list > li::before {
  counter-increment: num;
  content: counter(num) ".";
  flex-shrink: 0;
  padding-right: 5px;
}
.port_data_list > li sup {
  height: 1em;
}

@media screen and (min-width: 768px) {
  .port_data_list {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }
}

@media (min-width: 1280px) {
  .port_data {
    margin-top: 60px;
  }
  .port_data_list {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* ----------------------------------------
  is_2col
---------------------------------------- */

.is_2col .port_data_list > li {
  align-items: flex-start;
  min-height: auto;
  padding: 12px 0;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .is_2col .port_data_wrapper {
    display: flex;
    column-gap: 40px;
  }
  .is_2col .port_image,
  .is_2col .port_data {
    flex: 1;
  }
  .is_2col .port_data {
    margin-top: 0;
  }
  .is_2col .port_data_list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}





/* ==================================================
  headline
================================================== */

.headline_title {
  padding: 10px 0;
}
.headline_content {
  padding-bottom: 10px;
}

@media (min-width: 768px) {
  .headline_title {
    padding: 15px 0;
  }
  .headline_content {
    padding: 25px 0 15px;
  }
}

@media (max-width: 1279px) {
  .headline_title h2 {
    padding-bottom: 30px;
  }
  .headline_content .desc {
    padding-bottom: 8px;
  }
}

@media (min-width: 1280px) {
  .headline {
    display: flex;
    align-items: center;
  }
  .headline_title {
    width: 60%;
    padding: 15px 15px 15px 0;
  }
  .headline_content {
    width: 40%;
    padding: 15px 0 15px 15px;
  }
}





/* ==================================================
  slides_carousel
================================================== */

/* ----------------------------------------
  layout
---------------------------------------- */

.slides_carousel {
  padding: 30px 0;
}

@media (min-width: 1280px) {
  .slides_carousel {
    margin-left: calc(50% - 610px);
  }
  .slides_carousel_inner {
    display: flex;
  }
  .slides_carousel_trigger {
    flex-shrink: 0;
    width: 315px;
  }
  .slides_carousel_wrapper {
    flex-grow: 1;
  }
  .slides_carousel_panel_inner {
    display: flex;
  }
  .slides_carousel_content {
    flex-shrink: 0;
    width: 507px;
  }
  .slides_carousel_image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
  }
}



/* ----------------------------------------
  slides_carousel_trigger
---------------------------------------- */

.slides_carousel_trigger {
  display: flex;
}
.slides_carousel_button {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: .2s;
  flex: 0 0 auto;
  appearance: none;
  min-height: 50px;
  padding: 14px 19px;
  color: #000;
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  line-height: 20px;
  background: #eee;
  border: 1px solid #eee;
  border-radius: 25px;
}
.slides_carousel_button:hover,
.slides_carousel_button.is_active {
  color: #fff;
  background: #000;
  border-color: #000;
}
.slides_carousel_button::before {
  content: "";
  flex-shrink: 0;
  align-self: flex-start;
  position: relative;
  top: 6px;
  transition: .2s;
  width: 0;
  height: 8px;
  background: #fff;
  border-radius: 50%;
}
.slides_carousel_button.is_active::before {
  width: 8px;
  margin-right: 10px;
}

@media (max-width: 1279px) {
  .slides_carousel_trigger {
    overflow-x: auto;
    padding: 0 0 20px 20px;
    margin-bottom: 20px;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch; /* iOSのスムーズスクロール */
    scrollbar-width: none; /* Firefoxでスクロールバーを隠す */
  }
  .slides_carousel_trigger::-webkit-scrollbar {
    display: none; /* Chrome, Safariでスクロールバーを隠す */
  }
  .slides_carousel_button {
    margin-right: 10px;
  }
}

@media (min-width: 1280px) {
  .slides_carousel_trigger {
    flex-direction: column;
    align-items: flex-start;
    padding-right: 30px;
    margin-top: 135px;
  }
  .slides_carousel_button {
    padding: 16px 24px;
    margin-bottom: 10px;
  }
}



/* ----------------------------------------
  slides_carousel_panel
---------------------------------------- */

.slides_carousel_panel {
  display: none;
}
.slides_carousel_panel.is_active {
  display: block;
}
.slides_carousel_content {
  padding: 0 20px;
}
.slides_carousel_title {
  margin: 20px 0;
}
.slides_carousel_title h3 {
  font-size: 36px;
  line-height: 1.1;
}
.slides_carousel_desc {
  margin: 20px 0 40px;
}

@media (min-width: 768px) {
  .slides_carousel_content {
    padding: 0 30px;
  }
}

@media (max-width: 1279px) {
  .slides_carousel_image img {
    width: 100%;
  }
}

@media (min-width: 1280px) {
  .slides_carousel_content {
    padding: 0;
  }
  .slides_carousel_title {
    margin: 135px 0 0;
  }
  .slides_carousel_title h3 {
    font-size: 60px;
  }
  .slides_carousel_desc {
    margin: 40px 0 48px;
    font-size: 18px;
  }
}



/* ----------------------------------------
  アニメーション
---------------------------------------- */

/* ボタン -------------------- */

@media (min-width: 1280px) {
  .slides_carousel_button {
    transform: translateX(-100%);
    transition: transform .5s ease-out;
  }
  .is_animated .slides_carousel_button {
    transform: translateX(0);
  }
  .slides_carousel_button:nth-child(1) { transition-delay: .1s; }
  .slides_carousel_button:nth-child(2) { transition-delay: .2s; }
  .slides_carousel_button:nth-child(3) { transition-delay: .3s; }
  .slides_carousel_button:nth-child(4) { transition-delay: .4s; }
  .slides_carousel_button:nth-child(5) { transition-delay: .5s; }
}


/* テキスト -------------------- */

.slides_carousel_content {
  overflow: hidden;
}
.slides_carousel_title h3,
.slides_carousel_desc p {
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .3s ease-out, transform .3s ease-out;
}
.is_active.is_animated .slides_carousel_title h3 {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .1s;
}
.is_active.is_animated .slides_carousel_desc p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .25s;
}


/* 画像 -------------------- */

.slides_carousel_image {
  overflow: hidden;
}
.slides_carousel_image img {
  display: block;
  width: 100%;
  height: auto;
  transform: translateX(100%);
  transition: transform .5s ease-out;
}
.is_active.is_animated .slides_carousel_image img {
  transform: translateX(0);
}





/* ==================================================
  tab_slider
================================================== */

/* ----------------------------------------
  tab_slider_trigger
---------------------------------------- */

.tab_slider_trigger {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; /* iOSのスムーズスクロール */
  scrollbar-width: none; /* Firefoxでスクロールバーを隠す */
}
.tab_slider_trigger::-webkit-scrollbar {
  display: none; /* Chrome, Safariでスクロールバーを隠す */
}
.tab_slider_button {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 auto;
  appearance: none;
  height: 100%;
  min-height: 82px;
  padding: 17px 24px;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
.tab_slider_button.is_active {
  color: #fff;
}

@media (max-width: 767px) {
  .tab_slider_button {
    margin: 0 5px;
    border: 1px solid #000;
    border-radius: 60px;
  }
  .tab_slider_button.is_active {
    background: #000;
  }
  .tab_slider_indicator {
    display: none;
  }
}

@media (min-width: 768px) {
  .tab_slider_trigger {
    position: relative;
    z-index: 0;
    width: 100%;
    max-width: max-content;
    margin: 0 auto;
    background: #eee;
    border-radius: 60px;
  }
  .tab_slider_button {
    position: relative;
    z-index: 2;
    transition: color .3s;
    min-height: 92px;
    padding: 20px 40px;
  }
  .tab_slider_button:first-child {
    margin-left: auto;
  }
  .tab_slider_button:last-of-type {
    margin-right: auto;
  }
  .tab_slider_button:not(.is_active):hover {
    color: #464646;
  }
  .tab_slider_indicator {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all .3s ease;
    height: 100%;
    background-color: #000;
    border-radius: 60px;
  }
}



/* ----------------------------------------
  tab_slider_panel
---------------------------------------- */

.tab_slider_panel {
  display: none;
}
.tab_slider_panel.is_active {
  display: block;
}


/* 背景画像 -------------------- */

@media (min-width: 768px) {
  .tab_slider_panel {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
  }
  .tab_slider_panel.is_business_professionals {
    background-image: url(images/product_v3/tab_slider_business_professionals.jpg);
  }
  .tab_slider_panel.is_project_managers {
    background-image: url(images/product_v3/tab_slider_project_managers.jpg);
  }
  .tab_slider_panel.is_product_designers {
    background-image: url(images/product_v3/tab_slider_product_designers.jpg);
  }
  .tab_slider_panel.is_creative_media_and_entertainment_pros {
    background-image: url(images/product_v3/tab_slider_creative_media_and_entertainment_pros.jpg);
  }
  .tab_slider_panel.is_steam_students {
    background-image: url(images/product_v3/tab_slider_steam_students.jpg);
  }
}


/* tab_slider_content -------------------- */

.tab_slider_content {
  max-width: 700px;
  padding: 60px 0 30px;
  margin: 0 auto;
  text-align: center;
}

@media (min-width: 768px) {
  .tab_slider_content {
    padding: 70px 30px 40px;
  }
}

@media (min-width: 1280px) {
  .tab_slider_content {
    max-width: 750px;
    padding-top: 140px;
  }
}


/* tab_slider_desc -------------------- */

.tab_slider_desc {
  font-weight: bold;
}


/* tab_slider_logo -------------------- */

.tab_slider_logo {
  padding-top: 20px;
}
.tab_slider_logo_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.tab_slider_notes {
  margin-top: 15px;
  color: #5b5a5e;
  font-size: 12px;
}

@media (max-width: 767px) {
  .tab_slider_logo_list li {
    width: 45px;
  }
}

@media (min-width: 768px) {
  .tab_slider_logo {
    padding-top: 60px;
  }
}

@media (min-width: 1280px) {
  .tab_slider_logo {
    padding-top: 80px;
  }
}


/* tab_slider_cta -------------------- */

.tab_slider_cta {
  padding-top: 25px;
}





/* ==================================================
  wxp
================================================== */

.wxp {
  position: relative;
  color: #fff;
}
.wxp_content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
.wxp_content_inner {
  padding: 40px 0;
}
.wxp_image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.wxp_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .wxp_content {
    display: flex;
    align-items: center;
    min-height: 500px;
    padding: 0 30px;
  }
  .wxp_content_inner {
    width: 60%;
    max-width: 440px;
    padding: 60px 0;
  }
}

@media (min-width: 1280px) {
  .wxp_content {
    padding: 0 60px;
  }
  .wxp_content_inner {
    max-width: 470px;
  }
}





/* ==================================================
  z_boost
================================================== */

.z_boost {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  padding: 10px;
  color: #fff;
  background: #000;
}
.z_boost_content {
  padding: 20px 10px 0;
}
.z_boost_image {
  padding: 0 10px;
}
.z_boost_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .z_boost {
    flex-direction: row;
    padding: 15px;
  }
  .z_boost_content {
    align-self: center;
    width: 40%;
    padding: 15px 0 15px 15px;
  }
  .z_boost_image {
    width: 60%;
    padding: 10px 0 10px 30px;
  }
}

@media (min-width: 1280px) {
  .z_boost {
    flex-direction: row-reverse;
  }
  .z_boost_content {
    padding: 40px 25px 40px 0px;
  }
  .z_boost_image {
    padding: 0 40px 0 0;
  }
}





/* ==================================================
  z_boost2
================================================== */

.z_boost2 {
  color: #fff;
  background: #000;
}
.z_boost2_content_inner {
  padding: 40px 20px 20px;
}
.z_boost2_image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .z_boost2 {
    position: relative;
  }
  .z_boost2_content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
    min-height: 500px;
    padding: 0 30px;
  }
  .z_boost2_content_inner {
    width: 60%;
    max-width: 440px;
    padding: 60px 0;
  }
  .z_boost2_image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }
}

@media (min-width: 1280px) {
  .z_boost2_content {
    padding: 0 60px;
  }
  .z_boost2_content_inner {
    max-width: 470px;
  }
}





/* ==================================================
  HP Zに関するその他の情報
================================================== */

.other_info {
  display: grid;
}
.other_info_card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  padding-bottom: 40px;
}
.other_info_image a {
  display: block;
  overflow: hidden;
  width: 100%;
}
.other_info_image a img {
  display: block;
  transition: .4s;
  object-fit: cover;
  aspect-ratio: 47 / 28;
  width: 100%;
  height: 100%;
}
.other_info_image a:hover img {
  transform: scale(1.1);
  opacity: 1;
}
.other_info_category {
  padding: 20px 0 30px;
}
.other_info_category .cta_style {
  display: flex;
  gap: 8px;
}
.other_info_category .cta_style::before {
  content: "";
  flex-shrink: 0;
  position: relative;
  top: 7px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000;
}
.other_info_desc {
  padding: 30px 0;
}

@media (min-width: 768px) {
  .other_info {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 30px;
  }
  .other_info_category {
    padding: 40px 0;
  }
  .other_info_desc {
    padding-bottom: 50px;
  }
}

@media (min-width: 1280px) {
  .other_info {
    grid-template-columns: repeat(4, 1fr);
  }
  /* 子要素が5個の場合 */
  .other_info:has(> :nth-child(5)):not(:has(> :nth-child(6))) {
    grid-template-columns: repeat(5, 1fr);
  }
  .other_info:has(> :nth-child(5)):not(:has(> :nth-child(6))) .other_info_image a img {
    aspect-ratio: 220 / 163;
  }
}





/* ==================================================
  免責条項
================================================== */

.ws_footnotes .acco_trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.2;
  border-top: 1px solid #000;
}
.ws_footnotes .acco_trigger::after {
  content: "";
  width: 12px;
  height: 7px;
  background: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 7"><path d="M0 10.658L1.28 12 7 6 1.28 0 0 1.337 4.51 6z" transform="rotate(90 6 6)"></path></svg>') no-repeat center center;
}
.ws_footnotes .acco_trigger.acco_open::after {
  transform: rotate(180deg);
}
.ws_footnotes .acco_content {
  font-size: 14px;
}
.ws_footnotes .acco_content > * + * {
  margin-top: 20px;
}
.ws_footnotes .acco_content a:link,
.ws_footnotes .acco_content a:visited,
.ws_footnotes .acco_content a:hover {
  color: #000;
  text-decoration: underline;
}
.ws_footnotes .acco_content a:hover {
  background: rgb(0 0 0 / .1);
}
.ws_footnotes_list {
  counter-reset: ws_footnotes_num;
}
.ws_footnotes_list > li {
  position: relative;
  padding-left: 3em;
}
.ws_footnotes_list > li + li {
  margin-top: 1em;
}
.ws_footnotes_list > li::before {
  counter-increment: ws_footnotes_num;
  content: "\203B" counters(ws_footnotes_num, "-") "";
  position: absolute;
  left: 0;
}

@media (min-width: 768px) {
  .ws_footnotes .acco_trigger {
    padding: 30px 0;
  }
}
