@charset "utf-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{text-decoration: none}
img {
    margin: 0;
    padding: 0;
    width: 100%;
    vertical-align: bottom;
}
picture img {
    display: block;
    width: 100%;
    height: auto;
}
html {
    scroll-behavior: smooth;
}
:root {
    --container: min(1200px, calc(100% - clamp(24px, 4vw, 80px)));
    --fs-title: clamp(2.2rem, 1.6rem + 2vw, 4rem);
    --fs-price: clamp(2rem, 1.3rem + 1.6vw, 3.4rem);
    --fs-body: clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
    --space: clamp(20px, 2vw, 36px);
    --main-color: #1e2f52;
    --blue-color: #0033cc;
    --darkblue-color: #07143a;
    --orange-color: #ff6c18;
    --text-shadow: 1px 2px 3px rgba(55, 54, 54, 0.4);
    --fs-body:
        clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    --fs-lead:
        clamp(1rem, .85rem + .45vw, 1.25rem);
    --fs-card-title:
        clamp(1.25rem, 1.08rem + 0.73vw, 1.625rem);
    --fs-number:
        clamp(2rem, 1.3rem + 1vw, 3rem);
    --fs-big:
        150%;
    --space-xs:
        clamp(8px, 1vw, 12px);
    --space-sm:
        clamp(14px, 1.5vw, 22px);
    --space-md:
        clamp(20px, 2vw, 32px);
    --space-lg:
        clamp(40px, 4vw, 72px);
    --radius: 26px;
    --fs-title:
        clamp(2.2rem, 1.6rem + 2vw, 4rem);
    --fs-price:
        clamp(2rem, 1.3rem + 1.6vw, 3.4rem);
    --fs-body:
        clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
    --space:
        clamp(20px, 2vw, 36px);
}
/* PCで改行、スマホでは非表示 */
.br-pc {
    display: inline;
}
.br-sp {
    display: none
}
.br-tab {
  display: none;
}
.br-not-tab {
    display: inline;
  }
@media (max-width: 768px) {
    .br-pc {
        display: none;
    }
    .br-sp {
        display: block
    }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .br-tab {
    display: inline;
  }
.br-not-tab {
    display: none;
  }
}
.tx_orange{color: var(--orange-color)}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}
/* ===== HEADER ===== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 10px 16px;
    background: linear-gradient(180deg, rgba(17, 117, 255, .82) 0%, rgba(4, 64, 190, .72) 100%);
    border-bottom: 1px solid rgba(255,255,255,.45);
    box-shadow: 0 8px 24px rgba(0, 68, 180, .25), inset 0 1px 0 rgba(255,255,255,.55);
    backdrop-filter: blur(10px);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: min(1200px, 100%);
    margin: 0 auto;
}
.header-logo {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}
.header-logo img {
    width: min(190px, 38vw);
    height: auto;
}
.header-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(16px, 2.4vw, 32px);
    flex: 1;
}
.header-nav a {
    position: relative;
    color: #fff;
    font-size: .95rem;
    font-weight: 700;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(0, 52, 180, .7);
}
.header-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #fff, transparent);
    transform: translateX(-50%);
    transition: width .25s ease;
}
.header-nav a:hover::after {
    width: 120%;
}
.header-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, #ff9b12 0%, #ff5a20 46%, #f0188b 100%);
    box-shadow: 0 4px 0 rgba(150, 55, 30, .28), 0 0 16px rgba(255,255,255,.58), inset 0 0 12px rgba(255,255,255,.36);
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: #FFFFFF 2px solid}
.header-cta::before {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;
}
@keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
@-webkit-keyframes reflect {
  0% { transform: scale(0) rotate(45deg); opacity: 0; }
  80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { transform: scale(4) rotate(45deg); opacity: 1; }
  100% { transform: scale(50) rotate(45deg); opacity: 0; }
}
.header-cta:hover {
    filter: brightness(1.06);
}
.header-cta::after {
    content: "";
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 5px;
    background-image: url(../img/circle_right.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}
@media (max-width: 768px) {
.site-header {
    padding: 8px 12px;
}
.header-inner {
    gap: 12px;
}
.header-nav {
    display: none;
}
.header-logo img {
    width: min(160px, 48vw);
}
.header-cta {
    min-height: 40px;
    padding: 0 16px;
    font-size: .9rem;
}
}
.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: linear-gradient( 90deg, transparent 0%, rgba(255,255,255,.9) 20%, rgba(70,190,255,.95) 50%, rgba(255,255,255,.9) 80%, transparent 100% );
    box-shadow: 0 0 12px rgba(255,255,255,.9);
}
/* ===== MAIN ===== */
main {
    width: 100%;
}
.container {
    width: var(--container);
    margin: auto;
}
.hero {
    width: 100vw;
    background-color: hsla(201, 100%, 86%, 1);
    background-image:
        radial-gradient(at 99% 99%, hsla(276, 88%, 83%, 1) 0px, transparent 50%), radial-gradient(at 43% 77%, hsla(199, 0%, 100%, 1) 0px, transparent 50%), radial-gradient(at 35% 9%, hsla(200, 0%, 100%, 1) 0px, transparent 50%), radial-gradient(at 99% 2%, hsla(200, 100%, 92%, 1) 0px, transparent 50%), radial-gradient(at 83% 40%, hsla(215, 100%, 70%, 1) 0px, transparent 50%), radial-gradient(at 7% 0%, hsla(234, 0%, 98%, 1) 0px, transparent 50%);
}
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
}
.hero-container img {}
/* ===== STATS SECTION ===== */
.stats {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    /*background:radial-gradient(circle at 100% 0%,rgba(187, 135, 252, 1) 10%,rgba(4, 54, 187, 1) 100% );*/
    background: radial-gradient(circle at 95% 0%, rgba(187, 135, 253, 1), rgba(3, 53, 186, 1) 65%), radial-gradient(circle at 98% 0%, rgba(187, 135, 253, 1), rgba(3, 53, 186, 1) 65%), radial-gradient(circle at 98% 0%, rgba(187, 135, 253, 1), rgba(3, 53, 186, 1) 65%);
    padding: 20px 40px 15px;
    position: relative;
    z-index: 3;
}

.stats-container {
    max-width: 1310px;
    margin: 0 auto;
    width: 100%;
    text-align: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px;
    margin-bottom: 20px;
}
.stat-card {
    /*  background: rgba(255,255,255,0.15);*/
    border-radius: 10px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
}
.stat-icon {
    width: 90px;
    height: 90px;
    min-width: 90px;
}
.stat-icon img {
    width: 100%;
    height: auto
}
.stat-content{text-align: left;}

.stat-content h3 {
    font-size: clamp(0.75rem, 0.295rem + 1.94vw, 1.75rem);
    color: white;
    font-weight: 500;
}
.stat-number {
    font-size:clamp(1.25rem, 0.682rem + 2.42vw, 2.5rem);
    font-weight: 700;
    color: #f7c344;
    display: inline;line-height: 24px;
}
.stat-unit {
    font-size: clamp(0.625rem, 0.227rem + 1.7vw, 1.5rem);
    color: white;
    font-weight: 600;
    margin-left: 8px;
}
.stat-white {
    font-size: clamp(0.625rem, 0.227rem + 1.7vw, 1.5rem);
    color: white;
    font-weight: 600;
}
    .stat-card {
        /*        flex-direction: column;
        text-align: center;*/
    }
    .stat-icon {
        width: 70px;
        height: 70px;min-width: 70px;
    }
    .stat-icon img {
        width: 70px;
        height: 70px;
    }

    .case-studies {
        padding: 60px 16px;
    }
    .section-title {
        font-size: 28px;
    }
@media (max-width: 1024px) {
 .stats {padding: 20px 20px 15px;} 
    .stat-unit{margin-left: 3px}
}
@media (max-width: 460px) {
    .stat-card{flex-direction: column }
    .stats {padding: 20px 10px 15px;} 
    .stat-content{text-align: center}
    
}
.industry-support {
    text-align: center;
    color: white;
    font-size: 18px;
    font-weight: 700;
    padding: 0;
    position: relative;
    display: inline-block;
}
.industry-support::before, .industry-support::after {
    content: "";
    width: 22px; /* 画像サイズ調整 */
    height: 24px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.industry-support::before {
    background: url("../img/stats_left.svg")no-repeat center/contain;
    left: -25px;
}
.industry-support::after {
    background: url("../img/stats_right.svg")no-repeat center/contain;
    right: -25px;
}
/* ===== CASE STUDIES SECTION ===== */
.case-studies {
    /*background: url("../img/case_study_bg.webp")no-repeat;*/
    background-color:hsla(195,0%,100%,1);
background-image:
radial-gradient(at 59% 49%, hsla(215,100%,74%,1) 0px, transparent 50%),
radial-gradient(at 51% 12%, hsla(215,100%,74%,1) 0px, transparent 50%),
radial-gradient(at 98% 0%, hsla(189,100%,56%,1) 0px, transparent 50%),
radial-gradient(at 53% 100%, hsla(229,100%,76%,1) 0px, transparent 50%),
radial-gradient(at 0% 100%, hsla(225,92%,83%,1) 0px, transparent 50%),
radial-gradient(at 80% 100%, hsla(201,100%,70%,1) 0px, transparent 50%),
radial-gradient(at 0% 0%, hsla(204,99%,63%,1) 0px, transparent 50%);
    background-size: cover;
    padding: 40px;
}
@media (max-width: 768px) {
    .case-studies {        padding: 60px 16px;}
}
.case-studies-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}
.section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    padding: 0 55px;
    display: inline-block;
    text-shadow: var(--text-shadow);
}
.section-title::before, .section-title::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 2px;
    background-color: white;
}
.section-title::before {
    right: 0;
}
.section-title::after {
    left: 0;
}
/* 外側ラッパー：左右フェード */
.case-section {
    position: relative;
    overflow: hidden; display: flex;
    justify-content: center;
}
.case-section::before,
.case-section::after {
    content: "";
    position: absolute;
    inset-y: 0;
    z-index: 10;
    width: 60px;
    pointer-events: none;
}
.case-section::before {
    left: 0;
    background: linear-gradient(to right, #fff, transparent);
}
.case-section::after {
    right: 0;
    background: linear-gradient(to left, #fff, transparent);
}

/* スクロールコンテナ */
.case-grid { max-width: 1400px;
    width: 100%;
    display: grid;
    grid-template-rows: repeat(2, auto);
    grid-auto-flow: column;
    grid-auto-columns: 220px;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;        /* スクロールバー非表示 */
         
    margin-bottom: 40px;
}
.case-grid::-webkit-scrollbar {
    display: none;
}
@media (max-width: 1024px) {
    .case-grid{padding: 4px 0px;  }  
    
}
/* カードは変更なし */
/*.case-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}*/

 .case-marquee-wrap{ width:100%; max-width:1400px; margin:0 auto 40px; }

  .case-marquee-row{ width:100%; margin-bottom:10px;}
  .case-marquee-row:last-child{ margin-bottom:0; }

  .case-swiper{ width:100%; overflow:hidden; cursor:grab; }
  .case-swiper.swiper-grabbing{ cursor:grabbing; }

  .case-swiper .swiper-slide{
    width:220px;
    flex-shrink:0;
  }
  .case-swiper .case-card img{
    -webkit-user-drag:none;
    pointer-events:none; /* 画像のドラッグ・右クリック保存メニュー誤動作を防止 */
  }

  @media (max-width: 600px){
      .case-marquee-wrap{margin:0 auto 0px; }
    .case-swiper .swiper-slide{
        /* 100vwから左右の余白(32px)とカード間の隙間2つ分(spaceBetween 10px×2=20px)を引いて2.5枚で割る */
        width: calc((100vw - 32px - 20px) / 2.5);
    }
  }
.case-card {
    background: #f8f9fe;
    border: 1px solid #DDD;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}
.case-card:hover {
    border-color: #3366FF;
    box-shadow: 0 10px 30px rgba(51, 102, 255, 0.15);
    transform: translateY(-4px);
}
.case-image {
    padding: 0 20px;
    height: auto;
    background: #f8f9fe;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* */
.case-image img {
    width: 100%;
}
.case-title {
    padding: .75em 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    flex-grow: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
 @media (max-width: 600px){
     .case-title {font-size: 14px;}
}
.case-plan {
    padding: .5em;
    margin: 12px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    border-radius: 100vh;
    text-shadow: 1px 2px 3px rgba(55, 54, 54, 0.4);
}
@media (max-width: 600px){
    .case-plan {font-size: 10px;}
}
.plan-ai {
    background: #1756e7;
    box-shadow: 0 4px 12px rgba(23, 86, 231, 0.3);
}
.plan-start {
    background: #f79400;
    box-shadow: 0 4px 12px rgba(2247, 148, 0, 0.3);
}
.plan-customers {
    background: #ff5a00;
    box-shadow: 0 4px 12px rgba(255, 90, 0, 0.3);
}

.plan-business {
    background: #ef3f8f;
    box-shadow: 0 4px 12px rgba(239, 63, 143, 0.3);
}
/* ===== INDUSTRIES SECTION ===== */
.industries {
    /*background: url("../img/industry_bg.webp")no-repeat;*/
    background-color:hsla(195,0%,100%,1);
background-image:
radial-gradient(at 53% 51%, hsla(210,96%,82%,1) 0px, transparent 50%),
radial-gradient(at 50% 11%, hsla(260,99%,63%,1) 0px, transparent 50%),
radial-gradient(at 98% 0%, hsla(226,99%,73%,1) 0px, transparent 50%),
radial-gradient(at 56% 99%, hsla(240,83%,54%,1) 0px, transparent 50%),
radial-gradient(at 0% 100%, hsla(240,99%,57%,1) 0px, transparent 50%),
radial-gradient(at 99% 99%, hsla(254,100%,57%,1) 0px, transparent 50%),
radial-gradient(at 0% 0%, hsla(191,99%,63%,1) 0px, transparent 50%);
    background-size: cover;
    padding: 40px;
}
.industries-container {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}
.industries-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    position: relative;
    padding: 0 55px;
    display: inline-block;
    text-shadow: var(--text-shadow);
}
.industries-title::before, .industries-title::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 2px;
    background-color: white;
}
.industries-title::before {
    left: 0;
}
.industries-title::after {
    right: 0;
}
.industry-badges {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 5px;
 
}
p.right{display: block; text-align: right;margin-bottom: 30px;color:#fff;font-weight: 700;}
.industry-badge {
    background: white;
    border: 1px solid #DDD;
    border-radius: 8px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 600;
    color: #333;
    transition: all 0.2s;
    text-decoration: none;
    text-align: center;
    height: 4.5em;
}
.industry-badge:hover {
    border-color: #3366FF;
    background: #F8FAFF;
}
.industry-badge::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 6px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.industry-badge:nth-child(1)::before {
    background-image: url('../img/ico_it.svg');
}
.industry-badge:nth-child(2)::before {
    background-image: url('../img/ico_ads.svg');
}
.industry-badge:nth-child(3)::before {
    background-image: url('../img/ico_sales.svg');
}
.industry-badge:nth-child(4)::before {
    background-image: url('../img/ico_rec.svg');
}
.industry-badge:nth-child(5)::before {
    background-image: url('../img/ico_admin.svg');
}
.industry-badge:nth-child(6)::before {
    background-image: url('../img/ico_arch.svg');
}
.industry-badge:nth-child(7)::before {
    background-image: url('../img/ico_painter.svg');
}
.industry-badge:nth-child(8)::before {
    background-image: url('../img/ico_demo.svg');
}
.industry-badge:nth-child(9)::before {
    background-image: url('../img/ico_estate.svg');
}
.industry-badge:nth-child(10)::before {
    background-image: url('../img/ico_stone.svg');
}
.industry-badge:nth-child(11)::before {
    background-image: url('../img/ico_piping.svg');
}
.industry-badge:nth-child(12)::before {
    background-image: url('../img/ico_interior.svg');
}
.industry-badge:nth-child(13)::before {
    background-image: url('../img/ico_maker.svg');
}
.industry-badge:nth-child(14)::before {
    background-image: url('../img/ico_retail.svg');
}
.industry-badge:nth-child(15)::before {
    background-image: url('../img/ico_cosme.svg');
}
.industry-badge:nth-child(16)::before {
    background-image: url('../img/ico_food.svg');
}
.industry-badge:nth-child(17)::before {
    background-image: url('../img/ico_cleaning.svg');
}
.industry-badge:nth-child(18)::before {
    background-image: url('../img/ico_garbage.svg');
}
.industry-badge:nth-child(19)::before {
    background-image: url('../img/ico_js.svg');
}
.industry-badge:nth-child(20)::before {
    background-image: url('../img/ico_care.svg');
}
.industry-badge:nth-child(21)::before {
    background-image: url('../img/ico_ent.svg');
}
.industry-badge:nth-child(22)::before {
    background-image: url('../img/ico_event.svg');
}
.industry-badge:nth-child(23)::before {
    background-image: url('../img/ico_beauty.svg');
}
.industry-badge:nth-child(24)::before {
    background-image: url('../img/ico_golf.svg');
}
.industry-badge:nth-child(25)::before {
    background-image: url('../img/ico_medical.svg');
}
.industry-badge:nth-child(26)::before {
    background-image: url('../img/ico_breeder.svg');
}
.industry-badge:nth-child(27)::before {
    background-image: url('../img/ico_apparel.svg');
}
/* ===== CTA SECTION ===== */
/*.cta-section {
    padding: 40px;
    text-align: center;
}*/
.cta-button:hover {
    transform: translateY(-3px);
     box-shadow: rgba(255, 255, 255, 0.5) -2px -2px 10px 0px inset, rgba(255, 255, 255, 0.5) 2px 2px 10px 0px inset, rgba(255, 255, 255, 0.3) -5px -5px 10px 0px inset, rgba(255, 255, 255, 0.3) 5px 5px 10px 0px inset, 0 14px 36px rgba(255, 102, 51, 0.45);

}
.cta-button:active {
    transform: translateY(-1px);
}
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #ff6600 0%, #ff66cc 100%);
    color: white;
    padding: .5em 2em;
    border: 3px solid #fff;
    border-radius: 50px;
    font-size: clamp(1.125rem, 0.784rem + 1.45vw, 1.875rem);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: rgba(255, 255, 255, 0.5) -2px -2px 10px 0px inset, rgba(255, 255, 255, 0.5) 2px 2px 10px 0px inset, rgba(255, 255, 255, 0.3) -5px -5px 10px 0px inset, rgba(255, 255, 255, 0.3) 5px 5px 10px 0px inset, rgba(92, 184, 255, 0.35) 0px 8px 15px,0 10px 28px rgba(255, 102, 51, 0.35);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}
.cta-button::after {
    content: '';
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background-image: url('../img/circle_right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
} 

.cta-button::before {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;
}

/* ===== RESPONSIVE ===== */

    .header-title {
        font-size: 16px;
    }

    .hero-text h1 {
        font-size: 28px;
    }
    .price-box {
        padding: 20px;
    }
    .price-display {
        font-size: 32px;
    }

@media (max-width: 1024px) {
    header {
        padding: 16px 24px;
    }
    .hero {
        /*        padding: 60px 24px;*/
        min-height: auto;
    }
    .hero-container {
        /*        grid-template-columns: 1fr;
        gap: 40px;*/
    }
    .hero-text h1 {
        font-size: 36px;
    }
    .hero-visual {
        height: 400px;
    }
    .device-laptop, .device-mobile {
        display: none;
    }
     .stat-icon img {
        width: 50px;
        height: 50px;
    }
    .stat-icon {    width: 50px;
    height: 50px;
    min-width: 50px;}
    .stat-card{padding: 5px;    gap: 5px;}

}


@media (max-width:768px) {
 
    .industries {
        padding: 60px 16px;
    }
    .industry-badges {
        grid-template-columns: repeat(3, 1fr);
        padding: 10px;
    }
   
    
    .industry-support {
        font-size: 14px;        margin: 0 25px;
    }
}
@media (max-width:480px) {
     .industry-badge::before {content: none}
}
.reason {
    padding: 40px 60px;
    background-image: url("../img/reason_bg.webp");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
/* heading */
.reason .section-head {
    text-align: center;
}
.reason .sub-en {
    font-size:
        clamp(1.2rem, .9rem + .5vw, 2rem);
    font-weight: 700;
    margin: 0;
    position: relative;
    display: inline-block;
    padding: 0 1em;
    color: #000b55;
}
.reason .sub-en::before, .reason .sub-en::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 30px;
    height: 2px;
}
.reason .sub-en::before {
    left: 0;
    transform:
        translate(-100%, -50%) rotate(60deg);
    background: linear-gradient(90deg, rgba(2, 11, 72, 1), rgba(3, 73, 224, 1));
}
.reason .sub-en::after {
    right: 0;
    transform:
        translate(100%, -50%) rotate(-60deg);
    background: linear-gradient(90deg, rgba(3, 73, 224, 1), rgba(2, 11, 72, 1));
}
.reason .title {
    margin: 0 0 10px 0;
    font-weight: 700;
    line-height: .9;
    font-size: clamp(2.5rem, 2.216rem + 1.21vw, 3.125rem);
    color: #000b55;
}
.reason .title span {
    font-size: var(--fs-big);
    display: inline-block;
    margin-right: .1em;
    color: #0041e2;
}
.reason .lead {
    margin: 0;
    font-size: var(--fs-lead);
    font-weight: 700;
}
/* cards */
.reason .reason-grid {
    display: grid;
    grid-template-columns:
        repeat(3, 1fr);
    gap:
        clamp(18px, 2vw, 28px);
    margin-top:
        clamp(1.875rem, 1.307rem + 2.42vw, 3.125rem);
}
.reason .card {
    background: #fff;
    box-shadow: 0px 0px 15px -5px #777777;
    border-radius: 26px;
    padding:
        clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* min-height:
  clamp(22.5rem, 21.364rem + 4.85vw, 25rem)*/
}
.reason .card-top {
    display: flex;
    align-items: flex-start;
    gap: 10px
}
.reason .icon {
    width: 100px;
    flex-shrink: 0;
}
.reason .icon img {
    aspect-ratio: 1;
    object-fit: cover;
    background: #333;
}
.reason .card-heading {
    padding-top: 4px;
}
.reason .number {
    font-size: var(--fs-number);
    font-weight: 700;
    line-height: 1;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 16px;
}
.reason .card--1 .number {
    color: #72b4ff;
}
.reason .card--2 .number {
    color: #6ad886;
}
.reason .card--3 .number {
    color: #fd9c0f;
}
.reason .number::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3rem;
    height: 2px;
}
.reason .card--1 .number::after {
    background: #72b4ff;
}
.reason .card--2 .number::after {
    background: #6ad886;
}
.reason .card--3 .number::after {
    background: #fd9c0f;
}
.reason .card-heading h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.3;
}
.reason .card--1 .card-heading h3 {
    color: #0040d3;
}
.reason .card--2 .card-heading h3 {
    color: #00894a;
}
.reason .card--3 .card-heading h3 {
    color: #fb6404;
}
.reason .card-body {
    margin-top:
        clamp(0.938rem, 0.653rem + 1.21vw, 1.563rem)
}
.reason .card-body p {
    margin: 0;
    padding: 0 0.5em;
    font-size: clamp(0.875rem, 0.761rem + 0.48vw, 1.125rem);
    font-weight: 400;
}
.reason .pill {
    margin-top: clamp(0.938rem, 0.653rem + 1.21vw, 1.563rem);
    border-radius: 26px;
    padding:
        clamp(12px, 1.5vw, 16px) clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
    display: flex;
    align-items: center;
    gap: clamp(0.313rem, 0.17rem + 0.61vw, 0.625rem);
    font-size: 1rem;
    font-weight: 700;
}
.reason .card--1 .pill {
    background: #e7effd;
    color: #0040d3;
}
.reason .card--2 .pill {
    background: #f0faf2;
    color: #00894a;
}
.reason .card--3 .pill {
    background: #fdf4ec;
    color: #fb6404;
}
.reason .pill-icon {
    width: clamp(18px, 1.2vw, 22px);
    height: clamp(18px, 1.2vw, 22px);
    flex-shrink: 0;
    object-fit: contain;
}
@media screen and (min-width: 769px) and (max-width: 992px) {
    .reason {
        padding: 40px 0
    }
    .reason .reason-grid {
        grid-template-columns: 1fr;
    }
    .reason .card {
        min-height: auto;
    }
    .reason .card-top {
        align-items: center;
    }
    .reason .sub-en::before, .reason .sub-en::after {
        width: 30px;
    }
}
/* SP */
@media (max-width:768px) {
    .reason {
        padding: 40px 0
    }
    .reason .reason-grid {
        grid-template-columns: 1fr;
    }
    .reason .card {
        min-height: auto;
    }
    .reason .card-top {
        align-items: center;
    }
    .reason .sub-en::before, .reason .sub-en::after {
        width: 30px;
    }
}
/*PLAN*/
.plan {
    padding: 40px 0;
        background-image: url(../img/plan_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}
/* heading */
.plan-head {
    text-align: center;
}
.plan-en {
    margin: 0;
    font-size: clamp(.75rem, .7rem + .2vw, .95rem);
    letter-spacing: .15em;
    color: #4d63c7;
    font-weight: 700;
}
.plan-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin: 10px 0;
    font-size: clamp(2.5rem, 2.216rem + 1.21vw, 3.125rem);
    font-weight: 700;
    line-height: 1;
    color: #14285f;
}
.plan-title img {
    width: 48px;
}
.plan-lead {
    font-weight: 700;
}
/* grid */
.plan-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns:
        repeat(4, 1fr);
    gap: 24px;
}

/* タブレット・スマホ：横スクロールに切り替え */
@media (max-width: 1024px) {
    .plan-grid {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 12px;
        -webkit-overflow-scrolling: touch;
    }
    .plan-grid .plan-card {
        flex: 0 0 260px; /* カード幅を固定 */
    }
}

/* ScrollHint用：スクロール可能な要素に自動付与されるクラス */
.scroll-hint-icon-wrap {
    position: absolute;
    z-index: 1;
}
.plan-card {
    background: #fff;
    border-radius: 26px;
    /*  overflow:hidden;*/
    position: relative;
    border: 2px solid;
    display: flex;
    flex-direction: column;
}
.card-header {
    color: #fff;
    text-align: center;
    padding: 16px;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 24px 24px 0 0;
}
.card-inner {
    padding: 1em;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.page-pill {
    border: 1.5px solid currentColor;
    border-radius: 999px;
    text-align: center;
    padding: 10px;
    font-weight: 700;
    line-height: 1;
}
.price {
    margin-top: 22px;
    text-align: center;
    color: inherit;
}
.price-num {
    font-size: var(--fs-price);
    font-weight: 700;
}
.yen {
    font-weight: 700;
}
.note {
    font-size: 12px;
    text-align: center;
    color: #1b1b1b;
}
.desc {
    text-align: center;
    margin: 26px 0;
    color: #1b1b1b;
    font-weight: 600;
}
.plan-card:first-of-type .desc {
    margin: 12px 0 26px;
}
.btn {
    background: #11c7a3;
    color: #fff;
    text-decoration: none;
    padding: 10px;
    border-radius: 999px;
    text-align: center;
    font-weight: 700;
    line-height: 1;
    text-shadow: 1px 1px 2px rgba(0, 153, 102, 0.32);
    position: relative;
}
.btn span {
    position: absolute;
    top: calc(50% - .5em);
    right: 2rem;
}
.feature {
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}
.feature li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 0.5em;
    font-size: 14px;
    color: #1b1b1b;
}
.feature li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.25em;
    display: block;
    width: 18px;
    height: 18px;
    background: #1756e7;
    mask:
        url("../../img/circle-check.svg") no-repeat center / contain;
    -webkit-mask:
        url("../img/circle-check.svg") no-repeat center / contain;
}
.plan-card--blue li::before {
    background: #1756e7;
}
.plan-card:first-of-type .feature li:nth-child(3)::before, .plan-card:first-of-type .feature li:nth-child(4)::before {
    background: #999999
}
.plan-card--orange li::before {
    background: #f79400;
}
.plan-card--red li::before {
    background: #ff5a00;
}
.plan-card--pink li::before {
    background: #ef3f8f;
}
/* color */
.plan-card--blue {
    color: #1756e7;
    border-color: #5598fc;
}
.plan-card--blue .card-header {
    background: linear-gradient(#5598fc 0%, #0c62f7 100%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.32);
}
.plan-card--orange {
    color: #f79400;
    border-color: #fca51c;
}
.plan-card--orange .card-header {
    background: linear-gradient(#fca51c 0%, #fc8504 100%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.32);
}
.plan-card--red {
    color: #ff5a00;
    border-color: #fd8507;
}
.plan-card--red .card-header {
    background: linear-gradient(#fd8507 0%, #fc5f07 100%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.32);
}
.plan-card--pink {
    color: #ef3f8f;
    border-color: #fb5f9e;
}
.plan-card--pink .card-header {
    background: linear-gradient(#fb5f9e 0%, #f72c82 100%);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.32);
}
/* ribbon */
.recommend {
    position: absolute;
    text-align: center;
    top: -5px;
    right: -2px;
    background: linear-gradient(#fea815 0%, #fe2e05 100%);
    color: #fff;
    padding: 5px 10px;
    font-size: .75rem;
    font-weight: 700;
    z-index: 2;
    border-radius: 3px 20px 0 0;
    line-height: 1.35;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.32);
    width: 68px;
}
.recommend span {
    font-size: 150%
}
.recommend:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-left: 34px solid #fe2e05;
    border-right: 34px solid #fe2e05;
    border-bottom: 10px solid transparent;
}
/*TAB*/
@media (min-width:768px) and (max-width:1200px) {
 /* .plan-grid {grid-template-columns:
      repeat(2, 1fr);}*/
    
}
/* SP */
@media(max-width:768px) {
/*    .plan-grid {
        grid-template-columns: 1fr;
    }*/
}
.comparison {
    padding: 40px 0;
    /*background: linear-gradient(135deg, #f7f8ff, #ffffff);*/
        background-image: url(../img/comparison_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
}

.comparison-head {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: clamp(20px, 3vw, 60px);
    margin-bottom: 40px;
}
.comparison-hero {
    width: clamp(140px, 18vw, 220px);
    flex-shrink: 0;
}
.comparison-title-wrap {
    flex: 1;
    text-align: center;
}
.comparison-logo {
    width: clamp(50px, 5vw, 70px);
    margin: 0 auto 10px;
}
.comparison-sub {
    font-size: clamp(.75rem, .7rem + .2vw, .95rem);
    letter-spacing: .15em;
    color: #4d63c7;
    font-weight: 700;
    margin-bottom: 12px;
}
.comparison-title-wrap h2 {
    font-size: clamp(2rem, 1.5rem + 1.5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.3;
    color: #14285f;
    margin-bottom: 12px;
}
.comparison-title-wrap h2 + p {
    font-size: clamp(.9rem, .85rem + .2vw, 1.1rem);
    font-weight: 700;
    color: #444;
}
.comparison-table {
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1fr;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
}
.comparison-table .table_icon {
    width: 1.5em;
    height: auto;
    margin-left: 0.5em;
}
.cell {
    padding: 0.5em;
    border: 1px solid #e6e6e6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: var(--fs-body);
    line-height: 1.6;
}
.label {
    background: #0d47d6;
    color: #fff;
    justify-content: flex-start;
    gap: 14px;
    font-weight: 700;
    padding-left: 1em;
}
.label img {
    width: 28px;
}
.head {
    padding: 0.75em;
    background: #666;
    color: #fff;
    font-weight: 700;
}
.head-primary {
    background: linear-gradient(180deg, #4d7fff, #1657ef);
}
.primary {
    color: #1657ef;
    font-weight: 700;
    font-size: clamp(1rem, .95rem + .3vw, 1.25rem);
}
@media (max-width:1200px) {
    .comparison-hero {
        display: none;
    }
    .comparison-head {
        justify-content: center;
    }
    .comparison-title-wrap {
        flex: none;
        width: 100%;
    }
    .comparison-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .comparison-table {
        min-width: 920px;
    }
    .comparison-head {
        gap: 30px;
    }
}
@media (max-width:768px) {
    .comparison-head {
        flex-direction: column;
        gap: 20px;
    }
  
   
}
@media (max-width:768px) {
    .comparison-head {
        flex-direction: column;
        gap: 20px;
    }
    .comparison-hero {
        width: 160px;
    }

    /* グリッドの列幅を再定義（1列目=ラベル列を狭める） */
    .comparison-table {
        grid-template-columns: 120px 1fr 1fr 1fr; /* 220px → 140px */
        min-width: 680px;
    }
    .comparison-table-wrap {
        font-size: 13px;
    }
    .comparison-table .table_icon {
        width: 1.2em;
    }
    .head-primary,
    .head {
        padding: 0.5em;
    }
    .cell {
        padding: 0.4em;
    }

    .label {
        align-items: center;
        gap: 8px;
        padding-left: 0.5em;
        white-space: normal;
        text-align: left;
    }
    .label img {
        width: 22px;
        flex-shrink: 0;
        align-self: center;
    }
}
.flow {
    padding: 40px 0;
    text-align: center;
    background-color: hsla(187, 78%, 52%, 1);
    background-image:
        radial-gradient(at 70% 6%, hsla(260, 91%, 78%, 1) 0px, transparent 50%), radial-gradient(at 8% 1%, hsla(189, 100%, 56%, 1) 0px, transparent 50%), radial-gradient(at 80% 99%, hsla(242, 100%, 70%, 1) 0px, transparent 50%);
}
.flow-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: rgb(255, 255, 255);
    margin-bottom: 40px;
    position: relative;
    padding: 0px 55px;
    display: inline-block;
    text-shadow: var(--text-shadow);
}
.flow-title::before, .flow-title::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 2px;
    background-color: white;
}
.flow-title::before {
    left: 0;
}
.flow-title::after {
    right: 0;
}
.flow-title span {
    width: clamp(60px, 8vw, 120px);
    height: 3px;
    background: #111;
}
.flow-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: clamp(8px, 1vw, 20px);
    /* カード高さを揃える */
    align-items: stretch;
}
.flow-card {
    background: #fff;
    box-shadow: 0 0 15px -5px #777;
    border-radius: 26px;
    padding: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
    /* 中身のレイアウト */
    display: flex;
    flex-direction: column;
}
/* STEP見出し */
.step-head {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1vw, 16px);
}
.step-num {
    width: 30px;
    height: 30px;
    min-width: 30px;
    font-size: .9rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.32);
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: radial-gradient(at 6% 7%, rgba(29, 149, 253, 1), rgba(107, 81, 253, 1));
    color: #fff;
    border-radius: 50%;
    font-weight: 700;
}
.step-head h3 {
    margin: 0;
    font-size:
        clamp(1rem, 0.915rem + 0.36vw, 1.188rem);
    font-weight: 700;
    color: #003399;
}
/* コンテンツ部分を伸ばす */
.flow-content {
    display: flex;
    align-items: center;
    gap: clamp(10px, .8vw, 14px);
    margin-top:
        clamp(16px, 1.5vw, 24px);
    flex: 1;
}
/* アイコン */
.flow-icon {
    width: 50px;
    flex-shrink: 0;
}
.flow-icon img {
    width: 100%;
    display: block;
}
.flow-content p {
    margin: 0;
    font-size:
        clamp(0.813rem, 0.727rem + 0.36vw, 1rem);
    line-height: 1.6;
    font-weight: 600;
}
.flow-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
}
.flow-arrow img {
    width: 16px;
    height: auto;
    display: block;
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}
@media screen and (min-width: 769px) and (max-width: 992px) {
  .flow-grid {
        grid-template-columns: 1fr;
    }
    .flow-arrow img {
        transform: rotate(90deg);
    }
    .flow-card {
        min-height: auto;
    }
    .flow-content p {
        text-align: left
    }
}
/* SP */
@media (max-width:768px) {
    .flow-grid {
        grid-template-columns: 1fr;
    }
    .flow-arrow img {
        transform: rotate(90deg);
    }
    .flow-card {
        min-height: auto;
    }
    .flow-content p {
        text-align: left
    }
}
.tx-blue {
    color: var(--blue-color);
}
.cta {
    padding: clamp(60px, 8vw, 120px) 0;
    background: #fff;
    text-align: center
}
.cta .cta-head {
    background: linear-gradient(135deg, #0059ea, #0050d6, #0069ff);
    padding: clamp(1.125rem, -0.636rem + 7.52vw, 5rem);
    text-align: center;
}
.cta .cta-badge {
    width: min(100%, 1100px);
    margin: 0 auto 40px;
}
.cta .cta-badge img {
    width: 100%;
    display: block;
}
.cta .cta-copy {
    color: #fff;
    font-weight: 700;
    line-height: 1.8;
    font-size: clamp(1.188rem, 0.477rem + 3.03vw, 2.75rem);
}
.cta .cta-copy .line1 {
    position: relative;
}
.cta .cta-copy .line1:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 10px;
    background: #ffe600;
    border-radius: 999px;
}
.cta .yellow {
    color: #ffe600;
}
.cta .dots {
    background-image: radial-gradient(circle at center, #fe6e01 35%, transparent 35%);
    background-position: top left;
    background-repeat: repeat-x;
    background-size: 1em 0.5em;
    padding-top: 0.5em;
}
.cta .cta-points {
    background: #fff;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid #ddd;
    padding: clamp(30px, 3vw, 50px);
    margin-bottom: 30px;
}
.cta .cta-point {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 0px;
}
.cta .cta-point:not(:last-child) {
    border-right: 1px solid #ddd;
}
.cta .cta-point img {
    width: clamp(1.875rem, 1.25rem + 2.67vw, 3.25rem);
}
.cta .cta-point span {
    display: block;
    color: #333;
    font-weight: 700;
    margin-bottom: 4px;
}
.cta .cta-point strong {
    color: #145ff7;
    font-weight: 700;
    font-size: clamp(1.3rem, 1rem + .7vw, 2rem);
}
.cta .cta-btn:hover {
    transform: translateY(-4px);
        box-shadow: rgba(255, 255, 255, 0.5) -2px -2px 10px 0px inset, rgba(255, 255, 255, 0.5) 2px 2px 10px 0px inset, rgba(255, 255, 255, 0.3) -5px -5px 10px 0px inset, rgba(255, 255, 255, 0.3) 5px 5px 10px 0px inset, 0 14px 36px rgba(255, 102, 51, 0.45);

}
.cta .cta-btn:active {
    transform: translateY(-1px);
}
.cta .cta-btn {
position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: min(720px, 100%);
    min-height: 94px;
    margin: 6px auto 0;
    border: 2px solid #fff;
    border-radius: 999px;
    background: linear-gradient(90deg, #fd9d28 0%, #fe6615 30%, #fd4858 53%, #fa1993 100%);
    color: #fff;
    box-shadow: inset -2px -2px 10px 0px rgba(255, 255, 255, 0.5), inset 2px 2px 10px 0px rgba(255, 255, 255, 0.5), inset -5px -5px 10px 0px rgba(255, 255, 255, 0.3), inset 5px 5px 10px 0px rgba(255, 255, 255, 0.3), 0 8px 15px rgba(92, 184, 255, 0.35);
    font-size: clamp(1.55rem, 1.1rem + 2vw, 2.7rem);
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;    transition: 0.3s;

}
.cta .cta-btn::after {
    content: '';
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background-image: url('../img/circle_right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    right:30px;
}
.cta .cta-btn::before{content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;}
.fukidashi{
    position: absolute;
    left: 30px;
    width: 74px;
    height: 74px;
    background: url("../img/button_left.svg") center / contain no-repeat;
}

.cta .cta-btn img {
    width: clamp(26px, 2vw, 40px);
}
@media (max-width:768px) {
    .cta .cta-copy .line1:after {
        height: 6px;
    }
    .cta .cta-points {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px;
    }
    .cta .cta-point {
        justify-content: flex-start;
        border-right: none !important;
        border-bottom: 1px solid #ddd;
        padding-bottom: 10px;
    }
    .cta .cta-point:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .cta .cta-point span {
        display: inline-block;
    }
    .cta .cta-btn {
        min-height: 80px;
        gap: 5px;font-size: 1.25rem
    }
    .fukidashi{left: 20px;width: 60px;height: 60px}
    .cta .cta-badge {
        flex-direction: column;
        gap: 0;
        margin-bottom: 30px;
    }
}
/* ==========================
FAQ
========================== */
.faq {
    padding: 40px 0;
    text-align: center;
    background-color: hsla(200, 100%, 87%, 1);
    background-image:
        radial-gradient(at 99% 99%, hsla(264, 100%, 77%, 1) 0px, transparent 50%), radial-gradient(at 98% 1%, hsla(260, 100%, 81%, 1) 0px, transparent 50%), radial-gradient(at 8% 1%, hsla(189, 100%, 79%, 1) 0px, transparent 50%), radial-gradient(at 1% 99%, hsla(239, 100%, 78%, 1) 0px, transparent 50%);
}
.faq-title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--darkblue-color);
    margin-bottom: 40px;
    position: relative;
    padding: 0px 55px;
    display: inline-block;
    text-shadow: var(--text-shadow);
}
.faq-title::before, .faq-title::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 45px;
    height: 2px;
    background-color: var(--darkblue-color);
}
.faq-title::before {
    left: 0;
}
.faq-title::after {
    right: 0;
}
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 28px;
}
.faq-item {
    border: none;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #fff;
    border: none;
    box-shadow: 0 0 15px -5px #777;
    border-radius: 18px;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-question {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}
.faq-q {
    width: 30px;
    height: 30px;
    min-width: 30px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #003399;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    line-height: 1;
}
.faq-question p {
    margin: 0;
    font-size:
        clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
    font-weight: 700;
    text-align: left;
    min-width: 0;
}
.faq-icon {
    width: 20px;
    transition: .3s;
    flex-shrink: 0;
}
.faq-item[open] .faq-icon {
    transform: rotate(45deg);
}
.faq-answer {
    padding:
        20px 24px;
    margin-top: 8px;
    border-radius: 18px;
    background: #fff;
    /*border: 1px solid #ddd;*/
}
.faq-answer p {
    margin: 0;
    line-height: 1.8;
    text-align: left;
}
@media(max-width:768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    .faq-question p {
        font-size: 14px
    }
}
.solution {
    position: relative;
    overflow: hidden;
    padding: 40px 0;
    background: #fff;
}
.solution::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background:
        url("../img/solution_bg.webp") no-repeat center top;
    background-size: 100% auto;
    pointer-events: none;
}
/*------------------------------*/
.solution-content {
    position: relative;
    z-index: 2;
    width: min(940px, 100%);
}
/*------------------------------*/
.solution-logo {
    margin-bottom: 24px;
}
.solution-logo img {
    width: clamp(17.5rem, 10.114rem + 31.52vw, 33.75rem);
    display: block;
}
/*------------------------------*/
.solution-copy-box {
    position: relative;
    display: inline-block;
    padding: /* clamp(14px, 1.5vw, 22px) clamp(24px, 2vw, 36px);*/ clamp(0.625rem, 0.483rem + 0.61vw, 0.938rem) clamp(1.125rem, 0.614rem + 2.18vw, 2.25rem);
    border: 2px solid #2b67f6;
    border-radius: 14px;
    background: #fff;
    color: #1547d5;
    font-weight: 700;
    line-height: 1;
    font-size:
        clamp(1rem, 0.602rem + 1.7vw, 1.875rem);
}
.solution-copy-box::before {
    content: "";
    position: absolute;
    left: 40px;
    bottom: -20px;
    width: 32px;
    height: 21px;
    background:
        url("../img/balloon-tail.svg") no-repeat center/contain;
}
.solution-copy-box::after {
    content: "";
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 21px;
    height: 32px;
    background:
        url("../img/arrow-right.svg") no-repeat center/contain;
}
/*------------------------------*/
.solution-title {
    margin-top: 24px;
    line-height: 1.05;
    color: var(--main-color);
    font-weight: 800;
    font-size: clamp(1.875rem, 1.08rem + 3.39vw, 3.625rem);
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 1), 0px 0px 3px rgba(255, 255, 255, 1);
}
.solution-title span.orange {
    color: var(--orange-color);
    font-size: 130%;
}
/*------------------------------*/
.solution-price {
    margin-top: 32px;
    background: #fff;
    border-radius: 28px;
    padding:
        clamp(24px, 3vw, 40px);
    box-shadow:
        0 5px 25px rgba(0, 58, 102, .25);
    text-align: center;
}
/*------------------------------*/
.solution-price-top {
    display: flex;
    /*justify-content: space-between;*/
    align-items: center;
    gap: 40px;
    position: relative;
}
/*------------------------------*/
.solution-price-left {
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 20px;
    position: relative;
    width: calc(60% - 20px);
}
.solution-price-left::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 100%;
    background: #ccc;
}
/*------------------------------*/
.solution-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 100px;
    background: var(--blue-color);
    color: #fff;
    border-radius: 5px;
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-weight: 700;
    font-size: clamp(1rem, 0.773rem + 0.97vw, 1.5rem);
    letter-spacing: .15em
}
/*------------------------------*/
.solution-price-main {
    display: flex;
    align-items: flex-end;
    position: relative;
}
.solution .yen {
    color: var(--orange-color);
    font-weight: 700;
    font-size:
        clamp(4rem, 3rem + 2vw, 7rem);
    line-height: 1;
}
.solution .zero {
    color: var(--orange-color);
    font-weight: 700;
    font-size: clamp(8.125rem, 5.284rem + 12.12vw, 14.375rem);
    line-height: 0.5;
    margin-bottom: 0.2em
}
.solution .tada {
    color: var(--blue-color);
    font-weight: 900;
    font-size: clamp(2.5rem, 1.42rem + 4.61vw, 4.875rem);
    white-space: nowrap
}
.solution .impact-mark {
    position: absolute;
    top: -20px;
    left: 180px;
    width: 30px;
}
.solution .exclamation {
    margin-left: -0.18em;
    color: inherit;
} /*-----------------------------*/
.monthly-price {
    color: var(--main-color);
    font-weight: 700;
    font-size: clamp(1.125rem, 1.068rem + 0.24vw, 1.25rem)
}
.monthly-price strong {
    color: var(--orange-color);
    font-size: 240%;
    font-weight: 700;
}
.solution-price-right small {
    font-size: clamp(0.75rem, 0.693rem + 0.24vw, 0.875rem)
}
/*------------------------------*/
.solution-achievements{
  display:grid;
    grid-auto-flow:column;
    justify-content:center;
    gap: 15px;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 2px solid #dbe5f8;
}
/*------------------------------*/
.achievement {
    display: flex;
    align-items: center;
    gap: 15px;
    border-right: 1px solid #ccc;    padding-right: 20px;
}
.achievement:nth-child(3) {
    border-right: none
}
.achievement img {
    width: 65px;
    flex-shrink: 0;
}
.achievement-content {
    writing-mode: horizontal-tb;
    font-size: clamp(1.25rem, 1.136rem + 0.48vw, 1.5rem);
    color: var(--darkblue-color);
    font-weight: 600;text-align: left;
}
.achievement-content strong {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    writing-mode: horizontal-tb;
    font-weight: 700;
}
.achievement-content small {
    color: #111;
    font-size: .8em;
}
.achievement-num, .achievement-content small {
    writing-mode: horizontal-tb;
}
.achievement-num {
    font-size: 1.8em;
    line-height: 1;
    color: var(--orange-color)
}
.achievement-unit {
    margin-left: 2px;
    line-height: 1;
    color: var(--orange-color)
}
@media (min-width:768px) and (max-width:1200px) {
    .achievement-content {font-size: 18px}
    
}
/*------------------------------*/
.solution-bottom-copy {
    margin-top: 24px;
    position: relative;
    display: inline-block;
    text-align: center;
    color: var(--darkblue-color);
    font-weight: 700;
    font-size:
        clamp(0.813rem, 0.5rem + 1.33vw, 1.5rem);
}
.solution-bottom-copy::before, .solution-bottom-copy::after {
    content: "";
    position: absolute;
    width: 24px; /* 画像サイズ調整 */
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    vertical-align: middle;
    top: 50%;
    transform: translateY(-50%);
}
.solution-bottom-copy::before {
    background-image: url("../img/slash_blue_left.svg");
    left: -25px;
}
.solution-bottom-copy::after {
    background-image: url("../img/slash_blue_right.svg");
    right: -25px;
}
/*------------------------------*/
@media screen and (min-width: 769px) and (max-width: 992px) {
    .solution .impact-mark {
        top: -10px;
        left: 150px;
        width: 20px;
    }
    .solution-price-right {
        text-align: left
    }
  /*  .solution-achievements{  display:grid;
       grid-template-columns:1fr;
    grid-auto-flow:row;
      
    }.achievement {
        border-right: none;
        border-bottom: 1px solid #ccc;
        padding-bottom: 20px
    }
    .achievement:nth-child(3) {
        border-bottom: none
    }*/
}
@media (max-width:768px) {
    .solution::after {
        background:
            url("../img/solution_bg.webp") no-repeat right top;
        background-size: 130% auto;
    }
    .solution-price-right {
        text-align: left
    }
    .solution-content {
        width: 100%;
    }
    .solution-price-top {
        flex-direction: column;
        align-items: stretch;
    }
    .solution-achievements{  display:grid;
       grid-template-columns:1fr;
    grid-auto-flow:row;
      
    }
    .solution-title {
        line-height: 1.15;
    }
    .zero {
        font-size: 150px;
    }
    .solution .impact-mark {
        top: -10px;
        left: 130px;
        width: 20px;
    }
    .achievement {
        border-right: none;
        border-bottom: 1px solid #ccc;
        padding-bottom: 20px
    }
    .achievement:nth-child(3) {
        border-bottom: none
    }
    .solution-price-left {
        padding-bottom: 20px;
        border-bottom: 1px solid #ccc;
        padding-left: 0;
        margin-right: 0;
        width: 100%;
    }
    .solution-price-left::after {
        content: none;
    }
    .solution-label {
        width: 34px;
        height: 80px;
    }
    .solution-copy-box::before {
        width: 24px;
        height: 16px;
        left: 40px;
        bottom: -15px;
    }
    .solution-copy-box::after {
        width: 16px;
        height: 24px;
        right: -14px;
        top: 50%;
    }
    .solution-bottom-copy {
        margin: 0 1.5em
    }
    .solution-bottom-copy::before, .solution-bottom-copy::after {
        width: 16px; /* 画像サイズ調整 */
        height: 16px;
    }
}
/*------------------------------*/
/* =========================
WORRY
========================= */
.worry {
    color: var(--main-color);
    padding: 40px 0;
    background: #f7f5ef;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(247, 245, 239, 1) 30%, rgba(247, 245, 239, 1) 70%, rgba(255, 255, 255, 1) 100%);
}
.worry-title {
    margin: 0;
    text-align: center;
    font-size:
        clamp(1.5rem, 0.818rem + 2.91vw, 3rem);
    font-weight: 700;
}
.worry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top:
        clamp(30px, 4vw, 50px);
}
.worry-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    padding:
        24px 20px 20px;
    box-shadow:
        0 0 15px rgba(0, 0, 0, .08);
    text-align: center;
}
/* ========================= */
.worry-check {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 28px;
}
.worry-check img {
    width: 100%;
    display: block;
}
/* ========================= */
.worry-image {
    width: clamp(90px, 8vw, 130px);
    margin:
        0 auto 16px;
}
.worry-image img {
    width: 100%;
    display: block;
}
/* ========================= */
.worry-card p {
    margin: 0;
    font-weight: 700;
    line-height: 1.6;
    font-size:
        clamp(1rem, .9rem + .3vw, 1.3rem);
}
/* ========================= */
@media (max-width:768px) {
    .worry-grid {
        grid-template-columns:
            repeat(2, 1fr);
        gap: 16px;
    }
}
.support {
    padding: 40px 0;
    background-color: #fff;
    background-image:
        radial-gradient(at 47% 0%, hsla(224, 0%, 100%, 1) 0px, transparent 50%), radial-gradient(at 40% 20%, hsla(227, 100%, 84%, 1) 0px, transparent 50%), radial-gradient(at 80% 0%, hsla(200, 0%, 100%, 1) 0px, transparent 50%), radial-gradient(at 0% 50%, hsla(184, 100%, 73%, 1) 0px, transparent 50%), radial-gradient(at 80% 50%, hsla(216, 100%, 76%, 1) 0px, transparent 50%), radial-gradient(at 0% 100%, hsla(245, 100%, 77%, 1) 0px, transparent 50%), radial-gradient(at 80% 100%, hsla(199, 100%, 50%, 1) 0px, transparent 50%), radial-gradient(at 0% 0%, hsla(192, 0%, 100%, 1) 0px, transparent 50%);
}
.support-head {
    text-align: center;
}
.support-title {
    margin: 0;
    line-height: 1.2;
}
.support-title--blue small span {
    color: var(--main-color);
}
.support-title--blue {
    position: relative;
    display: inline-block;
    color: #1140d6;
    font-size: clamp(1.5rem, 1.33rem + 0.73vw, 1.875rem);
    font-weight: 700;
    margin-bottom: 0.35em;
    text-align: center;
    line-height: 1.4;
}
.support-title--blue::before, .support-title--blue::after {
    content: "";
    width: 22px; /* 画像サイズ調整 */
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.support-title--blue::before {
    background: url("../img/slash_orange_left.svg")no-repeat center/contain;
    left: -35px;
}
.support-title--blue::after {
    background: url("../img/slash_orange_right.svg")no-repeat center/contain;
    right: -35px;
}
.support-catch {
    position: relative;
    display: inline-block;
}
.support-catch::before, .support-catch::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 46px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.support-catch::before {
    left: -35px;
    background-image:
        url("../img/slash_blue_left.svg");
}
.support-catch::after {
    right: -35px;
    background-image:
        url("../img/slash_blue_right.svg");
}
.support-title--orange {
    color: #ff6f1f;
    font-size: clamp(2.5rem, 2.216rem + 1.21vw, 3.125rem);
    font-weight: 700;
}
.support-title--black {
    color: var(--main-color);
    font-size: clamp(1.375rem, 0.636rem + 3.15vw, 3rem);
    font-weight: 700;
}
/* ========================= */
.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top:
        clamp(40px, 5vw, 70px);
}
.support-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    box-shadow:
        0 0 20px rgba(0, 0, 0, .12);
    padding:
        24px 20px 24px;
    /*   display: flex;
    flex-direction: column;
    height: 100%;*/ height: auto;
}
/* ========================= */
.point-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-radius: 24px 0 0 0;
    border-top: 120px solid #1140d6;
    border-right: 120px solid transparent;
}
.point-ribbon span {
    position: absolute;
    top: -110px;
    left: 15px;
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}
.point-ribbon strong {
    position: absolute;
    top: -90px;
    left: 15px;
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    font-weight: 700;
}
/* ========================= */
.support-icon {
    width: clamp(100px, 8vw, 140px);
    margin: 10px auto 24px;
}
.support-icon img {
    width: 100%;
    display: block;
}
/* ========================= */
.support-card h3 {
    text-align: center;
    margin: 0;
    font-size: 20px;
    line-height: 1.5;
}
.support-card p {
    margin-top: 20px;
    font-size:
        clamp(0.875rem, 0.818rem + 0.24vw, 1rem);
}
.support-card small {
    margin-top: 12px;
    display: block;
}
/* ========================= */
@media (min-width:768px) and (max-width:1200px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:768px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        align-items: start;
    }
    .support-card {
        height: auto;
    }
}
/*フォーム*/
.contact-section {
    background: #4fa8ff; scroll-margin-top:100px;
}
.contact-hero {
    padding: clamp(60px, 8vw, 90px) 0 50px;
    background:
        url("../img/form_bg.webp") top center / cover no-repeat, linear-gradient(180deg, #69b8ff 0%, #dff4ff 48%, #3d9cff 100%);
}
.contact-lead {
    width: min(640px, 58%);
    text-align: center;
    color: #07143a;
}
.contact-kicker {
    margin-bottom: 18px;
    font-size: clamp(1.25r1rem + 1vw, 2rem)em, ;
    font-weight: 700;
    -webkit-text-stroke: 2px #FFF;
    paint-order: stroke fill;
}
.contact-lead h2 {
    margin-bottom: 22px;
    color: #062276;
    font-size: clamp(2.5rem, 2.216rem + 1.21vw, 3.125rem);
    font-weight: 700;
    line-height: 1.1;
    -webkit-text-stroke: 3px #FFF;
    paint-order: stroke fill;
}
.contact-copy {
    margin-bottom: 18px;
    color: #0641d8;
    font-size: clamp(1.25rem, 1rem + 1vw, 2rem);
    font-weight: 700;
    letter-spacing: .08em;
    -webkit-text-stroke: 2px #FFF;
    paint-order: stroke fill;
}
.contact-note {
    font-size: clamp(.9rem, .82rem + .3vw, 1.05rem);
    font-weight: 600;
    -webkit-text-stroke: 2px #FFF;
    paint-order: stroke fill;
}
.contact-form-box {
    position: relative;
    text-align: center;
    margin-top: 46px;
    padding: clamp(32px, 5vw, 58px) clamp(24px, 6vw, 78px) 32px;
    border: 2px solid rgba(255, 255, 255, .95);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .86) 0%, rgba(244, 250, 255, .82) 100%);
    box-shadow:
        0 0 0 2px rgba(255, 255, 255, 1), 0 0 0 6px rgba(0, 123, 255, .25), 0 0 28px rgba(0, 132, 255, .85), inset 0 0 22px rgba(255, 255, 255, .9), inset 0 0 22px rgba(0, 132, 255, .28);
}
.form-title {
    position: relative;
    /*    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: .35em;*/
    display: inline-block;
    margin: 0 auto 34px;
    color: #0634b5;
    font-size: clamp(1.125rem, 0.5rem + 2.67vw, 2.5rem);
    font-weight: 700;
    text-align: center;
}
.form-title::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: clamp(-18px, -1vw, -12px);
    transform: translateX(-50%);
    width: min(700px, 100%);
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(251, 176, 14, 1) 10%, rgba(251, 176, 14, 1) 90%, rgba(255, 255, 255, 1) 100%);
    ;
}
.form-title::after {
    position: absolute;
    left: 50%;
    bottom: -21px;
    content: "✦";
    font-size: 12px;
    line-height: 1;
    color: #fbaf0d;
    background: #f5faff;
    padding: 3px;
}
.form-title strong {
    color: #ff7a00;
    font-size: 1.18em;
    font-weight: 700;
}
.form-title img {
    height: 1em;
    width: auto;
    vertical-align: middle
}
.contact-form {
    display: grid;
    gap: 26px;
}
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}
.form-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 18px;
    align-items: start;
}
.form-row-full {
    grid-template-columns: 64px 1fr;
}
.form-icon {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(180deg, #1268ff 0%, #003cc9 100%);
    box-shadow: 0 4px 10px rgba(0, 60, 180, .28);
}
.form-icon img {
    width: 30px;
    height: 30px;
}
.form-field label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
    font-size: 1.15rem;
    font-weight: 700;
}
.required, .privacy-check em {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 8px;
    border: 1px solid #ff6b6b;
    border-radius: 3px;
    color: #e60012;
    background: #fff;
    font-size: .8rem;
    font-style: normal;
    font-weight: 700;
}
.form-field input {
    width: 100%;
    height: 58px;
    padding: 0 22px;
    border: 1px solid #b7c3d8;
    border-radius: 10px;
    background: rgba(255, 255, 255, .82);
    box-shadow:
        inset 0 2px 5px rgba(0, 40, 120, .08), 0 2px 0 rgba(255, 255, 255, .75);
    font-size: 1rem;
}
.form-field input::placeholder {
    color: #8a8f99;
}
.privacy-check {
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    margin-left: 8px;
    font-size: 1.05rem;
    font-weight: 700;
}
.privacy-check input {
    position: absolute;
    opacity: 0;
}
.privacy-check span {
    position: relative;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    background: linear-gradient(180deg, #1268ff 0%, #0043c9 100%);
}
.privacy-check input:checked + span::after {
    content: "";
    position: absolute;
    left: 9px;
    top: 5px;
    width: 8px;
    height: 15px;
    border: solid #fff;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}
.privacy-check a {
    color: #0634b5;
    text-decoration: underline;
    text-underline-offset: 4px;
}
.submit-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: min(720px, 100%);
    min-height: 94px;
    margin: 6px auto 0;
    border: 2px solid #fff;
    border-radius: 999px;
    background: linear-gradient(90deg, #fd9d28 0%, #fe6615 30%, #fd4858 53%, #fa1993 100%);
    color: #fff;
    box-shadow: inset -2px -2px 10px 0px rgba(255, 255, 255, 0.5), inset 2px 2px 10px 0px rgba(255, 255, 255, 0.5), inset -5px -5px 10px 0px rgba(255, 255, 255, 0.3), inset 5px 5px 10px 0px rgba(255, 255, 255, 0.3), 0 8px 15px rgba(92, 184, 255, 0.35);
    font-size: clamp(1.55rem, 1.1rem + 2vw, 2.7rem);
    font-weight: 700;
    cursor: pointer;
    overflow: hidden;
}

.submit-button::before{content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;}
.button-sparkle {
    position: absolute;
    z-index: 2;
    width: 34px;
    height: 34px;
    background: url("../img/cross_flare.webp") center / contain no-repeat;
    pointer-events: none;
    mix-blend-mode: screen;
    filter:
        drop-shadow(0 0 5px rgba(255,255,255,.95))
        drop-shadow(0 0 10px rgba(255,230,160,.8));
    animation: button-sparkle 3s ease-in-out infinite;
}

.sparkle-01 {
    left: 5%;
    top: 5%;
    width: 28px;
    height: 28px;
}

.sparkle-02 {
    left: 12%;
    top: 50%;
    width: 35px;
    height: 35px;
    animation-delay: .4s;
}

.sparkle-03 {
    right: 15%;
    top: 20%;
    width: 20px;
    height: 20px;
    animation-delay: .9s;
}

.sparkle-04 {
    right: 5%;
    bottom: 20%;
    width: 32px;
    height: 32px;
    animation-delay: 1.35s;
}

.sparkle-05 {
    right: 10%;
    top: 20%;
    width: 10px;
    height: 10px;
    
}

.sparkle-06 {
   left: 15%;
    top: 8%;
    width: 12px;
    height: 12px;
   
}

@keyframes button-sparkle {
    0% {
        opacity: .45;
        transform: scale(.8) rotate(0deg);
    }

    50% {
        opacity: 1;
        transform: scale(1.15) rotate(180deg);
    }

    100% {
        opacity: .45;
        transform: scale(.8) rotate(360deg);
    }
}
.submit-button strong {
    color: #fff600;
    font-size: 1.15em;
    font-weight: 700;
}
.magic-circle {
    position: absolute;
    left: 50px;
    width: 68px;
    height: 68px;
    background: url("../img/form_btn_left.webp") center / contain no-repeat;
}
.arrow {
    position: absolute;
    right: 50px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #fff;
}
.arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 47%;
    width: 12px;
    height: 12px;
    border-top: 5px solid #f0188b;
    border-right: 5px solid #f0188b;
    transform: translate(-50%, -50%) rotate(45deg);
}
.security-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.security-text::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background: url("../img/key_ico.svg") center / contain no-repeat;
}
@media (min-width:768px) and (max-width:1200px) {
    .contact-hero {
        background:
            url("../img/form_bg.webp") center right / cover no-repeat, linear-gradient(180deg, #69b8ff 0%, #dff4ff 48%, #3d9cff 100%);
    }
    .contact-lead {
        width: 100%;
        padding-top: 0;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .form-row, .form-row-full {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }
    .form-icon {
        width: 44px;
        height: 44px;
    }
    .form-icon img {
        width: 24px;
        height: 24px;
    }
    .submit-button {
        min-height: 76px;
        padding: 0 74px 0 80px;
    }
    .magic-circle {
        left: 30px;
        width: 54px;
        height: 54px;
    }
    .arrow {
        right: 30px;
        width: 42px;
        height: 42px;
    }
}
@media (max-width:768px) {
    .contact-hero {
        background:
            url("../img/form_bg.webp") top right / contain no-repeat, linear-gradient(180deg, #69b8ff 0%, #539cfd 28%, #539cfd 100%);
    }
    .contact-form-box {
        margin-top: 26px;
        border-radius: 20px;
        padding: 26px 18px 26px;
    }
    .form-title::after {
        background: #e4f0ff
    }
    .contact-lead h2 {
        font-size: 32px;
        margin-bottom: 0.5em
    }
    .contact-kicker {
        font-size: 18px;
        margin-bottom: 0.5em
    }
    .contact-lead {
        width: 100%;
        padding-top: 0;
        text-align: left;
    }
    .contact-copy {
        font-size: 20px;
        margin-bottom: 0.5em
    }
    .contact-note {
        font-size: 14px;
        margin-bottom: 0.5em;
    }
    .form-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .form-row, .form-row-full {
        grid-template-columns: 48px 1fr;
        gap: 14px;
    }
    .form-icon {
        width: 44px;
        height: 44px;
    }
    .form-icon img {
        width: 24px;
        height: 24px;
    }
    .form-title {
        font-size: 18px;
    }
    .form-field input {
        height: 48px;
    }
    .privacy-check {
        align-items: flex-start;
        font-size: .9rem;
        line-height: 1.5;
    }
    .submit-button {
        min-height: 68px;
        padding: 0 58px;
        font-size: 1.25rem;
    }
    .magic-circle {
        left: 20px;
        width: 44px;
        height: 44px;
    }
    .arrow {
        right: 20px;
        width: 40px;
        height: 40px;
    }
}
.reason02 {
    padding: 40px 0 0px;
    text-align: center;
}
.reason02 .section-title {
    position: relative;
    z-index: 3;
    width: fit-content;
    margin: 0 auto;
    padding: 0 62px;
    background: transparent;
    color: #fff;
    font-size: clamp(1.5rem, 1.159rem + 1.45vw, 2.25rem);
    font-weight: 700;
    line-height: 1.25;
    text-shadow:
        0 0 2px rgba(49, 100, 250, 1), 0 0 3px rgba(49, 100, 250, 1), 0 0 5px rgba(49, 100, 250, 1), 0 0 8px rgba(49, 100, 250, 1), 0 0 10px rgba(49, 100, 250, 1), 0 0 13px rgba(49, 100, 250, 1), 0 0 16px rgba(49, 100, 250, 1), 0 0 20px rgba(49, 100, 250, 1), 0 0 23px rgba(49, 100, 250, 1), 0 0 28px rgba(49, 100, 250, .95), 0 0 42px rgba(49, 100, 250, .85), 14px 0 34px rgba(49, 100, 250, .85), -14px 0 34px rgba(49, 100, 250, .85), 0 3px 3px rgba(0, 50, 150, .4);
}
.reason02 .section-title span {
    position: relative;
    z-index: 2;
}
.reason02 .section-title span::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -36px;
    right: -36px;
    top: 50%;
    height: 2.1em;
    transform: translateY(-50%);
}
.reason02 .section-title::before, .reason02 .section-title::after {
    content: "";
    position: absolute;
    top: 60%;
    width: 24px;
    height: 24px;
    background: url("../img/diamond_white.svg") center / contain no-repeat;
    transform: translateY(-50%);
    filter:
        drop-shadow(0 0 6px rgba(255, 255, 255, .95)) drop-shadow(0 0 12px rgba(49, 100, 250, .9));
    z-index: 1;
}
.reason02 .section-title::before {
    left: 22px;
}
.reason02 .section-title::after {
    right: 22px;
    left: initial;
}
.reason02 .reason-box {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 3px solid rgba(255, 255, 255, 1);
    border-radius: 28px;
    padding: 46px 28px 32px;
    margin-top: -17px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .85) 42%, rgba(255, 255, 255, .65) 100%);
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, .85), inset 0 0 16px rgba(88, 170, 246, .65);
}
.reason02 .reason-box::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 50%;
    top: -34px;
    width: min(560px, 78%);
    height: 86px;
    transform: translateX(-50%);
    background:
        radial-gradient(ellipse at center, rgba(255, 255, 255, .75) 0%, rgba(172, 207, 254, .55) 36%, rgba(103, 171, 252, .18) 62%, rgba(103, 171, 252, 0) 76%);
    filter: blur(8px);
}
/*.reason02 .reason-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 24px;
    padding: 30px 15px 20px;
    margin-top: -15px;
    background: rgba(255, 255, 255,0.5);
    box-shadow: inset 0px 0px 10px 0px rgba(88, 170, 246, 0.5);
}*/
.reason02 .reason-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
    position: relative;
    flex: 0 0 auto;
}
.reason02 .reason-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 1px;
    height: 70px;
    background: #fff;
}
.reason02 .reason-icon {
    width: 50px;
    flex-shrink: 0;
}
.reason02 .reason-content h3 {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 8px;
    font-size:
        clamp(1.2rem, 1rem + .4vw, 2rem);
    font-weight: 700;
    line-height: 1.2;
}
.reason02 .reason-content .accent {
    color: #ff6c18;
    font-weight: 700;
    font-size: 1.8em;
    line-height: 1;
}
.reason02 .reason-content p {
    font-size:
        14px;
    line-height: 1.6;
    color: #333;
}
@media (min-width:768px) and (max-width:1200px) {
    .reason02 .reason-box {
        display: grid;
        grid-template-columns:
            repeat(2, 1fr);
        position: relative;
        gap: 30px;
        padding-top: 50px;
    }
    .reason02 .reason-item {
        padding-bottom: 10px;
        position: relative;
    }
    .reason02 .reason-item: .reason-item::after {
        display: none;
    }
    .reason-box::before {
        content: "";
        position: absolute;
        top: 30px;
        bottom: 30px;
        left: 50%;
        width: 1px;
        background: #fff;
        transform: translateX(-50%);
    }
    .reason-box::after {
        content: "";
        position: absolute;
        left: 30px;
        right: 30px;
        top: 50%;
        height: 1px;
        background: #fff;
        transform: translateY(-50%);
    }
    .reason02 .reason-item:not(:last-child)::after {
        content: none;
    }
    .reason02 .reason-item:nth-child(odd)::before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: -15px;
        width: 1px;
        background: #fff;
    }
    .reason02 .reason-item:nth-child(-n+2)::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: -15px;
        height: 1px;
        background: #fff;
    }
    .reason02 .reason-item:not(:last-child)::after {
        content: none
    }
}
@media (max-width:768px) {
    .reason02 .section-title::before, .reason02 .section-title::after {
        content: "";
        position: absolute;
        top: 50%;
        width: 24px;
        height: 24px;
        background: url("../img/diamond_white.svg") center / contain no-repeat;
        transform: translateY(-50%);
        filter:
            drop-shadow(0 0 6px rgba(255, 255, 255, .95)) drop-shadow(0 0 12px rgba(49, 100, 250, .9));
        z-index: 1;
    }
    .reason02 .reason-box {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 50px 30px 20px;
    }
    .reason02 .reason-item {
        padding: 0 0 24px;
    }
    .reason02 .reason-item:not(:last-child)::after {
        top: auto;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background: #fff;
        transform: none;
    }
}


.fv {
    position: relative;
    overflow: hidden;
    min-height: clamp(520px, 50vw, 680px);
    background-image: url("../img/fv_bg_pc.webp");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
        aspect-ratio: 1024 / 522;
}
@media (max-width: 767px) {
    .fv {
        min-height: 0;
        aspect-ratio: 750 / 640;
        background-image: url("../img/fv_bg_sp.webp");
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
    }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .fv {
        background-image: url("../img/fv_bg_pc.webp");
        background-position: center top;
        background-size: cover;
        background-repeat: no-repeat;
    }
}
.fv__inner {
    width: min(1180px, calc(100% - 48px));
    min-height: inherit;
    margin: 0 auto;
    display: flex;
    align-items: center;
}
.fv__content {
    width: min(65%, 820px);
    padding: clamp(1.25rem, 0.398rem + 3.64vw, 3.125rem) 0 clamp(36px, 4vw, 56px);
}
.fv__brand {
    width: fit-content;
    margin: 0 0 clamp(18px, 2vw, 28px);
    padding-bottom: 8px;
    border-bottom: 3px solid #0d63d9;
    font-size: clamp(1.25rem, 0.682rem + 2.42vw, 2.5rem);
    font-weight: 700;
    line-height: 1.25;
}
.fv__brand span {
    color: #f06a00;
}
.fv__brand strong {
    margin-left: .28em;
    color: #0641d8;
}
.fv__title {

    color: #111827;
    font-size: clamp(2rem, 1.34rem + 2.8vw, 3.65rem);
    font-weight: 700;
    line-height: 1.36;
    letter-spacing: .02em;
    text-shadow:
        0 2px 0 rgba(255, 255, 255, .86), 0 0 16px rgba(255, 255, 255, .76);
}
.fv__title::after {
    content: "";
    display: block;
    width: min(330px, 78%);
    height: .22em;
    margin-top: -.2em;
    background: #ffd32a;
}
.fv__price {
    display: flex;
    align-items: flex-end;
    gap: clamp(8px, 1.2vw, 16px);
    margin: 0 0 clamp(16px, 2vw, 24px);
    color: #0641d8;
    font-weight: 800;
    line-height: .88;
    white-space: nowrap;    -webkit-text-stroke: 3px #FFF;
    paint-order: stroke fill; text-shadow: 0px 0px 10px rgba(255, 255, 255, 1);
}
.fv__price-label {
    color: #f06a00;
    font-size: clamp(2.9rem, 2rem + 3.8vw, 6rem);
    line-height: .98;text-align: center;
}
.fv__yen {
    margin-bottom: .1em;
    font-size: clamp(4.2rem, 2.8rem + 5.9vw, 8.8rem);
    letter-spacing: -.02em;
}
.fv__price strong {
    margin-left: -.08em;
    font-size: clamp(7.3rem, 4.8rem + 10.6vw, 16rem);
    letter-spacing: -.04em;
}
.fv__only {
    margin-bottom: .14em;
    font-size: clamp(2.2rem, 1.45rem + 3.2vw, 5rem);
}
.fv__monthly {
    display: flex;
    align-items: baseline;
    justify-content: center;
    width: min(100%, 550px);
    margin: 0 0 14px;
    padding: .22em 1.1em .28em;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, #0174ee 0%, #063fc7 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .55), 0 5px 14px rgba(0, 79, 190, .22);
    font-size: clamp(1.35rem, 1rem + 1.45vw, 2.35rem);
    font-weight: 800;
    line-height: 1.35;
    position: relative;
    overflow: hidden;
}
.fv__monthly::before {
  content: "";
  display: block;
  width: 30px;
  height: 100%;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #FFF;
  opacity: 0;
  transform: rotate(45deg);
  animation: reflect 2s ease-in-out infinite;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflect 2s ease-in-out infinite;
}

.fv__monthly strong {
    margin-left: .35em;
    color: #ffe867;
    font-size: 1.18em;
    
}
.fv__note {width: min(100%, 550px);
    margin: 0;
    padding-left: 0;
    text-align: center;
    color: #1f2937;
    font-size: clamp(.88rem, .78rem + .45vw, 1.12rem);
    font-weight: 700;
}
.fv__price {
    overflow: visible;
}

.fv__price strong,
.fv__zero {
    overflow: visible;
}

.fv__zero {
    position: relative;
    display: inline-block;
    overflow: hidden;
    padding-right: .12em;
    margin-right: -.12em;
    line-height: .9;
}


.fv__zero::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -80%;
    width: 42%;
    height: 140%;
    background: linear-gradient(
        115deg,
        transparent 0%,
        rgba(255,255,255,0) 28%,
        rgba(255,255,255,.95) 48%,
        rgba(255,255,255,0) 68%,
        transparent 100%
    );
    transform: skewX(-18deg);
    animation: zero-shine 4s ease-in-out infinite;
}

@keyframes zero-shine {
    0% {
        left: -80%;
        opacity: 0;
    }

    18% {
        opacity: 1;
    }

    42% {
        left: 120%;
        opacity: 0;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}
.fv::before {
    content: "";
    position: absolute;
    top: 43%;
    right: 48%;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    box-shadow:
        0 0 0 .05em rgba(255,255,255,.9),
        0 0 .18em .08em rgba(255,255,255,.95),
        0 0 .45em .16em rgba(0,130,255,.75);
    animation: zero-spark 1.6s ease-in-out infinite;
}

@keyframes zero-spark {
    0%, 26%, 100% {
        transform: scale(.2);
        opacity: 0;
    }

    34% {
        transform: scale(1);
        opacity: 1;
    }

    48% {
        transform: scale(.4);
        opacity: 0;
    }
}
@media (max-width: 1024px) {
    .fv {
        min-height: 52vw;
    }
    .fv::before {
    content: "";
    position: absolute;
    top: 40%;
    right: 48%;
    width: 30px;
        height: 30px;}
    .fv__inner {
        width: min(100% - 36px, 960px);
    }
    .fv__content {
        width: 65%;padding-top: 15px;
    }
    .fv__title{font-size: 34px;line-height: 1.2;margin-bottom: 0}
}
@media (max-width: 767px) {
    .fv {
        min-height: 0;
        aspect-ratio: 590 / 530;
        background:
            image-set(url("../img/fv_bg_sp.webp") type("image/webp"), url("../img/fv_bg_sp.jpg") type("image/jpeg")) center top / cover no-repeat;
    }
    .fv__inner {
        width: 100%;
        min-height: 100%;
        display: block;
    }
    .fv__content {
        width: 100%;
        padding: 6.2vw 5.6vw 0;
    }
    .fv__brand {
        margin-bottom: 4.3vw;
        padding-bottom: .8vw;
        border-bottom-width: .45vw;
        font-size: clamp(1.25rem, 6.6vw, 2.35rem);
        line-height: 1.1;
    }
    .fv__brand strong {
        margin-left: .08em;
    }
    .fv__title {
        margin-bottom: 3.8vw;
        font-size: clamp(1.35rem, 6.5vw, 2.45rem);
        line-height: 1.34;
    }
    .fv__title::after {
        width: 39vw;
        height: 1.2vw;
        margin-top: -.6vw;
    }
    .fv__price {
        gap: 1.2vw;
        margin-bottom: 2.8vw;
    }
    .fv__price-label {
        font-size: clamp(2.45rem, 13vw, 4.8rem);
    }
    .fv__yen {
        font-size: clamp(3.5rem, 18vw, 6.8rem);
    }
    .fv__price strong {
        font-size: clamp(5.5rem, 28vw, 10.5rem);
    }
    .fv__only {
        font-size: clamp(1.95rem, 9vw, 3.65rem);
    }
    .fv__monthly {
        min-width: 0;
        width: min(100%, 450px);
        margin-left: 3.5vw;
        margin-bottom: 1.4vw;
        font-size: clamp(1.02rem, 5.1vw, 1.9rem);
    }
    .fv__note {
       width: 66vw;
        margin-left: 3.5vw;
        padding-left: 0;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .fv::before {   top: 38%;
    right: 40%;  width: 25px;
    height: 25px;}
    .fv__content{ padding: 40px 15px 0;}
    .fv__brand {
        font-size: 18px;
    }
    .fv__title {
        font-size: 1.28rem; font-weight: 900!important;
    }
    .fv__monthly {
        width: 68vw;
        font-size: .98rem;font-weight: 900!important;
    }
    .fv__price-label {font-size: 38px;font-weight: 900!important}
}




.operation-points {
    position: relative;
    overflow: hidden;
    padding: clamp(54px, 7vw, 86px) 0 clamp(56px, 7vw, 82px);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255,255,255,.78) 0%, rgba(255,255,255,0) 36%),
        linear-gradient(180deg, #bde8ff 0%, #e9f9ff 42%, #4aa6ff 100%);
}

.operation-points__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}
.operation-points__title-wrap {
    position: relative;
    margin-bottom: clamp(30px, 4vw, 46px);
}

.operation-points__title-wrap::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,.85) 14%,
        rgba(255,255,255,.95) 50%,
        rgba(255,255,255,.85) 86%,
        transparent 100%
    );
    box-shadow: 0 0 10px rgba(255,255,255,.75);
    transform: translateY(-50%);
}

.operation-points__title {
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}
.operation-points__title {
    width: min(620px, 86%);
    margin: 0 auto clamp(30px, 4vw, 46px);
    color: #fff;
    text-align: center;
    font-size: clamp(1.625rem, 0.943rem + 2.91vw, 3.125rem);
    font-weight: 700;
    line-height: 1.25;
    text-shadow:
        0 2px 0 rgba(0, 39, 150, .45),
        0 0 14px rgba(0, 52, 180, .95),
        0 0 26px rgba(0, 99, 255, .75);
    position: relative;
}

.operation-points__title span {
    display: block;
    padding: .14em 1.6em .22em;
    background: linear-gradient(180deg, #066fff 0%, #0030bb 100%);
    clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);
}

.operation-points__title::before,
.operation-points__title::after {
    content: "";
    position: absolute;
    top: 50%;
    z-index: 2;
    width: clamp(28px, 4vw, 52px);
    height: clamp(28px, 4vw, 52px);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translateY(-50%);filter:
        drop-shadow(0 0 4px rgba(255,255,255,.5));
}

.operation-points__title::before {
    left: 8%;
    background-image: url("../img/operation_ttl_left.svg");
}
.operation-points__title::after {
    right: 8%;
    background-image: url("../img/operation_ttl_right.svg");
}
.operation-points__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(16px, 2vw, 28px);
}

.operation-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 520px;
    padding: 0px 0px 30px;
    border: 1px solid rgba(255,255,255,.98);
    border-radius: 22px;
    background:
        radial-gradient(circle at 70% 18%, rgba(255,255,255,.9), rgba(255,255,255,0) 22%),
        linear-gradient(180deg, rgba(255,255,255,.78) 0%, rgba(255,255,255,.92) 52%, rgba(233,247,255,.94) 100%);
    box-shadow:
        0 10px 20px rgba(0,87,200,.22),
        inset 0 0 18px rgba(255,255,255,.95),
        inset 0 0 34px rgba(0,120,255,.12);
    text-align: center;
}

.operation-card__point {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 72px;
    margin: 0;
    border-radius: 21px 0 18px 0;
    color: #fff;
    background: linear-gradient(180deg, #007bff 0%, #0038c8 100%);
    box-shadow:
        0 6px 14px rgba(0,74,190,.25),
        inset 0 1px 0 rgba(255,255,255,.45);
    text-shadow: 0 2px 4px rgba(0,40,130,.35);
}

.operation-card--orange .operation-card__point {
    background: linear-gradient(180deg, #ff9e00 0%, #ff4a00 100%);
}

.operation-card__point span {
    margin-bottom: 4px;
    font-size: .82rem;
    font-weight: 900;
    line-height: 1;
}

.operation-card__point strong {
    font-size: 2rem;
    font-weight: 800;
    line-height: .9;
}
.operation-card__image {
    display: grid;
    place-items: center;
    width: 100%;
    min-height: 190px;
    margin-bottom: 18px;
}

.operation-card__image img {
    display: block;
    width:100%;
    height: auto;
    filter: drop-shadow(0 8px 16px rgba(255,255,255,.25));
}

.operation-card h3 {
    margin: 0;
    min-height: 2.8em;
    padding: 0 20px;
    color: var(--darkblue-color);
    font-size: clamp(1.125rem, 0.955rem + 0.73vw, 1.5rem);
    font-weight: 700;
    line-height: 1.36;
    text-align: center;
    display: grid;
    place-items: center;
}

.operation-card h3 .h3-inner {
    display: block;
}
.operation-card h3 .h3-inner small{font-size: 80%}
.operation-card h3 .tx_blue {
    color: var(--blue-color);
}
.operation-card--orange h3,
.operation-card--orange .operation-card__text strong {
    color: var(--orange-color);
}
.operation-card--orange .operation-card__text strong {font-size: 110%}

.operation-card__line {
    position: relative;
    width: 82%;
    height: 1px;
    margin: 18px auto 20px;
    background: linear-gradient(90deg, transparent 0%, rgba(0,119,220,.5) 28%, rgba(0,119,220,.5) 72%, transparent 100%);
}

.operation-card__line::after {
    content: "✦";
    position: absolute;
    left: 50%;
    top: 50%;
    color: #006cff;
    font-size: 1.1rem;
    line-height: 1;
    background: #f3faff;
    transform: translate(-50%, -50%);
}

.operation-card--orange .operation-card__line {
    background: linear-gradient(90deg, transparent 0%, rgba(240,90,0,.5) 28%, rgba(240,90,0,.5) 72%, transparent 100%);
}

.operation-card--orange .operation-card__line::after {
    color: #f05a00;
}

.operation-card__text {
    margin: 0;
    color: var(--darkblue-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.85;padding: 0 20px;
}

.operation-card__text strong {
    color: var(--blue-color);
    font-weight: 800;font-size: 110%;
}

@media (max-width: 1100px) {
    .operation-points__title {
        width: min(480px, 86%);}
    .operation-points__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .operation-card {
        min-height: 480px;
    }
    .operation-card h3 .h3-inner small{font-size: 100%}
}

@media (max-width: 640px) {
      .operation-points__title {
        width: min(380px, 86%);}
    .operation-points__grid {
        grid-template-columns: 1fr;
    }

    .operation-card {
        min-height: 0;
    }
}




.footer {
    position: relative;
    overflow: hidden;
    padding: clamp(36px, 5vw, 56px) 0;
    border-top: none;
    background:
        radial-gradient(circle at 82% 20%, rgba(255,255,255,.75), rgba(255,255,255,0) 24%),
        linear-gradient(180deg, #eaf8ff 0%, #ffffff 42%, #d7efff 100%);
}

.footer::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: min(980px, 90%);
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(0,120,255,.35) 16%,
        rgba(255,255,255,.95) 50%,
        rgba(0,120,255,.35) 84%,
        transparent 100%
    );
    box-shadow:
        0 0 12px rgba(255,255,255,.9),
        0 0 20px rgba(0,120,255,.4);
    transform: translateX(-50%);
}

.footer-inner {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: clamp(28px, 5vw, 70px);
}

.footer-info {
    flex: 1;
}

.footer-company {
    margin: 0 0 12px;
    color: #00318e;
    font-size: clamp(1.5rem, 1.2rem + .5vw, 2rem);
    font-weight: 800;
    letter-spacing: .02em;
}

.footer-company small {
    margin-left: .25em;
    font-size: 70%;
    font-weight: 700;
}

.footer-address {
    margin: 0;
    color: #1f2a44;
    font-size: clamp(0.95rem, .9rem + .2vw, 1.125rem);
    font-weight: 600;
    line-height: 1.8;
}

.footer-logo {
    position: relative;
    padding-left: clamp(30px, 4vw, 60px);
    border-left: 1px solid rgba(0,90,200,.22);
}

.footer-logo::before {
    content: "";
    position: absolute;
    left: -1px;
    top: 50%;
    width: 1px;
    height: 78%;
    background: linear-gradient(
        180deg,
        transparent,
        rgba(255,255,255,.95),
        rgba(0,120,255,.45),
        transparent
    );
    box-shadow: 0 0 10px rgba(0,120,255,.45);
    transform: translateY(-50%);
}

.footer-logo img {
    display: block;
    width: clamp(240px, 25vw, 420px);
    height: auto;
    filter:
        drop-shadow(0 5px 12px rgba(0,70,160,.16))
        drop-shadow(0 0 12px rgba(255,255,255,.65));
}

@media (max-width: 768px) {
    .footer {
        padding: 34px 0 38px;
    }

    .footer-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 24px;
    }

    .footer-logo {
        width: 100%;
        padding-left: 0;
        padding-bottom: 22px;
        border-left: none;
        border-bottom: 1px solid rgba(0,90,200,.18);
    }

    .footer-logo::before {
        display: none;
    }

    .footer-logo img {
        width: min(320px, 82vw);
        margin: 0 auto;
    }

    .footer-company {
        margin-bottom: 8px;
    }

    .footer-address {
        font-size: .9rem;
    }
}
.page-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blue-color);
    border-radius: 50%;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, .15);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 999;
}
.page-top.is-show {
    opacity: 1;
    visibility: visible;
}
.page-top img {
    width: 24px;
    height: auto;
}
.page-top:hover {
    transform: translateY(-4px);
}

