/* =========================================
   ファーストビュー
========================================= */

.fv{
    padding:0;
	background : #fdfcfa;
}

.fv-inner{
    max-width:1280px;
    margin:0 auto;
    padding:0 20px;
}

.fv-img{
    display:block;
    width:100%;
    height:auto;
}

/* PC表示 */

.fv-pc{
    display:block;
}

.fv-sp{
    display:none;
}


/* ===========================
   SP
=========================== */

@media screen and (max-width:767px){

    .fv-inner{
        padding:0;
    }

    .fv-pc{
        display:none;
    }

    .fv-sp{
        display:block;
    }

}

/* =====================================
   PORTFOLIO
===================================== */

.demo-slider{
    width:90%;
    margin:50px auto;
}

.demo-item{
    position:relative;
    padding:0 10px 20px;
    text-align:center;
}

.demo-item img{
    width:100%;
    display:block;
    border-radius:14px;
    transition:.4s;
}

/* DEMOバッジ */

.demo-badge{

    position:absolute;
    top:14px;
    left:14px;

    z-index:5;

    background:#ffb84d;

    color:#fff;

    font-size:10px;
    font-weight:700;

    letter-spacing:.08em;

    padding:4px 8px;

    border-radius:5px;

    line-height:1;
}

/* ボタン */

.demo-btn{

    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:155px;
    height:36px;

    margin:14px auto 0;

    background:#009fb3;
    color:#fff;

    font-size:13px;
    font-weight:500;

    border-radius:30px;

    transition:.3s;
}

.demo-btn:hover{
    background:#007d8c;
}

.demo-btn,
.demo-btn:link,
.demo-btn:visited{
    color:#fff;
    text-decoration:none;
}

.demo-btn:hover,
.demo-btn:focus,
.demo-btn:active{
    color:#fff;
}

/* ボタンが無いものも高さを揃える */

.demo-item{
    display:flex;
    flex-direction:column;
}

.demo-item img{
    margin-bottom:auto;
}

/* ---------------------------------
   Slick
--------------------------------- */

.demo-slider .slick-slide{
    transition:.35s;
}

.demo-slider .slick-track{
    display:flex;
    align-items:flex-start;
}

/*==========================
  Slick Dots
==========================*/

.demo-slider{
    margin-bottom: 70px;
}

.demo-slider .slick-dots{
    position: static;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
    padding: 0;
}

.demo-slider .slick-dots li{
    width: 7px;
    height: 7px;
    margin: 0;
}

.demo-slider .slick-dots li button{
    width: 7px;
    height: 7px;
    padding: 0;
}

.demo-slider .slick-dots li button::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;

    width: 10px;
    height: 10px;

    border-radius: 50%;
    background: #cfcfcf;

    opacity: 1;

    font-size: 0;
    line-height: 0;
}

.demo-slider .slick-dots li.slick-active button::before{
    background: #009fb3;
}
/* =====================================
   PORTFOLIO Slider（SP）
===================================== */

@media screen and (max-width:767px){

    /* スライダー全体 */

    .demo-slider{
        margin-top:40px;
    }

    /* 左右の余白 */

    .demo-slider .slick-list{
        overflow: visible;
        padding: 0;
    }

    /* サムネイル */

    .demo-slider .slick-slide{
        padding:0 8px;
        opacity:.45;
        transform:scale(.90);
        transition:.35s;
    }

    /* 中央 */

    .demo-slider .slick-center{
        opacity:1;
        transform:scale(1.12);
    }

    .demo-item{
        padding:0;
    }

    .demo-item img{
        border-radius:16px;
        box-shadow:0 12px 30px rgba(0,0,0,.12);
    }

    /* ボタン */

        width:120px;
        height:26px;

        font-size:12px;
        font-weight:600;

        margin-top:12px;
}

    /* DEMO */

    .demo-badge{
        top:12px;
        left:12px;
        font-size:11px;
        padding:4px 10px;
    }

}

/*====================================
  PORTFOLIO Arrow（完成版）
====================================*/

.demo-slider{
    position:relative;
}

.demo-slider .slick-prev,
.demo-slider .slick-next{
    position:absolute !important;
    top:45% !important;
    transform:translateY(-50%) !important;

    width:34px !important;
    height:34px !important;

    display:flex !important;
    align-items:center;
    justify-content:center;

    background:rgba(0,159,179,.82) !important;
    border-radius:50%;
    box-shadow:0 2px 8px rgba(0,0,0,.15);

    z-index:999 !important;

    font-size:0 !important;
    line-height:1 !important;
    border:none;
    cursor:pointer;
}

.demo-slider .slick-prev{
    left:-20px !important;
}

.demo-slider .slick-next{
    right:-20px !important;
}

.demo-slider .slick-prev:before,
.demo-slider .slick-next:before{
    font-family:Arial, sans-serif !important;
    color:#fff !important;
    font-size:20px !important;
    line-height:1 !important;
    opacity:1 !important;
}

.demo-slider .slick-prev:before{
    content:"‹" !important;
}

.demo-slider .slick-next:before{
    content:"›" !important;
}

.demo-slider .slick-prev:hover,
.demo-slider .slick-next:hover,
.demo-slider .slick-prev:focus,
.demo-slider .slick-next:focus,
.demo-slider .slick-prev:active,
.demo-slider .slick-next:active{
    background:rgba(0,159,179,.82) !important;
    color:#fff !important;
    outline:none;
}

/* スマホは非表示 */
@media screen and (max-width:767px){

    .demo-slider .slick-prev,
    .demo-slider .slick-next{
        display:none !important;
    }

}


/* =========================================
   選ばれる理由
========================================= */

.reason {
    background:var(--sub-bg);
}

.reason-list {
	max-width : 880px;
	margin : 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
}

.reason-card {
    border-radius: 22px;
    overflow: hidden;
    background:var(--white);
    box-shadow:var(--shadow-card);
}

.reason-label {
    background:var(--main-color);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-align: center;
    padding: 12px 16px;
}

.reason-img {
    padding: 28px 0 0 0!important;
}

.reason-img img {
    width: 60%;
	margin : 0 auto;
}

.reason-card h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6;
    padding: 28px 30px 12px;
    color:var(--text);
}

.reason-card p {
    font-size: 15px;
    line-height: 1.9;
    padding: 0 30px 34px;
    color:var(--text-gray);
}

/* スマホ */
@media screen and (max-width: 767px) {

    .reason-list {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .reason-card {
        border-radius: 18px;
    }

    .reason-img {
        padding: 22px;
    }

    .reason-img img {
        max-height: none;
    }

    .reason-card h3 {
        font-size: 20px;
        padding: 24px 24px 10px;
    }

    .reason-card p {
        font-size: 15px;
        padding: 0 24px 28px;
    }
}

/*======================================
SERVICE
======================================*/

.service{

     background:var(--white);

}

.plan-box{

    max-width:900px;
    margin:70px auto 0;
    border-radius:20px;
    padding:50px;
    background:var(--sub-bg);
    box-shadow:var(--shadow);

}

.plan-head{

    text-align:center;
    margin-bottom:35px;

}

.plan-name{

    display:block;
    font-size:28px;
    font-weight:700;
    color:var(--text-light);
    margin-bottom:15px;

}

.plan-price{

    display:block;
    font-size:54px;
    font-weight:700;
    color:var(--main-color);
    line-height:1;

}

.plan-price span{

    font-size:22px;
    color:var(--text);

}

.plan-copy{

    text-align:center;
    font-size:17px;
    margin-bottom:45px;

}

.add-copy{
	text-align : left;
	margin-bottom : 20px;
}

.plan-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;

}

.plan-item{
    border-radius:15px;
    padding:25px 15px;
    text-align:center;
    transition:.3s;
    background:var(--white);
    border:1px solid var(--border);
    transition:var(--transition);

}

.plan-item:hover{

    transform:translateY(-5px);

}

.plan-item i{

    font-size:34px;
    color:var(--main-color);
    margin-bottom:18px;

}

.plan-item span{

    display:block;
    font-size:15px;
    line-height:1.6;
    font-weight:500;

}

.plan-note{

    margin-top:40px;
    font-size:14px;
    text-align:left;
    color:var(--text-light);

}

.taiou-note{
	text-align : center;
	margin-bottom : 25px;
}

/*========================
SP
========================*/

@media screen and (max-width:767px){

.plan-box{

    padding:30px 20px;

}

.plan-price{

    font-size:42px;

}

.plan-price span{

    font-size:18px;

}

.plan-copy{

    font-size:15px;

}

.plan-grid{

    grid-template-columns:repeat(2,1fr);

}

.plan-item{

    padding:20px 10px;

}

.plan-item i{

    font-size:28px;

}

}

/*======================================
OPTION
======================================*/

.option-plus{
    text-align:center;
    font-size:54px;
    font-weight:700;
    color:var(--main-color);
    line-height:1;
    margin:45px 0;
}

.option-box{
    max-width:1000px;
    margin:0 auto;
    background:var(--white);
    border:1px solid var(--border);
    border-radius:20px;
    padding:50px;
    box-shadow:var(--shadow);
}

.option-head{
    text-align:center;
    margin-bottom:45px;
}

.option-head h3{
    font-size:28px;
    font-weight:700;
    color:var(--text);
    line-height:1.6;
    margin-bottom:12px;
}

.option-head p{
    font-size:16px;
    line-height:1.8;
    color:var(--text-light);
}

.option-group{
    margin-top:45px;
}

.option-group:first-of-type{
    margin-top:0;
}

.option-group h4{
    font-size:20px;
    font-weight:700;
    color:var(--main-color);
    border-left:5px solid var(--main-color);
    padding-left:14px;
    margin-bottom:22px;
    line-height:1.5;
}

.option-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:18px;
}

.option-card{
    background:var(--sub-bg);
    border:1px solid var(--border);
    border-radius:15px;
    padding:24px 20px;
    transition:var(--transition);
}

.option-card:hover{
    transform:translateY(-4px);
}

.option-name{
    display:block;
    font-size:18px;
    font-weight:700;
    color:var(--text);
    line-height:1.6;
    margin-bottom:8px;
}

.option-text{
    display:block;
    font-size:15px;
    color:var(--text-light);
    line-height:1.6;
    min-height:42px;
}

.option-price{
    display:block;
    font-size:22px;
    font-weight:700;
    color:var(--main-color);
    line-height:1;
    margin-top:18px;
    text-align:right;
}

.option-note{
    margin-top:35px;
    font-size:13px;
    line-height:1.8;
    color:var(--text-light);
    text-align:left;
}

.option-message-title{

    margin:60px 0 15px;
    font-size:24px;
    font-weight:700;
    text-align:center;
    color:var(--color-primary);

}

.option-message{

    max-width:760px;
    margin:0 auto 35px;
    text-align:left;
    line-height:2;
    color:#666;

}

/* SP */
@media screen and (max-width:767px){

    .option-plus{
        font-size:44px;
        margin:35px 0;
    }

    .option-box{
        padding:30px 20px;
        border-radius:18px;
    }

    .option-head{
        margin-bottom:35px;
    }

    .option-head h3{
        font-size:23px;
    }

    .option-head p{
        font-size:15px;
        text-align:left;
    }

    .option-group{
        margin-top:38px;
    }

    .option-group h4{
        font-size:18px;
        margin-bottom:18px;
    }

    .option-grid{
        grid-template-columns:1fr;
        gap:14px;
    }

    .option-card{
        padding:22px 18px;
    }

    .option-text{
        min-height:auto;
    }

    .option-price{
        font-size:18px;
    }
}

/*==============================
制作の流れ
==============================*/

.flow{
    padding:100px 20px;
    background:var(--sub-bg);
}

.flow-inner{
    max-width:1200px;
    margin:0 auto;
}

.flow-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:60px;

}

.flow-card{

    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:18px;
    padding:35px 20px;
    text-align:center;
    position:relative;
    transition:.3s;
    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.flow-card:hover{

    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.flow-number{

    position:absolute;
    top:-15px;
    left:50%;
    transform:translateX(-50%);

    width:54px;
    height:54px;

    border-radius:50%;

    background:var(--color-primary);
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:18px;
    font-weight:700;

}

.flow-icon{

    width:80px;
    height:80px;

    border-radius:50%;

    background:rgba(236,117,155,.08);

    display:flex;
    justify-content:center;
    align-items:center;

    margin:25px auto 25px;

}

.flow-icon i{

    font-size:34px;
    color:var(--color-primary);

}

.flow-card h3{

    font-size:22px;
    margin-bottom:18px;

}

.flow-card p{

    font-size:15px;
    line-height:1.9;
    color:#666;
    margin:0;
    text-align : left;

}

/*==============================
Tablet
==============================*/

@media(max-width:1100px){

.flow-grid{

grid-template-columns:repeat(3,1fr);

}

}

/*==============================
SP
==============================*/

@media(max-width:768px){

.flow{

padding:70px 20px;

}

.flow-grid{

grid-template-columns:1fr;
gap:20px;
margin-top:40px;

}

.flow-card{

padding:30px 25px;

}

.flow-number{

width:48px;
height:48px;
font-size:16px;

}

.flow-icon{

width:70px;
height:70px;
margin:22px auto;

}

.flow-icon i{

font-size:28px;

}

.flow-card h3{

font-size:20px;

}

}

/*======================================
FAQ
======================================*/

.faq{

    padding:100px 20px;
    background:#ffffff;

}

.faq-inner{

    max-width:1000px;
    margin:0 auto;

}

.faq-list{

    margin-top:60px;

}

.faq-item{

    background:var(--white);
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:var(--shadow-card);
    margin-bottom:20px;
    overflow:hidden;

}

.faq-item summary{

    list-style:none;
    cursor:pointer;

    display:flex;
    align-items:center;
    gap:20px;

    padding:24px;

    position:relative;

}

.faq-item summary::-webkit-details-marker{

    display:none;

}

.faq-label{

    width:42px;
    height:42px;

    border-radius:50%;

    background:var(--main-color);
    color:#fff;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;

    font-size:18px;
    font-weight:700;

}

.faq-question{

    flex:1;

    font-size:18px;
    font-weight:700;
    color:var(--text);
    line-height:1.7;

}

.faq-answer{

    display:flex;
    align-items:flex-start;
    gap:20px;

    padding:0 24px 24px;

}

.faq-label-a{

    background:#efe6dc;
    color:var(--main-color);

}

.faq-answer p{

    flex:1;

    margin:8px 0 0;

    font-size:16px;
    line-height:2;
    color:var(--text-light);

}

/*==============================
SP
==============================*/

@media(max-width:768px){

.faq{

    padding:70px 20px;

}

.faq-list{

    margin-top:40px;

}

.faq-item summary{
    padding:20px;
    gap:15px;
}

.faq-label{
    width:36px;
    height:36px;
    font-size:16px;
}

.faq-question{
    font-size:16px;
}

.faq-answer{
    gap:15px;
    padding:0 20px 20px;
}

.faq-answer p{
    font-size:16px;
    line-height:1.9;
}

}
/*======================================
CTA
======================================*/

.cta{
    padding:100px 20px;
    background:var(--sub-bg);
}

.cta-inner{
    max-width:1000px;
    margin:0 auto;
}

.cta-grid{
    margin-top:60px;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.cta-card{

    display:flex;
    align-items:center;

    gap:24px;

    padding:24px 30px;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:18px;

    box-shadow:var(--shadow-card);

    text-decoration:none;

    transition:var(--transition);

}

.cta-card:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.cta-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:rgba(140,107,79,.08);

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;

}

.cta-icon i{

    font-size:30px;
    color:var(--main-color);

}

.cta-body{

    flex:1;

}

.cta-body h3{

    margin:0 0 8px;

    font-size:22px;

    color:var(--text);

}

.cta-body p{

    margin:0;

    font-size:16px;

    line-height:1.8;

    color:var(--text-light);

}

.cta-arrow{

    color:var(--main-color);

    font-size:20px;

}

@media(max-width:768px){

.cta{

    padding:70px 20px;

}

.cta-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.cta-card{

    padding:24px 20px;
    gap:16px;

    flex-direction:column;
    align-items:center;
    text-align:left;
	font-weight : 600;
	color : #1191c6;

}
.cta-icon{

    width:56px;
    height:56px;

}

.cta-icon i{

    font-size:24px;

}

.cta-body{

    width:100%;

}

.cta-body h3{

    margin:0 0 10px;
    font-size:18px;
    font-weight:600;
	text-align : center;

}

.cta-body p{

    font-size:16px;
    line-height:1.7;
	text-align : left;
	margin-bottom : 10px;

}

.cta-arrow{

    display:none;

}

}