@charset "UTF-8";


body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #231815;
}

/* common
---------------------------------------------------------------*/

.sec-spacing {
    padding: 100px 0;
}

.typo-text {
    font-size: 16px;
    letter-spacing: .1em;
    line-height: 1.6;
}

.fs-xl {
    font-size: 28px;
}

.fs-l {
    font-size: 24px;
}

.fs-m {
    font-size: 20px
}

.fs-s {
    font-size: 18px;
}

.fs-xs {
    font-size: 14px;
}

.fw-bold {
    font-weight: 700;
}

.typo-lh {
    line-height: 1.6;
}

.typo-lh-large {
    line-height: 2 !important;
}

.typo-lh-loose {
    line-height: 2.5;
}

.mg-center {
    margin: 0 auto;
}

.mb-xl {
    margin-bottom: 100px;
}

.mb-l {
    margin-bottom: 80px;
}

.mb-m {
    margin-bottom: 50px;
}

.mb-s {
    margin-bottom: 30px;
}

.mb-xs {
    margin-bottom: 15px;
}

.sec_border {
    border-bottom: 2px solid #b5b5b6;
}



/* header,footer
---------------------------------------------------------------*/

header,footer {
    align-items: center;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
}

footer {
    position: static;
    top: auto;
    left: auto;
    right: auto;
}

header .blue_bar {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
    background: #265aa5;
    font-weight: bold;
}

footer .blue_bar {
    width: 100%;
    height: 100%;
    background: #265aa5;
    font-weight: bold;
}

footer .blue_bar .footer_wrap {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    align-items: center;
}

.blue_bar h1 {
    position: relative;
    z-index: 2;
    width: 214px;
    height: 74px;
    background: #fff;
}

.blue_bar h1 a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.blue_bar h1 img {
    width: 80%
}

.gnav ul {
    display: flex;
}

.gnav ul li {
    display: grid;
    place-items: center;
    font-size: clamp(12px, 1vw, 15px);
    padding: 0 30px 0 20px;
    border-right: 1px solid #fff;
}

.gnav ul li a {

    color: #fff;
}

.gnav ul li:last-child {
    border-right: none;
}

.gnav {
    display: grid;
    justify-content: end;
    width: 1024px;
    line-height: 1.4;
}


.hamburger {
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 2;
    margin-right: 2%;
}

.hamburger span {
    position: absolute;
    display: block;
    width: 80%;
    height: 4px;
    background: #fff;
    transform: translate(-50%, -50%);
    transition: .3s;
}

.hamburger span:nth-child(1) {
    top: 30%;
    left: 50%;
}

.hamburger span:nth-child(2) {
    top: 50%;
    left: 50%;
}

.hamburger span:nth-child(3) {
    top: 70%;
    left: 50%;
}


.hamburger.is-active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(35deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
    transform: translate(100%, -50%);
}

.hamburger.is-active span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-35deg);
}

/* page top */

.pagetop_button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 75px;
    height: 75px;
    z-index: 500;
    cursor: pointer;
    filter: drop-shadow(0 0 2px rgba(0,0,0,.5));
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.pagetop_button.show {
  opacity: 1;
  visibility: visible;
}



/* mv
---------------------------------------------------------------*/

.mv_area {
    position: relative;
    margin-top: 74px;
    height: 600px;
    width: 100%;
    background: url('/image/mirai2/mv.webp') no-repeat center/cover;
}

.mv_area .mv_layer {
    position: absolute;
    width: 650px;
    top: 12%;
    left: 50%;
    transform: translateX(-50%);
    animation: clip 0.8s both;
    animation-duration: 1s;
    animation-delay: .8s;
    transition: clip-path 0.8s;
}

@keyframes clip {
    0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}


[data-aos="clip"] {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    transition: clip-path 0.8s;
}

[data-aos="clip"].aos-animate  {
    animation: clip2 0.8s both;
}

@keyframes clip2 {
    0% {
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }
    100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}



/* what_does
---------------------------------------------------------------*/

.intro_logo {
    max-width: 245px;
    width: 50%;
}

#movie_area {
    text-align:	center;
}
#movie_area p {
    margin-bottom: 25px;
}
#movie_area iframe {
    width: 80%;
}
@media (max-width: 960px) {
    #movie_area iframe {
        height: 250px;
        width: 100%;
    }
}

.what_does .main_ttl {
    width: 170px;
}


.sub_ttl {
    color: #6f7f88;
    letter-spacing: .05em;
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
}
.what_does .sub_ttl {
    font-weight: 400;
}

.lead {
    text-align: center;
}

.what__illust {
    max-width: 900px;
}
.what__illust .cap_Txt {
    bottom: -20px;
}

.three_point h4 {
    padding-bottom: 10px;
    border-bottom: 3px solid #000;
    margin-bottom: 10px;
}

.what__dannetsu h4 {
    border-bottom: 3px solid #e4a77b;
}
.what__shoene h4 {
    border-bottom: 3px solid #98cb81;
}
.what__souene h4 {
    border-bottom: 3px solid #9ac9ec;
}

.three_point.flex {
    align-items: start;
    justify-content: space-between;
}

.three_point .item_left {
    max-width: 15%;
    padding-top: 20px;
}

.three_point .item_center {
    width: 40%;
}

.three_point .item_center .typo-text {
    line-height: 2;
    font-weight: 600;
}

.three_point .item_right {
    width: 30%;
}

.what__illust h3 {
    color: #231815;
    letter-spacing: .2em;
}

.what__illust p {
    text-align: center;
}

.what_plus {
    width: 80px;
}

.what__bnr {
    position: relative;
    max-width: 800px;
}

.what__bnr::before {
    position: absolute;
    content: "";
    background: url('/image/mirai2/what_bnr02.png') no-repeat center / contain;
    width: 150px;
    height: 150px;
    top: -20%;
    right: 2%;
}

.what__bnr .cap_Txt {
    bottom: -10px;
}

.what_bnr_bg {
    background: #f3f4f5;
    padding: 5px;
}

.what_bnr_border {
    align-items: center;
    border: 1px solid #b5b5b6;
}

.what_bnr_border .item_left {
    width: 38%;
}

.what_bnr_border .item_right {
    width: 62%;
    padding: 35px 40px 35px 0;
}

.what_bnr_border .item_right h4 {
    width: 75%;
}


/* merit
---------------------------------------------------------------*/

.merit .main_ttl {
    width: 83.6px;
}

.merit_sub_ttl {
    text-align: center;
    letter-spacing: .15em;

}

.merit .sub_ttl {
    color: #231815;
    font-size: 30px;
}

.merit__ttl_bar {
    position: relative;
    width: 100%;
    height: 192px;
    text-align: center;
}


.merit01 .merit__ttl_bar {
    background: url('/image/mirai2/merit01_ttl.webp') no-repeat center left 16%/ cover;
}

.merit02 .merit__ttl_bar {
    background: url('/image/mirai2/merit02_ttl.webp') no-repeat center right 28%/ cover;
}

.merit__ttl_bar p {
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 5%;
    color: #fff;
    text-align: center;
    letter-spacing: .1em;
    line-height: 1.6;
}

.merit__ttl_bar p span {
    font-size: 120%;
    letter-spacing: 0em;
}

/*   1列目 */

.diagram_zeh.flex {
    gap: 50px;
    border-bottom: 1px solid #dcdcdf;
}
.diagram_zeh.flex .item_left{
    position: relative;
    width: 50%;
}
.diagram_zeh.flex .item_right {
    width: 50%;
}
.diagram_zeh.flex .item_left h4 {
    margin-bottom: 15px;
    border-bottom: 2px solid #dcdcdf;
    padding-bottom: 15px;
}

.diagram_zeh.flex .item_left .cap_Txt {
    bottom: -20px;
}

.diagram_zeh.flex .item_left h4 img {
    width: 90%;
}

/*   ２列目 、３列目共通*/

.diagram_how.flex {
    gap: 50px;
}

.diagram_how .cap_R {
    bottom: -20px;
    right: 15px;
}

/*   4列目*/

.diagram_cost {
    position: relative;
}

.diagram_cost .cap_Txt {
    bottom: -45px;
}
.diagram_cost .u-mb-large {
    margin-bottom: 150px;
}

.diagram_cost h4 {
    max-width: 650px;
}

.gray_band_subttl {
    background: #f3f4f5;
    text-align: center;
    padding: 8px 0;
    font-weight: 700;
}

.diagram_cost .flex {
    justify-content: space-between;
    gap: 50px;
}

.diagram_cost .flex .item_left,
.diagram_cost .flex .item_right {
    width: 40%;
}
.diagram_cost .flex .item_center {
    width: 10%;
    align-self: center;
}

.diagram_cost .item_right .cap_R {
    bottom: -20px;
}


.smart_note {
    position: relative;
    background: #f3f4f5;
    margin-top: 100px;
}

.merit01 .smart_note {
    width: 95%;
    margin-left: auto;
}

.smart_note::before {
    position: absolute;
    content: '';
    background: url('/image/mirai2/illust_smartNote.png') no-repeat center/contain;
    width: 200px;
    height:200px;
    top: -100px;
    left: -70px;
}

.merit01 .smart_note .item_left {
    width: 48%;
    padding: 50px 40px;
}

.merit01 .smart_note .item_right {
     width: 52%;
}

.merit01 .smart_note .cap_L {
    bottom: -30px;
}

.risk_desc.flex {
    width: 90%;
    gap: 50px;
}

.risk_desc .item_right h4 {
    padding-bottom: 10px;
    border-bottom: 3px solid #f3eaec;
    margin-bottom: 10px;
}

.risk_desc .item_right,
.risk_desc .item_left {
    width: 50%;
}

.risk_basis {
    width: 90%;
}

.risk_basis h4 {
    max-width: 600px;
}

.risk_basis .flex {
    gap: 50px;
}

.risk-child {
    position: relative;
}

.risk-child .cap_Txt {
    bottom: -30px;
}

.risk_basis .flex .item_right,
.risk_basis .flex .item_left {
    width: 50%;
}

#Merit02 {
  scroll-margin-top: 40px;
}

.merit02 {
    overflow: hidden;
}

.merit02 .smart_note {
    padding: 50px 40px;
}

.merit02 .smart_note .cap_Txt {
    bottom: -20px;
}

.merit02 .flex {
    gap: 50px;
}

.risk_basis02 h4 {
    font-size: 30px;
    text-align: center;
}
.risk_basis02 h5 {
    font-weight: 600;
}
.basis_wrap .cap_Txt {
    bottom: -30px;
}

/* living_voice
---------------------------------------------------------------*/

.living__ttl_bar {
    background: #f3f4f4;
    padding: 100px 0;
}
.living__ttl_bar .flex {
    gap: 170px;
}

.living__intro h2 {
    width: 185px;
}

.living__intro .sub_ttl {
    color:#231815
}

.pie_chart {
    max-width: 600px;
}


.bg_gray {
    background: #f3f4f5;
}

.review {
    position: relative;
    background: #fff;
    padding: 30px 50px;
}

.review .cap_Txt {
    bottom: -20px;
}

.review .ttl,.review .profile {
    text-align: center;
}

.review .profile {
    padding: 5px 0;
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
}

.review .top_wrap.flex {
    gap: 50px;
}

.review .top_wrap.flex .item_left {
    position: relative;
    padding-top: 40px;
}

.review .top_wrap.flex .item_left::before {
    position: absolute;
    content: "";
    width: 60px;
    height: 60px;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.review_01 .top_wrap.flex .item_left::before {
    background: url('/image/mirai2/living-01.png') no-repeat center/ contain;
}
.review_02 .top_wrap.flex .item_left::before {
    background: url('/image/mirai2/living-02.png') no-repeat center/ contain;
}
.review_03 .top_wrap.flex .item_left::before {
    background: url('/image/mirai2/living-03.png') no-repeat center/ contain;
}


.review .top_wrap.flex .item_left,
.review .top_wrap.flex .item_right {
    width: 50%;
}

.review .top_wrap.flex .item_right {
    position: relative;
}

.review .top_wrap.flex .item_right::before {
    position: absolute;
    content: "";
    z-index: 10;
    width: 150px;
    height: 150px;
    top: -80px;
    right: -50px;
}

.review_01 .top_wrap.flex .item_right::before {
    background: url('/image/mirai2/living-icon01.png') no-repeat center / contain;
}
.review_02 .top_wrap.flex .item_right::before {
    background: url('/image/mirai2/living-icon02.png') no-repeat center / contain;
}
.review_03 .top_wrap.flex .item_right::before {
    background: url('/image/mirai2/living-icon03.png') no-repeat center / contain;}

.review_01 .bottom_wrap {
    background: #f3f4f5;
}

.review_01 .bottom_wrap.flex .item_left {
    width: 39.5%;
}
.review_01 .bottom_wrap.flex .item_center {
    padding: 50px 20px;
    width: 25%;
}
.review_01 .bottom_wrap.flex .item_right {
    width: 36%;
}

.review .bottom_wrap.column2 {
    gap: 15px;
}

.review .bottom_wrap.column2 .item_left,
.review .bottom_wrap.column2 .item_right {
    width: 50%;
    background: #f3f4f5;
    padding: 30px 30px;
}

.review_03 .bottom_wrap.column2 .item_left h5 {
    max-width: 350px;
}
.review_03 .bottom_wrap.column2 .item_right h5 {
    max-width: 350px;
}


.img_comment {
    position: absolute;
    font-weight: 600;
}

.img_comment01 .img_comment {
    top: 10px;
    left: 10px;
}

.img_comment02 .img_comment {
    bottom: 10px;
    right: 10px;
}



/* counclusion
---------------------------------------------------------------*/
.conclusion {
    position: relative;
}

.conclusion_bg {
    position: relative;
    height: 800px;
    background: url('/image/mirai2/conclusion-bg.webp') no-repeat center / cover;
}

.conclusion_bg p {
    position: absolute;
    top: 10%;
    width: 100%;
    font-size: clamp(11px, 1.5vw, 14px);
    letter-spacing: .1em;
    line-height: 2.5;
    text-align: center;
    color: #fff;
}

[data-aos="conclution"] {
    opacity: 0;
}

[data-aos="conclution"].aos-animate  {
    opacity: 1;
}

/* float_contacts
---------------------------------------------------------------*/

.float_contacts {
    position: absolute;
    bottom: 0;
    z-index: 2;
    left: 50%;
    transform: translate(-50%, 50%);
    max-width: 1200px;
    width: 94%;
    border: 2px solid #c1dbfc;
    border-radius: 10px;
    box-shadow: 1px 1px 20px rgba(0,0,0,.4);
    background: #fff;
    padding: 30px 20px;
}

[data-aos="float"] {
    opacity: 0;
    transform: translate(-50%, 100%);
}

[data-aos="float"].aos-animate  {
    opacity: 1;
    transform: translate(-50%, 50%);
}

.float_contacts .flex {
    gap: 30px;
    justify-content: space-between;
    align-items: center;
}

.float_contacts h4 {
    color: #005bab;
}

.float_contacts .item_left {
    width: 20%;
}

.float_contacts .item_center {
    width: calc(80% - 210px);
}

.float_contacts .line-top {
    padding-bottom: 30px;
    border-bottom: 2px dashed #c1dbfc;
    margin-bottom: 30px;
}

.float_contacts .button {
    background: #005bab;
    color: #fff;
    
    border-radius: 9999px;
    cursor: pointer;
    transition: .3s;
}

.float_contacts .button:hover {
    opacity: .7;
}
.float_contacts .button a {
    display: block;
    padding: 10px 20px;
}



/* credits
---------------------------------------------------------------*/

.credits {
    padding-top: 250px;
    width: 90%;
    max-width: 1050px;
}

.credits .flex {
    align-items: center;
    gap: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.credits .flex:last-child {
    border-bottom: none;
}

.credits .flex .item_left {
    width: 180px;
}

.credits .item_right {
    line-height: 2.2;
}

.credits .item_right .tel-flex {
    width: 78%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.credits .item_right .tel-flex span {
    display: inline-block;
}

.credits .item_right .tel-flex span:nth-child(1) {
    width: 250px;
}

.inline-b {
    display: inline-block;
}

.search_button .a_button {
    position: relative;
    display: inline-block;
    background: #a2cadd;
    color: #fff;
    width: 200px;
    padding: 5px 5px 5px 20px;
    border-radius: 9999px;
    transition: .3s;
}

.search_button .a_button:hover {
    opacity: .7;
}

.search_button .a_button::before {
    position: absolute;
    content: "";
    background: url('/image/mirai2/logo-seach.svg') no-repeat center / contain;
    width: 18px;
    height: 18px;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
}

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

.fs-xl {
    font-size: 24px;
}

.fs-l {
    font-size: 22px;
}

.fs-m {
    font-size: 20px
}

.fs-s {
    font-size: 18px;
}

.fs-xs {
    font-size: 14px;
}


.risk_basis .flex .item_right .cap_Txt {
    bottom: -30px;
}

.credits .flex {
    gap: 30px;
}

.credits .flex .item_left {
    width: 190px;
}




}



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


    /* common
---------------------------------------------------------------*/

.sec-spacing {
    padding: 60px 0;
}

.typo-text {
    font-size: 14px;
    letter-spacing: .1em;
    line-height: 1.6;
}

.fs-xl {
    font-size: 18px;
}

.fs-l {
    font-size: 18px;
}

.fs-m {
    font-size: 18px
}

.fs-s {
    font-size: 16px;
}

.fs-xs {
    font-size: 14px;
}

.fw-bold {
    font-weight: 700;
}

.typo-lh {
    line-height: 1.6;
}

.typo-lh-loose {
    line-height: 2.5;
}

.mg-center {
    margin: 0 auto;
}

.mb-xl {
    margin-bottom: 80px;
}

.mb-l {
    margin-bottom: 30px;
}

.mb-m {
    margin-bottom: 30px;
}

.mb-s {
    margin-bottom: 20px;
}

.mb-xs {
    margin-bottom: 15px;
}

.flex {
    flex-direction: column;
}



    /* header,footer
    ---------------------------------------------------------------*/


    .blue_bar h1 {
        width: 150px;
        height: 50px;
    }

    .blue_bar h1 img {
        width: 80%;
    }


    header .gnav {
        display: block;
        position: fixed;
        width: 100%;
        top: 0;
        right: 0;
        transform: scale(0);
        background: #265aa5;
        border: 2px solid #fff;
        transition: .3s;
        transform-origin: right top;
    }

    .gnav.is-active {
        z-index: 1;
        transform: scale(1);
    }

    .gnav ul {
        flex-direction: column;
        padding: 100px 20px 40px 20px;
    }

    .gnav ul li {
        display: block;
        font-size: 14px;
        width: 90%;
        padding: 0 0 2em 0;
        margin-bottom: 2em;
        border-right: none;
        border-bottom: 2px solid #fff;
    }


    .gnav ul li a {
        color: #fff;
    }

    footer .blue_bar .footer_wrap {
        max-width: 1170px;
        width: 90%;
        margin: 0 auto;
    }

    footer .blue_bar {
        padding: 40px 0px;
    }

    footer .blue_bar .footer_wrap, footer .gnav {
        display: block;
    }

    footer .gnav {
        width: 100%;
    }

    footer .gnav ul {
        padding: 0;
    }

    footer .gnav ul li {
        width: 100%;
        padding: 0;
        border-right: none;
        border-bottom: none;
    }

    footer .gnav ul li:last-child {
        margin: 0;
    }

    footer .blue_bar h1 {
        width: auto;
        height: auto;
        background: none;
        margin-bottom: 30px;
    }

    footer .blue_bar h1 a {
        width: 160px;
        height: auto;
        background: none;
    }

    footer .blue_bar h1 a img {
        width: 160px;
    }

    footer .blue_bar h1 a {
        display: block;
    }

    /* page top */

    .pagetop_button {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }


 
/* mv
---------------------------------------------------------------*/

.mv_area {
    margin-top: 50px;
    height: 450px;
    width: 100%;
    background: url('/image/mirai2/mv_sp.webp') no-repeat center/cover;
}

.mv_area .mv_layer {
    position: absolute;
    width: 90%;
    max-width: 400px;
    top: 16%;
    left: 50%;
    transform: translateX(-50%);
}


/* what_does
---------------------------------------------------------------*/


.what__intro .lead {
    font-size: clamp(11px, 1.5vw, 14px);
    letter-spacing: .1em;
    line-height: 2.5;
}

.what_does .main_ttl {
    width: 140px;
}

.what__illust p.fs-s {
    font-size: 14px;
    text-align: center;
}
#movie_area p {
    font-size: 14px;
    margin-bottom: 15px;
}


.three_point.flex {
    gap: 0px;
}

.three_point .item_left {
    width: 38%;
    max-width: none;
    margin: 0 auto 15px auto;
}

.three_point h4 {
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.three_point .item_center .typo-text {
    font-size: 14px;
}

.what_plus {
    margin-top: 40px;
    width: 50px;
}

.what__dannetsu .item_center,
.what__shoene .item_center,
.what__souene .item_center {
    width: 100%;
    min-width: none;
    padding-top: 15px;
    margin-bottom: 30px;
    text-align: center;
    border-top: 2px solid #b5b5b6;
}

.what__dannetsu .item_right,
.what__shoene .item_right,
.what__souene .item_right {
    width: 100%;
    min-width: none;
}

.what__dannetsu,
.what__shoene {
    margin-bottom: 10px;
}

.what__souene {
    margin-bottom: 80px;
}

.what__bnr::before {
    position: absolute;
    content: "";
    background: url('/image/mirai2/what_bnr02.png') no-repeat center / contain;
    width: 120px;
    height: 120px;
    top: -8%;
    right: 1%;
}

.what__bnr .cap_Txt {
    bottom: -20px;
}

.what_bnr_border {
    flex-direction: column-reverse;
}

.what_bnr_border .item_left {
    width: 100%;
}

.what_bnr_border .item_right {
    width: 100%;
    padding: 30px 30px 0 30px;
}

.what_bnr_border .item_right h4 {
    max-width: 270px;
    width: 75%;
}


/* merit
---------------------------------------------------------------*/

.merit .main_ttl {
    width: 69.74px;
}

.merit .sub_ttl {
    color: #231815;
    font-size: 20px;
}

/*   1列目 */

.diagram_zeh {
    margin-bottom: 50px;
}

.diagram_zeh.flex {
    gap: 30px;
    border-bottom: 1px solid #dcdcdf;
}
.diagram_zeh.flex .item_left{
    width: 100%;
}
.diagram_zeh.flex .item_right {
    width: 100%;
}


.diagram_zeh.flex .item_left .cap_Txt {
    bottom: -30px;
}


.diagram_how {
    margin-bottom: 70px;
}

.diagram_how .item_left {
    margin-bottom: 50px;
}

.merit01 .diagram_cost h4 {
    max-width: 228px;
}

.smart_note::before {
    position: absolute;
    content: '';
    background: url('/image/mirai2/illust_smartNote.png') no-repeat center/contain;
    width: 150px;
    height:150px;
    top: -70px;
    left: -40px;
}

.diagram_cost {
    margin-bottom: 100px;
}

.diagram_cost .flex {
    gap: 30px;
}

.diagram_cost .cap_Txt {
    bottom: -65px;
}
.diagram_cost .u-mb-large {
    margin-bottom: 130px;
}


.diagram_cost .flex .item_left,
.diagram_cost .flex .item_right {
    width: 100%;
}
.diagram_cost .flex .item_center {
    width: 80px;
}

.merit01 .smart_note {
    width: 100%;
    margin-left: 0;
}

.merit01 .smart_note .item_left {
    width: 100%;
    padding: 50px 20px 20px 20px;;
}

.merit01 .smart_note .item_right {
     width: 100%;
}

.merit01 .smart_note .cap_L {
    bottom: -50px;
}

.merit01 .lead {
    margin-bottom: 50px;
}

.merit02 .smart_note .cap_Txt {
    bottom: -30px;
}

.risk_desc .item_right h4 {
    text-align: center;
}

.risk_desc {
    margin-bottom: 40px;
}

.risk_desc .item_right,
.risk_desc .item_left {
    width: 100%;
}

.risk_basis .flex .item_right,
.risk_basis .flex .item_left {
    width: 100%;
}

.risk_basis {
    margin-bottom: 80px;
}

.risk_basis h4 {
    max-width: 200px;
    margin-bottom: 0;
}

.risk_basis .flex {
    gap: 30px;
}

.risk_basis .flex .item_right .cap_Txt {
    bottom: -40px;
}

.basis_wrap {
    margin-bottom: 70px;
}

.risk_basis02_04 {
    margin-bottom: 0;
}

.risk_basis02 h4 {
    font-size: 20px;
}

.risk_basis02_01 .cap_Txt {
    bottom: -38px;
}

/* living_voice
---------------------------------------------------------------*/

.living__ttl_bar {
    background: #f3f4f4;
    padding: 30px 0;
}
.living__ttl_bar .flex {
    flex-direction: row;
    gap: 40px;
}

.living__intro h2 {
    width: 155px;
}


.review {
    position: relative;
    background: #fff;
    padding: 0px 20px 20px;
}


.review .top_wrap.flex .item_left::before {
    position: absolute;
    content: "";
    width: 50px;
    height: 50px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}


.review .top_wrap.flex .item_left,
.review .top_wrap.flex .item_right {
    width: 100%;
}

.review .top_wrap.flex .item_right::before {
    width: 100px;
    height: 100px;
    top: -50px;
    right: -30px;
}


.review .cap_Txt {
    bottom: -40px;
}

.review_01 {
    margin-bottom: 80px;
}

.review_02 {
    margin-bottom: 80px;
}

.review_01 .item_center h5 {
    margin: 0 auto 10px auto;
    max-width: 190px;
}

.review_01 .bottom_wrap.flex .item_left {
    width: 100%;
}
.review_01 .bottom_wrap.flex .item_center {
    padding: 30px 0px;
    width: 100%;
    text-align: center;
}
.review_01 .bottom_wrap.flex .item_right {
    width: 100%;
}

.review .bottom_wrap.column2 .item_left,
.review .bottom_wrap.column2 .item_right {
    width: 100%;
}

.review_03 .bottom_wrap.flex .item_left h5,
.review_03 .bottom_wrap.flex .item_right h5 {
    width: 220px;
}

.pie_chart {
    margin-bottom: 50px;
}

.pie_chart .cap_Txt {
    bottom: -30px;
}

.review_02 .bottom_wrap h5 {
    max-width: 240px;
    margin: 0 auto 20px auto;
}

.bar_chart .item_left,
.bar_chart .item_center {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 50px
}

.bar_chart .item_right {
    width: 85%;
    margin: 0 auto; 
}

.bar_chart.sp figure {
    margin-bottom: 60px;
}

.bar_chart.sp figure:last-child {
    margin-bottom: 0px;
}

/* conclusion
---------------------------------------------------------------*/

.conclusion_bg p {
    position: absolute;
    top: 3%;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
    font-size: 10px;
    letter-spacing: .1em;
    line-height: 2.3;
    text-align: center;
    color: #fff;
}

/* float_contacts
---------------------------------------------------------------*/
.float_contacts {
    position:relative;
    transform: translate(0, -100px);
    bottom: auto;
    left: auto;
    margin: 0 auto;
}

[data-aos="float"] {
    opacity: 0;
    transform: translate(0, 50%);
}

[data-aos="float"].aos-animate  {
    opacity: 1;
    transform: translate(0, -100px);
}


.float_contacts .item_left {
    width: 100%;
    max-width: 300px;
}

.float_contacts .item_center {
    width: 100%;
}

/* credits
---------------------------------------------------------------*/

.credits {
    margin-top: -100px;
    padding-bottom: 0;
}


.credits-name {
    margin-bottom: 5px;

}

.credits .flex {
    align-items: start;
    gap: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
    margin-bottom: 20px;
}

.credits .flex .inline-b {
    display: block;
}

.space-pc {
    display: none;
}


}
