@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 10px;
}

body {
  /* プロジェクトによって変動 */
  background-color: #FFF;
  color: #333333;
  line-height: 1.8;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
  font-variant-numeric: tabular-nums;
  /* safari hover対策 */
  -webkit-font-smoothing: antialiased;
  font-size: 1.6rem;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

h1 {
  font-size: 4.8rem;
}

h2 {
  font-size: 3.2rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2.4rem;
}

h5 {
  font-size: 2rem;
}

ul, ol {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
  line-height: 1;
}

button {
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

select {
  color: #333;
}

@media screen and (max-width: 650px) {
  html {
    /* 1rem = 50pxと再定義 */
    font-size: 5px;
  }
  body {
    font-size: 2.8rem;
  }
  h1 {
    font-size: 8rem;
  }
  h2 {
    font-size: 4rem;
  }
  h3 {
    font-size: 3.6rem;
  }
  h4 {
    font-size: 3.6rem;
  }
}
/* ///////////////////////////////////////

背景色・テキストカラー

/////////////////////////////////////// */
/* ///////////////////////////////////////

フォント

/////////////////////////////////////// */
/* ///////////////////////////////////////

ボーダー

/////////////////////////////////////// */
/* ///////////////////////////////////////

ボックスシャドウ

/////////////////////////////////////// */
/* ///////////////////////////////////////




アニメーション




/////////////////////////////////////// */
.blur {
  -webkit-animation-name: blurAnime;
          animation-name: blurAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(30px);
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(30px);
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
.blurTrigger,
.fadeUpTrigger,
.fadeRightTrigger,
.fadeLeftTrigger {
  opacity: 0;
}

.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime; /*アニメーションの定義名*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

/*アニメーションの開始から終了までを指定する*/
@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.eachTextAnime span {
  opacity: 0;
}

.eachTextAnime.appeartext span {
  -webkit-animation: text_anime_on 0.5s ease-out forwards;
          animation: text_anime_on 0.5s ease-out forwards;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.img_wrap {
  opacity: 0;
}
.img_wrap img {
  width: 100%;
  height: auto;
}

.img_animation {
  -webkit-animation: img_opacity 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: img_opacity 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  overflow: hidden;
  position: relative;
}

.img_animation::before {
  -webkit-animation: img_animation_slide 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
          animation: img_animation_slide 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

@-webkit-keyframes img_opacity {
  100% {
    opacity: 1;
  }
}

@keyframes img_opacity {
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes img_animation_slide {
  100% {
    transform: translateX(100%);
  }
}
@keyframes img_animation_slide {
  100% {
    transform: translateX(100%);
  }
}
@media screen and (max-width: 650px) {
  .img_wrap img {
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 39/28;
  }
}
/* ///////////////////////////////////////




共通




/////////////////////////////////////// */
body {
  color: #191818;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}
body a {
  text-decoration: none;
  cursor: pointer;
}

/* ///////////////////////////////////////




画面幅




/////////////////////////////////////// */
.large_container {
  max-width: 1280px;
  width: 90%;
  margin: auto;
}

.large_container02 {
  max-width: 1320px;
  width: 90%;
  margin: auto;
}

.container {
  max-width: 1040px;
  width: 90%;
  margin: 0 auto;
}

.mid_container {
  max-width: 920px;
  width: 90%;
  margin: 0 auto;
}

.sm_container {
  max-width: 600px;
  width: 90%;
  margin: auto;
}

/* ///////////////////////////////////////




背景色




/////////////////////////////////////// */
.bg_01 {
  background-color: #EFF8FA;
  border-radius: 0 15rem 0 0;
}

.bg_02 {
  background: linear-gradient(150deg, #017EC1 0%, #0193C6 51%, #0138B6 100%);
  border-radius: 15rem 0 0 0;
}

/* ///////////////////////////////////////




フレックス




/////////////////////////////////////// */
.fl {
  display: flex;
  gap: 4rem;
}

.al_center {
  align-items: center;
}

.js_sb {
  justify-content: space-between;
}

@media screen and (max-width: 980px) {
  .fl {
    flex-direction: column;
  }
  .fd_row {
    flex-direction: row !important;
  }
}
/* ///////////////////////////////////////




余白・改行




/////////////////////////////////////// */
.mt_100 {
  margin-top: 10rem;
}

.mt_60 {
  margin-top: 6rem;
}

.mt_40 {
  margin-top: 4rem;
}

.mt_24 {
  margin-top: 2.4rem;
}

.mt_16 {
  margin-top: 1.6rem;
}

.ptb_100 {
  padding: 10rem 0 10rem 0;
}

.pb_100 {
  padding-bottom: 10rem;
}

.indent {
  text-indent: -1em !important;
  padding-left: 1em !important;
}

.center {
  text-align: center;
}

.fw_mid {
  font-weight: 500;
}

@media screen and (max-width: 650px) {
  .pc_none {
    display: inline-block;
  }
  .bg_01 {
    border-radius: 0 15rem 0 0;
  }
  .bg_02 {
    border-radius: 15rem 0 0 0;
  }
}
.grad {
  background: -webkit-linear-gradient(270deg, #017EC1 0%, #0193C6 50%, #0138B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Red Hat Display", sans-serif;
}

/* ///////////////////////////////////////




ボタン



/////////////////////////////////////// */
.btn {
  width: 240px;
  height: 60px;
  line-height: 1.7;
  background: linear-gradient(90deg, #017EC1 0%, #0193C6 50%, #0138B6 100%);
  border-radius: 999px;
  display: inline-block;
  box-sizing: border-box;
  font-weight: 700;
  padding: 0 2.5rem;
  overflow: hidden; /* 1つ目の影を隠す */
  position: relative;
  line-height: 3.5;
  color: #FFFFFF;
  background-size: 200% 100%;
  transition: 0.3s;
}
.btn::after {
  content: "→";
  display: inline-block;
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%) translateX(0);
  opacity: 1;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.btn:hover {
  background-position: 100% 0;
}

@-webkit-keyframes arrow-slide {
  0% {
    transform: translateY(-50%) translateX(-20px); /* 左にずらす */
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0); /* 通常位置に戻す */
    opacity: 1;
  }
}

@keyframes arrow-slide {
  0% {
    transform: translateY(-50%) translateX(-20px); /* 左にずらす */
    opacity: 0;
  }
  100% {
    transform: translateY(-50%) translateX(0); /* 通常位置に戻す */
    opacity: 1;
  }
}
.btn_circle {
  background-color: #FFFFFF;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}
.btn_circle img {
  width: 10px;
  height: auto;
  transform: scale(1); /* ← 拡大を打ち消す */
}
.btn_circle:hover {
  transform: scale(1.2);
}
.btn_circle:hover img {
  transform: scale(1);
}

@media screen and (max-width: 650px) {
  .btn {
    width: 200px;
    height: 45px;
    font-size: 2.8rem;
    padding: 0 3rem;
    line-height: 1.8;
  }
  .btn span {
    text-shadow: 0 -45px 0 #fff, 0 0 0 #fff;
    line-height: 3.2;
  }
  .btn:hover span {
    text-shadow: 0 0 0 #fff, 0 40px 0 #fff; /* 2つの影の位置を上方向に1.5emずつずらす */
  }
  a.btn_circle {
    width: 40px;
    height: 40px;
  }
}
/* ///////////////////////////////////////




コンテンツのタイトル




/////////////////////////////////////// */
.con_ttl p {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}
.con_ttl p::before {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 1px;
  margin-right: 5px;
  vertical-align: middle;
  background: linear-gradient(180deg, #017EC1 0%, #0193C6 50%, #0138B6 100%);
  transform: rotate(45deg);
}

.con_ttl h2 {
  font-size: 10rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 1rem;
  display: inline-block;
  background: -webkit-linear-gradient(270deg, #017EC1 0%, #0193C6 50%, #0138B6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 400% 100%;
  background-position: 0% 0%;
  transition: background-image 0.2s ease, background-position 1s ease-in-out;
}

.con_ttl h2.shine {
  background-image: linear-gradient(90deg, #0138B6 0%, #017EC1 30%, #FFAE00 50%, #FFFFFF 60%, #017EC1 70%, #0138B6 100%);
  background-position: 100% 0%;
}

.con_ttl_white h2.shine {
  background-image: linear-gradient(90deg, #FFFFFF 0%, #017EC1 35%, #FFAE00 50%, #017EC1 100%);
  background-position: 100% 0%;
}

.con_ttl h2.shine-done {
  background: -webkit-linear-gradient(270deg, #017EC1 0%, #0193C6 50%, #0138B6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: 0% 0%;
}

.con_ttl_white h2.shine-done {
  background: #FFFFFF;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-position: 0% 0%;
}

.con_ttl_white p {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 2rem;
}
.con_ttl_white p::before {
  content: "";
  display: inline-block;
  height: 10px;
  width: 10px;
  border-radius: 1px;
  margin-right: 5px;
  vertical-align: middle;
  transform: rotate(45deg);
  background-color: #FFFFFF;
}

.con_ttl_white h2 {
  font-size: 10rem;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-top: 1rem;
  display: inline-block;
  color: #FFFFFF;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-image 0.2s ease, background-position 1s ease-in-out;
  background-image: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 100%);
  background-size: 400% 100%;
  background-position: 0% 0%;
}

.con_ttl_white h2.shine {
  background-image: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 20%, #017EC1 35%, #FFAE00 50%, #FFFFFF 75%, #FFFFFF 100%);
  background-position: 100% 0%;
}

@media screen and (max-width: 650px) {
  .con_ttl h2, .con_ttl_white h2 {
    font-size: 11.2rem;
  }
  .con_ttl p, .con_ttl_white p {
    font-size: 2.8rem;
  }
}
/* ///////////////////////////////////////




コンタクトエリア




/////////////////////////////////////// */
.cta_wrap {
  background-image: url(../images/cta_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.cta_wrap a {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 1;
}

.cta_item_wrap {
  position: relative;
  padding: 12rem 0;
  overflow: hidden;
}
.cta_item_wrap:first-of-type {
  border-bottom: 1px solid #FFFFFF;
}
.cta_item_wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  transition: left 0.6s ease;
  z-index: 0;
}
.cta_item_wrap:hover::before {
  left: 0;
}
.cta_item_wrap > * {
  position: relative;
  z-index: 1;
}

.cta_item {
  justify-content: space-between;
  align-items: center;
}

.cta_item > .btn_circle {
  width: 8rem;
  height: 8rem;
  overflow: hidden;
}
.cta_item > .btn_circle img {
  width: 17px;
  transition: transform 0.4s ease;
  transform: translateX(0);
}

.cta_item_wrap .btn_circle:hover {
  transform: scale(1);
}

.cta_item_wrap:hover .btn_circle img {
  transform: scale(1);
  -webkit-animation: img_slide 0.6s ease forwards;
          animation: img_slide 0.6s ease forwards;
}

@-webkit-keyframes img_slide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(60px);
    opacity: 0;
  }
  41% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes img_slide {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(60px);
    opacity: 0;
  }
  41% {
    transform: translateX(-60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@media screen and (max-width: 980px) {
  .cta_item {
    flex-direction: row;
  }
}
@media screen and (max-width: 650px) {
  .cta_item > .btn_circle img {
    width: 10px;
  }
}
/* ///////////////////////////////////////




フッター




/////////////////////////////////////// */
footer {
  background-color: #2D2D2D;
  color: #FFFFFF;
}

.footer_wrap {
  justify-content: space-between;
  padding: 6rem 0;
}

.footer_info dl {
  margin-top: 2.4rem;
}
.footer_info dl dt, .footer_info dl dd {
  font-weight: 500;
  font-size: 1.4rem;
}

.footer_menu ul li {
  line-height: 1;
}

.footer_menu ul li a {
  font-size: 14px;
  font-size: 500;
}

.footer_wrap .logo {
  width: 210px;
  display: inline-block;
}
.footer_wrap .logo img {
  width: 100%;
}

.footer_menu01 .menu {
  display: flex;
  gap: 4rem;
}

.footer_menu .footer_menu01 .menu .sub-menu,
.footer_menu .footer_menu02 .menu .sub-menu {
  margin-top: 2.4rem;
}
.footer_menu .footer_menu01 .menu .sub-menu li:not(:first-child),
.footer_menu .footer_menu02 .menu .sub-menu li:not(:first-child) {
  margin-top: 1.6rem;
}
.footer_menu .footer_menu01 .menu .sub-menu li a,
.footer_menu .footer_menu02 .menu .sub-menu li a {
  font-size: 12px;
  color: #BCBCBC;
}

.footer_menu .footer_menu02 ul li:not(:first-child) {
  margin-top: 2.4rem;
}

.footer_wrap .footer_menu ul li a {
  position: relative;
  transition: 0.5s;
}
.footer_wrap .footer_menu ul li a::before {
  background: #FFFFFF;
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.footer_wrap .footer_menu ul li a:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}

.footer_menu01 .menu .sub-menu li a::before {
  background: #BCBCBC;
}

.copy {
  font-size: 12px;
  text-align: center;
  padding: 1.5rem;
  border-top: 1px solid #FFFFFF;
}

@media screen and (max-width: 980px) {
  .footer_menu {
    flex-direction: row;
  }
  .footer_menu {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .footer_wrap .logo {
    width: 140px;
  }
  .footer_info dl dt, .footer_info dl dd {
    font-size: 2.4rem;
  }
  .footer_menu01 .menu {
    gap: 6rem;
  }
  .footer_menu {
    gap: 6rem;
    flex-wrap: wrap;
  }
  .footer_menu .footer_menu01 .menu .sub-menu,
.footer_menu .footer_menu02 .menu .sub-menu {
    margin-top: 3rem;
  }
  .footer_menu .footer_menu01 .menu .sub-menu li:not(:first-child),
.footer_menu .footer_menu02 .menu .sub-menu li:not(:first-child) {
    margin-top: 2rem;
  }
  .copy {
    padding: 2rem;
  }
}
/* ///////////////////////////////////////




ローディング




/////////////////////////////////////// */
#loading_screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  will-change: transform;
}

#loading_screen.loaded {
  transform: translateY(-100%);
}

#loading_screen .logo {
  opacity: 1;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
#loading_screen .logo img {
  width: 150px;
  height: auto;
}

#loading_screen .logo.fade-out {
  opacity: 0;
  transform: translateY(-30px);
}

/* ///////////////////////////////////////




メインビジュアル




/////////////////////////////////////// */
.scroll_down a {
  display: inline-block;
  position: absolute;
  right: 10px;
  bottom: 0;
  z-index: 2;
  width: 13px;
  padding: 10px 10px 110px;
  color: #017EC1;
  font-size: 1.6rem;
  font-family: "Red Hat Display", sans-serif;
  line-height: 1;
  text-decoration: none;
  -ms-writing-mode: tb-lr;
      writing-mode: vertical-lr;
  transition: 0.2s;
  overflow: hidden;
  margin: auto;
  height: 25px;
}

.scroll_down a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: transparent;
}

.scroll_down a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 1px;
  height: 80px;
  background: #017EC1;
}

.scroll_down a:hover {
  opacity: 0.5;
}

#type01 a:after {
  -webkit-animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
          animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}

@-webkit-keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

@keyframes sdl01 {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media screen and (max-width: 750px) {
  .scroll_down {
    display: none;
  }
}
.lead_wrap h1 {
  font-size: clamp(28px, 2.22vw, 32px);
  padding-bottom: 5px;
  display: inline-block;
  position: relative;
}
.lead_wrap h1::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background-color: #191818;
  transform-origin: left center;
  transition: width 1s ease-out;
}
.lead_wrap h1.animate::after {
  width: 100%;
}

.lead_wrap p span {
  font-family: "Red Hat Display", sans-serif;
  font-size: 14rem;
  font-weight: 900;
  line-height: 1.2;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #017EC1 0%, #0EB1EA 40%, #0138B6 100%);
  background-size: 300%;
  -webkit-animation: shine 8s ease-in-out infinite;
          animation: shine 8s ease-in-out infinite;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  opacity: 0.85;
}
.lead_wrap p span:last-of-type {
  line-height: 1;
}

.lead_wrap .forSp {
  display: none;
}

@-webkit-keyframes shine {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: -200% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}

@keyframes shine {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: -200% 0%;
  }
  100% {
    background-position: 0% 0%;
  }
}
.fade-text {
  opacity: 0;
  line-height: 1;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.fade-text.animate {
  opacity: 1;
  transform: translateY(0);
}

.fade-text:nth-of-type(1) {
  transition-delay: 0.2s;
}

.fade-text:nth-of-type(2) {
  transition-delay: 0.5s;
}

.top_lead .mid_container {
  margin: 0 0 0 auto;
}

.mv_wrap {
  height: 100vh;
  height: -webkit-fill-available;
  background: url(../images/mv.jpg) no-repeat center center/cover;
  position: relative;
  z-index: 0;
}

.txt_wrap p {
  line-height: 2.4;
  letter-spacing: 0.05em;
}

.bluebox {
  height: 100vh;
  background: url(../images/mv.jpg) no-repeat center center/cover;
  z-index: 0;
  position: relative;
}

.redbox {
  height: 80rem;
  position: relative;
  left: 10rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -40rem 0;
}

.greenbox {
  padding-top: 450px;
  padding-bottom: 10rem;
}

.lead_wrap {
  position: -webkit-sticky;
  position: sticky;
  top: 10rem;
}

/* ///////////////////////////////////////

About ループスライダー

/////////////////////////////////////// */
.loopSlide {
  position: relative;
  display: flex;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.loopSlide ul {
  padding: 0;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
}
.loopSlide ul:first-child {
  -webkit-animation: slide1 60s -30s linear infinite;
          animation: slide1 60s -30s linear infinite;
}
.loopSlide ul:last-child {
  -webkit-animation: slide2 60s linear infinite;
          animation: slide2 60s linear infinite;
}
.loopSlide ul li {
  width: 380px;
  margin-right: 4rem;
}
.loopSlide ul li img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.loopSlide ul li:first-child {
  position: relative;
  top: 6rem;
}
.loopSlide ul li:first-child, .loopSlide ul li:nth-child(5) {
  width: 260px;
  height: 450px;
}
.loopSlide ul li:first-child img, .loopSlide ul li:nth-child(5) img {
  width: 100%;
  height: 100%;
  aspect-ratio: 26/45;
}
.loopSlide ul li:nth-of-type(2) {
  width: 385px;
  height: 460px;
}
.loopSlide ul li:nth-of-type(2) img {
  aspect-ratio: 77/92;
}
.loopSlide ul li:nth-of-type(3) {
  width: 380px;
  height: 380px;
  position: relative;
  top: 11rem;
}
.loopSlide ul li:nth-of-type(3) img {
  aspect-ratio: 1/1;
}
.loopSlide ul li:nth-of-type(4) {
  position: relative;
  top: 2rem;
}
.loopSlide ul li:nth-of-type(5) {
  position: relative;
  top: 4rem;
}

.loopSlide.pc_none {
  display: none;
}

@-webkit-keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* ///////////////////////////////////////




サービス




/////////////////////////////////////// */
.top_service {
  margin-top: 10rem;
}
.top_service .fw_mid {
  font-size: 2.4rem;
}

.top_service .service_list {
  gap: 2.5rem;
  flex-wrap: wrap;
}
.top_service .service_list > div {
  background-image: url(../images/top_service01.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  padding: 25px;
  border-radius: 15px;
  overflow: hidden;
  z-index: 0;
  height: 540px;
  width: calc((100% - 5rem) / 3);
  display: flex;
  flex-direction: column;
  color: #FFFFFF;
  box-sizing: border-box;
  position: relative;
}
.top_service .service_list > div::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #017EC1 10%, rgba(1, 147, 198, 0.6) 30%, transparent 70%);
  z-index: -1;
}
.top_service .service_list > div a {
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  z-index: 1;
}
.top_service .service_list .wrap {
  margin-top: auto;
}
.top_service .service_list .wrap h3 {
  font-size: 3.2rem;
}
.top_service .service_list .wrap p {
  margin-top: 2.4rem;
}
.top_service .service_list .wrap .btn_circle {
  margin: 1.6rem 0 0 auto;
}

.top_service .service_list > div:hover .btn_circle {
  transform: scale(1.2);
  transition: transform 0.4s ease;
}

.top_service .service_list div:nth-of-type(2) {
  background-image: url(../images/top_service02.jpg);
}
.top_service .service_list div:nth-of-type(3) {
  background-image: url(../images/top_service03.jpg);
}
.top_service .service_list div:nth-of-type(4) {
  background-image: url(../images/top_service04.jpg);
}
.top_service .service_list div:nth-of-type(5) {
  background-image: url(../images/top_service05.jpg);
}
.top_service .service_list div:nth-of-type(6) {
  background-image: url(../images/top_service06.jpg);
}

@media screen and (max-width: 1100px) {
  .top_service .service_list > div {
    width: calc((100% - 2.5rem) / 2);
  }
}
/* ///////////////////////////////////////




Company




/////////////////////////////////////// */
.top_company {
  background-color: #EFF8FA;
}
.top_company .bg_02 {
  padding: 10rem 0;
}

.biz_list {
  color: #FFFFFF;
  gap: 4rem;
}
.biz_list .item {
  width: calc((100% - 8rem) / 3);
}
.biz_list .item .img {
  width: 100%;
  height: auto;
  aspect-ratio: 32/21;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
.biz_list .item .txt {
  margin-top: 1.6rem;
}
.biz_list .head {
  margin-top: 1.6rem;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #FFFFFF;
  padding-bottom: 10px;
}
.biz_list .head h3 {
  font-size: 24px;
}
.biz_list .head p {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  margin-top: 1rem;
}

/* ///////////////////////////////////////

パララックス

/////////////////////////////////////// */
.parallax_box {
  position: relative;
  overflow: hidden;
}

.parallax_back {
  height: 700px;
}

.parallax_back img {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}

.parallax_front {
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease-out;
  will-change: transform;
}

/* ///////////////////////////////////////

Your Design, Your CAREER.

/////////////////////////////////////// */
.slide-text-container {
  padding: 15rem 0;
  background-image: url(../images/bg01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.slide-text-container {
  text-align: center;
  overflow: hidden;
}
.slide-text-container p {
  font-size: 14rem;
  font-family: "Red Hat Display", sans-serif;
  line-height: 1;
  background: -webkit-linear-gradient(90deg, #017EC1 0%, #0EB1EA 50%, #0138B6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.slide-text-container .slide-left {
  transform: translateX(-70%);
  font-weight: 700;
}
.slide-text-container .slide-right {
  transform: translateX(70%);
  background: -webkit-linear-gradient(90deg, #090B0E, #696969, #000000);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 20px;
}

/* ///////////////////////////////////////




NEWS




/////////////////////////////////////// */
.news {
  background-color: #FFFFFF;
}
.news .con_ttl {
  flex-shrink: 0;
}

.news_listWrap {
  flex: 1;
}

.news_list {
  padding: 2.4rem 0;
  border-top: 1px solid #DDDDDD;
  position: relative;
  overflow: hidden;
}
.news_list:last-of-type {
  border-bottom: 1px solid #DDDDDD;
}
.news_list h3 {
  font-size: 1.6rem;
  margin-top: 1.6rem;
  line-height: 1.4;
}
.news_list a {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.news_list::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: rgba(1, 126, 193, 0.03);
  transition: left 0.6s ease;
  z-index: 0;
}
.news_list:hover::before {
  left: 0;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  メインビジュアル




  /////////////////////////////////////// */
  .redbox {
    left: 5rem;
    margin: -35rem 0;
  }
  .greenbox {
    padding-top: 400px;
  }
  .lead_wrap p span {
    font-size: clamp(9rem, 10.2vw, 10rem);
  }
  .lead_wrap h1 {
    margin-top: 1.6rem;
  }
  .lead_wrap h1 span {
    font-size: clamp(2.4rem, 2.85vw, 2.8rem);
  }
  /* ///////////////////////////////////////




  サービス




  /////////////////////////////////////// */
  .top_service .service_list > div {
    width: 100%;
  }
  /* ///////////////////////////////////////




  Company




  /////////////////////////////////////// */
  .biz_list .item {
    width: 100%;
  }
  .biz_list .item .head {
    flex-direction: row;
  }
  .slide-text-container p {
    font-size: 10rem;
  }
  /* ///////////////////////////////////////




  実績事例




  /////////////////////////////////////// */
  .sp_fl {
    display: flex;
    gap: 2rem;
  }
  .sp_fl .item {
    width: calc((100% - 2rem) / 2);
  }
  .top_case_list {
    width: 100%;
  }
  .top_case_list .item:nth-of-type(even) {
    margin-top: 0;
  }
  /* ///////////////////////////////////////




  Service




  /////////////////////////////////////// */
  .top_service_list .item .forSp {
    display: block;
  }
  .top_service_list .item .forPc {
    display: none;
  }
  .top_service_list .item .txt_wrap {
    order: 2;
  }
  .top_service_list .item {
    width: 100%;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .forSp {
    width: 100%;
    order: 1;
  }
  .top_service_list .item img {
    order: 2;
  }
  .top_service_list .item .txt {
    order: 2;
    margin-top: 0;
    flex: 1;
  }
  /* ///////////////////////////////////////




  News




  /////////////////////////////////////// */
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  メインビジュアル




  /////////////////////////////////////// */
  .lead_wrap p span {
    font-size: clamp(45px, 16.41vw, 80px);
    margin: auto;
  }
  .lead_wrap .forPc {
    display: none;
  }
  .lead_wrap .forSp {
    margin-top: 2.8rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
  }
  .lead_wrap .forSp span {
    font-size: 20px;
    display: block;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 10px;
  }
  .lead_wrap .forSp span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 0;
    background-color: #191818;
    transform-origin: left center;
    transition: width 1s ease-out;
  }
  .lead_wrap .forSp span.animate::after {
    width: 100%;
  }
  .greenbox {
    padding-top: 310px;
  }
  .redbox {
    height: 120rem;
    left: 5%;
    margin: -59rem 0;
  }
  /* ///////////////////////////////////////

  About ループスライダー

  /////////////////////////////////////// */
  .loopSlide {
    height: 300px;
  }
  .loopSlide ul li:first-child, .loopSlide ul li:nth-child(5) {
    width: 200px;
    height: 230px;
  }
  .loopSlide ul li:nth-of-type(2) {
    width: 143px;
    height: 250px;
  }
  .loopSlide ul li:nth-of-type(3) {
    width: 210px;
    height: 210px;
    top: 10rem;
  }
  .loopSlide ul li:nth-of-type(4) {
    width: 213px;
    height: 250px;
  }
  .loopSlide.pc_none {
    display: flex;
  }
  .loopSlide.pc_none ul {
    flex-direction: row-reverse;
  }
  .loopSlide.pc_none ul:first-of-type {
    -webkit-animation: slide3 60s -30s linear infinite;
            animation: slide3 60s -30s linear infinite;
  }
  .loopSlide.pc_none ul:last-of-type {
    -webkit-animation: slide4 60s linear infinite;
            animation: slide4 60s linear infinite;
  }
  @-webkit-keyframes slide3 {
    0% {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(100%);
    }
  }
  @keyframes slide3 {
    0% {
      transform: translateX(-100%);
    }
    to {
      transform: translateX(100%);
    }
  }
  @-webkit-keyframes slide4 {
    0% {
      transform: translateX(-200%);
    }
    to {
      transform: translateX(0%);
    }
  }
  @keyframes slide4 {
    0% {
      transform: translateX(-200%);
    }
    to {
      transform: translateX(0%);
    }
  }
  /* ///////////////////////////////////////




  サービス




  /////////////////////////////////////// */
  .top_service .fw_mid {
    font-size: 2.8rem;
  }
  .top_service .service_list {
    gap: 3rem;
  }
  .top_service .service_list > div {
    height: 340px;
  }
  .top_service .service_list .wrap h3 {
    font-size: 4.8rem;
  }
  .top_service .service_list .wrap p {
    margin-top: 3.2rem;
  }
  .top_service .service_list .wrap a.btn_circle {
    margin: 2rem 0 0 auto;
  }
  /* ///////////////////////////////////////




  Company




  /////////////////////////////////////// */
  .biz_list .item .img {
    aspect-ratio: 5/3;
  }
  .biz_list .item .head {
    margin-top: 2rem;
    padding-bottom: 4rem;
  }
  .biz_list .item .head p {
    margin-top: 2rem;
  }
  .biz_list .item .txt {
    margin-top: 5px;
  }
  /* ///////////////////////////////////////

  Your Design, Your CAREER.

  /////////////////////////////////////// */
  .slide-text-container {
    padding: 15rem 0;
    background-image: url(../images/bg01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
  }
  .slide-text-container p {
    font-size: 8rem;
  }
  .slide-text-container .slide-left {
    transform: translateX(-50%);
  }
  .slide-text-container .slide-right {
    transform: translateX(50%);
  }
  /* ///////////////////////////////////////

  パララックス

  /////////////////////////////////////// */
  .parallax_back {
    height: 280px;
  }
  .parallax_back img {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    width: 100%;
    height: 280px;
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 0;
  }
  /* ///////////////////////////////////////




  Column




  /////////////////////////////////////// */
  .top_column_wrap .item img {
    aspect-ratio: 5/3;
  }
  .top_column_wrap .item .post_head .date {
    font-size: 3.2rem;
  }
  .top_column_wrap .item .post_head {
    margin-top: 2rem;
  }
  .top_column_wrap .item h3 {
    font-size: 3.2rem;
  }
  .top_column .bg {
    padding: 10rem 4rem 10rem 4rem;
  }
  /* ///////////////////////////////////////




  News




  /////////////////////////////////////// */
  .news_listWrap .news_head .date {
    font-size: 12px;
  }
  .news_list {
    padding: 4rem 0;
  }
  .news_list h3 {
    font-size: 2.8rem;
    margin-top: 2rem;
  }
}
/* ///////////////////////////////////////




ヘッダー




/////////////////////////////////////// */
.global_nav {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 999;
  box-sizing: border-box;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 95%;
  border-bottom: 1px solid #017EC1;
  padding: 15px 0 15px 0;
}
.global_nav .logo {
  width: 180px;
  display: inline-block;
}
.global_nav .logo img {
  width: 100%;
  height: auto;
}

.global_nav nav {
  margin-left: auto;
}

.pc_menu .menu_list .menu {
  gap: 4rem;
}
.pc_menu .menu_list .menu > li {
  transition: 0.5s;
  font-weight: 500;
  position: relative;
  font-size: 14px;
}
.pc_menu .menu_list .menu > li::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  position: absolute;
  bottom: -26px;
  opacity: 0;
}
.pc_menu .menu_list .menu > li:hover::before {
  opacity: 1;
}

.pc_menu .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pc_menu .drop {
  position: relative;
}
.pc_menu .drop::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #191818;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 1px solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin-left: 5px;
  transition: 0.5s;
}
.pc_menu .drop:hover::after {
  transform: translateY(-25%) rotate(-45deg);
}

.pc_menu .sub-menu {
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  position: absolute;
  top: 220%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 760px;
  box-sizing: border-box;
  gap: 4rem;
  padding: 4rem;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  display: flex;
  flex-wrap: wrap;
}
.pc_menu .sub-menu li {
  font-size: 1.4rem;
  transition: 0.5s;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #017EC1;
  line-height: 1.4;
  width: calc((100% - 8rem) / 3);
  position: relative;
}
.pc_menu .sub-menu li:first-child {
  padding-top: 0;
}
.pc_menu .sub-menu li span {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  margin-bottom: 5px;
}
.pc_menu .sub-menu li:hover {
  opacity: 0.6;
}
.pc_menu .sub-menu li a::after {
  content: "";
  display: inline-block;
  background-image: url(../images/arrow.png);
  width: 25px;
  height: 25px;
  background-size: contain;
  position: absolute;
  right: 0;
}

.pc_menu .drop:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}

.global_nav .pc_menu {
  display: flex;
  gap: 3.2rem;
  flex: auto;
  align-items: center;
}

header .btn_wrap {
  display: flex;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 1rem 1.5rem;
  border-radius: 999px;
}
header .btn_wrap .menu {
  gap: 1rem;
}
header .btn_wrap .menu li {
  border-radius: 999px;
  width: 110px;
  height: 25px;
  background-color: #FFFFFF;
  color: #017EC1;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  line-height: 2;
  transition: 0.5s;
}
header .btn_wrap .menu li:first-child {
  background: linear-gradient(180deg, #017EC1 0%, #0193C6 50%, #0138B6 100%);
  color: #FFFFFF;
}
header .btn_wrap .menu li a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
header .btn_wrap .menu li:hover {
  opacity: 0.6;
}

.sp_menu {
  display: none;
}

@media screen and (max-width: 1200px) {
  /* ///////////////////////////////////////




  ヘッダー




  /////////////////////////////////////// */
  .sp_menu_wrap {
    height: 250px;
    overflow-y: scroll;
  }
  .global_nav .pc_menu {
    display: none;
  }
  .global_nav {
    border: none;
  }
  .sp_menu {
    display: block;
    position: fixed;
    z-index: 997;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #EFF8FA;
    box-sizing: border-box;
    padding-top: 12rem;
    transform: translateX(100%); /* ← 画面外に隠す */
    transition: transform 0.4s ease;
  }
  .sp_menu.show {
    transform: translateX(0); /* ← 画面内に表示 */
  }
  @-webkit-keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.8;
    }
  }
  @keyframes fade-in {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 0.8;
    }
  }
  .global_nav {
    top: 2rem;
  }
  /* ハンバーガーメニュー３本線 */
  .nav_toggle {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 2.4rem;
    z-index: 999;
    background-color: rgba(255, 255, 255, 0.4);
    width: 40px;
    height: 40px;
    box-sizing: border-box;
    border-radius: 50%;
  }
  .nav_toggle i {
    display: block;
    width: 15px;
    height: 1px;
    background-color: #017EC1;
    position: absolute;
    transition: transform 0.5s, opacity 0.5s;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
  .nav_toggle i:nth-child(1) {
    top: 15px;
  }
  .nav_toggle i:nth-child(2) {
    bottom: 19px;
    margin: auto;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 14px;
    margin: auto;
  }
  /* .showクラスがついた時の挙動 */
  .nav_toggle.show i:nth-child(1) {
    transform: translateY(6px) rotate(-35deg);
    top: 14px;
    left: 10px;
  }
  .nav_toggle.show i:nth-child(2) {
    display: none;
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-5px) rotate(35deg);
    bottom: 14px;
    left: 10px;
  }
  .sp_menu .menu > li {
    font-size: 16px;
    font-family: "Red Hat Display", sans-serif;
    padding: 24px 0 14px 0;
    font-weight: 700;
    border-bottom: 1px solid #ddd;
  }
  .sp_menu .menu > li:nth-of-type(6) {
    border-bottom: none;
    padding-bottom: 0;
  }
  .sp_menu .menu > li:not(:nth-of-type(2)) {
    position: relative;
  }
  .sp_menu .menu > li:not(:nth-of-type(2))::after {
    content: "";
    display: inline-block;
    background-image: url(../images/arrow02.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 5px;
    height: 8px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .sp_menu .menu > li:not(:nth-of-type(2)):hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .sp_menu .menu > li:first-of-type {
    padding-top: 0;
  }
  .sp_menu .menu {
    width: 90%;
    margin: auto;
  }
  .sp_menu .sub-menu {
    display: flex;
    gap: 35px;
    margin-top: 10px;
  }
  .sp_menu .sub-menu li:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .sp_menu .sub-menu li a {
    font-size: 16px;
  }
  /* サブメニューは最初は非表示 */
  .sp_menu .sub-menu {
    display: none;
  }
  .sp_menu .sub-menu li {
    font-size: 14px;
    margin-left: 10px;
    font-weight: 400;
  }
  .sp_menu .sub-menu li:not(:first-child) {
    margin-top: 16px;
  }
  .sp_menu .sub-menu li:last-child {
    margin-bottom: 10px;
  }
  /* 親メニュー */
  .sp_menu .drop_menu > a {
    display: inline-block;
    width: 50%;
    position: relative;
    font-weight: bold;
    cursor: pointer;
  }
  /* ▼矢印（擬似要素） */
  .sp_menu .drop_menu > a::before, .sp_menu .drop_menu > a::after {
    display: inline-block;
    width: 25px;
    height: 25px;
    border: #C0E8F5 1px solid;
    border-radius: 50%;
    background: #FFFFFF;
    position: absolute;
    right: -100%;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
    color: #017EC1;
    text-align: center;
    line-height: 1.7;
  }
  .sp_menu .drop_menu > a::before {
    content: "＋";
  }
  .sp_menu .drop_menu > a::after {
    content: "−";
    opacity: 0;
  }
  .sp_menu .drop_menu.open > a::before {
    opacity: 0;
  }
  .sp_menu .drop_menu.open > a::after {
    opacity: 1;
  }
  header .sp_menu .btn_wrap {
    background-color: transparent;
    justify-content: center;
    margin-top: 6rem;
  }
  header .sp_menu .btn_wrap ul {
    display: flex;
  }
  header .sp_menu .btn_wrap ul li {
    padding: 0;
    border: none;
    margin: 0;
    width: 350px;
    height: 50px;
    font-size: 1.8rem;
    line-height: 2.9;
  }
}
@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  ヘッダー




  /////////////////////////////////////// */
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  ヘッダー




  /////////////////////////////////////// */
  .global_nav {
    padding: 10px 0;
  }
  .nav_toggle {
    width: 30px;
    height: 30px;
    top: 5px;
  }
  .sp_menu {
    padding-top: 85px;
  }
  .nav_toggle i:nth-child(1) {
    top: 10px;
  }
  .nav_toggle i:nth-child(2) {
    bottom: 49%;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 10px;
  }
  .nav_toggle.show i:nth-child(1) {
    top: 10px;
    left: 8px;
  }
  .nav_toggle.show i:nth-child(3) {
    bottom: 8px;
    left: 7px;
  }
  .global_nav .logo {
    width: 140px;
  }
  header .sp_menu .btn_wrap ul li {
    width: 160px;
    height: 35px;
    font-size: 3.2rem;
    line-height: 2.3;
  }
}
/* ///////////////////////////////////////


下層ページタイトル


/////////////////////////////////////// */
.page_mv {
  background-image: url(../images/bg03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 340px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.page_mv .loopTxt {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  z-index: -1;
}
.page_mv .loopTxt ul {
  display: flex;
  gap: 2rem;
}
.page_mv .loopTxt ul:first-child {
  -webkit-animation: txt-slide1 60s -30s linear infinite;
          animation: txt-slide1 60s -30s linear infinite;
}
.page_mv .loopTxt ul:last-child {
  -webkit-animation: txt-slide2 60s linear infinite;
          animation: txt-slide2 60s linear infinite;
}
.page_mv .loopTxt ul li {
  font-family: "Red Hat Display", sans-serif;
  color: rgba(255, 255, 255, 0.3);
  font-size: 18rem;
  font-weight: 700;
}

@-webkit-keyframes txt-slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes txt-slide1 {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes txt-slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes txt-slide2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
.catch {
  position: absolute;
  left: 8%;
  bottom: 8rem;
}

.page_mv h1 {
  font-size: 4.8rem;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #017EC1 0%, #0EB1EA 40%, #0138B6 100%);
  line-height: 1;
}

.page_mv .catch p {
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
  margin-top: 2rem;
}

.news_top .catch {
  width: 90%;
  max-width: 1040px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 6rem;
}
.news_top .catch h1 {
  font-size: 3.2rem;
  background: #191818;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-top: 1.6rem;
  line-height: 1.6;
}
.news_top .catch .loopTxt {
  top: 10%;
}
.news_top .news_head {
  gap: 10px;
}
.news_top .news_head .date, .news_top .news_head .cat {
  margin: 0;
}
.news_top .news_head .date {
  color: #A1A1A1;
  font-size: 14px;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
}
.news_top .news_head .cat {
  color: #FFFFFF;
  font-size: 12px;
  background-color: #017EC1;
  border-radius: 999px;
  padding: 3px 10px;
}

@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////


  下層ページタイトル


  /////////////////////////////////////// */
  .page_mv {
    height: 200px;
  }
  .page_mv h1 {
    font-size: 5.6rem;
  }
  .page_mv .catch {
    left: 5%;
  }
  .page_mv .catch p {
    font-size: 3.2rem;
  }
  .page_mv .loopTxt {
    top: 20%;
  }
  .page_mv .loopTxt ul li {
    font-size: 16rem;
  }
  .news_top .catch {
    width: 90%;
    max-width: 1040px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 4rem;
  }
  .news_top .catch h1 {
    font-size: 4rem;
    margin-top: 2rem;
  }
  .news_top {
    height: 30vh;
  }
}
@media screen and (max-width: 350px) {
  .news_top {
    height: 35vh;
  }
}
/* ///////////////////////////////////////




メンバー紹介　一覧




/////////////////////////////////////// */
.member_list {
  gap: 4rem;
  flex-wrap: wrap;
}
.member_list .item {
  width: calc((100% - 8rem) / 3);
  border-radius: 20px;
  position: relative;
  height: 480px;
  overflow: hidden;
  z-index: 0;
}
.member_list .item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.member_list .item .popupBtn {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.member_list .item.special {
  top: 30px;
}

.member_list .item.special02 {
  top: 60px;
}

.member_list .member_info {
  background-color: #FFFFFF;
  box-sizing: border-box;
  padding: 2rem;
  border-radius: 25px 0 0 0;
  width: 80%;
  position: absolute;
  bottom: 0;
  right: 0;
}
.member_list .member_info .job {
  font-size: 12px;
  font-weight: 500;
}
.member_list .member_info .comment {
  margin-top: 15px;
  font-weight: 700;
  font-size: clamp(1.4rem, 1.11vw, 1.6rem);
}
.member_list .member_info .fl {
  margin-top: 10px;
  gap: 5px;
}
.member_list .member_info .fl h3 {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #017EC1 0%, #0EB1EA 40%, #0138B6 100%);
  font-size: 2rem;
  line-height: 1;
}
.member_list .member_info .fl p {
  font-size: 12px;
  font-weight: 600;
  color: #C1C1C1;
}

/* ///////////////////////////////////////


ポップアップ


/////////////////////////////////////// */
.popupBox__inner {
  display: none;
}

.is-show .popupBox__inner {
  background-color: rgba(25, 24, 24, 0.5);
  display: block;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  transition: all 1s ease-in-out;
}
.is-show .popupBox__inner .popupBox_item {
  max-width: 1040px;
  width: 90%;
  background-color: #FFFFFF;
  border-radius: 4rem;
  height: 90vh;
  box-sizing: border-box;
  transition: all 1s ease-in-out;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  position: relative;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.is-show .popupBox__inner .pa {
  padding: 4rem;
}

.popupBox__close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  cursor: pointer;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.popupBox__close .icon {
  background-color: #017EC1;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popupBox__close .txt {
  font-size: 12px;
  font-weight: 500;
  color: #191818;
}

.popupBox_contents_head {
  align-items: center;
  gap: 4rem;
}
.popupBox_contents_head img {
  border-radius: 15px;
  width: 40%;
  height: auto;
  aspect-ratio: 32/35;
  -o-object-fit: cover;
     object-fit: cover;
}
.popupBox_contents_head .txt_wrap {
  flex: 1;
}
.popupBox_contents_head .txt_wrap .job {
  font-weight: 500;
  line-height: 1;
}
.popupBox_contents_head .name_wrap {
  margin-top: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #C1C1C1;
  gap: 1rem;
  align-items: baseline;
}
.popupBox_contents_head .name_wrap h3 {
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #017EC1 0%, #0EB1EA 40%, #0138B6 100%);
  font-size: 3.2rem;
  line-height: 1;
}
.popupBox_contents_head .name_wrap p {
  color: #C1C1C1;
}
.popupBox_contents_head .comment {
  margin-top: 2.4rem;
  font-weight: 700;
  font-size: 3.2rem;
  line-height: 1.6;
}

.popupBox_contents_item h4, .gallery h4 {
  background: -webkit-linear-gradient(270deg, #017EC1 0%, #0193C6 50%, #0138B6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 2.4rem;
  font-weight: 600;
  font-family: "Red Hat Display", sans-serif;
}
.popupBox_contents_item h4::before, .gallery h4::before {
  content: "";
  display: inline-block;
  height: 8px;
  width: 8px;
  border-radius: 1px;
  margin-right: 5px;
  vertical-align: middle;
  background: linear-gradient(180deg, #017EC1 0%, #0193C6 50%, #0138B6 100%);
  transform: rotate(45deg);
}

.popupBox_contents_item dl .fl {
  padding-bottom: 1.8rem;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
}
.popupBox_contents_item dl .fl::before {
  content: "";
  display: inline-block;
  width: 25%;
  height: 1px;
  background-color: #017EC1;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.popupBox_contents_item dl .fl:not(:first-of-type) {
  margin-top: 2.4rem;
}
.popupBox_contents_item dl dt {
  color: #017EC1;
  font-weight: 700;
  width: 25%;
}
.popupBox_contents_item dl dd {
  width: 100%;
}
.popupBox_contents_item dl .child {
  width: 75%;
}

.msg_wrap {
  background: linear-gradient(150deg, #017EC1 0%, #0193C6 51%, #0138B6 100%);
  box-sizing: content-box;
  padding: 4rem;
  border-radius: 1.5rem;
}
.msg_wrap h4 {
  background: #FFFFFF;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.msg_wrap h4::before {
  background: #FFFFFF;
}
.msg_wrap p {
  margin-top: 2.4rem;
  color: #FFFFFF;
  white-space: pre-line;
}

.gallery {
  padding: 4rem;
  background: linear-gradient(90deg, #EEF6F8 0%, #fff 100%);
}
.gallery .fl {
  gap: 2rem;
  flex-wrap: wrap;
}
.gallery .fl img {
  width: calc((100% - 4rem) / 3);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 5px;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  メンバー一覧ページ




  /////////////////////////////////////// */
  .member_list {
    flex-direction: row;
  }
  .member .member_list .item {
    width: calc((100% - 4rem) / 2);
  }
  .member .member_list .item:nth-of-type(even) {
    top: 30px;
  }
  .member_list .item.special {
    top: auto;
  }
  .member_list .item.special02 {
    top: auto;
  }
  .member_list .member_info .fl {
    flex-direction: row;
  }
  .popupBox_contents_head img {
    width: 100%;
    aspect-ratio: 6/5;
    -o-object-position: 0 20%;
       object-position: 0 20%;
  }
  .is-show .popupBox__inner .pa {
    padding: 12rem 4rem 4rem 4rem;
  }
  .popupBox_contents_head .txt_wrap {
    width: 100%;
  }
  .popupBox_contents_head .name_wrap {
    flex-direction: row;
  }
  .popupBox_contents_item dl .fl {
    gap: 1rem;
  }
  .popupBox_contents_item dl dt {
    width: 100%;
  }
  .popupBox_contents_item dl .child {
    width: 100%;
  }
  .gallery .fl {
    flex-direction: row;
  }
  .gallery .fl img {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  メンバー一覧ページ




  /////////////////////////////////////// */
  .member_list {
    flex-direction: column;
  }
  .member .member_list .item {
    width: 100%;
    height: auto;
    aspect-ratio: 5/6;
    min-height: 400px;
  }
  .member .member_list .item:nth-of-type(even) {
    top: auto;
  }
  .member_list .member_info {
    padding: 3rem;
  }
  .member_list .member_info .fl h3 {
    font-size: 3.6rem;
  }
  .member_list .member_info .comment {
    font-size: 2.8rem;
  }
  .msg_wrap {
    border-radius: 2rem;
  }
  .popupBox_contents_head img {
    aspect-ratio: 31/24;
  }
  .popupBox__close {
    top: 2rem;
  }
  .popupBox__close .icon {
    width: 25px;
    height: 25px;
    font-size: 14px;
  }
  .popupBox__close .txt {
    font-size: 10px;
  }
  .popupBox_contents_head .name_wrap h3 {
    font-size: 4.8rem;
  }
  .popupBox_contents_head .comment {
    font-size: 4rem;
  }
  .popupBox_contents_item h4, .gallery h4 {
    font-size: 3.2rem;
  }
  .popupBox_contents_item h4::before, .gallery h4::before {
    width: 6px;
    height: 6px;
    vertical-align: middle;
  }
  .popupBox_contents_item dl .fl {
    padding-bottom: 2rem;
  }
}
/* ///////////////////////////////////////




記事ページ




/////////////////////////////////////// */
.news_post {
  padding-bottom: 10rem;
}
.news_post .container {
  max-width: 850px;
  width: 90%;
}

.news_content h2 {
  font-size: 2.4rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #DDDDDD;
  padding-bottom: 10px;
  position: relative;
  margin-top: 4rem;
  color: #017EC1;
}
.news_content h2::before {
  content: "";
  display: inline-block;
  width: 15%;
  height: 1px;
  background-color: #017EC1;
  left: 0;
  bottom: -1px;
  position: absolute;
}
.news_content p:not(:first-of-type) {
  margin-top: 2.4rem;
}
.news_content h3, .news_content h4, .news_content h5, .news_content h6 {
  font-size: 2rem;
  background-color: #F1FBFF;
  color: #017EC1;
  box-sizing: border-box;
  padding: 1.5rem 2rem;
  border-left: 10px solid #017EC1;
  border-radius: 5px;
  margin-top: 4rem;
}
.news_content img {
  width: 100%;
  height: auto;
  margin-top: 4rem;
}

.news_contentWrap .btn {
  margin-top: 10rem;
}

.return {
  margin: 10rem auto 0 auto;
  color: #017EC1;
  font-weight: 700;
}
.return a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.return a img {
  width: 10px;
  height: auto;
  transition: transform 0.4s ease;
  transform: translateX(0);
}
.return a span {
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid #C0E8F5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.return a:hover img {
  -webkit-animation: img_slide2 0.6s ease forwards;
          animation: img_slide2 0.6s ease forwards;
}

@-webkit-keyframes img_slide2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(-60px);
    opacity: 0;
  }
  41% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes img_slide2 {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  40% {
    transform: translateX(-60px);
    opacity: 0;
  }
  41% {
    transform: translateX(60px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* ///////////////////////////////////////




記事一覧ページ




/////////////////////////////////////// */
.news_head {
  gap: 10px;
}
.news_head .date, .news_head .cat {
  margin: 0;
}
.news_head .date {
  color: #A1A1A1;
  font-size: 14px;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
}
.news_head .cat {
  color: #FFFFFF;
  font-size: 12px;
  background-color: #017EC1;
  border-radius: 999px;
  padding: 3px 10px;
}

.post .news_list h2 {
  margin-top: 1.6rem;
  font-size: 1.6rem;
}

.post .news_list {
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  position: relative;
}
.post .news_list:not(:first-of-type) {
  padding-top: 3.2rem;
}
.post .news_list:not(:last-of-type) {
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #DDDDDD;
}
.post .news_list .ttl_wrap {
  flex: 1;
}
.post .news_list a {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.post .news_list:hover .btn_circle img {
  -webkit-animation: img_slide 0.6s ease forwards;
          animation: img_slide 0.6s ease forwards;
}

.news_list .btn_circle {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #C0E8F5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.news_list .btn_circle img {
  width: 10px;
  height: auto;
}

.pagination {
  margin-top: 8rem;
}

.nav-links {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 700;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

span.page-numbers.current {
  display: inline-block;
  width: 40px;
  height: 40px;
  background-color: #017EC1;
  border-radius: 50%;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.prev.page-numbers, a.next.page-numbers {
  color: #017EC1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #017EC1;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 900;
  overflow: hidden;
}
a.prev.page-numbers::before, a.next.page-numbers::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 7px;
}

a.prev.page-numbers::before {
  background: url(../images/arrow04.png);
  background-size: contain;
  background-repeat: no-repeat;
}
a.prev.page-numbers:hover::before {
  -webkit-animation: img_slide2 0.6s ease forwards;
          animation: img_slide2 0.6s ease forwards;
}

a.next.page-numbers::before {
  background: url(../images/arrow03.png);
  background-size: contain;
  background-repeat: no-repeat;
}
a.next.page-numbers:hover::before {
  -webkit-animation: img_slide 0.6s ease forwards;
          animation: img_slide 0.6s ease forwards;
}

a.page-numbers {
  transition: 0.5s;
}
a.page-numbers:hover {
  color: #017EC1;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  記事一覧ページ




  /////////////////////////////////////// */
  .news_list {
    flex-direction: row;
  }
  .news_list .news_head {
    flex-direction: row;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  記事ページ




  /////////////////////////////////////// */
  .news_content h2 {
    font-size: 3.6rem;
  }
  .news_content h3, .news_content h4, .news_content h5, .news_content h6 {
    font-size: 3.2rem;
    padding: 10px 16px;
    border-left: 6px solid #017EC1;
  }
  /* ///////////////////////////////////////




  記事一覧ページ




  /////////////////////////////////////// */
  .post .news_list h2 {
    font-size: 2.8rem;
    margin-top: 2rem;
  }
  .post .news_list {
    gap: 4rem;
  }
  .post .news_list:not(:first-of-type) {
    padding-top: 4rem;
  }
  .news_list .btn_circle {
    width: 30px;
    height: 30px;
  }
  .news_list .btn_circle img {
    width: 7px;
  }
  .post .news_list .news_head .date, .post .news_list .news_head .cat {
    font-size: 12px;
  }
  a.prev.page-numbers, a.next.page-numbers {
    width: 35px;
    height: 35px;
  }
  span.page-numbers.current {
    width: 35px;
    height: 35px;
  }
  .nav-links {
    gap: 3rem;
  }
}
/* ///////////////////////////////////////




Message 代表挨拶




/////////////////////////////////////// */
.message .fl .txt_wrap {
  flex: 1;
}
.message .fl .txt_wrap h3 {
  font-size: 3.2rem;
  line-height: 1.4;
}
.message .fl .txt_wrap .txt {
  margin-top: 4rem;
}
.message .fl .txt_wrap .name {
  margin-top: 4rem;
  font-weight: 500;
  text-align: right;
  line-height: 1.2;
}

.message .fl {
  align-items: center;
}
.message .fl .img_wrap {
  width: 40%;
  border-radius: 2rem;
}
.message .fl img {
  width: 100%;
  height: 100%;
}

/* ///////////////////////////////////////




Company Info 会社情報




/////////////////////////////////////// */
.company_info dt {
  width: 25%;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #017EC1 0%, #0EB1EA 40%, #0138B6 100%);
  font-weight: 700;
}
.company_info dd {
  width: 100%;
}
.company_info .child {
  width: 75%;
}

.company_info .fl:not(:last-of-type) {
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #DDDDDD;
  position: relative;
}
.company_info .fl:not(:last-of-type)::before {
  content: "";
  display: inline-block;
  width: 25%;
  height: 1px;
  background-color: #017EC1;
  left: 0;
  bottom: -1px;
  position: absolute;
}
.company_info .fl:not(:first-of-type) {
  padding-top: 3.2rem;
}

.company_info .map {
  width: 100%;
  margin-top: 1.5rem;
  height: 380px;
}
.company_info .map iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  Message 代表挨拶




  /////////////////////////////////////// */
  .message .fl {
    flex-direction: column-reverse;
  }
  .message .fl .img_wrap {
    width: 100%;
    height: 75vw;
  }
  .message .fl .img_wrap img {
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 0 20%;
       object-position: 0 20%;
  }
  /* ///////////////////////////////////////




  Company Info 会社情報




  /////////////////////////////////////// */
  .company_info .fl {
    flex-direction: row;
  }
  .company_info .map {
    height: 300px;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  Message 代表挨拶




  /////////////////////////////////////// */
  .message .fl .txt_wrap h3 {
    font-size: 4rem;
  }
  .message .fl .txt_wrap .txt {
    margin-top: 2.4rem;
  }
  /* ///////////////////////////////////////




  Company Info 会社情報




  /////////////////////////////////////// */
  .company_info .map {
    height: 180px;
  }
  .company_info .fl:not(:last-of-type) {
    padding-bottom: 2rem;
  }
}
/* ///////////////////////////////////////




コンタクトフォーム




/////////////////////////////////////// */
.contact_form .container {
  max-width: 1100px;
}

.select {
  width: 100%;
  max-width: 260px;
  position: relative;
  overflow: hidden;
  height: 50px;
}
.select p {
  background-color: transparent;
}

.select::before {
  content: "";
  width: 10px;
  height: 5px;
  background-image: url(../images/arrow05.png);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.box {
  width: 100%;
  height: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  border: none;
  background-color: #FAFAFA;
  line-height: 1;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
}

.box::-ms-expand {
  display: none;
}

.contact_form .must,
.contact_form .any {
  color: #FFFFFF;
  margin-right: 5px;
  font-weight: 500;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 999px;
}

.contact_form .must {
  background-color: #017EC1;
}

.contact_form .any {
  background-color: #A0A0A0;
}

.contact_form dl {
  display: flex;
}
.contact_form dl:not(:last-of-type) {
  align-items: center;
}
.contact_form dl dt {
  width: 30%;
  font-weight: 500;
  font-weight: 700;
  font-family: "Red Hat Display", sans-serif;
}
.contact_form dl dd {
  width: 70%;
  font-family: "Red Hat Display", sans-serif;
  font-weight: 500;
}

.contact_form dl:not(:first-of-type) {
  margin-top: 3.2rem;
}

span.wpcf7-list-item {
  display: block;
  margin: 0;
}

input.wpcf7-form-control.wpcf7-text {
  width: 100%;
  border-radius: 2px;
  border: none;
  height: 50px;
  font-size: 14px;
  box-sizing: border-box;
  padding: 1.5rem;
  background-color: #FAFAFA;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  height: 200px;
  border: none;
  padding: 1.5rem;
  box-sizing: border-box;
  font-size: 1.6rem;
  background-color: #FAFAFA;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
}

::-moz-placeholder {
  color: #A0A0A0;
}

:-ms-input-placeholder {
  color: #A0A0A0;
}

::placeholder {
  color: #A0A0A0;
}

/* 旧Edge対応 */
::-ms-input-placeholder {
  color: #A0A0A0;
}

/* IE対応 */
:-ms-input-placeholder {
  color: #A0A0A0;
}

input:focus {
  outline: 1px solid #A0A0A0;
}

textarea:focus {
  outline: 1px solid #A0A0A0;
}

.submit_btn {
  margin: 6rem 0;
  display: block;
  text-align: center;
}

input.wpcf7-form-control.wpcf7-submit {
  background: linear-gradient(150deg, #017EC1 0%, #0193C6 51%, #0138B6 100%);
  height: 55px;
  width: 280px;
  border-radius: 999px;
  font-weight: 700;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  transition: 0.5s;
  text-align: center;
}
input.wpcf7-form-control.wpcf7-submit:hover {
  opacity: 0.7;
  transform: scale(0.95);
}

.wpcf7-spinner {
  display: none !important;
}

.privacy_policy_box {
  height: 250px;
  width: 100%;
  padding: 2.5rem 2rem;
  box-sizing: border-box;
  overflow-y: scroll;
  margin-top: 1.6rem;
  background-color: #FAFAFA;
  border: 1px solid #DDDDDD;
  border-radius: 5px;
  font-size: 1.4rem;
}
.privacy_policy_box .bold {
  font-weight: 700;
}
.privacy_policy_box ul {
  padding-left: 1.5em;
}
.privacy_policy_box ul > li {
  list-style: disc !important;
}

.margin_top {
  margin-top: 2.4rem;
}

.checkbox_wrap {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
}
.checkbox_wrap p {
  font-weight: 700;
}

.privacy_policy {
  margin-top: 3.2rem;
}

.privacy_policy_box::-webkit-scrollbar {
  width: 16px;
}

.privacy_policy_box::-webkit-scrollbar-thumb {
  background: #017EC1;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  background-clip: padding-box;
  border-radius: 999px;
}

.privacy_policy_box::-webkit-scrollbar-track {
  background: transparent;
  margin-top: 5px;
  margin-bottom: 5px;
}

.checkbox_wrap span.wpcf7-list-item {
  margin: 0 0 0 0; /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
  text-align: center;
}

.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
  position: relative;
  font-weight: 700;
}

.wpcf7-list-item-label {
  cursor: pointer; /* labelにhoverした時にカーソルを表示させる */
}

input[type=checkbox] {
  opacity: 0; /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
}

.wpcf7-list-item-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #DDDDDD;
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  margin-right: 10px;
  position: relative;
  top: -1px;
  vertical-align: middle;
}

.first {
  margin-top: 0 !important;
}

input[type=checkbox]:checked + .wpcf7-list-item-label::after {
  /* チェックアイコン */
  background: url("../images/check.png") no-repeat center;
  background-size: contain;
  content: "";
  width: 16px;
  height: 16px;
  left: 3px;
  position: absolute;
  top: 5px;
}

p.checkbox_txt {
  margin-top: 10px;
  font-size: 1.4rem;
}

@media screen and (max-width: 980px) {
  .contact_form dl {
    flex-direction: column;
    gap: 12px;
  }
  .contact_form dl dt {
    width: 100%;
  }
  .contact_form dl dd {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .select {
    max-width: initial;
    width: 100%;
    height: 40px;
  }
  .select::before {
    width: 12px;
    height: 6px;
    right: 10px;
  }
  .select .box {
    font-size: 2.8rem;
  }
  .select p {
    height: 100%;
  }
  .contact_form dl:not(:first-of-type) {
    margin-top: 4rem;
  }
  input.wpcf7-form-control.wpcf7-text {
    height: 40px;
    font-size: 2.8rem;
    padding: 2rem;
  }
  textarea.wpcf7-form-control.wpcf7-textarea {
    height: 160px;
    padding: 2rem;
    font-size: 2.8rem;
  }
  .contact_form dl:not(:first-of-type) {
    margin-top: 4rem;
  }
  .privacy_policy_box {
    height: 180px;
    padding: 2rem;
    margin-top: 2.4rem;
    font-size: 12px;
  }
  p.privacy_policy {
    margin-top: 4rem;
  }
  .checkbox_wrap {
    margin-top: 2rem;
    align-items: flex-start;
  }
  input.wpcf7-form-control.wpcf7-submit {
    font-size: 3.2rem;
    height: 45px;
    max-width: 160px;
    width: 100%;
    line-height: 1.9;
  }
  .checkbox_wrap .wpcf7-list-item-label::before {
    width: 15px;
    height: 15px;
  }
  input[type=checkbox]:checked + .wpcf7-list-item-label::after {
    width: 12px;
    height: 12px;
    left: 3px;
    top: 5px;
  }
  .contact_form .center {
    margin-top: 10rem;
  }
  p.checkbox_txt {
    font-size: 12px;
  }
}
/* ///////////////////////////////////////




Our Mission




/////////////////////////////////////// */
.mvv {
  background-image: url(../images/bg04.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: #FFFFFF;
}

.mvv .fl {
  justify-content: space-between;
  gap: 6rem;
}
.mvv .fl:first-of-type {
  padding-bottom: 10rem;
  border-bottom: 1px solid #FFFFFF;
}
.mvv .fl:nth-of-type(2) {
  padding-top: 10rem;
}

.mvv .con_ttl_white h2 {
  font-size: clamp(3.2rem, 2.77vw, 4rem);
}

.mvv .txt {
  width: 55%;
  line-height: 2.4;
  flex-shrink: 0;
}

/* ///////////////////////////////////////




Our value




/////////////////////////////////////// */
.value {
  margin-top: 10rem;
  border-radius: 15rem 0 0 0;
}

.value .con_ttl p {
  font-family: "Red Hat Display", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  background: -webkit-linear-gradient(270deg, #017EC1 0%, #0193C6 50%, #0138B6 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.value .con_ttl p::before {
  background: linear-gradient(180deg, #017EC1 0%, #0193C6 50%, #0138B6 100%);
}
.value .con_ttl h2 {
  font-size: 4rem;
  color: #191818;
}

.value_list {
  gap: 4rem;
  flex-wrap: wrap;
}
.value_list .item {
  width: calc((100% - 8rem) / 3);
  background: linear-gradient(150deg, #017EC1 0%, #0193C6 51%, #0138B6 100%);
  border-radius: 1.5rem;
  box-sizing: border-box;
  padding: 4rem 2.5rem;
}
.value_list .item h3 {
  font-size: 2.4rem;
  text-align: center;
  color: #FFFFFF;
}
.value_list .item p {
  margin-top: 2rem;
  color: #FFFFFF;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  Our Mission




  /////////////////////////////////////// */
  .mvv .con_ttl_white h2 {
    font-size: 4rem;
  }
  .mvv .txt {
    width: 100%;
  }
  /* ///////////////////////////////////////




  Our value




  /////////////////////////////////////// */
  .value_list {
    flex-direction: row;
    gap: 2rem;
  }
  .value_list .item {
    width: calc((100% - 2rem) / 2);
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  Our Mission




  /////////////////////////////////////// */
  .mvv .con_ttl_white h2 {
    font-size: 4.8rem;
  }
  .mvv .fl {
    gap: 2.4rem;
  }
  /* ///////////////////////////////////////




  Our value




  /////////////////////////////////////// */
  .value .con_ttl_white p {
    font-size: 3.6rem;
  }
  .value .con_ttl_white h2 {
    font-size: 4.8rem;
  }
  .value {
    border-radius: 16rem 0 0 0;
  }
  .value_list .item {
    padding: 4rem 3rem;
  }
  .value_list .item h3 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 360px) {
  .value_list {
    flex-direction: column;
  }
  .value_list .item {
    width: 100%;
  }
}
/* ///////////////////////////////////////




事業概要




/////////////////////////////////////// */
.overview .img_wrap {
  border-radius: 0 6rem 6rem 0;
  width: 600px;
  height: auto;
  margin-left: calc(50% - 50vw);
}
.overview .img_wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.overview .fl {
  gap: 6rem;
  align-items: center;
}

.overview .fl .txt_wrap {
  flex: 1;
}
.overview .fl .txt_wrap h3 {
  font-size: 4rem;
  line-height: 1.4;
}

.overview .illust img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1100px) {
  .overview .fl {
    flex-direction: column;
  }
  .overview .img_wrap {
    width: 100vw;
    aspect-ratio: 37/24;
  }
}
/* ///////////////////////////////////////




Features サービスの特徴




/////////////////////////////////////// */
.features .fl {
  gap: 4rem;
}
.features .fl .item {
  width: calc((100% - 8rem) / 3);
  color: #FFFFFF;
}
.features .fl .item h3 {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
}
.features .fl .item h4 {
  font-size: clamp(2rem, 1.67vw, 2.4rem);
  margin-top: 1.6rem;
  line-height: 1.4;
}
.features .fl .item p {
  margin-top: 1.6rem;
}
.features .fl .item .img_box {
  background-color: #FFFFFF;
  border-radius: 15px;
  box-sizing: border-box;
  padding: 2rem;
  width: 100%;
  aspect-ratio: 32/21;
  margin-top: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.features .fl .item .img_box img {
  width: 100%;
  height: auto;
}

/* ///////////////////////////////////////




Strengths 私たちの強み




/////////////////////////////////////// */
.strengths {
  margin-top: 10rem;
}

.strengths_list {
  gap: 2.4rem;
}
.strengths_list .num {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: linear-gradient(90deg, #017EC1 0%, #0EB1EA 40%, #0138B6 100%);
}
.strengths_list h3 {
  font-size: 4rem;
  line-height: 1.2;
}
.strengths_list .txt {
  margin-top: 4rem;
}
.strengths_list img {
  margin-top: 4rem;
  width: 100%;
  height: auto;
  border-radius: 40px 0 0 0;
  aspect-ratio: 99/35;
  -o-object-fit: cover;
     object-fit: cover;
}
.strengths_list .img_wrap::before {
  background-color: #EFF8FA;
}

/* ///////////////////////////////////////




Flow ご利用の流れ




/////////////////////////////////////// */
.scroll {
  width: 100%;
  overflow: scroll;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE10+ */
}

.scroll::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}

.flow_list {
  min-width: 1000px;
  margin: auto;
  gap: 35px;
  position: relative;
}
.flow_list::before {
  content: "";
  display: inline-block;
  height: 2px;
  width: 95%;
  background-color: #017EC1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
.flow_list .item_wrap {
  background: linear-gradient(150deg, #017EC1 0%, #0193C6 51%, #0138B6 100%);
  border-radius: 50%;
  width: calc((100% - 140px) / 5);
  height: auto;
  aspect-ratio: 1/1;
  box-sizing: border-box;
  padding: 2px;
  position: relative;
}
.flow_list .item_wrap > div {
  background-color: #FFFFFF;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flow_list .item_wrap .num {
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 500;
  font-family: "Red Hat Display", sans-serif;
  background-color: #017EC1;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 10px;
}
.flow_list .item_wrap img {
  width: 50px;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
.flow_list .item_wrap .txt {
  margin-top: 5px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
}

@media screen and (max-width: 980px) {
  /* ///////////////////////////////////////




  Features サービスの特徴




  /////////////////////////////////////// */
  .features .fl .item {
    width: 100%;
  }
  .features .fl .item h4 {
    font-size: 2.4rem;
  }
  /* ///////////////////////////////////////




  Strengths 私たちの強み




  /////////////////////////////////////// */
  .strengths_list {
    flex-direction: row;
  }
  /* ///////////////////////////////////////




  Flow ご利用の流れ




  /////////////////////////////////////// */
  .flow_list {
    flex-direction: row;
  }
}
@media screen and (max-width: 650px) {
  /* ///////////////////////////////////////




  事業概要




  /////////////////////////////////////// */
  .overview .fl .txt_wrap h3 {
    font-size: 4.8rem;
  }
  /* ///////////////////////////////////////




  Features サービスの特徴




  /////////////////////////////////////// */
  .features .fl .item h3 {
    font-size: 4rem;
  }
  .features .fl .item h4 {
    font-size: 4rem;
    margin-top: 4rem;
  }
  .features .fl .item .img_box {
    margin-top: 2rem;
  }
  .features .fl .item p {
    margin-top: 4rem;
  }
  /* ///////////////////////////////////////




  Strengths 私たちの強み




  /////////////////////////////////////// */
  .strengths_list {
    gap: 2rem;
  }
  .strengths_list .num {
    font-size: 3.6rem;
  }
  .strengths_list h3 {
    font-size: 4.8rem;
  }
  .strengths_list .txt {
    margin-top: 4.8rem;
  }
  .strengths_list img {
    aspect-ratio: 32/23;
  }
}/*# sourceMappingURL=style.css.map */