@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 1700px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 1300px) and (max-width: 1699px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 950px) and (max-width: 1299px) {
  html {
    font-size: 8px;
  }
}
@media screen and (min-width: 640px) and (max-width: 949px) {
  html {
    font-size: 10px;
  }
}
@media screen and (max-width: 639px) {
  html {
    font-size: 7.5px;
  }
}

* {
  font-family: "Noto Sans JP, Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif !important;
}

body {
  font-weight: 500;
  font-size: 1.6rem;
  overflow-x: hidden;
  padding-top: 8rem;
}

img {
  max-width: 100%;
  width: 100%;
}

@media screen and (min-width: 950px) {
  .header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background: #fff;
    padding: 1.5rem 6rem 2.5rem;
    gap: 3rem;
  }
  .header .header-logo {
    width: auto;
  }
  .header .header-logo .header-logo-image {
    width: 9rem;
    height: auto;
    margin-bottom: 1.1rem;
  }
  .header .header-logo .header-logo-image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header .header-logo .header-logo-text {
    font-size: 1.4rem;
  }
  .header .header-menu {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .header .g_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 5rem;
  }
  .header .g_nav .list_item a {
    color: #111442;
    padding: 1.5rem 0;
    border-bottom: solid 0.1rem transparent;
    position: relative;
  }
  .header .g_nav .list_item a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #000000;
    bottom: -1px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; /*変形の時間*/
  }
  .header .g_nav .list_item a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  }
  .header .g_nav .list_item .jp-en {
    background: #0f2a74 0% 0% no-repeat padding-box;
    border-radius: 4.1rem;
    color: #fff;
    padding: 1.5rem 2rem;
    border-bottom: solid 0.1rem transparent !important;
  }
  .header .g_nav .list_item .jp-en::after {
    display: none;
  }
  .header .g_nav .list_item .jp-en:hover {
    opacity: 0.75;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
}
@media screen and (max-width: 949px) {
  .header {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    background: #fff;
    padding: 1.5rem 2rem 2.5rem;
    gap: 3rem;
  }
  .header .header-logo {
    width: auto;
  }
  .header .header-logo .header-logo-image {
    width: 9rem;
    height: auto;
    margin-bottom: 1.1rem;
  }
  .header .header-logo .header-logo-image img {
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header .header-logo .header-logo-text {
    font-size: 1.4rem;
  }
  .header .header-menu {
    display: none;
  }
  .header .g_nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
  }
  .header .g_nav .list_item a {
    color: #111442;
  }
  .header .g_nav .list_item .jp-en {
    background: #0f2a74 0% 0% no-repeat padding-box;
    border-radius: 4.1rem;
    color: #fff;
    padding: 2rem 2rem;
  }
}
/* リセットCSS */
/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
  /* ボタンの配置位置  */
  position: fixed;
  top: 1.6rem;
  right: 1.6rem;
  /* ボタンの大きさ  */
  width: 5.8rem;
  height: 4.8rem;
  /* バーガーの線をボタン範囲の中心に配置 */
  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;
  /* 最前面に */
  z-index: 11;
}

/***** 真ん中のバーガー線 *****/
.btn-line {
  /* 線の長さと高さ */
  width: 100%;
  height: 0.4rem;
  /* バーガー線の色 */
  background-color: #0f2a74;
  /* バーガー線の位置基準として設定 */
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

/***** 上下のバーガー線 *****/
.btn-line::before,
.btn-line::after {
  /* 基準線と同じ大きさと色 */
  position: absolute;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-line::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #0f2a74;
  /* 上の線の位置 */
  -webkit-transform: translateY(-1.6rem);
          transform: translateY(-1.6rem);
}

.btn-line::after {
  content: "menu";
  /* 下の線の位置 */
  display: block;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(0.8rem);
          transform: translateY(0.8rem);
  color: #0f2a74;
}

/***** メニューオープン時 *****/
.btn-line.open {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.btn-line.open::before {
  content: "";
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.btn-line.open::after {
  content: "close";
  color: #0f2a74;
}

/* ここまでボタンアニメーション */
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  padding: 10rem 2rem 5rem;
  /* メニューの位置マイナス指定で画面外に */
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  width: 30%;
  height: 100vh;
  /* メニューを縦に */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2rem;
  color: #0f2a74;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  z-index: 10;
}
@media screen and (max-width: 949px) {
  .menu {
    width: 50%;
  }
}

.menu-list {
  width: 100%;
  height: auto;
  /* メニューテキスト位置をリスト内中心に */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-bottom: solid 0.1rem #0f2a74;
}
.menu-list a {
  display: inline-block;
  width: 100%;
  font-size: 3rem;
  padding: 3rem 1rem;
}
@media screen and (max-width: 949px) {
  .menu-list a {
    font-size: 1.5rem;
    padding: 3rem 1rem;
  }
}

.menu-list:hover {
  color: #fff;
  background-color: #0f2a74;
  cursor: pointer;
}

/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/**************** ここまで、メニューのスタイリング ****************/
@media screen and (min-width: 950px) {
  .kv {
    overflow: hidden;
    height: 82rem;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .kv .kv-bg {
    width: 83%;
    height: 82rem;
  }
  .kv .kv-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center right;
       object-position: center right;
  }
  .kv .kv-title-wrapper {
    position: absolute;
    top: 47%;
    left: 3%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: transparent -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(30%, rgba(255, 255, 255, 0.7019607843)), color-stop(56%, rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0))) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7019607843) 30%, rgba(255, 255, 255, 0.4) 56%, rgba(255, 255, 255, 0) 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
  }
  .kv .kv-title {
    text-align: left;
    font: normal bold 4rem/8rem Zen Kaku Gothic New;
    letter-spacing: 0.4rem;
    color: #202734;
  }
  .kv .kv-title.en {
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width: 949px) {
  .kv {
    overflow: hidden;
    height: 50vh;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .kv .kv-bg {
    width: 100%;
    height: 100%;
  }
  .kv .kv-bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center right;
       object-position: center right;
  }
  .kv .kv-title-wrapper {
    position: absolute;
    top: 60%;
    left: 3%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: transparent -webkit-gradient(linear, left top, right top, from(#ffffff), color-stop(30%, rgba(255, 255, 255, 0.7019607843)), color-stop(56%, rgba(255, 255, 255, 0.4)), to(rgba(255, 255, 255, 0))) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0.7019607843) 30%, rgba(255, 255, 255, 0.4) 56%, rgba(255, 255, 255, 0) 100%) 0% 0% no-repeat padding-box;
    opacity: 1;
    padding-left: 2rem;
  }
  .kv .kv-title-wrapper.en {
    position: absolute;
    top: 60%;
    left: 3%;
  }
  .kv .kv-title {
    text-align: left;
    font: normal normal bold 2rem/4rem Zen Kaku Gothic New;
    letter-spacing: 0.4rem;
    color: #202734;
  }
  .kv .kv-title.en {
    letter-spacing: 0.1rem;
  }
}
@media screen and (min-width: 950px) {
  .news {
    background-color: rgba(12, 64, 235, 0.0784313725);
  }
  .news .news-inner {
    background-color: #fff;
    border-radius: 0 0 10rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .news .news-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 10rem 5rem 10rem 0;
    width: 83%;
    gap: clamp(1rem, 5%, 10rem);
  }
  .news .news-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .news .news-title {
    text-align: left;
    font: normal bold 4.8rem/5.8rem Noto Sans JP;
    letter-spacing: 0.3rem;
    color: #202734;
    margin-bottom: 1rem;
  }
  .news .news-title-sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0.5rem;
    text-align: left;
    font: normal bold 1.4rem/1.7rem Noto Sans JP;
    color: #202734;
    border-bottom: 0.2rem solid #0c40eb;
  }
  .news .news-list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .news .news-item {
    width: clamp(0rem, 100%, 92rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 2rem;
  }
  .news .news-item .news-date {
    text-align: left;
    font: normal normal normal 1.4rem/1.7rem Noto Sans JP;
    letter-spacing: 0;
  }
  .news .news-item .news-text {
    text-align: left;
    font: normal normal normal 1.8rem/2.2rem Noto Sans JP;
    letter-spacing: 0;
    color: #202734;
    line-height: 1.5em;
	}
	.news .news-item .news-text a{
		color: #2874ef;
		text-decoration:underline;
	}
	.news .news-item .news-text a:hover{
		text-decoration:none;
	}
}
@media screen and (max-width: 949px) {
  .news {
    background-color: rgba(12, 64, 235, 0.0784313725);
  }
  .news .news-inner {
    background-color: #fff;
    border-radius: 0 0 10rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .news .news-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 5rem;
    width: 100%;
    gap: 3rem;
  }
  .news .news-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .news .news-title {
    text-align: left;
    font: normal bold 4rem/5rem Noto Sans JP;
    letter-spacing: 0.3rem;
    color: #202734;
    margin-bottom: 1rem;
  }
  .news .news-title-sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0.5rem;
    text-align: left;
    font: normal bold 1.4rem/1.7rem Noto Sans JP;
    color: #202734;
    border-bottom: 0.2rem solid #0c40eb;
  }
  .news .news-list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .news .news-item {
    width: clamp(0rem, 100%, 92rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 2rem;
  }
  .news .news-item .news-date {
    text-align: left;
    font: normal normal normal 1.4rem/1.7rem Noto Sans JP;
    letter-spacing: 0;
  }
  .news .news-item .news-text {
    text-align: left;
    font: normal normal normal 1.8rem/2.2rem Noto Sans JP;
    letter-spacing: 0;
    color: #202734;
    line-height: 1.5em;
	}
	.news .news-item .news-text a{
		color: #2874ef;
		text-decoration:underline;
	}
	.news .news-item .news-text a:hover{
		text-decoration:none;
	}
}
@media screen and (min-width: 500px) {
  .services .PC_NONE {
    display: none;
  }
}
@media screen and (min-width: 950px) {
  .services {
    background-color: #fff;
  }
  .services .PC_NONE {
    display: none;
  }
  .services .services-inner {
    background-color: rgba(12, 64, 235, 0.0784313725);
    border-radius: 10rem 0 10rem 0;
    padding: 11.8rem 0 12.9rem;
  }
  .services .services-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 5rem;
  }
  .services .services-title {
    text-align: left;
    font: normal bold 4.8rem/5.8rem Noto Sans JP;
    letter-spacing: 0.3rem;
    color: #202734;
    margin-bottom: 0.9rem;
  }
  .services .services-title-sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0.5rem;
    text-align: left;
    font: normal bold 1.4rem/1.7rem Noto Sans JP;
    color: #202734;
    border-bottom: 0.2rem solid #0c40eb;
  }
  .services .services-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 7.5rem;
    padding: 10rem 5rem;
    width: 97%;
    margin: 0 0 0 auto;
    border-radius: 2rem 0 0 2rem;
    background-color: #fff;
    background-color: rgba(187, 211, 255, 0.8078431373) 0% 0% no-repeat padding-box;
    background-image: url("../img/04_services/services_bg@2x.png");
    background-size: cover;
    background-position: center;
  }
}
@media screen and (min-width: 950px) and (min-width: 1300px) and (max-width: 1699px) {
  .services .services-container {
    gap: 7.5rem;
  }
}
@media screen and (min-width: 950px) and (min-width: 950px) and (max-width: 1299px) {
  .services .services-container {
    gap: 5rem;
  }
}
@media screen and (min-width: 950px) {
  .services .services-content {
    background: #ffffff 0% 0% no-repeat padding-box;
    -webkit-box-shadow: 0 0 2.6rem rgba(15, 42, 116, 0.3176470588);
            box-shadow: 0 0 2.6rem rgba(15, 42, 116, 0.3176470588);
    border-radius: 1rem;
    width: 55rem;
    height: auto;
    min-height: 66rem;
    padding-bottom: 6.6rem;
  }
}
@media screen and (min-width: 950px) and (min-width: 1300px) and (max-width: 1699px) {
  .services .services-content {
    width: 41rem;
    height: auto;
    min-height: 50rem;
  }
}
@media screen and (min-width: 950px) and (min-width: 950px) and (max-width: 1299px) {
  .services .services-content {
    width: 41rem;
    height: auto;
    min-height: 50rem;
  }
}
@media screen and (min-width: 950px) {
  .services .content-image {
    width: 110%;
    margin-left: -5%;
    margin-bottom: 2rem;
  }
  .services .content-title {
    margin-bottom: 2.3rem;
    padding: 0 4rem;
    font-size: 3rem;
    line-height: 1.5em;
    color: #0f2a74;
    font-weight: bold;
  }
}
@media screen and (min-width: 950px) and (min-width: 1300px) and (max-width: 1699px) {
  .services .content-title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 950px) and (min-width: 950px) and (max-width: 1299px) {
  .services .content-title {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 950px) {
  .services .content-text {
    padding: 0 4rem;
    font-size: 1.8rem;
    line-height: 1.5em;
    color: #202734;
  }
  .services .services-card-list {
    width: auto;
    height: 70rem;
    position: relative;
  }
}
@media screen and (min-width: 950px) and (min-width: 1300px) and (max-width: 1699px) {
  .services .services-card-list {
    height: 60rem;
  }
}
@media screen and (min-width: 950px) and (min-width: 950px) and (max-width: 1299px) {
  .services .services-card-list {
    height: 60rem;
  }
}
@media screen and (min-width: 950px) {
  .services .services-card-list-item {
    display: none;
  }
  .services .services-card-list-item.active {
    display: block;
    -webkit-animation: fadeIn 0.75s ease-in-out;
            animation: fadeIn 0.75s ease-in-out;
  }
  .services .services-text-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 90rem;
  }
  .services .services-text-list-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: bold;
    border-bottom: solid 0.1rem #fff;
    gap: 3rem;
    cursor: pointer;
  }
}
@media screen and (min-width: 950px) and (min-width: 1300px) and (max-width: 1699px) {
  .services .services-text-list-item {
    gap: 1.5rem;
  }
}
@media screen and (min-width: 950px) and (min-width: 950px) and (max-width: 1299px) {
  .services .services-text-list-item {
    gap: 1rem;
  }
}
@media screen and (min-width: 950px) {
  .services .services-text-list-item:hover {
    opacity: 0.75;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .services .services-text-list-item:nth-child(1) {
    padding-left: 0%;
  }
  .services .services-text-list-item:nth-child(2) {
    padding-left: 10%;
  }
  .services .services-text-list-item:nth-child(3) {
    padding-left: 20%;
  }
  .services .services-text-list-item:nth-child(4) {
    padding-left: 15%;
  }
  .services .services-text-list-item .item-number {
    width: 10rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 10rem;
            flex: 0 0 10rem;
    height: 10rem;
    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;
    font-size: 3rem;
    padding: 1rem;
    border-radius: 50%;
    background: #ffffff 0% 0% no-repeat padding-box;
    -webkit-box-shadow: 0 0 2.6rem rgba(12, 64, 235, 0.3019607843);
            box-shadow: 0 0 2.6rem rgba(12, 64, 235, 0.3019607843);
  }
}
@media screen and (min-width: 950px) and (min-width: 1300px) and (max-width: 1699px) {
  .services .services-text-list-item .item-number {
    height: 7.5rem;
    width: 7.5rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7.5rem;
            flex: 0 0 7.5rem;
  }
}
@media screen and (min-width: 950px) and (min-width: 950px) and (max-width: 1299px) {
  .services .services-text-list-item .item-number {
    height: 7.5rem;
    width: 7.5rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 7.5rem;
            flex: 0 0 7.5rem;
  }
}
@media screen and (min-width: 950px) {
  .services .services-text-list-item .item-text {
    background: transparent -webkit-gradient(linear, left top, right top, from(#0f2a74), to(#2874ef)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(90deg, #0f2a74 0%, #2874ef 100%) 0% 0% no-repeat padding-box;
    border-radius: 5rem;
    color: #fff;
    font-size: 3rem;
    line-height: 1.6em;
    padding: 1rem 2rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 1rem;
  }
}
@media screen and (min-width: 950px) and (min-width: 1300px) and (max-width: 1699px) {
  .services .services-text-list-item .item-text {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 950px) and (min-width: 950px) and (max-width: 1299px) {
  .services .services-text-list-item .item-text {
    font-size: 2.25rem;
  }
}
@media screen and (min-width: 950px) {
  .services .services-text-list-item .item-text::after {
    content: "";
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-image: url("../img/04_services/icon_arrow.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 949px) {
  .services {
    background-color: #fff;
  }
  .services .services-inner {
    background-color: rgba(12, 64, 235, 0.0784313725);
    border-radius: 10rem 0 10rem 0;
    padding: 11.8rem 0 12.9rem;
  }
  .services .services-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 5rem;
  }
  .services .services-title {
    text-align: left;
    font: normal bold 4rem/5rem Noto Sans JP;
    letter-spacing: 0.15rem;
    color: #202734;
    margin-bottom: 0.9rem;
  }
  .services .services-title-sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0.5rem;
    text-align: left;
    font: normal bold 1.4rem/1.7rem Noto Sans JP;
    color: #202734;
    border-bottom: 0.2rem solid #0c40eb;
  }
  .services .services-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5rem;
    padding: 10rem 5rem;
    width: 97%;
    margin: 0 0 0 auto;
    border-radius: 2rem 0 0 2rem;
    background-color: #fff;
    background-color: rgba(187, 211, 255, 0.8078431373) 0% 0% no-repeat padding-box;
    background-image: url("../img/04_services/services_bg@2x.png");
    background-size: cover;
    background-position: center;
  }
  .services .services-content {
    background: #ffffff 0% 0% no-repeat padding-box;
    -webkit-box-shadow: 0 0 1.3rem rgba(15, 42, 116, 0.3176470588);
            box-shadow: 0 0 1.3rem rgba(15, 42, 116, 0.3176470588);
    border-radius: 1rem;
    width: 100%;
    height: auto;
    padding: 2rem 0;
    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;
  }
  .services .content-image {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    height: 110%;
    margin: -4rem 0 -4rem;
    margin-left: -5%;
  }
  .services .content-image img {
    width: 100%;
    height: auto;
  }
  .services .content-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .services .content-title {
    margin-bottom: 1.15rem;
    padding: 0 2rem;
    font-size: 1.75rem;
    line-height: 1.5em;
    color: #0f2a74;
    font-weight: bold;
  }
  .services .content-text {
    padding: 0 2rem;
    font-size: 1.5rem;
    line-height: 1.5em;
    color: #202734;
  }
  .services .services-card-list {
    width: auto;
    height: 23rem;
    position: relative;
  }
}
@media screen and (max-width: 949px) and (min-width: 640px) and (max-width: 949px) {
  .services .services-card-list {
    height: 25rem;
  }
}
@media screen and (max-width: 949px) and (max-width: 639px) {
  .services .services-card-list {
    height: 22rem;
  }
}
@media screen and (max-width: 949px) {
  .services .services-card-list-item {
    display: none;
  }
  .services .services-card-list-item.active {
    display: block;
    -webkit-animation: fadeIn 0.75s ease-in-out;
            animation: fadeIn 0.75s ease-in-out;
  }
  .services .services-text-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
    gap: 2rem;
  }
  .services .services-text-list-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    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;
    font-weight: bold;
    border-bottom: solid 0.1rem #fff;
    gap: 1.5rem;
    cursor: pointer;
  }
  .services .services-text-list-item:hover {
    opacity: 0.75;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .services .services-text-list-item:nth-child(1) {
    padding-left: 0%;
  }
  .services .services-text-list-item:nth-child(2) {
    padding-left: 0%;
  }
  .services .services-text-list-item:nth-child(3) {
    padding-left: 0%;
  }
  .services .services-text-list-item:nth-child(4) {
    padding-left: 0%;
  }
  .services .services-text-list-item .item-number {
    width: 5rem;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 5rem;
            flex: 0 0 5rem;
    height: 5rem;
    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;
    font-size: 1.5rem;
    padding: 0.5rem;
    border-radius: 50%;
    background: #ffffff 0% 0% no-repeat padding-box;
    -webkit-box-shadow: 0 0 2.6rem rgba(12, 64, 235, 0.3019607843);
            box-shadow: 0 0 2.6rem rgba(12, 64, 235, 0.3019607843);
    margin: auto;
  }
  .services .services-text-list-item .item-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    background: transparent -webkit-gradient(linear, left top, right top, from(#0f2a74), to(#2874ef)) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(90deg, #0f2a74 0%, #2874ef 100%) 0% 0% no-repeat padding-box;
    border-radius: 5rem;
    color: #fff;
    font-size: 1.5rem;
    line-height: 1.6em;
    padding: 1rem 2rem;
    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;
    gap: 1.5rem;
    position: relative;
  }
  .services .services-text-list-item .item-text::after {
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("../img/04_services/icon_arrow.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 2.5rem;
  }
}
@media screen and (min-width: 950px) {
  .projects {
    background-color: rgba(12, 64, 235, 0.0784313725);
  }
  .projects .projects-inner {
    background-color: #fff;
    border-radius: 10rem 0 0 10rem;
    padding: 11.8rem 0 12.9rem;
  }
  .projects .projects-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 5rem;
  }
  .projects .projects-title {
    text-align: left;
    font: normal bold 4.8rem/5.8rem Noto Sans JP;
    letter-spacing: 0.3rem;
    color: #202734;
    margin-bottom: 0.9rem;
  }
  .projects .projects-title-sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 1.5rem 0.5rem;
    text-align: left;
    font: normal bold 1.4rem/1.7rem Noto Sans JP;
    color: #202734;
    border-bottom: 0.2rem solid #0c40eb;
  }
  .projects .projects-container {
    width: 65%;
    max-width: 1300px;
    height: auto;
    margin: auto;
    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;
  }
}
@media screen and (min-width: 950px) and (min-width: 1300px) and (max-width: 1699px) {
  .projects .projects-container {
    width: 80%;
    height: auto;
  }
}
@media screen and (min-width: 950px) {
  .projects .projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(45rem, 1fr));
    grid-template-rows: auto;
    gap: 7rem;
  }
  .projects .projects-list-item {
    width: 100%;
    height: auto;
    background: #ffffff 0% 0% no-repeat padding-box;
    -webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1019607843);
            box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1019607843);
    border: 0.1rem solid rgba(32, 39, 52, 0.4);
    border-radius: 1rem;
    position: relative;
    padding: 6.8rem 2.7rem 4.2rem;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .projects .category {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    padding: 1rem 2rem;
    background: #0f2a74 0% 0% no-repeat padding-box;
    border-radius: 0.8rem 0 1rem 0;
    margin-bottom: 3.3rem;
    position: absolute;
    top: 0;
    left: 0;
  }
  .projects .projects-item-title {
    margin-bottom: 2.5rem;
    text-align: left;
    font: normal normal bold 2.2rem/2.6rem Noto Sans JP;
    color: #0f2a74;
    line-height: 2em;
  }
  .projects .projects-item-image {
    width: 100%;
    height: 25.8rem;
    margin-bottom: 1.8rem;
  }
  .projects .projects-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .projects .projects-item-text {
    text-align: justify;
    font: normal normal normal 1.6rem/1.9rem Noto Sans JP;
    color: #202734;
    line-height: 2em;
  }
}
@media screen and (max-width: 949px) {
  .projects {
    background-color: rgba(12, 64, 235, 0.0784313725);
  }
  .projects .projects-inner {
    background-color: #fff;
    border-radius: 10rem 0 0 10rem;
    padding: 11.8rem 0 12.9rem;
  }
  .projects .projects-title-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 5rem;
  }
  .projects .projects-title {
    text-align: left;
    font: normal bold 4rem/5rem Noto Sans JP;
    letter-spacing: 0.3rem;
    color: #202734;
    margin-bottom: 0.9rem;
  }
  .projects .projects-title-sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 1.5rem 0.5rem;
    text-align: left;
    font: normal bold 1.4rem/1.7rem Noto Sans JP;
    color: #202734;
    border-bottom: 0.2rem solid #0c40eb;
  }
  .projects .projects-container {
    width: 85%;
    height: auto;
    margin: auto;
    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;
  }
  .projects .projects-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25rem, 1fr));
    grid-template-rows: auto;
    gap: 3.5rem;
  }
  .projects .projects-list-item {
    width: 100%;
    height: auto;
    background: #ffffff 0% 0% no-repeat padding-box;
    -webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1019607843);
            box-shadow: 0 0 2rem rgba(0, 0, 0, 0.1019607843);
    border: 0.1rem solid rgba(32, 39, 52, 0.4);
    border-radius: 1rem;
    position: relative;
    padding: 4rem 1.35rem 2.1rem;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 0;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .projects .category {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    padding: 1rem;
    background: #0f2a74 0% 0% no-repeat padding-box;
    border-radius: 0.8rem 0 1rem 0;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 1.2rem;
  }
  .projects .projects-item-title {
    margin-bottom: 1.25rem;
    text-align: left;
    font: normal normal bold 1.75rem/2.2rem Noto Sans JP;
    color: #0f2a74;
    line-height: 1.75em;
  }
  .projects .projects-item-image {
    width: 100%;
    height: 13rem;
    margin-bottom: 0.9rem;
  }
  .projects .projects-item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .projects .projects-item-text {
    text-align: justify;
    font: normal normal normal 1.5rem/1.6rem Noto Sans JP;
    color: #202734;
    line-height: 1.75em;
  }
}
@media screen and (min-width: 950px) {
  .message {
    background-image: url(../img/06_message/message_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .message .message-inner {
    background-color: transparent;
    padding: 11.8rem 0 12.9rem;
    width: 80%;
    margin: auto;
  }
  .message .message-title-wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 17rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: -3rem;
    z-index: 2;
    position: relative;
  }
  .message .message-title {
    text-align: left;
    font: normal bold 4.8rem/5.8rem Noto Sans JP;
    letter-spacing: 0.3rem;
    color: #202734;
    margin-bottom: 0.9rem;
  }
  .message .message-title-sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0.5rem;
    text-align: left;
    font: normal bold 1.4rem/1.7rem Noto Sans JP;
    color: #202734;
    border-bottom: 0.2rem solid #0c40eb;
  }
  .message .message-container {
    width: auto;
    height: auto;
    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;
  }
  .message .message-image {
    width: 61rem;
    height: auto;
    margin-right: -9rem;
    z-index: 1;
    margin-top: 10rem;
  }
  .message .message-text-wrapper {
    -ms-flex-item-align: start;
        align-self: flex-start;
    width: 104rem;
    height: auto;
    background-color: #fff;
    padding: 6rem 6rem 6rem 13rem;
    border-radius: 2rem;
  }
  .message .message-text {
    text-align: left;
    font: normal normal normal 2.4rem/4.3rem Noto Sans JP;
    color: #202734;
    margin-bottom: 2rem;
  }
  .message .message-text-name {
    text-align: right;
    font: normal normal normal 2.4rem/4.3rem Noto Sans JP;
    color: #202734;
    margin-top: 8rem;
  }
}
@media screen and (max-width: 949px) {
  .message {
    background-image: url(../img/06_message/message_bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .message .message-inner {
    background-color: transparent;
    padding: 11.8rem 0 12.9rem;
    width: 80%;
    margin: auto;
  }
  .message .message-title-wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-bottom: 5rem;
    z-index: 2;
    position: relative;
  }
  .message .message-title {
    text-align: left;
    font: normal bold 4rem/5rem Noto Sans JP;
    letter-spacing: 0.3rem;
    color: #202734;
    margin-bottom: 0.9rem;
  }
  .message .message-title-sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0.5rem;
    text-align: left;
    font: normal bold 1.4rem/1.7rem Noto Sans JP;
    color: #202734;
    border-bottom: 0.2rem solid #0c40eb;
  }
  .message .message-container {
    width: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .message .message-image {
    width: 50%;
    height: auto;
    z-index: 1;
    margin-bottom: -20rem;
  }
  .message .message-text-wrapper {
    width: 100%;
    height: auto;
    background-color: #fff;
    padding: 24rem 4rem 6rem;
    border-radius: 2rem;
  }
  .message .message-text {
    text-align: left;
    font: normal normal normal 1.5rem/2.4rem Noto Sans JP;
    color: #202734;
    margin-bottom: 1rem;
  }
  .message .message-text-name {
    text-align: right;
    font: normal normal normal 1.5rem/2.4rem Noto Sans JP;
    color: #202734;
    margin-top: 4rem;
  }
}
@media screen and (min-width: 950px) {
  .company {
    background-image: url(../img/07_company/bg.png);
    background-repeat: no-repeat;
    background-size: 40%;
    background-position: top left;
  }
  .company .company-inner {
    background-color: transparent;
    padding: 11.8rem 0 12.9rem;
  }
  .company .company-title-wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto 6rem;
  }
  .company .company-title {
    text-align: left;
    font: normal bold 4.4rem/5.4rem Noto Sans JP;
    letter-spacing: 0.3rem;
    color: #202734;
    margin-bottom: 1.5rem;
  }
  .company .company-title-sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0.5rem;
    text-align: left;
    font: normal bold 1.4rem/1.7rem Noto Sans JP;
    color: #202734;
    border-bottom: 0.2rem solid #0c40eb;
  }
  .company .company-container {
    width: clamp(50rem, 85%, 110rem);
    height: auto;
    margin: auto;
    display: grid;
    grid-template-columns: 14rem 1fr;
    grid-template-rows: auto;
    gap: 0 4rem;
    text-align: left;
    font: normal normal normal 2.4rem/2.9rem Noto Sans JP;
    color: #202734;
    line-height: 2em;
  }
  .company .company-container.en {
    grid-template-columns: 20rem 1fr;
  }
  .company .company-grid-item {
    padding: 4rem 0;
    border-bottom: 0.3rem solid #c9d1db;
  }
  .company .company-grid-item:nth-child(1), .company .company-grid-item:nth-child(2) {
    border-top: 0.3rem solid #c9d1db;
  }
}
@media screen and (max-width: 949px) {
  .company {
    background-image: url(../img/07_company/bg.png);
    background-repeat: no-repeat;
    background-size: 60%;
    background-position: top left;
  }
  .company .company-inner {
    background-color: transparent;
    padding: 11.8rem 0 12.9rem;
  }
  .company .company-title-wrapper {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto 6rem;
  }
  .company .company-title {
    text-align: left;
    font: normal bold 3.5rem/5rem Noto Sans JP;
    letter-spacing: 0.3rem;
    color: #202734;
    margin-bottom: 0.9rem;
  }
  .company .company-title-sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 0.5rem;
    text-align: left;
    font: normal bold 1.4rem/1.7rem Noto Sans JP;
    color: #202734;
    border-bottom: 0.2rem solid #0c40eb;
  }
  .company .company-container {
    width: clamp(25rem, 85%, 50rem);
    height: auto;
    margin: auto;
    display: grid;
    grid-template-columns: 7rem 1fr;
    grid-template-rows: auto;
    gap: 0 2rem;
    text-align: left;
    font: normal normal normal 1.5rem/2.4rem Noto Sans JP;
    color: #202734;
    line-height: 2em;
  }
  .company .company-container.en {
    grid-template-columns: 12rem 1fr;
  }
  .company .company-grid-item {
    padding: 2rem 0;
    border-bottom: 0.2rem solid #c9d1db;
  }
  .company .company-grid-item:nth-child(1), .company .company-grid-item:nth-child(2) {
    border-top: 0.2rem solid #c9d1db;
  }
}
@media screen and (min-width: 950px) {
  footer .footer-top {
    padding: 7rem 18rem;
    background: #202734 0% 0% no-repeat padding-box;
  }
  footer .footer-logo {
    margin-bottom: 2rem;
    width: 11rem;
    height: auto;
  }
  footer .footer-logo img {
    width: 100%;
    height: auto;
  }
  footer .footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-menu .footer-top-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 6rem;
  }
  footer .footer-menu .footer-top-nav .list-item a {
    color: #fff;
    font-size: 1.6rem;
    padding-bottom: 1rem;
    position: relative;
  }
  footer .footer-menu .footer-top-nav .list-item a::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    bottom: -1px;
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center top;
            transform-origin: center top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s; /*変形の時間*/
  }
  footer .footer-menu .footer-top-nav .list-item a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1); /*ホバー後、x軸方向に1（相対値）伸長*/
  }
  footer .footer-menu .jp-en a {
    background: #e9edf4 0% 0% no-repeat padding-box;
    border-radius: 4.1rem;
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
    font: normal normal normal 1.6rem/1.9rem Noto Sans JP;
    letter-spacing: 0;
    color: #202734;
    justify-self: flex-end;
  }
  footer .footer-menu .jp-en a:hover {
    opacity: 0.75;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  footer .footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff;
    padding: 2.5rem 6rem 3rem 18rem;
    font-size: 1.4rem;
    color: #202734;
  }
  footer .footer-bottom-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 3rem;
  }
  footer .footer-bottom-nav a {
    text-decoration: underline;
  }
  footer .footer-bottom-copyright {
    text-align: right;
  }
}
@media screen and (max-width: 949px) {
  footer .footer-top {
    padding: 7rem 4rem;
    background: #202734 0% 0% no-repeat padding-box;
  }
  footer .footer-logo {
    margin-bottom: 2rem;
    width: 6rem;
    height: auto;
  }
  footer .footer-logo img {
    width: 100%;
    height: auto;
  }
  footer .footer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  footer .footer-menu .footer-top-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }
  footer .footer-menu .footer-top-nav .list-item a {
    color: #fff;
    font-size: 1.2rem;
  }
  footer .footer-menu .jp-en {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 fit-content;
            flex: 0 0 fit-content;
    margin-left: 1rem;
  }
  footer .footer-menu .jp-en a {
    background: #e9edf4 0% 0% no-repeat padding-box;
    border-radius: 4.1rem;
    color: #fff;
    padding: 1rem 2rem;
    text-align: center;
    font: normal normal normal 1.2rem/2rem Noto Sans JP;
    letter-spacing: 0;
    color: #202734;
    justify-self: flex-end;
  }
  footer .footer-menu .jp-en a:hover {
    opacity: 0.75;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  footer .footer-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #fff;
    padding: 2.5rem 4rem 3rem;
    font-size: 1.2rem;
    color: #202734;
  }
  footer .footer-bottom-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 1.5rem;
  }
  footer .footer-bottom-nav a {
    text-decoration: underline;
  }
  footer .footer-bottom-copyright {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 fit-content;
            flex: 0 0 fit-content;
    margin-left: 1rem;
    text-align: right;
  }
}/*# sourceMappingURL=style.min.css.map */