body::before {
  content: '';
  position: fixed;
  right: 52px;
  bottom: -67px;
  width: 520px;
  height: 479px;
  background-image: url(../img/index/bg-cloud.svg);
  background-size: 100%;
  z-index: -1;
}

.c-sec {
  padding: 80px 30px;
}

.c-sec--mv {
  margin-top: 135px;
  padding-bottom: 0;
}

.mv{
	position: relative;
}

.mv::after{
    content: "";
    display: block;
    width: 42vw;
    max-width: 36rem;
    height: 33vw;
    max-height: 21rem;
    background-image: url(../img/index/mv-mark.svg);
    background-size: contain;
    z-index: -1;
    position: absolute;
    top: 50%;
    left: 75%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
}

.mv-c-btn-groupe {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: -3rem;
    flex-wrap: wrap;
}

@media (max-width: 1239px) {
	.mv::after{
        width: 30rem;
        max-width: 100%;
        height: 18rem;
        background-size: contain;
        position: relative;
        top: 0%;
        left: 50%;
        transform: translate(-50%, -20%);
        margin: 0;
        padding: 0;
}
.mv-c-btn-groupe {
    display: block;
    margin-top: 0rem;
}
}

@media (max-width: 767px) {
	.mv::after{
        height: 13rem;
        width: 22rem;
}
}

/* =========================================================
   TK HERO Gradient Text + Emphasis Marker (Complete CSS)
   - Works with your HTML:
     <h1 id="anim-gradient" class="tkhero">
       <span class="tkhero__seg" data-fs="...">...</span>...
     </h1>
   - Assumes JS will split each seg into .tkhero__ch spans
   - Key fix: override -webkit-text-fill-color for emphasis
   ========================================================= */
.anim-third {
    margin-top: 2rem;
}





.example-list {
  position: relative;
  padding: 60px 0;
  max-width: 1200px;
  margin: auto;
  overflow: visible;
}

/* スライド共通初期状態 */
.example-list .swiper-slide {
  transform: scale(1);
  opacity: 0.7;
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform;
}

/* ズームクラス（JS制御） */
.example-list .swiper-slide.is-zoom {
  transform: scale(1.35);
  opacity: 1;
  z-index: 2;
  box-shadow: 0 0px 15px rgba(0, 0, 0, 0.16);
}

/* スライドの見た目 */
.example-list .slide-item {
  display: block;
  background: #F5F5F5;
  border-radius: 24px;
  padding: 25px;
  text-align: center;
  text-decoration: none;
  color: #333;
}

.example-list .slide-item img{
	max-height: 13rem;
	object-fit: contain;
	background-color: #ffffff;
	padding: 1rem;
	aspect-ratio: 312 / 307;
    display: block;
    border-radius: 1.125rem;
}
.example-list .slide-item .txt.c-icon--blue{
max-width: max-content;
    margin-left: 0;
    font-size: 0.75rem;
    font-size: 0.75rem;
    padding: 0 15px;
margin-bottom: 0.25rem;
    border-radius: 100px;
    height: auto;
    line-height: 1.7;
    margin-top: 0.75rem;
}

.example-list .slide-item .slide-ttl,.example-list .slide-item .txt{
	text-align: left;
}

.example-list .slide-item .slide-ttl{
	font-size: 1.125rem;
}

.example-list .slide-item .txt{
	margin-top: 0.8rem;
}

/* ナビゲーション共通 */
.example-list .swiper-button-prev,
.example-list .swiper-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ボタン位置 */
.example-list .swiper-button-prev {
  left: 0;
  transform: translate(100%, 0%);
}
.example-list .swiper-button-next {
  right: 0;
  transform: translate(-100%, 0%);
}

/* ナビゲーションボタンのアイコンを画像で表示 */
.example-list .swiper-button-prev::after,
.example-list .swiper-button-next::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* 左矢印 */
.example-list .swiper-button-prev::after {
  background-image: url('../img/common/icon-prev.svg');
}

/* 右矢印 */
.example-list .swiper-button-next::after {
  background-image: url('../img/common/icon-next.svg');
}

/* Swiperの範囲外にも表示されるように */
.example-list .swiper-wrapper {
  overflow: visible;
}

.swiper.example-list {
    overflow: visible;
	    padding: 4.5rem 0;
}

.example-list__area {
    overflow: hidden;
	    padding: 0rem 0;
		padding-bottom: 3rem;
		    margin-top: 5rem;
}



/* ---- Tuning tokens ---- */
#anim-gradient.tkhero{
  --tkhero-text-color: #373737;
  --tkhero-em-color: #FF4E4E;

  --tkhero-marker-color: rgba(255, 219, 18, 1);
    --tkhero-marker-height: 0.3em;
    --tkhero-marker-bottom: 0.1em;
    --tkhero-marker-pad: 0.1em;
  --tkhero-marker-skew: -10deg;

  /* if your base line-height differs, adjust here */
  line-height: 1.12;
}

/* ---- Base wrapper ---- */
#anim-gradient.tkhero{
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--tkhero-text-color);
}

/* Each segment stays inline so marker can size to its width */
#anim-gradient.tkhero .tkhero__seg{
  display: inline-block;
  position: relative;
  vertical-align: baseline;
}

/* Char spans created by JS */
#anim-gradient.tkhero .tkhero__ch{
  display: inline-block;
  vertical-align: baseline;
    font-weight: 600;
  /* Your gradient effect likely needs these.
     If you already define elsewhere, it's okay. */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* optional: smoother rendering */
#anim-gradient.tkhero,
#anim-gradient.tkhero .tkhero__ch{
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
      line-height: 1.3;
}

/* =========================================================
   Emphasis (data-em="price") => JS should add .is-em to seg
   Marker is drawn on the SEG (one continuous band)
   Text becomes solid red by overriding text-fill.
   ========================================================= */

/* Emphasis segment */
#anim-gradient.tkhero .tkhero__seg.is-em{
  color: var(--tkhero-em-color);
  font-weight: 900;
  line-height: 1;
}

/* Continuous marker band (on parent seg) */
#anim-gradient.tkhero.is-marking .tkhero__seg.is-em::before{
  content: "";
  position: absolute;
  left: calc(var(--tkhero-marker-pad) * -1);
  right: calc(var(--tkhero-marker-pad) * -1);
  bottom: var(--tkhero-marker-bottom);
  height: var(--tkhero-marker-height);
  border-radius: 0.35em;
  z-index: -1;

  /* marker-like: fade-in edges */
  background:
    linear-gradient(
      90deg,
      rgba(255, 230, 0, 0) 0%,
      var(--tkhero-marker-color) 12%,
      var(--tkhero-marker-color) 88%,
      rgba(255, 230, 0, 0) 100%
    );

  transform: scaleX(0) skewX(var(--tkhero-marker-skew));
  transform-origin: left;
  animation: tkhero-markerSwipe 520ms ease forwards;
}

@keyframes tkhero-markerSwipe{
  to { transform: scaleX(1) skewX(var(--tkhero-marker-skew)); }
}

/* Kill gradient + FORCE solid red on emphasis chars */
#anim-gradient.tkhero .tkhero__seg.is-em .tkhero__ch{
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;

  /* ★ critical: override transparent ink used by gradient text */
  -webkit-text-fill-color: currentColor !important;

  /* keep color in sync */
  color: var(--tkhero-em-color) !important;
}

/* =========================================================
   Optional: when you want non-em text to look like "normal"
   (If you actually want solid gray for all non-em parts)
   Uncomment below and also disable the gradient in JS/CSS.
   ========================================================= */
/*
#anim-gradient.tkhero .tkhero__seg:not(.is-em) .tkhero__ch{
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  color: var(--tkhero-text-color) !important;
}
*/


.c-sec--mv .mv-msg {
  margin-bottom: 85px;
  line-height: 1.481;
}

.c-sec--mv .mv-msg h1 {
  font-size: 3.375rem;
  margin-bottom: 42px;
}

.c-sec--mv .mv-copy {
  font-size: 1.6875rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #1288FF;
}

.c-sec--mv .mv-desc {
  line-height: 1.875;
}

.c-sec--mv .c-btns {
  margin-left: 24px;
}

.c-sec--bnr {
  padding: 22px 30px 23px;
  background-color: #EDEDED;
}

.c-sec--bnr .bnr {
  max-width: 1100px;
  margin: auto;
  justify-content: space-between;
}

.c-sec--bnr .bnr.c-flex {
    flex-wrap: nowrap;
    gap: 1rem;
}

.c-sec--bnr .bnr a {
  max-width: 480px;
}

.c-sec--what {
  padding-top: 100px;
}

.c-sec--what .what {
  max-width: 1210px;
  margin: auto;
  display: flex;
  align-items: flex-end;
}

.c-sec--what .what-right {
  margin-left: 84px;
}

.c-sec--what .what-right img {
    max-width: 391px;
}

.c-sec--what .c-ttl p {
  color: #1288FF;
}

.c-sec--what .c-ttl p::before {
  background-color: #1288FF;
}

.c-sec--what .c-desc {
  margin-bottom: 44px;
}

.c-sec--what .c-desc .c-underline {
  font-size: 1.25rem;
}

.c-sec--what .c-desc .c-underline::after {
  width: calc(100% - 20px);
}

.c-sec--reason {
  background-color: rgba(55, 55, 55, 0.05);
}

.c-sec--reason .reason {
  max-width: 1280px;
  margin: auto;
}

.c-sec--reason .c-ttl p {
  color: #22B408;
}

.c-sec--reason .c-ttl p::before {
  background-color: #22B408;
}

.c-sec--reason .c-mediumTtl {
  margin-bottom: 50px;
}

.c-sec--reason .reason-list {
  justify-content: space-between;
  font-size: 1.125rem;
}

.c-sec--reason .reason-list > div {
  width: calc(50% - 20px);
  height: 277px;
  margin-top: 40px;
  padding: 15px;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-sec--reason .reason-list > div .inner {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-sec--reason .reason-list > div .inner > div:nth-of-type(2) {
  margin-left: 60px;
}

.c-sec--reason .reason-list > div:nth-of-type(1), .c-sec--reason .reason-list > div:nth-of-type(2) {
  margin-top: 0;
}

.c-sec--reason .reason-list > div:nth-of-type(1) .inner > div:nth-of-type(1) img {
  max-width: 160px;
}

.c-sec--reason .reason-list > div:nth-of-type(2) .inner > div:nth-of-type(1) img {
  max-width: 160px;
}

.c-sec--reason .reason-list > div:nth-of-type(3) .inner > div:nth-of-type(1) img {
  max-width: 178px;
}

.c-sec--reason .reason-list > div:nth-of-type(4) .inner > div:nth-of-type(1) img {
  max-width: 148px;
}

.c-sec--reason .reason-list .c-underline {
  font-size: 1.375rem;
}

.c-sec--reason .c-btnWrap {
  margin-top: 64px;
}

.c-sec--case {
  padding: 80px 0;
  background-color: rgba(255, 167, 0, 0.05);
}

.c-sec--case .c-sec-inner {
  max-width: 100%;
}

.c-sec--case .c-ttl {
  max-width: 1280px;
  margin: 0 auto 44px;
}

.c-sec--case .c-ttl p {
  color: #FFA700;
}

.c-sec--case .c-ttl p::before {
  background-color: #FFA700;
}

.c-sec--case .case-list .swiper-slide p:nth-of-type(1) {
  margin: 24px 0 16px;
  color: #FFA700;
}

.c-sec--case .case-list .swiper-slide p:nth-of-type(2) {
  font-size: 1.125rem;
  font-weight: 700;
}

.c-sec--case .c-btnWrap {
  margin-top: 64px;
}

.c-sec--plan .c-ttl {
  margin-bottom: 0;
}

.c-sec--plan .c-ttl p {
  color: #FFDB12;
}

.c-sec--plan .c-ttl p::before {
  background-color: #FFDB12;
}

.c-sec--plan .c-attention {
  text-align: right;
}

.c-sec--plan .c-btnWrap {
  margin-top: 64px;
}

.c-sec--news {
  background-color: rgba(18, 136, 255, 0.05);
  padding: 130px 30px 70px;
}

.c-sec--news .c-ttl p {
  color: #1288FF;
}

.c-sec--news .c-ttl p::before {
  background-color: #1288FF;
}

.c-sec--news .c-ttl .c-btn {
  margin-top: 48px;
}

.c-sec--news .news {
  max-width: 1280px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.c-sec--news .news-list {
  max-width: 770px;
  width: 100%;
  margin-left: 30px;
}

.c-sec--news .news-list a {
  display: flex;
  padding: 34px 20px 32px;
  border-bottom: 1px solid #DEDEDE;
  gap: 1rem;
  flex-wrap: wrap;
}

.c-sec--news .news-list a > div:nth-of-type(1) {
  width: auto;
  display: flex;
  align-items: center;
  gap: 0 16px;
  padding-top: 2px;
}

.c-sec--news .news-list a > div:nth-of-type(2) {
  /*width: calc(100% - 190px);*/
      width: auto;
    max-width: 30rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-slide.is-dummy {
  opacity: 0.3;
  pointer-events: none;
}

.c-sec--news .news-list a .icon {
  display: inline-block;
  font-size: 0.875rem;
  color: #fff;
  background-color: #1288FF;
  padding: 0 15px;
  margin: 1px 0 0 16px;
  border-radius: 100px;
}

.c-sec--faq .c-ttl p {
  color: #22B408;
}

.c-sec--faq .c-ttl p::before {
  background-color: #22B408;
}

.c-sec--faq .c-btnWrap {
  margin-top: 64px;
}

.c-sec--try {
  padding: 80px 30px 100px;
}

.case-list .c-radius img{
    border-radius: 24px;
    min-height: 260px;
    height: 15rem;
    object-fit: cover;
}

@media (max-width: 1180px) {
.c-planList {
  grid-template-columns: repeat(2, 1fr); /* 2列に変更 */
}

/* 最後の1つが奇数位置なら中央に揃える */
.c-planList > *:nth-last-child(1):nth-child(odd) {
  grid-column: 1 / -1;
}

}

@media (max-width: 1070px) {
.c-sec--news .news {
    flex-wrap: wrap;
}
}


@media (min-width: 767.5px) and (max-width: 810px) {
.c-btns .c-btn--red {
        padding: 22px 83px 9px 40px;
}
}

@media (max-width: 767px) {
  .c-ttl h1, .c-ttl h2 {
    font-size: 30px;
  }

  .c-btns.c-flex.c-wrap .c-btn + .c-btn {
    margin: 0!important;
}

.c-btns.c-flex.c-wrap a.c-btn.c-btn--arrow {
    width: 90%;
    max-width: 27rem;
}

.c-sec--bnr .bnr.c-flex {
    flex-wrap: wrap;
    gap: 0rem;
    justify-content: center;
}


.c-btns.c-flex.c-wrap {
    gap: 1rem;
}


}

@media (max-width: 767px) {
  .c-sec {
    padding: 40px 15px;
  }
  .c-sec--mv {
    margin-top: 80px;
  }
  .c-sec--mv .c-btns {
    margin-left: 0;
    width: 285px;
    margin: auto;
  }
  .c-sec--mv .mv-copy {
    font-size: 20px;
  }
  .c-sec--mv .mv-msg {
    margin-bottom: 75px;
  }
  .c-sec--mv .mv-msg h1 {
    font-size: 35px;
  }
  .c-sec--bnr .bnr a + a {
    margin-top: 20px;
  }
  .c-sec--what .what {
        display: flex;
        flex-wrap: wrap-reverse;
        gap: 2rem;
        justify-content: center;
  }
  .c-sec--what .what-left {
    width: 100%;
}
  .c-sec--what .what-right {
    margin: 30px 0 0;
  }
  .c-sec--what .c-desc {
    margin-bottom: 30px;
  }
  .c-sec--reason .c-mediumTtl {
    margin-bottom: 30px;
  }
  .c-sec--reason .reason-list {
    display: block;
    font-size: 16px;
  }
  .c-sec--reason .reason-list > div {
    width: 100%;
    margin-top: 20px;
  }
  .c-sec--reason .reason-list > div:nth-of-type(1) {
    margin-top: 0;
  }
  .c-sec--reason .reason-list > div:nth-of-type(2) {
    margin-top: 20px;
  }
  .c-sec--reason .reason-list > div .inner {
    display: block;
  }
  .c-sec--reason .reason-list > div .inner > div:nth-of-type(1) {
    text-align: center;
  }
  .c-sec--reason .reason-list > div .inner > div:nth-of-type(1) img {
    max-width: 100px !important;
  }
  .c-sec--reason .reason-list > div .inner > div:nth-of-type(2) {
    margin: 20px 0 0;
  }
  .c-sec--reason .reason-list .c-underline {
    font-size: 20px;
  }
  .c-sec--reason .c-btnWrap {
    margin-top: 34px;
  }
  .c-sec--reason .c-btn {
    line-height: 1.5;
  }
  .c-sec--case .case-list .swiper-slide p:nth-of-type(1) {
    margin: 10px 0 2px;
  }
  .c-sec--case .case-list .swiper-slide p:nth-of-type(2) {
    font-size: 13px;
  }
  .c-sec--case .c-btnWrap {
    margin-top: 40px;
  }
  .c-sec--case .c-ttl {
    margin-bottom: 30px;
  }
  .c-sec--plan .c-btnWrap {
    margin-top: 40px;
  }
  .c-sec--plan .c-attention {
    text-align: left;
  }
  .c-sec--plan .c-attention p {
    line-height: 1.5;
  }
  .c-sec--plan .c-attention p + p {
    margin-top: 4px;
  }
  .c-sec--news .news {
    display: block;
  }
  .c-sec--news .news-list {
    margin: 20px 0 0;
  }
  .c-sec--news .news-list a {
    display: block;
    padding: 15px;
  }
  .c-sec--news .news-list a > div:nth-of-type(1) {
    gap: 0 8px;
  }
  .c-sec--news .news-list a > div:nth-of-type(2) {
    width: 100%;
    margin-top: 5px;
  }
  .c-sec--faq .c-btnWrap {
    margin-top: 40px;
  }
}
