@charset "UTF-8";
/* --------------------------------------------------
 ※※※※※※※※※※※※※※※※※※※※※※※※
 TOPページ用
 このファイルはsassでコンパイルされています
 以下の内容を変更したい場合は構成するscssファイルを
 ご確認ください
 ※※※※※※※※※※※※※※※※※※※※※※※※
-------------------------------------------------- */
@import "./common.css";
/* ------------------------------
  colorbox
------------------------------ */
@media screen and (min-width: 769px) {
  /*
      Colorbox Core Style:
      The following CSS is consistent between example themes and should not be altered.
  */
  #colorbox,
  #cboxOverlay,
  #cboxWrapper {
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
  }
  #cboxWrapper {
    max-width: none;
  }
  #cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
  }
  #cboxMiddleLeft,
  #cboxBottomLeft {
    clear: left;
  }
  #cboxContent {
    position: relative;
  }
  #cboxLoadedContent {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  #cboxTitle {
    margin: 0;
  }
  #cboxLoadingOverlay,
  #cboxLoadingGraphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #cboxPrevious,
  #cboxNext,
  #cboxClose,
  #cboxSlideshow {
    cursor: pointer;
  }
  .cboxPhoto {
    display: block;
    max-width: none;
    margin: auto;
    float: left;
    border: 0;
    -ms-interpolation-mode: bicubic;
  }
  .cboxIframe {
    display: block;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    border: 0;
  }
  #colorbox,
  #cboxContent,
  #cboxLoadedContent {
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }
  /*
      User Style:
      Change the following styles to modify the appearance of Colorbox.  They are
      ordered & tabbed in a way that represents the nesting of the generated HTML.
  */
  #cboxOverlay {
    opacity: 0.9;
    background: #000;
    filter: alpha(opacity=90);
  }
  #colorbox {
    outline: 0;
  }
  #cboxContent {
    margin-top: 20px;
  }
  .cboxIframe {
    background: #fff;
  }
  #cboxError {
    padding: 50px;
    border: 1px solid #ccc;
  }
  #cboxLoadedContent {
    border-radius: 20px;
    background: #fff;
  }
  #cboxTitle {
    position: absolute;
    top: -20px;
    left: 0;
    color: #ccc;
  }
  #cboxCurrent {
    position: absolute;
    top: -20px;
    right: 0;
    color: #ccc;
  }
  /* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
  #cboxPrevious,
  #cboxNext,
  #cboxSlideshow,
  #cboxClose {
    width: auto;
    margin: 0;
    padding: 0;
    overflow: visible;
    border: 0;
    background: none;
  }
  /* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
  #cboxPrevious:active,
  #cboxNext:active,
  #cboxSlideshow:active,
  #cboxClose:active {
    outline: 0;
  }
  #cboxSlideshow {
    position: absolute;
    top: -20px;
    right: 90px;
    color: #fff;
  }
  #cboxPrevious {
    position: absolute;
    top: 50%;
    left: 5px;
    margin-top: -32px;
  }
  #cboxPrevious:hover {
    background-position: bottom left;
  }
  #cboxNext {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -32px;
  }
  #cboxNext:hover {
    background-position: bottom right;
  }
  #cboxClose {
    display: block;
    position: absolute;
    top: 5px;
    right: 5px;
  }
}
/* ------------------------------
  top-hero
------------------------------ */
@media screen and (min-width: 769px) {
  .top-hero {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    min-width: 1300px;
    background: url("../../../assets/images/index/hero_bg.jpg");
    background-size: cover;
  }
  .top-hero__catch {
    width: 650px;
    padding: 150px 0 130px;
  }
  .top-hero__catch img {
    width: 100%;
  }
}
@media screen and (max-width: 768.9px) {
  .top-hero {
    display: flex;
    position: relative;
    top: -50px;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background: url("../../../assets/images/index/hero_bg.jpg");
    background-size: cover;
  }
  .top-hero__catch {
    width: 90%;
    padding: 150px 0 120px;
  }
  .top-hero__catch img {
    width: 100%;
  }
}
/* ------------------------------
  top-about
------------------------------ */
@media screen and (min-width: 769px) {
  .top-about {
    position: absolute;
    z-index: 0;
    bottom: -80px;
    left: 50%;
    transform: translate(-50%, 0);
  }
  .top-about--sp {
    display: none;
  }
  .top-about__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 165px;
    height: 165px;
    transition: 0.3s all;
    border-radius: 85px;
    background: rgba(0, 0, 0, 0.1);
  }
  .top-about__link span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    transition: 0.3s all;
    border-radius: 45px;
    background: rgba(0, 0, 0, 0.2);
  }
  .top-about__link:hover {
    transition: 0.3s all;
    background: #3e4c59;
  }
  .top-about__link:hover span {
    background: #9aa5b1;
  }
  .top-about__link:hover .top-about__text {
    color: #fff;
  }
  .top-about__link:hover .top-about__animate {
    display: none;
  }
  .top-about__ico {
    display: block;
    z-index: 100;
    width: 45px;
    height: 45px;
  }
  .top-about__text {
    position: absolute;
    top: 120px;
    left: 50%;
    margin: 10px 0 0;
    transform: translate(-50%, 0);
    transition: 0.3s all;
    color: #1f2933;
    font-size: 11px;
    font-weight: bold;
  }
  .top-about__animate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: sdb 3s infinite;
  }
}
@media screen and (min-width: 769px) and (-ms-high-contrast: none) {
  .top-about__animate {
    animation: 3s;
  }
}
@media screen and (max-width: 768.9px) {
  .top-about {
    display: flex;
    position: absolute;
    bottom: -80px;
    left: 50%;
    align-items: center;
    justify-content: center;
    width: 165px;
    height: 165px;
    transform: translateX(-50%);
    transition: 0.3s;
    border-radius: 85px;
    background: rgba(0, 0, 0, 0.1);
  }
  .top-about--pc {
    display: none;
  }
  .top-about__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 165px;
    height: 165px;
    transition: 0.3s all;
    border-radius: 85px;
    background: rgba(0, 0, 0, 0.1);
  }
  .top-about__link span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 85px;
    height: 85px;
    border-radius: 45px;
    background: rgba(0, 0, 0, 0.2);
  }
  .top-about__ico {
    display: block;
    width: 45px;
    height: 45px;
  }
  .top-about__text {
    position: absolute;
    top: 130px;
    left: 50%;
    width: 100%;
    transform: translateX(-50%);
    color: #1f2933;
    font-size: 11px;
    font-weight: bold;
    text-align: center;
  }
  .top-about__animate {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: sdb 3s infinite;
  }
}
@keyframes sdb {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 0;
    box-shadow: 0 0 0 80px rgba(0, 0, 0, 0.1);
  }
  100% {
    opacity: 0;
  }
}
/* ------------------------------
  top-access
------------------------------ */
@media screen and (min-width: 769px) {
  .top-access {
    min-width: 1300px;
    padding: 80px 0;
  }
  .top-access__map {
    width: 1200px;
    height: 300px;
    margin: 0 auto;
  }
  #access_map {
    height: 100%;
  }
}
@media screen and (max-width: 768.9px) {
  .top-access {
    margin: 40px 0;
  }
  .top-access__map {
    width: 100%;
    height: 300px;
  }
  #access_map {
    height: 100%;
  }
}
/* ------------------------------
  top-blog
------------------------------ */
@media screen and (min-width: 769px) {
  .top-blog {
    z-index: 100;
    width: 100%;
    margin: -150px 0 0;
    padding: 40px 80px;
    border: 5px solid #383236;
    background: #fff;
    text-align: center;
  }
  .top-blog__title {
    margin: 0 0 20px;
    color: #03449e;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: bold;
  }
  .top-blog__caption {
    margin: 0;
    font-size: 16px;
  }
  .top-blog__box {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 0;
  }
  .top-blog__box::after {
    display: none;
  }
  .top-blog__item {
    width: 230px;
    overflow: hidden;
    transition: 0.3s all;
    border-radius: 6px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  }
  .top-blog__item img {
    width: 100%;
    height: 100%;
  }
  .top-blog__item:hover {
    transform: scale(1.05, 1.05);
    transition: 0.3s all;
    box-shadow: 6px 6px 8px rgba(0, 0, 0, 0.3);
  }
}
@media screen and (max-width: 768.9px) {
  .top-blog {
    box-sizing: border-box;
    width: 100%;
    margin: 40px 0 0;
    padding: 40px 20px;
    border: 5px solid #383236;
    text-align: center;
  }
  .top-blog__title {
    margin: 0 0 20px;
    color: #03449e;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: bold;
  }
  .top-blog__caption {
    margin: 0;
    font-size: 14px;
  }
  .top-blog__box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 40px 0 -10px;
  }
  .top-blog__box::after {
    display: none;
  }
  .top-blog__item {
    width: calc((100% - 10px) / 2);
    margin: 0 0 10px;
    overflow: hidden;
    border-radius: 6px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  }
  .top-blog__item img {
    width: 100%;
  }
}
/* ------------------------------
  top-button-area
------------------------------ */
@media screen and (min-width: 769px) {
  .top-button-area {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: 40px 0 0;
  }
}
@media screen and (max-width: 768.9px) {
  .top-button-area {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 40px 0 0;
  }
}
/* ------------------------------
  top-button
------------------------------ */
@media screen and (min-width: 769px) {
  .top-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 46px;
    margin: 0 0 15px;
    transition: 0.3s all;
    border-radius: 25px;
    font-weight: bold;
  }
  .top-button:hover {
    transition: 0.3s all;
    text-decoration: none;
  }
  .top-button--web {
    border: 2px solid #1f2933;
    background: #1f2933;
    color: #fff;
  }
  .top-button--web:hover {
    border: 2px solid #1f2933;
    background: #fff;
    color: #1f2933;
  }
  .top-button--game {
    border: 2px solid #fff;
    background: #fff;
    color: #1f2933;
  }
  .top-button--game:hover {
    border: 2px solid #fff;
    background: #1f2933;
    color: #fff;
  }
}
@media screen and (max-width: 768.9px) {
  .top-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 50px;
    margin: 0 0 10px;
    border-radius: 25px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    font-weight: bold;
  }
  .top-button--web {
    border: 2px solid #1f2933;
    background: #1f2933;
    color: #fff;
  }
  .top-button--game {
    background: #fff;
    color: #1f2933;
  }
}
/* ------------------------------
  top-case
------------------------------ */
@media screen and (min-width: 769px) {
  .top-case {
    position: relative;
    top: -85px;
    left: -30px;
  }
  .top-case__slide {
    width: calc(100% + 60px);
  }
  .top-case__item {
    width: 180px;
    margin: 0 10px;
    overflow: hidden;
    transition: 0.3s all;
    border-radius: 6px;
    outline: none;
    background: #fff;
    color: #1f2933;
  }
  .top-case__item:last-child {
    margin: 0;
  }
  .top-case__image {
    height: 120px;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
  }
  .top-case__image img {
    width: 100%;
  }
  .top-case__caption {
    height: 90px;
    padding: 15px 20px;
  }
  .top-case__title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
  }
  .top-case__text {
    margin: 0;
    font-size: 11px;
  }
  .slick-track {
    padding-bottom: 10px;
  }
  .slick-prev::before,
  .slick-next::before {
    content: "";
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
  }
  .slick-prev::before {
    background: url("../../../assets/images/common/arrow_left.png") no-repeat center center/50% 100%;
  }
  .slick-next::before {
    background: url("../../../assets/images/common/arrow_right.png") no-repeat center center/50% 100%;
  }
}
@media screen and (max-width: 768.9px) {
  .top-case {
    position: relative;
    left: -15px;
    width: calc(100% + 30px);
  }
  .top-case__item {
    z-index: -1;
    width: 200px;
    margin: 0 10px;
    border-radius: 6px;
    outline: none;
    background: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  }
  .top-case__image {
    height: 120px;
    overflow: hidden;
    border-radius: 6px 6px 0 0;
  }
  .top-case__image img {
    width: 100%;
  }
  .top-case__caption {
    height: 90px;
    padding: 15px 20px;
  }
  .top-case__title {
    margin: 0 0 10px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
  }
  .top-case__text {
    margin: 0;
    font-size: 11px;
    line-height: 1.4;
  }
  .slick-track {
    padding-bottom: 10px;
  }
  .slick-prev,
  .slick-next {
    position: absolute;
  }
  .slick-prev::before,
  .slick-next::before {
    content: "";
    z-index: 1000;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
  }
  .slick-prev::before {
    background: url("../../../assets/images/common/arrow_left.png") no-repeat center center/50% 100%;
  }
  .slick-next::before {
    background: url("../../../assets/images/common/arrow_right.png") no-repeat center center/50% 100%;
  }
}
/* ------------------------------
  top-download
------------------------------ */
@media screen and (min-width: 769px) {
  .top-download__title {
    margin: 0;
    font-size: 20px;
  }
  .top-download__box {
    display: flex;
    margin: 10px 0 0;
    gap: 0 20px;
  }
  .top-download__item {
    flex: 0 1 33.3333333333%;
    padding: 10px;
    transition: 0.3s all;
    border-radius: 6px;
    background: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
  }
  .top-download__item:hover {
    transform: scale(1.05, 1.05);
    transition: 0.3s all;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
  }
  .top-download__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #000;
    gap: 0 15px;
  }
  .top-download__image img {
    width: 140px;
    height: 80px;
    object-fit: cover;
  }
}
@media screen and (max-width: 768.9px) {
  .top-download {
    margin: 40px 0 0;
  }
  .top-download__title {
    margin: 0;
    font-size: 20px;
  }
  .top-download__box {
    display: flex;
    flex-direction: column;
    margin: 10px 0 0;
    gap: 15px 0;
  }
  .top-download__item {
    padding: 10px;
    transition: 0.3s all;
    border-radius: 6px;
    background: #fff;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
    font-size: 14px;
  }
  .top-download__item:hover {
    transform: scale(1.05, 1.05);
    transition: 0.3s all;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
  }
  .top-download__link {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    color: #000;
    gap: 0 15px;
  }
  .top-download__image img {
    width: 140px;
    height: 80px;
    object-fit: cover;
  }
}
/* ------------------------------
  top-game
------------------------------ */
@media screen and (min-width: 769px) {
  .top-game {
    display: flex;
    z-index: 1;
    justify-content: space-between;
    width: 100%;
    margin: -20px 0 0;
  }
  .top-game::after {
    display: none;
  }
  .top-game__item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 210px;
    margin: 0 20px 0 0;
    padding: 20px 0;
    background: rgba(62, 76, 89, 0.8);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  }
  .top-game__item:last-child {
    margin: 0;
  }
  .top-game__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 0 20px;
    border-radius: 45px;
    background: #3e4c59;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  }
  .top-game__title {
    width: 100%;
    margin: 0 0 20px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
  }
  .top-game__caption {
    margin: 0;
    color: #9aa5b1;
    font-size: 12px;
  }
}
@media screen and (max-width: 768.9px) {
  .top-game {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 40px 0 0;
  }
  .top-game::after {
    display: none;
  }
  .top-game__item {
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: calc((100% - 10px) / 2);
    margin: 0 0 10px;
    padding: 20px;
    background: rgba(62, 76, 89, 0.8);
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  .top-game__item:last-child {
    margin: 0;
  }
  .top-game__ico {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    margin: 0 0 20px;
    border-radius: 45px;
    background: #3e4c59;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  }
  .top-game__title {
    width: 100%;
    margin: 0 0 20px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
  }
  .top-game__caption {
    margin: 0;
    color: #9aa5b1;
    font-size: 12px;
  }
}
/* ------------------------------
  top-headline
------------------------------ */
@media screen and (min-width: 769px) {
  .top-headline {
    margin: 0 0 30px;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    text-align: center;
  }
  .top-headline-01 {
    color: #3e4c59;
  }
  .top-headline-02 {
    color: #fff;
  }
}
@media screen and (max-width: 768.9px) {
  .top-headline {
    margin: 0 0 30px;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    text-align: center;
  }
  .top-headline-01 {
    color: #3e4c59;
  }
  .top-headline-02 {
    color: #fff;
  }
  .top-headline-03 {
    color: #fbb03b;
  }
}
/* ------------------------------
  top-important
------------------------------ */
@media screen and (min-width: 769px) {
  .top-important {
    width: 100%;
    min-width: 1300px;
    margin: 120px 0 -80px;
    text-align: center;
  }
  .top-important__link {
    display: inline-flex;
    position: relative;
    align-items: center;
    min-height: 30px;
    padding: 5px 40px 5px 60px;
    transition: 0.3s all;
    border-radius: 20px;
    background: url("../../../assets/images/common/ico_business.png") no-repeat 20px center/30px, url("../../../assets/images/common/arrow_black.png") no-repeat right 20px center/10px;
    color: #000;
    font-size: 16px;
    line-height: 30px;
  }
  .top-important__link:hover {
    background-color: #f5f5f5;
  }
  .top-important__date {
    margin-right: 10px;
  }
}
@media screen and (max-width: 768.9px) {
  .top-important {
    margin: 80px 15px -50px;
  }
  .top-important__link {
    display: block;
    position: relative;
    align-items: center;
    padding: 5px 20px 5px 50px;
    border: 1px solid #f5f5f5;
    background: url("../../../assets/images/common/ico_business.png") no-repeat 10px center/30px, url("../../../assets/images/common/arrow_black.png") no-repeat right 10px center/10px;
    color: #000;
  }
  .top-important__date {
    display: block;
  }
}
/* ------------------------------
  top-info
------------------------------ */
@media screen and (min-width: 769px) {
  .top-info {
    min-width: 1300px;
    background: #f5f5f5;
  }
  .top-info__inner {
    width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
  }
}
@media screen and (max-width: 768.9px) {
  .top-info {
    margin: 40px 0 0;
    background: #f5f5f5;
  }
  .top-info__inner {
    box-sizing: border-box;
    width: 100%;
    padding: 40px 15px;
  }
}
/* ------------------------------
  top-media
------------------------------ */
@media screen and (min-width: 769px) {
  .top-media {
    min-width: 1300px;
    padding: 80px 0;
  }
  .top-media__list {
    display: flex;
    justify-content: center;
    width: 1200px;
    margin: 0 auto;
  }
  .top-media__list ::after {
    content: none;
  }
  .top-media__item {
    width: 280px;
    margin-right: 40px;
  }
  .top-media__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .top-media__item:last-child {
    margin-right: 0;
  }
  .top-media__logo {
    display: block;
    transition: 0.3s all;
    border: 1px solid #f5f5f5;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
    text-align: center;
  }
  .top-media__logo:hover {
    transform: scale(1.05, 1.05);
    transition: 0.3s all;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  }
  .top-media__caption {
    margin: 20px 0 0;
    font-size: 14px;
    text-align: center;
  }
}
@media screen and (max-width: 768.9px) {
  .top-media {
    margin: 40px 0 0;
  }
  .top-media__list {
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 0 15px;
  }
  .top-media__list::after {
    content: none;
  }
  .top-media__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: calc((100% - 10px) / 2);
    margin: 0 0 20px;
  }
  .top-media__item:nth-last-child(-n+2) {
    margin: 0;
  }
  .top-media__logo {
    display: block;
    max-height: 80px;
    box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.2);
  }
  .top-media__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .top-media__caption {
    margin: 10px 0 0;
    font-size: 12px;
    text-align: center;
  }
}
/* ------------------------------
  top-modal
------------------------------ */
@media screen and (min-width: 769px) {
  .top-modal {
    display: none;
  }
  .top-modal__contents {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1050px;
    min-width: 1000px;
    border-radius: 20px;
    background: #fff;
  }
  .top-modal__object {
    position: relative;
  }
  .top-modal__object::before {
    content: "";
    position: absolute;
    top: -60px;
    left: -65px;
    width: 600px;
    height: 600px;
    background: url("../../../assets/images/index/modal_bg.png") no-repeat center center/100% 100%;
  }
  .top-modal__bubble {
    position: absolute;
  }
  .top-modal__bubble--01 {
    top: 47px;
    left: 40px;
    width: 120px;
  }
  .top-modal__bubble--02 {
    top: 25px;
    left: 340px;
    width: 160px;
  }
  .top-modal__bubble--03 {
    top: 151px;
    left: 396px;
    width: 130px;
  }
  .top-modal__bubble--04 {
    top: 288px;
    left: 352px;
    width: 100px;
  }
  .top-modal__bubble--05 {
    top: 348px;
    left: 444px;
    width: 80px;
  }
  .top-modal__bubble--06 {
    top: 440px;
    left: 330px;
    width: 80px;
  }
  .top-modal__bubble--07 {
    top: 338px;
    left: 116px;
    width: 90px;
  }
  .top-modal__bubble--08 {
    top: 434px;
    left: 87px;
    width: 180px;
  }
  .top-modal__bubble--09 {
    top: 264px;
    left: 10px;
    width: 120px;
  }
  .top-modal__bubble--09 .top-modal__txt::after {
    left: 40px;
  }
  .top-modal__txt {
    display: block;
    position: relative;
    top: 0;
    width: 100%;
    padding: 12px 15px;
    transition: 0.3s;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.05);
    color: #1f2933;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }
  .top-modal__txt::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 15px;
    width: 0;
    height: 0;
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: #fff transparent transparent;
    opacity: 0.85;
  }
  .top-modal__txt:hover {
    top: -3px;
    transform: scale(1.05, 1.05);
  }
  .top-modal__orb {
    display: flex;
    position: absolute;
    z-index: 100;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: 0.3s;
    border-radius: 20px;
  }
  .top-modal__orb span {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    text-indent: -9999px;
  }
  .top-modal__orb:hover {
    transform: scale(1.15, 1.15);
  }
  .top-modal__orb--orb01 {
    top: 99px;
    left: 43px;
    background-color: rgba(199, 13, 65, 0.15);
  }
  .top-modal__orb--orb01 span {
    background: #c70d41;
  }
  .top-modal__orb--orb02 {
    top: 77px;
    left: 343px;
    background-color: rgba(199, 13, 65, 0.15);
  }
  .top-modal__orb--orb02 span {
    background: #c70d41;
  }
  .top-modal__orb--orb03 {
    top: 203px;
    left: 399px;
    background-color: rgba(243, 86, 39, 0.15);
  }
  .top-modal__orb--orb03 span {
    background: #f35627;
  }
  .top-modal__orb--orb04 {
    top: 340px;
    left: 354px;
    background-color: rgba(243, 86, 39, 0.15);
  }
  .top-modal__orb--orb04 span {
    background: #f35627;
  }
  .top-modal__orb--orb05 {
    top: 401px;
    left: 446px;
    background-color: rgba(251, 176, 59, 0.15);
  }
  .top-modal__orb--orb05 span {
    background: #fbb03b;
  }
  .top-modal__orb--orb06 {
    top: 492px;
    left: 333px;
    background-color: rgba(251, 176, 59, 0.15);
  }
  .top-modal__orb--orb06 span {
    background: #fbb03b;
  }
  .top-modal__orb--orb07 {
    top: 390px;
    left: 120px;
    background-color: rgba(24, 152, 29, 0.15);
  }
  .top-modal__orb--orb07 span {
    background: #18981d;
  }
  .top-modal__orb--orb08 {
    top: 486px;
    left: 90px;
    background-color: rgba(24, 152, 29, 0.15);
  }
  .top-modal__orb--orb08 span {
    background: #18981d;
  }
  .top-modal__orb--orb09 {
    top: 317px;
    left: 38px;
    background-color: rgba(102, 51, 204, 0.15);
  }
  .top-modal__orb--orb09 span {
    background: #63c;
  }
  .top-modal__info {
    width: 400px;
    padding: 0 50px 0 0;
  }
  .top-modal__title {
    position: relative;
    padding: 60px 0 0;
    color: #03449e;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: bold;
  }
  .top-modal__title::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 1px;
    background: #03449e;
  }
  .top-modal__catch {
    margin: 30px 0;
    font-size: 20px;
    font-weight: bold;
    line-height: 2;
  }
  .top-modal__desc {
    display: flex;
    position: relative;
    box-sizing: border-box;
    align-items: center;
    width: 400px;
    height: 50px;
    margin: 0 0 20px;
    padding: 0 0 0 50px;
    transition: 0.3s;
    border-radius: 25px;
    background-color: rgba(0, 0, 0, 0.05);
    color: #1f2933;
    font-size: 14px;
    font-weight: bold;
  }
  .top-modal__desc:last-child {
    margin: 0;
  }
  .top-modal__desc::before {
    content: "";
    position: absolute;
    top: calc(50% - 15px);
    left: 10px;
    width: 30px;
    height: 30px;
    background: url("../../../assets/images/index/ico_appiritscube.svg") no-repeat center center/100% 100%;
  }
  .top-modal__desc:hover {
    transform: scale(1.05, 1.05);
  }
  .top-modal__link {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin: 50px 0;
    padding: 0 40px 0 0;
  }
  .top-modal__button {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 50px;
    overflow: hidden;
    transition: 0.3s;
    border: 2px solid #1f2933;
    background: #1f2933;
    color: #fff;
    font-family: Roboto, sans-serif;
    font-size: 18px;
  }
  .top-modal__button:first-child {
    margin: 0 20px 0 0;
  }
  .top-modal__button::after, .top-modal__button::before {
    content: "";
    position: absolute;
    transition: 0.3s;
  }
  .top-modal__button::before {
    top: calc(50% - 6px);
    right: 20px;
    width: 12px;
    height: 12px;
    background: url("../../../assets/images/common/arrow_white.png") no-repeat center center/100% 100%;
  }
  .top-modal__button::after {
    z-index: 1;
    top: 0;
    left: -9px;
    width: 0;
    height: 100%;
    transform: skewX(-15deg);
    background: #fff;
  }
  .top-modal__button span {
    position: relative;
    z-index: 2;
    transition: 0.3s;
  }
  .top-modal__button:hover span {
    color: #1f2933;
  }
  .top-modal__button:hover::before {
    z-index: 2;
    right: 10px;
    background: url("../../../assets/images/common/arrow_black.png") no-repeat center center/100% 100%;
  }
  .top-modal__button:hover::after {
    width: calc(100% + 18px);
  }
  #cboxClose {
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: url("../../../assets/images/common/ico_close.svg") no-repeat center center;
    text-indent: -9999px;
  }
}
@media screen and (max-width: 768.9px) {
  .top-modal {
    display: none;
  }
}
/* ------------------------------
  top-pref
------------------------------ */
@media screen and (min-width: 769px) {
  .top-perf {
    box-sizing: border-box;
    width: 1200px;
    min-width: 1300px;
    margin: 0 auto -50px;
    padding: 120px 50px 0;
    text-align: center;
  }
  .top-perf__list {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
  }
  .top-perf__item {
    display: flex;
    position: relative;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 19.2px);
    padding: 16px;
    transition: 0.3s all;
    border-radius: 8px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
    color: #1f2933;
    gap: 8px;
  }
  .top-perf__item::before, .top-perf__item::after {
    content: "";
    position: absolute;
  }
  .top-perf__item::before {
    right: 4px;
    bottom: 4px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: #cdd9e0;
  }
  .top-perf__item::after {
    right: 8px;
    bottom: 4px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    transition: 0.3s all;
    -webkit-mask-image: url("../../../assets/images/common/ico_arrow.svg");
    mask-image: url("../../../assets/images/common/ico_arrow.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: #1f2933;
  }
  .top-perf__item:hover {
    transform: scale(1.05);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    text-decoration: none;
  }
  .top-perf__image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 4px;
  }
  .top-perf__image img {
    width: 100%;
    height: auto;
  }
  .top-perf__title {
    font-size: 14px;
    font-weight: bold;
  }
  .top-perf__category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 8px;
  }
  .top-perf__tag {
    position: relative;
    padding-left: 6px;
    font-size: 10px;
  }
  .top-perf__tag::before {
    content: "#";
    position: absolute;
    top: 0;
    left: 0;
  }
  .top-perf__link {
    display: flex;
    justify-content: flex-end;
  }
  .top-perf__text-link {
    display: inline;
    position: relative;
    padding-right: 16px;
    color: #1f2933;
    font-size: 14px;
  }
  .top-perf__text-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    transition: 0.3s all;
    -webkit-mask-image: url("../../../assets/images/common/ico_arrow.svg");
    mask-image: url("../../../assets/images/common/ico_arrow.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: #1f2933;
  }
  .top-perf__text-link:hover {
    text-decoration: none;
    cursor: pointer;
  }
  .top-perf__text-link:hover::after {
    right: -8px;
  }
  .top-perf__link-box {
    display: none;
  }
  .top-perf__caption {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768.9px) {
  .top-perf {
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    padding: 70px 15px 0;
    text-align: center;
  }
  .top-perf__list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 12px;
  }
  .top-perf__item {
    display: flex;
    position: relative;
    box-sizing: border-box;
    flex-direction: column;
    align-items: center;
    width: calc((100% - 16px) / 2);
    padding: 16px;
    border-radius: 8px;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
    color: #1f2933;
    gap: 8px;
  }
  .top-perf__item::before, .top-perf__item::after {
    content: "";
    position: absolute;
  }
  .top-perf__item::before {
    right: 4px;
    bottom: 4px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    background: #cdd9e0;
  }
  .top-perf__item::after {
    right: 8px;
    bottom: 4px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    transition: 0.3s all;
    -webkit-mask-image: url("../../../assets/images/common/ico_arrow.svg");
    mask-image: url("../../../assets/images/common/ico_arrow.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: #1f2933;
  }
  .top-perf__image {
    width: 100%;
    height: auto;
    overflow: hidden;
    border-radius: 4px;
  }
  .top-perf__image img {
    width: 100%;
    height: auto;
  }
  .top-perf__title {
    font-size: 14px;
    font-weight: bold;
  }
  .top-perf__category {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2px 8px;
  }
  .top-perf__tag {
    position: relative;
    padding-left: 6px;
    font-size: 10px;
  }
  .top-perf__tag::before {
    content: "#";
    position: absolute;
    top: 0;
    left: 0;
  }
  .top-perf__link {
    display: none;
  }
  .top-perf__link-box {
    display: flex;
    position: relative;
    justify-content: center;
  }
  .top-perf__link-box::before {
    display: none;
  }
  .top-perf__link-box::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 12px;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    transition: 0.3s all;
    -webkit-mask-image: url("../../../assets/images/common/ico_arrow.svg");
    mask-image: url("../../../assets/images/common/ico_arrow.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: #1f2933;
  }
  .top-perf__caption {
    font-size: 14px;
    line-height: 1.5;
    text-align: left;
  }
}
/* ------------------------------
  top-pickup
------------------------------ */
@media screen and (min-width: 769px) {
  .top-pickup {
    display: flex;
    position: relative;
    flex-wrap: wrap;
    align-items: center;
    min-width: 1300px;
    margin: 40px 0 0;
    padding: 40px 0 160px;
    background: url("../../../assets/images/index/security_bg.jpg") no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
  }
  .top-pickup__inner {
    width: 1200px;
    margin: 0 auto;
  }
  .top-pickup__box {
    position: relative;
    padding: 40px 0;
  }
  .top-pickup__catch {
    width: 100%;
    margin: -10px 0 20px;
    font-size: 28px;
    font-weight: bold;
  }
  .top-pickup__caption {
    margin: 0 0 40px;
    font-size: 18px;
  }
  .top-pickup__list {
    display: flex;
    justify-content: center;
    margin: 0;
  }
  .top-pickup__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 200px;
    margin: 0 50px 0 0;
    border-radius: 50%;
    background: #003353;
    font-size: 16px;
    font-weight: bold;
  }
  .top-pickup__item:last-child {
    margin-right: 0;
  }
  .top-pickup__ico {
    width: 60px;
    height: 60px;
    margin-bottom: 10px;
  }
  .top-pickup__ico img {
    max-width: 100%;
    height: auto;
  }
  .top-pickup__text {
    letter-spacing: 0.03em;
    line-height: 1.35;
  }
  .top-pickup__number {
    margin: 0 -3px;
    font-size: 28px;
  }
  .top-pickup__bg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    pointer-events: none;
  }
  .top-pickup__bg img {
    width: 100%;
  }
}
@media screen and (max-width: 768.9px) {
  .top-pickup {
    position: relative;
    margin: 40px 0 0;
    background: url("../../../assets/images/index/security_bg.jpg") no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
  }
  .top-pickup__inner {
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 40px 15px 65px;
  }
  .top-pickup__box {
    position: relative;
  }
  .top-pickup__catch {
    width: 100%;
    margin: 0 0 30px;
    font-size: 20px;
    font-weight: bold;
  }
  .top-pickup__caption {
    margin: 0 0 40px;
    font-size: 14px;
  }
  .top-pickup__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: -10px -10px 0 0;
  }
  .top-pickup__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 160px;
    margin: 10px 10px 0 0;
    border-radius: 50%;
    background: #003353;
    font-size: 18px;
    font-weight: bold;
  }
  .top-pickup__ico {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
  }
  .top-pickup__ico img {
    max-width: 100%;
    height: auto;
  }
  .top-pickup__text {
    font-size: 14px;
    letter-spacing: 0;
    line-height: 1.35;
  }
  .top-pickup__number {
    font-size: 26px;
  }
  .top-pickup__bg {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    pointer-events: none;
  }
  .top-pickup__bg img {
    width: 100%;
  }
}
/* ------------------------------
  top-press
------------------------------ */
@media screen and (min-width: 769px) {
  .top-press {
    width: 100%;
    background: #fff;
  }
  .top-press th,
  .top-press td {
    border-bottom: 10px solid #f5f5f5;
  }
  .top-press th {
    position: relative;
    width: 120px;
    padding: 10px 20px 10px 40px;
    transition: 0.3s all;
    font-weight: normal;
  }
  .top-press th::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 10px;
    width: 40px;
    height: 40px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: url("../../../assets/images/common/ico_business.png") no-repeat center center/75%;
  }
  .top-press td {
    position: relative;
    padding: 10px 40px 10px 0;
    transition: 0.3s all;
  }
  .top-press td::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    transition: 0.3s all;
    background: url("../../../assets/images/common/arrow_black.png") no-repeat center center/100%;
  }
  .top-press td:hover::after {
    right: 10px;
    transition: 0.3s all;
    background: url("../../../assets/images/common/arrow_black.png") no-repeat center center/100%;
  }
  .top-press .clickable:hover th, .top-press .clickable:hover td {
    transition: 0.3s all;
    opacity: 0.4;
    cursor: pointer;
  }
}
@media screen and (min-width: 769px) and (-ms-high-contrast: none) {
  .top-press tr {
    display: table;
    position: relative;
    width: 1200px;
  }
  .top-press th::after {
    transform: translateY(-25px);
  }
  .top-press th,
  .top-press td {
    position: static;
  }
  .top-press td::after {
    transform: translateY(-10px);
  }
}
@media screen and (min-width: 769px) {
  @document url-prefix() {
    .top-press th::before,
    .top-press td::before {
      content: "";
      position: absolute;
      z-index: 100;
      bottom: -10px;
      left: 0;
      width: 120px;
      height: 10px;
      background: #f5f5f5;
    }
    .top-press th::before {
      width: 180px;
    }
    .top-press td::before {
      width: 1020px;
    }
  }
}
@media screen and (max-width: 768.9px) {
  .top-press {
    width: 100%;
  }
  .top-press th,
  .top-press td {
    border-bottom: 10px solid #f5f5f5;
    background: #fff;
  }
  .top-press th {
    width: 80px;
    padding: 10px 15px 10px 40px;
    background: #fff url("../../../assets/images/common/ico_business.png") no-repeat 10px center;
    font-size: 12px;
    font-weight: normal;
  }
  .top-press td {
    padding: 10px 15px 10px 0;
    font-size: 12px;
  }
}
/* ------------------------------
  top-recruit
------------------------------ */
@media screen and (min-width: 769px) {
  .top-recruit {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-width: 1300px;
    height: 400px;
    margin: 140px 0 0;
    background: url("../../../assets/images/index/recruit_bg.jpg") no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
  }
  .top-recruit__inner {
    width: 1200px;
    margin: 0 auto;
  }
  .top-recruit__catch {
    width: 100%;
    margin: 0 0 30px;
    font-family: Roboto, sans-serif;
    font-size: 48px;
  }
  .top-recruit__caption {
    margin: 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 768.9px) {
  .top-recruit {
    margin: 40px 0 0;
    background: url("../../../assets/images/index/recruit_bg.jpg") no-repeat;
    background-size: cover;
    color: #fff;
    text-align: center;
  }
  .top-recruit__inner {
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    padding: 40px 15px;
  }
  .top-recruit__catch {
    width: 100%;
    margin: 0 0 30px;
    font-size: 20px;
    font-weight: bold;
  }
  .top-recruit__caption {
    margin: 0;
    font-size: 14px;
  }
}
/* ------------------------------
  top-segment
------------------------------ */
@media screen and (min-width: 769px) {
  .top-segment {
    width: 100%;
    min-width: 1300px;
    overflow: hidden;
    /* 画像  */
  }
  .top-segment__bg {
    width: 100%;
  }
  .top-segment__bg img {
    width: 100%;
  }
  .top-segment__inner--web {
    padding: 0 0 20px;
    background: #f5f5f5;
  }
  .top-segment__inner--game {
    padding: 0 0 30px;
    background: #1f2933;
  }
  .top-segment__inner--team {
    background: #fff;
  }
  .top-segment__content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
  }
  .top-segment__sentence {
    width: 480px;
    margin: -50px 0 0;
    padding: 0 120px 0 0;
  }
  .top-segment__sentence--game {
    padding: 0 0 0 120px;
    text-align: right;
  }
  .top-segment__object {
    width: 600px;
  }
  .top-segment__object img {
    width: 100%;
  }
  .top-segment__image {
    position: relative;
    max-width: 600px;
    height: 600px;
    margin: 50px 0 0;
  }
  .top-segment__image img {
    width: 800px;
    height: 800px;
  }
  .top-segment__image--web {
    background: #fff;
  }
  .top-segment__image--web img {
    position: absolute;
    top: -90px;
    left: -60px;
  }
  .top-segment__image--game {
    margin: 0 0 0 20px;
    background: #3e4c59;
  }
  .top-segment__image--game img {
    position: absolute;
    top: 20px;
    right: 60px;
    width: 580px;
    height: 580px;
    transform: rotate(-30deg);
  }
  .top-segment__headline {
    margin: 0;
    border-bottom: 1px solid #03449e;
    color: #03449e;
    font-family: Roboto, sans-serif;
    font-size: 20px;
  }
  .top-segment__headline--game {
    border-bottom: 1px solid #fbb03b;
    color: #fbb03b;
  }
  .top-segment__heading {
    margin: 40px 0;
    font-size: 28px;
  }
  .top-segment__heading--game {
    color: #fff;
  }
  .top-segment__caption {
    margin: 0 0 40px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
  }
  .top-segment__caption--game {
    color: #9aa5b1;
  }
  .top-segment__button {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 480px;
    margin: 0 0 40px;
  }
  .top-segment__button::after {
    display: none;
  }
  .top-segment__button--game {
    flex-wrap: wrap;
  }
  .top-segment__button--game .top-button:first-child {
    margin: 0 10px 0 0;
  }
}
@media screen and (max-width: 768.9px) {
  .top-segment {
    overflow: hidden;
  }
  .top-segment__bg {
    width: 100%;
  }
  .top-segment__bg img {
    width: 100%;
  }
  .top-segment__inner--web {
    padding: 0 0 30px;
    background: #f5f5f5;
  }
  .top-segment__inner--game {
    padding: 0 0 30px;
    background: #1f2933;
  }
  .top-segment__inner--team {
    background: #fff;
  }
  .top-segment__content {
    display: flex;
    box-sizing: border-box;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 40px 15px 0;
  }
  .top-segment__sentence {
    width: 100%;
    padding: 0;
  }
  .top-segment__object {
    width: 100%;
  }
  .top-segment__headline {
    margin: 0;
    border-bottom: 1px solid #03449e;
    color: #03449e;
    font-family: Roboto, sans-serif;
    font-size: 16px;
  }
  .top-segment__headline--game {
    border-bottom: 1px solid #fbb03b;
    color: #fbb03b;
  }
  .top-segment__heading {
    margin: 40px 0;
    font-size: 20px;
  }
  .top-segment__heading--game {
    color: #fff;
  }
  .top-segment__caption {
    margin: 0 0 40px;
    color: #777;
    font-size: 14px;
    line-height: 1.8;
  }
  .top-segment__caption--game {
    color: #9aa5b1;
  }
  .top-segment__button {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
  }
  .top-segment__button::after {
    display: none;
  }
}
/* ------------------------------
  top-service
------------------------------ */
@media screen and (min-width: 769px) {
  .top-service {
    position: relative;
    min-width: 1300px;
    padding: 50px 0;
  }
  .top-service::before, .top-service::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    min-width: 1300px;
    height: 200px;
    background: url("../../../assets/images/index/service_bg-top.png") no-repeat center center/100%;
  }
  .top-service::before {
    top: -100px;
  }
  .top-service::after {
    bottom: -100px;
    transform: scaleY(-1);
  }
  .top-service__heading {
    position: relative;
    margin: 0 0 48px;
    font-size: 28px;
    text-align: center;
  }
  .top-service__heading::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    width: 72px;
    height: 2px;
    transform: translateX(-50%);
    background: #1f2933;
  }
  .top-service__inner {
    width: 100%;
    background: #ecedee;
  }
  .top-service__content {
    width: 1200px;
    margin: 0 auto;
  }
  .top-service__panel {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    padding-bottom: 56px;
  }
  .top-service__panel::after {
    display: none;
  }
  .top-service__item {
    display: grid;
    box-sizing: border-box;
    align-items: start;
    gap: 16px 0;
    width: calc((100% - 72px) / 4);
    padding: 16px;
    transition: 0.3s all;
    border-radius: 16px;
    background: #fff;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
    color: #1f2933;
  }
  .top-service__item:hover {
    top: 3px;
    left: 3px;
    transform: scale(1.05);
    transition: 0.3s all;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
  }
  .top-service__ico {
    order: 2;
    width: 100%;
    height: 60px;
    text-align: center;
  }
  .top-service__ico img {
    width: 60px;
    height: 100%;
  }
  .top-service__title {
    display: flex;
    align-items: center;
    justify-content: center;
    order: 1;
    width: 100%;
    height: 54px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }
  .top-service__caption {
    order: 3;
    width: 100%;
    padding: 0 8px;
    font-size: 16px;
  }
  .top-service__category-box {
    padding-bottom: 56px;
  }
  .top-service__category-title {
    position: relative;
    margin: 0 0 20px;
    padding-left: 24px;
    font-size: 20px;
  }
  .top-service__category-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 30px;
    background: #1f2933;
  }
  .top-service__category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 40px;
  }
  .top-service__category-li {
    list-style: none;
  }
  .top-service__category-item {
    display: block;
    position: relative;
    padding-right: 16px;
    border-bottom: 1px solid transparent;
    color: #1f2933;
    font-size: 16px;
  }
  .top-service__category-item::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    transition: 0.3s all;
    background: #1f2933;
  }
  .top-service__category-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    transition: 0.3s all;
    -webkit-mask-image: url("../../../assets/images/common/ico_arrow.svg");
    mask-image: url("../../../assets/images/common/ico_arrow.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: #1f2933;
  }
  .top-service__category-item:hover {
    text-decoration: none;
    cursor: pointer;
  }
  .top-service__category-item:hover::before {
    width: calc(100% + 12px);
  }
  .top-service__category-item:hover::after {
    right: -8px;
  }
}
@media screen and (max-width: 768.9px) {
  .top-service {
    position: relative;
    margin-top: 40px;
    padding: 40px 0;
  }
  .top-service::before, .top-service::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 12vw;
    background: url("../../../assets/images/index/service_bg-top.png") no-repeat center center/100%;
  }
  .top-service::before {
    top: 0;
  }
  .top-service::after {
    bottom: 0;
    transform: scaleY(-1);
  }
  .top-service__heading {
    position: relative;
    margin: 0 0 32px;
    font-size: 20px;
    text-align: center;
  }
  .top-service__heading::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 40px;
    height: 2px;
    transform: translateX(-50%);
    background: #1f2933;
  }
  .top-service__inner {
    width: 100%;
    padding: 40px 0;
    background: #ecedee;
  }
  .top-service__content {
    box-sizing: border-box;
    width: 100%;
    padding: 0 15px;
  }
  .top-service__panel {
    padding-bottom: 24px;
  }
  .top-service__panel::after {
    display: none;
  }
  .top-service__item {
    display: grid;
    box-sizing: border-box;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
    padding: 12px 24px;
    border-radius: 8px;
    background: #fff;
    box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
    color: #1f2933;
  }
  .top-service__item:hover {
    text-decoration: none;
  }
  .top-service__ico {
    grid-row: span 2/span 2;
    order: 1;
    width: 40px;
    height: 40px;
    margin-right: 24px;
  }
  .top-service__ico img {
    width: 100%;
    height: 100%;
  }
  .top-service__title {
    order: 2;
    width: 100%;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
  }
  .top-service__caption {
    order: 3;
    width: 100%;
    margin: 0;
    font-size: 14px;
    letter-spacing: 0;
  }
  .top-service__category-box {
    padding-bottom: 32px;
  }
  .top-service__category-title {
    position: relative;
    margin: 0 0 12px;
    padding-left: 16px;
    font-size: 16px;
  }
  .top-service__category-title::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 26px;
    background: #1f2933;
  }
  .top-service__category-li {
    list-style: none;
  }
  .top-service__category-item {
    display: inline-block;
    position: relative;
    margin-bottom: 8px;
    padding-right: 16px;
    color: #1f2933;
    font-size: 14px;
  }
  .top-service__category-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 10px;
    height: 10px;
    transform: translateY(-50%);
    -webkit-mask-image: url("../../../assets/images/common/ico_arrow.svg");
    mask-image: url("../../../assets/images/common/ico_arrow.svg");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: cover;
    mask-size: cover;
    background-color: #1f2933;
  }
}
/* ------------------------------
  top-single-button
------------------------------ */
@media screen and (min-width: 769px) {
  .top-single-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    transition: 0.3s all;
    border-radius: 25px;
    color: #1f2933;
    font-weight: bold;
  }
  .top-single-button:hover {
    transition: 0.3s all;
    box-shadow: none;
    text-decoration: none;
  }
  .top-single-button--base {
    border: 2px solid #1f2933;
    background: #fff;
  }
  .top-single-button--base:hover {
    border: 2px solid #1f2933;
    background: #1f2933;
    color: #fff;
  }
  .top-single-button--pickup {
    border: 2px solid #fff;
    background: #003f65;
    color: #fff;
  }
  .top-single-button--pickup:hover {
    border: 2px solid #fff;
    background: #fff;
    color: #1f2933;
  }
  .top-single-button--recruit {
    border: 2px solid #fff;
    background: #003f65;
    color: #fff;
  }
  .top-single-button--recruit:hover {
    border: 2px solid #fff;
    background: #fff;
    color: #1f2933;
  }
  .top-single-button--ga {
    border: 2px solid #fff;
    background: #c4722f;
    color: #fff;
  }
  .top-single-button--ga:hover {
    border: 2px solid #fff;
    background: #fff;
    color: #1f2933;
  }
}
@media screen and (max-width: 768.9px) {
  .top-single-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    border-radius: 25px;
    color: #1f2933;
    font-weight: bold;
  }
  .top-single-button--base {
    border: 2px solid #1f2933;
    background: #fff;
  }
  .top-single-button--pickup {
    border: 2px solid #fff;
    background: #003f65;
    color: #fff;
  }
  .top-single-button--recruit {
    border: 2px solid #fff;
    background: #003f65;
    color: #fff;
  }
  .top-single-button--ga {
    border: 2px solid #fff;
    background: #c4722f;
    color: #fff;
  }
}
/* ------------------------------
  top-system
------------------------------ */
@media screen and (min-width: 769px) {
  .top-system {
    padding: 25px 0 0;
  }
  .top-system__title {
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: bold;
  }
  .top-system__list {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    margin: 0 0 5px;
    padding: 0 20px;
    background: #fff;
    color: #000;
  }
  .top-system__ico {
    display: inline-block;
    width: 40px;
    margin: 0 5px 0 0;
    text-align: center;
  }
  .top-system__value {
    margin-left: auto;
    font-family: Roboto, sans-serif;
    font-size: 28px;
    font-weight: bold;
  }
  .top-system__value span {
    color: #1f2933;
    font-size: 20px;
  }
  .top-system__value--aws {
    color: #fbb03b;
  }
  .top-system__value--ruby {
    color: #c70d41;
  }
  .top-system__value--ios {
    color: #18981d;
  }
}
@media screen and (max-width: 768.9px) {
  .top-system {
    margin: 40px 0;
  }
  .top-system__title {
    margin: 0 0 20px;
    font-family: Roboto, sans-serif;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
  }
  .top-system__list {
    display: flex;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    margin: 0 0 5px;
    padding: 0 15px;
    background: #fff;
    color: #000;
  }
  .top-system__ico {
    display: inline-block;
    width: 40px;
    margin: 0 5px 0 0;
    text-align: center;
  }
  .top-system__value {
    margin-left: auto;
    font-family: Roboto, sans-serif;
    font-size: 28px;
    font-weight: bold;
  }
  .top-system__value span {
    color: #1f2933;
    font-size: 20px;
  }
  .top-system__value--aws {
    color: #fbb03b;
  }
  .top-system__value--ruby {
    color: #c70d41;
  }
  .top-system__value--ios {
    color: #18981d;
  }
}
/* ------------------------------
  top-team
------------------------------ */
@media screen and (min-width: 769px) {
  .top-team {
    width: 490px;
  }
  .top-team img {
    width: 100%;
  }
}
@media screen and (max-width: 768.9px) {
  .top-team {
    width: 100%;
  }
  .top-team img {
    width: 100%;
  }
}
/* ------------------------------
  top-text-link
------------------------------ */
@media screen and (min-width: 769px) {
  .top-text-link {
    display: block;
    position: relative;
    margin: -30px 20px 0 0;
    transition: 0.3s all;
    color: #1f2933;
    font-size: 14px;
    text-align: right;
  }
  .top-text-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    transition: 0.3s all;
  }
  .top-text-link:hover {
    text-decoration: none;
  }
  .top-text-link--web {
    margin-top: -70px;
  }
  .top-text-link--web::after {
    background: url("../../../assets/images/common/arrow_black.png") no-repeat center center/100%;
  }
  .top-text-link--web:hover::after {
    right: -25px;
  }
  .top-text-link--download {
    margin: 20px 20px 0 0;
  }
  .top-text-link--download::after {
    background: url("../../../assets/images/common/arrow_black.png") no-repeat center center/100%;
  }
  .top-text-link--download:hover::after {
    right: -25px;
  }
  .top-text-link--game {
    color: #fff;
  }
  .top-text-link--game::after {
    background: url("../../../assets/images/common/arrow_white.png") no-repeat center center/100%;
  }
  .top-text-link--game:hover::after {
    right: -25px;
  }
}
@media screen and (max-width: 768.9px) {
  .top-text-link {
    display: block;
    position: relative;
    margin: 20px 30px 0 0;
    color: #1f2933;
    font-size: 14px;
    text-align: right;
  }
  .top-text-link::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
  }
  .top-text-link--web::after, .top-text-link--download::after {
    background: url("../../../assets/images/common/arrow_black.png") no-repeat center center/100%;
  }
  .top-text-link--game {
    color: #fff;
  }
  .top-text-link--game::after {
    background: url("../../../assets/images/common/arrow_white.png") no-repeat center center/100%;
  }
}
