@charset "utf-8";

/***front_main***********************************/
.front_main .flex_area {
    padding: 1em;
    margin: 0 0 1em;
}

.front_main {
    position: relative;

}

.front_main .inner {
    margin: 2em auto;
}

.front_main .bg_01 {
    position: absolute;
    bottom: 0;
    z-index: -1;
    left: 0;
    height: 100vw;
    width: 98%;
}

.front_main .bg_01 img {
    object-fit: cover;
    height: 100%;
    object-position: bottom right;
}

.area_02 .text_area p {
    font-size: 1.1em;
    line-height: 1.8;
}

/*600px以上*/
@media screen and (min-width: 600px) {
    .front_main .flex_area {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .front_main .text_area {
        width: 50%;
    }

    .front_main .img_area {
        width: 50%;
    }

    .front_main .bg_01 {
        height: 50%;
        width: 50%;
    }

    .front_main .bg_01 img {}
}

/*900px以上*/
@media screen and (min-width: 900px) {
    .front_main .bg_01 {
        height: 59%;
        width: 54%;
    }
}

/*1260px以上*/
@media screen and (min-width: 1260px) {
    .front_main .bg_01 {
        width: 45%;
        height: 54%;
    }

}

/*****top_intro*********************************/
.top_intro .inner {
    max-width: 1220px;
}

.top_intro .flex_area {
    margin: 0 0 4em;
}

.top_intro .img_area {
    margin: 0 auto 1em;
    max-width: 560px;
}


/*800px以上*/
@media screen and (min-width: 800px) {
    .top_intro .flex_area {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .top_intro .text_area {
        width: 48%;
        max-width: 560px;
    }

    .top_intro .img_area {
        width: 48%;
        text-align: center;
    }

}

/*900px以上*/
@media screen and (min-width: 900px) {}

/***trouble***********************************/
.trouble h2 {
    text-align: center;
    margin: 0 0 2em;
}

.trouble_list {
    margin: 0 auto 2em;
    max-width: 18em;
    width: 100%;
}

.trouble_list li {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin: 0 0 2em;
}

.trouble_list li .img_area {
    width: 20%;
    margin: 0 1em 0 0;
}

.trouble_list li .img_area img {
    border-radius: 50%;
}

.trouble_list li .text_area {
    margin: 0;
    font-weight: bold;
}

.trouble_list li .text_area p {
    font-size: 18px;
}

.trouble .comment {
    margin: 0 0 3em;
}

.trouble .comment ul {
    background-color: #fff;
    padding: 1.5em 1em;
    border-radius: 1em;
    margin: 0 0 0.6em;
}

.trouble .comment ul li {
    font-weight: bold;
    margin: 0 0 1.2em;
    text-align: center;
}

.trouble .comment ul li .red {
    color: #E25252;
}

.trouble .comment .illust_area {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    justify-content: space-between;
}

.trouble .comment .deco {
    width: 45%;
    max-width: 180px;
    text-align: center;
}

.trouble .comment .deco_01 {}

.trouble .comment .deco_02 {}

/*600px以上*/
@media screen and (min-width: 600px) {
    .trouble_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        max-width: unset;
    }

    .trouble_list li {
        width: calc(100% / 3);
        flex-direction: column;
        padding: 0 1%;
    }

    .trouble_list li .img_area {
        width: 80%;
        margin: 1em auto 1em;
    }

    .trouble_list li .text_area p {
        font-size: 0.9em;
        text-align: center;
    }
}

/*900px以上*/
@media screen and (min-width: 900px) {
    .trouble_list li {
        width: calc(100% / 5);
    }

    .trouble_list li:nth-of-type(even) {
        flex-direction: column-reverse;
    }


    .trouble .comment ul {
        padding: 4.5em 1.2em;
        margin: 0 auto 0.6em;
        border-radius: 60% 70% 70% 60% / 90% 70% 80% 80%;
        width: 70%;
    }

    .trouble .comment {
        position: relative;
    }

    .trouble .comment .illust_area {
        position: absolute;
        width: 100%;
        top: 60%;
        left: 0%;
    }

    .trouble .comment .deco {
        width: 15%;
    }
}

/*1260px以上*/
@media screen and (min-width: 1260px) {
    .trouble_list li .text_area p {
        font-size: 24px;
    }

}


/**flow************************************/
.flow {
    position: relative;
    padding: 3em 0 0;
}

.flow:before {
    content: "";
    position: absolute;
    top: -1px;
    box-sizing: border-box;
    border-right: 2em solid transparent;
    border-left: 2em solid transparent;
    border-top: 1.5em solid #BBE8FF;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.flow h2 {
    text-align: center;
}

.flow_list {}

.flow_list li {
    position: relative;
    width: 100%;
    margin: 0 auto 4em;
    padding: 0 0 1em;
}

.flow_list li .white_box {
    box-shadow: 0px 3px 6px #00000029;
    background-color: #fff;
    position: relative;

}

.flow_list li:not(:last-child):after {
    content: "";
    position: absolute;
    bottom: -2.2em;
    box-sizing: border-box;
    border-right: 2em solid transparent;
    border-left: 2em solid transparent;
    border-top: 1.5em solid #F6D606;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.flow_list dl {}

.flow_list dt {
    font-weight: bold;
    text-align: center;
}

.flow_list dt .step,
.flow_list dt.cear {
    background-color: #F6D606;
    display: block;
    padding: 3px 0;
    margin: 0 0 0.5em;
}

.flow_list dt .step:before {
    content: "STEP";
}

.flow_list dd {
    padding: 1em 9%;
}

.flow_list .img_block {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
}

.flow_list li:nth-of-type(even) .img_block {
    flex-direction: row-reverse;
}

.flow_list .img_block .img {
    width: 40%;
    transform: matrix(1, -0.09, 0.09, 1, 0, 0);
}

.flow_list li:nth-of-type(even) .img_block .img {
    transform: matrix(1, 0.09, -0.09, 1, 0, 0);
}

.flow_list .img_block .deco {
    width: 40%;
}

/*600px以上*/
@media screen and (min-width: 600px) {

    .flow_list dt .step,
    .flow_list dt.cear {
        display: inline;
        padding: 3px 1em;
        margin: 0;
    }

    .flow_list dt {
        text-align: left;
    }

    .flow_list dd {
        padding: 1em 0;
        text-align: left;
    }

    .flow_list dt .step {
        margin: 0 1em 0 0;
    }

    .flow_list li .white_box {
        margin: 0 0 0 20%;
        padding: 1em 1em 1em 5%;
        width: 80%;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .flow_list li:nth-of-type(even) .white_box {
        margin: 0 20% 0 0;
        padding: 1em 5% 1em 1em;
        flex-direction: row-reverse;
    }

    .flow_list dl {
       width: 80%;
    padding: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    }


    .flow_list .img_block {
        display: inline;
        width: 20%;
        margin: 0;
    }

    .flow_list .img_block .img {
        position: absolute;
        left: -25%;
        width: 30%;
        max-width: 260px;
        top: 50%;
        transform: translateY(-50%) rotate(-9deg);
    }

    .flow_list li:nth-of-type(even) .img_block {}

    .flow_list li:nth-of-type(even) .img_block .deco {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .flow_list .img_block .deco {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .flow_list li:nth-of-type(even) .img_block .img {
        right: -25%;
        width: 30%;
        left: unset;
        transform: translateY(-50%) rotate(+9deg);
    }
}

/*900px以上*/
@media screen and (min-width: 900px) {
    .flow_list dt {
        font-size: 30px;
    }

    .flow_list li .white_box {
        margin: 0 auto;
        padding: 1em 1em 1em 5%;
        width: 70%;
        max-width: 900px;
    }

    .flow_list li:nth-of-type(even) .white_box {
        margin: 0 auto;
        padding: 1em 5% 1em 1em;
        width: 70%;
        max-width: 900px;
    }
}

/***example***********************************/
.example {}

.example h2 {
    text-align: center;
}

.example_list {}

.example_list li {
    margin: 0 0 2em;
    background-color: #fff;
    padding: 1em 0.5em;
    display: flex;
    width: 100%;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 1em;
}

.example_list li div {
    position: relative;
}

.example_list li .before:after,
.example_list li .after:after {
    position: absolute;
    bottom: 4px;
    left: 0;
    background-color: #ffffffe8;
    padding: 0 0.7em;
    font-size: 0.9em;
    font-weight: bold;
}

.example_list li .before:after {
    content: 'before';
}

.example_list li .after:after {
    content: 'after';
}

.example_list li img {
    box-shadow: 0px 3px 6px #00000029;
    /*border: 5px solid #FFFFFF;*/
}

.blog_box {
    background-color: #fff;
    padding: 2em 5%;
}

.blog_box h3 {
    color: #51D162;
    font-weight: bold;
    text-align: center;
    font-size: 1.3em;
    margin: 0 0 1em;
}

.blog_box .flex_area {}

.blog_box .img_area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: left;
    margin: 0 auto 2em;
}



.speech {
    width: 100%;
    padding: 1em;
    background-color: #fff;
    border: 3px solid #fff;
    border-radius: 10px;
    position: relative;
    filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.16));
    margin: 0 0 1.3em;
}


.speech:after {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    position: absolute;
    bottom: -0.9em;
    left: 10%;
    transform: translateX(-50%);
    border-style: solid;
    border-width: 15.5px 0px 21.5px 41px;
    border-color: transparent transparent transparent #fff;
    margin-right: 0;
    transform: rotate(78deg);
    z-index: -1;
}

.example_box {
    margin: 0 0 4em;
}

.blog_box .img_area .img {
    width: 30%;
    max-width: 200px;
}

.blog_box .prof {
    width: 70%;
    padding: 0 0 0 1em;
    font-weight: bold;
}

.blog_box .prof .post {}

.blog_box .prof .name {
    font-size: 18px;
}

.blog_box .prof .btn_03 {}

.blog_list {
    border-bottom: dotted 2px #707070;
}

.blog_list li {
    border-top: dotted 2px #707070;
    padding: 0.5em 0;
}
.blog_list .thumb{
    display: none;
}

.blog_list dl {}

.blog_list dt {}

.blog_list dd {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
    line-height: 1.6;
}

/*600px以上*/
@media screen and (min-width: 600px) {
    .blog_box h3 {
        font-size: 1.7em;
    }

    .example_list {}

    .example_list li {
        /*width: calc(100% / 2 - 4%);
        padding: 0 2%;*/
        flex-direction: unset;
    }

    .example_list li div {
        width: 48%;
    }

    .blog_box .blog_area {}

    .blog_box .img_area {
        flex-direction: column;
        width: 30%;
        margin: 0;
        float: left;
    }

    .blog_box .img_area .img {
        width: 100%;
        margin: 0 0 1.5em;
    }

    .speech {
        width: 64%;
        height: fit-content;
        float: right;
    }

    .speech::after {
        left: -1em;
        border-width: 0.6px 0px 47.4px 23px;
        transform: rotate(76deg);
        bottom: 0;
    }

    .blog_box .prof {
        width: 100%;
        padding: 0;
        font-weight: bold;
        text-align: center;
    }

    .blog_box .text_area {
        margin: 0;
        width: 66%;
        float: right;
    }
}

/*900px以上*/
@media screen and (min-width: 900px) {
    .example_list {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .example_list li {
        margin: 0 0 4em;
        width: calc(100% / 2 - 2%);
        justify-content: center;
        gap: unset;
        padding: 0;
        align-items: center;
    }

    .example_list li div {
        width: 50%;
        padding: 2em 3%;
    }

    .example_list li .before::after,
    .example_list li .after::after {
        left: 2%;
    }

    .blog_box h3 {
        font-size: 2.3em;
    }

    .blog_list dl {
        display: flex;
        flex-wrap: wrap;
    }

    .blog_list dt {
        width: 6em;
    }

    .blog_list dd {
        width: calc(100% - 6.5em);
    }

    .speech {
        width: 70%;
    }

    .blog_box .text_area {
        margin: 2em 0;
        width: 70%;
    }
}

/**************************************/


/*600px以上*/
@media screen and (min-width: 600px) {}

/*900px以上*/
@media screen and (min-width: 900px) {}