@charset "utf-8";
/* CSS Document */

/*--------------------- 共通処理 ---------------------*/

* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

html {
    font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 62.5%;
	font-style: normal;
    scroll-behavior: smooth;
    max-width: 1920px;
    margin: 0 auto;
}

:root {
    --green:#59a14a;
    --grreen_type2:#4da635;
    --red:#eb6159;
    --black:#333333;
    --gray:#f2f2f2;
    --pink:#E9546B;
    --orange:#fce5d1;
    --orange2:#ed6c00;
}

.color_green{
    color: var(--green);
}

.color_red{
    color: var(--red);
}

.color_pink{
    color: var(--pink);
}

.color_orange{
    color: var(--orange2);
}

.colorback_green{
    background: var(--green);
    color: #fff;
}
.colorback_green2{
    background: var(--grreen_type2);
}

.colorback_red{
    background: var(--red);
    color: #fff;
}

.colorback_gray{
    background: var(--gray);
}

.colorback_pink{
    background: var(--pink);
    color: #fff;
}

.colorback_orange{
    background: var(--orange);
    color: #fff;
}

.colorback_orange2{
    background: var(--orange2);
    color: #fff;
}

html, body {
    color: #333333;
}


p {
	font-size: 1.6rem;
    font-weight: 500;
	line-height: 1.9em;
    margin-bottom: 1em;

}

.zen-maru{
    font-family: "Zen Maru Gothic", sans-serif;
}

.txt_center{
    text-align: center;
}

.txt_right{
    text-align: right;
}


a{
    font-size: 1.85rem;
	line-height: 1.9em;
    color: #333333;
    text-decoration: none;
    transition: all .2s;
}

.font_size48{
    font-size: 4.8rem;
    letter-spacing: 0.05em;
}

.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
	visibility: hidden;
}

.mt-10{
    margin-top: 10px;
}

.mt-20{
    margin-top: 20px;
}

.mt-30{
    margin-top: 30px;
}

.mt-40{
    margin-top: 40px;
}

.mt-50{
    margin-top: 50px;
}

.mt-60{
    margin-top: 60px;
}

.mt-120{
    margin-top: 120px;
}

.mt-160{
    margin-top: 160px;
}

.mr-0{
    margin-right: 0px;
}

.spbr{
    display: none;
}

.nobr{
    display: block;
}


.inner_960 {
    width: 100%;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    padding: 0px 20px;
}


.flex{
	display: flex;
}

img{
    width: 100%;
    height: auto;
}

.position{
    position: relative;
}


.logo{
    width: 20%;
}
.pc_nav{
    width: 58%;
}
.pc_nav li{
    list-style: none;
}

.pc_nav li a{
    font-size: 1.6rem;
    margin: 0 15px;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-bottom .2s;
    padding-bottom: 4px;
}

.pc_nav li a:hover{
    border-bottom: 2px solid var(--black);
}

.header_btn{
    width: 22%;
    display: block;
    background-color: var(--green);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    height: auto;
    font-size: 1.4rem;
    padding: 10px 25px 10px 15px;
    position: relative;
    transition: background-color .2s;
    font-weight: 700;
}

.header_btn:hover{
    background-color: #3b6b31;
}

.header_btn::after{
    content: '';
    background-image: url(../img/arrow_white.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 7px;
    height: 12px;
    display: inline-block;
    margin-left: 10px;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    transition: right .2s;
}

.header_btn:hover::after{
    right: 8px;
}



.pc_header{
    position: fixed;
    background-color: #fff;
    z-index: 1000;
    width: 100%;
    height: 90px;

}

.pc_header .flex{
    align-items: center;
    justify-content: center;
    height: 90px;
}

.pc_header h1 {
    content: '';
    background-image: url(../img/header_logo.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 60px;
    text-indent: -9999px;
    background-position: center;
}

#navArea{
    display: none;
}

.top_bnr{
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(70% - 40px);
    max-width: 944px;

}

.top_bnr_sp{
    display: none;
}


.menu_lead{
    margin-top: 60px;
    font-size: 2.2rem;
}

.lead{
    text-align: center;
    line-height: 1.6em;
    position: relative;
    padding: 0 60px;
    font-size: 2.3rem;
    width: 550px;
    margin: 0 auto;
    margin-bottom: 40px;
}

.lead::before,
.lead::after {
    content: '';
    position: absolute;
    top: 60%;
    width: 80px;
    height: 3px;
    background-color: var(--green);
    transform: translateY(-50%);
}

.lead span{
    position: relative;
}

.lead span:after{
    content: "";
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 4px;
    height: 8px;
    background-color: rgba(89, 161, 74, 0.3);
    opacity: 0.8;
    z-index: -1;
}



.lead::before {
    left:0px;
    transform: translateY(-50%) rotate(60deg);
}

.lead::after {
    right: 0;
    transform: translateY(-50%) rotate(-60deg);
}


.circles{
    justify-content: space-between;
}

.circle {
  position: relative;
  display: inline-block;
  width: 140px;
  height: 140px;
  border-radius: 50%;
}

.circle span {
  position: absolute;
  display: inline-block;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width :140px;
  text-align:center;
  font-size: 1.8rem;
  font-weight: 500;
}

.Top_slide{
    padding-top: 90px;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:100%;
    margin:0 auto;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
    border-radius: 20px;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 40px;
}

.slider.sp_only{
    display: none;
}

.sp_only{
    display: none;
}


/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:150px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 9px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width: 7px;/*ドットボタンのサイズ*/
    height:7px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
    border: none;
}

.slick-dots .slick-active button{
    background: var(--green);/*ドットボタンの現在地表示の色*/
}


.internal_link{
    width: 800px;
    justify-content: space-between;
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 80px;
}

.internal_link li{
    list-style: none;
}

.internal_link li a{
    display: block;
    background-color: var(--black);
    border-radius: 50px;
    color: #fff;
    width: 250px;
    text-align: center;
    padding: 10px;
    transition: background-color .2s;
}

.internal_link li a:hover{
    background-color: #1a1a1a;
}

.about_content{
    position: relative;
    margin-top: 180px;
}

.about_content::before{
    content: '';
    position: absolute;
    background-image: url(../img/gray_wave.png);
    top: -69px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 70px;
}

.about_content::after{
    content: '';
    position: absolute;
    background-image: url(../img/gray_rafu.png);
    bottom: -24px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 46px;
}

.about_content .enTitle{
    font-size: 3.0rem;
    position: relative;
    padding-left: 270px;
    top: -30px;
}

.about_content .enTitle:before{
    content: '';
    background-image: url(../img/about_text.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 250px;
    height: 79px;
    display: inline-block;
    position: absolute;
    top: -24px;
    left: 0;
}

.about_box_top h3{
    margin-top: 60px;
    font-weight: 900;
}

.about_box_top p{
    margin-top: 30px;
    font-size: 2.2rem;
    letter-spacing: 0.1em;
    line-height: 2.0em;
    font-weight: 500;
}

.about_box_top img.pc{
    display: block;
    position: absolute;
    right: -40px;
    width: 340px;
    height: auto;
    top: -90px;
}

.about_box_top img.sp{
    display: none;
}




.about_box_bottom{
    justify-content: space-between;
}

.about_box_bottom_sp{
    display: none;
}

.about_box_bottom li{
    list-style: none;
}

.about_smart{
    margin-top: 40px;
}
.about_smart h3{
    background-color: var(--green);
    text-align: center;
    color: #fff;
    font-size: 2.4rem;
    padding: 8px 0px;
    letter-spacing: 0.1em;
}

.smart_list{
    justify-content: space-between;
    margin-top: 30px;
    margin-bottom: 30px;
}

.smart_list li{
    list-style: none;
    width: 23%;
    border-right: dotted var(--green) 2px;
    padding: 0%;
    padding-right: 2.6%;
}

.smart_list li:last-child{
    border-right: none;
    padding-right: 0%;
}

.smart_box h4{
    text-align: center;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1.6em;
    margin-bottom: 4px;
}

.smart_box figure{
    width: 100%;
    height: 136px;
    display: flex;
    align-items: center;
}

.smart_box p{
    font-size: 1.6rem;
    font-weight: 500;
}

.about_step{
    background-color: #fff;
    padding: 20px;
}

.about_step h5{
    font-weight: 900;
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    padding: 0 60px;
}

.about_step h5.step_title span{
    position: relative;
    display: inline-block;
}

.about_step h5.step_title span::before,
.about_step h5.step_title span::after {
    content: '';
    position: absolute;
    top: 60%;
    width: 30px;
    height: 1px;
    background-color: var(--green);
    transform: translateY(-50%);
}

.about_step h5.step_title span::before {
    left: -40px;
    transform: translateY(-50%) rotate(55deg);
}

.about_step h5.step_title span::after {
    right: -40px;
    transform: translateY(-50%) rotate(-55deg);
}

.about_step h6{
    text-align: center;
    background-color: #cae4c2;
    font-size: 2.0rem;
    padding: 4px 0px;
}

.step_flow{
    justify-content: space-between;
    margin-top: 30px;
}
.step_flow li{
    list-style: none;
    display: flex;
    position: relative;
    align-items: center;
}
.step_flow li:first-child{
    width: 40%;
    position: relative;
}
.step_flow li:nth-child(2){
    width: 32%;
    position: relative;
}
.step_flow li:last-child{
    width: 28%;
    position: relative;
}


.step_flow li:first-child .step_box img{
    width: 40%;
    position: absolute;
    right: 60px;
}

.step_flow li:first-child .step_box p{
    width: 60%;
}

.step_flow li:after{
    content: '';
    background-image: url(../img/step_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 26px;
    height: 26px;
    display: block;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
}

.step_flow li:last-child:after{
    display: none;
}

.step_flow .step_box{
    flex-wrap: wrap;
    align-items: flex-start;
}

.step_flow .step_box h5{
    width: 100%;
    height: 40px;
    text-align: left;
    padding-left: 60px;
    line-height: 1.1em;
    margin-bottom: 24px;
}

.step_flow li .step_box h5{
    position: relative;
}

.step_flow li:first-child .step_box h5::before{
    content: '';
    background-image: url(../img/step1_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 0px;
}
.step_flow li:nth-child(2) .step_box h5::before{
    content: '';
    background-image: url(../img/step2_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 0px;
}

.step_flow li:nth-child(2) .step_box h5{
    padding-top: 14px;
}

.step_flow li:last-child .step_box h5::before{
    content: '';
    background-image: url(../img/step3_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 50px;
    display: inline-block;
    position: absolute;
    left: 0px;
    top: 0px;
}

.step_flow li:last-child .step_box h5{
    padding-top: 14px;
}


.step_flow .step_box img{
    width: 20%;
    position: absolute;
    right: 50px;
    bottom: 15px;
}

.step_flow .step_box p{
    width: 80%;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.4em;
    padding-left: 10px;
    padding-top: 10px;
}

.scene_list{
    justify-content: space-between;
}

.scene_list li{
    list-style: none;
    border: solid var(--green) 2px;
    border-radius: 10px;
    padding: 10px;
    width: 15%;
}

.scene_list li img{
    aspect-ratio: 1 / 1;
    object-fit: contain;
    width: 90%;
    margin: 0 auto;
    display: block;
}

.scene_list li p{
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.2em;
    font-weight: 500;
}

.about_scene{
    padding: 40px 0px 80px 0px;
}

.about_scene h4{
    font-size: 3.0rem;
    text-align: center;
    margin-bottom: 10px;
}

.about_scene h4 span{
    position: relative;
}

.about_scene h4 span::before,
.about_scene h4 span::after {
        content: '';
        position: absolute;
        top: 60%;
        width: 40px; /* 緑色の棒線の幅 */
        height: 2px; /* 緑色の棒線の高さ */
        background-color: var(--green);
        transform: translateY(-50%);
    }

    .about_scene h4 span::before {
        left: -60px;
        transform: translateY(-50%) rotate(55deg);
    }

    .about_scene h4 span::after {
        right: -60px;
        transform: translateY(-50%) rotate(-55deg);
    }

    .contact {
    padding: 60px 0 44px 0px;
    background:
        repeating-linear-gradient(
            -34deg,
            #29bd00,
            #29bd00,
            transparent 3px,
            transparent 10px
        ),
        var(--grreen_type2);
}

.contact_title{
    text-align: center;
    color: #fff;
    font-size: 2rem;
}

.contact_btn{
    background-color: #fff;
    display: block;
    margin: 0 auto;
    width: 450px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
    padding: 19px;
    border-radius: 15px;
    letter-spacing: 0.1em;
    margin-top: 20px;
    margin-bottom: 20px;
}

.contact_btn span{
    position: relative;
}

.contact_btn span::before{
    content: '';
    background-image: url(../img/contact_icon.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 30px;
    height: 30px;
    display: inline-block;
    position: absolute;
    left: -55px;
    top: 58%;
    transform: translateY(-50%);
    transition: left .2s;
}

.contact_btn:hover span::before{
    left: -45px;
}

.contact p{
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
}

.contact p strong{
    font-size: 4.0rem;
    padding: 0px 10px;
}

.contact h5.contact_title span{
    position: relative;
}

.contact h5.contact_title span::before,
.contact h5.contact_title span::after {
        content: '';
        position: absolute;
        top: 60%;
        width: 40px; /* 緑色の棒線の幅 */
        height: 2px; /* 緑色の棒線の高さ */
        background-color:#fff;
        transform: translateY(-50%);
    }

.contact h5.contact_title span::before {
        left: -60px;
        transform: translateY(-50%) rotate(55deg);
    }

.contact h5.contact_title span::after {
        right: -60px;
        transform: translateY(-50%) rotate(-55deg);
    }


.features_content{
    background-color:#fefbf7;
    padding: 120px 0px 0px 0px;
}


.features_content .enTitle {
    font-size: 3.0rem;
    position: relative;
    padding-left: 370px;
}

.features_content .enTitle:before {
    content: '';
    background-image: url(../img/features_text.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 350px;
    height: 79px;
    display: inline-block;
    position: absolute;
    top: -14px;
    left: 0;
}

.features_point1>.flex img.pc{
    display: block;
}

.features_point1>.flex img.sp{
    display:none;
}


.features_point1_text h3{
    font-size: 4.4rem;
    line-height: 1.2em;
}

.features_point1_text h3 span {
    position: relative;
}

.features_point1_text h3 span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px; /* Adjust as needed */
    height: 20px; /* Thickness of the wave line */
    background: url('../img/pink_wave.png') repeat-x; /* Use a wave image */
    background-size: contain; /* Adjust size as needed */
}



.features_point1_text p{
    margin-top: 30px;
    font-size: 2.0rem;
    letter-spacing: 0.1em;
    line-height: 2.0em;
    font-weight: 500;
}

.features_point2_text{
    width: 48%;
}

.features_point2_img{width: 60%;}



.features_point2_text h3{
    font-size: 4.4rem;
    line-height: 1.2em;
}

.features_point2_text h3 span{
    position: relative;
    z-index: 1;
}

.features_point2_text h3 span::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    height: 20px;
    background: url(../img/white_wave.png) repeat-x;
    background-size: contain;
    z-index: -1;
}

.features_point2_text p{
    margin-top: 30px;
    font-size: 2.0rem;
    letter-spacing: 0.1em;
    line-height: 2.0em;
    font-weight: 500;
    color: var(--black);
}

.features_point2_text p.colorback_orange2{
    color: #fff;
}


.features_point2_text h5{
    text-align: center;
    font-size: 2.0rem;
    letter-spacing: 0.1em;
    border-top: dotted 3px;
    padding-top: 20px;
    position: relative;
}

.features_point2_text h5:before{
    content: '';
    background-image: url(../img/img_features_ic_05.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 62px;
    display: inline-block;
    left: 0;
    position: absolute;
    top: 14px;
}

.features_point2_text h5:after{
    content: '';
    background-image: url(../img/img_features_ic_06.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 40px;
    height: 62px;
    display: inline-block;
    right: 0;
    position: absolute;
    top: 18px;

}

.point{
    display: inline-block;
    padding: 4px 30px;
    border-radius: 50px;
}

.features_content .colorback_orange{
    padding: 60px 0px 90px 0px;
    margin-top: 90px;
}

.features_point1{
    margin-top: 60px;
}

.features_point1_text{
    padding: 20px;
    border-radius: 10px;
    background-image: url(../img/features_img02.png);
    background-repeat: no-repeat;
    background-size: 270px;
    background-position: right 10px top 30px
}

.features_point1_box{
    border:solid var(--pink) 1px;
    border-radius: 10px;

}

.features_point1_box .flex{
    justify-content: space-between;
    padding: 20px;
}

.features_point1{
    margin-top: 60px;
}

.features_point2_text{
    padding: 10px;
    border-radius: 10px;
    background-image: url(../img/features_point2_back.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: right 0px top 30px;
}

.features_point2_box{
    border:solid var(--pink) 1px;
    border-radius: 10px;

}

.features_point2_box .flex{
    justify-content: space-between;
    padding: 20px;
}

.card{
    width: 43%;
    border-right: dotted var(--pink) 2px;
    padding-right: 2%;
}

.card .flex{
    align-items: end;
}

.card h4,
.apply h4{
    text-align: center;
    font-size: 2.0rem;
    border-radius: 6px;
    padding: 4px;
}

.apply{
    width: 54%;
    padding-left: 0%;
}

.apply figure{
    display: flex;
    align-items: center;
    height: 100%;
}

.features_point1_box .intro{
    background-color: #FFF4D6;
    border-radius: 0px 0px 10px 10px;
}

.features_point1_box .intro .case p{
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.4em;
    text-align: center;
    position: relative;
}

.features_point1_box .intro .case p::before{
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    width: 46px;
    height: 46px;
    display: inline-block;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.features_point1_box .intro .case:first-of-type p::before{
    position: absolute;
    background-image: url(../img/t_icon.png);
}


.features_point1_box .intro .case:nth-of-type(2) p{
    margin-top: 10px;
}

.features_point1_box .intro .case:nth-of-type(2) p::before{
    background-image: url(../img/k_icon.png);
}

.features_point1_box .intro .case:nth-of-type(3) p{
    margin-top: 10px;
}

.features_point1_box .intro .case:nth-of-type(3) p::before{
    background-image: url(../img/t_icon.png);
}

.features_point1_box .intro .case:nth-of-type(4) p::before{
    background-image: url(../img/h_icon.png);
}

.features_point1_box .intro .case:nth-of-type(5) p::before{
    background-image: url(../img/a_icon.png);
}




.card figure figcaption{
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
}

.card figure figcaption span{
    font-size: 1.8rem;
    font-weight: 600;
}

.card p{
    text-align: center;
    font-size: 1.4rem;
}

.intro .txt{
    width: 32%;
    padding-top: 10px;
}

.intro .txt h5{
    font-size: 2.6rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.intro .case{
    width: 17%;
}


.lineup{
    background-color: #fff;
    border-radius: 10px 10px 10px 10px;
    margin-top: 40px;
}

.lineup_boxs{
    padding: 20px;
    justify-content: space-between;
}

.lineup p{
    color: var(--black);
}

.lineup h4{
    font-size: 2.4rem;
    padding: 10px 0px;
    border-radius: 10px 10px 0px 0px;
    text-align: center;
}



.lineup_box {
    width: 24%;
}

.lineup_box img{
    aspect-ratio: 1/1;
    object-fit: contain;
}


.lineup_box .lineup_Atext{
    font-size: 1.6rem;
    line-height: 1.4em;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0em;
}

.lineup_box .lineup_Atext span{
    color: #fff;
    border-radius: 50px;
    padding: 4px 10px;
    width: 90px;
    margin-right: 2%;
    text-align: center;
    margin-bottom: 10px;
    display: inline-block;
}

.lineup_box:nth-of-type(1) .lineup_Atext span{
    background-color:#8dc21f ;
}

.lineup_box:nth-of-type(2) .lineup_Atext span{
    background-color:#eb6d4c ;
}

.lineup_box:nth-of-type(3) .lineup_Atext span{
    background-color:#83b9e4;
}

.lineup_box:nth-of-type(4) .lineup_Atext span{
    background-color:#c79f62 ;
}

.lineup_box:nth-of-type(1) .lineup_Atext{
    margin-bottom: 1.4em;
}

.lineup_box:nth-of-type(3) .lineup_Atext{
    margin-bottom: 1.4em;
}

.lineup h5{
    text-align: center;
    font-size: 1.8rem;
    padding: 10px 0px 20px 0px;
    font-weight: 700;
}

.intro_content{
    background-color: #fff2b8;
    padding: 30px 0px;
    position: relative;
}

.intro_content::before{
    content: '';
    position: absolute;
    background-image: url(../img/yellow_wave.png);
    top: -69px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 70px;
}

.intro_content::after{
    content: '';
    position: absolute;
    background-image: url(../img/yellow_rafu.png);
    bottom: -24px;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 46px;
}


.intro_content h4 {
    font-size: 3.0rem;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.3em;

}

.intro_content h4 span {
    position: relative;
}

.intro_content h4 span strong{
    font-size: 5rem;
    padding: 0px 6px;
}

.intro_content h4 span::before,
.intro_content h4 span::after {
    content: '';
    position: absolute;
    top: 60%;
    width: 40px;
    height: 2px;
    background-color: var(--green);
    transform: translateY(-50%);
}

.intro_content h4 span::before {
    left: -110px;
    transform: translateY(-50%) rotate(55deg);
}

.intro_content h4 span::after {
    right: -60px;
    transform: translateY(-50%) rotate(-55deg);
}

.intro_flow{
    justify-content: space-between;
    margin-top: 30px;
}

.intro_flow li{
    background-color: #fff;
    width: 16%;
    list-style: none;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}

.intro_flow li::before{
    position: absolute;
    content: '';
    background-repeat: no-repeat;
    width: 54px;
    height: 54px;
    background-size: contain;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.intro_flow li:nth-child(1)::before{
    background-image: url(../img/step1_icon.png);
}

.intro_flow li:nth-child(2)::before{
    background-image: url(../img/step2_icon.png);
}

.intro_flow li:nth-child(3)::before{
    background-image: url(../img/step3_icon.png);
}

.intro_flow li:nth-child(4)::before{
    background-image: url(../img/step4_icon.png);
}

.intro_flow li:nth-child(5)::before{
    background-image: url(../img/step5_icon.png);
}


.intro_flow li::after{
    content: '';
    background-image: url(../img/step_arrow.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 26px;
    height: 26px;
    display: block;
    position: absolute;
    right: -38px;
    top: 50%;
    transform: translateY(-50%);
}

.intro_flow li:last-child:after{
    display: none;
}




.intro_flow li p{
    line-height: 1.2em;
    text-align: center;
    margin-bottom: 0em;
    padding-top: 20px;
}

.intro_flow li img{
    aspect-ratio: 1 / 1;
    object-fit: contain;
    width: 80%;
    margin: 0 auto;
    display: block;
}


/* 背景の薄い黄色の箱 */
.info-box{
  width:min(980px, 100%);
  box-sizing:border-box;
  line-height:1.6;
  margin-top: 30px;
}

/* 1行 */
.info-row{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:8px 0;
}

/* 左の緑ラベル（角丸） */
.info-label{
    flex:0 0 130px;
    background:var(--green);
    color:#fff;
    font-weight:700;
    text-align:center;
    border-radius:6px;
    padding:8px 10px;
    box-sizing:border-box;
    font-size: 1.5rem;
}

/* 右の本文 */
.info-body{
    flex: 1;
    font-size: 2rem;
    padding-top: 2px;
    font-weight: 600;
}

/* キャンペーン行の見た目 */
.info-body--campaign{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

.arrow{
  font-weight:800;
}

/* 「今だけ無料キャンペーン中！」を薄緑ハイライト＋下線っぽく */
.campaign{
  position:relative;
  font-weight:900;
  color:#2F8A2F;
  padding:0 6px;
  white-space:nowrap;
  font-size: 2.6rem;
  z-index: 1;
}

/* 背景ハイライト */
.campaign::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0.2em;
  height:0.9em;           /* 薄緑 */
  z-index:-1;
  border-radius:2px;
}


.campaign::after{
    content:"";
    position:absolute;
    left:6px;
    right:6px;
    bottom:4px;
    height: 12px;
    background:#fff;
    opacity:0.8;
    z-index: -1;
}

/* 注意書き */
.note{
  margin-top:6px;
  font-size:1.3rem;
  color:#2b2b2b;
}

/* メール */
.mail{
  text-decoration:none;
}


.footer_photo{
    list-style: none;
}

.footer_content{
    padding: 40px 0px;
}

footer figure.logo{
    width: 20%;
    display: flex;
    align-items: center;
}

footer figure.logo img{
    width: 70%;
    margin: 0 auto;
    display: block;
}

footer .footer_text{
    width: 50%;
}

footer .footer_text h3{
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 14px;
}

footer .footer_text h3{
    font-size: 1.8rem;
}

footer .footer_text p{
    font-size: 1.4rem;
    margin-bottom: 0.6em;
    line-height: 1em;
}

footer .footer_photo{
    width: 30%;
}

footer .footer_photo li:first-child{
    margin-right: 2%;
}

footer .footer_photo li figure figcaption{
    text-align: center;
    font-size: 1.3rem;
}

footer small{
    background-color: var(--grreen_type2);
    color: #fff;
    font-size: 1.6rem;
    padding: 40px 0px;
    width: 100%;
    display: block;
    text-align: center;
}