body{margin: 0;}

/*ヘッダー*/
header {
    height: 86px;
    padding: 0 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn-download{
    width: 208px;
    height: 54px;
    padding: 12px 24px;      /* 上下12px 左右24px */
    border: none;
    border-radius: 4px;
    background-color: #FFBA3B; 
    color: #fff;

    font-weight: 700;        /* 太字 */
    font-size: 20px;
    line-height: 150%;       /* 1.5倍行間 */
    letter-spacing: 0px;     /* 字間そのまま */
    box-shadow:
    4px 4px 8px rgb(0 0 0 / 24%);
    transition: box-shadow 0.3s;
    transition: background-color 0.3s;
    cursor:pointer
}
.btn-download:hover {
    box-shadow:none;
    background-color: #FFB233;
}
main .top{
    width: 100%;
    height: auto;
    background: linear-gradient(
        to bottom,     /* 上から下方向 */
        #F0F8F9 0%,    /* 上から水色 */
        #F0F8F9 92%,   /* 下8%まで水色 */
        white 92%,     /* 下8%から白 */
        white 100%     /* 下端まで白 */
    );
    position: relative;
    
}
main .top::before{
    content: "";
    position: absolute;
    top: 0;
    left: 35px;
    transform: translateX(-50%);
    width: 30%;
    height: 100px;
    background: #85D2DC99;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 1;

}
main .top::after{
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    left: 75%;
    transform: translateX(-50%);
    width: 50%;
    height: 100%;
    background: #85D2DC99;
    clip-path: polygon(0 50%, 80% 20%, 100% 60%, 100% 92%, 30% 92%);
    z-index: 1; 
}
.top .box{
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-template-areas: "left right"; 
    gap: 15px;
    
}
.top .text{
    grid-area: left;
    margin: 15% auto;
    z-index: 2;
}
.top h2,.top h1,.top p{
    margin: 0;
    z-index: 2;
}
.top p{
    margin-bottom: 20px;
}
.top .btn-download{
    width: 60%;
}
.top .image{
    grid-area: right;
    width: 100%;
    height: auto;
    padding-top: 50px;
    margin: 0 auto;
    z-index: 2;
}
.top .image img{
    width: 100%;
    height: auto;
    z-index: 2;

}

/*こんなお悩み…*/
.nayami{
    position: relative; 
}
.nayami .title{
    text-align: center;
}
.nayami h2{
    font-size: 28px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1em;
}
.nayami h2:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;/*線の上下位置*/
    display: inline-block;
    width: 60px;/*線の長さ*/
    height: 5px;/*線の太さ*/
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);/*位置調整*/
    background-color: black;/*線の色*/
    border-radius: 2px;/*線の丸み*/
}
.nayami img{
    position: absolute;
    width: 150px;
    height: auto;
    left: 70%;
    top: 5%;
}
.nayami .text{
    width: 70%;
    margin: 20px auto;
    margin-bottom: 50px;
    background-color: #DFDFDF;
    border-radius: 54px;
    padding: 45px;
}
.nayami p{
    margin: 15px 0 10px 0;
}
.nayami ul{
    margin: 0;
    display: flex;
    flex-direction: column; /* 縦並びにする */
    gap: 5px;              /* 項目同士の間隔 */
}
.nayami li{
    display: flex;
    align-items: center;
    list-style:none;
    gap: 8px;
}
.nayami .material-icons-outlined {
  vertical-align: middle;
  margin: 0;
}


/*…できます！*/
.dekimasu{
    background-color: #F0F8F9;
    padding-bottom: 30px;
    margin-bottom: 30px;
}
.dekimasu .back{
    height: 60px;
    background: #fff;
    clip-path: polygon(15% 0, 50% 100%, 85% 0);;

}
.dekimasu .title{
    padding-top: 15px;
    text-align: center;
}
.dekimasu h2{
    font-size: 28px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5em;
}
.dekimasu .ltext{
    font-size: 36px;
}
.dekimasu .grtext{
    color: #008742;
}
.dekimasu .wavy{
    text-decoration:underline wavy #FFC526;
}
.dekimasu .box{
    width: 90%;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;  
    gap: 20px;
}
.dekimasu .image{
    width: 95%;
    margin: 0 auto;
}
.dekimasu img{
    width: 100%;
    height: auto;

}
.dekimasu .text{
    font-size: 20px;
    line-height: 1.5em;
}
.dekimasu .text p{
    margin: 0;
}
.dekimasu .list{
    font-size: 14px;
    line-height: 1.5em;
}
.dekimasu .list p{
    margin-bottom: 0;
}
.dekimasu .list ul{
    margin-top: 0;
}
.dekimasu .list li{
    width: 100%;
}


/*3つの理由*/
.riyu{
    margin-bottom: 50px;
}
.riyu .title{
    text-align: center;
}
.riyu h2{
    font-size: 28px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5em;
}
.riyu h2:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;/*線の上下位置*/
    display: inline-block;
    width: 60px;/*線の長さ*/
    height: 5px;/*線の太さ*/
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);/*位置調整*/
    background-color: black;/*線の色*/
    border-radius: 2px;/*線の丸み*/
}
.riyu .ltext{
    font-size: 48px;
    color: #FFC526;
}
.riyu .item_image{
    margin: 0;
    margin-bottom: 20px;
    width: 100%;           /* 横幅を固定 */
    aspect-ratio: 16 / 9;   /* 横:縦の比率 */
    overflow: hidden;
    border: solid 1px #D9D9D9;
}
.riyu img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.riyu .items{
    width: 85%;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;  
    gap: 20px;
}
.riyu .item_title_box{
    display: flex;
    align-items: center; 
    justify-content: center;
    height: 60px;
}
.riyu .item_title{
    text-align: center;
    font-size: 18px;
    line-height: 1.5em;
    font-weight: 700;
}
.riyu .text{
    font-size: 16px;
    line-height: 1.5em;
}


/*サービス詳細*/
.service{
    background-color: #F0F8F9;
    padding-bottom: 70px;
    background-image: linear-gradient(135deg, #fff 5%, transparent 0),      /*右上*/
                    linear-gradient(-135deg, #fff 5%, transparent 0);     /*左上*/
}
.service .title{
    text-align: center;
    padding-top: 30px;
}
.service h2{
    font-size: 28px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5em;
}
.service h2:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;/*線の上下位置*/
    display: inline-block;
    width: 60px;/*線の長さ*/
    height: 5px;/*線の太さ*/
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);/*位置調整*/
    background-color: black;/*線の色*/
    border-radius: 2px;/*線の丸み*/
}
.service .title p{
    font-size: 24px;
    line-height: 1.5em;
}
.service .col-2{
    width: 87%;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;  
    gap: 25px;
    margin-bottom: 25px;
}
.service .col-3{
    width: 87%;
    height: auto;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;  
    gap: 10px;
    
}
.service .item{
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0px 4px 4px 0px #00000040;

}
.service .item_image{
    margin: 0;
    width: 35%;
    height: auto;
}
.service img{
    width: 100%;
    height: auto;
    object-fit: cover;
}
.service .text_box{
    width: 100%;
    padding-left: 20px;
}
.service .item_title{
    font-size: 28px;
    line-height: 1.5em;
    font-weight: 600;
    margin-right: 5%;
    margin-bottom: 15px;
}
.service li{
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
}
.service .col-3 .item_title{
    width: 65%;
    text-align: center;
    font-size: 24px;
    margin:0;
}


/*期待できる効果*/
.kouka{
    width: 100%;
    margin-top: 30px;
    padding-bottom: 70px;

}
.kouka .title{
    text-align: center;
}
.kouka h2{
    font-size: 28px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5em;
}
.kouka h2:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;/*線の上下位置*/
    display: inline-block;
    width: 60px;/*線の長さ*/
    height: 5px;/*線の太さ*/
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);/*位置調整*/
    background-color: black;/*線の色*/
    border-radius: 2px;/*線の丸み*/
}
.kouka .box{
    width:90%;
    margin: 0 auto;
    display: flex;
    justify-content: center; /* 横方向中央 */

}
.kouka .text{
    width: fit-content;
    position: relative;
}
.kouka ul{
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column; /*縦並びにする  */
    gap: 5px;              /*項目同士の間隔  */
} 
.kouka li{
    font-size: 21px;
    font-weight: 700;
    display: flex;
    align-items: center;
    list-style:none;
    gap: 8px;
}
.kouka .maru{
    display: inline-flex;           /* 中央揃えにするためにFlexbox */
    justify-content: center;        /* 横中央 */
    align-items: center;            /* 縦中央 */
    width: 1.5em;
    height: 1.5em;
    background-color: #FFC52687;
    border-radius: 50%;/*角丸*/
}
.kouka .material-icons-outlined {
    margin: 0;
}
.kouka img{
    width: 126px;
    height: auto;
    position: absolute;
    top: -10%;
    right: -10%;
}





/*導入事例*/
.jirei{
    background-color: #F0F8F9;
    padding-top: 30px;
    padding-bottom: 70px;
}
.jirei .title{
    text-align: center;
    margin-bottom: 20px;
}
.jirei h2{
    font-size: 28px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5em;
}
.jirei h2:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;/*線の上下位置*/
    display: inline-block;
    width: 60px;/*線の長さ*/
    height: 5px;/*線の太さ*/
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);/*位置調整*/
    background-color: black;/*線の色*/
    border-radius: 2px;/*線の丸み*/
}
.jirei .delica{
    background-color: #fff;
    width: 65%;
    margin: 0 auto;
    box-shadow: 0px 0.36px 1.78px 0px #0000001F;
    box-shadow: 0px 0.71px 0.71px 0px #00000024;
    box-shadow: 0px 1.07px 0.36px -0.71px #00000033;


}
.jirei img{
    width: 100%;
    height: auto;
}
.jirei .img2{
    display: none;
}
.jirei .desc{
    margin: 8px;
    padding-bottom: 13px;
}
.jirei .name{
    font-size: 16px;
    margin: 0;
}
.jirei .headline{
    margin: 10px 0;
    font-size: 16px;
    font-weight: 700;
}
.jirei .text{
    margin: 0;
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.5em;
    color: #666666;

}
.jirei .linkbox{
    text-align: right;
    padding-right: 4px; 
}
.jirei .more{
    font-size: 14px;
    color: #666666;
    text-decoration: none;
}
.jirei .more:hover {
    color: #000;
    font-weight: 500;
    cursor:pointer
}

/*ご利用の流れ*/
.nagare{
    margin-top: 40px;
    padding-bottom: 70px;
}
.nagare .title{
    text-align: center;
}
.nagare h2{
    font-size: 28px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5em;
}
.nagare h2:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;/*線の上下位置*/
    display: inline-block;
    width: 60px;/*線の長さ*/
    height: 5px;/*線の太さ*/
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);/*位置調整*/
    background-color: black;/*線の色*/
    border-radius: 2px;/*線の丸み*/
}

/*▽ご利用の流れフロー▽*/
.flow_design {
    width: 60%;
    margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.flow {
  padding-left: 0;
}
.flow > li {
  list-style-type: none;
  position: relative;
  padding-left: 50px;
}
.flow > li:not(:last-child) {
  padding-bottom: 10px;
}
.flow > li .icon {
  width: 64px;
  height: 64px;
  line-height: 64px;
  font-size: 32px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  background: #000;
  color: #fff;
  position: absolute;
  left: 0;
}
.flow > li:not(:last-child)::before {
  content: '';
  background: #000;
  width: 1px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left:31px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);

}
.flow > li dl dt {
    margin: 10px;
    margin-left: 30px ;
    font-size: 25px;
    font-weight: 700;
    height: 64px;
    line-height: 64px;
}
.flow > li dl dd {
    margin-left: 30px;
    font-size: 16px;
    line-height: 1.5em;
}
/*▲ご利用の流れフロー▲*/

.nagare p{
    margin: 30px;
    font-size: 16px;
    text-align: center;
}
.nagare img{
    position: absolute;
    width: 25%;
    height: auto;
    right: -15%;
    bottom: -15%;
}


/*よくあるご質問*/
.question{
    background-color: #F0F8F9;
    padding-top: 50px;
    padding-bottom: 70px;
}
.question .title{
    text-align: center;
}
.question h2{
    font-size: 28px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 1.5em;
}
.question h2:before {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -20px;/*線の上下位置*/
    display: inline-block;
    width: 60px;/*線の長さ*/
    height: 5px;/*線の太さ*/
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);/*位置調整*/
    background-color: black;/*線の色*/
    border-radius: 2px;/*線の丸み*/
}
.question .QA{
    width: 74%;
    margin: 0 auto;
    margin-top: 20px;
}

/*▽QAアコーディオン▽*/
.accordion {
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
    background-color: #fff;
}

.accordion summary {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;  
    position: relative;
    padding: 1em 2em;
    color: #000;
    font-weight: 600;
    cursor: pointer;
}


.accordion summary::-webkit-details-marker {
    display: none;
}

.accordion summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 0.3em;
    height: 0.3em;
    border-bottom: 0.2em solid #000;
    border-right: 0.2em solid #000;
    content: '';
    transition: transform .3s;
    margin-left: auto; /* 右端に配置 */
    flex-shrink: 0; 
}

.accordion[open] summary::after {
    transform: rotate(225deg);
}

.accordion p {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px; 
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
    margin: 0 auto;
}

.accordion[open] p {
    transform: none;
    opacity: 1;
    border-top: 1px solid #ccc;
    padding-top: 1em; /* 線とテキストの間隔 */
}
/*▲QAアコーディオン▲*/

.question .Q{
    display: inline-flex;          /* 中央揃えのため */
    justify-content: center;       /* 横中央 */
    align-items: center;           /* 縦中央 */
    width: 40px;                   /* 正方形の幅 */
    height: 40px;                  /* 正方形の高さ */
    background-color: #000;     /* 背景色 */
    color: #fff;                   /* 文字色 */
    font-weight: 700;
    font-size: 24px;
    flex-shrink: 0;                /* 縮まらないように */
}
.question .text{
    font-size: 20px;
    font-weight: 700;
}
.question p{
    font-size: 16px;
    line-height: 1.8em;
}
.question .A{
    display: inline-flex;          /* 中央揃えのため */
    justify-content: center;       /* 横中央 */
    align-items: center;           /* 縦中央 */
    width: 40px;                   /* 正方形の幅 */
    height: 40px;                  /* 正方形の高さ */
    background-color: #fff;     /* 背景色 */
    color: #000;                   /* 文字色 */
    font-weight: 700;
    font-size: 24px;
    flex-shrink: 0; 
}


/*資料ダウンロード*/
.form .formrun-embed{
    margin: 50px auto;
    height: auto;
}


/*フッター*/
.footer{
    background-color: #F0F8F9;
    padding-top: 20px;

}
.footer .footerbox{
    width: 75%;
    margin: 0 auto;
    padding: 40px 0;
}
.footer img{
    width: 22%;
    height: auto;
}
.footer h3{
    margin: 0;
    margin-left: 2%;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5em;

}
.footer .list{
    margin-top: 10px;
}
.footer .list ul {
    list-style: none; 
    margin: 0;
    padding: 0;
    display: flex;      /* 横並び */
    gap: 2%;
}
.list li {
    width: 23%;
}

.footer .list li a {
    display: flex;              /* テキストとアイコンを横並び */
    align-items: center;        /* 垂直方向を中央揃え */
    justify-content: space-between; /* テキストは左、アイコンは右 */
    padding: 10px 20px;      /* 内側の余白 */
    padding-right: 5px;
    border-bottom: 1px solid #DDDDDD;  /*枠線 */
    background: #F0F8F9;        /* 背景色 */
    color: #000;             /* 文字色 */
    text-decoration: none;   /* 下線消す */
    font-size: 14px;
    transition: background-color 0.3s;
    position: relative;  
    cursor:pointer
}
    
.footer .list li a::after {
    content: "";
    position: absolute;
    bottom: 0;         /* 下端に配置 */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #A8C8CC; /* アニメーションで出る線の色 */
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.footer .list li a:hover::after {
    transform: scaleX(1);
}
.footer .Copyright_BOX{
    padding: 3px 0;
    background-color: #000;
    color: #fff;
    text-align: center;
    font-size: 12px;
    /* line-height: 1.5em; */
}

/**/
@media screen and (max-width: 1024px){
    /*ヘッダー*/
    header {
        height: 80px;
    }
    .btn-download{
        font-size: 18px;
        text-align: center;
    }
    .top .box{
        gap: 10px;

    }
    .top h2{
        font-size: 20px;
    }
    .top h1{
        font-size: 28px;
    }   
    .top p{
        font-size: 16px;
        margin-bottom: 15px;
    }
    .top .btn-download{
        width: 60%;
        height: 45px;
        margin: 0 auto;
        line-height: 45px;
        padding: 0; 
    }

    /*…できます！*/
    .dekimasu .box{
        display: block;
    }
    .dekimasu .text{
        margin-top: 20px;
    }



    /*サービス詳細*/
    .service .title p{
        font-size: 20px;
        line-height: 1.5em;
    }
    .service .item{
        margin-bottom: 15px;
    }
    .service .col-2{
        display: block;
        margin-bottom: 0;
    }
    .service .col-2 .item_image{
        width: 25%;

    }
    .service .item_title{
        font-size: 24px;
        margin-bottom: 13px;
    }
    .service li{
        font-size: 18px;
    }
    .service .col-3 .item_title{
        font-size:20px;
    }

    /*期待できる効果*/
    .kouka li{
        font-size: 18px;

    }
    .kouka img{
        width: 110px;
        height: auto;
        position: absolute;
        top: -60%;
        right: -2%;
    }
    .kouka .material-icons-outlined {
        font-size: 15px;
    }

    /*導入事例*/
    .jirei .delica{
        width: 75%;
    }

    /*ご利用の流れ*/
    .flow_design{
        width: 75%;
    }

    /*フッター*/
    .footer .footerbox{
        width: 85%;
        margin: 0 auto;
        padding: 40px 0;
    }
    .footer .list li a {
        padding: 5px 10px;      /* 内側の余白 */
    }
        


}
/*スマホサイズ*/
@media screen and (max-width: 750px){
    /*ヘッダー*/
    header {
        margin-top: 10px;
        height: 56px;
        padding: 0 5%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    header img{
        width: 40%;
        height: auto;
    }
    .btn-download{
        width: 35%;
        height: 32px;
        text-align: center;
        padding: 7px 0;      /* 上下12px 左右24px */
        border-radius: 2.5px;

        font-size: 12px;
        line-height: 150%;       /* 1.5倍行間 */
        letter-spacing: 0px;     /* 字間そのまま */
    }
     
    /*TOP*/
    main .top{
        padding-bottom: 20px;
        background: linear-gradient(
                    to bottom,   /* 上から下方向 */
                    #F0F8F9 0%,  /* 上端から */
                    #F0F8F9 100% /* 下端まで水色 */
                    );
    }
    main .top::before{
        top: 0;
        left: 35px;
        width: 50%;
        height: 100px;
        clip-path: polygon(0 0, 100% 0, 50% 100%);
    }
    main .top::after{
        bottom: 0;
        right: 0;
        left: 70%;
        width: 60%;
        height: 100%;
        clip-path: polygon(0 85%, 50% 50%, 100% 70%, 100% 100%, 30% 100%);
    }
    .top .box{
        position: relative;
        width: 75%;
        display: block;
        z-index: 2;
    }
    .top .image{
        padding-top: 20px;
    }
    .top .text{
        margin: 0 auto;
    }
    .top h2{
        font-size: 14px;
        font-weight: 700;
        line-height: 1.5em;
    }
    .top h1{
        font-size: 22.5px;
        font-weight: 700;
        line-height: 1.5em;
    }
    .top p{
        font-size: 12px;
        line-height: 1.5em;
        margin-bottom: 0;
    }
    .top .btn-download{
        width: 35%;
        height: 28px;
        padding: 5px 0;
        text-align: center;
        display: block;       /* ボタンをブロック要素に */
        margin-left: auto;    /* 左余白を自動拡大 → 右寄せ */
        margin-right: 0;      /* 念のため明示 */
        border-radius: 3px;
        font-size: 10px;
        line-height: 100%;
    }
    
    /*こんなお悩み…*/
    .nayami{
        position: relative; 
    }
    .nayami h2{
        font-size: 21px;
    }
    .nayami h2:before {
        width: 30px;/*線の長さ*/
        height: 3px;/*線の太さ*/
    }
    .nayami img{
        position: absolute;
        width: 25%;
        height: auto;
        right: 10%;
        top: 7%;
    }
    .nayami .text{
        width: 88%;
        border-radius: 50px;
        padding: 23px 10px;
        margin-bottom: 20px;
    }
    .nayami p{
        margin: 18px 0 10px 0;
        font-size: 13.5px;
        font-weight: 700;
    }
    .nayami ul{
        padding: 0;
        gap: 3px;              /* 項目同士の間隔 */
    }
    .nayami li{
        font-size: 13.5px;
        line-height: 1.5em;
    }

    /*…できます！*/
    .dekimasu{
        margin-bottom: 0;
    }
    .dekimasu .back{
        height: 40px;
        clip-path: polygon(0 0, 50% 100%, 100% 0);
    }
    .dekimasu .title{
        padding-top: 0;
    }
    .dekimasu h2{
        margin-top: 15px;
        font-size: 21px;
    }
    .dekimasu .ltext{
        font-size: 27px;
    }
    .dekimasu .text{
        font-size: 15px;
    }
    .dekimasu .text>p{
        margin-bottom: 5px;
    }
    .dekimasu .list{
        font-size: 10.5px;
    }

    /*3つの理由*/
    .riyu{
        margin-bottom: 50px;
    }
    .riyu h2{
        font-size: 21px;
    }
    .riyu h2:before {
        width: 30px;/*線の長さ*/
        height: 3px;/*線の太さ*/
    }
    .riyu .ltext{
        font-size: 36px;
    }
    .riyu .item_image{
        margin: 0;
        margin-bottom: 20px;
        width: 100%;           /* 横幅を固定 */
        aspect-ratio: 16 / 9;   /* 横:縦の比率 */
        overflow: hidden;
        border: solid 1px #D9D9D9;
    }
    .riyu img{
        width: 100%;
        height: auto;
        object-fit: cover;
    }
    .riyu .items{
        width: 85%;
        height: auto;
        margin: 0 auto;
        display: block;
    }
    .riyu .item_title_box{
        display: flex;
        align-items: center; 
        justify-content: center;
        height: 60px;
    }
    .riyu .item_title{
        margin-top: 0;
        text-align: center;
        font-size: 18px;
        line-height: 1.5em;
        font-weight: 700;
    }
    .riyu .text{
        margin-top: 0;
        margin-bottom: 30px;
        font-size: 16px;
        line-height: 1.5em;
    }







    /*サービス詳細*/
    .service{
        background-color: #F0F8F9;
        padding-bottom: 30px;
        background-image: linear-gradient(135deg, #fff 4%, transparent 0),      /*右上*/
                        linear-gradient(-135deg, #fff 4%, transparent 0);     /*左上*/
    }
    .service .title{
        text-align: center;
        padding-top: 30px;
    }
    .service h2{
        font-size: 21px;
        margin-top: 0;
    }
    .service h2:before {
        width: 30px;/*線の長さ*/
        height: 3px;/*線の太さ*/
    }
    .service .title p{
        font-size: 12px;
    }
    .service .col-2{
        width: 90%;
        display: block;
        margin-bottom: 0;

    }
    .service .col-3{
        width: 90%;
        display: block;       
    }
    .service .item{
        margin-bottom: 10px;
    }
    .service .item_image{
        width: 25%;
    }
    .service .text_box{
        padding-left: 22px;
    }
    .service .item_title{
        font-size: 18px;
        margin-top: 10px;
        margin-bottom: 5px;
    }
    .service ul{
        margin-top: 0;
    }
    .service li{
        font-size: 12px;
    }
    .service .col-3 .item_image {
        padding-left: 10px;
        display: flex;
        align-items: center; 
    }
    .service .col-3 .br br{
        display: none;
    }
    .service .col-3 .item_title{
        width: 100%;
        font-size: 14px;
    }

    /*期待できる効果*/
    .kouka{
        margin-top: 30px;
        padding-bottom: 20px;
    }
    .kouka .title{
        padding-top: 0;
        margin-bottom: 10px;
    }
    .kouka h2{
        font-size: 21px;
        margin-top: 0;

    }
    .kouka h2:before {
        width: 30px;/*線の長さ*/
        height: 3px;/*線の太さ*/
    }
    .kouka li{
        font-size: 10.5px;
    }
    .kouka .material-icons-outlined {
        font-size: 11px;
    }
    .kouka img{
        width: 20%;
        height: auto;
        position: absolute;
        top: -70%;
        right: -1%;
    }

    /*導入事例*/
    .jirei{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .jirei .title{
        padding-top: 0;
        margin-bottom: 10px;
    }
    .jirei h2{
        font-size: 21px;
        margin-top: 0;

    }
    .jirei h2:before {
        width: 30px;/*線の長さ*/
        height: 3px;/*線の太さ*/
    }

    .jirei .delica{
        width: 87%;
    }
    .jirei .img1{
        display: none;
    }
    .jirei .img2{
        display: block;
    }
    .jirei .desc{
        margin: 5px;
        padding-bottom: 3px;
    }
    .jirei .name{
        font-size: 12px;
    }
    .jirei .headline{
        margin: 7px 0;
        font-size: 12px;
    }
    .jirei .text{
        margin-bottom: 10px;
        font-size: 10.5px;
    }
    .jirei .more{
        font-size: 10.5px;
    }

    /*ご利用の流れ*/
    .nagare{
        margin-top: 40px;
        padding-bottom: 10px;
    }
    .nagare .title{
        padding-top: 0;
        margin-bottom: 0;
    }
    .nagare h2{
        font-size: 21px;
        margin-top: 0;

    }
    .nagare h2:before {
        width: 30px;/*線の長さ*/
        height: 3px;/*線の太さ*/
    }

    /*▽ご利用の流れフロー▽*/
    .flow_design {
        width: 82%;
    }
    .flow > li {
        list-style-type: none;
        position: relative;
        padding-left: 40px;
    }
    .flow > li:not(:last-child) {
        padding-bottom: 5px;
    }
    .flow > li .icon {
        width: 36px;
        height: 36px;
        line-height: 36px;
        font-size: 18px;
    }
    .flow > li:not(:last-child)::before {
        left:18px;
    }
    .flow > li dl dt {
        margin: 0;
        margin-left: 5px ;
        font-size: 14px;
        height: 36px;
        line-height: 36px;
    }
    .flow > li dl dd {
        margin-left: 5px;
        font-size: 9px;
    }
    /*▲ご利用の流れフロー▲*/
    .nagare p{
        margin: 15px;
        font-size: 9px;
    }
    .nagare img{
        display: none;
    }


    /*よくあるご質問*/
    .question{
        padding-top: 30px;
        padding-bottom: 30px;
    }
    .question .title{
        padding-top: 0;
        margin-bottom: 0;
    }
    .question h2{
        font-size: 21px;
        margin-top: 0;

    }
    .question h2:before {
        width: 30px;/*線の長さ*/
        height: 3px;/*線の太さ*/
    }
    .question .QA{
        width: 90%;
        margin-top: 10px;
    }
    /*▽QAアコーディオン▽*/
    .accordion summary {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 15px;  
        position: relative;
        padding: 1em 2em;
        color: #000;
        font-weight: 600;
        cursor: pointer;
    }

    .accordion summary::after {
        transform: translateY(-25%) rotate(45deg);
        width: 0.3em;
        height: 0.3em;
        border-bottom: 0.2em solid #000;
        border-right: 0.2em solid #000;
        content: '';
        transition: transform .3s;
        margin-left: auto; /* 右端に配置 */
        flex-shrink: 0;
    }

    /*▲QAアコーディオン▲*/
    .question .Q{
        width: 24px;                   /* 正方形の幅 */
        height: 24px;                  /* 正方形の高さ */
        font-size: 13.5px;
    }
    .question .text{
        font-size: 12px;
    }
    .question p{
        padding: 16px 32px;
        font-size: 10px;
    }
    .question .A{
        display: inline-flex;          /* 中央揃えのため */
        justify-content: center;       /* 横中央 */
        align-items: center;           /* 縦中央 */
        width: 24px;                   /* 正方形の幅 */
        height: 24px;                  /* 正方形の高さ */
        background-color: #fff;     /* 背景色 */
        color: #000;                   /* 文字色 */
        font-weight: 700;
        font-size: 13.5px;
        flex-shrink: 0; 

    }


    /*フッター*/
    .footer .footerbox{
        width: 90%;
        padding: 0 0 20px 0;
    }
    .footer img{
        width: 25%;
        height: auto;
    }
    .footer h3{
        font-size: 7px;
        font-weight: 400;
        line-height: 1.5em;
    }
    .footer .list{
        margin-top: 3px;
    }
    .footer .list li a {
        display: flex;              /* テキストとアイコンを横並び */
        align-items: center;        /* 垂直方向を中央揃え */
        justify-content: space-between; /* テキストは左、アイコンは右 */
        padding: 1em 2em;      /* 内側の余白 */
        border-bottom: 1px solid #DDDDDD;  /*枠線 */
        background: #F0F8F9;        /* 背景色 */
        color: #000;             /* 文字色 */
        text-decoration: none;   /* 下線消す */
        font-size: 7px;
    }
    .footer .material-icons-outlined{
        width: 5px;
    }
    .footer .Copyright_BOX{
        padding: 1px 0;
        font-size: 5px;
    }




}