@charset "UTF-8";

body.fixed {
    width: 100%;
    height: 100%;
    position: fixed;
}

.wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* header ------------------------------*/
header {
    position: relative;
    z-index: 500;
    border-bottom: 1px rgba(46, 50, 52, 0.1) solid;
}

.headerInner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    width: 92%;
    height: 80px;
    margin-inline: auto;
}

.headerInner h1 img {
    width: 150px;
    min-width: 140px;
}

/* グロナビ --------------------------*/
.glovalNavi {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.glovalNavi-sp {
    display: none;
}

.glovalNavi-list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-right: 20px;
    width: 620px;
}

.glovalNavi-list li {
    position: relative;
    display: inline-flex;
    align-items: center;
    width: auto;
    height: 80px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
}

.glovalNavi-list li a {
    position: relative;
    color: #333333;
    text-decoration: none;
}

.glovalNavi-list li a::after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #00b9e1;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}

.glovalNavi-list li a:hover::after {
    transform: scale(1, 1);
}

.glovalNavi-list li ul {
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    position: absolute;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
}

.glovalNavi-list li:hover .glovalNavi-detailsList {
    visibility: visible;
    opacity: 1;
}

.glovalNavi-detailsList {
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #00b9e1;
    padding: 30px;
    border-radius: 6px;
}

.glovalNavi-detailsList li {
    height: auto;
}

.products {
    width: 150px;
}

.support {
    width: 210px;
}

.glovalNavi-detailsList li:not(:last-child) {
    margin-bottom: 20px;
}

.glovalNavi-detailsList li a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
}

.glovalNavi-detailsList li a:hover {
    opacity: 0.7;
}

/* cartNavi --------------------------*/
.cartNavi {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 240px;
    height: 80px;
    background-color: #00b9e1;
    cursor: pointer;
}

.cartNavi span {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: .2rem;
    text-decoration: none;
    color: #fff;
}

.cartNavi span::before {
    content: "";
    display: inline-block;
    background: url(/images/pc/ico_cart_wh.svg) no-repeat center center;
    background-size: 20px auto;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    transform: translateY(3px);
}

.cartNavi-detailsList {
    visibility: hidden;
    opacity: 0;
    transition: all .3s;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 240px;
    background-color: #00b9e1;
    padding: 20px 20px 30px 20px;
    border-radius: 0 0 10px 10px;
}

.cartNavi-detailsList li a {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
}

.cartNavi-detailsList li a:hover {
    opacity: 0.7;
}

.cartNavi:hover .cartNavi-detailsList {
    visibility: visible;
    opacity: 1;
}

.cartNavi-detailsList li:not(:last-child) {
    margin-bottom: 20px;
}

/* グロナビ pctb ---------------------*/
@media screen and (max-width: 1160px) {
    .glovalNavi {
        display: none;
    }

    .glovalNavi-sp {
        display: flex;
        position: relative;
        top: 0;
        right: 0;
        z-index: 500;

    }

    .glovalNavi-sp summary {
        list-style: none;
    }

    summary::-webkit-details-marker {
        display: none;
    }

    .glovalNavi-sp summary {
        --btn-padding: 10px;
        padding: var(--btn-padding);
        width: 50px;
        height: 50px;
        padding: 10px;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        position: relative;
        top: 0;
        right: 0;
        cursor: pointer;
        align-items: center;
        z-index: 1000;
    }

    .glovalNavi-sp summary span,
    .glovalNavi-sp summary:before,
    .glovalNavi-sp summary:after {
        content: "";
        width: 100%;
        height: 2px;
        background: #00b9e1;
        transition: all .4s;
        box-sizing: border-box;
    }

    .glovalNavi-sp[open] summary:before,
    .glovalNavi-sp[open] summary:after {
        position: absolute;
        width: calc(100% - (var(--btn-padding) * 2));
    }

    .glovalNavi-sp[open] summary:before {
        transform: rotate(-315deg);
    }

    .glovalNavi-sp[open] summary:after {
        transform: rotate(315deg);
    }

    .glovalNavi-sp[open] summary span {
        opacity: 0;
    }

    /* ハンバーガーメニュー リスト */
    .glovalNavi-sp[open] .cont {
        display: flex;
        align-items: center;
        flex-direction: column;
        position: fixed;
        inset: 0;
        margin: auto;
        background: #f0f3f5;
        max-width: 1280px;
        width: 100%;
        transition: all 0.5s 0s ease;
    }

    .glovalNavi-sp[open] .cont .logo {
        display: flex;
        justify-content: flex-start;
        width: 92%;
        height: 80px;
    }

    .glovalNavi-sp[open] .cont .logo img {
        width: 150px;
    }

    .glovalNavi-menu {
        inset: 0;
        width: 92%;
        margin: 60px auto;
        border-top: 1px solid #e2ebef;
    }

    .glovalNavi-menu li {
        position: relative;
        border-bottom: 1px solid #e2ebef;
    }

    .glovalNavi-menu li a {
        display: block;
        color: #333333;
        text-decoration: none;
        padding: 20px;
    }

    .glovalNavi-sp[open] .glovalNavi-menu li a:after {
        content: '';
        display: inline-block;
        width: 8px;
        height: 8px;
        position: absolute;
        top: 50%;
        right: 20px;
        border-top: 1px solid #00b9e1;
        border-right: 1px solid #00b9e1;
        transform: translate(-50%, -45%) rotate(45deg);
    }

    .cartNavi-detailsList {
        width: 92%;
        padding-left: 20px;
        padding-bottom: 40px;
        visibility: visible;
        position: relative;
        opacity: 1;
        top: auto;
        left: auto;
        transform: none;
        background: none;
    }

    .cartNavi-detailsList li:not(:last-child) {
        margin-bottom: 10px;
    }

    .cartNavi-detailsList li a {
        display: block;
        background: #00b9e1;
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 10px;
        position: relative;
    }

    .cartNavi-detailsList li a:before {
        /*白いひし型 */
        display: block;
        content: "";
        position: absolute;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
        right: 17px;
        width: 10px;
        height: 10px;
        margin-top: -4px;
        background: white;
    }

    .cartNavi-detailsList li a:after {
        /*バックグラウンドと同じ色のひし型をずらして「before要素」を隠す */
        display: block;
        content: "";
        position: absolute;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 50%;
        right: 19px;
        width: 10px;
        height: 10px;
        margin-top: -4px;
        background: #00b9e1;
    }

    .subNavi-menu {
        display: flex;
        width: 92%;
        padding-left: 20px;
        padding-bottom: 40px;
    }

    .subNavi-menu li a {
        font-size: 12px;
        text-decoration: none;
        color: #333333;
    }

    .subNavi-menu li:not(:last-child) {
        margin-right: 20px;
    }

    .subNavi-menu li:not(:first-child)::before {
        content: "｜";
        color: #00b9e1;
        margin-right: 20px;
    }

    .sns-menu {
        display: flex;
        width: 92%;
        padding-left: 20px;
    }

    .sns-menu li a {
        display: block;
        width: 26px;
        height: 26px;
        cursor: pointer;
    }

    .sns-menu .sns-x {
        background: url("/images/pc/ico_sns_x.svg") center center / 24px no-repeat;
    }

    .sns-menu .sns-y {
        background: url("/images/pc/ico_sns_y.svg") center center / 26px no-repeat;
    }

    .sns-menu .sns-f {
        background: url("/images/pc/ico_sns_f.svg") center center / 26px no-repeat;
    }

    .sns-menu .sns-i {
        background: url("/images/pc/ico_sns_i.svg") center center / 26px no-repeat;
    }

    .sns-menu li:not(:last-child) {
        margin-right: 30px;
    }

    .sns-menu li p {
        overflow: hidden;
        text-indent: 100%;
        white-space: nowrap;
    }

    .glovalNavi-sp[open] .cont .copy {
        position: fixed;
        bottom: 0;
        color: #959EA7;
        text-align: center;
        font-size: 10px;
        padding: 20px 0;
    }
}

/* グロナビ tbsp ---------------------*/
@media screen and (max-width: 896px) {
    .headerInner {
        display: flex;
        align-content: center;
        justify-content: center;
        height: 51px;
        align-items: center;
    }

    .headerInner h1 img {
        width: 85px;
        min-width: 85px;
        margin-inline: auto;
        padding-top: 2px;
    }

    .glovalNavi-sp {
        position: absolute;
        top: 0;
        left: 0;
    }

    .glovalNavi-sp summary {
        padding: 15px;
        width: 52px;
        height: 52px;
    }

    .glovalNavi-sp[open] .cont .logo {
        display: flex;
        justify-content: center;
        width: 85px;
        height: 53px;
    }

    .glovalNavi-sp[open] .cont .logo img {
        margin-left: 0;
    }

    .glovalNavi-sp[open] summary:before,
    .glovalNavi-sp[open] summary:after {
        position: absolute;
        width: calc(92% - (var(--btn-padding) * 2));
    }

    .glovalNavi-sp[open] summary:before {
        transform: rotate(-315deg);
    }

    .glovalNavi-sp[open] summary:after {
        transform: rotate(315deg);
    }

    .glovalNavi-sp[open] summary span {
        opacity: 0;
    }
}

/* MV -----------------------------*/
.MV {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 600px;
    margin-inline: auto;
    background: url("/images/pc/mv_bk_pc.jpg") center center / 0 no-repeat;
    background-color: #00b9e1;
    background-size: cover;
    overflow: hidden;
    z-index: 1;
}

.inner {
    display: flex;
    justify-content: space-between;
    max-width: 1280px;
    width: 92%;
    margin-inline: auto;
}

.txtBox {
    display: flex;
    flex-direction: column;
    width: 45%;
    margin-right: 30px;
}

.txtBox>.ttl {
    font-size: 36px;
    font-weight: 600;
    padding-top: 35%;
    color: #fff;
}

.txtBox>.txt {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    font-feature-settings: 'palt'1;
    letter-spacing: 0.1em;
    line-height: 2;
    text-align: justify;
    padding-top: 20%;
}

.imgBox {
    display: none;
    width: 55%;
    text-align: center;

}

.imgBox img {
    padding-top: 70px;
    min-width: 680px;
}

@media screen and (max-width: 1160px) {
    .MV {
        height: 450px;
    }

    .txtBox {
        width: 48%;
    }

    .txtBox>.ttl {
        font-size: 32px;
        padding-top: 25%;
    }

    .txtBox>.txt {
        font-size: 16px;
        padding-top: 25%;
    }

    .imgBox img {
        padding-top: 60px;
        min-width: 500px;
    }
}

@media screen and (max-width: 896px) {
    .MV {
        height: 520px;
    }

    .inner {
        flex-direction: column;
    }

    .txtBox {
        width: 100%;
        margin-right: 0;
    }

    .txtBox>.ttl {
        font-size: 23px;
        padding-top: 40px;
    }

    .txtBox>.txt {
        font-size: 13px;
        padding: 30px 0;
    }

    .imgBox {
        width: 100%;
    }

    .imgBox img {
        padding-top: 0;
        min-width: 345px;
        width: 345px;
    }
}

.MV-2nd {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 180px;
    margin-inline: auto;
    background: url("/images/pc/mv_bk_pc.jpg") center center / 0 no-repeat;
    background-color: #00b9e1;
    background-size: cover;
    overflow: hidden;
    z-index: 1;
}

.MV-2nd>h1 {
    font-size: 36px;
    font-weight: 600;
    letter-spacing: .03em;
    color: #fff;
}

@media screen and (max-width: 896px) {
    .MV-2nd {
        height: 120px;
    }

    .MV-2nd>h1 {
        font-size: 24px;
    }
}

/* イントロ -----------------------------*/
.intro {
    display: flex;
    justify-content: center;
    background-color: #d5f3ff;
}

.intro>.inner {
    max-width: 1280px;
    width: 92%;
    margin-inline: auto;
    padding: 80px 0;
}

.intro>.inner>ul {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: space-between;
}

.intro>.inner>ul li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    width: 23%;
    background-color: #fff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 400;
    overflow: hidden;
    filter: drop-shadow(0 2mm 5mm rgb(51, 188, 226, 0.5));
}

.intro-txtBox {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: fit-content;
    padding: 25px 28px 25px 28px;
}

.intro-txtBox .txt-l {
    font-size: 32px;
    font-weight: 600;
}

.intro-txtBox .txt-m {
    font-size: 26px;
    font-weight: 600;
}

.intro-txtBox .txt-s {
    font-size: 24px;
    font-weight: 600;
}

.intro-txtBox .txt {
    padding-top: 20px;
    font-feature-settings: 'palt'1;
    letter-spacing: 0.03em;
    line-height: 1.8;
    text-align: justify;
}

.intro-txtBox .clr-aqua {
    color: #00b9e1;
}

.intro-txtBox .clr-blue {
    color: #2d4979;
}

.intro-img img {
    width: 100vh;
}

@media screen and (max-width: 1160px) {
    .intro .inner>ul {
        gap: 30px 25px;
    }

    .intro .inner>ul li {
        width: 31%;
    }

    .intro-txtBox {
        padding: 15px 20px 15px 20px;
    }
}

@media screen and (max-width: 896px) {
    .intro .inner {
        padding: 50px 0;
    }

    .intro .inner>ul {
        gap: 20px 12px;
    }

    .intro .inner>ul li {
        width: 48%;
        font-size: 13px;
    }

    .intro-txtBox {
        padding: 8% 6% 8% 6%;
    }

    .intro-txtBox .txt-l {
        font-size: 20px;
    }

    .intro-txtBox .txt-m {
        font-size: 18px;
    }

    .intro-txtBox .txt-s {
        font-size: 16px;
    }

    .intro-txtBox .sup {
        font-size: 12px;
    }

    .intro-txtBox .txt {
        padding-top: 10px;
        line-height: 1.5;
    }
}

/* +Styleについて -----------------------------*/
.bg-clr-lightBlue {
    background: linear-gradient(70deg, #d5f3ff, #e9f9ff);
}

.lead {
    display: flex;
    margin-inline: auto;
    font-size: 20px;
    font-weight: 600;
    line-height: 2;
    text-align: center;
    color: #2d4979;
    padding: 100px 0 150px 0;
}

.about {
    position: relative;
    display: flex;
    padding: 0 0 150px 0;
    margin-top: -50px;
}

.about:last-of-type {
    padding: 0 0 200px 0;
}

.about-imgBox {
    position: absolute;
    right: 0;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    padding-left: 60px;
}

.about-imgBox-re {
    position: absolute;
    left: 0;
    width: 100%;
    max-width: 1000px;
    height: 500px;
    padding-right: 60px;
}

.about-imgBox img {
    border-radius: 20px 0 0 20px;
}

.about-imgBox-re img {
    border-radius: 0 20px 20px 0;
}

.about-txtBox {
    position: relative;
    display: block;
    max-width: 1280px;
    width: 92%;
    height: 600px;
    margin-inline: auto;
    z-index: 1;
}

.about-txtCard {
    position: absolute;
    left: 0;
    top: 300px;
    height: fit-content;
    max-width: 630px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    filter: drop-shadow(0 2mm 5mm rgb(51, 188, 226, 0.5));
}

.about-txtCard-re {
    position: absolute;
    right: 0;
    top: 300px;
    height: fit-content;
    max-width: 630px;
    padding: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    filter: drop-shadow(0 2mm 5mm rgb(51, 188, 226, 0.5));
}

.about-txtCard-re h2,
.about-txtCard h2 {
    font-size: 32px;
    font-weight: 600;
    color: #00b9e1;
    margin-bottom: 20px;
}

.about-txtCard-re p,
.about-txtCard p {
    font-size: 16px;
    font-feature-settings: 'palt'1;
    letter-spacing: 0.03em;
    line-height: 2;
    text-align: justify;
}

@media screen and (max-width: 896px) {
    .lead {
        font-size: 14px;
        font-weight: 600;
        text-align: left;
        padding: 50px 0 100px 0;
        font-feature-settings: 'palt'1;
        letter-spacing: 0.03em;
        line-height: 1.8;
        text-align: justify;
    }

    .about {
        padding: 0 0 100px 0;
        margin-top: -50px;
    }

    .about:last-of-type {
        padding: 0 0 150px 0;
        margin-top: -65px;
    }

    .about-txtBox {
        height: 450px;
    }

    .about-txtCard-re,
    .about-txtCard {
        top: 180px;
        padding: 25px;
    }

    .about-txtCard-re h2,
    .about-txtCard h2 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .about-txtCard-re p,
    .about-txtCard p {
        font-size: 14px;
        line-height: 1.6;
    }

    .about-imgBox {
        padding-left: 0;
    }

    .about-imgBox-re {
        padding-right: 0;
    }

    .about-imgBox-re img,
    .about-imgBox img {
        border-radius: 0;
    }
}

/* fadein -----------------------------*/
.fadein {
    transform: translateY(50px);
    opacity: 0;
    transition: transform 2s, opacity 2s;
}

.fadein.show {
    transform: translateY(0);
    opacity: 1;
}

/* fadein -----------------------------*/
.sp_only {
    display: none;
    transition-duration: .5s;
}

@media only screen and (max-width: 896px) {
    .sp_only {
        display: block;
        transition-duration: .5s;
    }
}

.pc_only {
    transition-duration: .5s;
}

@media only screen and (max-width: 896px) {
    .pc_only {
        display: none;
        transition-duration: .5s;
    }
}

/* 注記 -------------------------------*/
.noteBox {
    padding-top: 20px;
}

.note>p {
    position: relative;
    padding-left: 20px;
    box-sizing: border-box;
    word-break: break-all;
    font-size: 14px;
}

.note>p>span {
    position: absolute;
    top: 0;
    left: 0;
}

/* パンくず -----------------------------*/
.breadcrumbs {
    background-color: #f0f3f5;
}

.breadcrumbs ul {
    max-width: 1280px;
    width: 92%;
    margin-inline: auto;
    padding: 18px 0px;
    font-size: 12px;
    line-height: 1.3;
}

.breadcrumbs ul li {
    display: inline;
    background: url("/images/pc/ico_arrow_s.svg") right center / 5px no-repeat;
    padding: 0 15px 0 5px;
    margin-right: 0px;
}

@media screen and (max-width: 896px) {
    .breadcrumbs ul {
        padding: 6px 0px 8px;
    }

    .breadcrumbs ul li {
        font-size: 10px;
    }
}

.breadcrumbs ul li:last-child {
    background: none;
    margin-inline: auto;
}

.breadcrumbs ul li a {
    display: inline-block;
    color: #959ea7;
}

.breadcrumbs ul li a:hover {
    color: #00b9e1;
    text-decoration: none;
}

/* pageTop -----------------------------*/
.pageTop {
    background: url("/images/pc/ico_arrow_s_t_wh.svg") center 48% / 12px no-repeat rgba(84, 89, 91, 0.8);
    width: 40px;
    height: 40px;
    position: fixed;
    right: -40px;
    bottom: 60px;
    border-radius: 4px 0px 0px 4px;
    z-index: 100;
    cursor: pointer;
    transition: all 0.2s ease-in-out 0s;
}

@media screen and (max-width: 896px) {
    .pageTop {
        width: 34px;
        height: 34px;
    }
}

.pageTop.on {
    right: 0px;
}

.pageTop:hover {
    background: url("/images/pc/ico_arrow_s_t_wh.svg") center 48% / 12px no-repeat rgb(46, 50, 52);
}

/* footer -----------------------------*/
footer {
    background-color: #25292b;
    margin-top: auto;
}

.footerInner {
    max-width: 1280px;
    width: 92%;
    margin-inline: auto;
    padding: 40px 0;
}

.siteMap-list {
    display: flex;
    width: 100%;
    margin-bottom: 80px;
    align-items: flex-end;
}

.ttl img {
    width: 115px;
}

.siteMap-list li a {
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    color: #f0f3f5;
}

.siteMap-list li:not(:last-child) {
    margin-right: 60px;
}

.subNavi {
    display: flex;
    justify-content: space-between;
}

.subNavi-list {
    display: flex;
}

.subNavi-list li a {
    font-size: 12px;
    text-decoration: none;
    color: #f0f3f5;
}

.subNavi-list li:not(:last-child) {
    margin-right: 20px;
}

.subNavi-list li:not(:first-child)::before {
    content: "｜";
    color: #959ea7;
    margin-right: 20px;
}

.sns-list {
    display: flex;
}

.sns-list li a {
    display: block;
    width: 26px;
    height: 26px;
    cursor: pointer;
}

.sns-x {
    background: url("/images/pc/ico_sns_x_w.svg") center center / 24px no-repeat;
}

.sns-y {
    background: url("/images/pc/ico_sns_y_w.svg") center center / 26px no-repeat;
}

.sns-f {
    background: url("/images/pc/ico_sns_f_w.svg") center center / 26px no-repeat;
}

.sns-i {
    background: url("/images/pc/ico_sns_i_w.svg") center center / 26px no-repeat;
}

.sns-list li:not(:last-child) {
    margin-right: 30px;
}

.sns-list li p {
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}

.siteMap-list li a:hover,
.subNavi-list li a:hover,
.sns-list li a:hover {
    opacity: 0.7;
}

footer .copy {
    background-color: #333;
    color: #959EA7;
    text-align: center;
    font-size: 10px;
    padding: 20px 0;
}

/* グロナビ tbsp ---------------------*/
@media screen and (max-width: 896px) {
    .siteMap-list {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 30px;
    }

    .siteMap-list li {
        margin-bottom: 20px;
    }

    .siteMap-list li a {
        font-size: 14px;
    }

    .subNavi {
        flex-direction: column;
    }

    .subNavi-list li a {
        margin-bottom: 20px;

    }

    .ttl img {
        width: 90px;
    }
}

/* 2024年 改修上書き箇所 -----------------*/
#original {
    overflow: hidden;
    font-size: 16px
}

#item_layout #item_detail>h1 {
    border-bottom: 1px #CDD6DD solid;
    padding-bottom: 40px;
    margin-bottom: 50px;
}

@media screen and (max-width: 1280px) {
    #item_layout #item_detail>h1 {
        padding-bottom: 18px;
        margin-bottom: 30px;
    }
}

#item_layout #item_detail {
    margin-right: 0;
}

@media screen and (max-width: 1280px) {
    #item_layout #item_detail {
        margin-right: 0;
    }
}

.section-appli {
    margin: 0 auto;
}

.item_freehtml p a {
    display: block;
}

.item_freehtml img {
    display: block;
    margin: 0 auto;
    max-width: 750px;
}

.text_point_box {
    background: #f6fafc;
    padding: 24px 24px 1px;
    border: 1px solid #e2ebef;
    margin-bottom: 24px;
}

.text_point_box .text_point_title {
    color: #7896a5;
    margin-bottom: 8px;
    font-size: 16px;
}
