@charset "utf-8";
/* CSS Document */

/* =====================================
   Reset
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Noto Sans JP',sans-serif;
    color:#333;
    line-height:1.8;
    background:#fff;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

.container{
    width:min(1180px,96%);
    margin:auto;
}


/* ============================
Section
============================ */

section{
    padding:90px 0;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    color:#0098d8;
    font-weight:700;
    letter-spacing:2px;
	font-size:clamp(1.1rem,2.3vw,1.7rem);
}

.section-title h2{
    font-size:38px;
    margin:10px 0 20px;
}

.section-title p{
    color:#666;
	font-size: clamp(15px, 1.8vw, 22px);
}


/* ============================
Header
============================ */

header{
    position:fixed;
    top:0;
    width:100%;
    background:#fff;
    z-index:999;
    box-shadow:0 2px 10px rgba(0,0,0,.08);
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:82px;
}

.logo img{
    height:90px;
}

/* ============================
Button
============================ */

.btn-main{
    display:inline-block;
    background:#ff6000;
    border:3px solid #ff6000;
    color:#fff;
    padding:13px 40px;
    border-radius:60px;
    font-weight:bold;
    transition:.3s;
	font-size: clamp(16px, 3vw, 28px);
}

.btn-main:hover{
    background:#ffa700;
    border:3px solid #ffa700;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.btn-sub{
    display:inline-block;
    border:3px solid #0086d1;
    color:#0086d1;
	background: #ffffff;
    padding:13px 40px;
    border-radius:60px;
    margin-left:15px;
    transition:.3s;
	font-size: clamp(16px, 3vw, 28px);
	font-weight: 600;
}

.btn-sub:hover{
    background:#0086d1;
    color:#fff;
}


/* ============================
Header Button
============================ */

.header-btn{
    background:#ff6000;
    color:#fff;
    padding:7px 20px;
    border-radius:50px;
    font-weight:bold;
    font-size:clamp(13px,2.3vw,22px);
    transition:.3s;
}

.header-btn:hover{
    background:#ffa700;
}

@media screen and (max-width:480px){
.header-btn{
    background:#ff6000;
    color:#fff;
    padding:8px 10px;
    border-radius:50px;
    font-weight:bold;
    transition:.3s;
}

.header-btn:hover{
    background:#ff6000;
}
}

/*==========================
 Hero
==========================*/

.hero{
    position:relative;
    margin-top:82px;
    min-height:720px;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    background:
    linear-gradient(rgba(0,0,0,.25),rgba(0,0,0,.25)),
    url("../image/wmedical/stock/wmedicalkeisai_top1.jpg") center center / cover no-repeat;
}

.hero::before{
    display:none;
}

.hero-inner{
    position:relative;
    z-index:2;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    width:100%;
	padding-top:370px;
}

.hero h1{
    color:#fff;
    font-size:clamp(29px,4.5vw,44px);
    line-height:1.35;
    font-weight:900;
    margin:20px 0;
    text-shadow:0 3px 15px rgba(0,0,0,.45);
}

.badge{
    background:#ff4d88;
    color:#fff;
    font-size:clamp(15px,2.3vw,22px);
    padding:10px 20px;
    border-radius:40px;
    font-weight:bold;
}



/* ============================
Problem
============================ */

.problems{
    background:#FFF7F9;
}

.problems .container{
    text-align:center;
}


.problem-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.problem-box{
    background:#fff;
    border-radius:18px;
    padding:50px 30px;
    text-align:center;
    transition:.3s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.problem-box:hover{
    transform:translateY(-8px);
}

.problem-box i{
    font-size:50px;
    color:#0098d8;
    margin-bottom:20px;
}

.problem-box h3{
    font-size:24px;
	line-height:1.3;
}

.problem-box p{
	padding-top: 20px;
	line-height:1.5;
}

/* ==========================
   Solution
========================== */

.solution{
    padding: clamp(30px, 8vw, 60px) 20px;
    background: linear-gradient(135deg,#fff7fa 0%,#ffeef5 100%);
    text-align:center;
}

.solution .container{
    max-width:1100px;
    margin:0 auto;
}

.solution h2{
    display:inline-block;
    position:relative;

    padding:
        clamp(15px,4vw,20px)
        clamp(22px,6vw,30px);

    background:#ff4488;
    border-radius:25px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);

    font-size:clamp(1.8rem,4vw,3.3rem);
    font-weight:800;
    line-height:1.5;
    color:#ffffff;
    text-shadow:0 3px 15px rgba(0,0,0,.45);
}

.solution h2 span{
    color:#ffff33;
    position:relative;
}

.solution h2 span::after{
    content:"";
    position:absolute;
    left:0;
    bottom:2px;
    width:100%;
    height:12px;
    background:rgba(233,30,99,.18);
    z-index:-1;
    border-radius:20px;
}

/* ============================
About
============================ */

.about .container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
}

.about-image{
    width:48%;
}

.about-image img{
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-text{
    width:52%;
}

.about-text span{
    color:#0098d8;
    text-align:center;
    font-weight:bold;
    letter-spacing:2px;
	font-size:clamp(1.1rem,2.3vw,1.7rem);
}

.about-text h2{
    font-size: 30px;
    margin:15px 0 30px;
}

.about-text p{
    margin-bottom:20px;
	line-height: 1.6;
    color:#555;
}

.about-text ul li{
    margin-bottom:15px;
    padding-left:30px;
    position:relative;
}

.about-text ul li::before{
    content:"✅";
    position:absolute;
    left:0;
    color:#17b96d;
    font-weight:bold;
}

/* タブレット・スマホのみ中央寄せ */
@media screen and (max-width:992px){

    .about-text{
        text-align:center;
    }

    .about-text span{
        display:block;
    }

    .about-text h2{
        margin:15px auto 30px;		
        font-size: clamp(20px, 4.5vw, 37px);
    }

    .about-text p{
        margin-left:auto;
        margin-right:auto;
    }

}

/* =====================================
   Features
===================================== */

.features{
    background:#f7fbff;
}

.feature-card{
    background:#fff;
    padding:45px 30px;
    border-radius:20px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.feature-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.feature-card i{
    font-size:52px;
    color:#0098d8;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:24px;
    margin-bottom:15px;
}

.feature-card p{
    color:#666;
}

/* =====================================
   Price
===================================== */

.price{
    background:#fff;
}

.price-table{
    overflow-x:auto;
}

.price-table table{
    width:100%;
    border-collapse:collapse;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.price-table th{
    background:#0098d8;
    color:#fff;
    padding:22px;
    font-size:18px;
}

.price-table td{
    padding:24px;
    border-bottom:1px solid #ececec;
    text-align:center;
    font-size:18px;
}

.price-table tr:hover{
    background:#f8fcff;
}

.popular{
    background:#fff9ef;
}

.popular strong{
    color:#ff6b00;
    font-size:34px;
}

.popular-badge{
    display:inline-block;
    background:#ff6000;
    margin-top:8px;
    color:#fff;
    padding:4px 15px;
    border-radius:30px;
    font-weight:bold;
    font-size: clamp(13px, 2.6vw, 23px);

}

.price-note{
    margin-top:35px;
    background:#FFF7F9;
    border-radius:18px;
    padding:35px;
	justify-content: center;
}

.price-note1{
    margin-top:35px;
    background:#FFF7F9;
    padding:20px;
}

/* PCのみ2列 */
@media (min-width:769px){

.price-note{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
}

.price-note li{
    margin-bottom:0;
}
}

/* スマホは1列 */
@media (max-width:768px){

.price-note{
    display:block;
}

.price-note li{
    margin-bottom:12px;
}
}

.price-note li{
    padding-left:25px;
    position:relative;
}

.price-note li::before{
    content:"✅";
    position:absolute;
    left:0;
    color:#19b96d;
}


/* =====================================
   Occupation
===================================== */

.occupation{
    background:#f7fbff;
}

.occupation-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

.occupation-grid div{
    background:#fff;
    text-align:center;
    padding:22px;
    border-radius:15px;
    font-weight:700;
    transition:.3s;
    border:1px solid #e7eef4;
}

.occupation-grid div:hover{
    background:#ff4488;
    color:#fff;
    transform:translateY(-4px);
}


/* =====================================
   Flow
===================================== */

.flow{
    background:#fff;
}

.flow-list{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.flow-item{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:40px 25px;
    position:relative;
    box-shadow:0 10px 25px rgba(0,0,0,.06);
}

.flow-item::after{
    content:"▶";
    position:absolute;
    right:-18px;
    top:50%;
    transform:translateY(-50%);
    color:#0098d8;
    font-size:28px;
}

.flow-item:last-child::after{
    display:none;
}

.step{
    width:90px;
    height:90px;
    margin:auto;
    border-radius:50%;
    background:#0098d8;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-weight:bold;
    margin-bottom:20px;

}
.flow-item h3{
    margin-bottom:15px;
    font-size:24px;
}



/* =====================================
   CTA
===================================== */

.cta{
    background:linear-gradient(135deg,#0098d8,#0bb9a6);
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta p{
    font-size:20px;
    margin-bottom:40px;
}

.cta .btn-main{
    display:inline-block;
    background:#ff6000;
    border:3px solid #ff6000;
    color:#fff;
    padding:13px 40px;
    border-radius:60px;
    font-weight:bold;
    transition:.3s;
	font-size: clamp(16px, 3vw, 28px);
}

.cta .btn-main:hover{
    background:#ffa700;
    border:3px solid #ffa700;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}



/* =====================================
   FAQ
===================================== */

.faq{
    background:#FFF7F9;
}

.faq-list{
    max-width:900px;
    margin:auto;
}

.faq details{
    background:#fff;
    margin-bottom:18px;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 15px rgba(0,0,0,.05);
}

.faq summary{
    cursor:pointer;
    padding:24px 30px;
    font-size:20px;
    font-weight:bold;
    list-style:none;
    position:relative;
}

.faq summary::after{
    content:"+";
    position:absolute;
    right:30px;
    font-size:26px;
}

.faq details[open] summary::after{
    content:"−";
}

.faq p{
    padding:0 30px 30px;
    color:#666;
}



/* =====================================
   Footer
===================================== */

div#footer {
	clear: both;
	position: relative;
	background-color: #17354d;
	color: #ffff33;
	padding-top:20px;
}

div#footer ul.links-x4 {
	text-align: center;
	margin: 10px auto 0px auto;
}

div#footer ul.links-x4  li {
	display: inline;
	background-repeat: no-repeat;
	background-position: center;
	font-size: calc(1.4rem + ((0.6vw - 0.54rem) * 1.2));
	font-weight: 600;
	letter-spacing:1px;
	padding: 13px 0;
}

div#footer ul.links-x4 a {
	color: #ffff00;
	text-decoration: none;
}

div#footer ul.links-x4 a:hover{
	color: #ffff66;
    text-decoration: underline;
}

address {
	clear: both;
	text-align: center;
	color: #FFFFFF;
	font-style: normal;
	margin-top: 4px;
	padding: 2px 0 15px 0;
	letter-spacing: 1px;
	word-spacing: 1px;
	background-color: #17354d;
}

/* =====================================
   Entry Form
===================================== */

.entry{
    background:#eef7fb;
}

.entry-form{
    max-width:980px;
    margin:0 auto;
    background:#fff;
    padding:60px;
    border-radius:24px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.entry-form h3{
    font-size:28px;
    color:#0098d8;
    margin:50px 0 25px;
    padding-bottom:12px;
    border-bottom:3px solid #e5f2f8;
}

.entry-form h3:first-child{
    margin-top:0;
}



/* ==========================
   Label
========================== */

.entry-form label{
    display:block;
    margin:22px 0 8px;
    font-weight:700;
    color:#444;
}


/* ==========================
   Input
========================== */

.entry-form input[type=text],
.entry-form input[type=email],
.entry-form input[type=tel],
.entry-form input[type=date],
.entry-form select,

.entry-form textarea{
    width:100%;
    padding:16px 18px;
    border:1px solid #d5dde5;
    border-radius:10px;
    background:#fff;
    font-size:16px;
    transition:.3s;
}

.entry-form textarea{
    resize:vertical;
    min-height:180px;
}


/* ==========================
   Focus
========================== */

.entry-form input:focus,
.entry-form select:focus,
.entry-form textarea:focus{
    border-color:#0098d8;
    box-shadow:0 0 0 5px rgba(0,152,216,.12);
    outline:none;
}


/* ==========================
   Grid
========================== */

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
}


/* ==========================
   Radio
========================== */

.radio-group{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:20px;
}

.radio-group label{
    display:flex;
    align-items:center;
    gap:10px;
    background:#0098d8;
    border-color:#0098d8;
	color: #ffffff;
    padding:18px;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
    border:2px solid transparent;
}

.radio-group label:hover{
    border-color:#0cccff;
    background:#0cccff;
}

/* 採用課金型・お試し　オレンジ色 */
.radio-group label.plan-performance {
    background: #ff6a2b;
    border-color: #ff6a2b;
    color: #fff;
}

/* 採用課金型・お試し ホバー */
.radio-group label.plan-performance:hover {
    background: #ff9900;
    border-color: #ff9900;
}

/* 未定 */
.radio-group label.plan-undecided {
    background: #ffcc00;
    border-color: #ffcc00;
    color: #000000;
}

/* 未定 ホバー */
.radio-group label.plan-undecided:hover {
    background: #fff386;
    border-color: #fff386;
}

.radio-group input{
    transform:scale(1.25);
}

/* ラジオボタン選択時の青い四角を消す */
.radio-group input[type="radio"]:focus {
    box-shadow: none;
    outline: none;
    border-color: initial;
}

.radio-group2{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:20px;
}

.radio-group2 label{
    display:flex;
    align-items:center;
    gap:10px;
    background:#ff6600;
    border-color:#ff6600;
	color: #ffffff;
    padding:18px;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
    border:2px solid transparent;
}

.radio-group2 label:hover{
    border-color:#ffcc00;
    background:#ffcc00;
}

.radio-group2 input{
    transform:scale(1.25);
}


/* ==========================
   Checkbox
========================== */

.agree{
    margin-top:40px;
    padding:25px;
    background:#FFF7F9;
    border-radius:12px;
}

.agree label{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:0;
    font-weight:500;
}

.agree input{
    margin-top:4px;
    transform:scale(1.2);
}


/* ==========================
   HR
========================== */

.entry-form hr{
    border:none;
    border-top:1px solid #e5edf2;
    margin:50px 0;
}


/* ==========================
   Submit
========================== */

.submit-area{
    text-align:center;
    margin-top:50px;
}

.submit-area .btn-main{
    border:none;
    cursor:pointer;
    font-size:20px;
    min-width:320px;
    padding:22px 50px;
}

.submit-area .btn-main:hover{
    transform:translateY(-5px);
}


/* ==========================
   Required
========================== */

.required{
    display:inline-block;
    background:#ff4b4b;
    color:#fff;
    font-size:12px;
    padding:3px 8px;
    border-radius:5px;
    margin-left:8px;
}


/* ==========================
   Placeholder
========================== */
::placeholder{
    color:#b8b8b8;
}


/* ==========================
   Error
========================== */

.error{
    color:#d60000;
    font-size:13px;
    margin-top:5px;
}


/* ==========================
   Form Animation
========================== */

.entry-form{
    animation:fadeUp .8s ease;
}


/* ==========================
   PageTop
========================== */

.pagetop{
    position:fixed;
    right:30px;
    bottom:30px;
    width:60px;
    height:60px;
    border-radius:50%;
    background:#0098d8;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    box-shadow:0 10px 30px rgba(0,0,0,.2);
    transition:.3s;
    opacity:0;
    visibility:hidden;
    z-index:999;
}

.pagetop.show{
    opacity:1;
    visibility:visible;
}

.pagetop:hover{
    background:#007bb0;
    transform:translateY(-5px);
}


/* ==========================
   FadeUp
========================== */

.fadeup{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.fadeup.active{
    opacity:1;
    transform:translateY(0);
}


/* ==========================
   Keyframes
========================== */

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/*=========================
 Hero Bottom
=========================*/

.hero-bottom{
    background:#fff;
    padding:45px 0 60px;
    text-align:center;
}

.hero-copy{
    display:grid;
    grid-template-columns:repeat(2, auto);
    gap:18px 60px;
    max-width:900px;
    margin:0 auto 40px;
    font-size:22px;
    font-weight:600;
	justify-content:center;
}

.hero-copy div{
    display:flex;
    align-items:center;
    justify-content:flex-start;
	min-width:260px;
}

.hero-copy div::before{
    content:"✅";
    color:#ff5c93;
    font-size:24px;
    margin-right:10px;
}

/* 最大4枠の項目 */
.hero-copy .hero-copy-special{
    display:flex;
    flex-direction:column;
    align-items:flex-start;
    justify-content:center;
}

/* チェックマークを最大4枠の文字の横に配置 */
.hero-copy .hero-copy-special::before{
    position:absolute;
    left:0;
    top:0;
}

/* 最大4枠まで掲載可能 */
.hero-copy .hero-copy-special strong{
    font-weight:700;
}

/* 例の部分 */
.hero-copy .hero-copy-special span{
    font-size:0.85em;
    font-weight:400;
    line-height:1.5;
    margin-left:0;
}

.hero-copy .hero-copy-special{
    display:block;
    min-width:260px;
}

.hero-copy-main{
    display:flex;
    align-items:center;
    font-weight:700;
}

.hero-copy-main .check-mark{
    font-size:24px;
    margin-right:10px;
}

.hero-copy-example{
    display:block;
    margin-left:34px;
    font-size:0.85em;
    font-weight:400;
    line-height:1.5;
    text-align:left;
}

.hero-copy2{
    display:grid;
    gap:18px 60px;
    max-width:900px;
    margin:0 auto 40px;
    font-size:22px;
    font-weight:600;
}

.hero-copy2 div{
    display:flex;
    align-items:center;
    justify-content:flex-start;
	line-height: 1.2;
}

.hero-copy2 div::before{
    content:"✅";
    color:#ff5c93;
    font-size:24px;
    margin-right:10px;
}

/* チェックマークを最大4枠の文字の横に配置 */
.hero-copy2 .hero-copy-special2::before{
    position:absolute;
    left:0;
    top:0;
}

/* =========================
   最大4枠まで掲載可能
========================= */

.hero-copy2 .hero-copy-special2{
    display:block;
    min-width:260px;
    text-align:left;
}

/* 最大4枠まで掲載可能 */
.hero-copy2 .hero-copy-main2{
    display:flex;
    align-items:center;
    justify-content:flex-start;
    font-weight:500;
    text-align:left;
}

/* チェックマーク */
.hero-copy2 .hero-copy-main2::before{
    content:"✅";
    font-size:24px;
    margin-right:10px;
    flex-shrink:0;
}

/* 例の部分 */
.hero-copy2 .hero-copy-example2{
    display:block;
    width:auto;
	margin:10px 10px 0 34px;
    font-size:0.75em;
    font-weight:400;
    color:#000000;
    line-height:1.5;
    text-align:left;
    box-sizing:border-box;
}

.hero-copy3{
    display:grid;
    grid-template-columns:repeat(2, auto);
    gap:18px 60px;
    max-width:900px;
    margin:0 auto;
    font-size:22px;
    font-weight:600;
	justify-content:center;
}

.hero-copy3 div{
    display:flex;
    align-items:center;
    justify-content:flex-start;
	min-width:260px;
}

.hero-copy3 div::before{
    content:"✅";
    color:#ff5c93;
    font-size:24px;
    margin-right:10px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

/* =====================================
   Responsive
===================================== */

/* ---------- Large Tablet ---------- */

@media screen and (max-width:1200px){
    .hero p{
        font-size:20px;
    }
    .occupation-grid{
        grid-template-columns:repeat(4,1fr);
    }
}


/* ---------- Tablet ---------- */

@media screen and (max-width:992px){
    section{
        padding:70px 0;
    }
    .section-title h2{
        font-size: clamp(20px, 4.5vw, 37px);
    }
    header .container{
        height:72px;
    }
    .hero{
        margin-top:72px;
    }
    .hero-inner{
        flex-direction:column;
        text-align:center;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-buttons{
        display:flex;
        justify-content:center;
        gap:20px;
        flex-wrap:wrap;
        }

    .about .container{
        flex-direction:column;
    }

    .about-image,
    .about-text{
        width:100%;
    }

    .flow-list{
        grid-template-columns:repeat(2,1fr);
    }
    .flow-item::after{
        display:none;
    }
    .occupation-grid{
        grid-template-columns:repeat(3,1fr);
    }
    .form-grid{
        grid-template-columns:1fr;
    }
    .radio-group{
        grid-template-columns:1fr;
    }
}



/* ---------- Smartphone ---------- */

@media screen and (max-width:768px){
    body{
        font-size:15px;
    }
    section{
        padding:60px 0;
    }
    .section-title{
        margin-bottom:40px;
    }
    .section-title h2{
        font-size:28px;
    }
	
    .logo img{
        height:58px;
    }
	
    .hero{
        min-height:650px;
        padding:70px 20px;
    }
	
    .hero p{
        font-size:18px;
    }
	
    .hero-buttons{
        flex-direction:column;
        align-items:center;
        width:100%;
    }
    .btn-main,
    .btn-sub{
        width:100%;
        max-width:320px;
        margin:0;
    }
    .occupation-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .flow-list{
        grid-template-columns:1fr;
    }
    .price-table table{
        min-width:650px;
    }
    .price-table{
        overflow-x:auto;
    }
    .cta{
        padding:70px 25px;
    }
    .cta h2{
        font-size:30px;
    }
    .cta p{
        font-size:17px;
    }
    .entry-form{
        padding:35px 20px;
    }
    .entry-form h3{
        font-size:22px;
    }
    .submit-area .btn-main{
        width:100%;
        min-width:auto;
    }
    .footer-menu{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }
    .pagetop{
        width:50px;
        height:50px;
        right:20px;
        bottom:20px;
        font-size:18px;
    }
}

/* ---------- Small Smartphone ---------- */

@media screen and (max-width:480px){
    .container{
        width:92%;
    }
    .hero p{
        font-size:16px;
    }
    .feature-card{
        padding:35px 20px;
    }
    .feature-card h3{
        font-size:20px;
    }
    .problem-box{
        padding:35px 20px;
    }
    .price-note{
        padding:20px;
    }
    .occupation-grid{
        grid-template-columns:1fr;
    }
    .step{
        width:70px;
        height:70px;
        font-size:14px;
    }
    .faq summary{
        font-size:17px;
        padding:18px;
    }
    .faq summary::after{
        right:18px;
    }
    .faq p{
        padding:0 18px 20px;
    }
}


/* ==========================================
   Hero 追加
========================================== */

.hero-red{
    display:inline-block;
    color:#e60012;
    font-weight:900;
    font-size:0.85em;
    background:#ff4488;
    padding:6px 18px;
    border-radius:30px;
    margin-top:10px;
}

.hero-price{
    margin:0;
	font-size: clamp(14px, 2.6vw, 26px);
    color:#fff;
    text-align:center;
    line-height:1.2;
    text-shadow:0 3px 15px rgba(0,0,0,.45);
}

.hero-price span{
    display:block;
	font-size: clamp(28px, 4vw, 50px);
    font-weight:900;
    color:#ffe300;
    text-shadow:0 3px 15px rgba(0,0,0,.45);	
    margin:13px 0 22px;   /* ←追加 */
    line-height:1;  /* ←追加 */
}


.hero-price small{
    display:block;
    font-size:16px;
    color:#666;
}

.hero-job{
    margin-top:30px;
    padding:18px;
    background:#FFF7F9;
    border-left:5px solid #ff3366;
    border-radius:8px;
    line-height:1.8;
}


@media (max-width:992px){
	
.hero-copy2{
    display:inline-grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    font-size:18px;
    text-align:left;
    margin:0 auto 40px;
}

.hero-copy2 div{
    justify-content:flex-start;
}

.about-text{
    text-align:center;
}
}

@media (max-width:768px){
	
.hero-copy{
    grid-template-columns:1fr;
    font-size:18px;
    gap:12px;
}
	
.hero-copy3{
    grid-template-columns:1fr;
    font-size:18px;
    gap:12px;
}

.hero-buttons{
    flex-direction:column;
    align-items:center;
}
}

/* ==========================================
   About
========================================== */

.about-text ul{
    margin-top:25px;
    padding-left:0;
}

.about-text li{
    list-style:none;
    margin-bottom:12px;
    padding-left:28px;
    position:relative;
}

.about-text li::before{
    content:"✅";
    position:absolute;
    left:0;
    color:#ff3366;
    font-weight:bold;
}

/* ==========================================
   Feature
========================================== */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:25px;
    margin-top:50px;
}

.feature-grid2{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr)); /* PC：4列 */
    gap:25px;
    margin-top:50px;
}

.feature-card{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-6px);
}

.feature-card i{
    font-size:42px;
    color:#ff3366;
    margin-bottom:20px;
}

.feature-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.feature-card p{
    line-height:1.5;
    color:#666;
}

.feature-card2{
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-card2:hover{
    transform:translateY(-6px);
}

.feature-card2 i{
    font-size:42px;
    color:#ff3366;
    margin-bottom:20px;
}

.feature-card2 h3{
    margin-bottom:15px;
    font-size:22px;
}

.feature-card2 p{
    line-height:1.5;
    color:#666;
}

/* ==========================================
   Occupation
========================================== */

.occupation-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:15px;
    margin-top:40px;
}

.occupation-grid div{
    background:#ff3366;
    color:#fff;
    padding:16px;
    text-align:center;
    border-radius:8px;
    font-weight:600;
}

/* ==========================================
   USER DATA
========================================== */

.user-data{
    background:#FFF5F8;
    padding:90px 0;
}

.data-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr)); /* PC：4列 */
    gap:25px;
    margin-top:50px;
}

.data-card{
    background:#fff;
    border-radius:15px;
    text-align:center;
    padding:35px 20px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.data-card h3{
    color:#ff3366;
    font-size: clamp(30px, 3.8vw, 42px);
    margin-bottom:15px;
}

.data-card p{
    line-height:1.5;
}

/* ==========================
   Tablet（768px以下）
========================== */

@media screen and (max-width:768px){
    .problem-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .feature-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .feature-grid2{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
    .data-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media screen and (max-width:480px){
    .problem-grid{
        grid-template-columns:1fr;
    }
    .feature-grid{
        grid-template-columns:1fr;
    }
    .feature-grid2{
        grid-template-columns:1fr;
    }
    .feature-card2{
        padding:35px 20px;
    }
    .feature-card2 h3{
        font-size:20px;
    }
    .data-grid{
        grid-template-columns:1fr;
    }
}


/* ==========================================
   Entry Guide
========================================== */

.entry-guide{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    margin-bottom:50px;
}

.guide-box{
    flex:1;
    min-width:260px;
    display:flex;
    align-items:center;
    background:#fff;
    padding:22px;
    border-radius:12px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.guide-number{
    width:60px;
    height:60px;
    background:#ff3366;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:bold;
    margin-right:18px;
	flex-shrink:0; 
}

/* ==========================================
   Form Note
========================================== */

.form-note{
    margin-top:30px;
    text-align:center;
    color:#666;
    line-height:1.5;
    font-size:14px;
}

/* ==========================================
   Bottom CTA
========================================== */

.cta-bottom{
    background:linear-gradient(135deg,#0098d8,#0bb9a6);
    color:#fff;
    padding:90px 20px;
    text-align:center;
}

.cta-bottom h2{
    font-size:42px;
    margin-bottom:25px;
    line-height:1.5;
}

.cta-bottom p{
    font-size:20px;
    line-height:1.7;
    margin-bottom:35px;
}

.cta-bottom .btn-main{
    display:inline-block;
    background:#ff6000;
    border:3px solid #ff6000;
    color:#fff;
    padding:16px 45px;
    border-radius:50px;
    font-weight:bold;
    text-decoration:none;
    transition:.3s;
}

.cta-bottom .btn-main:hover{
    background:#ffa700;
    border:3px solid #ffa700;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* ==========================================
   Responsive
========================================== */

@media (max-width:768px){

.hero-job{
    font-size:15px;
}
	
.hero-price{
    font-size:22px;
}

.hero-copy{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    font-size:18px;
    width:100%;
    text-align:left;
}

.hero-copy div{
    justify-content:flex-start;
}

.hero-copy2{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    font-size:18px;
    width:100%;
    text-align:left;
}

.hero-copy2 div{
    justify-content:flex-start;
}

.hero-copy3{
    display:grid;
    grid-template-columns:1fr;
    gap:10px;
    font-size:18px;
    width:100%;
    text-align:left;
}

.hero-copy3 div{
    justify-content:flex-start;
}

.occupation-grid{
    grid-template-columns:repeat(2,1fr);
}

.entry-guide{
    display:block;
}

.guide-box{
    margin-bottom:20px;
}

.cta-bottom h2{
    font-size:30px;
}
}



/* =====================================
   Utility
===================================== */

.text-center{
    text-align:center;
}
.mt-20{
    margin-top:20px;
}
.mt-40{
    margin-top:40px;
}
.mb-20{
    margin-bottom:20px;
}
.mb-40{
    margin-bottom:40px;
}
.hide{
    display:none;
}
.show{
    display:block;
}