@charset "UTF-8";
/*------------------------------------------------------------
    基本設定 コンテンツ幅
------------------------------------------------------------*/
.content_area {
  position: relative;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}
.content_area.nopadding_sp {
  padding: 0px;
}
@media (min-width: 768px) {
  .content_area {
    padding: 0 30px;
    max-width: 1400px;
  }
}

/*------------------------------------------------------------
    基本設定　カラー
------------------------------------------------------------*/
.bg_white {
  background-color: #fff;
}

.text_white {
  color: #ffffff;
}

.text_blue {
  color: var(--color-mainblue);
}

.text_red {
  color: var(--color-red);
}

/*------------------------------------------------------------
    基本設定　テキスト
------------------------------------------------------------*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.tategaki {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

.font-en {
  font-family: "Inter", sans-serif;
}

.block_center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.dot-before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.dot-before::before {
  content: "";
  width: 0.5em;
  height: 0.5em;
  background: transparent;
  border-radius: 50%;
  margin-right: 0.4em;
}
.dot-before.dot-white::before {
  background-color: white;
}
.dot-before.dot-blue::before {
  background-color: var(--color-mainblue);
}
.dot-before.dot-black::before {
  background-color: var(--text-color-base);
}

/*------------------------------------------------------------
  コンテンツ
------------------------------------------------------------*/
/*共通*/
ul.basic {
  font-size: var(--text-base);
  list-style-type: disc;
  margin-bottom: 1em;
}

ul.basic li {
  margin-left: 1.5em;
}

/*------------------------------------------------------------
  HOME
------------------------------------------------------------*/
#mv .mv-body {
  height: clamp(620px, 705px - 12.5vh, 680px);
  position: relative;
  border-radius: 3px;
  background-image: url(../images2026/home/mv-bg-square.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 25% bottom;
}
@media (min-width: 768px) {
  #mv .mv-body {
    background-image: url(../images2026/home/mv-bg-square.webp);
  }
}
#mv .mv-body {
  /* 切掛け実装コード  */
  background-color: var(--color-bg-base);
  clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 90%, 35% 100%, 0 100%);
}
@media (min-width: 992px) {
  #mv .mv-body {
    background-position: left center;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 43% 90%, 40% 100%, 0 100%);
  }
}
#mv .mv-body .mv-copy {
  position: absolute;
  bottom: 18%;
  left: 20px;
}
@media (min-width: 768px) {
  #mv .mv-body .mv-copy {
    bottom: 100px;
    left: 50px;
  }
}
#mv .mv-body .mv-copy .copy1 {
  font-size: var(--text-mv);
  font-weight: 600;
  line-height: 1;
}
#mv .mv-body .mv-copy .copy2 {
  font-size: var(--text-md);
  margin: 1em 0 2em;
}
#mv .mv-body .mv-copy .button {
  width: 180px;
  max-width: 200px;
  font-size: var(--text-button);
}

.block_intro p {
  font-size: var(--text-md);
  line-height: 1.8;
  margin: 0 auto 3em;
}
@media (min-width: 768px) {
  .block_intro p {
    width: 59%;
    text-align: center;
  }
}

.section_title_container {
  margin: 4em 0 2em;
  position: relative;
}
.section_title_container .section_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.section_title_container .section_title .en {
  font-size: var(--text-base);
  margin-bottom: 1em;
}
.section_title_container .section_title .jp {
  color: var(--text-color-base);
  font-size: var(--text-lg);
  font-weight: 500;
}
.section_title_container .section_title .jp.color-white {
  color: white;
}
.section_title_container .section_title .jp.text_l {
  font-size: clamp(2rem, 1.824rem + 0.75vw, 2.5rem);
}
.section_title_container.right-button button, .section_title_container.right-button .button {
  display: none;
}
@media (min-width: 768px) {
  .section_title_container.right-button button, .section_title_container.right-button .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

.block_topics .topics-custom-controls {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 20px;
  padding: 30px 10px;
}
@media (min-width: 768px) {
  .block_topics .topics-custom-controls {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.block_topics .topics-custom-controls .topics-nav-btn {
  width: 43px;
  height: 43px;
  padding: 0;
  background-color: var(--color-mainblue);
  background-image: none;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  font-size: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: background-color 0.2s, opacity 0.2s;
  transition: background-color 0.2s, opacity 0.2s;
}
.block_topics .topics-custom-controls .topics-nav-btn:hover:not(:disabled) {
  opacity: 0.7;
}
.block_topics .topics-custom-controls .topics-nav-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.6;
}
.block_topics .topics-custom-controls .topics-nav-btn img.prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.block_topics .topics-custom-controls .topics-page-counter {
  font-size: var(--text-base);
  font-weight: 500;
  text-align: center;
}

.block_users {
  background-color: #D8ECFA;
  background-image: url(../images2026/home/users-bg-a.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left center;
  padding: 20px 0;
}
.block_users h2 {
  margin: 2em 0;
  font-size: var(--text-md);
}
.block_users .users-list {
  border-radius: 3px;
  background-color: white;
  padding: 20px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(4, 1fr);
}
@media (min-width: 768px) {
  .block_users .users-list {
    grid-template-columns: repeat(9, 1fr);
  }
}
.block_users .bottom-button {
  padding: 40px 0;
}
@media (min-width: 768px) {
  .block_users .bottom-button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.block_recruit {
  border-radius: 5px;
  background: linear-gradient(169.71deg, #0083C9 15.04%, #F3F2F1 140.44%);
  clip-path: polygon(0% 0%, 40% 0%, 45% 40px, 100% 40px, 100% 100%, 45% 100%, 40% calc(100% - 40px), 0% calc(100% - 40px));
}
@media (min-width: 1200px) {
  .block_recruit {
    background: linear-gradient(77.1deg, #0083C9 3.2%, #F3F2F1 100%);
    clip-path: polygon(0% 0%, 49% 0%, 51% 5%, 100% 5%, 100% 100%, 51% 100%, 49% 95%, 0% 95%);
  }
}
.block_recruit {
  color: white;
}
.block_recruit .copy-jp {
  font-size: var(--text-ml);
}

/*------------------------------------------------------------
  CARD
------------------------------------------------------------*/
.card-topic {
  background: #EFEFEF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding: 10px;
  gap: 10px;
}
@media (min-width: 768px) {
  .card-topic {
    padding: 20px;
    gap: 20px;
  }
}
.card-topic .card-topic-image {
  width: 30%;
}
.card-topic .card-topic-text {
  width: 70%;
  font-size: var(--text-xs);
}
.card-topic .card-topic-text p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-mainblue);
  font-size: var(--text-xxs);
  margin-bottom: 0.5em;
  line-height: 1.2;
}
.card-topic .card-topic-text p span.badge {
  border-radius: 50em;
  border: 1px solid var(--color-mainblue);
  padding: 0.2em 0.75em;
}
.card-topic .card-topic-text p span.badge:last-child {
  margin-right: 0.5em;
}
.card-topic .card-topic-text h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
}
@media (min-width: 768px) {
  .card-topic .card-topic-text h3 {
    -webkit-line-clamp: 4;
  }
}

a .card-topic:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

/*------------------------------------------------------------
  BUTTON
------------------------------------------------------------*/
button, .button {
  background-color: var(--color-mainblue);
  border: 1px solid var(--color-mainblue);
  cursor: pointer;
  font-size: var(--text-button);
  color: white;
  padding: 0.85em 4em 0.85em 1.5em;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
button.height-l-sp, .button.height-l-sp {
  padding: 1.4em 4em 1.4em 1.5em;
}
@media (min-width: 768px) {
  button.height-l-sp, .button.height-l-sp {
    padding: 0.85em 4em 0.85em 1.5em;
  }
}
button.display-block, .button.display-block {
  display: block;
}
button.display-inlineblock, .button.display-inlineblock {
  display: inline-block;
}
button, .button {
  line-height: 1;
  -webkit-transition: background-color 0.2s;
  transition: background-color 0.2s;
  border-radius: 5px;
}
button.no-radius, .button.no-radius {
  border-radius: 0;
}
button, .button {
  background-image: url("../images2026/common/icon_square_white.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 1.5em) center;
  background-size: 1em auto;
  width: 100%;
}
@media (min-width: 768px) {
  button, .button {
    width: auto;
  }
}
button.full-width, .button.full-width {
  width: 100%;
}
button:hover, .button:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background-color: white;
  color: var(--text-color-base);
  border: 1px solid #CDCDCD;
  background-image: url("../images2026/common/icon_arrow_black.svg");
  background-size: auto 0.75em;
}
button.ver-white, .button.ver-white {
  background-color: white;
  border: 1px solid white;
  background-image: url("../images2026/common/icon_square_blue.svg");
  color: var(--text-color-base);
}
button.ver-white:hover, .button.ver-white:hover {
  background-color: var(--color-mainblue);
  border: 1px solid var(--color-mainblue);
  color: white;
  background-image: url("../images2026/common/icon_arrow_white.svg");
  background-size: auto 0.75em;
}
button.ver-transparent, .button.ver-transparent {
  border: 1px solid #CDCDCD;
  background-color: transparent;
  background-image: url("../images2026/common/icon_square_blue.svg");
  color: var(--text-color-base);
}
button.ver-transparent:hover, .button.ver-transparent:hover {
  background-color: var(--color-mainblue);
  border: 1px solid var(--color-mainblue);
  color: white;
  background-image: url("../images2026/common/icon_arrow_white.svg");
  background-size: auto 0.75em;
}