@charset "UTF-8";
/*---------------------------------------------
design-width
---------------------------------------------*/
/*---------------------------------------------
font-size
---------------------------------------------*/
/* pc */
/* SP */
/*---------------------------------------------
vw変換

width: vw-sp(320);
@include pc-only {
  width: min(vw-pc(194), 194px);
}
@include pc-lg {
  width: vw-pc-lg(194);
}
---------------------------------------------*/
/*---------------------------------------------
メディアクエリ
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/*---------------------------------------------
フォント用のmixinとユーティリティ

@include font-sp(26); // モバイルファースト
@include font-pc(18); // タブレット〜PC対応
---------------------------------------------*/
/*---------------------------------------------
カスタムプロパティ
---------------------------------------------*/
:root {
  --custom-vw: 97.4vw;
  --color-yellow-1: #fff031;
}

/*---------------------------------------------
リセット
---------------------------------------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

img, picture, video, canvas, svg {
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

/*---------------------------------------------
初期設定
---------------------------------------------*/
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

body {
  -webkit-text-size-adjust: 100%;
  line-height: 1.6;
  color: #021f42;
}

html, body {
  font-size: 100%;
}

a {
  color: #021f42;
}

a:hover,
a:link {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
  height: auto;
}

sup, sub {
  font-size: 0.6em;
}

iframe {
  border: none;
}

/*---------------------------------------------
ユーティリティ
---------------------------------------------*/
/* font-size */
@media screen and (min-width: 768px) {
  .text-md-pc {
    font-size: 1.8rem;
  }
  .text-lg-pc {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .text-md-sp {
    font-size: calc(var(--custom-vw) * 0.0346666667);
  }
  .text-lg-sp {
    font-size: calc(var(--custom-vw) * 0.0373333333);
  }
}
.text-xs {
  font-size: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .text-xs {
    font-size: min(0.9166666667vw, 11px);
  }
}
@media screen and (min-width: 1500px) {
  .text-xs {
    font-size: 0.7333333333vw;
  }
}

.text-sm {
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .text-sm {
    font-size: min(1.0833333333vw, 13px);
  }
}
@media screen and (min-width: 1500px) {
  .text-sm {
    font-size: 0.8666666667vw;
  }
}

.text-md {
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .text-md {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .text-md {
    font-size: 1.0666666667vw;
  }
}

.text-lg {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .text-lg {
    font-size: min(1.5833333333vw, 19px);
  }
}
@media screen and (min-width: 1500px) {
  .text-lg {
    font-size: 1.2666666667vw;
  }
}

.text-xl {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .text-xl {
    font-size: min(1.75vw, 21px);
  }
}
@media screen and (min-width: 1500px) {
  .text-xl {
    font-size: 1.4vw;
  }
}

.text-2xl {
  font-size: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .text-2xl {
    font-size: min(2.6666666667vw, 32px);
  }
}
@media screen and (min-width: 1500px) {
  .text-2xl {
    font-size: 2.1333333333vw;
  }
}

.text-3xl {
  font-size: 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  .text-3xl {
    font-size: min(4vw, 48px);
  }
}
@media screen and (min-width: 1500px) {
  .text-3xl {
    font-size: 3.2vw;
  }
}

/* font-weight */
.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

/* text-align */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .text-center-sp {
    text-align: center;
  }
  .text-left-sp {
    text-align: left;
  }
  .text-right-sp {
    text-align: right;
  }
}
/* flex */
.flex {
  display: flex;
}

.flex-pc {
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex-pc {
    flex-direction: column;
  }
}

.flex-col {
  flex-direction: column;
}

.justify-center {
  justify-content: center;
}

.item-center {
  align-items: center;
}

.gap-2xs {
  gap: calc(var(--custom-vw) * 0.0266666667);
}
@media screen and (min-width: 768px) {
  .gap-2xs {
    gap: 10px;
  }
}

.gap-xs {
  gap: calc(var(--custom-vw) * 0.0466666667);
}
@media screen and (min-width: 768px) {
  .gap-xs {
    gap: 20px;
  }
}

.gap-sm {
  gap: calc(var(--custom-vw) * 0.0666666667);
}
@media screen and (min-width: 768px) {
  .gap-sm {
    gap: 30px;
  }
}

.gap-md {
  gap: calc(var(--custom-vw) * 0.08);
}
@media screen and (min-width: 768px) {
  .gap-md {
    gap: 45px;
  }
}

/* line-height */
.leading-sm {
  line-height: 1.5;
}

.leading-lg {
  line-height: 1.77;
}

.leading-xl {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .leading-sm-sp {
    line-height: 1.5;
  }
}
/* width */
.mt0 {
  margin-top: 0 !important;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mt60 {
  margin-top: 60px;
}

.mt80 {
  margin-top: 80px;
}

.mt100 {
  margin-top: 100px;
}

.mt160 {
  margin-top: 160px;
}

/* bourder-radius */
.rounded-md {
  border-radius: 30px;
}

/* width */
@media screen and (max-width: 767px) {
  .w-sp-169 {
    width: calc(var(--custom-vw) * 0.2253333333);
  }
}
/* background-color */
.bg-gray-light {
  background-color: #f6f7f7;
}

/* marker */
.marker {
  background-color: #caebff;
}

/*---------------------------------------------
anime
---------------------------------------------*/
[data-anime=fadeUp] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 1s ease transform, 1s ease opacity;
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=fadeUp].is-animated {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

[data-anime=slideRight] {
  opacity: 0;
  -webkit-transform: translateX(-30%);
  transform: translateX(-30%);
  -webkit-transition: 1s ease transform, 1s ease opacity;
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=slideRight].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

[data-anime=slideLeft] {
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 1s ease transform, 1s ease opacity;
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=slideLeft].is-animated {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

[data-anime=scaledown] {
  opacity: 0;
  transform: scale(2);
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=scaledown].is-animated {
  opacity: 1;
  transform: scale(1);
}

/*---------------------------------------------
scroll-container
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .scroll-container {
    overflow-x: auto; /* 横スクロール有効 */
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch; /* iOS の慣性スクロール */
    white-space: nowrap; /* 子要素を横並びに */
    width: 100%;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc; /* スクロールバーを目立たせるため任意で追加 */
  }
  .wide-image {
    height: auto;
    display: inline-block;
  }
}
/*---------------------------------------------
ボタン
---------------------------------------------*/
/* 丸ボタン共通 */
.btn-outline,
.btn-filled {
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 50px;
  border-radius: 25px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .btn-outline,
  .btn-filled {
    width: min(12.5vw, 150px);
    height: min(4.1666666667vw, 50px);
    font-size: min(1.1666666667vw, 14px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-outline,
  .btn-filled {
    width: 150px;
    height: 50px;
    font-size: 14px;
  }
}

/* 枠線だけのボタン */
.btn-outline {
  padding: 2px;
  color: #213987;
  background-color: #5eb9ee;
  background-image: -moz-linear-gradient(49deg, rgb(51, 86, 174) 0%, rgb(0, 123, 218) 100%);
  background-image: -webkit-linear-gradient(49deg, rgb(51, 86, 174) 0%, rgb(0, 123, 218) 100%);
  background-image: -ms-linear-gradient(49deg, rgb(51, 86, 174) 0%, rgb(0, 123, 218) 100%);
}
.btn-outline span {
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 25px;
}
.btn-outline:hover {
  background-image: none;
  color: #5eb9ee;
}

/* 背景ありのボタン */
.btn-filled {
  background-color: #213988;
  background-image: -moz-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-image: -webkit-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-image: -ms-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  color: #fff;
  transition: all 0.2s ease-in-out;
}
.btn-filled:hover {
  background-image: none;
  background-color: #007bda;
}

/* 詳しく見る */
.btn-more {
  font-weight: 600;
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #007bda;
  font-size: 5.3333333333vw;
  width: 100%;
  max-width: 100%;
  border-radius: 16vw;
}
.btn-more.btn-more-outline {
  background-color: #fff;
  outline-width: 2px;
  outline-style: solid;
  outline-color: #213987;
  color: #213987;
}
.btn-more.btn-more-outline:after {
  background-image: none;
}
.btn-more.btn-more-outline:hover {
  border-color: #007bda;
  color: #007bda;
  outline-color: #007bda;
}
@media screen and (min-width: 768px) {
  .btn-more {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more {
    font-size: 1.3333333333vw;
  }
}
.btn-more.font-dec {
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .btn-more.font-dec {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more.font-dec {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .btn-more {
    width: min(30.8333333333vw, 370px);
    border-radius: 7.5vw;
  }
}
@media screen and (min-width: 1500px) {
  .btn-more {
    width: 24.6666666667vw;
  }
}
.btn-more span {
  position: relative;
  z-index: 1;
  display: flex;
  width: 100%;
  height: 16vw;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .btn-more span {
    height: min(7.5vw, 90px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more span {
    height: 6vw;
  }
}
.btn-more:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../img/common/bg_button.png);
  transition: all 0.1s ease-in-out;
  /*background-image: linear-gradient(
    to top right,
    #3550a7 14%,
    #122d86 61%,
    #001c76 84.7%
  );
  opacity: 0.87;*/
  background-size: cover;
}
.btn-more .arrow {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  width: 8.65%;
  transition: all 0.2s ease-in-out;
  right: 6.3%;
}
.btn-more .arrow-over .arrow-blue-hoso-1 {
  transition: all 0.1s ease-in-out;
  fill: none;
  stroke: #213988;
  stroke-width: 3px;
}
.btn-more .arrow-over .arrow-white-hoso-1 {
  transition: all 0.1s ease-in-out;
  fill: none;
  stroke: #fff;
  stroke-width: 3px;
}
.btn-more:hover .arrow {
  right: 5.2%;
}
.btn-more:hover:after {
  background-image: none;
}
.btn-more:hover .arrow-over .arrow-blue-hoso-1 {
  stroke: #007bda;
}
.btn-more.-size-sm {
  font-weight: 500;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .btn-more.-size-sm {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more.-size-sm {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .btn-more.-size-sm {
    width: min(21.6666666667vw, 260px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more.-size-sm {
    width: 17.3333333333vw;
  }
}
.btn-more.-size-sm span {
  height: 11.3333333333vw;
}
@media screen and (min-width: 768px) {
  .btn-more.-size-sm span {
    height: min(5.8333333333vw, 70px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more.-size-sm span {
    height: 4.6666666667vw;
  }
}
.btn-more.-size-dl {
  font-weight: 500;
  width: 80%;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .btn-more.-size-dl {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more.-size-dl {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 768px) {
  .btn-more.-size-dl {
    width: min(21.6666666667vw, 260px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more.-size-dl {
    width: 17.3333333333vw;
  }
}
.btn-more.-size-dl span {
  height: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .btn-more.-size-dl span {
    height: min(5vw, 60px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more.-size-dl span {
    height: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .btn-more.-size-lg {
    width: min(38.3333333333vw, 460px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more.-size-lg {
    width: 30.6666666667vw;
  }
}
.btn-more.btn-more-sp-small {
  font-size: 3.4666666667vw;
  width: 47.16%;
}
@media screen and (min-width: 768px) {
  .btn-more.btn-more-sp-small {
    font-size: min(2vw, 24px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more.btn-more-sp-small {
    font-size: 1.6vw;
  }
}
@media screen and (min-width: 768px) {
  .btn-more.btn-more-sp-small {
    width: min(29.8333333333vw, 358px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more.btn-more-sp-small {
    width: 23.8666666667vw;
  }
}
.btn-more.btn-more-sp-small span {
  height: 11.3333333333vw;
}
@media screen and (min-width: 768px) {
  .btn-more.btn-more-sp-small span {
    height: min(7.0833333333vw, 85px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-more.btn-more-sp-small span {
    height: 5.6666666667vw;
  }
}

/* cta */
.btn-cta {
  font-weight: 500;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-right: 3%;
  background-image: -moz-linear-gradient(-114deg, rgb(94, 185, 238) 2%, rgb(100, 150, 242) 100%);
  background-image: -webkit-linear-gradient(-114deg, rgb(94, 185, 238) 2%, rgb(100, 150, 242) 100%);
  background-image: -ms-linear-gradient(-114deg, rgb(94, 185, 238) 2%, rgb(100, 150, 242) 100%);
  background-size: cover;
  color: #fff;
  font-size: 3.4666666667vw;
  width: 42.6666666667vw;
  max-width: 100%;
  height: 10.6666666667vw;
  border-radius: 10.6666666667vw;
  transition: opacity 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .btn-cta {
    font-size: min(1.1666666667vw, 14px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-cta {
    font-size: 0.9333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .btn-cta {
    width: min(16.1666666667vw, 194px);
    height: min(4.8333333333vw, 58px);
    border-radius: 4.8333333333vw;
  }
}
@media screen and (min-width: 1500px) {
  .btn-cta {
    width: 12.9333333333vw;
    height: 3.8666666667vw;
  }
}
.btn-cta .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  height: auto;
  right: 6.25%;
  width: 10%;
}
@media screen and (min-width: 768px) {
  .btn-cta .arrow {
    right: 9.27%;
    width: 11.85%;
  }
}
.btn-cta .arrow img {
  display: block;
  height: auto;
  width: 100%;
}
.btn-cta .arrow ._on {
  display: none;
}
.btn-cta:hover {
  border: solid 2px #75b6e9;
  color: #75b6e9;
  background-image: none;
  background-color: #fff;
}
.btn-cta:hover ._on {
  display: inline-block;
}
.btn-cta:hover ._off {
  display: none;
}

.btn-gradation {
  position: relative;
  width: 77.3333333333vw;
  display: block;
  color: #213987;
}
@media screen and (min-width: 768px) {
  .btn-gradation {
    width: min(34vw, 408px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-gradation {
    width: 27.2vw;
  }
}
.btn-gradation span {
  font-weight: 600;
  font-size: 3.4666666667vw;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  padding-right: 2vw;
}
@media screen and (min-width: 768px) {
  .btn-gradation span {
    font-size: min(2vw, 24px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-gradation span {
    font-size: 1.6vw;
  }
}
@media screen and (min-width: 768px) {
  .btn-gradation span {
    padding-right: min(1.25vw, 15px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-gradation span {
    padding-right: 1vw;
  }
}
.btn-gradation img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .btn-gradation {
    transition: all 0.3s ease-out;
  }
  .btn-gradation:hover {
    filter: brightness(1.2);
    color: #4a68cc;
  }
}
.btn-gradation.-sm {
  width: 72vw;
}
@media screen and (min-width: 768px) {
  .btn-gradation.-sm {
    width: min(21.6666666667vw, 260px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-gradation.-sm {
    width: 17.3333333333vw;
  }
}
.btn-gradation.-sm span {
  font-size: 3.2vw;
  padding-right: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .btn-gradation.-sm span {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-gradation.-sm span {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 768px) {
  .btn-gradation.-sm span {
    padding-right: min(0.8333333333vw, 10px);
  }
}
@media screen and (min-width: 1500px) {
  .btn-gradation.-sm span {
    padding-right: 0.6666666667vw;
  }
}

/*---------------------------------------------
ニュース一覧
---------------------------------------------*/
.post-items .post-item {
  border-bottom: solid 1px #d3d3d3;
  padding: 4.6666666667vw 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .post-items .post-item {
    padding: min(2.9166666667vw, 35px) min(0.4166666667vw, 5px) min(3.75vw, 45px);
  }
}
@media screen and (min-width: 1500px) {
  .post-items .post-item {
    padding: 2.3333333333vw 0.3333333333vw 3vw;
  }
}
@media screen and (min-width: 768px) {
  .post-items .post-item:first-child {
    padding-top: min(0.8333333333vw, 10px);
  }
}
@media screen and (min-width: 1500px) {
  .post-items .post-item:first-child {
    padding-top: 0.6666666667vw;
  }
}
.post-items .post-item .post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2vw;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .post-items .post-item .post-meta {
    gap: min(1.6666666667vw, 20px);
    margin-bottom: min(0.8333333333vw, 10px);
  }
}
@media screen and (min-width: 1500px) {
  .post-items .post-item .post-meta {
    gap: 1.3333333333vw;
    margin-bottom: 0.6666666667vw;
  }
}
.post-items .post-item .post-meta .date {
  color: #adadad;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .post-items .post-item .post-meta .date {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .post-items .post-item .post-meta .date {
    font-size: 1.2vw;
  }
}
.post-items .post-item .post-meta .category {
  color: #021f42;
  border: solid 1px #021f42;
  border-radius: 5px;
  padding: 0.3em 1.5em;
}
@media screen and (max-width: 767px) {
  .post-items .post-item .post-meta .category {
    font-size: 2.6666666667vw;
  }
}
.post-items .post-item .post-title {
  font-size: 18px;
  color: #021f42;
  line-height: 2;
  font-size: 3.7333333333vw;
}
@media screen and (max-width: 767px) {
  .post-items .post-item .post-title {
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) {
  .post-items .post-item .post-title {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .post-items .post-item .post-title {
    font-size: 1.2vw;
  }
}
.post-items .post-item .post-title a {
  transition: opacity 0.3s ease-in-out;
}
.post-items .post-item .post-title a:hover {
  opacity: 0.7;
}

/*---------------------------------------------
テーブル
---------------------------------------------*/
.info-table {
  border-collapse: collapse;
  border-top: solid 1px #d3d3d3;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .info-table {
    width: 80.9%;
    margin-left: auto;
    margin-right: auto;
  }
}
.info-table tr {
  border-bottom: solid 1px #d3d3d3;
}
.info-table th {
  background-color: #f5f5f5;
  width: 34%;
  text-align: left;
  font-weight: 500;
  padding: 3.3333333333vw 3.3333333333vw;
}
@media screen and (min-width: 768px) {
  .info-table th {
    padding: min(1.6666666667vw, 20px) min(2.9166666667vw, 35px);
  }
}
@media screen and (min-width: 1500px) {
  .info-table th {
    padding: 1.3333333333vw 2.3333333333vw;
  }
}
.info-table td {
  width: 66%;
  padding: 3.3333333333vw 3.3333333333vw;
}
@media screen and (min-width: 768px) {
  .info-table td {
    padding: min(1.6666666667vw, 20px) min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .info-table td {
    padding: 1.3333333333vw 1.3333333333vw;
  }
}
.info-table th, .info-table td {
  font-size: 3.2vw;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .info-table th, .info-table td {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .info-table th, .info-table td {
    font-size: 1.2vw;
  }
}

/*---------------------------------------------
SP 詳細を見る 
---------------------------------------------*/
.toggle-btn {
  position: relative;
  background-color: #d8effc;
  position: relative;
  font-size: 4.2666666667vw;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #021f42;
  width: 100%;
  border-radius: 10px;
  height: 10.6666666667vw;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .toggle-btn {
    font-size: 32px;
    height: 80px;
    margin-bottom: 80px;
  }
}
.toggle-btn:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  position: absolute;
  border-bottom: 0;
  top: 50%;
  right: 5.97%;
  border-right: 2.2666666667vw solid transparent;
  border-left: 2.2666666667vw solid transparent;
  border-top: 2.9333333333vw solid #021f42;
  margin-top: -1.2vw;
}
@media screen and (min-width: 768px) {
  .toggle-btn:after {
    border-right: 17px solid transparent;
    border-left: 17px solid transparent;
    border-top: 22px solid #021f42;
    margin-top: -9px;
  }
}
.toggle-btn.is-active:after {
  transform: rotate(-180deg);
}

.toggle-content {
  display: none;
}

/*---------------------------------------------
ページネーション
---------------------------------------------*/
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.pagination li {
  width: 49px;
  height: 49px;
  margin: 0 3px;
}
.pagination li.current > * {
  color: #fff;
  background-color: #213987;
  border-style: solid;
  border-width: 1px;
  border-color: #213987;
}
.pagination li > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 3.4666666667vw;
  font-weight: bold;
  border-radius: 49px;
}
@media screen and (min-width: 768px) {
  .pagination li > * {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .pagination li > * {
    font-size: 1.2vw;
  }
}
.pagination li a {
  border-style: solid;
  border-width: 1px;
  border-color: #dbdbdb;
}
@media screen and (min-width: 768px) {
  .pagination li a:hover {
    opacity: 0.4;
  }
}
.pagination li img {
  display: block;
}

/*---------------------------------------------
ドキュメント
---------------------------------------------*/
.document-wrapper {
  padding: 10.6666666667vw 0 13.3333333333vw;
  font-size: 3.4666666667vw;
  color: #021f42;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .document-wrapper {
    padding: min(5vw, 60px) 0 min(6.6666666667vw, 80px);
  }
}
@media screen and (min-width: 1500px) {
  .document-wrapper {
    padding: 4vw 0 5.3333333333vw;
  }
}
.document-wrapper h2 {
  font-size: 6.1333333333vw;
  font-weight: 500;
  color: #213987;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .document-wrapper h2 {
    font-size: min(3.1666666667vw, 38px);
  }
}
@media screen and (min-width: 1500px) {
  .document-wrapper h2 {
    font-size: 2.5333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .document-wrapper {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .document-wrapper {
    font-size: 1.2vw;
  }
}
.document-wrapper .right {
  text-align: right;
}

/*---------------------------------------------
common
---------------------------------------------*/
:root {
  --custom-vw: 97.4vw;
}

.wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 13.6vw;
}
@media screen and (min-width: 768px) {
  .wrapper {
    padding-top: 90px;
  }
}

.main {
  position: relative;
  padding: 0 0 138.6666666667vw;
}
@media screen and (min-width: 768px) {
  .main {
    padding: 0 0 min(30vw, 360px);
  }
}
@media screen and (min-width: 1500px) {
  .main {
    padding: 0 0 24vw;
  }
}
.main.nopb {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .main.nopb {
    padding: 0;
  }
}
@media screen and (min-width: 1500px) {
  .main.nopb {
    padding: 0;
  }
}
.main .cta-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 18.9333333333vw;
}
@media screen and (min-width: 768px) {
  .main .cta-bottom {
    translate: -50% 30%;
  }
}

@media screen and (max-width: 767px) {
  .container {
    padding-left: calc(var(--custom-vw) * 0.0533333333);
    padding-right: calc(var(--custom-vw) * 0.0533333333);
  }
  .container.-sp-wide {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .container {
    width: min(91.6666666667vw, 1100px);
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 1500px) {
  .container {
    width: 73.3333333333vw;
  }
}

.title-jp {
  font-weight: 600;
}

.title-box .title-jp {
  color: #213987;
}
.title-box .title-jp:not(.title-jp--sm) {
  font-size: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .title-box .title-jp:not(.title-jp--sm) {
    font-size: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .title-box .title-jp:not(.title-jp--sm) {
    font-size: 3.3333333333vw;
  }
}
.title-box .title-jp.title-jp--md {
  font-size: 6.1333333333vw;
}
@media screen and (min-width: 768px) {
  .title-box .title-jp.title-jp--md {
    font-size: min(3.8333333333vw, 46px);
  }
}
@media screen and (min-width: 1500px) {
  .title-box .title-jp.title-jp--md {
    font-size: 3.0666666667vw;
  }
}
.title-box .title-jp.title-jp--sm {
  font-size: 5.6vw;
}
@media screen and (min-width: 768px) {
  .title-box .title-jp.title-jp--sm {
    font-size: min(3.5vw, 42px);
  }
}
@media screen and (min-width: 1500px) {
  .title-box .title-jp.title-jp--sm {
    font-size: 2.8vw;
  }
}
.title-box .title-jp + * {
  margin-top: 6vw;
}
@media screen and (min-width: 768px) {
  .title-box .title-jp + * {
    margin-top: min(3.3333333333vw, 40px);
  }
}
@media screen and (min-width: 1500px) {
  .title-box .title-jp + * {
    margin-top: 2.6666666667vw;
  }
}
.title-box .title-en + .title-jp {
  margin-top: 0.3em;
}
.title-box .lead {
  line-height: 1.8;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  .title-box .lead {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .title-box .lead {
    font-size: 1.3333333333vw;
  }
}

/*---------------------------------------------
header
---------------------------------------------*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  background-color: white;
}
.header .box-flex {
  display: flex;
  align-items: center;
  height: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .header .box-flex {
    height: 90px;
  }
}
.header .logo img {
  width: 38.4vw;
}
@media screen and (min-width: 768px) {
  .header .logo img {
    width: min(17.4166666667vw, 209px);
  }
}
@media screen and (min-width: 1500px) {
  .header .logo img {
    width: 209px;
  }
}
.header .global-nav {
  margin-left: auto;
  display: none;
}
@media screen and (min-width: 768px) {
  .header .global-nav {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .header .global-nav .header__nav__list {
    display: flex;
    gap: min(2.6666666667vw, 32px);
  }
}
@media screen and (min-width: 1500px) {
  .header .global-nav .header__nav__list {
    gap: 2.1333333333vw;
  }
}
.header .global-nav .header__nav__list li {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .header .global-nav .header__nav__list li {
    font-size: min(1.1666666667vw, 14px);
  }
}
@media screen and (min-width: 1500px) {
  .header .global-nav .header__nav__list li {
    font-size: 14px;
  }
}
.header .global-nav .header__nav__list li a {
  color: #021f42;
}
.header .global-nav .header__nav__list li a:hover {
  color: #5eb9ee;
}
.header .global-nav .header__nav__list li .parent {
  position: relative;
  cursor: pointer;
  padding-right: 22px;
}
@media screen and (min-width: 768px) {
  .header .global-nav .header__nav__list li .parent {
    padding-right: min(1.8333333333vw, 22px);
  }
}
@media screen and (min-width: 1500px) {
  .header .global-nav .header__nav__list li .parent {
    padding-right: 22px;
  }
}
.header .global-nav .header__nav__list li .parent:after {
  content: "";
  display: block;
  top: 0;
  right: 0;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 768px) {
  .header .global-nav .header__nav__list li .parent:after {
    width: min(1vw, 12px);
    height: min(1vw, 12px);
  }
}
@media screen and (min-width: 1500px) {
  .header .global-nav .header__nav__list li .parent:after {
    width: 12px;
    height: 12px;
  }
}
.header .btns {
  display: none;
  gap: 12px;
  margin-left: 40px;
}
@media screen and (min-width: 768px) {
  .header .btns {
    display: flex;
    gap: min(1vw, 12px);
    margin-left: min(3.3333333333vw, 40px);
  }
}
@media screen and (min-width: 1500px) {
  .header .btns {
    gap: 0.8vw;
    margin-left: 2.6666666667vw;
  }
}
.header .hamburger {
  position: absolute;
  top: 50%;
  right: calc(var(--custom-vw) * 0.0533333333);
  margin-top: -9px;
  z-index: 2000;
}
@media screen and (min-width: 768px) {
  .header .hamburger {
    display: none;
  }
}

/* サブナビ全体 */
.item__parent {
  position: relative; /* 親要素にpositionを指定して子の位置基準にする */
}

.item__subNav {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px); /* 水平方向中央に配置し、下にずらす */
  background: #fff;
  padding: 24px 32px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 320px;
}

.item__subNav.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* インナー配置 */
.item__subNav__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* メインカテゴリ名 */
.category a {
  display: inline-block;
  font-size: 18px;
  font-weight: 600;
  color: #1b40a3;
  text-decoration: none;
  margin-bottom: 8px;
  position: relative;
}

.category a::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1b40a3;
  margin-top: 4px;
  transition: width 0.3s ease;
}

.category a:hover {
  color: #5eb9ee;
}

.category a:hover::after {
  width: 40px;
}

/* サブカテゴリリスト */
.categoryList {
  list-style: none;
  padding: 0;
  margin: 0;
}

.categoryList li {
  margin-bottom: 10px;
}

.categoryList li:last-child {
  margin-bottom: 0;
}

.categoryList a {
  color: #333;
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
  padding-left: 8px;
  position: relative;
}

.categoryList a::before {
  content: "›";
  position: absolute;
  left: 0;
  top: 0;
  color: #1b40a3;
  transition: transform 0.2s ease;
}

.categoryList a:hover {
  color: #1b40a3;
  transform: translateX(4px);
}

.categoryList a:hover::before {
  transform: translateX(2px);
}

/* モバイルメニュー全体 */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #fff;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding-top: 75px;
  background-image: -moz-linear-gradient(115deg, rgb(228, 245, 254) 47%, rgb(226, 231, 247) 99%);
  background-image: -webkit-linear-gradient(115deg, rgb(228, 245, 254) 47%, rgb(226, 231, 247) 99%);
  background-image: -ms-linear-gradient(115deg, rgb(228, 245, 254) 47%, rgb(226, 231, 247) 99%);
}

.mobile-menu.is-open {
  right: 0;
}

.mobile-menu-inner {
  position: relative;
  height: 100%;
  overflow: auto;
  padding: 0 20px 60px;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-list .cta-btn {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu .cta-btn {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 15px;
}

.mobile-menu .cta-btn .btn-more {
  font-size: 16px;
}

.mobile-menu .cta-btn .btn-more span {
  height: 70px;
}

.c-menu-item {
  font-weight: bold;
  border-top: solid 1px #1b40a3;
}

.c-menu-item a {
  text-decoration: none;
  color: #1b40a3;
  display: block;
}

.c-menu-item > p > a {
  display: block;
  padding: 1em 0;
  font-size: 18px;
  position: relative;
}

.c-menu-heading a {
  pointer-events: none;
}

.c-menu-sublist {
  list-style: none;
  margin: 8px 0 16px 16px;
  padding: 0;
  display: none;
}

.c-menu-sublist li a {
  font-size: 15px;
  font-weight: 400;
  color: #021f42;
  padding: 0.3em 0.5em;
}

.c-menu-sublist > li > a {
  font-size: 16px;
  font-weight: 500;
  color: #021f42;
  padding: 0.4em 0;
}

/* サブリスト開閉制御 */
.c-menu-item.is-expanded + .c-menu-sublist {
  display: block;
}

.toggle-icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 18px;
  height: 18px;
  border-radius: 0;
  background-color: #1b40a3;
  border-radius: 50%;
  margin-top: -8px;
}

.toggle-icon:before, .toggle-icon:after {
  content: "";
  width: 8px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -4px;
  margin-top: -1px;
  display: block;
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.toggle-icon:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.c-menu-item.is-expanded .toggle-icon:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

/*---------------------------------------------
Mobile Navi
---------------------------------------------*/
.hamburger {
  position: relative;
  width: 30px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  height: 2px;
  background-color: #333;
  transition: 0.4s;
}
.hamburger span:nth-child(1) {
  background: linear-gradient(to right, #60b0ef, #5eb9ee);
}
.hamburger span:nth-child(2) {
  background: linear-gradient(to right, #639af2, #5fb6ee);
}
.hamburger span:nth-child(3) {
  background: linear-gradient(to right, #6496f2, #62a1f1);
}
.hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/*---------------------------------------------
cta-bottom
---------------------------------------------*/
.cta-bottom {
  border-radius: 20px;
  background-color: #fff;
  box-shadow: 0px 0px 136px 0px rgba(9, 46, 95, 0.16);
  overflow: hidden;
  width: 89.3333333333vw;
}
@media screen and (min-width: 768px) {
  .cta-bottom {
    width: min(91.6666666667vw, 1100px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-bottom {
    width: 73.3333333333vw;
  }
}
.cta-bottom .layout-box {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .cta-bottom .layout-box {
    flex-direction: row;
  }
}
.cta-bottom .layout-box .layout-bottom {
  position: relative;
  width: 100%;
  padding: 8vw 5.3333333333vw 9.3333333333vw;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .cta-bottom .layout-box .layout-bottom {
    width: 33.33%;
    padding: min(3.75vw, 45px) min(0.8333333333vw, 10px) min(4.5833333333vw, 55px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-bottom .layout-box .layout-bottom {
    padding: 3vw 0.6666666667vw 3.6666666667vw;
  }
}
.cta-bottom .layout-box .layout-bottom + .layout-bottom {
  border-top: solid 1px #f3f3f3;
}
@media screen and (min-width: 768px) {
  .cta-bottom .layout-box .layout-bottom + .layout-bottom {
    border-left: solid 2px #f3f3f3;
  }
}
.cta-bottom .title-box .title-jp {
  font-size: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .cta-bottom .title-box .title-jp {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-bottom .title-box .title-jp {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .cta-bottom .title-box {
    margin-left: min(2.5vw, 30px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-bottom .title-box {
    margin-left: 2vw;
  }
}
.cta-bottom .image-box {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta-bottom .image-box {
    position: absolute;
    right: 0;
    top: 0;
  }
}
@media screen and (min-width: 768px) {
  .cta-bottom .image-box {
    position: relative;
    margin-top: min(0.8333333333vw, 10px);
    margin-bottom: min(2.0833333333vw, 25px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-bottom .image-box {
    margin-top: 0.6666666667vw;
    margin-bottom: 1.6666666667vw;
  }
}
.cta-bottom .btn-box {
  margin-top: auto;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 767px) {
  .cta-bottom .btn-box {
    margin-top: 4.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .cta-bottom .btn-box {
    justify-content: center;
  }
}
.cta-bottom .cta-bottom__contact .title-en img {
  width: 40vw;
}
@media screen and (min-width: 768px) {
  .cta-bottom .cta-bottom__contact .title-en img {
    width: min(18.1666666667vw, 218px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-bottom .cta-bottom__contact .title-en img {
    width: 14.5333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .cta-bottom .cta-bottom__contact .image-box {
    right: 7.3333333333vw;
    top: 11.6vw;
  }
}
@media screen and (min-width: 768px) {
  .cta-bottom .cta-bottom__contact .image-box {
    top: -18px;
  }
}
@media screen and (min-width: 1500px) {
  .cta-bottom .cta-bottom__contact .image-box {
    top: -1.2vw;
  }
}
.cta-bottom .cta-bottom__contact .image-box img {
  width: 22.4vw;
}
@media screen and (min-width: 768px) {
  .cta-bottom .cta-bottom__contact .image-box img {
    width: min(14vw, 168px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-bottom .cta-bottom__contact .image-box img {
    width: 11.2vw;
  }
}
.cta-bottom .cta-bottom__download .title-en img {
  width: 51.0666666667vw;
}
@media screen and (min-width: 768px) {
  .cta-bottom .cta-bottom__download .title-en img {
    width: min(23.3333333333vw, 280px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-bottom .cta-bottom__download .title-en img {
    width: 18.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .cta-bottom .cta-bottom__download .image-box {
    right: 7.0666666667vw;
    top: 9.3333333333vw;
  }
}
.cta-bottom .cta-bottom__download .image-box img {
  width: 24.2666666667vw;
}
@media screen and (min-width: 768px) {
  .cta-bottom .cta-bottom__download .image-box img {
    width: min(15.1666666667vw, 182px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-bottom .cta-bottom__download .image-box img {
    width: 12.1333333333vw;
  }
}
.cta-bottom .cta-bottom__newsletter .title-en img {
  width: 51.3333333333vw;
}
@media screen and (min-width: 768px) {
  .cta-bottom .cta-bottom__newsletter .title-en img {
    width: min(23.5vw, 282px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-bottom .cta-bottom__newsletter .title-en img {
    width: 18.8vw;
  }
}
@media screen and (max-width: 767px) {
  .cta-bottom .cta-bottom__newsletter .image-box {
    right: 7.6vw;
    top: 11.2vw;
  }
}
.cta-bottom .cta-bottom__newsletter .image-box img {
  width: 23.0666666667vw;
}
@media screen and (min-width: 768px) {
  .cta-bottom .cta-bottom__newsletter .image-box img {
    width: min(14.4166666667vw, 173px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-bottom .cta-bottom__newsletter .image-box img {
    width: 11.5333333333vw;
  }
}

/*---------------------------------------------
footer
---------------------------------------------*/
.footer {
  background-repeat: no-repeat;
  color: #fff;
  padding: 26.6666666667vw 0 9.3333333333vw;
}
@media screen and (max-width: 767px) {
  .footer {
    background-color: #1d2c46;
    background-image: url(../img/common/footer_bg_sp.png);
    background-size: 100% auto;
    background-position: 0 100%;
  }
}
@media screen and (min-width: 768px) {
  .footer {
    background-image: url(../img/common/footer_bg.png);
    background-size: cover;
    background-position: 50% 50%;
    padding: min(17.5vw, 210px) 0 min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .footer {
    padding: 14vw 0 3.3333333333vw;
  }
}
.footer a {
  color: #fff;
}
.footer .layout-box {
  display: flex;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .footer .layout-box {
    flex-direction: row;
  }
}
.footer .layout-box .fooer-nav {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer .layout-box .fooer-nav {
    padding-bottom: 13.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .footer .layout-box .fooer-nav {
    margin-left: auto;
    margin-right: min(1.6666666667vw, 20px);
    gap: min(7.9166666667vw, 95px);
  }
}
@media screen and (min-width: 1500px) {
  .footer .layout-box .fooer-nav {
    margin-right: 1.3333333333vw;
    gap: 6.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .footer .layout-box .footer-nav-01 {
    width: 55.22%;
  }
}
.footer .layout-box .footer-nav-01 > li + li {
  margin-top: 2em;
}
@media screen and (max-width: 767px) {
  .footer .fooer-info {
    padding-top: 11.3333333333vw;
    font-size: 3.2vw;
  }
}
.footer .fooer-info .logo img {
  width: 58.8vw;
}
@media screen and (min-width: 768px) {
  .footer .fooer-info .logo img {
    width: min(25.0833333333vw, 301px);
  }
}
@media screen and (min-width: 1500px) {
  .footer .fooer-info .logo img {
    width: 20.0666666667vw;
  }
}
.footer .fooer-info .logo + .copy {
  margin-top: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .footer .fooer-info .logo + .copy {
    margin-top: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .footer .fooer-info .logo + .copy {
    margin-top: 1.3333333333vw;
  }
}
.footer .fooer-info .copy img {
  width: 81.3333333333vw;
}
@media screen and (min-width: 768px) {
  .footer .fooer-info .copy img {
    width: min(20.0833333333vw, 241px);
  }
}
@media screen and (min-width: 1500px) {
  .footer .fooer-info .copy img {
    width: 16.0666666667vw;
  }
}
.footer .fooer-info > * + .address {
  margin-top: 4.6666666667vw;
}
@media screen and (min-width: 768px) {
  .footer .fooer-info > * + .address {
    margin-top: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .footer .fooer-info > * + .address {
    margin-top: 3.3333333333vw;
  }
}
.footer .fooer-nav {
  line-height: 1.875;
  padding-top: 1em;
}
.footer .fooer-nav > ul > li {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .footer .fooer-nav > ul > li {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .footer .fooer-nav > ul > li {
    font-size: 1.0666666667vw;
  }
}
.footer .fooer-nav > ul > li > ul {
  padding-left: 1em;
}
.footer .fooer-nav > ul > li > ul li {
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .footer .fooer-nav > ul > li > ul li {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .footer .fooer-nav > ul > li > ul li {
    font-size: 1.0666666667vw;
  }
}
.footer .copyright {
  font-weight: 400;
  font-size: 2.4vw;
  margin-top: 7.3333333333vw;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    text-align: right;
    font-size: min(1.1666666667vw, 14px);
    margin-top: min(2.9166666667vw, 35px);
  }
}
@media screen and (min-width: 1500px) {
  .footer .copyright {
    font-size: 0.9333333333vw;
    margin-top: 2.3333333333vw;
  }
}

/*---------------------------------------------
breadcrumb
---------------------------------------------*/
.breadcrumb {
  margin-top: 1em;
  margin-bottom: 1em;
}
.breadcrumb ul {
  display: flex;
}
.breadcrumb ul li {
  font-size: min(1.1666666667vw, 14px);
}
@media screen and (min-width: 1500px) {
  .breadcrumb ul li {
    font-size: 0.9333333333vw;
  }
}
.breadcrumb ul li + li {
  margin-left: 0.5em;
}
.breadcrumb ul li + li:before {
  content: "-";
  margin-right: 0.5em;
}
.breadcrumb ul li a {
  text-decoration: underline;
  text-underline-offset: 5px;
}
.breadcrumb ul li a:hover {
  color: #5eb9ee;
}

/*---------------------------------------------
mv
---------------------------------------------*/
.mv {
  background-image: url(../img/common/mv_bg_sp.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .mv {
    background-size: auto 100%;
    background-image: url(../img/common/mv_bg.webp);
  }
}
.mv .layout-box {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 101.2vw;
}
@media screen and (max-width: 767px) {
  .mv .layout-box {
    padding-top: 5.0666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .mv .layout-box {
    justify-content: center;
    min-height: min(26.6666666667vw, 320px);
    padding-right: 48.18%;
  }
}
@media screen and (min-width: 1500px) {
  .mv .layout-box {
    min-height: 21.3333333333vw;
  }
}
.mv .mv-image {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv .mv-image {
    margin-top: auto;
  }
}
@media screen and (min-width: 768px) {
  .mv .mv-image {
    position: absolute;
    top: min(5vw, 60px);
    right: 0;
    width: min(41.6666666667vw, 500px);
  }
}
@media screen and (min-width: 1500px) {
  .mv .mv-image {
    top: 4vw;
    width: 33.3333333333vw;
  }
}
.mv .mv-image img {
  width: 100%;
  border-radius: 30px;
}
.mv .title-jp {
  color: #213987;
  font-size: 6.6666666667vw;
  margin-top: 0.3em;
}
@media screen and (min-width: 768px) {
  .mv .title-jp {
    font-size: min(3.6666666667vw, 44px);
    margin-top: 0.3em;
  }
}
@media screen and (min-width: 1500px) {
  .mv .title-jp {
    font-size: 2.9333333333vw;
  }
}
.mv .title-jp .sub-title {
  display: block;
  line-height: 1.2;
  margin-top: 0.5em;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .mv .title-jp .sub-title {
    font-size: min(2.3333333333vw, 28px);
  }
}
@media screen and (min-width: 1500px) {
  .mv .title-jp .sub-title {
    font-size: 1.8666666667vw;
  }
}
.mv .desc {
  line-height: 1.8;
  font-size: 3.7333333333vw;
  margin-top: 4vw;
}
@media screen and (max-width: 767px) {
  .mv .desc {
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .mv .desc {
    font-size: min(1.6666666667vw, 20px);
    margin-top: min(5.8333333333vw, 70px);
  }
}
@media screen and (min-width: 1500px) {
  .mv .desc {
    font-size: 1.3333333333vw;
    margin-top: 4.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .mv.mv-middle {
    background-image: url(../img/common/mv_bg-middle.png);
  }
}
@media screen and (min-width: 768px) {
  .mv.mv-middle .layout-box {
    min-height: min(35vw, 420px);
    justify-content: flex-start;
    padding-top: 8%;
    padding-right: 0;
  }
}
@media screen and (min-width: 1500px) {
  .mv.mv-middle .layout-box {
    min-height: 28vw;
  }
}
@media screen and (min-width: 768px) {
  .mv.mv-middle .desc {
    margin-top: min(2.0833333333vw, 25px);
  }
}
@media screen and (min-width: 1500px) {
  .mv.mv-middle .desc {
    margin-top: 1.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .mv.mv-taller {
    background-image: url(../img/common/mv_bg-taller.png);
  }
}
@media screen and (min-width: 768px) {
  .mv.mv-taller .layout-box {
    min-height: min(50vw, 600px);
    justify-content: flex-start;
    padding-top: 8%;
  }
}
@media screen and (min-width: 1500px) {
  .mv.mv-taller .layout-box {
    min-height: 40vw;
  }
}
@media screen and (min-width: 768px) {
  .mv.mv-cta .desc {
    margin-top: min(3.75vw, 45px);
  }
}
@media screen and (min-width: 1500px) {
  .mv.mv-cta .desc {
    margin-top: 3vw;
  }
}
.mv.mv-cta .btn-container {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .mv.mv-cta .btn-container {
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .mv.mv-cta .btn-container {
    margin-top: min(4.1666666667vw, 50px);
    gap: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .mv.mv-cta .btn-container {
    margin-top: 3.3333333333vw;
    gap: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .mv.mv-cta .btn-more {
    width: 47.16%;
  }
}
@media screen and (max-width: 767px) {
  .mv.mv-cta .mv-image {
    margin-top: 8vw;
  }
}
@media screen and (max-width: 767px) {
  .mv.-no-img .layout-box {
    min-height: 44vw;
  }
}

/*---------------------------------------------
fv
---------------------------------------------*/
.fv {
  position: relative;
  overflow: hidden;
}
.fv h1 {
  position: absolute;
  left: 50%;
  translate: -50% 0;
  top: 14.4vw;
  width: 89.3333333333vw;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .fv h1 {
    top: 19.68%;
    width: min(91.6666666667vw, 1100px);
  }
}
@media screen and (min-width: 1500px) {
  .fv h1 {
    width: 73.3333333333vw;
  }
}
.fv h1 img {
  width: 66.1333333333vw;
}
@media screen and (min-width: 768px) {
  .fv h1 img {
    width: min(41.3333333333vw, 496px);
  }
}
@media screen and (min-width: 1500px) {
  .fv h1 img {
    width: 33.0666666667vw;
  }
}
.fv .bg-text {
  position: absolute;
  top: 2.46%;
  left: 0;
  z-index: 1;
  width: 230.2666666667vw;
}
@media screen and (max-width: 767px) {
  .fv .bg-text {
    max-width: inherit;
    left: -40vw;
  }
}
@media screen and (min-width: 768px) {
  .fv .bg-text {
    width: 1727px;
    top: 4.74%;
    /*left: 50%;
    translate: -50% 0;*/
  }
}
@media screen and (min-width: 1500px) {
  .fv .bg-text {
    width: 115.1333333333vw;
  }
}
.fv .bg-image {
  position: absolute;
  top: 50%;
  left: 2.8%;
  translate: 0 -26.34%;
  z-index: 2;
  width: 102.2666666667vw;
}
@media screen and (min-width: 768px) {
  .fv .bg-image {
    width: min(72.3333333333vw, 868px);
    left: 50%;
    translate: -31.8% -46.47%;
  }
}
@media screen and (min-width: 1500px) {
  .fv .bg-image {
    width: 57.8666666667vw;
  }
}
.fv .bg-pattern {
  width: 100%;
}

/*---------------------------------------------
service
---------------------------------------------*/
.service {
  position: relative;
  overflow: hidden;
  padding: 13.3333333333vw 0;
}
@media screen and (min-width: 768px) {
  .service {
    padding: min(10.8333333333vw, 130px) 0 min(13.3333333333vw, 160px);
  }
}
@media screen and (min-width: 1500px) {
  .service {
    padding: 10.8333333333vw 0 13.3333333333vw;
  }
}
.service .title-en img {
  width: 64.8vw;
}
@media screen and (min-width: 768px) {
  .service .title-en img {
    width: min(40.5vw, 486px);
  }
}
@media screen and (min-width: 1500px) {
  .service .title-en img {
    width: 32.4vw;
  }
}
.service .layout-box .lead {
  flex: 1;
}
.service .layout-box .btn-more {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .service .layout-box .btn-more {
    margin-top: 0;
    margin-left: min(5vw, 60px);
  }
}
@media screen and (min-width: 1500px) {
  .service .layout-box .btn-more {
    margin-left: 4vw;
  }
}
.service .support-plan {
  display: flex;
  justify-content: space-between;
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  .service .support-plan {
    margin-top: min(11.6666666667vw, 140px);
  }
}
@media screen and (min-width: 1500px) {
  .service .support-plan {
    margin-top: 9.3333333333vw;
  }
}
.service .support-plan .support-plan__lower:nth-child(1) {
  width: 45.45%;
}
.service .support-plan .support-plan__lower:nth-child(2) {
  width: 49.72%;
}
.service .support-plan .support-plan__content {
  position: relative;
}
.service .support-plan .support-plan__content .support-plan_content__text {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding: 1em;
  z-index: 1;
}
.service .support-plan .support-plan__content .support-plan_content__text h3 {
  font-weight: 500;
  margin-bottom: 1.5em;
  font-size: min(3.3333333333vw, 40px);
}
@media screen and (min-width: 1500px) {
  .service .support-plan .support-plan__content .support-plan_content__text h3 {
    font-size: 2.6666666667vw;
  }
}
.service .support-plan .support-plan__content .support-plan_content__text p {
  line-height: 2.1;
  text-align: center;
  font-size: min(1.6666666667vw, 20px);
}
@media screen and (min-width: 1500px) {
  .service .support-plan .support-plan__content .support-plan_content__text p {
    font-size: 1.3333333333vw;
  }
}
.service .support-plan .support-plan__content .support-plan_content__bg {
  background-color: #000;
  border-radius: 30px;
  overflow: hidden;
}
.service .support-plan .support-plan__content .support-plan_content__bg .support-plan_content__image {
  opacity: 0.45;
  width: 100%;
}
.service .support-plan .title-box + .support-plan__nav {
  margin-top: min(1.6666666667vw, 20px);
}
@media screen and (min-width: 1500px) {
  .service .support-plan .title-box + .support-plan__nav {
    margin-top: 1.3333333333vw;
  }
}
.service .support-plan__nav li {
  border-bottom: solid 1px #d3d3d3;
  padding: 4px 2px;
}
.service .support-plan__nav li a {
  display: flex;
  width: 100%;
  align-items: center;
  border-radius: 10px;
  color: #021f42;
  font-weight: 600;
  font-size: min(2vw, 24px);
  padding: min(0.4166666667vw, 5px) min(1.25vw, 15px) min(0.4166666667vw, 5px) min(1.6666666667vw, 20px);
  height: min(6.6666666667vw, 80px);
}
@media screen and (min-width: 1500px) {
  .service .support-plan__nav li a {
    font-size: 1.6vw;
    padding: 0.3333333333vw 1vw 0.3333333333vw 1.3333333333vw;
    height: 5.3333333333vw;
  }
}
.service .support-plan__nav li .number {
  width: min(3.6666666667vw, 44px);
  margin-right: min(2.5vw, 30px);
}
@media screen and (min-width: 1500px) {
  .service .support-plan__nav li .number {
    width: 2.9333333333vw;
    margin-right: 2vw;
  }
}
.service .support-plan__nav li .number img {
  vertical-align: middle;
}
.service .support-plan__nav li .title {
  flex: 1;
}
.service .support-plan__nav li .arrow {
  border-radius: 50%;
  background-image: -moz-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-image: -webkit-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-image: -ms-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  opacity: 0.871;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: min(4.3333333333vw, 52px);
  height: min(4.3333333333vw, 52px);
}
@media screen and (min-width: 1500px) {
  .service .support-plan__nav li .arrow {
    width: 3.4666666667vw;
    height: 3.4666666667vw;
  }
}
.service .support-plan__nav li .arrow img {
  width: 44.23%;
}
.service .support-plan__nav li .arrow img._on {
  display: none;
}
.service .support-plan__nav li.is-active a {
  background-color: #f3f3f3;
}
.service .support-plan__nav li.is-active .arrow {
  border: solid 2px #007bda;
  background-image: none;
  background-color: white;
  opacity: 1;
}
.service .support-plan__nav li.is-active .arrow img._off {
  display: none;
}
.service .support-plan__nav li.is-active .arrow img._on {
  display: inline-block;
}
.service .support-plan__nav li:nth-child(1) .number img {
  width: min(2.9166666667vw, 35px);
}
@media screen and (min-width: 1500px) {
  .service .support-plan__nav li:nth-child(1) .number img {
    width: 2.3333333333vw;
  }
}
.service .support-plan__nav li:nth-child(2) .number img {
  width: min(3.5vw, 42px);
}
@media screen and (min-width: 1500px) {
  .service .support-plan__nav li:nth-child(2) .number img {
    width: 2.8vw;
  }
}
.service .support-plan__nav li:nth-child(3) .number img {
  width: min(3.5vw, 42px);
}
@media screen and (min-width: 1500px) {
  .service .support-plan__nav li:nth-child(3) .number img {
    width: 2.8vw;
  }
}
.service .support-plan__nav li:nth-child(4) .number img {
  width: min(3.5833333333vw, 43px);
}
@media screen and (min-width: 1500px) {
  .service .support-plan__nav li:nth-child(4) .number img {
    width: 2.8666666667vw;
  }
}
.service .support-plan__nav li:nth-child(5) .number img {
  width: min(3.5833333333vw, 43px);
}
@media screen and (min-width: 1500px) {
  .service .support-plan__nav li:nth-child(5) .number img {
    width: 2.8666666667vw;
  }
}
.service .support-plan-sp {
  margin-top: 16vw;
}
.service .support-plan-sp .support-plan__btn {
  display: flex;
  width: 100%;
  height: 16vw;
  align-items: center;
  padding: 1.3333333333vw 2.6666666667vw 1.3333333333vw 4vw;
  color: #021f42;
  font-size: 4.8vw;
  font-weight: bold;
}
.service .support-plan-sp .support-plan__btn .number-wrap {
  display: inline-flex;
  min-width: 7.2vw;
  margin-right: 2vw;
  align-items: center;
}
.service .support-plan-sp .support-plan__btn .number {
  vertical-align: middle;
  width: 7.2vw;
}
.service .support-plan-sp .support-plan__btn .title {
  flex: 1;
}
.service .support-plan-sp .support-plan__btn .arrow {
  border-radius: 50%;
  background-image: -moz-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-image: -webkit-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-image: -ms-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  opacity: 0.871;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.service .support-plan-sp .support-plan__btn .arrow img {
  width: 4.8vw;
}
.service .support-plan-sp .support-plan__btn .arrow img._off {
  display: inline-block;
}
.service .support-plan-sp .support-plan__btn .arrow img._on {
  display: none;
}
.service .support-plan-sp .support-plan__layout-box {
  display: flex;
  padding: 2vw 5.3333333333vw 7.3333333333vw;
}
.service .support-plan-sp .support-plan__layout-box .support-plan__image {
  margin-right: 4vw;
}
.service .support-plan-sp .support-plan__layout-box .support-plan__image img {
  border-radius: 3.4666666667vw;
  width: 30.6666666667vw;
  height: 32vw;
  object-fit: cover;
}
.service .support-plan-sp .support-plan__layout-box .support-plan__content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service .support-plan-sp .support-plan__layout-box .support-plan__description {
  font-size: 3.4666666667vw;
  margin-bottom: 0.5em;
}
.service .support-plan-sp .support-plan__layout-box .support-plan__link {
  margin-top: auto;
  text-align: right;
}
.service .support-plan-sp .support-plan__layout-box .support-plan__link a {
  color: #2966c1;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 6px;
}
.service .support-plan-sp .support-plan__cards {
  margin-top: 5.3333333333vw;
}
.service .support-plan-sp .support-plan__cards .support-plan__card {
  background-color: #f1f2f2;
  border-radius: 1.6vw;
}
.service .support-plan-sp .support-plan__cards .support-plan__card + .support-plan__card {
  margin-top: 4vw;
}
.service .support-plan-sp .support-plan__cards .support-plan__card:nth-child(1) .number {
  width: 6.1333333333vw;
}
.service .support-plan-sp .support-plan__cards .support-plan__card.is-active {
  background-color: #fff;
  box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.09);
}
.service .support-plan-sp .support-plan__cards .support-plan__card.is-active .arrow {
  border: solid 2px #007bda;
  background-image: none;
  background-color: white;
  opacity: 1;
}
.service .support-plan-sp .support-plan__cards .support-plan__card.is-active .arrow img._off {
  display: none;
}
.service .support-plan-sp .support-plan__cards .support-plan__card.is-active .arrow img._on {
  display: inline-block;
}
.service .bg-image {
  position: absolute;
  top: 24vw;
  left: 50%;
  width: 100%;
  translate: -70% 0;
  width: 299.3333333333vw;
  max-width: inherit;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .service .bg-image {
    top: 5%;
    width: 100%;
    translate: -50% 0;
    min-width: 1500px;
  }
}

.slider-main .slick-slide {
  transform: scale(0.98);
  transition: transform 0.4s ease-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none; /* 非表示中のスライドは操作不能に */
}

.slider-main .slick-active {
  transform: scale(1);
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

/*---------------------------------------------
feature
---------------------------------------------*/
.feature {
  position: relative;
  overflow: hidden;
  background-image: url(../img/home/feature_bg.webp);
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 18vw 0;
}
@media screen and (min-width: 768px) {
  .feature {
    padding: min(10.8333333333vw, 130px) 0 min(13.3333333333vw, 160px);
  }
}
@media screen and (min-width: 1500px) {
  .feature {
    padding: 8.6666666667vw 0 10.6666666667vw;
  }
}
.feature .title-en img {
  width: 67.6vw;
}
@media screen and (min-width: 768px) {
  .feature .title-en img {
    width: min(42.25vw, 507px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .title-en img {
    width: 33.8vw;
  }
}
.feature .feature-cards {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 8.6666666667vw;
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards {
    flex-direction: row;
    gap: min(4.5833333333vw, 55px) 5.45%;
    margin-top: min(5vw, 60px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards {
    gap: 3.6666666667vw 5.45%;
    margin-top: 4vw;
  }
}
.feature .feature-cards .feature-card__image {
  position: absolute;
  top: 0;
  left: 23.3333333333vw;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards .feature-card__image {
    left: min(11.6666666667vw, 140px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards .feature-card__image {
    left: 9.3333333333vw;
  }
}
.feature .feature-cards .feature-card__number {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  gap: 1.7333333333vw;
  width: 11.3333333333vw;
  margin-left: 2vw;
  padding: 0 0 2vw;
  margin-bottom: 20vw;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards .feature-card__number {
    gap: min(1.0833333333vw, 13px);
    width: min(7.0833333333vw, 85px);
    margin-left: min(1.25vw, 15px);
    padding: 0 0 min(1.25vw, 15px);
    margin-bottom: min(10.4166666667vw, 125px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards .feature-card__number {
    gap: 0.8666666667vw;
    width: 5.6666666667vw;
    margin-left: 1vw;
    padding: 0 0 1vw;
    margin-bottom: 8.3333333333vw;
  }
}
.feature .feature-cards .feature-card__number img:nth-child(1) {
  width: 100%;
}
.feature .feature-cards .feature-card__number:after {
  content: "";
  display: block;
  width: 95%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  background-color: #5eb9ee;
}
.feature .feature-cards .feature-card__title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature .feature-cards .feature-card__title h3 {
  font-weight: 600;
  line-height: 1.4;
  color: #021f42;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards .feature-card__title h3 {
    font-size: min(2.5vw, 30px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards .feature-card__title h3 {
    font-size: 2vw;
  }
}
.feature .feature-cards .feature-card__title + p {
  margin-top: 1em;
}
.feature .feature-cards p {
  font-weight: 500;
  line-height: 2;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards p {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards p {
    font-size: 1.2vw;
  }
}
.feature .feature-cards + .btn-container {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards + .btn-container {
    margin-top: min(5.8333333333vw, 70px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards + .btn-container {
    margin-top: 4.6666666667vw;
  }
}
.feature .feature-cards .feature-card {
  background-color: #fff;
  text-align: center;
  position: relative;
  width: 100%;
  border-radius: 2.6666666667vw;
  min-height: 58.6666666667vw;
  padding: 4.6666666667vw 4vw 6vw;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards .feature-card {
    width: 47.27%;
    border-radius: 20px;
    min-height: min(36.6666666667vw, 440px);
    padding: min(2.9166666667vw, 35px) min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards .feature-card {
    min-height: 29.3333333333vw;
    padding: 2.3333333333vw 1.3333333333vw;
  }
}
.feature .feature-cards .feature-card.feature-card-01 .feature-card__number img:nth-child(2) {
  width: 68.6%;
}
.feature .feature-cards .feature-card.feature-card-01 .feature-card__image {
  top: -4.5333333333vw;
  width: 35.3333333333vw;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards .feature-card.feature-card-01 .feature-card__image {
    top: min(-1.5vw, -18px);
    width: min(22.0833333333vw, 265px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards .feature-card.feature-card-01 .feature-card__image {
    top: -1.2vw;
    width: 17.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .feature .feature-cards .feature-card.feature-card-02 .feature-card__number {
    margin-bottom: 16vw;
  }
}
.feature .feature-cards .feature-card.feature-card-02 .feature-card__number img:nth-child(2) {
  width: 81.39%;
}
.feature .feature-cards .feature-card.feature-card-02 .feature-card__image {
  left: 29.0666666667vw;
  top: -4vw;
  width: 36vw;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards .feature-card.feature-card-02 .feature-card__image {
    left: min(12.75vw, 153px);
    top: min(-1.5vw, -18px);
    width: min(22.5vw, 270px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards .feature-card.feature-card-02 .feature-card__image {
    left: 10.2vw;
    top: -1.2vw;
    width: 18vw;
  }
}
.feature .feature-cards .feature-card.feature-card-03 .feature-card__number img:nth-child(2) {
  width: 82.55%;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards .feature-card.feature-card-03 .feature-card__title {
    padding-top: min(1.25vw, 15px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards .feature-card.feature-card-03 .feature-card__title {
    padding-top: 1vw;
  }
}
.feature .feature-cards .feature-card.feature-card-03 .feature-card__image {
  left: 30.9333333333vw;
  top: -3.0666666667vw;
  width: 26vw;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards .feature-card.feature-card-03 .feature-card__image {
    left: min(14vw, 168px);
    top: min(-1.9166666667vw, -23px);
    width: min(16.25vw, 195px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards .feature-card.feature-card-03 .feature-card__image {
    left: 11.2vw;
    top: -1.5333333333vw;
    width: 13vw;
  }
}
.feature .feature-cards .feature-card.feature-card-04 .feature-card__number img:nth-child(2) {
  width: 84.88%;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards .feature-card.feature-card-04 .feature-card__title {
    padding-top: min(1.25vw, 15px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards .feature-card.feature-card-04 .feature-card__title {
    padding-top: 1vw;
  }
}
.feature .feature-cards .feature-card.feature-card-04 .feature-card__image {
  left: 30.9333333333vw;
  top: -2.6666666667vw;
  width: 32.2666666667vw;
}
@media screen and (min-width: 768px) {
  .feature .feature-cards .feature-card.feature-card-04 .feature-card__image {
    left: min(14.5vw, 174px);
    top: min(-1.5vw, -18px);
    width: min(20.1666666667vw, 242px);
  }
}
@media screen and (min-width: 1500px) {
  .feature .feature-cards .feature-card.feature-card-04 .feature-card__image {
    left: 11.6vw;
    top: -1.2vw;
    width: 16.1333333333vw;
  }
}

/*---------------------------------------------
case
---------------------------------------------*/
.case {
  padding: 16vw 0;
}
@media screen and (min-width: 768px) {
  .case {
    padding: min(10vw, 120px) 0;
  }
}
@media screen and (min-width: 1500px) {
  .case {
    padding: 8vw 0;
  }
}
.case .title-en img {
  width: 41.6vw;
}
@media screen and (min-width: 768px) {
  .case .title-en img {
    width: min(26vw, 312px);
  }
}
@media screen and (min-width: 1500px) {
  .case .title-en img {
    width: 20.8vw;
  }
}
.case .case-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10vw;
}
@media screen and (min-width: 768px) {
  .case .case-logos {
    margin-top: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .case .case-logos {
    margin-top: 3.3333333333vw;
  }
}
.case .case-logos li {
  width: 25%;
}
@media screen and (max-width: 767px) {
  .case .case-logos li {
    width: 50%;
  }
}
.case .case-logos li img {
  width: 100%;
}
.case .case-pickup__cards {
  display: flex;
  flex-direction: column;
  margin-top: 21.3333333333vw;
  gap: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .case .case-pickup__cards {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: min(6.6666666667vw, 80px);
    gap: 85px 2.3%;
  }
}
@media screen and (min-width: 1500px) {
  .case .case-pickup__cards {
    margin-top: 5.3333333333vw;
  }
}
.case .case-pickup__cards .case-pickup__card {
  display: flex;
  flex-direction: column;
  color: #021f42;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .case .case-pickup__cards .case-pickup__card {
    width: 31.8%;
  }
}
.case .case-pickup__cards + .btn-container {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .case .case-pickup__cards + .btn-container {
    margin-top: min(6.25vw, 75px);
  }
}
@media screen and (min-width: 1500px) {
  .case .case-pickup__cards + .btn-container {
    margin-top: 5vw;
  }
}
.case .case-pickup__cards .case-pickup__photo img {
  border-radius: 20px;
  width: 100%;
}
.case .case-pickup__cards .case-pickup__photo a {
  display: block;
  width: 100%;
  transition: opacity 0.2s ease-in-out;
}
.case .case-pickup__cards .case-pickup__photo a:hover {
  opacity: 0.8;
}
.case .case-pickup__cards .case-pickup__photo + * {
  margin-top: 1em;
}
.case .case-pickup__cards .case-pickup__title {
  font-weight: 600;
  color: #213987;
  line-height: 1.363;
  font-size: 4.5333333333vw;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  .case .case-pickup__cards .case-pickup__title {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .case .case-pickup__cards .case-pickup__title {
    font-size: 1.3333333333vw;
  }
}
.case .case-pickup__cards .case-pickup__description {
  margin-top: auto;
  font-size: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .case .case-pickup__cards .case-pickup__description {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .case .case-pickup__cards .case-pickup__description {
    font-size: 1.0666666667vw;
  }
}
.case .case-pickup__cards .case-pickup__data {
  border-top: solid 1px #d3d3d3;
  font-size: 2.9333333333vw;
  padding-top: 0.8em;
  margin-top: 2em;
  line-height: 1.714;
  color: #5e5e5e;
}
@media screen and (min-width: 768px) {
  .case .case-pickup__cards .case-pickup__data {
    font-size: min(1.1666666667vw, 14px);
  }
}
@media screen and (min-width: 1500px) {
  .case .case-pickup__cards .case-pickup__data {
    font-size: 0.9333333333vw;
  }
}

/*---------------------------------------------
knowledge
---------------------------------------------*/
.knowledge {
  padding: 16vw 0 24vw;
}
@media screen and (min-width: 768px) {
  .knowledge {
    padding: min(10vw, 120px) 0;
  }
}
@media screen and (min-width: 1500px) {
  .knowledge {
    padding: 8vw 0;
  }
}
.knowledge .title-en img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .knowledge .title-en img {
    width: min(65.75vw, 789px);
  }
}
@media screen and (min-width: 1500px) {
  .knowledge .title-en img {
    width: 52.6vw;
  }
}
.knowledge .knowledge-pickup__cards {
  display: flex;
  flex-direction: column;
  margin-top: 8vw;
  gap: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .knowledge .knowledge-pickup__cards {
    margin-top: min(5vw, 50px);
    flex-direction: row;
    gap: 2.28%;
  }
}
@media screen and (min-width: 1500px) {
  .knowledge .knowledge-pickup__cards {
    margin-top: 4vw;
  }
}
.knowledge .knowledge-pickup__cards .knowledge-pickup__card {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .knowledge .knowledge-pickup__cards .knowledge-pickup__card {
    width: 31.81%;
  }
}
.knowledge .knowledge-pickup__cards .knowledge-pickup__thumb a {
  display: block;
  width: 100%;
  transition: opacity 0.2s ease-in-out;
}
.knowledge .knowledge-pickup__cards .knowledge-pickup__thumb a:hover {
  opacity: 0.8;
}
.knowledge .knowledge-pickup__cards .knowledge-pickup__thumb img {
  border-radius: 20px;
  width: 100%;
}
.knowledge .knowledge-pickup__cards + .btn-container {
  margin-top: 12.6666666667vw;
}
@media screen and (min-width: 768px) {
  .knowledge .knowledge-pickup__cards + .btn-container {
    margin-top: min(5vw, 60px);
  }
}
@media screen and (min-width: 1500px) {
  .knowledge .knowledge-pickup__cards + .btn-container {
    margin-top: 4vw;
  }
}

/*---------------------------------------------
consultant
---------------------------------------------*/
.consultant {
  position: relative;
  overflow: hidden;
  background-image: url(../img/home/consultant_bg.webp);
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 16vw 0;
}
@media screen and (min-width: 768px) {
  .consultant {
    padding: min(10vw, 120px) 0 min(8.3333333333vw, 100px);
  }
}
@media screen and (min-width: 1500px) {
  .consultant {
    padding: 8vw 0 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .consultant .container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .consultant .title-box {
    padding-left: calc(var(--custom-vw) * 0.0533333333);
    padding-right: calc(var(--custom-vw) * 0.0533333333);
  }
}
.consultant .title-en img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .consultant .title-en img {
    width: min(66.6666666667vw, 800px);
  }
}
@media screen and (min-width: 1500px) {
  .consultant .title-en img {
    width: 53.3333333333vw;
  }
}
.consultant .consultant__cards {
  position: relative;
  margin-top: 8vw;
  min-height: 55.3333333333vw;
}
@media screen and (min-width: 768px) {
  .consultant .consultant__cards {
    margin-top: min(6.25vw, 75px);
    min-height: min(43.3333333333vw, 520px);
  }
}
@media screen and (min-width: 1500px) {
  .consultant .consultant__cards {
    margin-top: 5vw;
    min-height: 34.6666666667vw;
  }
}
.consultant .consultant__cards .consultant__card {
  position: absolute;
  width: 25.73%;
}
@media screen and (min-width: 768px) {
  .consultant .consultant__cards .consultant__card {
    width: 22%;
  }
}
.consultant .consultant__cards .consultant__card:nth-child(1) {
  top: 1.7333333333vw;
  left: -6vw;
}
@media screen and (min-width: 768px) {
  .consultant .consultant__cards .consultant__card:nth-child(1) {
    top: min(1.3333333333vw, 16px);
    left: 3%;
  }
}
@media screen and (min-width: 1500px) {
  .consultant .consultant__cards .consultant__card:nth-child(1) {
    top: 1.0666666667vw;
  }
}
.consultant .consultant__cards .consultant__card:nth-child(2) {
  top: 2vw;
  left: 14.5333333333vw;
}
@media screen and (min-width: 768px) {
  .consultant .consultant__cards .consultant__card:nth-child(2) {
    top: min(1.25vw, 15px);
    left: 20.55%;
  }
}
@media screen and (min-width: 1500px) {
  .consultant .consultant__cards .consultant__card:nth-child(2) {
    top: 1vw;
  }
}
.consultant .consultant__cards .consultant__card:nth-child(3) {
  top: 0;
  left: 35.7333333333vw;
}
@media screen and (min-width: 768px) {
  .consultant .consultant__cards .consultant__card:nth-child(3) {
    left: 38.63%;
  }
}
.consultant .consultant__cards .consultant__card:nth-child(4) {
  top: 0.6666666667vw;
  left: 56.2666666667vw;
}
@media screen and (min-width: 768px) {
  .consultant .consultant__cards .consultant__card:nth-child(4) {
    top: min(0.5vw, 6px);
    left: 56.27%;
  }
}
@media screen and (min-width: 1500px) {
  .consultant .consultant__cards .consultant__card:nth-child(4) {
    top: 0.4vw;
  }
}
.consultant .consultant__cards .consultant__card:nth-child(5) {
  top: 0.5333333333vw;
  left: 77.2vw;
}
@media screen and (min-width: 768px) {
  .consultant .consultant__cards .consultant__card:nth-child(5) {
    top: min(0.4166666667vw, 5px);
    left: 74.27%;
  }
}
@media screen and (min-width: 1500px) {
  .consultant .consultant__cards .consultant__card:nth-child(5) {
    top: 0.3333333333vw;
  }
}
.consultant .btn-container {
  display: flex;
  flex-direction: column;
  margin-top: 12.6666666667vw;
  gap: 4vw;
}
@media screen and (max-width: 767px) {
  .consultant .btn-container {
    padding-left: calc(var(--custom-vw) * 0.0533333333);
    padding-right: calc(var(--custom-vw) * 0.0533333333);
  }
}
@media screen and (min-width: 768px) {
  .consultant .btn-container {
    flex-direction: row;
    justify-content: flex-end;
    margin-top: min(4.1666666667vw, 50px);
    gap: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .consultant .btn-container {
    margin-top: 6.3333333333vw;
    gap: 1.3333333333vw;
  }
}

/*---------------------------------------------
news
---------------------------------------------*/
.news {
  padding: 10.6666666667vw 0 0;
}
@media screen and (min-width: 768px) {
  .news {
    padding: min(13.3333333333vw, 160px) 0 min(7.9166666667vw, 95px);
  }
}
@media screen and (min-width: 1500px) {
  .news {
    padding: 10.6666666667vw 0 6.3333333333vw;
  }
}
.news .title-en img {
  width: 45.2vw;
}
@media screen and (min-width: 768px) {
  .news .title-en img {
    width: min(28.25vw, 339px);
  }
}
@media screen and (min-width: 1500px) {
  .news .title-en img {
    width: 22.6vw;
  }
}
.news .layout-box {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .news .layout-box {
    flex-direction: row;
    gap: 3.63%;
  }
}
@media screen and (min-width: 768px) {
  .news .layout-box .layout-bottom.-first {
    width: 31.81%;
  }
}
.news .layout-box .layout-bottom.-second {
  flex: 1;
}
.news .btn-more {
  margin-top: 11.3333333333vw;
}
@media screen and (min-width: 768px) {
  .news .btn-more {
    margin-top: min(3.75vw, 45px);
  }
}
@media screen and (min-width: 1500px) {
  .news .btn-more {
    margin-top: 3vw;
  }
}
@media screen and (max-width: 767px) {
  .news .post-items {
    margin-top: 8vw;
  }
}

/*
.H-sectionHeading.js-ignitionPoint.is-animate {
  opacity: 1;
  transform: translateX(0)
}

.main .fv__01.is-animate .fv__01__title {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.main .fv__02.is-animate .fv__02__title,
.main .fv__02.is-animate .fv__02__txt {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}


.main .fv__03.is-animate .fv__03__title {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.main .fv__03__lists.is-animate .fv__03__list {
  opacity: 1;
  transform: translateY(0)
}

.main .sec01.is-animate .sec__title {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.main .sec01__items.is-animate .sec01__item__img {
  opacity: 1;
  transform: translateY(0)
}

.main .sec02.is-animate .sec__title {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.main .sec02.is-animate .sec02__left__img {
  opacity: 1;
  transform: translateX(0)
}

.main .sec02.is-animate .sec02__right__img {
  transform: scale(1)
}

.main .sec02.is-animate .sec__title {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.main .sec02.is-animate .sec02__left__img {
  opacity: 1;
  transform: translateX(0)
}

.main .sec02.is-animate .sec02__right__img {
  transform: scale(1)
}

.main .sec02__left__data.is-animate {
  opacity: 1;
  transform: translateY(0)
}

.main .sec02__right__data.is-animate {
  opacity: 1;
  transform: translateY(0)
}

.main .sec01.is-animate .sec__title {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.main .sec03.is-animate .sec__title {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.main .sec03__img.is-animate {
  opacity: 1;
  transform: translateY(0)
}

.main .sec03__relation.is-animate .sec03__relation__list {
  opacity: 1;
  transform: translateY(0)
}

.main .sec04.is-animate .sec__title {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.main .sec04.is-animate .sec04top__left {
  opacity: 1;
  transform: translateX(0)
}

.main .sec04.is-animate .sec04top__right__img {
  transform: scale(1)
}

.main .sec04__bottom.is-animate .sec04bottom__img {
  opacity: 1;
  transform: translateY(0)
}

.main .sec05.is-animate .sec__title {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.main .sec05__top.is-animate .sec05top__img {
  opacity: 1;
  transform: translateY(0)
}

.main .sec05bottom__img.is-animate span {
  opacity: 1;
  transform: translateX(0)
}

.main .sec06.is-animate .sec__title {
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%)
}

.main .sec06.is-animate .sec06top__left {
  opacity: 1;
  transform: translateX(0)
}

.main .sec06.is-animate .sec06top__right__img {
  transform: scale(1)
}

.main .sec06bottom__img.is-animate {
  opacity: 1;
  transform: translateY(0);
  transform: scale(1)
}*/
/* アニメーション共通クラス */
.is-animate {
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

/* フェードイン */
.fadeIn {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.is-animated.fadeIn {
  opacity: 1;
}

/* フェードイン（右） */
.fadeInRight {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s, transform 1s ease;
}

.is-animated.fadeInRight {
  opacity: 1;
  transform: translateX(0);
}

/* フェードイン（下） */
.fadeInUp {
  opacity: 0;
  transform: translateY(40px);
  transition: transform 0.8s ease;
}

.is-animated.fadeInUp {
  opacity: 1;
  transform: translateY(0);
}

/* ズームイン */
.zoomIn {
  transform: scale(0.8);
  transition: transform 0.8s ease;
}

.is-animated.zoomIn {
  transform: scale(1);
}

/* クリップパスを使ったマスクアニメーション */
.clipIn2 {
  opacity: 0; /* 初期状態では非表示 */
  transition: opacity 0.3s ease; /* アニメーション設定 */
  position: relative;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
  transition: -webkit-clip-path 1s cubic-bezier(0.785, 0.135, 0.15, 1);
  transition: clip-path 1s cubic-bezier(0.785, 0.135, 0.15, 1);
  transition: clip-path 1s cubic-bezier(0.785, 0.135, 0.15, 1), -webkit-clip-path 1s cubic-bezier(0.785, 0.135, 0.15, 1);
}

.is-animated.clipIn2 {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.clipIn {
  transform: translateX(-30%);
  opacity: 0;
  transition: transform 0.6s ease-in-out, opacity 0.6s ease-in-out; /* 滑らかなイージング */
}

.clipIn.is-animated {
  transform: translateX(0);
  opacity: 1;
}

.maskIn {
  position: relative;
  mask-image: linear-gradient(to right, black 0%, black 0%, transparent 0%);
  -webkit-mask-image: linear-gradient(to right, black 0%, black 0%, transparent 0%);
  mask-size: 200% 100%; /* ← 少し余裕を持たせてアニメーションを柔らかく */
  -webkit-mask-size: 200% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  transition: mask-image 1s cubic-bezier(0.785, 0.135, 0.15, 1);
  -webkit-transition: -webkit-mask-image 1s cubic-bezier(0.785, 0.135, 0.15, 1);
  visibility: hidden; /* ← 初期状態は非表示 */
}

.is-animated.maskIn {
  mask-image: linear-gradient(to right, black 100%, black 100%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 100%, black 100%, transparent 100%);
  visibility: visible; /* ← アニメーション時に表示 */
}

.delay-3 {
  transition-delay: 0.3s;
}

.parentFadeIn > * {
  opacity: 0;
  transform: translateY(15%);
  transition: opacity 0.6s, transform 0.8s ease;
}

.parentFadeIn.is-animated > * {
  opacity: 1;
  transform: translateY(0);
}

.parentFadeIn > *:first-of-type {
  transition-delay: 0.25s;
}

.parentFadeIn > *:nth-of-type(2) {
  transition-delay: 0.5s;
}

.parentFadeIn > *:nth-of-type(3) {
  transition-delay: 0.75s;
}

.parentFadeIn > *:nth-of-type(4) {
  transition-delay: 1s;
}

.parentFadeIn > *:nth-of-type(5) {
  transition-delay: 1.25s;
}

.parentFadeIn > *:nth-of-type(6) {
  transition-delay: 1.5s;
}

.parentFadeInFast > * {
  opacity: 0;
  transform: translateY(10%);
  transition: opacity 0.3s, transform 0.4s ease;
}

.parentFadeInFast.is-animated > * {
  opacity: 1;
  transform: translateY(0);
}

.parentFadeInFast > *:first-of-type {
  transition-delay: 0.2s;
}

.parentFadeInFast > *:nth-of-type(2) {
  transition-delay: 0.4s;
}

.parentFadeInFast > *:nth-of-type(3) {
  transition-delay: 0.6s;
}

.parentFadeInFast > *:nth-of-type(4) {
  transition-delay: 0.8s;
}

.parentFadeInFast > *:nth-of-type(5) {
  transition-delay: 1s;
}

.parentFadeInFast > *:nth-of-type(6) {
  transition-delay: 1.2s;
}

@keyframes fuwafuwa1 {
  0% {
    transform: translate(0, 10px);
  }
  25% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -10px);
  }
  75% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 10px);
  }
}
.animationMove1,
.animationMove2,
.animationMove3 {
  pointer-events: none;
  position: absolute;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

.animationMove1 {
  animation-name: fuwafuwa1;
  animation-duration: 10s;
}

@keyframes slideFadeInRightToLeft {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.animate-slideFadeIn.is-animated {
  opacity: 0;
  animation: slideFadeInRightToLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.3s;
}

/*---------------------------------------------
mv
---------------------------------------------*/
.mv-about .title-en img {
  width: 55.7333333333vw;
}
@media screen and (min-width: 768px) {
  .mv-about .title-en img {
    width: min(24.0833333333vw, 289px);
  }
}
@media screen and (min-width: 1500px) {
  .mv-about .title-en img {
    width: 19.2666666667vw;
  }
}

/*---------------------------------------------
mission
---------------------------------------------*/
.mission {
  position: relative;
  padding: 14.4vw 0 70vw;
  background-image: url(../img/about/mission_bg_sp.webp);
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .mission {
    padding: min(10.8333333333vw, 130px) 0 min(45.8333333333vw, 550px);
    background-image: url(../img/about/mission_bg.webp);
    background-size: auto min(68.9166666667vw, 827px);
  }
}
@media screen and (min-width: 1500px) {
  .mission {
    padding: 8.6666666667vw 0 36.6666666667vw;
    background-size: 100% auto;
  }
}
.mission .title-en img {
  width: 66.9333333333vw;
}
@media screen and (min-width: 768px) {
  .mission .title-en img {
    width: min(41.8333333333vw, 502px);
  }
}
@media screen and (min-width: 1500px) {
  .mission .title-en img {
    width: 33.4666666667vw;
  }
}
.mission .mission-message {
  padding: 12.6666666667vw 0 14vw;
}
@media screen and (min-width: 768px) {
  .mission .mission-message {
    padding: min(8.3333333333vw, 100px) 0 min(6.6666666667vw, 80px);
  }
}
@media screen and (min-width: 1500px) {
  .mission .mission-message {
    padding: 6.6666666667vw 0 5.3333333333vw;
  }
}
.mission .mission-message .mission-message__catch {
  width: 55.4666666667vw;
}
@media screen and (max-width: 767px) {
  .mission .mission-message .mission-message__catch {
    margin-bottom: 10vw;
  }
}
@media screen and (min-width: 768px) {
  .mission .mission-message .mission-message__catch {
    margin-right: min(4.5833333333vw, 55px);
    width: min(34.6666666667vw, 416px);
  }
}
@media screen and (min-width: 1500px) {
  .mission .mission-message .mission-message__catch {
    margin-right: 3.6666666667vw;
    width: 27.7333333333vw;
  }
}
.mission .mission-message .mission-message__desc {
  flex: 1;
}
.mission .mission-message .mission-message__desc p {
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .mission .mission-message .mission-message__desc p {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .mission .mission-message .mission-message__desc p {
    font-size: 1.3333333333vw;
  }
}
.mission .mission-message .mission-message__desc p + p {
  margin-top: 2em;
}
.mission .mission-schema {
  display: flex;
  justify-content: center;
  gap: 3.0666666667vw;
}
@media screen and (min-width: 768px) {
  .mission .mission-schema {
    gap: min(2.5vw, 30px);
  }
}
@media screen and (min-width: 1500px) {
  .mission .mission-schema {
    gap: 2vw;
  }
}
.mission .mission-schema li {
  position: relative;
  overflow: hidden;
  box-shadow: 11.238px 27.816px 54px 0px rgba(9, 46, 95, 0.17);
  width: 27.7333333333vw;
  border-radius: 27.7333333333vw;
}
@media screen and (min-width: 768px) {
  .mission .mission-schema li {
    width: min(21.4166666667vw, 257px);
    border-radius: min(21.4166666667vw, 257px);
  }
}
@media screen and (min-width: 1500px) {
  .mission .mission-schema li {
    width: 17.1333333333vw;
    border-radius: 17.1333333333vw;
  }
}
.mission .mission-schema li img {
  width: 100%;
}

/*---------------------------------------------
overview
---------------------------------------------*/
.overview {
  position: relative;
  padding: 21.3333333333vw 0 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .overview {
    padding: min(12.5vw, 150px) 0 min(10.8333333333vw, 130px);
  }
}
@media screen and (min-width: 1500px) {
  .overview {
    padding: 10vw 0 8.6666666667vw;
  }
}
.overview .title-en img {
  width: 83.8666666667vw;
}
@media screen and (min-width: 768px) {
  .overview .title-en img {
    width: min(52.4166666667vw, 629px);
  }
}
@media screen and (min-width: 1500px) {
  .overview .title-en img {
    width: 41.9333333333vw;
  }
}
.overview .info-table {
  margin-top: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .overview .info-table {
    margin-top: min(5.8333333333vw, 70px);
  }
}
@media screen and (min-width: 1500px) {
  .overview .info-table {
    margin-top: 4.6666666667vw;
  }
}

/*---------------------------------------------
mv
---------------------------------------------*/
.mv-consultant .title-en img {
  width: 68.5333333333vw;
}
@media screen and (min-width: 768px) {
  .mv-consultant .title-en img {
    width: min(29.75vw, 357px);
  }
}
@media screen and (min-width: 1500px) {
  .mv-consultant .title-en img {
    width: 23.8vw;
  }
}

/*---------------------------------------------
members
---------------------------------------------*/
.members {
  padding: 20vw 0 24vw;
}
@media screen and (min-width: 768px) {
  .members {
    padding: min(9.1666666667vw, 110px) 0 min(10vw, 120px);
  }
}
@media screen and (min-width: 1500px) {
  .members {
    padding: 7.3333333333vw 0 8vw;
  }
}
.members .member-cards .member-card {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .members .member-cards .member-card {
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card {
    flex-direction: row;
    gap: min(3.3333333333vw, 40px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card {
    gap: 2.6666666667vw;
  }
}
.members .member-cards .member-card + .member-card {
  margin-top: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card + .member-card {
    margin-top: min(1.25vw, 15px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card + .member-card {
    margin-top: 1vw;
  }
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card:nth-child(2n) {
    flex-direction: row-reverse;
    margin-top: min(3.1666666667vw, 38px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card:nth-child(2n) {
    margin-top: 2.5333333333vw;
  }
}
.members .member-cards .member-card .member-card__image {
  width: 52.6666666667vw;
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card .member-card__image {
    width: min(27.0833333333vw, 325px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card .member-card__image {
    width: 21.6666666667vw;
  }
}
.members .member-cards .member-card .member-card__image img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .members .member-cards .member-card .member-card__image + .member-card__content {
    margin-top: 6.6666666667vw;
  }
}
.members .member-cards .member-card .member-card__content {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card .member-card__content {
    padding-top: min(8.3333333333vw, 100px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card .member-card__content {
    padding-top: 6.6666666667vw;
  }
}
.members .member-cards .member-card .member-card__content .member-card__title {
  border-bottom: solid 1px #151f52;
  margin-bottom: 4.6666666667vw;
  padding-bottom: 2vw;
  display: flex;
  flex-direction: column;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card .member-card__content .member-card__title {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: min(2.9166666667vw, 35px);
    padding-bottom: min(0.8333333333vw, 10px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card .member-card__content .member-card__title {
    margin-bottom: 2.3333333333vw;
    margin-bottom: 2.3333333333vw;
    padding-bottom: 0.6666666667vw;
  }
}
.members .member-cards .member-card .member-card__content .member-card__title span {
  display: flex;
  align-items: center;
}
.members .member-cards .member-card .member-card__content .member-card__title span:nth-child(1) {
  color: #213987;
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card .member-card__content .member-card__title span:nth-child(1) {
    font-size: min(3.5vw, 42px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card .member-card__content .member-card__title span:nth-child(1) {
    font-size: 2.8vw;
  }
}
.members .member-cards .member-card .member-card__content .member-card__title span:nth-child(2) {
  color: #e7e8e9;
  font-size: 9.3333333333vw;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card .member-card__content .member-card__title span:nth-child(2) {
    font-size: min(5vw, 60px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card .member-card__content .member-card__title span:nth-child(2) {
    font-size: 4vw;
  }
}
.members .member-cards .member-card .member-card__content p {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card .member-card__content p {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card .member-card__content p {
    font-size: 1.2vw;
  }
}
.members .member-cards .member-card .member-card__content p + p {
  margin-top: 2em;
}
.members .member-cards .member-card.member-01 .member-card__title img {
  width: 65.4666666667vw;
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card.member-01 .member-card__title img {
    width: min(35.1666666667vw, 422px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card.member-01 .member-card__title img {
    width: 28.1333333333vw;
  }
}
.members .member-cards .member-card.member-02 .member-card__title img {
  width: 62.5333333333vw;
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card.member-02 .member-card__title img {
    width: min(33.75vw, 405px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card.member-02 .member-card__title img {
    width: 27vw;
  }
}
.members .member-cards .member-card.member-03 .member-card__title img {
  width: 65.4666666667vw;
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card.member-03 .member-card__title img {
    width: min(35.1666666667vw, 422px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card.member-03 .member-card__title img {
    width: 28.1333333333vw;
  }
}
.members .member-cards .member-card.member-04 .member-card__title img {
  width: 65.4666666667vw;
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card.member-04 .member-card__title img {
    width: min(35.1666666667vw, 422px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card.member-04 .member-card__title img {
    width: 28.1333333333vw;
  }
}
.members .member-cards .member-card.member-05 .member-card__title img {
  width: 65.4666666667vw;
}
@media screen and (min-width: 768px) {
  .members .member-cards .member-card.member-05 .member-card__title img {
    width: min(35.1666666667vw, 422px);
  }
}
@media screen and (min-width: 1500px) {
  .members .member-cards .member-card.member-05 .member-card__title img {
    width: 28.1333333333vw;
  }
}

/*---------------------------------------------
mv
---------------------------------------------*/
.mv-support .title-en img {
  width: 73.0666666667vw;
}
@media screen and (min-width: 768px) {
  .mv-support .title-en img {
    width: min(31.6666666667vw, 380px);
  }
}
@media screen and (min-width: 1500px) {
  .mv-support .title-en img {
    width: 25.3333333333vw;
  }
}

/*---------------------------------------------
introduction
---------------------------------------------*/
.introduction {
  padding: 13.3333333333vw 0;
}
@media screen and (min-width: 768px) {
  .introduction {
    padding: min(9.5833333333vw, 115px) 0;
  }
}
@media screen and (min-width: 1500px) {
  .introduction {
    padding: 7.6666666667vw 0;
  }
}
.introduction .title-box {
  margin-bottom: 2.5em;
}
.introduction .introduction__desc {
  flex: 1;
  line-height: 1.8;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .introduction .introduction__desc {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .introduction .introduction__desc {
    font-size: 1.3333333333vw;
  }
}
.introduction .introduction__desc strong {
  font-size: 4vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .introduction .introduction__desc strong {
    font-size: min(2vw, 24px);
  }
}
@media screen and (min-width: 1500px) {
  .introduction .introduction__desc strong {
    font-size: 1.6vw;
  }
}

.strategy-planning .introduction .introduction__illust {
  width: 40vw;
}
@media screen and (max-width: 767px) {
  .strategy-planning .introduction .introduction__illust {
    margin-inline: auto;
    margin-top: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .strategy-planning .introduction .introduction__illust {
    width: min(26.6666666667vw, 320px);
    margin-left: min(2.5vw, 30px);
  }
}
@media screen and (min-width: 1500px) {
  .strategy-planning .introduction .introduction__illust {
    width: 21.3333333333vw;
    margin-left: 2vw;
  }
}
.strategy-planning .schema-01 {
  text-align: center;
  margin-top: 20vw;
}
@media screen and (min-width: 768px) {
  .strategy-planning .schema-01 {
    margin-top: min(8.3333333333vw, 100px);
  }
}
@media screen and (min-width: 1500px) {
  .strategy-planning .schema-01 {
    margin-top: 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .strategy-planning .schema-01 img {
    min-width: 728px;
  }
}
@media screen and (min-width: 768px) {
  .strategy-planning .schema-01 img {
    width: min(80.9166666667vw, 971px);
  }
}
@media screen and (min-width: 1500px) {
  .strategy-planning .schema-01 img {
    width: 64.7333333333vw;
  }
}

.data-driven .introduction .introduction__illust {
  width: 53.3333333333vw;
}
@media screen and (max-width: 767px) {
  .data-driven .introduction .introduction__illust {
    margin-inline: auto;
    margin-top: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .data-driven .introduction .introduction__illust {
    width: min(26.6666666667vw, 320px);
    margin-left: min(2.5vw, 30px);
  }
}
@media screen and (min-width: 1500px) {
  .data-driven .introduction .introduction__illust {
    width: 21.3333333333vw;
    margin-left: 2vw;
  }
}
.data-driven .schema-01 {
  text-align: center;
  margin-top: 20vw;
}
@media screen and (min-width: 768px) {
  .data-driven .schema-01 {
    margin-top: min(6.25vw, 75px);
  }
}
@media screen and (min-width: 1500px) {
  .data-driven .schema-01 {
    margin-top: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .data-driven .schema-01 img {
    min-width: 692px;
  }
}
@media screen and (min-width: 768px) {
  .data-driven .schema-01 img {
    width: min(76.9166666667vw, 923px);
  }
}
@media screen and (min-width: 1500px) {
  .data-driven .schema-01 img {
    width: 61.5333333333vw;
  }
}

.hands-on-support .introduction .introduction__illust {
  width: 53.7333333333vw;
}
@media screen and (max-width: 767px) {
  .hands-on-support .introduction .introduction__illust {
    margin-inline: auto;
    margin-top: 4vw;
  }
}
@media screen and (min-width: 768px) {
  .hands-on-support .introduction .introduction__illust {
    width: min(29.75vw, 357px);
    margin-left: min(0.8333333333vw, 10px);
  }
}
@media screen and (min-width: 1500px) {
  .hands-on-support .introduction .introduction__illust {
    width: 23.8vw;
    margin-left: 0.6666666667vw;
  }
}

.internal-penetration .introduction .introduction__illust {
  margin-top: 10vw;
  width: 46.9333333333vw;
}
@media screen and (min-width: 768px) {
  .internal-penetration .introduction .introduction__illust {
    width: min(29.3333333333vw, 352px);
    margin-left: min(2.5vw, 30px);
    margin-top: 0;
  }
}
@media screen and (min-width: 1500px) {
  .internal-penetration .introduction .introduction__illust {
    width: 23.4666666667vw;
    margin-left: 2vw;
  }
}
.internal-penetration .schema-01 {
  text-align: center;
  margin-top: 20vw;
}
@media screen and (min-width: 768px) {
  .internal-penetration .schema-01 {
    margin-top: min(6.25vw, 75px);
  }
}
@media screen and (min-width: 1500px) {
  .internal-penetration .schema-01 {
    margin-top: 5vw;
  }
}
@media screen and (max-width: 767px) {
  .internal-penetration .schema-01 img {
    min-width: 741px;
  }
}
@media screen and (min-width: 768px) {
  .internal-penetration .schema-01 img {
    width: min(82.3333333333vw, 988px);
  }
}
@media screen and (min-width: 1500px) {
  .internal-penetration .schema-01 img {
    width: 65.8666666667vw;
  }
}

.survey-response .introduction .introduction__illust {
  margin-top: 10vw;
  width: 36.2666666667vw;
}
@media screen and (min-width: 768px) {
  .survey-response .introduction .introduction__illust {
    width: min(22.6666666667vw, 272px);
    margin-left: min(2.5vw, 30px);
    margin-top: 0;
  }
}
@media screen and (min-width: 1500px) {
  .survey-response .introduction .introduction__illust {
    width: 18.1333333333vw;
    margin-left: 2vw;
  }
}
.survey-response .schema-01 {
  text-align: center;
  margin-top: 20vw;
}
@media screen and (min-width: 768px) {
  .survey-response .schema-01 {
    margin-top: min(8.3333333333vw, 100px);
  }
}
@media screen and (min-width: 1500px) {
  .survey-response .schema-01 {
    margin-top: 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .survey-response .schema-01 img {
    min-width: 736px;
  }
}
@media screen and (min-width: 768px) {
  .survey-response .schema-01 img {
    width: min(81.8333333333vw, 982px);
  }
}
@media screen and (min-width: 1500px) {
  .survey-response .schema-01 img {
    width: 65.4666666667vw;
  }
}

/*---------------------------------------------
support-results
---------------------------------------------*/
.support-results {
  padding: 16vw 0;
}
@media screen and (min-width: 768px) {
  .support-results {
    padding: min(10vw, 120px) 0;
  }
}
@media screen and (min-width: 1500px) {
  .support-results {
    padding: 8vw 0;
  }
}

.strategy-planning .support-results .support-results__image {
  text-align: center;
  margin-top: 10vw;
}
@media screen and (min-width: 768px) {
  .strategy-planning .support-results .support-results__image {
    margin-top: min(8.3333333333vw, 100px);
  }
}
@media screen and (min-width: 1500px) {
  .strategy-planning .support-results .support-results__image {
    margin-top: 6.6666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .strategy-planning .support-results .support-results__image img {
    min-width: 734px;
  }
}
@media screen and (min-width: 768px) {
  .strategy-planning .support-results .support-results__image img {
    width: min(81.5833333333vw, 979px);
  }
}
@media screen and (min-width: 1500px) {
  .strategy-planning .support-results .support-results__image img {
    width: 65.2666666667vw;
  }
}

.data-driven .support-results .support-results__image {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .data-driven .support-results .support-results__image {
    margin-top: 8vw;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .data-driven .support-results .support-results__image li {
    width: 85%;
  }
  .data-driven .support-results .support-results__image li img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .data-driven .support-results .support-results__image {
    margin-top: min(2.0833333333vw, 25px);
  }
}
@media screen and (min-width: 1500px) {
  .data-driven .support-results .support-results__image {
    margin-top: 1.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .data-driven .support-results .support-results__image img {
    width: min(85.25vw, 1023px);
  }
}
@media screen and (min-width: 1500px) {
  .data-driven .support-results .support-results__image img {
    width: 68.2vw;
  }
}

.hands-on-support .support-results__image {
  text-align: center;
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .hands-on-support .support-results__image {
    margin-top: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .hands-on-support .support-results__image {
    margin-top: 3.3333333333vw;
  }
}
.hands-on-support .support-results__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hands-on-support .support-results__image img {
    width: min(80.0833333333vw, 961px);
  }
}
@media screen and (min-width: 1500px) {
  .hands-on-support .support-results__image img {
    width: 64.0666666667vw;
  }
}

.internal-penetration .support-results__image {
  text-align: center;
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .internal-penetration .support-results__image {
    margin-top: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .internal-penetration .support-results__image {
    margin-top: 3.3333333333vw;
  }
}
.internal-penetration .support-results__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .internal-penetration .support-results__image img {
    width: min(82.5833333333vw, 991px);
  }
}
@media screen and (min-width: 1500px) {
  .internal-penetration .support-results__image img {
    width: 66.0666666667vw;
  }
}

/*---------------------------------------------
support-content
---------------------------------------------*/
.support-content {
  padding: 20vw 0 24vw;
}
@media screen and (min-width: 768px) {
  .support-content {
    padding: min(10vw, 120px) 0 min(15vw, 180px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content {
    padding: 8vw 0 12vw;
  }
}
.support-content .support-content__desc {
  font-size: 3.7333333333vw;
  color: #021f42;
  font-weight: bold;
  margin-top: 1em;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .support-content .support-content__desc {
    font-size: min(2.3333333333vw, 28px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .support-content__desc {
    font-size: 1.8666666667vw;
  }
}
.support-content .schema-03 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .support-content .schema-03 img {
    min-width: 732px;
  }
}
@media screen and (min-width: 768px) {
  .support-content .schema-03 img {
    width: min(81.3333333333vw, 976px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .schema-03 img {
    width: 65.0666666667vw;
  }
}
.support-content .support-content__notes {
  font-size: 3.2vw;
  margin-top: 3em;
}
@media screen and (min-width: 768px) {
  .support-content .support-content__notes {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .support-content__notes {
    font-size: 1.0666666667vw;
  }
}
.support-content .support-content__notes a {
  color: #213987;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.support-content .support-content__notes a:hover {
  opacity: 0.8;
}
.support-content .support-content__details .support-content__detail {
  margin-top: 11.3333333333vw;
}
@media screen and (min-width: 768px) {
  .support-content .support-content__details .support-content__detail {
    margin-top: min(10vw, 120px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .support-content__details .support-content__detail {
    margin-top: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .support-content .support-content__details .toggle-btn {
    display: none !important;
  }
  .support-content .support-content__details .toggle-content {
    display: block !important;
  }
}
.support-content .numbered-title {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  color: #021f42;
}
.support-content .numbered-title .number {
  display: flex;
  align-items: center;
  position: relative;
  /*padding-right: 42px;
  margin-right: 15px;
  min-height: 52px;*/
  padding-right: 5.3333333333vw;
  margin-right: 2vw;
}
@media screen and (min-width: 768px) {
  .support-content .numbered-title .number {
    padding-right: min(3.5vw, 42px);
    margin-right: min(1.25vw, 15px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .numbered-title .number {
    padding-right: 2.8vw;
    margin-right: 1vw;
  }
}
.support-content .numbered-title .number:after {
  position: absolute;
  top: 50%;
  right: 0;
  content: "";
  display: block;
  background: linear-gradient(120deg, transparent 48%, #5eb9ee 50%, transparent 51%);
  background-size: 100% 100%;
  margin-top: -25px;
  width: 32px;
  height: 50px;
  margin-top: -3.3333333333vw;
  width: 4.2666666667vw;
  height: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .support-content .numbered-title .number:after {
    margin-top: max(-2.0833333333vw, -25px);
    width: min(2.6666666667vw, 32px);
    height: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .numbered-title .number:after {
    margin-top: -1.6666666667vw;
    width: 2.1333333333vw;
    height: 3.3333333333vw;
  }
}
.support-content .numbered-title .number img[src*="number-01.svg"] {
  width: 6.5333333333vw;
}
@media screen and (min-width: 768px) {
  .support-content .numbered-title .number img[src*="number-01.svg"] {
    width: min(3.5vw, 42px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .numbered-title .number img[src*="number-01.svg"] {
    width: 2.8vw;
  }
}
.support-content .numbered-title .number img[src*="number-02.svg"] {
  width: 7.8666666667vw;
}
@media screen and (min-width: 768px) {
  .support-content .numbered-title .number img[src*="number-02.svg"] {
    width: min(4.0833333333vw, 49px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .numbered-title .number img[src*="number-02.svg"] {
    width: 3.2666666667vw;
  }
}
.support-content .numbered-title .number img[src*="number-03.svg"] {
  width: 7.8666666667vw;
}
@media screen and (min-width: 768px) {
  .support-content .numbered-title .number img[src*="number-03.svg"] {
    width: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .numbered-title .number img[src*="number-03.svg"] {
    width: 3.3333333333vw;
  }
}
.support-content .numbered-title .number img[src*="number-04.svg"] {
  width: 8.1333333333vw;
}
@media screen and (min-width: 768px) {
  .support-content .numbered-title .number img[src*="number-04.svg"] {
    width: min(4.25vw, 51px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .numbered-title .number img[src*="number-04.svg"] {
    width: 3.4vw;
  }
}
.support-content .numbered-title .number img[src*="number-05.svg"] {
  width: 8vw;
}
@media screen and (min-width: 768px) {
  .support-content .numbered-title .number img[src*="number-05.svg"] {
    width: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .numbered-title .number img[src*="number-05.svg"] {
    width: 3.3333333333vw;
  }
}
.support-content .numbered-title .number img[src*="number-06.svg"] {
  width: 8.4vw;
}
@media screen and (min-width: 768px) {
  .support-content .numbered-title .number img[src*="number-06.svg"] {
    width: min(4.3333333333vw, 52px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .numbered-title .number img[src*="number-06.svg"] {
    width: 3.4666666667vw;
  }
}
.support-content .numbered-title .number img[src*="number-07.svg"] {
  width: 8vw;
}
@media screen and (min-width: 768px) {
  .support-content .numbered-title .number img[src*="number-07.svg"] {
    width: min(4.0833333333vw, 49px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .numbered-title .number img[src*="number-07.svg"] {
    width: 3.2666666667vw;
  }
}
.support-content .numbered-title .number img[src*="number-08.svg"] {
  width: 8.4vw;
}
@media screen and (min-width: 768px) {
  .support-content .numbered-title .number img[src*="number-08.svg"] {
    width: min(4.4166666667vw, 53px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .numbered-title .number img[src*="number-08.svg"] {
    width: 3.5333333333vw;
  }
}
.support-content .numbered-title h3 {
  flex: 1;
  font-weight: 600;
  font-size: 5.0666666667vw;
}
@media screen and (min-width: 768px) {
  .support-content .numbered-title h3 {
    font-size: min(3.3333333333vw, 40px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .numbered-title h3 {
    font-size: 2.6666666667vw;
  }
}
.support-content .support-content__detail__desc {
  font-size: 3.4666666667vw;
  line-height: 1.8;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  .support-content .support-content__detail__desc {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .support-content__detail__desc {
    font-size: 1.3333333333vw;
  }
}
.support-content .category-title {
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .support-content .category-title.col2 {
    width: 63.62%;
    margin-left: auto;
    margin-right: auto;
  }
}
.support-content .category-title span {
  font-size: 5.3333333333vw;
  font-weight: 500;
  border: solid 2px #5eb9ee;
  border-radius: 10px;
  color: #5eb9ee;
  display: inline-flex;
  justify-content: center;
  padding: 0.1em 0.5em;
  min-width: 42.9333333333vw;
}
@media screen and (min-width: 768px) {
  .support-content .category-title span {
    font-size: min(3vw, 36px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .category-title span {
    font-size: 2.4vw;
  }
}
@media screen and (min-width: 768px) {
  .support-content .category-title span {
    min-width: min(26.8333333333vw, 322px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .category-title span {
    min-width: 21.4666666667vw;
  }
}
.support-content .support-content__detail__items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 8.6666666667vw;
}
@media screen and (min-width: 768px) {
  .support-content .support-content__detail__items {
    gap: 4em 2.285%;
    flex-direction: row;
    justify-content: center;
  }
}
.support-content .support-content__detail__items .support-content__detail__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .support-content .support-content__detail__items .support-content__detail__item {
    width: 31.81%;
  }
}
.support-content .support-content__detail__items .contents-title {
  font-size: 5.3333333333vw;
  font-weight: bold;
  color: #213987;
  margin-top: 0.8em;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .support-content .support-content__detail__items .contents-title {
    font-size: min(2vw, 24px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .support-content__detail__items .contents-title {
    font-size: 1.6vw;
  }
}
.support-content .support-content__detail__items .contents-desc {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .support-content .support-content__detail__items .contents-desc {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .support-content__detail__items .contents-desc {
    font-size: 1.0666666667vw;
  }
}
.support-content .support-content__detail__items + .category-title {
  margin-top: 3em;
}
.support-content .support-content__detail__items .check-list-title {
  font-size: 3.4666666667vw;
  font-weight: 600;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  .support-content .support-content__detail__items .check-list-title {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .support-content__detail__items .check-list-title {
    font-size: 1.0666666667vw;
  }
}
.support-content .support-content__detail__items .check-list {
  font-size: 3.4666666667vw;
  font-weight: 600;
  margin-top: 0.2em;
}
@media screen and (min-width: 768px) {
  .support-content .support-content__detail__items .check-list {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .support-content__detail__items .check-list {
    font-size: 1.0666666667vw;
  }
}
.support-content .contents-image img {
  width: 100%;
}
.support-content .task-list {
  background-color: #e5f4fc;
  border-radius: 10px;
  margin-bottom: 10.6666666667vw;
  padding: 2em;
}
@media screen and (min-width: 768px) {
  .support-content .task-list {
    margin-bottom: min(5vw, 60px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .task-list {
    margin-bottom: 4vw;
  }
}
.support-content .task-list ul {
  /*display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: .1em;*/
}
@media screen and (max-width: 767px) {
  .support-content .task-list ul {
    column-count: 1;
  }
}
@media screen and (min-width: 768px) {
  .support-content .task-list ul {
    /*flex-direction: row;
    gap: .6em 1.0em;*/
    column-count: 2;
    column-gap: 1em;
  }
}
.support-content .task-list ul li {
  font-size: 3.4666666667vw;
  color: #213987;
  font-weight: 500;
  position: relative;
  margin-bottom: 0.6em;
  /*padding-left: 1em;
  &:before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
  }*/
}
@media screen and (min-width: 768px) {
  .support-content .task-list ul li {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .support-content .task-list ul li {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 768px) {
  .support-content .task-list ul li {
    min-width: 40%;
  }
}

.hands-on-support .support-content .support-content__image {
  display: flex;
  flex-direction: column;
  margin-top: 8vw;
  gap: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .hands-on-support .support-content .support-content__image {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: min(4.1666666667vw, 50px);
    gap: min(2.5vw, 30px) min(2.0833333333vw, 25px);
  }
}
@media screen and (min-width: 1500px) {
  .hands-on-support .support-content .support-content__image {
    margin-top: 3.3333333333vw;
    gap: 2vw 1.6666666667vw;
  }
}
.hands-on-support .support-content .support-content__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hands-on-support .support-content .support-content__image img {
    width: min(36.6666666667vw, 440px);
  }
}
@media screen and (min-width: 1500px) {
  .hands-on-support .support-content .support-content__image img {
    width: 29.3333333333vw;
  }
}

.internal-penetration .schema-03 {
  text-align: center;
}
.internal-penetration .schema-03 img {
  width: 992px;
}
@media screen and (min-width: 768px) {
  .internal-penetration .schema-03 img {
    width: min(82.6666666667vw, 992px);
  }
}
@media screen and (min-width: 1500px) {
  .internal-penetration .schema-03 img {
    width: 66.1333333333vw;
  }
}
.internal-penetration .support-4_content-03-details {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 8.6666666667vw;
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .internal-penetration .support-4_content-03-details {
    gap: 4em 2.285%;
    flex-direction: row;
    justify-content: center;
    margin-top: min(5vw, 60px);
  }
}
@media screen and (min-width: 1500px) {
  .internal-penetration .support-4_content-03-details {
    margin-top: 4vw;
  }
}
.internal-penetration .support-4_content-03-details > * {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .internal-penetration .support-4_content-03-details > * {
    width: 31.81%;
    max-width: min(29.1666666667vw, 350px);
  }
}
@media screen and (min-width: 1500px) {
  .internal-penetration .support-4_content-03-details > * {
    max-width: 23.3333333333vw;
  }
}
.internal-penetration .support-4_content-03-details > * img {
  width: 100%;
}

/*---------------------------------------------
cta-middle
---------------------------------------------*/
.cta-middle {
  background-image: -moz-linear-gradient(115deg, rgb(228, 245, 254) 47%, rgb(226, 231, 247) 99%);
  background-image: -webkit-linear-gradient(115deg, rgb(228, 245, 254) 47%, rgb(226, 231, 247) 99%);
  background-image: -ms-linear-gradient(115deg, rgb(228, 245, 254) 47%, rgb(226, 231, 247) 99%);
  text-align: center;
  padding: 10vw 0;
}
@media screen and (min-width: 768px) {
  .cta-middle {
    padding: min(5.8333333333vw, 70px) 0;
  }
}
@media screen and (min-width: 1500px) {
  .cta-middle {
    padding: 4.6666666667vw 0;
  }
}
.cta-middle .cta-middle_title {
  font-size: 5.3333333333vw;
  color: #213987;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .cta-middle .cta-middle_title {
    font-size: min(3.1666666667vw, 38px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-middle .cta-middle_title {
    font-size: 2.5333333333vw;
  }
}
.cta-middle .btn-container {
  gap: 5.0666666667vw;
}
@media screen and (min-width: 768px) {
  .cta-middle .btn-container {
    gap: min(3.1666666667vw, 38px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-middle .btn-container {
    gap: 2.5333333333vw;
  }
}
.cta-middle .cta-middle_notes {
  font-size: 3.2vw;
  font-weight: 500;
  color: #213987;
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .cta-middle .cta-middle_notes {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .cta-middle .cta-middle_notes {
    font-size: 1.3333333333vw;
  }
}
.cta-middle .cta-middle_notes a {
  color: #213987;
  text-decoration: underline;
  text-underline-offset: 10px;
}
.cta-middle .cta-middle_notes a:hover {
  opacity: 0.8;
}

/*---------------------------------------------
quality
---------------------------------------------*/
.quality {
  background-image: url(../img/common/bg_wave-01_sp.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
  padding: 16.6666666667vw 0 16vw;
}
@media screen and (max-width: 767px) {
  .quality {
    background-size: 100% auto;
  }
}
@media screen and (min-width: 768px) {
  .quality {
    background-image: url(../img/common/bg_wave-01.png);
    padding: min(13.3333333333vw, 160px) 0 min(10vw, 120px);
  }
}
@media screen and (min-width: 1500px) {
  .quality {
    background-size: 100% auto;
    padding: 10.6666666667vw 0 8vw;
  }
}
.quality .quality-points {
  margin-top: 28vw;
}
@media screen and (min-width: 768px) {
  .quality .quality-points {
    margin-top: min(5.8333333333vw, 70px);
  }
}
@media screen and (min-width: 1500px) {
  .quality .quality-points {
    background-size: 100% auto;
    margin-top: 4.6666666667vw;
  }
}
.quality .quality-points .quality-point {
  display: flex;
  flex-direction: column;
  gap: 14.6666666667vw;
}
.quality .quality-points .quality-point + .quality-point {
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  .quality .quality-points .quality-point + .quality-point {
    margin-top: min(3.3333333333vw, 40px);
  }
}
@media screen and (min-width: 1500px) {
  .quality .quality-points .quality-point + .quality-point {
    margin-top: 2.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .quality .quality-points .quality-point {
    flex-direction: row;
    gap: min(2.5vw, 30px);
    align-items: center;
  }
  .quality .quality-points .quality-point:nth-child(2n) {
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 1500px) {
  .quality .quality-points .quality-point {
    gap: 2vw;
  }
}
.quality .quality-points .quality-point .quality-point__text {
  flex: 1;
}
.quality .quality-points .quality-point .quality-point__number {
  color: #5eb9ee;
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: 4.2666666667vw;
  padding-left: 2.8em;
  position: relative;
  margin-bottom: 0.8em;
}
.quality .quality-points .quality-point .quality-point__number:after {
  position: absolute;
  top: 50%;
  left: 0;
  content: "";
  display: block;
  width: 2.2em;
  height: 2px;
  background-color: #a9daf6;
}
.quality .quality-points .quality-point .quality-point__number img {
  margin-left: 0.2em;
}
@media screen and (min-width: 768px) {
  .quality .quality-points .quality-point .quality-point__number {
    font-size: min(2.1666666667vw, 26px);
  }
}
@media screen and (min-width: 1500px) {
  .quality .quality-points .quality-point .quality-point__number {
    font-size: 1.7333333333vw;
  }
}
.quality .quality-points .quality-point .quality-point__title {
  font-size: 4.8vw;
  font-weight: 600;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .quality .quality-points .quality-point .quality-point__title {
    font-size: min(2.6666666667vw, 32px);
  }
}
@media screen and (min-width: 1500px) {
  .quality .quality-points .quality-point .quality-point__title {
    font-size: 2.1333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .quality .quality-points .quality-point .quality-point__title {
    margin-left: 1.2em;
  }
}
@media screen and (min-width: 768px) {
  .quality .quality-points .quality-point .quality-point__details {
    margin-left: 3em;
  }
}
.quality .quality-points .quality-point .quality-point__details li {
  line-height: 2;
  padding-left: 1em;
  font-size: 3.4666666667vw;
  position: relative;
  color: #021f42;
}
@media screen and (min-width: 768px) {
  .quality .quality-points .quality-point .quality-point__details li {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .quality .quality-points .quality-point .quality-point__details li {
    font-size: 1.2vw;
  }
}
.quality .quality-points .quality-point .quality-point__details li:after {
  content: "";
  display: block;
  width: 0.66em;
  height: 0.66em;
  border-radius: 0.66em;
  position: absolute;
  top: 0.75em;
  left: 0;
  background-color: #5eb9ee;
}

.voice {
  padding: 0 0 16vw;
}
@media screen and (min-width: 768px) {
  .voice {
    padding: 0 0 min(10vw, 120px);
  }
}
@media screen and (min-width: 1500px) {
  .voice {
    padding: 0 0 8vw;
  }
}
.voice .voice-items {
  border-radius: 20px;
  background-color: #f0faff;
  padding: 0 6vw;
  margin-top: 6vw;
}
@media screen and (min-width: 768px) {
  .voice .voice-items {
    padding: 0 min(4.5833333333vw, 55px);
    margin-top: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .voice .voice-items {
    padding: 0 3.6666666667vw;
    margin-top: 3.3333333333vw;
  }
}
.voice .voice-items .voice-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 4vw 0.6666666667vw 4vw 2vw;
}
@media screen and (min-width: 768px) {
  .voice .voice-items .voice-item {
    padding: min(2.5vw, 30px) min(0.4166666667vw, 5px) min(2.5vw, 30px) min(1.25vw, 15px);
    align-items: center;
  }
}
@media screen and (min-width: 1500px) {
  .voice .voice-items .voice-item {
    padding: 2vw 0.3333333333vw 2vw 1vw;
  }
}
.voice .voice-items .voice-item + .voice-item {
  border-top: solid 1px #a9daf6;
}
.voice .voice-items .voice-item__image {
  width: 17.4666666667vw;
  margin-right: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .voice .voice-items .voice-item__image {
    width: min(8.4166666667vw, 101px);
    margin-right: min(2.5vw, 30px);
  }
}
@media screen and (min-width: 1500px) {
  .voice .voice-items .voice-item__image {
    width: 6.7333333333vw;
    margin-right: 2vw;
  }
}
.voice .voice-items .voice-item__text {
  flex: 1;
}
.voice .voice-items .voice-item__text p {
  color: #021f42;
  line-height: 2;
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .voice .voice-items .voice-item__text p {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .voice .voice-items .voice-item__text p {
    font-size: 1.2vw;
  }
}

.steps {
  padding: 14.6666666667vw 0 16vw;
}
@media screen and (min-width: 768px) {
  .steps {
    padding: min(7.5vw, 90px) 0;
  }
}
@media screen and (min-width: 1500px) {
  .steps {
    padding: 6vw 0;
  }
}
.steps .steps-items {
  display: flex;
  flex-direction: column;
  gap: 24vw;
  margin-top: 11.3333333333vw;
}
@media screen and (min-width: 768px) {
  .steps .steps-items {
    flex-direction: row;
    gap: 5.69%;
    margin-top: min(5.8333333333vw, 70px);
  }
}
@media screen and (min-width: 1500px) {
  .steps .steps-items {
    margin-top: 4.6666666667vw;
  }
}
.steps .steps-items .steps-item {
  width: auto;
  position: relative;
}
@media screen and (min-width: 768px) {
  .steps .steps-items .steps-item {
    width: 29.54%;
  }
}
.steps .steps-items .steps-item .steps-item__image {
  text-align: center;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .steps .steps-items .steps-item .steps-item__image {
    margin-bottom: min(0.8333333333vw, 10px);
  }
}
@media screen and (min-width: 1500px) {
  .steps .steps-items .steps-item .steps-item__image {
    margin-bottom: 0.6666666667vw;
  }
}
.steps .steps-items .steps-item .steps-item__image img {
  width: 64.1333333333vw;
}
@media screen and (min-width: 768px) {
  .steps .steps-items .steps-item .steps-item__image img {
    width: min(24.5vw, 294px);
  }
}
@media screen and (min-width: 1500px) {
  .steps .steps-items .steps-item .steps-item__image img {
    width: 19.6vw;
  }
}
.steps .steps-items .steps-item .steps-item__title {
  font-size: 5.3333333333vw;
  font-weight: bold;
  color: #213987;
  margin-bottom: 0.6em;
}
@media screen and (min-width: 768px) {
  .steps .steps-items .steps-item .steps-item__title {
    font-size: min(2vw, 24px);
  }
}
@media screen and (min-width: 1500px) {
  .steps .steps-items .steps-item .steps-item__title {
    font-size: 1.6vw;
  }
}
.steps .steps-items .steps-item .steps-item__desc {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .steps .steps-items .steps-item .steps-item__desc {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .steps .steps-items .steps-item .steps-item__desc {
    font-size: 1.2vw;
  }
}
.steps .steps-items .steps-item + .steps-item:after {
  position: absolute;
  content: "";
  display: block;
  width: 9.4666666667vw;
  height: 12.5333333333vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .steps .steps-items .steps-item + .steps-item:after {
    top: -18.6666666667vw;
    left: 50%;
    background-image: url(../img/common/arrow-blue-hoso-down.svg);
    translate: -50% 0;
  }
}
@media screen and (min-width: 768px) {
  .steps .steps-items .steps-item + .steps-item:after {
    width: min(4.75vw, 57px);
    height: min(3.5833333333vw, 43px);
    background-image: url(../img/common/arrow-blue-hoso.svg);
    top: min(10.4166666667vw, 125px);
    left: max(-5vw, -60px);
  }
}
@media screen and (min-width: 1500px) {
  .steps .steps-items .steps-item + .steps-item:after {
    width: 3.8vw;
    height: 2.8666666667vw;
    top: 8.3333333333vw;
    left: -4vw;
  }
}

.faq {
  padding: 16vw 0 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .faq {
    padding: min(10vw, 120px) 0 min(6.6666666667vw, 80px);
  }
}
@media screen and (min-width: 1500px) {
  .faq {
    padding: 8vw 0 5.3333333333vw;
  }
}
.faq .faq-items {
  margin-top: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .faq .faq-items {
    margin-top: min(5.8333333333vw, 70px);
  }
}
@media screen and (min-width: 1500px) {
  .faq .faq-items {
    margin-top: 4.6666666667vw;
  }
}
.faq .faq-items .faq-item {
  margin-top: 5.3333333333vw;
  background-color: #f6f7f7;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
  .faq .faq-items .faq-item {
    margin-top: min(2.5vw, 30px);
  }
}
@media screen and (min-width: 1500px) {
  .faq .faq-items .faq-item {
    margin-top: 2vw;
  }
}
.faq .faq-items .faq-item .faq-item__box {
  display: flex;
  align-items: flex-start;
  padding: 4.6666666667vw 3.3333333333vw;
}
@media screen and (min-width: 768px) {
  .faq .faq-items .faq-item .faq-item__box {
    align-items: center;
    padding: min(2.0833333333vw, 25px) min(2.9166666667vw, 35px);
  }
}
@media screen and (min-width: 1500px) {
  .faq .faq-items .faq-item .faq-item__box {
    padding: 1.6666666667vw 2.3333333333vw;
  }
}
.faq .faq-items .faq-item .faq-item__box + .faq-item__box {
  border-top: solid 1px #eaeaea;
}
.faq .faq-items .faq-item .faq-item__box .faq-item__icon {
  margin-right: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .faq .faq-items .faq-item .faq-item__box .faq-item__icon {
    margin-right: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .faq .faq-items .faq-item .faq-item__box .faq-item__icon {
    margin-right: 1.0666666667vw;
  }
}
.faq .faq-items .faq-item .faq-item__box .faq-item__icon img {
  width: 100%;
}
.faq .faq-items .faq-item .faq-item__box .faq-item__text {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .faq .faq-items .faq-item .faq-item__box .faq-item__text {
    padding-top: 0.1em;
  }
}
.faq .faq-items .faq-item .faq-item__box:nth-child(1) {
  font-size: 4vw;
  font-weight: bold;
  color: #213987;
}
@media screen and (min-width: 768px) {
  .faq .faq-items .faq-item .faq-item__box:nth-child(1) {
    font-size: min(1.8333333333vw, 22px);
  }
}
@media screen and (min-width: 1500px) {
  .faq .faq-items .faq-item .faq-item__box:nth-child(1) {
    font-size: 1.4666666667vw;
  }
}
.faq .faq-items .faq-item .faq-item__box:nth-child(1) .faq-item__icon {
  width: 4.8vw;
}
@media screen and (min-width: 768px) {
  .faq .faq-items .faq-item .faq-item__box:nth-child(1) .faq-item__icon {
    width: min(2.75vw, 33px);
  }
}
@media screen and (min-width: 1500px) {
  .faq .faq-items .faq-item .faq-item__box:nth-child(1) .faq-item__icon {
    width: 2.2vw;
  }
}
.faq .faq-items .faq-item .faq-item__box:nth-child(2) {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .faq .faq-items .faq-item .faq-item__box:nth-child(2) {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .faq .faq-items .faq-item .faq-item__box:nth-child(2) {
    font-size: 1.2vw;
  }
}
.faq .faq-items .faq-item .faq-item__box:nth-child(2) .faq-item__icon {
  width: 4.1333333333vw;
}
@media screen and (min-width: 768px) {
  .faq .faq-items .faq-item .faq-item__box:nth-child(2) .faq-item__icon {
    width: min(2.3333333333vw, 28px);
  }
}
@media screen and (min-width: 1500px) {
  .faq .faq-items .faq-item .faq-item__box:nth-child(2) .faq-item__icon {
    width: 1.8666666667vw;
  }
}
.faq .faq-items .faq-item a {
  text-decoration: underline;
  text-underline-offset: 5px;
  transition: opacity 0.3s ease-in-out;
}
.faq .faq-items .faq-item a:hover {
  opacity: 0.7;
}

.other-services {
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .other-services {
    margin-top: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .other-services {
    margin-top: 3.3333333333vw;
  }
}
.other-services .other-items {
  display: flex;
  flex-direction: column;
  gap: 4.2666666667vw;
  padding: 8vw 0 17.3333333333vw;
}
@media screen and (min-width: 768px) {
  .other-services .other-items {
    padding: min(5vw, 60px) 0 min(10.8333333333vw, 130px);
    flex-direction: row;
    gap: 3.04%;
  }
}
@media screen and (min-width: 1500px) {
  .other-services .other-items {
    padding: 4vw 0 8.6666666667vw;
  }
}
.other-services .other-items .other-item {
  width: 100%;
}
.other-services .other-items .other-item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .other-services .other-items .other-item {
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.09);
    background-color: #ffffff;
  }
  .other-services .other-items .other-item > a {
    padding: 6vw 4.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .other-services .other-items .other-item {
    width: 22.72%;
    background-color: black;
    border-radius: 15px;
    overflow: hidden;
  }
}
.other-services .other-items .other-item .bg-image {
  display: none;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .other-services .other-items .other-item .bg-image {
    display: block;
    opacity: 0.45;
  }
}
@media screen and (min-width: 768px) {
  .other-services .other-items .other-item .other-item__text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 0 0.8em;
  }
}
.other-services .other-items .other-item .other-item__title {
  font-size: 5.0666666667vw;
  font-weight: 500;
  line-height: 1.44;
}
@media screen and (min-width: 768px) {
  .other-services .other-items .other-item .other-item__title {
    font-size: min(1.8333333333vw, 22px);
  }
}
@media screen and (min-width: 1500px) {
  .other-services .other-items .other-item .other-item__title {
    font-size: 1.4666666667vw;
  }
}
.other-services .other-items .other-item .other-item__title + .other-item__desc {
  margin-top: 1.5em;
}
@media screen and (min-width: 768px) {
  .other-services .other-items .other-item .other-item__title {
    min-height: 2.2em;
    display: flex;
    align-items: center;
  }
}
.other-services .other-items .other-item .other-item__desc {
  font-size: 3.4666666667vw;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .other-services .other-items .other-item .other-item__desc {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .other-services .other-items .other-item .other-item__desc {
    font-size: 1.0666666667vw;
  }
}
.other-services .other-items .other-item .other-item__btn {
  position: absolute;
  z-index: 100;
  border-radius: 50%;
  background-image: -moz-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-image: -webkit-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-image: -ms-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  right: 2.8vw;
  top: 4.5333333333vw;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
}
.other-services .other-items .other-item .other-item__btn .arrow {
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.other-services .other-items .other-item .other-item__btn img {
  width: 53.48%;
}
.other-services .other-items .other-item .other-item__btn img._off {
  display: inline-block;
}
.other-services .other-items .other-item .other-item__btn img._on {
  display: none;
}
@media screen and (min-width: 768px) {
  .other-services .other-items .other-item .other-item__btn {
    top: inherit;
    right: min(1.1666666667vw, 14px);
    bottom: min(1.1666666667vw, 14px);
    width: min(3.5833333333vw, 43px);
    height: min(3.5833333333vw, 43px);
    background-image: none;
    background-color: white;
    opacity: 1;
  }
  .other-services .other-items .other-item .other-item__btn img._off {
    display: none;
  }
  .other-services .other-items .other-item .other-item__btn img._on {
    display: inline-block;
  }
}
@media screen and (min-width: 1500px) {
  .other-services .other-items .other-item .other-item__btn {
    width: 2.8666666667vw;
    height: 2.8666666667vw;
    right: 0.9333333333vw;
    bottom: 0.9333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .other-services .other-items .other-item {
    position: relative;
    transition: transform 0.2s ease;
    overflow: hidden;
  }
  .other-services .other-items .other-item:hover .bg-image {
    transform: scale(1.1);
    opacity: 0.6;
    transition: all 0.4s ease;
  }
  .other-services .other-items .other-item:hover .other-item__text {
    transform: translateY(-10px);
    transition: transform 0.2s ease;
  }
  .other-services .other-items .other-item:hover .other-item__btn {
    transform: translateX(3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
  }
}
.other-services .other-items .other-item .bg-image {
  transition: all 0.4s ease;
}
.other-services .other-items .other-item .other-item__text {
  transition: transform 0.2s ease;
}
.other-services .other-items .other-item .other-item__btn {
  transition: all 0.2s ease;
}

.support-services .title-box {
  text-align: center;
}
.support-services .support-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4.2666666667vw;
  padding: 8vw 0 17.3333333333vw;
}
@media screen and (min-width: 768px) {
  .support-services .support-items {
    padding: min(5vw, 60px) 0 min(10.8333333333vw, 130px);
    flex-direction: row;
    flex-wrap: wrap;
    gap: min(3.9166666667vw, 47px) 2.285%;
  }
}
@media screen and (min-width: 1500px) {
  .support-services .support-items {
    padding: 4vw 0 8.6666666667vw;
  }
}
.support-services .support-items .support-item {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .support-services .support-items .support-item {
    box-shadow: 0px 0px 18px 0px rgba(0, 0, 0, 0.09);
    background-color: #ffffff;
  }
  .support-services .support-items .support-item > a {
    display: block;
    padding: 6vw 4.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .support-services .support-items .support-item {
    width: 31.81%;
    background-color: black;
    border-radius: 15px;
    overflow: hidden;
  }
}
.support-services .support-items .support-item .bg-image {
  display: none;
}
@media screen and (min-width: 768px) {
  .support-services .support-items .support-item .bg-image {
    display: block;
    min-height: min(20vw, 240px);
    width: 100%;
    object-fit: cover;
    opacity: 0.34;
  }
}
@media screen and (min-width: 1500px) {
  .support-services .support-items .support-item .bg-image {
    min-height: 16vw;
  }
}
@media screen and (min-width: 768px) {
  .support-services .support-items .support-item .support-item__text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    padding: 0 0 0.8em;
  }
}
.support-services .support-items .support-item .support-item__title {
  font-size: 5.0666666667vw;
  font-weight: 500;
  line-height: 1.44;
  /*@include pc-only {
    min-height: 2.2em;
    display: flex;
    align-items: center;
  }*/
}
@media screen and (min-width: 768px) {
  .support-services .support-items .support-item .support-item__title {
    font-size: min(2.6666666667vw, 32px);
  }
}
@media screen and (min-width: 1500px) {
  .support-services .support-items .support-item .support-item__title {
    font-size: 2.1333333333vw;
  }
}
.support-services .support-items .support-item .support-item__title + .support-item__desc {
  margin-top: 1em;
}
.support-services .support-items .support-item .support-item__desc {
  font-size: 3.4666666667vw;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .support-services .support-items .support-item .support-item__desc {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .support-services .support-items .support-item .support-item__desc {
    font-size: 1.0666666667vw;
  }
}
.support-services .support-items .support-item .support-item__btn {
  position: absolute;
  z-index: 100;
  border-radius: 50%;
  background-image: -moz-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-image: -webkit-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-image: -ms-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  right: 2.8vw;
  top: 4.5333333333vw;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
}
.support-services .support-items .support-item .support-item__btn .arrow {
  width: 100%;
  height: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.support-services .support-items .support-item .support-item__btn img {
  width: 53.48%;
}
.support-services .support-items .support-item .support-item__btn img._off {
  display: inline-block;
}
.support-services .support-items .support-item .support-item__btn img._on {
  display: none;
}
@media screen and (min-width: 768px) {
  .support-services .support-items .support-item .support-item__btn {
    top: inherit;
    right: min(1.1666666667vw, 14px);
    bottom: min(1.1666666667vw, 14px);
    width: min(3.5833333333vw, 43px);
    height: min(3.5833333333vw, 43px);
    background-image: none;
    background-color: white;
    opacity: 1;
  }
  .support-services .support-items .support-item .support-item__btn img._off {
    display: none;
  }
  .support-services .support-items .support-item .support-item__btn img._on {
    display: inline-block;
  }
}
@media screen and (min-width: 1500px) {
  .support-services .support-items .support-item .support-item__btn {
    width: 2.8666666667vw;
    height: 2.8666666667vw;
    right: 0.9333333333vw;
    bottom: 0.9333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .support-services .support-items .support-item {
    position: relative;
    transition: transform 0.2s ease;
    overflow: hidden;
  }
  .support-services .support-items .support-item:hover .bg-image {
    transform: scale(1.1);
    opacity: 0.6;
    transition: all 0.4s ease;
  }
  .support-services .support-items .support-item:hover .support-item__text {
    transform: translateY(-10px);
    transition: transform 0.2s ease;
  }
  .support-services .support-items .support-item:hover .support-item__btn {
    transform: translateX(3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
  }
}
.support-services .support-items .support-item .bg-image {
  transition: all 0.4s ease;
}
.support-services .support-items .support-item .support-item__text {
  transition: transform 0.2s ease;
}
.support-services .support-items .support-item .support-item__btn {
  transition: all 0.2s ease;
}

/*---------------------------------------------
mv
---------------------------------------------*/
.mv-service .title-en img {
  width: 64.8vw;
}
@media screen and (min-width: 768px) {
  .mv-service .title-en img {
    width: min(28.0833333333vw, 337px);
  }
}
@media screen and (min-width: 1500px) {
  .mv-service .title-en img {
    width: 22.4666666667vw;
  }
}

/*---------------------------------------------
fv__logo-row
---------------------------------------------*/
.fv__logo-row {
  padding: 10.6666666667vw 0 18.6666666667vw;
}
@media screen and (min-width: 768px) {
  .fv__logo-row {
    padding: min(6.6666666667vw, 80px) 0 min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .fv__logo-row {
    padding: 5.3333333333vw 0 1.3333333333vw;
  }
}
.fv__logo-row li img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .fv__logo-row {
    height: 12vw;
    width: 220vw;
    margin-top: 0;
  }
  .fv__logo-row li {
    width: 16vw;
    height: fit-content;
    margin-right: 1vw;
    margin-left: 1vw;
  }
}
/*---------------------------------------------
introduction
---------------------------------------------*/
.health-consulting .introduction .introduction__illust {
  width: 51.3333333333vw;
}
@media screen and (max-width: 767px) {
  .health-consulting .introduction .introduction__illust {
    margin-inline: auto;
    margin-top: 8vw;
  }
}
@media screen and (min-width: 768px) {
  .health-consulting .introduction .introduction__illust {
    width: min(27.25vw, 327px);
    margin-left: min(2.5vw, 30px);
  }
}
@media screen and (min-width: 1500px) {
  .health-consulting .introduction .introduction__illust {
    width: 21.8vw;
    margin-left: 2vw;
  }
}
.health-consulting .schema-01 {
  text-align: center;
  margin-top: 8.6666666667vw;
}
@media screen and (min-width: 768px) {
  .health-consulting .schema-01 {
    margin-top: min(5.4166666667vw, 65px);
  }
}
@media screen and (min-width: 1500px) {
  .health-consulting .schema-01 {
    margin-top: 4.3333333333vw;
  }
}
.health-consulting .schema-01 img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .health-consulting .schema-01 img {
    width: min(84vw, 1008px);
  }
}
@media screen and (min-width: 1500px) {
  .health-consulting .schema-01 img {
    width: 67.2vw;
  }
}

.health-consulting .service {
  padding: 32vw 0 20vw;
  overflow: inherit;
}
@media screen and (min-width: 768px) {
  .health-consulting .service {
    padding: 0 0 min(11.6666666667vw, 140px);
  }
}
@media screen and (min-width: 1500px) {
  .health-consulting .service {
    padding: 0 0 9.3333333333vw;
  }
}
.health-consulting .service .bg-image {
  top: -66.6666666667vw;
}
@media screen and (min-width: 768px) {
  .health-consulting .service .bg-image {
    top: -80%;
  }
}

/*---------------------------------------------
features
---------------------------------------------*/
.features {
  padding: 0 0 18.6666666667vw;
  /*.features__cards {
    margin-top: vw-sp(70);
    @include pc-only {
      margin-top: min(vw-pc(70), 70px);
    }
    @include pc-lg {
      margin-top: vw-pc-lg(70);
    }
  }*/
}
@media screen and (min-width: 768px) {
  .features {
    padding: 0 0 min(15vw, 180px);
  }
}
@media screen and (min-width: 1500px) {
  .features {
    padding: 0 0 12vw;
  }
}

.features-cards__container {
  position: relative;
}
.features-cards__container .feature-controls-wrapper {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 89.3333333333vw;
  margin-inline: auto;
  translate: 0 -100%;
}
@media screen and (min-width: 768px) {
  .features-cards__container .feature-controls-wrapper {
    width: min(91.6666666667vw, 1100px);
  }
}
@media screen and (min-width: 1500px) {
  .features-cards__container .feature-controls-wrapper {
    width: 73.3333333333vw;
  }
}

.features__cards .features__card {
  padding-top: 9.3333333333vw;
  padding-bottom: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card {
    padding-top: min(5.8333333333vw, 70px);
    padding-bottom: min(5.8333333333vw, 70px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card {
    padding-top: 4.6666666667vw;
    padding-bottom: 4.6666666667vw;
  }
}
.features__cards .features__card .layout-box {
  position: relative;
  box-shadow: 0px 0px 50px 0px rgba(9, 46, 95, 0.1);
  border-radius: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 7.3333333333vw 5.3333333333vw 2.6666666667vw;
  width: 89.3333333333vw;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .layout-box {
    padding: min(5vw, 60px) min(3.3333333333vw, 40px);
    width: min(91.6666666667vw, 1100px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .layout-box {
    padding: 4vw 2.6666666667vw;
    width: 73.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .layout-box {
    flex-direction: row;
    gap: 6.8%;
  }
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .layout-box .layout-bottom:nth-child(1) {
    width: 50%;
  }
}
.features__cards .features__card .layout-box .layout-bottom:nth-child(2) {
  flex: 1;
}
.features__cards .features__card .numbered-title {
  display: flex;
  align-items: center;
  font-size: 4.2666666667vw;
  margin-bottom: 0.1em;
  color: #021f42;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .numbered-title {
    font-size: min(2.5vw, 30px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .numbered-title {
    font-size: 2vw;
  }
}
.features__cards .features__card .numbered-title .number {
  display: flex;
  align-items: center;
  position: relative;
  /*padding-right: 42px;
  margin-right: 15px;
  min-height: 52px;*/
  padding-right: 5.3333333333vw;
  margin-right: 2vw;
  min-height: 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .numbered-title .number {
    padding-right: min(3.5vw, 42px);
    margin-right: min(1.25vw, 15px);
    min-height: min(4.3333333333vw, 52px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .numbered-title .number {
    padding-right: 2.8vw;
    margin-right: 1vw;
    min-height: 3.4666666667vw;
  }
}
.features__cards .features__card .numbered-title .number:after {
  position: absolute;
  top: 50%;
  right: 0;
  background-size: 100% 100%;
  content: "";
  display: block;
  background: linear-gradient(120deg, transparent 48%, #5eb9ee 50%, transparent 51%);
  /*margin-top: -25px;
  width: 32px;
  height: 50px; */
  margin-top: -3.3333333333vw;
  width: 4.2666666667vw;
  height: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .numbered-title .number:after {
    margin-top: max(-2.0833333333vw, -25px);
    width: min(2.6666666667vw, 32px);
    height: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .numbered-title .number:after {
    margin-top: -1.6666666667vw;
    width: 2.1333333333vw;
    height: 3.3333333333vw;
  }
}
.features__cards .features__card .numbered-title .number img[src*="number-01.svg"] {
  width: 6.5333333333vw;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .numbered-title .number img[src*="number-01.svg"] {
    width: min(3.5vw, 42px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .numbered-title .number img[src*="number-01.svg"] {
    width: 2.8vw;
  }
}
.features__cards .features__card .numbered-title .number img[src*="number-02.svg"] {
  width: 7.8666666667vw;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .numbered-title .number img[src*="number-02.svg"] {
    width: min(4.0833333333vw, 49px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .numbered-title .number img[src*="number-02.svg"] {
    width: 3.2666666667vw;
  }
}
.features__cards .features__card .numbered-title .number img[src*="number-03.svg"] {
  width: 7.8666666667vw;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .numbered-title .number img[src*="number-03.svg"] {
    width: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .numbered-title .number img[src*="number-03.svg"] {
    width: 3.3333333333vw;
  }
}
.features__cards .features__card .numbered-title .number img[src*="number-04.svg"] {
  width: 8.1333333333vw;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .numbered-title .number img[src*="number-04.svg"] {
    width: min(4.25vw, 51px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .numbered-title .number img[src*="number-04.svg"] {
    width: 3.4vw;
  }
}
.features__cards .features__card .numbered-title .number img[src*="number-05.svg"] {
  width: 8vw;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .numbered-title .number img[src*="number-05.svg"] {
    width: min(4.1666666667vw, 50px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .numbered-title .number img[src*="number-05.svg"] {
    width: 3.3333333333vw;
  }
}
.features__cards .features__card .numbered-title h3 {
  font-weight: 600;
  flex: 1;
}
.features__cards .features__card .lead {
  font-size: 3.4666666667vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .lead {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .lead {
    font-size: 1.3333333333vw;
  }
}
.features__cards .features__card .point {
  font-size: 3.4666666667vw;
  line-height: 1.4;
  margin-top: 6vw;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .point {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .point {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .point {
    margin-top: min(3.75vw, 45px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .point {
    margin-top: 3vw;
  }
}
.features__cards .features__card .point li {
  margin-bottom: 0.8em;
  padding-left: 6vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .point li {
    padding-left: min(3.3333333333vw, 40px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .point li {
    padding-left: 2.6666666667vw;
  }
}
.features__cards .features__card .point li:after {
  position: absolute;
  top: 0.3em;
  left: 0;
  content: "";
  display: block;
  background-image: url(../img/common/check-2.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 4.2666666667vw;
  height: 3.2vw;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .point li:after {
    width: min(2vw, 24px);
    height: min(1.4166666667vw, 17px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .point li:after {
    width: 1.6vw;
    height: 1.1333333333vw;
  }
}
.features__cards .features__card .illust {
  position: absolute;
  bottom: 0;
  left: 50%;
  display: none;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .illust {
    display: block;
  }
}
.features__cards .features__card .illust.illust_01 {
  translate: -90.163% 14.28%;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .illust.illust_01 {
    width: min(20.3333333333vw, 244px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .illust.illust_01 {
    width: 20.3333333333vw;
  }
}
.features__cards .features__card .illust.illust_02 {
  translate: -90.163% 14.28%;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .illust.illust_02 {
    width: min(20.3333333333vw, 244px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .illust.illust_02 {
    width: 20.3333333333vw;
  }
}
.features__cards .features__card .illust.illust_03 {
  translate: -80% 36%;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .illust.illust_03 {
    width: min(15.25vw, 183px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .illust.illust_03 {
    width: 15.25vw;
  }
}
.features__cards .features__card .illust.illust_04 {
  translate: -68% 12%;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .illust.illust_04 {
    width: min(17vw, 204px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .illust.illust_04 {
    width: 17vw;
  }
}
.features__cards .features__card .voice-list li {
  font-size: 2.9333333333vw;
  padding: 3.3333333333vw 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .voice-list li {
    font-size: min(1.1666666667vw, 14px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .voice-list li {
    font-size: 0.9333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .features__cards .features__card .voice-list li {
    padding: min(2.0833333333vw, 25px) min(0.8333333333vw, 10px);
  }
}
@media screen and (min-width: 1500px) {
  .features__cards .features__card .voice-list li {
    padding: 2.0833333333vw 0.8333333333vw;
  }
}
.features__cards .features__card .voice-list li strong {
  font-weight: 500;
  display: block;
}
.features__cards .features__card .voice-list li + li {
  border-top: solid 1px #d3d3d3;
}

.progress-bar {
  position: relative;
  width: 100%;
  height: 2px;
  background: #e0e0e0;
  margin-top: 10px;
  overflow: hidden;
  width: 28vw;
}
@media screen and (min-width: 768px) {
  .progress-bar {
    width: min(13.3333333333vw, 160px);
  }
}
@media screen and (min-width: 1500px) {
  .progress-bar {
    width: 10.6666666667vw;
  }
}

.progress-bar .progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: #5eb9ee;
  width: 0%;
  transition: width 0s;
}

.features-current-num {
  font-size: 30px;
  font-weight: bold;
  color: #5eb9ee;
  margin-left: 0.5em;
}

.features-slider {
  overflow: visible !important;
}

.features-dots {
  text-align: center;
  margin-top: 10px;
}

.features-dots li button {
  background: none;
  border: none;
  font-size: 16px;
  color: #333;
  opacity: 0.5;
}

.features-dots li.slick-active button {
  font-weight: bold;
  opacity: 1;
}

.features-prev,
.features-next {
  background: none;
  border: none;
  cursor: pointer;
  z-index: 100;
  top: 40%;
  width: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  .features-prev,
  .features-next {
    width: min(4.3333333333vw, 52px);
  }
}
@media screen and (min-width: 1500px) {
  .features-prev,
  .features-next {
    width: 3.4666666667vw;
  }
}

.features-prev {
  position: absolute;
  left: 50%;
  margin-left: -48vw;
}
@media screen and (min-width: 768px) {
  .features-prev {
    margin-left: 0;
    translate: -1100% 0;
  }
}
@media screen and (min-width: 1500px) {
  .features-prev {
    translate: -1200% 0;
  }
}

.features-next {
  position: absolute;
  right: 50%;
  margin-right: -48vw;
}
@media screen and (min-width: 768px) {
  .features-next {
    margin-right: 0;
    translate: 1100% 0;
  }
}
@media screen and (min-width: 1500px) {
  .features-next {
    translate: 1200% 0;
  }
}

/*---------------------------------------------
commit
---------------------------------------------*/
.commit {
  padding: 13.3333333333vw 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .commit {
    padding: min(11.6666666667vw, 140px) 0 0;
  }
}
@media screen and (min-width: 1500px) {
  .commit {
    padding: 9.3333333333vw 0 0;
  }
}
.commit .schema_commit {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .commit .schema_commit img {
    min-width: 750px;
  }
}
@media screen and (min-width: 768px) {
  .commit .schema_commit img {
    width: min(85vw, 1020px);
  }
}
@media screen and (min-width: 1500px) {
  .commit .schema_commit img {
    width: 68vw;
  }
}

/*---------------------------------------------
declare
---------------------------------------------*/
.declare {
  padding: 16vw 0 16vw;
}
@media screen and (min-width: 768px) {
  .declare {
    padding: min(5vw, 60px) 0;
  }
}
@media screen and (min-width: 1500px) {
  .declare {
    padding: 4vw 0;
  }
}
.declare .declare-content {
  background-color: #fff;
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 136px 0px rgba(9, 46, 95, 0.16), inset 0px 33px 125px 0px rgba(151, 212, 243, 0.2);
  padding: 8.6666666667vw 4vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .declare .declare-content {
    padding: min(8.3333333333vw, 100px) min(6.6666666667vw, 80px);
  }
}
@media screen and (min-width: 1500px) {
  .declare .declare-content {
    padding: 6.6666666667vw 5.3333333333vw;
  }
}
.declare .declare-content h2 {
  color: #213987;
  font-size: 6.1333333333vw;
}
@media screen and (min-width: 768px) {
  .declare .declare-content h2 {
    font-size: min(3.5vw, 42px);
  }
}
@media screen and (min-width: 1500px) {
  .declare .declare-content h2 {
    font-size: 2.8vw;
  }
}
.declare .declare-content h2 + p {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .declare .declare-content h2 + p {
    margin-top: min(5vw, 60px);
  }
}
@media screen and (min-width: 1500px) {
  .declare .declare-content h2 + p {
    margin-top: 4vw;
  }
}
.declare .declare-content p {
  font-size: 3.4666666667vw;
}
@media screen and (min-width: 768px) {
  .declare .declare-content p {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .declare .declare-content p {
    font-size: 1.3333333333vw;
  }
}
.declare .declare-content a {
  color: #2966c1;
  text-decoration: underline;
}
.declare .declare-content .illust {
  width: 27.2vw;
  translate: -10% -25%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .declare .declare-content .illust {
    width: min(17.9166666667vw, 215px);
    translate: -20% -15%;
  }
}
@media screen and (min-width: 1500px) {
  .declare .declare-content .illust {
    width: 14.3333333333vw;
  }
}

/*---------------------------------------------
results
---------------------------------------------*/
.results {
  padding: 17.3333333333vw 0;
}
@media screen and (min-width: 768px) {
  .results {
    padding: min(10.8333333333vw, 130px) 0;
  }
}
@media screen and (min-width: 1500px) {
  .results {
    padding: 8.6666666667vw 0;
  }
}
.results .results-list {
  width: 100%;
  margin-top: 8.6666666667vw;
}
@media screen and (min-width: 768px) {
  .results .results-list {
    width: 90%;
    margin-inline: auto;
    margin-top: min(5vw, 60px);
  }
}
@media screen and (min-width: 1500px) {
  .results .results-list {
    margin-top: 4vw;
  }
}
.results .results-list dl {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  background-color: #ececec;
}
@media screen and (min-width: 768px) {
  .results .results-list dl {
    flex-direction: row;
  }
}
.results .results-list dl + dl {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .results .results-list dl + dl {
    margin-top: min(2.0833333333vw, 25px);
  }
}
@media screen and (min-width: 1500px) {
  .results .results-list dl + dl {
    margin-top: 1.6666666667vw;
  }
}
.results .results-list dl dt, .results .results-list dl dd {
  position: relative;
  font-weight: 500;
  padding-block: 3.3333333333vw;
}
@media screen and (min-width: 768px) {
  .results .results-list dl dt, .results .results-list dl dd {
    padding-block: min(2.0833333333vw, 25px);
  }
}
@media screen and (min-width: 1500px) {
  .results .results-list dl dt, .results .results-list dl dd {
    padding-block: 1.6666666667vw;
  }
}
.results .results-list dl dt:after, .results .results-list dl dd:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  z-index: 1;
}
.results .results-list dl dt {
  display: flex;
  font-size: 3.4666666667vw;
  padding-left: 2.6666666667vw;
  padding-right: 2vw;
}
@media screen and (min-width: 768px) {
  .results .results-list dl dt {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .results .results-list dl dt {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 768px) {
  .results .results-list dl dt {
    padding-left: min(2.5vw, 30px);
    padding-right: min(2.5vw, 30px);
    width: 41.7%;
    align-items: center;
  }
}
@media screen and (min-width: 1500px) {
  .results .results-list dl dt {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
.results .results-list dl dt:after {
  width: 8vw;
  height: 4.1333333333vw;
  background-image: url(../img/common/arrow-blue-02.png);
  top: 100%;
  left: 50%;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .results .results-list dl dt:after {
    background-image: url(../img/common/arrow-blue-01.svg);
    width: min(2vw, 24px);
    height: min(3.9166666667vw, 47px);
    top: 50%;
    left: 100%;
    translate: -37.5% -50%;
  }
}
@media screen and (min-width: 1500px) {
  .results .results-list dl dt:after {
    padding-left: 2vw;
    padding-right: 2vw;
  }
}
.results .results-list dl dd {
  display: flex;
  font-size: 3.7333333333vw;
  background-color: #e5f5ff;
  flex: 1;
  padding-left: 5.3333333333vw;
  padding-right: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .results .results-list dl dd {
    font-size: min(1.8333333333vw, 22px);
  }
}
@media screen and (min-width: 1500px) {
  .results .results-list dl dd {
    font-size: 1.4666666667vw;
  }
}
@media screen and (max-width: 767px) {
  .results .results-list dl dd {
    padding-top: 4.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .results .results-list dl dd {
    padding-left: min(4.5833333333vw, 55px);
    padding-right: min(8.3333333333vw, 100px);
    width: 41.7%;
    align-items: center;
  }
}
@media screen and (min-width: 1500px) {
  .results .results-list dl dd {
    padding-left: 3.6666666667vw;
    padding-right: 6.6666666667vw;
  }
}
.results .results-list dl dd:after {
  width: 7.7333333333vw;
  height: 7.7333333333vw;
  background-image: url(../img/common/check.png);
  top: 50%;
  right: 3.7333333333vw;
  translate: 0 -50%;
}
@media screen and (min-width: 768px) {
  .results .results-list dl dd:after {
    width: min(3.75vw, 45px);
    height: min(3.75vw, 45px);
    top: 50%;
    right: min(3.1666666667vw, 38px);
  }
}
@media screen and (min-width: 1500px) {
  .results .results-list dl dd:after {
    width: 3vw;
    height: 3vw;
    right: 2.5333333333vw;
  }
}

/*---------------------------------------------
mv
---------------------------------------------*/
.mv-contact .title-en img {
  width: 55.7333333333vw;
}
@media screen and (min-width: 768px) {
  .mv-contact .title-en img {
    width: min(24.0833333333vw, 289px);
  }
}
@media screen and (min-width: 1500px) {
  .mv-contact .title-en img {
    width: 19.2666666667vw;
  }
}

/*---------------------------------------------
contact-form
---------------------------------------------*/
.contact-form {
  padding: 13.3333333333vw 0 24vw;
}
@media screen and (min-width: 768px) {
  .contact-form {
    padding: min(4.1666666667vw, 50px) 0 min(11.6666666667vw, 140px);
  }
}
@media screen and (min-width: 1500px) {
  .contact-form {
    padding: 3.3333333333vw 0 9.3333333333vw;
  }
}
.contact-form .form-notes {
  font-size: 3.4666666667vw;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .contact-form .form-notes {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .contact-form .form-notes {
    font-size: 1.3333333333vw;
  }
}
@media screen and (max-width: 767px) {
  .contact-form .form-notes {
    padding-left: 5.3333333333vw;
    padding-right: 5.3333333333vw;
  }
}
.contact-form .form-notes + * {
  margin-top: 6vw;
}
@media screen and (min-width: 768px) {
  .contact-form .form-notes + * {
    margin-top: min(3.75vw, 45px);
  }
}
@media screen and (min-width: 1500px) {
  .contact-form .form-notes + * {
    margin-top: 3vw;
  }
}

.form-wrapper {
  color: #021f42;
  background-color: #f6f7f7;
  padding: 9.3333333333vw 5.3333333333vw 21.3333333333vw;
  display: flex;
  flex-direction: column;
  gap: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .form-wrapper {
    padding: min(5.8333333333vw, 70px) min(10vw, 120px) min(13.3333333333vw, 160px);
    gap: min(3.3333333333vw, 40px);
  }
}
@media screen and (min-width: 1500px) {
  .form-wrapper {
    padding: 4.6666666667vw 8vw 10.6666666667vw;
    gap: 2.6666666667vw;
  }
}
.form-wrapper input, .form-wrapper select, .form-wrapper textarea {
  max-width: 100%;
}
.form-wrapper input[type=text], .form-wrapper input[type=email], .form-wrapper input[type=tel] {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  border: 1px solid #c2c2c2;
  background-color: #fff;
  color: #000;
  font: inherit;
}
.form-wrapper input[type=text]::placeholder {
  color: #c0c0c0;
}
.form-wrapper input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 25px;
  height: 25px;
  border: 1px solid #c2c2c2;
  background-color: #fff;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
  box-sizing: border-box;
  position: relative;
  margin-right: 8px;
}
.form-wrapper input[type=checkbox]:checked::after {
  content: "✓";
  color: #213987;
  font-size: 18px;
  font-family: system-ui, sans-serif;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.form-wrapper textarea {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  border: 1px solid #c2c2c2;
  background-color: #fff;
  color: #000;
  font: inherit;
  min-height: 300px;
}
.form-wrapper textarea::placeholder {
  color: #c0c0c0;
}
.form-wrapper button.btn-more {
  all: unset;
  display: inline-block;
  font-weight: 500;
  display: block;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-color: #007bda;
  font-size: 5.3333333333vw;
  width: 100%;
  max-width: 100%;
  border-radius: 16vw;
  background-image: url(../img/common/bg_button.png);
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .form-wrapper button.btn-more {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .form-wrapper button.btn-more {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .form-wrapper button.btn-more {
    width: min(30.8333333333vw, 370px);
    border-radius: 7.5vw;
  }
}
@media screen and (min-width: 1500px) {
  .form-wrapper button.btn-more {
    width: 24.6666666667vw;
  }
}
.form-wrapper button.btn-more span {
  position: relative;
  z-index: 1;
  display: flex;
  color: #fff;
  width: 100%;
  height: 16vw;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .form-wrapper button.btn-more span {
    height: min(7.5vw, 90px);
  }
}
@media screen and (min-width: 1500px) {
  .form-wrapper button.btn-more span {
    height: 6vw;
  }
}
.form-wrapper .btn-confirm {
  all: unset;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 1em 2em;
  background: linear-gradient(135deg, #002b80, #3a56c0);
  opacity: 0.87;
  border-radius: 9999px;
  color: #fff;
  font-weight: bold;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 3.7333333333vw;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .form-wrapper .btn-confirm {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .form-wrapper .btn-confirm {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .form-wrapper .btn-confirm {
    min-width: 370px;
    height: min(7.5vw, 90px);
  }
}
@media screen and (min-width: 1500px) {
  .form-wrapper .btn-confirm {
    height: 6vw;
  }
}
.form-wrapper .btn-confirm img {
  width: 23px;
  position: absolute;
  top: 50%;
  right: 8.1%;
  margin-top: -11px;
}
.form-wrapper .btn-back {
  all: unset;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1em;
  padding: 1em 2em;
  border: solid 2px #002b80;
  background-color: #fff;
  opacity: 0.87;
  border-radius: 9999px;
  color: #002b80;
  font-weight: bold;
  font-size: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  max-width: 100%;
  box-sizing: border-box;
  font-size: 3.7333333333vw;
  height: 80px;
}
@media screen and (min-width: 768px) {
  .form-wrapper .btn-back {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .form-wrapper .btn-back {
    font-size: 1.3333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .form-wrapper .btn-back {
    height: min(7.5vw, 90px);
    min-width: 370px;
  }
}
@media screen and (min-width: 1500px) {
  .form-wrapper .btn-back {
    height: 6vw;
  }
}
.form-wrapper .btn-back img {
  width: 23px;
  position: absolute;
  top: 50%;
  right: 8.1%;
  margin-top: -11px;
}
.form-wrapper .form-row {
  display: flex;
  flex-direction: column;
  font-size: 3.2vw;
}
@media screen and (min-width: 768px) {
  .form-wrapper .form-row {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .form-wrapper .form-row {
    font-size: 1.0666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .form-wrapper .form-row {
    flex-direction: row;
  }
}
.form-wrapper .form-row .form-column.form-title {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .form-wrapper .form-row .form-column.form-title {
    margin-bottom: 2vw;
  }
}
@media screen and (min-width: 768px) {
  .form-wrapper .form-row .form-column.form-title {
    width: 25.12%;
    margin-right: 1.5%;
  }
}
.form-wrapper .form-row .form-column.form-title > *:nth-child(2) {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .form-wrapper .form-row .form-column.form-input {
    flex: 1;
  }
}
.form-wrapper .form-row .required, .form-wrapper .form-row .any {
  color: #fff;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6666666667vw;
  font-weight: 500;
  padding: 0.1em 0.5em;
  margin-right: 0.5em;
}
@media screen and (min-width: 768px) {
  .form-wrapper .form-row .required, .form-wrapper .form-row .any {
    font-size: min(1.1666666667vw, 14px);
  }
}
@media screen and (min-width: 1500px) {
  .form-wrapper .form-row .required, .form-wrapper .form-row .any {
    font-size: 0.9333333333vw;
  }
}
.form-wrapper .form-row .required {
  background-color: #213987;
}
.form-wrapper .form-row .any {
  background-color: #9e9e9e;
}
.form-wrapper .form-row .form-checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 8vw;
}
.form-wrapper .form-row .form-checkbox label {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .form-wrapper .form-row .form-checkbox {
    padding-bottom: min(5vw, 60px);
  }
}
@media screen and (min-width: 1500px) {
  .form-wrapper .form-row .form-checkbox {
    padding-bottom: 4vw;
  }
}
.form-wrapper .form-row .form-privacy .notes {
  display: block;
  font-size: 0.875em;
  margin-left: 35px;
}
@media screen and (max-width: 767px) {
  .form-wrapper .form-row input,
  .form-wrapper .form-row textarea,
  .form-wrapper .form-row select {
    font-size: 16px;
  }
}
.form-wrapper .form-btn {
  display: flex;
  justify-content: center;
  margin-top: 2.6666666667vw;
  gap: 10px;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .form-wrapper .form-btn {
    flex-direction: row;
    margin-top: min(2.0833333333vw, 25px);
  }
}
@media screen and (min-width: 1500px) {
  .form-wrapper .form-btn {
    margin-top: 1.6666666667vw;
  }
}
.form-wrapper .drop-area {
  width: 44.444vw;
  margin-top: 0.486vw;
  border: 1px solid black;
  padding: 0.556vw 9.722vw 0.556vw 12.431vw;
  border-radius: 0.278vw;
  font-size: 0.972vw;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  position: relative;
}
.form-wrapper .drop-area__underline {
  text-decoration: underline;
  text-underline-offset: 0.139vw;
  cursor: pointer;
}
.form-wrapper .upload__icon {
  position: absolute;
  top: 0.59vw;
  left: 10.486vw;
  width: 1.667vw;
  height: 1.667vw;
  background: url("../image/common/upload.png");
  background-size: cover;
}
.form-wrapper input[type=file] {
  width: 0;
  height: 0;
  opacity: 0;
}
.form-wrapper .mwform-file-delete {
  display: none;
}
.form-wrapper .mw-wp-form_file {
  opacity: 0;
}
@media screen and (max-width: 780px) {
  .form-wrapper .drop-area {
    width: 100%;
    margin-top: 1.867vw;
    border: 1px solid black;
    padding: 2.133vw 18.667vw 2.133vw 29.333vw;
    border-radius: 1.067vw;
    font-size: 3.2vw;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.02em;
    position: relative;
    text-align: center;
    padding: 2.133vw 2vw 2.133vw 2vw;
  }
  .form-wrapper .drop-area__underline {
    text-decoration: none;
  }
  .form-wrapper .upload__icon {
    position: absolute;
    top: 2.267vw;
    left: 18.5vw;
    width: 6.4vw;
    height: 6.4vw;
    background: url("../image/common/upload.png");
    background-size: cover;
  }
}

.form-entry .form-wrapper {
  padding-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .form-entry .form-wrapper {
    padding-bottom: min(6.6666666667vw, 80px);
  }
}
@media screen and (min-width: 1500px) {
  .form-entry .form-wrapper {
    padding-bottom: 5.3333333333vw;
  }
}

.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}

.mw_wp_form_confirm .form-privacy .notes {
  display: none;
}

.form-thanks {
  color: #021f42;
  background-color: #f6f7f7;
  text-align: center;
  border-radius: 20px;
  padding: 16vw 4vw;
}
@media screen and (min-width: 768px) {
  .form-thanks {
    padding: min(6.6666666667vw, 80px) min(2.5vw, 30px);
  }
}
@media screen and (min-width: 1500px) {
  .form-thanks {
    padding: 5.3333333333vw 2vw;
  }
}
.form-thanks .form-thanks-title {
  color: #213987;
  font-weight: 600;
  font-size: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .form-thanks .form-thanks-title {
    font-size: min(2.6666666667vw, 32px);
  }
}
@media screen and (min-width: 1500px) {
  .form-thanks .form-thanks-title {
    font-size: 2.1333333333vw;
  }
}
.form-thanks .form-thanks-title + .form-thanks-desc {
  margin-top: 1em;
}
.form-thanks .form-thanks-desc {
  line-height: 2.5;
  font-size: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .form-thanks .form-thanks-desc {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .form-thanks .form-thanks-desc {
    font-size: 1.3333333333vw;
  }
}
.form-thanks .form-thanks-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10.6666666667vw;
  gap: 20px 4%;
}
@media screen and (min-width: 768px) {
  .form-thanks .form-thanks-nav {
    margin-top: min(6.6666666667vw, 80px);
    gap: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .form-thanks .form-thanks-nav {
    margin-top: 5.3333333333vw;
    gap: 1.3333333333vw;
  }
}
.form-thanks .form-thanks-nav li {
  width: 48%;
}
@media screen and (min-width: 768px) {
  .form-thanks .form-thanks-nav li {
    width: min(19.1666666667vw, 230px);
  }
}
@media screen and (min-width: 1500px) {
  .form-thanks .form-thanks-nav li {
    width: 15.3333333333vw;
  }
}
.form-thanks .form-thanks-nav a {
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 1.3333333333vw;
  background-color: #fff;
  height: 11.2vw;
}
@media screen and (min-width: 768px) {
  .form-thanks .form-thanks-nav a {
    padding: min(0.8333333333vw, 10px);
    height: min(7vw, 84px);
  }
}
@media screen and (min-width: 1500px) {
  .form-thanks .form-thanks-nav a {
    padding: 0.6666666667vw;
    height: 5.6vw;
  }
}
.form-thanks .form-thanks-nav a .title {
  flex: 1;
  font-weight: 600;
  font-size: 4vw;
  padding-left: 2vw;
}
@media screen and (min-width: 768px) {
  .form-thanks .form-thanks-nav a .title {
    font-size: min(2vw, 24px);
  }
}
@media screen and (min-width: 1500px) {
  .form-thanks .form-thanks-nav a .title {
    font-size: 1.6vw;
  }
}
@media screen and (min-width: 768px) {
  .form-thanks .form-thanks-nav a .title {
    padding-left: min(1.25vw, 15px);
  }
}
@media screen and (min-width: 1500px) {
  .form-thanks .form-thanks-nav a .title {
    padding-left: 1vw;
  }
}
.form-thanks .form-thanks-nav a .arrow {
  margin-left: 1em;
  background-color: #213988;
  background-image: -moz-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-image: -webkit-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-image: -ms-linear-gradient(-114deg, rgb(53, 80, 167) 0%, rgb(0, 28, 118) 98%);
  background-size: 120%;
  opacity: 0.871;
  overflow: hidden;
  border: solid transparent 2px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 5.3333333333vw;
  width: 5.3333333333vw;
  height: 5.3333333333vw;
  margin-inline: 0.6666666667vw;
}
@media screen and (min-width: 768px) {
  .form-thanks .form-thanks-nav a .arrow {
    border-radius: min(3.3333333333vw, 40px);
    width: min(3.3333333333vw, 40px);
    height: min(3.3333333333vw, 40px);
    margin-inline: min(0.4166666667vw, 5px);
  }
}
@media screen and (min-width: 1500px) {
  .form-thanks .form-thanks-nav a .arrow {
    border-radius: 2.6666666667vw;
    width: 2.6666666667vw;
    height: 2.6666666667vw;
    margin-inline: 0.3333333333vw;
  }
}
.form-thanks .form-thanks-nav a .arrow img {
  width: 55%;
}
.form-thanks .form-thanks-nav a .arrow img._on {
  display: none;
}
.form-thanks .form-thanks-nav a:hover {
  color: #007bda;
}
.form-thanks .form-thanks-nav a:hover .arrow {
  border: solid 2px #007bda;
  background-image: none;
  background-color: white;
  opacity: 1;
}
.form-thanks .form-thanks-nav a:hover .arrow img._off {
  display: none;
}
.form-thanks .form-thanks-nav a:hover .arrow img._on {
  display: inline-block;
}
.form-thanks p.company {
  font-size: 1.67vw;
  font-weight: bold;
  margin: 2.08vw auto 0;
  line-height: 1.4;
  letter-spacing: 0.14em;
  color: #213987;
}
.form-thanks p.tel {
  margin: 0.97vw auto 0;
  font-size: 1.67vw;
}
@media screen and (max-width: 767px) {
  .form-thanks p.company {
    font-size: 4.8vw;
    font-weight: bold;
    margin: 10.67vw auto 0;
    line-height: 1.4;
    letter-spacing: 0.14em;
  }
  .form-thanks p.tel {
    margin: 5.33vw auto 5.56vw;
    font-size: 4.27vw;
  }
}
.form-thanks .fa-solid,
.form-thanks .fa-regular {
  color: #213987;
}

/*---------------------------------------------
archive-wrapper
---------------------------------------------*/
.archive-wrapper {
  padding: 8vw 0;
}
@media screen and (min-width: 768px) {
  .archive-wrapper {
    padding: min(3.75vw, 45px) 0 min(12.5vw, 150px);
  }
}
@media screen and (min-width: 1500px) {
  .archive-wrapper {
    padding: 3vw 0 10vw;
  }
}
.archive-wrapper h2 {
  color: #213987;
  font-weight: 500;
  font-size: 6.1333333333vw;
}
@media screen and (min-width: 768px) {
  .archive-wrapper h2 {
    font-size: min(3.1666666667vw, 38px);
  }
}
@media screen and (min-width: 1500px) {
  .archive-wrapper h2 {
    font-size: 2.5333333333vw;
  }
}
.archive-wrapper .row {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .archive-wrapper .row {
    flex-direction: row;
  }
}
.archive-wrapper .row > * {
  display: block;
  width: 100%;
  margin-top: 12%;
}
@media screen and (min-width: 768px) {
  .archive-wrapper .row > * {
    margin-top: 3.27%;
    width: 31%;
  }
}
@media screen and (min-width: 768px) {
  .archive-wrapper .row a {
    transition: opacity 0.3s ease;
  }
  .archive-wrapper .row a:hover {
    opacity: 0.7;
  }
}
.archive-wrapper .row + h2 {
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  .archive-wrapper .row + h2 {
    margin-top: min(6.6666666667vw, 80px);
  }
}
@media screen and (min-width: 1500px) {
  .archive-wrapper .row + h2 {
    margin-top: 5.3333333333vw;
  }
}
.archive-wrapper .row .image {
  margin-bottom: 3.3333333333vw;
}
@media screen and (min-width: 768px) {
  .archive-wrapper .row .image {
    margin-bottom: min(1.25vw, 15px);
  }
}
@media screen and (min-width: 1500px) {
  .archive-wrapper .row .image {
    margin-bottom: 1vw;
  }
}
.archive-wrapper .row .title {
  font-size: 3.4666666667vw;
  font-weight: 600;
  line-height: 1.66;
}
@media screen and (min-width: 768px) {
  .archive-wrapper .row .title {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .archive-wrapper .row .title {
    font-size: 1.2vw;
  }
}
.archive-wrapper .row .date {
  font-size: 2.9333333333vw;
  color: #adadad;
  font-weight: 500;
  margin-bottom: 2vw;
}
@media screen and (min-width: 768px) {
  .archive-wrapper .row .date {
    font-size: min(1.1666666667vw, 14px);
  }
}
@media screen and (min-width: 1500px) {
  .archive-wrapper .row .date {
    font-size: 0.9333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .archive-wrapper .row .date {
    margin-bottom: min(0.8333333333vw, 10px);
  }
}
@media screen and (min-width: 1500px) {
  .archive-wrapper .row .date {
    margin-bottom: 0.6666666667vw;
  }
}
.archive-wrapper .result-count {
  font-size: 3.4666666667vw;
  font-weight: 700;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .archive-wrapper .result-count {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .archive-wrapper .result-count {
    font-size: 1.2vw;
  }
}

body.single .main {
  background-color: #f6f7f7;
}

/*---------------------------------------------
single-wrapper
---------------------------------------------*/
.single-wrapper {
  padding: 16vw 0 24vw;
}
@media screen and (min-width: 768px) {
  .single-wrapper {
    padding: min(8.3333333333vw, 100px) 0 min(10.8333333333vw, 130px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper {
    padding: 6.6666666667vw 0 8.6666666667vw;
  }
}
.single-wrapper .single-content {
  background-color: #fff;
}
.single-wrapper .single-content .post-header {
  padding: 5.45% 5.45% 1.818%;
  border-bottom: solid 2px #f2f2f2;
}
.single-wrapper .single-content .post-header h1 {
  color: #213987;
  font-size: 6.4vw;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-header h1 {
    font-size: min(3.1666666667vw, 38px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-header h1 {
    font-size: 2.5333333333vw;
  }
}
.single-wrapper .single-content .post-header .date {
  font-size: 2.9333333333vw;
  color: #adadad;
  font-weight: 500;
  margin-bottom: 3.3333333333vw;
  margin-top: 1em;
  padding-left: 0.5em;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-header .date {
    font-size: min(1.1666666667vw, 14px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-header .date {
    font-size: 0.9333333333vw;
  }
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-header .date {
    margin-bottom: min(1.25vw, 15px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-header .date {
    margin-bottom: 1vw;
  }
}
.single-wrapper .single-content .sns-link {
  display: flex;
  justify-content: flex-end;
}
.single-wrapper .single-content .sns-link .sns-row {
  display: flex;
  gap: 6px;
}
.single-wrapper .single-content .sns-link .sns-row > * {
  width: 37px;
}
.single-wrapper .single-content .sns-row2 {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.single-wrapper .single-content .sns-row2 > * {
  width: 37px;
}
.single-wrapper .single-content .post-conetnt {
  color: #021f42;
  font-size: 3.4666666667vw;
  line-height: 2;
  padding: 8vw 0 16vw;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-conetnt {
    font-size: 1.2vw;
  }
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt {
    padding: min(3.3333333333vw, 40px) 0 min(6.6666666667vw, 80px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-conetnt {
    padding: 2.6666666667vw 0 5.3333333333vw;
  }
}
.single-wrapper .single-content .post-conetnt .read {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt .read {
    width: 76.3%;
    margin-inline: auto;
  }
}
.single-wrapper .single-content .post-conetnt .fv {
  margin-bottom: 9.52%;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt .fv {
    width: 76.3%;
    margin-inline: auto;
  }
}
.single-wrapper .single-content .post-conetnt .index {
  padding: 4.8% 3.6%;
  border: solid 4px #e6eefe;
  border-radius: 4px;
  margin-bottom: 9.52%;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt .index {
    width: 76.3%;
    margin-inline: auto;
  }
}
.single-wrapper .single-content .post-conetnt .index .index-title {
  text-align: center;
  font-size: 5.0666666667vw;
  font-weight: 500;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt .index .index-title {
    font-size: min(2.3333333333vw, 28px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-conetnt .index .index-title {
    font-size: 1.8666666667vw;
  }
}
.single-wrapper .single-content .post-conetnt .index .line1 strong {
  font-size: 3.4666666667vw;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt .index .line1 strong {
    font-size: min(1.5vw, 18px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-conetnt .index .line1 strong {
    font-size: 1.2vw;
  }
}
.single-wrapper .single-content .post-conetnt .index .line2 {
  padding-left: 2em;
  position: relative;
}
.single-wrapper .single-content .post-conetnt .index .line2:after {
  position: absolute;
  display: block;
  content: "";
  width: 1.375em;
  height: 2px;
  top: 1em;
  left: 2px;
  background-color: #5eb9ee;
}
.single-wrapper .single-content .post-conetnt .index .line2 strong {
  font-size: 3.2vw;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt .index .line2 strong {
    font-size: min(1.3333333333vw, 16px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-conetnt .index .line2 strong {
    font-size: 1.0666666667vw;
  }
}
.single-wrapper .single-content .post-conetnt .index .row {
  padding: 2.58% 1.29%;
  border-bottom: solid 1px #d3d3d3;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt .index .row a:hover {
    color: #5eb9ee;
  }
}
.single-wrapper .single-content .post-conetnt .index .row a + a {
  margin-top: 0.2em;
}
.single-wrapper .single-content .post-conetnt h2 {
  padding: 0.2em 0.5em 0.2em 1em;
  border-left: solid 4px #5eb9ee;
  margin-top: 3em;
  margin-bottom: 0.8em;
}
.single-wrapper .single-content .post-conetnt h3 {
  margin-top: 1.5em;
  margin-bottom: 1em;
  padding: 0 0.1em 0.3em;
  border-bottom: solid 2px #5eb9ee;
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt h3 {
    font-size: min(2vw, 24px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-conetnt h3 {
    font-size: 1.6vw;
  }
}
.single-wrapper .single-content .post-conetnt h3 strong {
  font-weight: 500;
}
.single-wrapper .single-content .post-conetnt #content {
  padding: 0 4vw;
  /*img {
    border: solid 2px #043c78;
    border-top: none;
  }*/
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt #content {
    padding: 0 min(10.8333333333vw, 130px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-conetnt #content {
    padding: 0 8.6666666667vw;
  }
}
.single-wrapper .single-content .post-conetnt #content > p + p:not(.caption) {
  margin-top: 2em;
}
.single-wrapper .single-content .post-conetnt #content .caption {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt #content .caption {
    margin-top: min(0.8333333333vw, 10px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-conetnt #content .caption {
    margin-top: 0.6666666667vw;
  }
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt #content .index {
    width: 100%;
  }
}
.single-wrapper .single-content .post-conetnt #content > * + .index {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt #content > * + .index {
    margin-top: min(5vw, 60px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-conetnt #content > * + .index {
    margin-top: 4vw;
  }
}
.single-wrapper .single-content .post-conetnt #content a:not(.btn-more) {
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt #content a:not(.btn-more):hover {
    color: #5eb9ee;
  }
}
.single-wrapper .single-content .post-conetnt .bg {
  background: #e5f4fc;
  padding: 4.166% 2.5%;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.8;
}
.single-wrapper .single-content .post-conetnt .bg ul li {
  position: relative;
  padding-left: 24px;
}
.single-wrapper .single-content .post-conetnt .bg ul li:after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 12px;
  background-color: #5eb9ee;
  position: absolute;
  top: var(--marker-top, 0.75em);
  left: 0;
}
.single-wrapper .single-content .post-conetnt .bg ul li + li {
  margin-top: 1em;
}
.single-wrapper .single-content .post-conetnt .last_text {
  border-top: solid 1px #d3d3d3;
  margin-top: 10.6666666667vw;
  padding: 6.6666666667vw 4vw 18.6666666667vw;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt .last_text {
    margin-top: min(4.1666666667vw, 50px);
    padding: min(2.9166666667vw, 35px) min(10.8333333333vw, 130px) min(6.6666666667vw, 80px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-conetnt .last_text {
    margin-top: 3.3333333333vw;
    padding: 2.3333333333vw 8.6666666667vw 5.3333333333vw;
  }
}
.single-wrapper .single-content .post-conetnt .last_text .btn_row {
  margin-top: 3em;
}
.single-wrapper .single-content .post-conetnt .last_text .last_text {
  border-top: none;
  margin-top: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt .last_text .last_text {
    margin-top: 0;
    padding: 0;
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-conetnt .last_text .last_text {
    margin-top: 0;
    padding: 0;
  }
}
.single-wrapper .single-content .post-conetnt .btn_row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 5vw;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt .btn_row {
    flex-direction: row;
    gap: 3.27%;
    justify-content: center !important;
  }
}
.single-wrapper .single-content .post-conetnt .btn_row .btn-more span {
  text-align: center;
}
.single-wrapper .single-content .post-conetnt .share-text {
  text-align: center;
  font-size: 4.8vw;
  font-weight: 500;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  .single-wrapper .single-content .post-conetnt .share-text {
    font-size: min(1.8333333333vw, 22px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .single-content .post-conetnt .share-text {
    font-size: 1.4666666667vw;
  }
}
.single-wrapper .btn-more {
  font-size: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .single-wrapper .btn-more {
    font-size: min(1.6666666667vw, 20px);
  }
}
@media screen and (min-width: 1500px) {
  .single-wrapper .btn-more {
    font-size: 1.3333333333vw;
  }
}
.single-wrapper .btn-more span {
  line-height: 1.4;
}

/*---------------------------------------------
news
---------------------------------------------*/
.archive-news {
  padding: 16vw 0 20vw;
}
@media screen and (min-width: 768px) {
  .archive-news {
    padding: min(6.6666666667vw, 80px) 0 min(8.3333333333vw, 100px);
  }
}
@media screen and (min-width: 1500px) {
  .archive-news {
    padding: 5.3333333333vw 0 6.6666666667vw;
  }
}
.archive-news .pagination {
  margin-top: 3em;
}

/*---------------------------------------------
news
---------------------------------------------*/
.mv-newsletter .title-en img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv-newsletter .title-en img {
    width: min(43.4166666667vw, 521px);
  }
}
@media screen and (min-width: 1500px) {
  .mv-newsletter .title-en img {
    width: 34.7333333333vw;
  }
}

/*---------------------------------------------
entry
---------------------------------------------*/
.mv-entry .title-en img {
  width: 45.8666666667vw;
}
@media screen and (min-width: 768px) {
  .mv-entry .title-en img {
    width: min(21.4166666667vw, 257px);
  }
}
@media screen and (min-width: 1500px) {
  .mv-entry .title-en img {
    width: 17.1333333333vw;
  }
}

/*---------------------------------------------
casual
---------------------------------------------*/
.mv-casual .title-en img {
  width: 45.8666666667vw;
}
@media screen and (min-width: 768px) {
  .mv-casual .title-en img {
    width: min(21.4166666667vw, 257px);
  }
}
@media screen and (min-width: 1500px) {
  .mv-casual .title-en img {
    width: 17.1333333333vw;
  }
}
.mv-casual .title-jp {
  font-size: 6.1333333333vw;
}
@media screen and (min-width: 768px) {
  .mv-casual .title-jp {
    font-size: min(3.3333333333vw, 40px);
  }
}
@media screen and (min-width: 1500px) {
  .mv-casual .title-jp {
    font-size: 2.6666666667vw;
  }
}