@charset "UTF-8";
.fv {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  pointer-events: none;
  /* ★最初はアニメしない（=止める） */
  /* ★fade後に付与されるクラスで表示＆アニメ開始 */
  /* 遅延クラスは「is-animating の時だけ効く」ように */
}
.fv__img {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.fv__img img {
  display: block;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left center;
     object-position: left center;
  -webkit-user-drag: none;
  user-drag: none;
  -moz-user-select: none;
       user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.fv__img:nth-child(2), .fv__img:nth-child(3) {
  margin-top: 2%;
}
.fv__img:nth-child(1) img, .fv__img:nth-child(3) img {
  width: 265.33vw;
  /* 100 / 0.37688 */
}
.fv__img img, .fv__img source {
  display: block;
}
.fv__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
  pointer-events: none;
}
.fv__item {
  flex: 0 0 auto;
}
.fv__ttl {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.fv svg {
  position: absolute;
  top: 54.5%;
  left: 7%;
}
.fv .handwriting {
  width: 61.334%;
  max-width: 500px;
  height: auto;
  /* ★最初は表示しない */
  opacity: 0;
  visibility: hidden;
}
.fv .handwriting-line {
  fill: none;
  stroke: white;
  stroke-width: 11;
  stroke-dasharray: 3500;
  stroke-dashoffset: 3500;
  animation: none;
  /* ←ここがポイント */
}
.fv .handwriting.is-animating {
  opacity: 1;
  visibility: visible;
}
.fv .handwriting.is-animating .handwriting-line {
  animation: draw 3s ease-out forwards;
}
.fv .handwriting.is-animating .handwriting-line.delay-1 {
  animation-delay: 0.5s;
}
.fv .handwriting.is-animating .handwriting-line.delay-2 {
  animation-delay: 1s;
}
@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.main-section {
  padding: 6% 0 0;
}

.select {
  text-align: center;
  font-weight: bold;
}
.select p {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.select p:first-child::before,
.select p:first-child::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 76.2%;
  background-color: #000000;
  top: 3%;
}
.select p:first-child::before {
  left: -10%;
  rotate: -20deg;
}
.select p:first-child::after {
  right: -10%;
  rotate: 20deg;
}
.select p + p {
  margin-top: 3%;
}
.select h3 {
  margin-top: 5%;
}
.select h2 {
  margin-top: 5%;
  font-size: clamp(0.1rem, 6.4vw, 2.4rem);
}
.select h2 span {
  background: linear-gradient(to right, #127294 0%, #159ECF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.select__swiper {
  padding: 13% 0 18% !important;
  /* 三角形 */
}
.select__swiper ul li {
  background-color: #fff;
  padding: 9.334% 2.667% 5.334%;
}
.select__swiperImg {
  margin-top: 6.917%;
  position: relative;
}
.select__swiperImg p.txt--ss {
  position: absolute;
  background-color: #fff;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: 5%;
  width: 90%;
  border-radius: 3px;
  padding: 2% 0;
  text-align: center;
}
.select__swiperImg p.txt--ss span {
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.select__swiper h5 {
  background-color: #F4F4F4;
  margin-top: 5%;
  border-radius: 3px;
  text-align: left;
  display: flex;
  align-items: center;
}
.select__swiper h5 span {
  position: relative;
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  color: #fff;
  padding: 0 4%;
  line-height: 2;
  border-radius: 3px;
  margin-right: 5%;
  display: block;
}
.select__swiper h5 span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -2.4vw;
  transform: translateY(-50%);
  width: 3.4vw;
  height: 4.8vw;
  background: #004B7F;
  /* ▶ 右向き三角形 */
  clip-path: polygon(0% 0%, 100% 50%, 0% 100%);
}
.select__swiper p {
  position: relative;
  background-color: #F4F4F4;
  margin-top: 5%;
  padding: 2%;
  text-align: left;
  border-radius: 3px;
  width: 100%;
  text-align: center;
}
.select__swiper p + p {
  margin-top: 9%;
}
.select__swiper p.select__swiperIcon {
  position: absolute;
  background-color: transparent;
  padding: 0;
  margin: 0;
  width: 16.498%;
  top: -5%;
}
.select__swiper p.select__swiperIcon::before, .select__swiper p.select__swiperIcon::after {
  content: none;
}
.select__swiper p + p::before {
  content: "";
  position: absolute;
  top: -5vw;
  left: 50%;
  transform: translateX(-50%);
  width: 5.4vw;
  height: 3.8vw;
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
}
.select__swiper .swiper-pagination {
  bottom: 6% !important;
}
.select__swiper02 .swiper-wrapper {
  transition-timing-function: linear;
}

.step {
  font-weight: bold;
  text-align: center;
  margin-top: 14%;
}
.step h2 {
  margin-top: 4%;
}
.step__swiper {
  margin-top: 5%;
  padding-bottom: 18% !important;
  padding-left: 5% !important;
  padding-right: 5% !important;
}
.step__swiper .swiper-slide {
  display: flex;
  flex-direction: column;
  /* 縦並び */
  height: auto;
}
.step__swiper p {
  text-align: left;
  margin-top: 5%;
  margin-bottom: 5%;
}
.step__swiperBtn {
  margin-top: auto;
  border-radius: 150px;
}
.step__swiperBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
  padding: 4% 0;
  color: #fff;
  position: relative;
}
.step__swiperBtn a span {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(135deg);
  margin-top: -1%;
}
.step__swiper .swiper-wrapper {
  align-items: stretch;
  /* ★これが重要 */
}
.step__swiper .swiper-slide {
  height: auto;
}
.step__swiper .swiper-slide > * {
  width: 100%;
}
.step__swiper .swiper-pagination {
  bottom: 7% !important;
}
.step__item {
  position: relative;
  scroll-margin-top: 50px;
}
.step__itemEnTtl {
  display: none;
}
.step__itemBg {
  position: absolute;
  z-index: -1;
}
.step__item h2 {
  text-align: justify;
  display: flex;
  align-items: center;
  color: #fff;
  width: 91.466%;
  margin: 0 auto;
  padding-top: 9.6%;
  gap: 4%;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.4);
}
.step__item h2 span {
  font-size: clamp(0.1rem, 17.0666vw, 6.4rem);
  font-size: 17.0666vw;
  text-shadow: none;
  font-weight: 500;
  letter-spacing: 0;
}
.step__itemContents {
  background-color: #fff;
  border-radius: 60px 0 60px 0;
  position: relative;
  margin-top: 20%;
  padding: 36.667% 4% 21.6%;
  text-align: left;
}
.step__itemImg {
  position: absolute;
  width: 85.333%;
  right: 0;
  top: 7.5%;
  z-index: 2;
}
.step__itemHead h3 {
  background: linear-gradient(90deg, #001E56, #004B7F);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.step__itemHeadImg {
  margin-top: 4.638%;
}
.step__itemHead h4 {
  margin-top: 7.247%;
  position: relative;
}
.step__itemHead h4::after {
  content: "";
  position: absolute;
  bottom: -13px;
  width: 100%;
  left: 0;
  height: 3px;
  background: linear-gradient(to right, #4CABCD 0%, #E6CDF8 100%);
}
.step__itemHead p {
  margin-top: 7.247%;
  text-indent: -1em;
  padding-left: 1em;
}
.step__itemHead p + p {
  margin-top: 3%;
}
.step__itemBtn {
  margin-top: 7.247%;
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  border-radius: 150px;
}
.step__itemBtn a {
  display: flex;
  align-items: center;
  gap: 5%;
  padding: 4% 7% 4% 10%;
  color: #fff;
  position: relative;
  width: 100%;
  /* ▼ ここが追加 ▼ */
}
.step__itemBtn a .step__itemBtnPoint {
  border: 3px solid #fff;
  border-radius: 4px;
  padding: 1% 3%;
  white-space: nowrap;
}
.step__itemBtn a .step__itemBtnPlus {
  margin-left: auto;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  /* ＋の縦線 */
  background-image: linear-gradient(to right, #001E56 0%, #004B7F 100%), linear-gradient(to right, #001E56 0%, #004B7F 100%);
  background-size: 3px 14px, 14px 3px;
  background-position: center, center;
  background-repeat: no-repeat;
}
.step__itemMiddle {
  margin-top: 32%;
  position: relative;
  background-color: #F4F4F4;
  border-radius: 5px;
  padding: 10% 4.35% 0;
}
.step__itemMiddle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(to right, #4CABCD 0%, #E6CDF8 100%);
}
.step__itemMiddleImg {
  position: absolute;
  right: -4%;
  top: -21%;
  z-index: 0;
}
.step__itemMiddle h3 {
  font-size: clamp(0.1rem, 4.26666vw, 1.6rem);
  font-size: 4.26666vw;
}
.step__itemMiddle p {
  margin-top: 4%;
  font-weight: 500;
}
.step__itemBottom {
  margin-top: 7%;
}
.step__itemBottom h3 {
  color: #2D8BAD;
}
.step__itemBottom p {
  margin-top: 2%;
  font-size: clamp(0.1rem, 4.26666vw, 1.6rem);
  font-size: 4.26666vw;
}
.step__itemBottomContents {
  display: flex;
  align-items: end;
  gap: 6%;
  margin-top: 5%;
}
.step__itemBottomContentsImg {
  width: 46.378%;
}
.step__itemBottomContentsTxt p {
  margin-top: 0;
  font-size: clamp(0.1rem, 3.7333vw, 1.4rem);
  font-size: 3.7333vw;
}
.step__itemBottomContentsTxt p + p {
  margin-top: 5%;
  font-size: clamp(0.1rem, 3.066vw, 1.4rem);
}
.step__itemBottomContentsFrame {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  /* iOS慣性スクロール */
  margin-top: 6%;
  text-align: center;
  width: calc(100% + 50vw - 50%);
  margin-right: calc(50% - 50vw);
}
.step__itemBottomContentsFrame img {
  width: 520px;
  margin: 0 auto;
}
.step__itemBottomContents + p {
  position: relative;
  font-size: clamp(0.1rem, 3.7333vw, 1.4rem);
  font-size: 3.7333vw;
  background-color: #F4F4F4;
  padding: 4%;
  border-radius: 6px;
  margin-top: 6%;
}
.step__itemBottomContents + p::after {
  content: "";
  position: absolute;
  top: -3.8vw;
  /* 三角形の高さ分だけ上へ */
  left: 20%;
  width: 5.4vw;
  height: 3.8vw;
  background-color: #F4F4F4;
  /* ▲ 上向き三角形 */
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
.step__itemBtn-ex {
  margin-top: 0;
  position: absolute;
  width: 69.334%;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  bottom: -1%;
}
.step__itemBtn-ex a {
  justify-content: center;
  padding: 6% 7% 6% 10%;
}
.step__itemBtn-ex a .step__itemBtn-ex-txt {
  position: absolute;
  width: 53.847%;
  top: -27px;
  left: 16px;
}
.step__itemBtn-ex a span {
  position: absolute;
  width: 20px;
  width: 7.695%;
  height: 20px;
  height: 38.33%;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-text-fill-color: initial;
  right: 6vw;
}
.step__itemBtn-ex a span::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -o-border-image: linear-gradient(to bottom, #001E56 0%, #004B7F 100%) 1;
     border-image: linear-gradient(to bottom, #001E56 0%, #004B7F 100%) 1;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-225deg);
  -webkit-transform: translate(-50%, -50%) rotate(-225deg);
  -ms-transform: translate(-50%, -50%) rotate(-225deg);
}
.step__item + .step__item {
  margin-top: 19%;
}
.step__item:nth-child(2) .step__itemHead h4::after {
  background: linear-gradient(to right, #F2A88F 0%, #FDC886 100%);
}
.step__item:nth-child(2) .step__itemMiddle::before {
  background: linear-gradient(to right, #F2A88F 0%, #FDC886 100%);
}
.step__item:nth-child(2) .step__itemMiddleImg {
  top: -29%;
}
.step__item:nth-child(2) .step__detailSwiper li h4 span {
  background: linear-gradient(to right, #F2A88F 0%, #FDC886 100%);
}
.step__item:nth-child(2) .step__itemBottom h3 {
  color: #D4866C;
}
.step__item:nth-child(3) .step__itemHead h4::after {
  background: linear-gradient(to right, #9BEBB6 0%, #F2DE73 100%);
}
.step__item:nth-child(3) .step__itemMiddle::before {
  background: linear-gradient(to right, #9BEBB6 0%, #F2DE73 100%);
}
.step__item:nth-child(3) .step__detailSwiper li h4 span {
  background: linear-gradient(to right, #9BEBB6 0%, #F2DE73 100%);
}
.step__item:nth-child(3) .step__itemBottom h3 {
  color: #5EBC7D;
}
.step__item:nth-child(4) .step__itemHead h4::after {
  background: linear-gradient(to right, #DB7FA1 0%, #E5B5C1 100%);
}
.step__item:nth-child(4) .step__itemMiddle::before {
  background: linear-gradient(to right, #DB7FA1 0%, #E5B5C1 100%);
}
.step__item:nth-child(4) .step__itemMiddleImg {
  top: -29%;
}
.step__item:nth-child(4) .step__detailSwiper li h4 span {
  background: linear-gradient(to right, #DB7FA1 0%, #E5B5C1 100%);
}
.step__item:nth-child(4) .step__itemBottom h3 {
  color: #DB7FA1;
}
.step__detailSwiper {
  margin-top: 3.35%;
  padding-bottom: 12.7% !important;
  width: calc(100% + 50vw - 50%);
  margin-right: calc(50% - 50vw);
}
.step__detailSwiper li {
  border-radius: 6px;
  padding: 4.764%;
  margin-right: 20px;
  background-color: #fff;
  height: auto;
  display: flex;
  flex-direction: column;
}
.step__detailSwiper li h4 {
  display: flex;
  align-items: center;
  gap: 3%;
}
.step__detailSwiper li h4 span {
  color: #fff;
  font-size: clamp(0.1rem, 4.26666vw, 1.6rem);
  font-size: 4.26666vw;
  width: 30px;
  height: 30px;
  background: linear-gradient(to right, #4CABCD 0%, #E6CDF8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step__detailSwiper .swiper-pagination {
  bottom: 5% !important;
}
.step .modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
  /* モーダル本体 */
  /* ★スクロール領域：calcをやめてflexで高さを確保 */
}
.step .modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 30, 86, 0.8);
}
.step .modal__content {
  position: relative;
  max-width: 90%;
  width: 91.467%;
  max-height: 90%;
  margin: 7vh auto;
  background: #fff;
  border-radius: 12px;
  padding-top: 35px;
  /* SPは固定でOK */
  overflow: visible;
  /* アイコンはみ出しOK */
  /* ★ここが核心：中身を80vhに収めるためflex化 */
  display: flex;
  flex-direction: column;
}
.step .modal__close {
  position: absolute;
  top: -15px;
  right: -10px;
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff), linear-gradient(to right, #001E56 0%, #004B7F 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 2px 16px, 16px 2px, 100% 100%;
  transform: rotate(45deg);
}
.step .modal__icon {
  position: absolute;
  top: -18px;
  left: 44%;
  transform: translateX(-50%);
  width: 36%;
  max-width: 122px;
  z-index: 2;
}
.step .modal__icon img {
  width: 100%;
  display: block;
}
.step .modal__scroll {
  flex: 1 1 auto;
  min-height: 0;
  /* ★これがないと“下に押し出し”が起きます */
  overflow-y: auto;
  padding: 0 16px 16px;
  /* 念のため：中の画像が縦にでかくなりすぎないように */
}
.step .modal__scroll img {
  max-width: 100%;
  height: auto;
  display: block;
}
.step .modal__inner {
  margin-top: 6%;
}
.step .modal__item p {
  margin-top: 4%;
}
.step .modal__item p + p {
  margin-top: 2%;
  font-weight: 600;
  text-align: left;
}
.step .modal__item + .modal__item {
  margin-top: 7%;
}
.step .modal__inner + .modal__item {
  margin-top: 10%;
}
.step .modal.is-active {
  opacity: 1;
  visibility: visible;
}

.intern {
  padding: 18.463% 4.104% 12.822%;
  text-align: center;
  font-weight: bold;
}
.intern__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.intern__list li {
  width: 23.24%;
  padding: 1% 0;
  letter-spacing: -0.03em;
  margin: 0;
  border-radius: 3px;
}
.intern__list li:last-child {
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  color: #fff;
  padding: 0;
  height: 16.267vw;
  width: 17.721%;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.1rem, 3.2vw, 1.2rem);
  font-size: 3.2vw;
}
.intern p {
  margin-top: 16px;
}
.intern h2 {
  margin-top: 20px;
}
.intern h2 span {
  background: linear-gradient(to right, #127294 0%, #159ECF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.intern__inner {
  padding: 16px 16px 45px;
  margin-top: 20px;
  background-color: #FFF;
}
.intern__container {
  margin-top: 20px;
  text-align: left;
}
.intern h3 {
  position: relative;
  border-radius: 150px;
  padding: 7px 20px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  width: 100%;
  /* 中身（テキスト）をグラデに */
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  /* 重要：枠線は本体では作らない */
  border: 0;
}
.intern h3::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 3px;
  /* ←枠線の太さ */
  border-radius: 150px;
  /* ←角丸をここにも */
  background: linear-gradient(to right, #001E56 0%, #004B7F 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.intern h3 span {
  font-size: clamp(0.1rem, 6.4vw, 2.4rem);
  font-size: 6.4vw;
}
.intern__contents {
  margin-top: 20px;
  position: relative;
}
.intern__contentsImg {
  position: absolute;
  width: 23.702%;
  max-width: 74px;
  text-align: center;
  left: 20px;
}
.intern__contentsImg span {
  color: #2D8BAD;
  margin-top: 5px;
  display: block;
}
.intern__contents p {
  background-color: #F4F4F4;
  padding: 15px 13px 15px 45px;
  margin-left: auto;
  width: 80.07%;
}
.intern__voice {
  padding: 28px 16px 0;
  background-color: #D8EDEF;
  position: relative;
}
.intern__voice p {
  margin-top: 0;
}
.intern__voice h2 {
  position: relative;
  margin-top: 0;
  margin-left: 14%;
  text-align: left;
  background: linear-gradient(to right, #127294 0%, #159ECF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: -moz-max-content;
  width: max-content;
}
.intern__voice h2::before,
.intern__voice h2::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 76.2%;
  background: linear-gradient(to right, #127294 0%, #159ECF 100%);
  top: 15%;
}
.intern__voice h2::before {
  left: -20%;
  rotate: -30deg;
}
.intern__voice h2::after {
  right: -20%;
  rotate: 30deg;
}
.intern__voiceLevel {
  position: absolute;
  border-radius: 50%;
  top: -35px;
  left: 70%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 105px;
  height: 105px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.intern__voice .swiper-pagination {
  bottom: 3%;
}
.intern__swiper {
  margin-top: 25px;
  padding-bottom: 36px !important;
  width: calc(100% + 50vw - 50%);
  margin-right: calc(50% - 50vw);
}
.intern__swiper li {
  padding: 12px 16px;
  background-color: #fff;
  text-align: left;
}

@media screen and (min-width: 750px) {
  .fv__img:nth-child(2), .fv__img:nth-child(3) {
    margin-top: 0.5%;
  }
  .fv__img:nth-child(1) img, .fv__img:nth-child(3) img {
    width: 155.76vw;
  }
  .fv__ttl {
    width: 41%;
    top: 53%;
    left: 43%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
  }
  .fv .handwriting {
    width: 28%;
    top: 48%;
    right: 20%;
    left: auto;
  }
  .main-section {
    padding: 3.125% 0 0;
  }
  .select p {
    font-size: clamp(0.1rem, 0.9375vw, 1.8rem);
  }
  .select p + p {
    margin-top: 1.5626%;
  }
  .select h3 {
    margin-top: 1.5626%;
  }
  .select h2 {
    margin-top: 0.417%;
  }
  .select__swiper {
    padding: 2.6045% 4% 4.323% !important;
    max-width: 1200px;
    margin: 0 auto;
  }
  .select__swiper .swiper-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .select__swiper .swiper-wrapper li {
    width: 30%;
    padding: 4.167% 0.9% 1.667%;
  }
  .select__swiper .swiper-wrapper li .txt--s {
    font-size: clamp(0.1rem, 0.9375vw, 1.8rem);
  }
  .select__swiper .swiper-wrapper li h5 {
    background-color: transparent;
    justify-content: center;
  }
  .select__swiper .swiper-wrapper li .txt--s span::after {
    width: 1vw;
    max-width: 20px;
    height: 1vw;
    max-height: 30px;
    right: -7px;
  }
  .select__swiper .swiper-wrapper li .ttl--s {
    font-size: clamp(0.1rem, 1.354vw, 2.6rem);
  }
  .select__swiper .swiper-wrapper p.select__swiperIcon {
    top: -4%;
  }
  .select__swiper .swiper-wrapper p + p {
    margin-top: 11%;
  }
  .select__swiper .swiper-wrapper p + p::before {
    top: -45%;
    width: 3vw;
    max-width: 30px;
    height: 1.2vw;
    max-height: 15px;
  }
  .select__swiperImg p.txt--ss {
    font-size: clamp(0.1rem, 0.83333vw, 1.6rem);
  }
  .step {
    margin-top: 4.323%;
  }
  .step p {
    font-size: clamp(0.1rem, 0.9375vw, 1.8rem);
  }
  .step h2 {
    margin-top: 1.0417%;
  }
  .step__swiper {
    margin-top: 2.344%;
    max-width: 1200px;
    padding-bottom: 4.167% !important;
    padding-left: 4% !important;
    padding-right: 4% !important;
  }
  .step__swiper .swiper-wrapper {
    display: flex;
    justify-content: space-between;
  }
  .step__swiper li {
    width: 23.75%;
  }
  .step__swiper li .txt--s {
    font-size: clamp(0.1rem, 0.83333vw, 1.6rem);
  }
  .step__swiper li .step__swiperBtn.txt--s {
    font-size: clamp(0.1rem, 0.9375vw, 1.8rem);
  }
  .step__swiper li .step__swiperBtn.txt--s a span {
    width: 0.84vw;
    max-width: 10px;
    height: 0.84vw;
    max-height: 10px;
    border-top: clamp(0px, 0.3vw, 3px) solid #fff;
    border-right: clamp(0px, 0.3vw, 3px) solid #fff;
  }
  .step__item h2 {
    width: 92%;
    max-width: 1100px;
    padding: 2% 3.9067% 0;
    margin-top: 0;
    font-size: clamp(0.1rem, 1.354vw, 2.6rem);
  }
  .step__item h2 span {
    font-size: clamp(0.1rem, 6.77vw, 13rem);
  }
  .step__itemBg img {
    width: 100vw;
    max-height: 1000px;
  }
  .step__itemContents {
    max-width: 1100px;
    position: relative;
    width: 100%;
    margin: 0 auto;
    border-radius: 15vw 10px 15vw 10px;
    margin-top: 2%;
    padding: 6.875% 50px 90px;
  }
  .step__itemImg {
    width: 46.3545%;
    top: 4.2%;
    max-width: 1040px;
  }
  .step__itemInner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .step__itemHeadWrapper {
    display: flex;
    align-items: end;
    justify-content: space-between;
  }
  .step__itemHead {
    width: 50%;
  }
  .step__itemHeadImg {
    margin-top: 2.638%;
  }
  .step__itemHead h4 {
    margin-top: 4%;
    font-size: clamp(0.1rem, 1.1979vw, 2.3rem);
  }
  .step__itemHead p {
    margin-top: 4.7%;
    font-size: clamp(0.1rem, 0.83333vw, 1.6rem);
  }
  .step__itemHead p + p {
    margin-top: 1.5%;
  }
  .step__itemBtn.txt--s {
    margin: 0;
    width: 44.167%;
    font-size: clamp(0.1rem, 0.9375vw, 1.8rem);
  }
  .step__itemBtn.txt--s a {
    padding: 2% 5%;
  }
  .step__itemBtn.txt--s a .step__itemBtnPoint {
    font-size: clamp(0.1rem, 0.83333vw, 1.6rem);
  }
  .step__itemBtn.txt--s a .step__itemBtnPlus {
    width: 1.875vw;
    max-width: 36px;
    height: 1.875vw;
    max-height: 36px;
    background-size: clamp(0px, 0.2vw, 3px) clamp(0px, 1.1vw, 16px), clamp(0px, 1.1vw, 16px) clamp(0px, 0.2vw, 3px), 100% 100%;
  }
  .step__itemMiddle {
    padding: 3.3334% 3.3334% 23px;
    margin-top: 7.25%;
  }
  .step__itemMiddle h3 {
    font-size: clamp(0.1rem, 1.25vw, 2.4rem);
  }
  .step__itemMiddle p {
    margin-top: 2%;
    font-size: clamp(0.1rem, 0.83333vw, 1.6rem);
  }
  .step__itemMiddleImg {
    max-width: -moz-max-content;
    max-width: max-content;
    width: 41%;
    right: -6%;
    bottom: 0;
    top: auto;
    z-index: 1;
  }
  .step__itemBottom {
    margin-top: 4%;
  }
  .step__itemBottom p {
    margin-top: 0.7%;
    font-size: clamp(0.1rem, 1.5625vw, 3rem);
  }
  .step__itemBottomWrapper {
    display: flex;
    justify-content: space-between;
    align-items: end;
  }
  .step__itemBottomContainer {
    width: 37%;
  }
  .step__itemBottomContents {
    margin-top: 3%;
  }
  .step__itemBottomContentsTxt p {
    font-size: clamp(0.1rem, 0.83333vw, 1.6rem);
  }
  .step__itemBottomContents + p {
    margin-top: 6%;
    padding: 4.752%;
    font-size: clamp(0.1rem, 0.83333vw, 1.6rem);
  }
  .step__itemBottomContents + p::after {
    top: -1vw;
    width: 3vw;
    max-width: 30px;
    height: 1.2vw;
    max-height: 15px;
  }
  .step__itemBottomContentsFrame {
    width: 60%;
    margin: 0;
  }
  .step__itemBottomContentsFrame img {
    width: 100%;
  }
  .step__itemBtn-ex.txt--s {
    max-width: none;
    bottom: -2.4%;
    width: 23.256%;
  }
  .step__itemBtn-ex.txt--s a {
    padding: 22px 0;
  }
  .step__itemBtn-ex.txt--s a .step__itemBtn-ex-txt {
    top: -45%;
    max-width: none;
  }
  .step__itemBtn-ex.txt--s a span {
    right: 20px;
    width: 1.8vw;
    max-width: 30px;
    height: 1.8vw;
    max-height: 30px;
  }
  .step__itemBtn-ex.txt--s a span::after {
    width: 0.5vw;
    max-width: 10px;
    height: 0.5vw;
    max-height: 10px;
  }
  .step__item + .step__item {
    margin-top: 9%;
  }
  .step__detailSwiper {
    padding: 0 !important;
    margin-top: 2.679%;
  }
  .step__detailSwiper li {
    width: 38.857%;
    max-width: 400px;
    padding: 0.8% 1.25%;
    margin-right: 1.974%;
  }
  .step__detailSwiper li h4 {
    font-size: clamp(0.1rem, 0.9375vw, 1.8rem);
  }
  .step__detailSwiper li h4 span {
    font-size: clamp(0.1rem, 1.04166vw, 2rem);
    width: 2.0834vw;
    max-width: 40px;
    height: 2.0834vw;
    max-height: 40px;
  }
  .step__item:nth-child(2) .step__itemMiddleImg {
    top: auto;
    bottom: 0;
  }
  .step__item:nth-child(3) .step__itemMiddleImg {
    top: auto;
    bottom: 0;
  }
  .step__item:nth-child(4) .step__itemMiddleImg {
    top: auto;
    bottom: 0;
  }
  .step .modal__content {
    width: 62.5%;
    max-width: 1200px;
    /* ★%のpadding-topは横幅で増えて事故るので clamp か固定に */
    padding-top: clamp(36px, 3.2vw, 56px);
  }
  .step .modal__close {
    width: 3.646vw;
    max-width: 70px;
    height: 3.646vw;
    max-height: 70px;
    background-size: 0.2vw 1.6vw, 1.6vw 0.2vw, 100% 100%;
    top: -18px;
    right: -3%;
  }
  .step .modal__icon {
    width: 20.8335%;
    left: 41%;
    top: -4%;
    max-width: none;
  }
  .step .modal__scroll {
    padding: 0 4.167% 4.167%;
  }
  .step .modal__scroll h3 {
    font-size: clamp(0.1rem, 1.875vw, 3.6rem);
  }
  .step .modal__inner {
    margin-top: 2.182%;
    display: flex;
    justify-content: space-between;
  }
  .step .modal__inner + .modal__item {
    margin-top: 5%;
    width: 100%;
  }
  .step .modal__item {
    width: 47.273%;
  }
  .step .modal__item + .modal__item {
    margin-top: 0;
  }
  .intern {
    padding: 105px 0 83px;
  }
  .intern__wrapper {
    max-width: 1200px;
    margin: 0 auto;
  }
  .intern__list {
    position: relative;
    width: 39.5%;
    margin: 0 auto;
    font-size: clamp(0.1rem, 0.9375vw, 1.8rem);
  }
  .intern__list li {
    width: 30%;
  }
  .intern__list li:last-child {
    position: absolute;
    width: 5.2914vw;
    max-width: 100px;
    height: 5.2914vw;
    max-height: 100px;
    right: -27%;
    font-size: clamp(0.1rem, 0.9375vw, 1.8rem);
  }
  .intern p {
    margin-top: 2%;
  }
  .intern h2 {
    margin-top: 0%;
    font-size: clamp(0.1rem, 1.875vw, 3.6rem);
  }
  .intern h2 + p {
    margin-top: 2%;
    font-size: clamp(0.1rem, 0.9375vw, 1.8rem);
  }
  .intern__inner {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 4%;
    justify-content: space-between;
    padding: 3.3334% 3.3334% 4.167%;
  }
  .intern__inner h3 {
    line-height: 1;
    padding: 2.5% 4%;
    gap: 4%;
    font-size: clamp(0.1rem, 1.04166vw, 2rem);
  }
  .intern__img {
    width: 47.322%;
  }
  .intern__container {
    width: 48.4824%;
    margin: 0;
  }
  .intern__container h3 span {
    font-size: clamp(0.1rem, 1.25vw, 2.4rem);
  }
  .intern__contents {
    margin-top: 7%;
  }
  .intern__contentsImg {
    width: 20.127%;
    width: 5vw;
    max-width: none;
    left: 0;
    top: -6%;
  }
  .intern__contentsImg span {
    font-size: clamp(0.1rem, 0.83333vw, 1.6rem);
  }
  .intern__contents p {
    margin-top: 0;
    width: 90.187%;
    padding: 4% 6.915% 4% 14.597%;
    font-size: clamp(0.1rem, 0.83333vw, 1.6rem);
    padding-left: 3vw;
  }
  .intern__voice {
    padding: 2.0836% 3.3334% 2.0836% 5.667%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .intern__voice h2 {
    margin: 0;
    font-size: clamp(0.1rem, 1.656565vw, 2rem);
  }
  .intern__voiceHead {
    display: flex;
    flex-direction: column-reverse;
    width: 14.6524%;
    position: relative;
  }
  .intern__voiceHead h2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    top: -26%;
  }
  .intern__voiceLevel {
    position: unset;
    top: auto;
    left: auto;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    width: 100%;
    height: 100%;
  }
  .intern__swiper {
    width: 81.502%;
    margin: 0;
    padding: 0 !important;
  }
  .intern__swiper .swiper-wrapper {
    justify-content: space-between;
  }
  .intern__swiper .swiper-wrapper li {
    width: 48.315%;
    padding: 2.248%;
  }
  .intern__swiper .swiper-wrapper li p {
    margin-top: 0;
    font-size: clamp(0.1rem, 0.83333vw, 1.6rem);
  }
}
@media screen and (min-width: 750px) {
  .select p {
    font-size: clamp(0.1rem, 1.63636vw, 1.8rem);
  }
  .select__swiper .swiper-wrapper li .txt--s {
    font-size: clamp(0.1rem, 1.272727vw, 1.4rem);
  }
  .select__swiper .swiper-wrapper li .ttl--s {
    font-size: clamp(0.1rem, 2.363636vw, 2.6rem);
  }
  .select__swiperImg p.txt--ss {
    font-size: clamp(0.1rem, 1.454545vw, 1.6rem);
  }
  .step p {
    font-size: clamp(0.1rem, 1.63636vw, 1.8rem);
  }
  .step .ttl--l {
    font-size: clamp(0.1rem, 5.818vw, 6.4rem);
  }
  .step__item h2 {
    font-size: clamp(0.1rem, 2.8363vw, 2.6rem);
    line-height: 1.5;
    width: 100%;
  }
  .step__item h2 span {
    line-height: 1;
    font-size: clamp(0.1rem, 11.8181vw, 13rem);
  }
  .step__itemHead {
    width: 56.727%;
  }
  .step__itemHead h3 {
    font-size: clamp(0.1rem, 4.363vw, 4.8rem);
  }
  .step__itemHead h4 {
    font-size: clamp(0.1rem, 2.0909vw, 2.3rem);
  }
  .step__itemHead p {
    font-size: clamp(0.1rem, 1.454545vw, 1.6rem);
  }
  .step__itemMiddle h3 {
    font-size: clamp(0.1rem, 2.18181vw, 2.4rem);
  }
  .step__itemMiddle p {
    font-size: clamp(0.1rem, 1.454545vw, 1.6rem);
  }
  .step__itemBottom h3 {
    font-size: clamp(0.1rem, 2.18181vw, 2.4rem);
  }
  .step__itemBottom p {
    font-size: clamp(0.1rem, 2.727272vw, 3rem);
  }
  .step__itemBottomContentsTxt p {
    font-size: clamp(0.1rem, 1.454545vw, 1.6rem);
  }
  .step__itemBottomContentsTxt p + p {
    font-size: clamp(0.1rem, 1.0909vw, 1.2rem);
  }
  .step__itemBottomContents + p {
    font-size: clamp(0.1rem, 1.454545vw, 1.6rem);
  }
  .step__itemImg {
    width: 40.8334%;
    max-width: 440px;
  }
  .step__itemBtn.txt--s {
    width: 38.167%;
    font-size: clamp(0.1rem, 1.636363vw, 1.8rem);
  }
  .step__swiper li .txt--s {
    font-size: clamp(0.1rem, 1.454545vw, 1.6rem);
  }
  .step__swiper li .step__swiperBtn.txt--s {
    font-size: clamp(0.1rem, 1.636363vw, 1.8rem);
  }
  .step__detailSwiper li h4 {
    font-size: clamp(0.1rem, 1.636363vw, 1.8rem);
  }
  .intern__list li:last-child {
    font-size: clamp(0.1rem, 1.636363vw, 1.8rem);
    width: 8.2914vw;
    height: 8.2914vw;
  }
  .intern h2 + p {
    font-size: clamp(0.1rem, 1.636363vw, 1.8rem);
  }
  .intern__inner h3 {
    font-size: clamp(0.1rem, 1.656565vw, 2rem);
  }
  .intern__inner h3 span {
    font-size: clamp(0.1rem, 2.18181vw, 2.4rem);
  }
  .intern__contents p {
    font-size: clamp(0.1rem, 1.454545vw, 1.6rem);
  }
  .intern__contentsImg {
    width: 6vw;
  }
  .intern__contentsImg span {
    font-size: clamp(0.1rem, 1.454545vw, 1.6rem);
  }
  .intern__swiper .swiper-wrapper li p {
    font-size: clamp(0.1rem, 1.454545vw, 1.6rem);
  }
}
@media screen and (min-width: 1101px) {
  .step .ttl--l {
    font-size: 6.4rem;
  }
  .step__item h2 {
    font-size: 2.6rem;
    width: 92%;
    padding-top: 2.917%;
  }
  .step__item h2 span {
    font-size: 13rem;
    line-height: 1;
  }
  .step__itemContents {
    margin-top: 2.917%;
  }
  .step__itemHead h3 {
    font-size: 4.8rem;
  }
  .step__itemHead h4 {
    font-size: 2.3rem;
  }
  .step__itemHead p {
    font-size: 1.6rem;
  }
  .step__itemMiddle h3 {
    font-size: 2.4rem;
  }
  .step__itemMiddle p {
    font-size: 1.6rem;
  }
  .step__itemBottom h3 {
    font-size: 2.4rem;
  }
  .step__itemBottom p {
    font-size: 3rem;
  }
  .step__itemBottomContentsTxt p {
    font-size: 1.6rem;
  }
  .step__itemBottomContents + p {
    font-size: 1.6rem;
  }
  .step__itemImg {
    max-width: 490px;
  }
  .step__itemBtn.txt--s {
    width: 38.167%;
    font-size: 1.8rem;
  }
  .step__detailSwiper li h4 {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1201px) {
  .step .ttl--l {
    font-size: 6.4rem;
  }
  .step__item h2 {
    font-size: 2.6rem;
  }
  .step__item h2 span {
    font-size: 13rem;
  }
  .step__itemHead {
    width: 59.727%;
  }
  .step__itemHead h3 {
    font-size: 4.8rem;
  }
  .step__itemHead h4 {
    font-size: 2.3rem;
  }
  .step__itemHead p {
    font-size: 1.6rem;
  }
  .step__itemMiddle h3 {
    font-size: 2.4rem;
  }
  .step__itemMiddle p {
    font-size: 1.6rem;
  }
  .step__itemBottom h3 {
    font-size: 2.4rem;
  }
  .step__itemBottom p {
    font-size: 3rem;
  }
  .step__itemBottomContentsTxt p {
    font-size: 1.6rem;
  }
  .step__itemBottomContents + p {
    font-size: 1.6rem;
  }
  .step__itemBtn.txt--s {
    width: 38.167%;
    font-size: 1.8rem;
  }
  .step__detailSwiper li h4 {
    font-size: 1.8rem;
  }
  .step__item h2 {
    line-height: 1.5;
  }
  .step__itemContents {
    width: 92%;
  }
  .select__swiper {
    padding: 2.6045% 0 4.323% !important;
  }
  .select__swiper .swiper-wrapper li .txt--s span::after {
    right: -11px;
  }
}
@media screen and (min-width: 1441px) {
  .step__itemImg {
    width: 46.3545%;
    max-width: 1040px;
  }
  .step__itemHead {
    width: 50%;
  }
  .step__item h2 {
    max-width: 1200px;
    padding: 3.646% 0 0;
    gap: 2%;
  }
  .step__itemEnTtl {
    display: block;
    position: absolute;
    width: 6%;
    top: 5%;
    left: 1.5%;
    z-index: 1;
    max-width: 176px;
  }
  .step__itemContents {
    padding: 2.6045% 0 90px;
    border-radius: 10vw 10px 10vw 10px;
    max-width: 1720px;
    margin-top: 3.646%;
  }
  .step__itemMiddle {
    margin-top: 5.25%;
    padding: 3.3334%;
  }
  .step__itemMiddleImg {
    right: 0;
  }
  .step__itemBtn.txt--s a {
    padding: 4% 5%;
  }
  .step__itemBottomContents + p::after {
    top: -13px;
  }
  .step__itemBtn.txt--s {
    width: 44.167%;
    font-size: 1.8rem;
  }
  .step__itemBtn-ex.txt--s {
    width: 23.256%;
  }
  .step__itemBtn-ex.txt--s a {
    padding: 6% 5%;
  }
  .step__detailSwiper li {
    max-width: 440px;
  }
  .step .modal__close {
    background-size: 3px 24px, 24px 3px, 100% 100%;
    top: -6%;
  }
  .intern__contentsImg {
    width: 20.127%;
  }
  .intern__contents p {
    padding: 4% 6.915% 4% 14.597%;
  }
}/*# sourceMappingURL=style.css.map */