/*==================================================
base
==================================================*/

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0 auto;
    font-size: 100%;
    text-align: center;
}

header,
main,
footer {
    overflow-x: hidden;
    text-align: left;
}

ul li {
    list-style: none;
}

/*--------------------------------------------------
#scroll-top
--------------------------------------------------*/

#scroll-top {
    position: fixed;
    position: -webkit-fixed;
    display: block;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #0288d1;
    border-radius: 50%;
}

#scroll-top a {
    position: relative;
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;

}

#scroll-top a::before {
    position: absolute;
    top: 3px;
    left: 13px;
    margin: auto;
    font-family: 'Font Awesome 6 Free';
    content: '\f106';
    width: 25px;
    height: 25px;
    font-size: 25px;
    font-weight: 900;
    color: #fff;
    text-align: center;
}

/*==================================================
header
==================================================*/

/* header {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: #4caf50;
    transition: 0.3s;
    z-index: 10;
}

header .width-960 {
    display: block;
    margin: 0 auto;
    padding: 0 10px;
    max-width: 960px;
    text-align: right;
}

header h2 {
    color: #ffffff;
}

header h2 a {
    opacity: 1;
    transition: 0.3s;
}

header h2 a:hover {
    opacity: 0.7;
}

.header-icon {
    padding-left: 10%;
    z-index: 21;
    display: block !important;
}

.header-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 960px;
    width: 100%;
}

@media screen and (max-width: 768px) {
    header h2 {
        font-size: 1.8rem;
    }

    .header-icon {
        width: 25%;
        height: auto;
    }

    .header-wrap {
        gap: 10px;
    }

} */


/*==================================================
header
==================================================*/
header {
    position: relative;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 80px;
    line-height: 80px;
    background-color: #4caf50;
    transition: 0.3s;
    z-index: 10;
}

.header-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

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

    .header-wrap {
        margin: 2% auto;
    }

}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.header-icon {
    padding-left: 0;
    width: 48px;
    height: auto;
    z-index: 21;
    display: block !important;
}

header h2 {
    color: #ffffff;
    font-size: 2.0rem;
    line-height: 1;
}

header h2 a {
    opacity: 1;
    transition: 0.3s;
}

header h2 a:hover {
    opacity: 0.7;
}

.global-nav ul {
    display: flex;
    align-items: center;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 2.0rem;
}

.global-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    line-height: 1;
    display: inline-block;
    padding: 8px 4px;
    transition: opacity .2s ease;
}

.global-nav a:hover {
    opacity: .8;
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    background: #fff;
    transition: transform .25s ease, opacity .25s ease, top .25s ease;
}

.hamburger span:nth-child(1) {
    top: 14px;
}

.hamburger span:nth-child(2) {
    top: 21px;
}

.hamburger span:nth-child(3) {
    top: 28px;
}

.is-drawer-open .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
}

.is-drawer-open .hamburger span:nth-child(2) {
    opacity: 0;
}

.is-drawer-open .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
}

.sp-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(60%, 320px);
    height: 100vh;
    background: #fff;
    padding: 96px 20px 20px;
    box-shadow: -8px 0 24px rgba(0, 0, 0, .15);
    transform: translateX(100%);
    transition: transform .25s ease;
    z-index: 100;
    opacity: 0.9;
}

.is-drawer-open .sp-drawer {
    transform: translateX(0);
}

.sp-drawer ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0;
}

.sp-drawer a {
    display: block;
    padding: 5.5% 10px;
    border-radius: 10px;
    color: #333;
    text-decoration: none;
    font-weight: 700;
    font-size: 2.0rem;
    line-height: 1.5;
}

.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .35);
    z-index: 90;
}

.drawer-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 28px;
    line-height: 1;
    background: transparent;
    border: none;
    color: #333;
    cursor: pointer;
    z-index: 101;
}

.drawer-close:hover {
    opacity: 0.7;
}


@media screen and (max-width: 768px) {
    header {
        height: 64px;
        line-height: 64px;
    }

    .header-wrap {
        gap: 10px;
    }

    .header-icon {
        width: 40px;
    }

    header h2 {
        font-size: 1.8rem;
    }

    .global-nav {
        display: none;
    }

    .hamburger {
        display: inline-block;
    }
}

@media (hover: hover) {
    .sp-drawer a:hover {
        background: #eee;
    }
}



/*==================================================
main
==================================================*/

/*--------------------------------------------------
#top-section
--------------------------------------------------*/

main #top-section {
    position: relative;
    display: block;
    margin: 0 auto 80px;
    padding: 0;
    text-align: center;
}

main #top-section .width-960 {
    display: block;
    margin: 0 auto;
    padding: 0 10px;
    max-width: 960px;
}

main #top-section h2 {
    margin: 40px 0;
    padding: 0;
    font-size: 3em;
    color: #4caf50;
}

main #top-section h1 {
    margin: 40px 0;
    padding: 0;
    line-height: 1.3em;
    font-size: 4em;
    color: #4caf50;
    transform: skew(-4deg, -2deg);
    z-index: 20;
}

main #top-section h1 span {
    color: #ff68bc;
    z-index: 20;
}

main #top-section h1 .focus-point {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 70px;
    font-size: 0.6em;
    color: #ffffff;
    background-size: 80px 70px;
    background-image: url("../img/bg-h1.png");
    background-repeat: no-repeat;
    background-position: 50% 5px;
    vertical-align: top;
    z-index: 10;
}

main #top-section ul {
    margin: 0 auto;
    width: fit-content;
    text-align: center;
}

main #top-section ul li {
    margin: 0 auto;
    padding: 0 0 0 30px;
    text-align: left;
    font-size: 1.6em;
    background-image: url("../img/icon-box.png");
    background-repeat: no-repeat;
    background-position: 0 10px;
}

@media screen and (max-width: 640px) {
    main #top-section h1 {
        font-size: 14.8vw;
    }
}

/*--------------------------------------------------
#compare-section
--------------------------------------------------*/

main #compare-section {
    position: relative;
    display: block;
    margin: 0 auto 80px;
    padding: 0;
    text-align: center;
}

main #compare-section .width-960 {
    display: block;
    margin: 0 auto;
    padding: 0 10px;
    max-width: 960px;
}

main #compare-section h2 {
    margin: 0 0 60px 0;
}

main #compare-section h2 span {
    line-height: 1.3em;
    font-size: 2em;
    color: #4caf50;
}

main #compare-section h3 {
    position: relative;
    margin: 0 auto 20px;
    width: fit-content;
    line-height: 1.3em;
    font-size: 3em;
    color: #4caf50;
}

main #compare-section h3 span {
    color: #ff68bc;
}

main #compare-section h3::before {
    position: absolute;
    top: 5px;
    left: -10px;
    content: "";
    display: block;
    border-top: 100px solid #4caf50;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 100px solid transparent;
    transform: rotate(-20deg) skew(10deg, -30deg);
}

main #compare-section h3::after {
    position: absolute;
    top: 5px;
    right: -10px;
    content: "";
    display: block;
    border-top: 100px solid #4caf50;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 100px solid transparent;
    transform: rotate(20deg) skew(-10deg, 30deg);
}

main #compare-section .each-service {
    margin: 60px 0 0;
}

main #compare-section .each-service h4 {
    margin: 40px 0 0;
    font-size: 3em;
    color: #4caf50;
}

main #compare-section .each-service p {
    margin: 20px auto 60px;
    width: fit-content;
    text-align: left;
}

main #compare-section .each-service ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

main #compare-section .each-service ul li {
    width: 30%;
}

main #compare-section .each-service ul li:first-child {
    margin: 0 20px 0 0;
}

main #compare-section .each-service .intro-block {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    margin: 20px 0 0 0;
}

main #compare-section .each-service .intro-block dl:first-child {
    margin: 0 30px 0 0;
}

main #compare-section .each-service .intro-block dl dd {
    max-width: 440px;
    text-align: left;
}

@media screen and (max-width: 640px) {
    main #compare-section h3 {
        font-size: 8vw;
    }

    main #compare-section h3::before {
        position: absolute;
        top: 5px;
        left: 10px;
        content: "";
        display: block;
        border-top: 80px solid #4caf50;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 80px solid transparent;
    }

    main #compare-section h3::after {
        position: absolute;
        top: 5px;
        right: 10px;
        content: "";
        display: block;
        border-top: 80px solid #4caf50;
        border-left: 4px solid transparent;
        border-right: 4px solid transparent;
        border-bottom: 80px solid transparent;
    }

    main #compare-section .each-service ul li:last-child img {
        height: 28vw;
    }
}


/*--------------------------------------------------
#intro-section
--------------------------------------------------*/

main #intro-section {
    position: relative;
    display: block;
    margin: 0 auto 80px;
    padding: 0;
    text-align: center;
}

main #intro-section .width-960 {
    display: block;
    margin: 0 auto;
    padding: 0 10px;
    max-width: 960px;
}

main #intro-section h2 {
    position: relative;
    margin: 0 auto 10px;
    width: fit-content;
    line-height: 1.3em;
    font-size: 2em;
    color: #4caf50;
}


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

    main #intro-section h2 {
        font-size: 1.5em;
    }

}


main #intro-section h2 span {
    color: #ff68bc;
}

main #intro-section h2::before {
    position: absolute;
    top: 5px;
    left: -10px;
    content: "";
    display: block;
    border-top: 70px solid #4caf50;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 70px solid transparent;
    transform: rotate(-20deg) skew(10deg, -30deg);
}

main #intro-section h2::after {
    position: absolute;
    top: 5px;
    right: -10px;
    content: "";
    display: block;
    border-top: 70px solid #4caf50;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-bottom: 70px solid transparent;
    transform: rotate(20deg) skew(-10deg, 30deg);
}

main #intro-section p {
    margin: 0 0 20px 0;
    line-height: 1.5em;
    font-size: 1.3em;
    color: #7b888f;
}

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

    main #intro-section p {
        line-height: 1.8em;
    }

}

.plan-list {
    margin: 0 auto 20px;
    padding: 0;
    width: fit-content;
    list-style: none;
    font-size: 2em;
}

.plan-list li {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 12px 0;
    border-bottom: 1px dotted #9e9e9e;
    text-align: left;
    font-weight: bold;
}

.plan-list li:last-child {
    border-bottom: none;
}

.plan-list .rank {
    width: 3.5em;
    flex-shrink: 0;
    font-weight: 700;
}

.plan-list .name {
    flex: 1;
    word-break: break-word;
    line-height: 1.3;
}

.plan-list .supple {
    display: block;
    margin-top: 0.2em;
    font-size: 0.8em;
    font-weight: normal;
    color: #555;
}

.plan-list .price {
    flex-shrink: 0;
    min-width: 5.5em;
    text-align: right;
    white-space: nowrap;
}

.gold-rank .rank,
.gold-rank .name {
    color: #87812c;
}

.silver-rank .rank,
.silver-rank .name {
    color: #9e9e9e;
}

.copper-rank .rank,
.copper-rank .name {
    color: #946f51;
}

.plan-list li .stone {
    color: #767676;
}


@media screen and (max-width: 640px) {
    .plan-list {
        font-size: 5.8vw;
    }
}



main #intro-section .read-text {
    margin: 0 auto;
    width: fit-content;
    text-align: left;
}

main #intro-section .read-text span {
    color: #4caf50;
}










/*--------------------------------------------------
#point-section
--------------------------------------------------*/

main #point-section {
    position: relative;
    display: block;
    margin: 0 auto 80px;
    padding: 0;
    text-align: center;
}

main #point-section .width-960 {
    display: block;
    margin: 0 auto;
    padding: 0 10px;
    max-width: 960px;
}

main #point-section .icon-box {
    margin: 0 0 40px 0;
    /*width: 80px;*/
}

main #point-section h2 {
    margin: 0 0 20px 0;
    font-size: 1.8em;
    line-height: 1.3em;
    transform: skew(-4deg, -2deg);
}

main #point-section h2 span {
    line-height: 1.3em;
    font-size: 3em;
    color: #4caf50;
}

main #point-section .skew {
    margin: 0 0 40px 0;
    transform: skew(-4deg, -2deg);
}

main #point-section .point-comment {
    position: relative;
    margin: 40px auto 40px;
    padding: 10px 20px;
    width: fit-content;
    font-size: 1.3em;
    color: #ffffff;
    background-color: #4caf50;
    text-align: left;
    border-radius: 5px;
}

main #point-section .point-comment::before {
    position: absolute;
    top: -50px;
    left: 60%;
    content: "";
    display: block;
    border-top: 30px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 30px solid #4caf50;
    border-radius: 5px;
    transform: rotate(-20deg) skew(4deg, 4deg);
}

main #point-section a {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

main #point-section a .btn {
    padding: 10px 60px;
    width: fit-content;
    font-size: 1.6em;
    color: #ffffff;
    background-color: #0288d1;
    border-radius: 40px;
    opacity: 1;
    transition: 0.3s;
}

main #point-section a .btn:hover {
    opacity: 0.7;
}

@media screen and (max-width: 640px) {
    main #point-section a .btn {
        padding: 10px 40px;
        font-size: 5vw;
    }
}


/*--------------------------------------------------
#feature-section
--------------------------------------------------*/

main #feature-section {
    position: relative;
    display: block;
    margin: 0 auto 60px;
    padding: 0;
    text-align: center;
}

main #feature-section .width-960 {
    display: block;
    margin: 0 auto 60px;
    padding: 0 10px;
    max-width: 960px;
}

main #feature-section h2 {
    margin: 20px auto 0;
    padding: 0;
    width: fit-content;
    line-height: 1.3em;
    font-size: 4em;
    color: #4caf50;
    transform: skew(-4deg, -2deg);
}

main #feature-section .human-image {
    margin: 0 0 60px 0;
}

main #feature-section .feature-intro {
    position: relative;
    margin: 0 0 60px 0;
    padding: 10px 20px;
    background-color: #4caf50;
}

main #feature-section .feature-intro::before {
    position: absolute;
    top: -50px;
    right: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 50%, #4caf50 calc(50% + 1px));
}

main #feature-section .feature-intro::after {
    position: absolute;
    bottom: -50px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top left, transparent 50%, #4caf50 calc(50% + 1px));
}

main #feature-section .feature-intro dl {
    margin: 0 0 80px 0;
    color: #ffffff;
}

main #feature-section .feature-intro dl dt h3 {
    font-size: 3em;
}

main #feature-section .feature-intro dl dd {
    margin: 0 auto;
    width: fit-content;
    font-size: 1.3em;
    text-align: left;
}

main #feature-section .feature-intro .icon-box {
    margin: 0 0 60px 0;
}

main #feature-section .feature-intro .head-line {
    margin: 0 0 0 0;
    color: #ffffff;
    font-size: 3em;
    transform: skew(-4deg, -2deg);
}

main #feature-section .feature-intro h4 {
    font-size: 2.6em;
    color: #ffffff;
}

main #feature-section .feature-intro p {
    margin: 0 0 20px 0;
    font-size: 1.3em;
    color: #ffffff;
}

main #feature-section .feature-intro .annotate {
    margin: 10px auto 0;
    width: fit-content;
    font-size: 0.8em;
    text-align: left;
}

main #feature-section .feature-intro .display-move {
    margin: 0 0 80px 0;
    padding: 15px 0;
    overflow-x: auto;
}

main #feature-section th,
main #feature-section td,
main #feature-section .feature-intro th,
main #feature-section .feature-intro td {
    white-space: nowrap;
}

main #feature-section .feature-intro .plan1-1 {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #feature-section .feature-intro .plan1-1 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #feature-section .feature-intro .plan1-2,
main #feature-section .feature-intro .plan1-3,
main #feature-section .plan1-4 {
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #feature-section .feature-intro .plan1-2 tbody tr:nth-of-type(odd),
main #feature-section .feature-intro .plan1-3 tbody tr:nth-of-type(odd),
main #feature-section .plan1-4 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #feature-section .feature-intro .plan1-1 .ta-right,
main #feature-section .feature-intro .plan1-2 .ta-right,
main #feature-section .feature-intro .plan1-3 .ta-right,
main #feature-section .plan1-4 .ta-right {
    text-align: left;
}

main #feature-section .feature-intro .plan1-1 .focus,
main #feature-section .feature-intro .plan1-2 .focus,
main #feature-section .feature-intro .plan1-3 .focus,
main #feature-section .plan1-4 .focus {
    color: #ff5722;
}

main #feature-section .feature-intro .plan1-1 td {
    text-align: right;
}

main #feature-section .feature-intro .plan1-2 td,
main #feature-section .feature-intro .plan1-3 td,
main #feature-section .plan1-4 td {
    text-align: center;
}

main #feature-section .feature-intro .plan1-1 th,
main #feature-section .feature-intro .plan1-1 td,
main #feature-section .feature-intro .plan1-2 th,
main #feature-section .feature-intro .plan1-2 td,
main #feature-section .feature-intro .plan1-3 th,
main #feature-section .feature-intro .plan1-3 td,
main #feature-section .plan1-4 th,
main #feature-section .plan1-4 td {
    padding: 5px;
    line-height: 1.3em;
    border: 1px solid #ced2cf;
}

main #feature-section .feature-intro .plan1-1 th:nth-of-type(2),
main #feature-section .feature-intro .plan1-1 td:nth-of-type(2),
main #feature-section .feature-intro .plan1-2 th:nth-of-type(2),
main #feature-section .feature-intro .plan1-2 td:nth-of-type(2),
main #feature-section .feature-intro .plan1-3 th:nth-of-type(2),
main #feature-section .feature-intro .plan1-3 td:nth-of-type(2),
main #feature-section .plan1-4 th:nth-of-type(2),
main #feature-section .plan1-4 td:nth-of-type(2) {
    border-left: 3px solid #ff5722;
    border-right: 3px solid #ff5722;
}

main #feature-section .feature-intro .plan1-2 .focus,
main #feature-section .feature-intro .plan1-3 .focus,
main #feature-section .plan1-4 .focus {
    color: #ff5722;
}

main #feature-section .feature-intro .plan1-2 th,
main #feature-section .feature-intro .plan1-2 td,
main #feature-section .feature-intro .plan1-3 th,
main #feature-section .feature-intro .plan1-3 td,
main #feature-section .plan1-4 th,
main #feature-section .plan1-4 td {
    padding: 5px;
    line-height: 1.3em;
    border: 1px solid #ced2cf;
}

main #feature-section .feature-intro .plan1-1:before {
    position: absolute;
    top: -14px;
    left: 102px;
    content: "";
    display: block;
    width: 73px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #feature-section .feature-intro .plan1-1:after {
    position: absolute;
    bottom: -14px;
    left: 102px;
    content: "";
    display: block;
    width: 73px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #feature-section .feature-intro .plan1-2:before {
    position: absolute;
    top: -14px;
    left: 128px;
    content: "";
    display: block;
    width: 73px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #feature-section .feature-intro .plan1-2:after {
    position: absolute;
    bottom: -14px;
    left: 128px;
    content: "";
    display: block;
    width: 73px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #feature-section .feature-intro .plan1-3:before {
    position: absolute;
    top: -14px;
    left: 116px;
    content: "";
    display: block;
    width: 86px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #feature-section .feature-intro .plan1-3:after {
    position: absolute;
    bottom: -14px;
    left: 116px;
    content: "";
    display: block;
    width: 86px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #feature-section .plan1-4 {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #feature-section .feature-intro .plan1-4 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #feature-section .plan1-4:before {
    position: absolute;
    top: -14px;
    left: 72px;
    content: "";
    display: block;
    width: 72px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #feature-section .plan1-4:after {
    position: absolute;
    bottom: -14px;
    left: 72px;
    content: "";
    display: block;
    width: 72px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #feature-section h4 {
    font-size: 2.6em;
    color: #72909d;
}

main #feature-section p {
    margin: 0 0 20px 0;
    font-size: 1.3em;
    color: #72909d;
}

main #feature-section .display-move {
    margin: 0 0 80px 0;
    padding: 15px 0;
    overflow-x: auto;
}

main #feature-section .review-comment {
    position: relative;
    margin: 0 auto 60px;
    padding: 10px 20px;
    width: fit-content;
    font-size: 1.3em;
    color: #ffffff;
    background-color: #607d8b;
    text-align: left;
    border-radius: 5px;
}

main #feature-section .review-comment::before {
    position: absolute;
    top: -50px;
    left: 60%;
    content: "";
    display: block;
    border-top: 30px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 30px solid #607d8b;
    border-radius: 5px;
    transform: rotate(-20deg) skew(4deg, 4deg);
}

main #feature-section .review-comment span {
    display: block;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #ffffff;
}

main #feature-section .plan-catch {
    line-height: 1.3em;
    font-size: 2.6em;
    color: #4caf50;
}

main #feature-section .plan-catch span {
    display: block;
    margin: 0 0 60px 0;
    font-size: 1.3em;
}

main #feature-section .sub-read {
    margin: 40px auto 40px;
    width: fit-content;
    line-height: 1.3em;
    font-size: 1.3em;
    color: #4caf50;
    text-align: left;
}

main #feature-section a {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

main #feature-section a .btn {
    margin: 0 auto 60px;
    padding: 20px 80px;
    width: fit-content;
    font-size: 1.6em;
    color: #ffffff;
    background-color: #0288d1;
    border-radius: 40px;
    opacity: 1;
    transition: 0.3s;
}

main #feature-section a .btn:hover {
    opacity: 0.7;
}

@media screen and (max-width: 640px) {
    main #feature-section .feature-intro::before {
        position: absolute;
        top: -49px;
        right: 0;
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: linear-gradient(to bottom right, transparent 50%, #4caf50 calc(50% + 1px));
    }

    main #feature-section .feature-intro::after {
        position: absolute;
        bottom: -49px;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: linear-gradient(to top left, transparent 50%, #4caf50 calc(50% + 1px));
    }

    main #feature-section a .btn {
        padding: 20px 60px;
        font-size: 5vw;
    }
}

/*--------------------------------------------------
#choice-section
--------------------------------------------------*/

main #choice-section {
    position: relative;
    display: block;
    margin: 0 auto 60px;
    padding: 0;
    text-align: center;
}

main #choice-section .width-960 {
    display: block;
    margin: 0 auto 60px;
    padding: 0 10px;
    max-width: 960px;
}

main #choice-section h2 {
    margin: 20px 0 40px 0;
    padding: 0;
    line-height: 1.3em;
    font-size: 4em;
    color: #ffffff;
    transform: skew(-4deg, -2deg);
}

main #choice-section .choice-intro {
    position: relative;
    margin: 0 0 60px 0;
    padding: 10px 20px;
    background-color: #4caf50;
}

main #choice-section .choice-intro::before {
    position: absolute;
    top: -50px;
    right: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 50%, #4caf50 calc(50% + 1px));
}

main #choice-section .choice-intro::after {
    position: absolute;
    bottom: -50px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top left, transparent 50%, #4caf50 calc(50% + 1px));
}

main #choice-section .choice-intro .plan-list {
    justify-content: center;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

main #choice-section .choice-intro .plan-list li {
    background-color: #ffffff;
    border: 1px solid #aaaaaa;
}

main #choice-section .choice-intro .plan-list li:nth-of-type(1),
main #choice-section .choice-intro .plan-list li:nth-of-type(3) {
    margin: 0 30px 30px 0;
}

main #choice-section .choice-intro .plan-list li:nth-of-type(2),
main #choice-section .choice-intro .plan-list li:nth-of-type(4) {
    margin: 0 0 30px 0;
}

main #choice-section .choice-intro .plan-list li:last-child {
    margin: 0 0 30px 0 !important;
}

main #choice-section .choice-intro .plan-list li dl {
    min-width: 310px;
    min-height: 300px;
}

main #choice-section .choice-intro .plan-list li dl dt {
    margin: 0;
    padding: 10px 10px;
}

main #choice-section .choice-intro .plan-list li dl dt h4 {
    margin: 0 0 10px 0;
    line-height: 1.3em;
    font-size: 1.3em;
    color: #4caf50;
}

main #choice-section .choice-intro .plan-list li dl dt p {
    margin: 10px 0 0 0;
    line-height: 1.3em;
    font-size: 1.3em;
}

main #choice-section .choice-intro .plan-list li dl dt p span {
    display: block;
    font-size: 0.6em;
}

main #choice-section .choice-intro .plan-list li dl dd {
    margin: 0;
    padding: 5px 0;
    border-top: 1px solid #aaaaaa;
}

main #choice-section .choice-intro .plan-option {
    justify-content: space-between;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px auto;
    max-width: 640px;
    color: #ffffff;
}

main #choice-section .choice-intro .plan-option h3 {
    font-size: 1.3em;
    text-align: left;
}

main #choice-section .choice-intro .plan-option ul {
    font-size: 1.3em;
    text-align: left;
}

main #choice-section .choice-intro .plan-option p {
    font-size: 1.3em;
    text-align: left;
}

main #choice-section .choice-intro .plan-option-fit {
    justify-content: space-between;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px auto;
    width: fit-content;
    color: #ffffff;
}

main #choice-section .choice-intro .plan-option-fit dl {
    max-width: 70%;
}

main #choice-section .choice-intro .plan-option-fit h3 {
    font-size: 1.3em;
    text-align: left;
}

main #choice-section .choice-intro .plan-option-fit ul {
    font-size: 1.3em;
    text-align: left;
}

main #choice-section .choice-intro .plan-option-fit img {
    max-width: 30%;
}

main #choice-section .choice-intro .plan-option-fit p {
    font-size: 1.3em;
    text-align: left;
}

main #choice-section a {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

main #choice-section a .btn {
    margin: 100px auto 60px;
    padding: 20px 80px;
    width: fit-content;
    font-size: 1.6em;
    color: #ffffff;
    background-color: #0288d1;
    border-radius: 40px;
    opacity: 1;
    transition: 0.3s;
}

main #choice-section a .btn:hover {
    opacity: 0.7;
}

@media screen and (max-width: 640px) {
    main #choice-section .choice-intro::before {
        position: absolute;
        top: -49px;
        right: 0;
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: linear-gradient(to bottom right, transparent 50%, #4caf50 calc(50% + 1px));
    }

    main #choice-section .choice-intro::after {
        position: absolute;
        bottom: -49px;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: linear-gradient(to top left, transparent 50%, #4caf50 calc(50% + 1px));
    }

    main #choice-section .choice-intro .plan-list li:nth-of-type(1),
    main #choice-section .choice-intro .plan-list li:nth-of-type(2),
    main #choice-section .choice-intro .plan-list li:nth-of-type(3),
    main #choice-section .choice-intro .plan-list li:nth-of-type(4) {
        margin: 0 0 30px 0;
    }

    main #choice-section .choice-intro .plan-option-fit dl {
        max-width: 100%;
    }

    main #choice-section .choice-intro .plan-option-fit img {
        max-width: 100%;
    }
}

@media screen and (min-width: 642px) and (max-width: 712px) {

    main #choice-section .choice-intro .plan-list li:nth-of-type(1),
    main #choice-section .choice-intro .plan-list li:nth-of-type(2),
    main #choice-section .choice-intro .plan-list li:nth-of-type(3),
    main #choice-section .choice-intro .plan-list li:nth-of-type(4) {
        margin: 0 30px 30px 30px;
    }
}

/*--------------------------------------------------
#choice-section
--------------------------------------------------*/

main #use-section {
    position: relative;
    display: block;
    margin: 200px auto 60px;
    padding: 0;
    text-align: center;
}

main #use-section img {
    position: absolute;
    top: -130px;
    left: 50%;
    display: block;
    transform: translateX(-50%);
    z-index: 10;
}

main #use-section .width-960 {
    display: block;
    margin: 0 auto 60px;
    padding: 0 10px;
    max-width: 960px;
}

main #use-section .use-intro {
    position: relative;
    margin: 0 0 60px 0;
    padding: 10px 20px;
    background-color: #c9e7cb;
}

main #use-section .use-intro::before {
    position: absolute;
    top: -50px;
    right: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 50%, #c9e7cb calc(50% + 1px));
}

main #use-section .use-intro::after {
    position: absolute;
    bottom: -50px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top left, transparent 50%, #c9e7cb calc(50% + 1px));
}

main #use-section .use-intro h3 {
    margin: 100px 0 20px 0;
    font-size: 3em;
}

main #use-section .use-intro ul li {
    position: relative;
    margin: 0 auto 80px;
    padding: 20px 40px;
    max-width: 460px;
    line-height: 1.3em;
    font-size: 1.6em;
    background-color: #ffffff;
    border-radius: 60px;
}

main #use-section .use-intro ul li:last-child {
    position: relative;
    margin: 0 auto;
    padding: 30px 40px;
    max-width: 460px;
    line-height: 1.3em;
    font-size: 1.6em;
    background-color: #ffffff;
    border-radius: 60px;
}

main #use-section .use-intro ul li:nth-of-type(1)::before,
main #use-section .use-intro ul li:nth-of-type(2)::before {
    position: absolute;
    top: 120px;
    left: 46%;
    content: "";
    display: block;
    width: 4px;
    height: 40px;
    border-left: 4px solid #4caf50;
    transform: translateX(-50%) rotate(-60deg);
}

main #use-section .use-intro ul li:nth-of-type(1)::after,
main #use-section .use-intro ul li:nth-of-type(2)::after {
    position: absolute;
    top: 120px;
    right: 46%;
    content: "";
    display: block;
    width: 4px;
    height: 40px;
    border-left: 4px solid #4caf50;
    transform: translateX(-50%) rotate(60deg);
}

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

    main #use-section .use-intro ul li:nth-of-type(1)::before,
    main #use-section .use-intro ul li:nth-of-type(2)::before {
        position: absolute;
        top: 140px;
        left: 44%;
        content: "";
        display: block;
        width: 4px;
        height: 40px;
        border-left: 4px solid #4caf50;
        transform: translateX(-50%) rotate(-60deg);
    }

    main #use-section .use-intro ul li:nth-of-type(1)::after,
    main #use-section .use-intro ul li:nth-of-type(2)::after {
        position: absolute;
        top: 140px;
        right: 44%;
        content: "";
        display: block;
        width: 4px;
        height: 40px;
        border-left: 4px solid #4caf50;
        transform: translateX(-50%) rotate(60deg);
    }
}

/*--------------------------------------------------
#benefit-section
--------------------------------------------------*/

main #benefit-section {
    position: relative;
    display: block;
    margin: 0 auto 60px;
    padding: 0;
    text-align: center;
}

main #benefit-section .width-960 {
    display: block;
    margin: 0 auto 60px;
    padding: 0 10px;
    max-width: 960px;
}

main #benefit-section h2 {
    margin: 20px auto 40px;
    padding: 0;
    width: fit-content;
    line-height: 1.3em;
    font-size: 4em;
    transform: skew(-4deg, -2deg);
}

main #benefit-section h2 span {
    color: #4caf50;
}

main #benefit-section h3 {
    margin: 20px auto 40px;
    padding: 0;
    width: fit-content;
    line-height: 1.3em;
    font-size: 4em;
    color: #607d8b;
    transform: skew(-4deg, -2deg);
}

main #benefit-section .demerit-headline {
    margin: 20px auto 40px;
    padding: 0;
    width: fit-content;
    line-height: 1.3em;
    font-size: 4em;
    color: #607d8b;
    transform: skew(-4deg, -2deg);
}

main #benefit-section .merit-headline {
    margin: 20px auto 40px;
    padding: 0;
    width: fit-content;
    line-height: 1.3em;
    font-size: 4em;
    color: #4caf50;
    transform: skew(-4deg, -2deg);
}

main #benefit-section .benefit-intro {
    position: relative;
    margin: 0 0 60px 0;
    padding: 0;
    background-color: #607d8b;
    background-size: 20%;
    background-image: url("../img/bg-demerit.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

main #benefit-section .benefit-intro::before {
    position: absolute;
    top: -50px;
    right: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 50%, #607d8b calc(50% + 1px));
}

main #benefit-section .benefit-intro::after {
    position: absolute;
    bottom: -50px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top left, transparent 50%, #607d8b calc(50% + 1px));
}

main #benefit-section .merit-intro {
    position: relative;
    margin: 0 0 60px 0;
    padding: 0;
    background-color: #4caf50;
    background-size: 20%;
    background-image: url("../img/bg-merit.png");
    background-position: 50% 50%;
    background-repeat: no-repeat;
}

main #benefit-section .merit-intro::before {
    position: absolute;
    top: -50px;
    right: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 50%, #4caf50 calc(50% + 1px));
}

main #benefit-section .merit-intro::after {
    position: absolute;
    bottom: -50px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top left, transparent 50%, #4caf50 calc(50% + 1px));
}

main #benefit-section .benefit-intro ul li {
    position: relative;
    margin: 0 auto 20px;
    width: fit-content;
    font-size: 1.3em;
    color: #ffffff;

}

main #benefit-section .benefit-intro ul li:nth-of-type(1)::before,
main #benefit-section .benefit-intro ul li:nth-of-type(2)::before,
main #benefit-section .benefit-intro ul li:nth-of-type(3)::before,
main #benefit-section .benefit-intro ul li:nth-of-type(4)::before,
main #benefit-section .benefit-intro ul li:nth-of-type(5)::before,
main #benefit-section .benefit-intro ul li:nth-of-type(6)::before {
    position: absolute;
    top: 5px;
    left: -28px;
    content: "";
    display: block;
    width: 22px;
    height: 25px;
    background: url("../img/icon-boxw.png");
}

main #benefit-section .merit-intro ul li {
    position: relative;
    margin: 0 auto 20px;
    width: fit-content;
    font-size: 3em;
    color: #ffffff;

}

main #benefit-section .merit-intro ul li:nth-of-type(1)::before,
main #benefit-section .merit-intro ul li:nth-of-type(2)::before,
main #benefit-section .merit-intro ul li:nth-of-type(3)::before,
main #benefit-section .merit-intro ul li:nth-of-type(4)::before,
main #benefit-section .merit-intro ul li:nth-of-type(5)::before,
main #benefit-section .merit-intro ul li:nth-of-type(6)::before {
    position: absolute;
    top: 18px;
    left: -46px;
    content: "";
    display: block;
    width: 40px;
    height: 45px;
    background: url("../img/icon-box-lw.png");
    background-size: 40px 45px;
}

main #benefit-section a {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

main #benefit-section a .btn {
    margin: 100px auto 60px;
    padding: 20px 80px;
    width: fit-content;
    font-size: 1.6em;
    color: #ffffff;
    background-color: #0288d1;
    border-radius: 40px;
    opacity: 1;
    transition: 0.3s;
}

main #benefit-section a .btn:hover {
    opacity: 0.7;
}

@media screen and (max-width: 640px) {
    main #benefit-section .benefit-intro::before {
        position: absolute;
        top: -49px;
        right: 0;
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: linear-gradient(to bottom right, transparent 50%, #607d8b calc(50% + 1px));
    }

    main #benefit-section .benefit-intro::after {
        position: absolute;
        bottom: -49px;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: linear-gradient(to top left, transparent 50%, #607d8b calc(50% + 1px));
    }

    main #benefit-section .merit-intro::before {
        position: absolute;
        top: -49px;
        right: 0;
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: linear-gradient(to bottom right, transparent 50%, #4caf50 calc(50% + 1px));
    }

    main #benefit-section .merit-intro::after {
        position: absolute;
        bottom: -49px;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: linear-gradient(to top left, transparent 50%, #4caf50 calc(50% + 1px));
    }

    main #benefit-section .benefit-intro ul {
        padding: 9vw 0 9vw 9vw;
    }

    main #benefit-section .benefit-intro ul li {
        margin: 0;
        font-size: 6vw;
        text-align: left;
    }

    main #benefit-section .benefit-intro ul li:nth-of-type(1)::before,
    main #benefit-section .benefit-intro ul li:nth-of-type(2)::before,
    main #benefit-section .benefit-intro ul li:nth-of-type(3)::before,
    main #benefit-section .benefit-intro ul li:nth-of-type(4)::before,
    main #benefit-section .benefit-intro ul li:nth-of-type(5)::before,
    main #benefit-section .benefit-intro ul li:nth-of-type(6)::before {
        position: absolute;
        top: 10px;
        left: -28px;
        content: "";
        display: block;
        width: 22px;
        height: 25px;
        background: url("../img/icon-boxw.png");
    }

    main #benefit-section .merit-intro ul {
        padding: 10vw 0 10vw 10vw;
    }

    main #benefit-section .merit-intro ul li {
        margin: 0;
        font-size: 7vw;
        text-align: left;
    }

    main #benefit-section .merit-intro ul li:nth-of-type(1)::before,
    main #benefit-section .merit-intro ul li:nth-of-type(2)::before,
    main #benefit-section .merit-intro ul li:nth-of-type(3)::before,
    main #benefit-section .merit-intro ul li:nth-of-type(4)::before,
    main #benefit-section .merit-intro ul li:nth-of-type(5)::before,
    main #benefit-section .merit-intro ul li:nth-of-type(6)::before {
        position: absolute;
        top: 10px;
        left: -36px;
        content: "";
        display: block;
        width: 30px;
        height: 36px;
        background: url("../img/icon-box-lw.png");
        background-size: 30px 36px;
    }
}

/*--------------------------------------------------
#other-section
--------------------------------------------------*/

main #other-section {
    position: relative;
    display: block;
    margin: 0 auto 60px;
    padding: 0;
    text-align: center;
}

main #other-section .width-960 {
    display: block;
    margin: 0 auto 60px;
    padding: 0 10px;
    max-width: 960px;
}

main #other-section .width-960-mt {
    display: block;
    margin: 60px auto 60px;
    padding: 0 10px;
    max-width: 960px;
}

main #other-section .human-image {
    margin: 0 0 60px 0;
}

main #other-section .feature-intro {
    position: relative;
    margin: 0;
    padding: 10px 20px;
    background-color: #4caf50;
}

main #other-section .feature-intro::before {
    position: absolute;
    top: -50px;
    right: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 50%, #4caf50 calc(50% + 1px));
}

main #other-section .feature-intro::after {
    position: absolute;
    bottom: -50px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top left, transparent 50%, #4caf50 calc(50% + 1px));
}

main #other-section .feature-intro dl {
    margin: 0 0 80px 0;
    color: #ffffff;
}

main #other-section .feature-intro dl dt h2 {
    font-size: 3em;
}

main #other-section .feature-intro dl dd {
    margin: 0 auto;
    width: fit-content;
    font-size: 1.3em;
    text-align: left;
}

main #other-section .feature-intro-other {
    position: relative;
    margin: 0;
    padding: 10px 20px;
    background-color: #ff5722;
}

main #other-section .feature-intro-other::before {
    position: absolute;
    top: -50px;
    right: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to bottom right, transparent 50%, #ff5722 calc(50% + 1px));
}

main #other-section .feature-intro-other::after {
    position: absolute;
    bottom: -50px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top left, transparent 50%, #ff5722 calc(50% + 1px));
}

main #other-section .feature-intro-other h3 {
    font-size: 3em;
    color: #ffffff;
}

main #other-section .point-comment {
    position: relative;
    margin: 20px auto 40px;
    padding: 10px 20px;
    max-width: 346px;
    font-size: 2em;
    color: #ff5722;
    background-color: #ffffff;
    text-align: center;
    border-radius: 5px;
}

main #other-section .point-comment::before {
    position: absolute;
    top: -50px;
    left: 60%;
    content: "";
    display: block;
    border-top: 30px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 30px solid #ffffff;
    border-radius: 5px;
    transform: rotate(-20deg) skew(4deg, 4deg);
}

main #other-section .feature-intro .icon-box {
    margin: 0 0 60px 0;
}

main #other-section .feature-intro .head-line {
    margin: 0 0 0 0;
    color: #ffffff;
    font-size: 3em;
    transform: skew(-4deg, -2deg);
}

main #other-section .feature-intro h4 {
    font-size: 2.6em;
    color: #ffffff;
}

main #other-section .feature-intro p {
    margin: 0 0 20px 0;
    font-size: 1.3em;
    color: #ffffff;
}

main #other-section .feature-intro .annotate {
    margin: 10px auto 0;
    width: fit-content;
    font-size: 0.8em;
    text-align: left;
}

main #other-section .feature-intro .display-move {
    margin: 0 0 80px 0;
    padding: 15px 0;
    overflow-x: auto;
}

main #other-section th,
main #other-section td,
main #other-section .feature-intro th,
main #other-section .feature-intro td {
    white-space: nowrap;
}

main #other-section .feature-intro .plan2-1 {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan2-1 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan2-2,
main #other-section .feature-intro .plan2-3,
main #other-section .plan2-4 {
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan2-2 tbody tr:nth-of-type(odd),
main #other-section .feature-intro .plan2-3 tbody tr:nth-of-type(odd),
main #other-section .plan2-4 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan2-1 .ta-right,
main #other-section .feature-intro .plan2-2 .ta-right,
main #other-section .feature-intro .plan2-3 .ta-right,
main #other-section .plan2-4 .ta-right {
    text-align: left;
}

main #other-section .feature-intro .plan2-1 .focus,
main #other-section .feature-intro .plan2-2 .focus,
main #other-section .feature-intro .plan2-3 .focus,
main #other-section .plan2-4 .focus {
    color: #ff5722;
}

main #other-section .feature-intro .plan2-1 td {
    text-align: right;
}

main #other-section .feature-intro .plan2-2 td,
main #other-section .feature-intro .plan2-3 td,
main #other-section .plan2-4 td {
    text-align: center;
}

main #other-section .feature-intro .plan2-1 th,
main #other-section .feature-intro .plan2-1 td,
main #other-section .feature-intro .plan2-2 th,
main #other-section .feature-intro .plan2-2 td,
main #other-section .feature-intro .plan2-3 th,
main #other-section .feature-intro .plan2-3 td,
main #other-section .plan2-4 th,
main #other-section .plan2-4 td {
    padding: 5px;
    line-height: 1.3em;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan2-1 th:nth-of-type(4),
main #other-section .feature-intro .plan2-1 td:nth-of-type(4),
main #other-section .feature-intro .plan2-2 th:nth-of-type(4),
main #other-section .feature-intro .plan2-2 td:nth-of-type(4),
main #other-section .feature-intro .plan2-3 th:nth-of-type(4),
main #other-section .feature-intro .plan2-3 td:nth-of-type(4),
main #other-section .plan2-4 th:nth-of-type(4),
main #other-section .plan2-4 td:nth-of-type(4) {
    border-left: 3px solid #ff5722;
    border-right: 3px solid #ff5722;
}

main #other-section .feature-intro .plan2-2 .focus,
main #other-section .feature-intro .plan2-3 .focus,
main #other-section .plan2-4 .focus {
    color: #ff5722;
}

main #other-section .feature-intro .plan2-2 th,
main #other-section .feature-intro .plan2-2 td,
main #other-section .feature-intro .plan2-3 th,
main #other-section .feature-intro .plan2-3 td,
main #other-section .plan2-4 th,
main #other-section .plan2-4 td {
    padding: 5px;
    line-height: 1.3em;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan2-1:before {
    position: absolute;
    top: -14px;
    left: 238px;
    content: "";
    display: block;
    width: 86px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .feature-intro .plan2-1:after {
    position: absolute;
    bottom: -14px;
    left: 238px;
    content: "";
    display: block;
    width: 86px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .feature-intro .plan2-2:before {
    position: absolute;
    top: -14px;
    left: 264px;
    content: "";
    display: block;
    width: 86px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .feature-intro .plan2-2:after {
    position: absolute;
    bottom: -14px;
    left: 264px;
    content: "";
    display: block;
    width: 86px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .feature-intro .plan2-3:before {
    position: absolute;
    top: -14px;
    left: 270px;
    content: "";
    display: block;
    width: 87px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .feature-intro .plan2-3:after {
    position: absolute;
    bottom: -14px;
    left: 270px;
    content: "";
    display: block;
    width: 87px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .plan2-4 {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan2-4 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #other-section .plan2-4:before {
    position: absolute;
    top: -14px;
    left: 208px;
    content: "";
    display: block;
    width: 86px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .plan2-4:after {
    position: absolute;
    bottom: -14px;
    left: 208px;
    content: "";
    display: block;
    width: 86px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .feature-intro .plan3-1 {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan3-1 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan3-2,
main #other-section .feature-intro .plan3-3,
main #other-section .plan3-4 {
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan3-2 tbody tr:nth-of-type(odd),
main #other-section .feature-intro .plan3-3 tbody tr:nth-of-type(odd),
main #other-section .plan3-4 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan3-1 .ta-right,
main #other-section .feature-intro .plan3-2 .ta-right,
main #other-section .feature-intro .plan3-3 .ta-right,
main #other-section .plan3-4 .ta-right {
    text-align: left;
}

main #other-section .feature-intro .plan3-1 .focus,
main #other-section .feature-intro .plan3-2 .focus,
main #other-section .feature-intro .plan3-3 .focus,
main #other-section .plan3-4 .focus {
    color: #ff5722;
}

main #other-section .feature-intro .plan3-1 td {
    text-align: right;
}

main #other-section .feature-intro .plan3-2 td,
main #other-section .feature-intro .plan3-3 td,
main #other-section .plan3-4 td {
    text-align: center;
}

main #other-section .feature-intro .plan3-1 th,
main #other-section .feature-intro .plan3-1 td,
main #other-section .feature-intro .plan3-2 th,
main #other-section .feature-intro .plan3-2 td,
main #other-section .feature-intro .plan3-3 th,
main #other-section .feature-intro .plan3-3 td,
main #other-section .plan3-4 th,
main #other-section .plan3-4 td {
    padding: 5px;
    line-height: 1.3em;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan3-1 th:nth-of-type(5),
main #other-section .feature-intro .plan3-1 td:nth-of-type(5),
main #other-section .feature-intro .plan3-2 th:nth-of-type(5),
main #other-section .feature-intro .plan3-2 td:nth-of-type(5),
main #other-section .feature-intro .plan3-3 th:nth-of-type(5),
main #other-section .feature-intro .plan3-3 td:nth-of-type(5),
main #other-section .plan3-4 th:nth-of-type(5),
main #other-section .plan3-4 td:nth-of-type(5) {
    border-left: 3px solid #ff5722;
    border-right: 3px solid #ff5722;
}

main #other-section .feature-intro .plan3-2 .focus,
main #other-section .feature-intro .plan3-3 .focus,
main #other-section .plan3-4 .focus {
    color: #ff5722;
}

main #other-section .feature-intro .plan3-2 th,
main #other-section .feature-intro .plan3-2 td,
main #other-section .feature-intro .plan3-3 th,
main #other-section .feature-intro .plan3-3 td,
main #other-section .plan3-4 th,
main #other-section .plan3-4 td {
    padding: 5px;
    line-height: 1.3em;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan3-1:before {
    position: absolute;
    top: -14px;
    left: 320px;
    content: "";
    display: block;
    width: 72px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .feature-intro .plan3-1:after {
    position: absolute;
    bottom: -14px;
    left: 320px;
    content: "";
    display: block;
    width: 72px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .feature-intro .plan3-2:before {
    position: absolute;
    top: -14px;
    left: 346px;
    content: "";
    display: block;
    width: 72px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .feature-intro .plan3-2:after {
    position: absolute;
    bottom: -14px;
    left: 346px;
    content: "";
    display: block;
    width: 72px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .feature-intro .plan3-3:before {
    position: absolute;
    top: -14px;
    left: 353px;
    content: "";
    display: block;
    width: 86px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .feature-intro .plan3-3:after {
    position: absolute;
    bottom: -14px;
    left: 353px;
    content: "";
    display: block;
    width: 86px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .plan3-4 {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan3-4 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #other-section .plan3-4:before {
    position: absolute;
    top: -14px;
    left: 290px;
    content: "";
    display: block;
    width: 72px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .plan3-4:after {
    position: absolute;
    bottom: -14px;
    left: 290px;
    content: "";
    display: block;
    width: 72px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .feature-intro .plan4-1 {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan4-1 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan4-2,
main #other-section .feature-intro .plan4-3,
main #other-section .plan4-4 {
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan4-2 tbody tr:nth-of-type(odd),
main #other-section .feature-intro .plan4-3 tbody tr:nth-of-type(odd),
main #other-section .plan4-4 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan4-1 .ta-right,
main #other-section .feature-intro .plan4-2 .ta-right,
main #other-section .feature-intro .plan4-3 .ta-right,
main #other-section .plan4-4 .ta-right {
    text-align: left;
}

main #other-section .feature-intro .plan4-1 .focus,
main #other-section .feature-intro .plan4-2 .focus,
main #other-section .feature-intro .plan4-3 .focus,
main #other-section .plan4-4 .focus {
    color: #ff5722;
}

main #other-section .feature-intro .plan4-1 td {
    text-align: right;
}

main #other-section .feature-intro .plan4-2 td,
main #other-section .feature-intro .plan4-3 td,
main #other-section .plan4-4 td {
    text-align: center;
}

main #other-section .feature-intro .plan4-1 th,
main #other-section .feature-intro .plan4-1 td,
main #other-section .feature-intro .plan4-2 th,
main #other-section .feature-intro .plan4-2 td,
main #other-section .feature-intro .plan4-3 th,
main #other-section .feature-intro .plan4-3 td,
main #other-section .plan4-4 th,
main #other-section .plan4-4 td {
    padding: 5px;
    line-height: 1.3em;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan4-1 th:nth-of-type(3),
main #other-section .feature-intro .plan4-1 td:nth-of-type(3),
main #other-section .feature-intro .plan4-2 th:nth-of-type(3),
main #other-section .feature-intro .plan4-2 td:nth-of-type(3),
main #other-section .feature-intro .plan4-3 th:nth-of-type(3),
main #other-section .feature-intro .plan4-3 td:nth-of-type(3),
main #other-section .plan4-4 th:nth-of-type(3),
main #other-section .plan4-4 td:nth-of-type(3) {
    border-left: 3px solid #ff5722;
    border-right: 3px solid #ff5722;
}

main #other-section .feature-intro .plan4-2 .focus,
main #other-section .feature-intro .plan4-3 .focus,
main #other-section .plan4-4 .focus {
    color: #ff5722;
}

main #other-section .feature-intro .plan4-2 th,
main #other-section .feature-intro .plan4-2 td,
main #other-section .feature-intro .plan4-3 th,
main #other-section .feature-intro .plan4-3 td,
main #other-section .plan4-4 th,
main #other-section .plan4-4 td {
    padding: 5px;
    line-height: 1.3em;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan4-1:before {
    position: absolute;
    top: -14px;
    left: 171px;
    content: "";
    display: block;
    width: 71px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .feature-intro .plan4-1:after {
    position: absolute;
    bottom: -14px;
    left: 171px;
    content: "";
    display: block;
    width: 71px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .feature-intro .plan4-2:before {
    position: absolute;
    top: -14px;
    left: 197px;
    content: "";
    display: block;
    width: 71px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .feature-intro .plan4-2:after {
    position: absolute;
    bottom: -14px;
    left: 197px;
    content: "";
    display: block;
    width: 71px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .feature-intro .plan4-3:before {
    position: absolute;
    top: -14px;
    left: 198px;
    content: "";
    display: block;
    width: 76px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .feature-intro .plan4-3:after {
    position: absolute;
    bottom: -14px;
    left: 198px;
    content: "";
    display: block;
    width: 76px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .plan4-4 {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan4-4 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #other-section .plan4-4:before {
    position: absolute;
    top: -14px;
    left: 140px;
    content: "";
    display: block;
    width: 72px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .plan4-4:after {
    position: absolute;
    bottom: -14px;
    left: 140px;
    content: "";
    display: block;
    width: 72px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .feature-intro .plan5-1 {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan5-1 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan5-2,
main #other-section .feature-intro .plan5-3,
main #other-section .plan5-4 {
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan5-2 tbody tr:nth-of-type(odd),
main #other-section .feature-intro .plan5-3 tbody tr:nth-of-type(odd),
main #other-section .plan5-4 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 20px auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan5-1 .ta-right,
main #other-section .feature-intro .plan5-2 .ta-right,
main #other-section .feature-intro .plan5-3 .ta-right,
main #other-section .plan5-4 .ta-right {
    text-align: left;
}

main #other-section .feature-intro .plan5-1 .focus,
main #other-section .feature-intro .plan5-2 .focus,
main #other-section .feature-intro .plan5-3 .focus,
main #other-section .plan5-4 .focus {
    color: #ff5722;
}

main #other-section .feature-intro .plan5-1 td {
    text-align: right;
}

main #other-section .feature-intro .plan5-2 td,
main #other-section .feature-intro .plan5-3 td,
main #other-section .plan5-4 td {
    text-align: center;
}

main #other-section .feature-intro .plan5-1 th,
main #other-section .feature-intro .plan5-1 td,
main #other-section .feature-intro .plan5-2 th,
main #other-section .feature-intro .plan5-2 td,
main #other-section .feature-intro .plan5-3 th,
main #other-section .feature-intro .plan5-3 td,
main #other-section .plan5-4 th,
main #other-section .plan5-4 td {
    padding: 5px;
    line-height: 1.3em;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan5-1 th:nth-of-type(6),
main #other-section .feature-intro .plan5-1 td:nth-of-type(6),
main #other-section .feature-intro .plan5-2 th:nth-of-type(6),
main #other-section .feature-intro .plan5-2 td:nth-of-type(6),
main #other-section .feature-intro .plan5-3 th:nth-of-type(6),
main #other-section .feature-intro .plan5-3 td:nth-of-type(6),
main #other-section .plan5-4 th:nth-of-type(6),
main #other-section .plan5-4 td:nth-of-type(6) {
    border-left: 3px solid #ff5722;
    border-right: 3px solid #ff5722;
}

main #other-section .feature-intro .plan5-2 .focus,
main #other-section .feature-intro .plan5-3 .focus,
main #other-section .plan5-4 .focus {
    color: #ff5722;
}

main #other-section .feature-intro .plan5-2 th,
main #other-section .feature-intro .plan5-2 td,
main #other-section .feature-intro .plan5-3 th,
main #other-section .feature-intro .plan5-3 td,
main #other-section .plan5-4 th,
main #other-section .plan5-4 td {
    padding: 5px;
    line-height: 1.3em;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan5-1:before {
    position: absolute;
    top: -14px;
    left: 388px;
    content: "";
    display: block;
    width: 77px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .feature-intro .plan5-1:after {
    position: absolute;
    bottom: -14px;
    left: 388px;
    content: "";
    display: block;
    width: 77px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .feature-intro .plan5-2:before {
    position: absolute;
    top: -14px;
    left: 414px;
    content: "";
    display: block;
    width: 77px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .feature-intro .plan5-2:after {
    position: absolute;
    bottom: -14px;
    left: 414px;
    content: "";
    display: block;
    width: 77px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .feature-intro .plan5-3:before {
    position: absolute;
    top: -14px;
    left: 435px;
    content: "";
    display: block;
    width: 86px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .feature-intro .plan5-3:after {
    position: absolute;
    bottom: -14px;
    left: 435px;
    content: "";
    display: block;
    width: 86px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section .plan5-4 {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #ffffff;
    border: 1px solid #ced2cf;
}

main #other-section .feature-intro .plan5-4 tbody tr:nth-of-type(odd) {
    position: relative;
    margin: 0 auto 0;
    width: fit-content;
    background-color: #f3faf4;
    border: 1px solid #ced2cf;
}

main #other-section .plan5-4:before {
    position: absolute;
    top: -14px;
    left: 358px;
    content: "";
    display: block;
    width: 77px;
    height: 15px;
    background-color: #ff5722;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

main #other-section .plan5-4:after {
    position: absolute;
    bottom: -14px;
    left: 358px;
    content: "";
    display: block;
    width: 77px;
    height: 15px;
    background-color: #ff5722;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

main #other-section h4 {
    font-size: 2.6em;
    color: #72909d;
}

main #other-section p {
    margin: 0 0 20px 0;
    font-size: 1.3em;
    color: #72909d;
}

main #other-section .display-move {
    margin: 0 0 80px 0;
    padding: 15px 0;
    overflow-x: auto;
}

main #other-section .review-comment {
    position: relative;
    margin: 0 auto 60px;
    padding: 10px 20px;
    width: fit-content;
    font-size: 1.3em;
    color: #ffffff;
    background-color: #607d8b;
    text-align: left;
    border-radius: 5px;
}

main #other-section .review-comment::before {
    position: absolute;
    top: -50px;
    left: 60%;
    content: "";
    display: block;
    border-top: 30px solid transparent;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 30px solid #607d8b;
    border-radius: 5px;
    transform: rotate(-20deg) skew(4deg, 4deg);
}

main #other-section .review-comment span {
    display: block;
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #ffffff;
}

main #other-section .plan-catch {
    line-height: 1.3em;
    font-size: 2.6em;
    color: #4caf50;
}

main #other-section .plan-catch span {
    display: block;
    margin: 0 0 60px 0;
    font-size: 1.3em;
}

main #other-section .sub-read {
    margin: 40px auto 40px;
    width: fit-content;
    line-height: 1.3em;
    font-size: 1.3em;
    color: #4caf50;
    text-align: left;
}

main #other-section a {
    display: block;
    margin: 0 auto;
    width: fit-content;
}

main #other-section a .btn {
    margin: 0 auto 60px;
    padding: 20px 80px;
    width: fit-content;
    font-size: 1.6em;
    color: #ffffff;
    background-color: #0288d1;
    border-radius: 40px;
    opacity: 1;
    transition: 0.3s;
}

main #other-section a .btn:hover {
    opacity: 0.7;
}

@media screen and (max-width: 640px) {
    main #other-section .feature-intro::before {
        position: absolute;
        top: -49px;
        right: 0;
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: linear-gradient(to bottom right, transparent 50%, #4caf50 calc(50% + 1px));
    }

    main #other-section .feature-intro::after {
        position: absolute;
        bottom: -49px;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: linear-gradient(to top left, transparent 50%, #4caf50 calc(50% + 1px));
    }

    main #other-section .feature-intro-other::before {
        position: absolute;
        top: -49px;
        right: 0;
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: linear-gradient(to bottom right, transparent 50%, #ff5722 calc(50% + 1px));
    }

    main #other-section .feature-intro-other::after {
        position: absolute;
        bottom: -49px;
        left: 0;
        content: "";
        display: block;
        width: 100%;
        height: 50px;
        background: linear-gradient(to top left, transparent 50%, #ff5722 calc(50% + 1px));
    }
}

/*==================================================
add
==================================================*/
.fv-flex {
    display: flex;
    align-items: flex-start;
    gap: -3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fv-badge {
    transform: rotate(-15deg);
    background: #fff;
    border: 2px solid #4caf50;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: bold;
    font-size: 2rem;
    white-space: nowrap;
    color: #ff68bc;
    margin: 0 auto;
}

.fv-title {
    font-size: 4rem;
    font-weight: bold;
    line-height: 1.3;
    margin: 0 auto;
}

.arrow-box {
    display: inline-block;
    position: relative;
    display: inline-block;
    padding: 1rem;
    font-size: 2rem;
    font-weight: bold;
    border-radius: 20px;
}

.fv-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 0 auto;
    margin-bottom: 0;
    max-width: 960px;
}

.add-text {
    margin: 5%;
    text-align: left;
    font-size: 2rem;
}

.compare-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1.5rem;
}

.compare-table th,
.compare-table td {
    border: 1px solid #ccc;
    padding: 0.8rem;
    text-align: left;
}

.compare-table th {
    background: #f5f5f5;
    font-weight: bold;
}

.compare-table {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}

.highlight-positive {
    color: red;
    font-weight: bold;
}

@media screen and (max-width: 768px) {
    .compare-table {
        display: block;
        width: 100%;
        overflow-x: auto;
    }

    .compare-table table {
        min-width: 720px;
    }
}

.scroll-wrapper {
    position: relative;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

.scroll-hint {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    z-index: 10;
    white-space: nowrap;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.scroll-hint.hide {
    opacity: 0;
    visibility: hidden;
}

@media screen and (min-width: 769px) {
    .compare-table {
        overflow-x: hidden;
    }

    .scroll-hint {
        display: none;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        visibility: hidden;
    }
}

.scroll-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 12px;
    width: 100%;
    pointer-events: none;
}

@media screen and (min-width: 769px) {
    .scroll-hint {
        display: none;
    }

    .scroll-wrapper::after {
        display: none;
    }
}


#compare-section p {
    font-size: 2rem;
    margin-bottom: 5%;
}

#compare-section p span {
    color: #4caf50;
    font-weight: bold;
}

.fv-image {
    width: 300px;
    margin: 0 auto;
    padding-bottom: 5%;
}



@media screen and (max-width: 768px) {
    .fv-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 0;
    }

    .fv-badge {
        transform: rotate(0deg);
        font-size: 1.5rem;
        padding: 0.5rem 1rem;
        border: none;
        padding: 0;
    }

    #compare-section p {
        font-size: 1.5rem;
        margin-bottom: 5%;
    }


    main #top-section h1 {
        margin: 5% auto;
    }

    .fv-title {
        font-size: 3rem !important;
        margin-top: -20%;
    }

    .fv-image {
        width: 200px;
        max-width: 100%;
        height: auto;
        margin-bottom: 3%;
    }

    .fv-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2rem;
        margin: 5% auto;
        max-width: 960px;
    }

    .fv-questions {
        flex: 0 0 auto;
    }

    .fv-question {
        font-size: 3rem !important;
        font-weight: bold !important;
        font-style: italic !important;
        display: inline-block !important;
        padding: 0.4rem 0.6rem !important;
        margin-bottom: 2rem !important;
        display: inline-block;
    }

    .sp-only {
        display: none;
    }


    .fv-title {
        display: inline-block;
    }

    .fv-title::before {
        content: "宅配型トランクルーム\A徹底比較";
        white-space: pre-line;
    }

    .fv-title {
        visibility: hidden;
        position: relative;
        font-size: 3rem;
    }

    .fv-title::before {
        visibility: visible;
        position: absolute;
        left: 0;
        right: 0;
    }

    .fv-container {
        gap: 0rem;
        margin: 0 auto;
    }

    .fv-questions {
        width: 90%;
        padding-top: 0;
    }

    .fv-questions p {
        font-size: 2rem !important;
        margin-bottom: 1rem !important;
    }

    .arrow-box {
        width: 70%;
        margin-top: 0;
        padding: 5px 0px;
        top: -20px;
    }

    .arrow-box p {
        font-size: 1.5rem;
        line-height: 1.2;
        white-space: nowrap;
    }

    .sp-only {
        display: inline;
    }

    .fv-title2 {
        font-size: 2.5rem !important;
        margin-top: -10% !important;
    }

    .add-text {
        margin: 5%;
        text-align: left;
        font-size: 1.5rem;
    }

    .sp-br {
        display: block;
    }

    .article-link {
        font-size: 1.5rem;
        line-height: 0;
    }

    .sp-br {
        display: block;
    }

    .article-list {
        padding: 0 !important;
        font-size: 1.5rem;
        line-height: 1;
    }

    .btn.shake-animation {
        margin-bottom: 10% !important;
    }

    #compare-section h2 {
        margin-bottom: 5% !important;
    }


    #compare-section h2 span {
        font-size: 3rem !important;
    }


    .sp-hide-br {
        display: none;
    }

    .hikaku-img {
        margin: 5% auto;
        width: 65% !important;
    }

    .btn .shake-animation p {
        font-size: 2rem;
    }

    #point-section .btn {
        font-size: 2rem !important;
    }

    .fv-title::before {
        margin-top: 0;
        top: -15px;
    }

}

@media screen and (min-width: 415px) and (max-width: 800px) {
    .arrow-box {
        width: 70%;
        margin-top: 0;
        padding: 5px 0px;
        top: 0;
        border: none;
    }

    .arrow-box p {
        font-size: 1.5rem;
        line-height: 1.2;
        white-space: nowrap;
        margin: 5% auto;
        margin-bottom: 0;
    }

    .hikaku-img {
        margin: 5% auto;
        width: 65% !important;
    }

}

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

    .fv-flex {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-top: 0;
    }

    .fv-badge {
        transform: rotate(0deg);
        font-size: 2.5rem;
        border: none;
        padding: 5%;
        padding-top: 0;
    }

    #top-section h1 {
        font-size: 3rem !important;
        margin-top: 0 !important;
    }

}


.hikaku-img-pc {
    display: block;
    width: 100%;
    height: auto;
}

.hikaku-img-sp {
    display: none;
}


@media screen and (max-width: 768px) {
    .hikaku-img-pc {
        display: none;
    }

    .hikaku-img-sp {
        display: block;
    }
}


.vs-section {
    max-width: 1200px;
    margin: 5% auto;
    margin-top: 0;
    padding: 2rem;
    background: #fdfdfd;
    border: 2px solid #ddd;
    border-radius: 12px;
    font-family: sans-serif;
}

.vs-header h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.vs-header span {
    color: #ff68bc;
}

.vs-lead {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #666;
}

.vs-table {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.vs-column {
    background: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 1.5rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.vs-column ul {
    gap: 2rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.vs-column li {
    font-size: 1.4rem;
    padding: 0.5rem 1rem;
}



.vs-column {
    flex: 1 1 45%;
    background: #f9f9f9;
    border: 1px solid #ccc;
    padding: 1rem;
    border-radius: 8px;
}

.vs-column h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
    border-bottom: 2px solid #ff68bc;
    padding-bottom: 0.5rem;
}

.vs-column ul {
    list-style: none;
    padding: 0;
}

.vs-column li {
    margin: 0.5rem 0;
    font-size: 2rem;
    padding-left: 1rem;
}

.vs-result {
    text-align: center;
    margin-top: 3rem;
    background: #ffe6f0;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #ff68bc;
}

.vs-result h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.vs-result h4 span {
    color: #ff68bc;
    font-weight: bold;
    font-size: 2.5rem;
}

.vs-result p {
    font-size: 2rem;
    color: #555;
}


@media screen and (max-width: 768px) {
    .vs-header h2 {
        font-size: 2rem;
    }

    .vs-column {
        flex: 1 1 100%;
    }

    .vs-result h4 {
        font-size: 1.6rem;
    }

    .vs-result h4 span {
        font-size: 2rem;
    }

    .label {
        font-weight: bold;
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
}


.merit-demerit-wrapper {
    display: block;
}

.merit-box,
.demerit-box {
    width: 100%;
    margin-bottom: 1.5rem;
}

.merit-box ul,
.demerit-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.merit-box li,
.demerit-box li {
    font-size: 1.6rem;
    padding: 0.3rem 0;
    white-space: nowrap;
}

@media screen and (min-width: 769px) {
    .merit-demerit-wrapper {
        display: flex;
        justify-content: space-between;
        gap: 3rem;
    }

    .merit-box,
    .demerit-box {
        width: 48%;
    }

    .label {
        font-weight: bold;
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
}

#footer {
    background-color: #4caf50;
    margin-top: 5%;
    height: 60px;
}

/* ===== Voices section ===== */
:root {
    --voices-bg: #fff;
    --voices-border: #e5e7eb;
    --voices-text: #333;
    --voices-muted: #6b7280;
    --voices-accent: #f3f4f6;
    --radius: 14px;
    --gap: 16px;
}



.voices {
    background: var(--voices-bg);
    color: var(--voices-text);
    padding: clamp(24px, 4vw, 48px) 16px;
    padding-bottom: 10%;
}

.voices__header {
    max-width: 980px;
    margin: 0 auto 24px;
}

.voices h2 {
    line-height: 1.3em;
    font-size: 3em;
    color: #4caf50;
    text-align: center;
    margin-bottom: 5%;
}

.voices__lead {
    color: var(--voices-muted);
    font-size: 1.3em;
    margin: 0;
    color: black;
}

.voices__service {
    max-width: 1100px;
    margin: 32px auto 0;
    padding-top: 16px;
    border-top: 1px dashed var(--voices-border);
}

.voices__service-title {
    font-size: clamp(18px, 3vw, 22px);
    margin: 0 0 12px;
    text-align: center;
}

.voices__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gap);
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 600px;
}

.voice {
    grid-column: span 12;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: flex-start;
    padding: 16px;
    background: var(--voices-accent);
    border: 1px solid var(--voices-border);
    border-radius: var(--radius);
}

.voice__avatar {
    width: 72px;
    height: 72px;
    margin: 0;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;

    display: flex;
    align-items: center;
    justify-content: center;
}

.voice__avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.voice__content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.voice__text {
    margin: 0;
    font-size: 1.3em;
    line-height: 1.8;
}

/* wider layout */
@media (min-width: 768px) {
    .voice {
        grid-column: span 6;
    }
}

@media (min-width: 1100px) {
    .voice {
        grid-column: span 4;
    }
}

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

    .voices {
        padding-bottom: 25%;
    }

    /*===========max-width:768px===========*/
}