@charset "UTF-8";

/* 共通
------------------------------------------------------------ */
body {
    color: #222;
    font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "MS Pゴシック", Osaka, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

em {
    font-style: normal;
}

table th {
    font-weight: normal;
}

/* 画像 */
.wrapper img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* リンク：ホバーアクション */
a:hover,
a:active {
    opacity: .8;
}

/* マーカー */
.maerker {
    font-weight: bold;
    color: #ff4e4e;
    background: linear-gradient(#fff56b 10%, #fff56b 90%, transparent 10%);
}

/* 注釈 */
.att,
.att_list {
    font-size: 12px;
    color: #707070;
}

/* 枠 */
.wrapper section {
    padding-bottom: 30px;
    border-bottom: 2px dotted #b8b8b8;
    margin-bottom: 30px;
}

.wrapper section:not(.mv_wrap) {
    padding-left: 15px;
    padding-right: 15px;
}

/* 行間 */
.wrapper section > p {
    margin: 0 0 15px;
}

/* 見出し */
main section:not(.about) h2 {
    font-size: 22px;
    font-weight: bold;
    padding: 0 0 5px 1em;
    text-indent: -1em;
    border-bottom: 4px solid #e13554;
    margin: 0 0 20px;
}

/* 資料請求ボタン */
.btn_area {
    max-width: 450px;
    margin: 0 auto;
}

.btn_area a {
    font-size: 25px;
    font-weight: bold;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    text-align: center;
    display: block;
    padding: 10px 25px;
    background: linear-gradient(to bottom, rgba(47,206,0,1) 0%,rgba(33,145,0,1) 100%);
    border-radius: 100px;
    position: relative;
    box-shadow: 0 3px 6px rgba(0,0,0,20%)
}

.btn_area a::before {
    border: solid transparent;
    content: '';
    position: absolute;
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 10px;
    border-right-width: 0px;
    border-left-color: #fff;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}

.btn_area a p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
}

.btn_area a p em {
    font-size: 16px;
    color: #219100;
    background: #fff;
    width: 48px;
    height: 48px;
    text-align: center;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 図 */
.chart {
    border: 5px solid #ebebeb;
    border-radius: 10px;
    text-align: center;
    padding: 20px 15px;
}

.chart figcaption {
    font-weight: bold;
    text-align: center;
    border-bottom: 2px solid #707070;
    width: fit-content;
    margin: 0 auto 15px;
}

.chart figcaption span {
    color: #ff4e4e;
}

.chart img {
    max-width: 315px;
}

/* 目次へ戻るボタン */
.floater_btn a {
    width: 68px;
    display: block;
    position: fixed;
    bottom: 10px;
    right: 10px;
}

.floater_btn.hide {
    display: none;
}

/* 太字 */
.wrapper section strong {
    font-weight: bold;
    font-style: normal;
}

/* header
------------------------------------------------------------ */
.wrapper header {
    text-align: center;
    background: #2d77cb;
    padding: 12px 0;
}

.wrapper header img {
    width: 187px;
}

/* MV
------------------------------------------------------------ */
.wrapper .mv_wrap {
    border-bottom: none;
    padding-bottom: 0;
}

.mv_wrap .mv_txt {
    font-weight: bold;
    text-align: center;
    color: #ff4e4e;
    margin: 15px auto 0;
    position: relative;
    width: fit-content;
    padding: 0 15px;
}

.mv_wrap .mv_txt::before,
.mv_wrap .mv_txt::after {
    content: '';
    width: 2px;
    height: 100%;
    background: #ff4e4e;
    position: absolute;
    bottom: 0;
}

.mv_wrap .mv_txt::before {
    left: 0;
    transform: rotate(-15deg);
}

.mv_wrap .mv_txt::after {
    right: 0;
    transform: rotate(15deg);
}

.mv_wrap .mv_txt sup {
    font-size: 12px;
    vertical-align: super;
}

.mv_wrap .mv_tit {
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin: 0 10px 10px;
}

.mv_wrap .mv_tit span {
    background: linear-gradient(transparent 55%, #fefe7a 10%);
}

.mv_wrap .mv_tit em {
    color: #ff4e4e;
}

.mv_wrap .att {
    text-align: right;
    margin: 0 15px 5px;
}

.mv_wrap ul:not([class]) {
    display: flex;
    gap: 0 10px;
    overflow: auto;
    margin: 0 15px 20px;
}

.mv_wrap ul:not([class]) li {
    font-size: 12px;
    text-align: center;
    white-space: nowrap;
    color: #707070;
    padding: 4px 15px 2px;
    border-radius: 100px;
    background: #ebebeb;
}

.mv_wrap h1 {
    margin: 0 auto 10px;
    max-width: 1280px;
}

.mv_wrap .att_list {
    margin: 0 15px;
}

.mv_wrap .att_list li {
    margin: 0 0 10px;
}

/* about
------------------------------------------------------------ */
.about {
    margin-top: 0;
    border-top: 2px dotted #b8b8b8;
    padding-top: 30px;
}

.about h2 {
    font-size: 18px;
    font-weight: bold;
    border-left: 10px solid #e13554;
    padding: 0 0 0 10px;
    margin: 0 0 15px;
}

.about .btn_area {
    margin-top: 25px;
    margin-bottom: 35px;
}

/* 目次
------------------------------------------------------------ */
#contents_list {
    background: #f3f3f3;
    overflow: hidden;
    padding: 25px 15px 0;
}

#contents_list dt {
    font-size: 22px;
    font-weight: bold;
    border-bottom: 2px solid #b8b8b8;
    margin: 0 0 15px;
}

#contents_list dd {
    counter-increment: number;
    margin: 0 0 20px;
}

#contents_list dd a::before {
    content: counter(number)'.';
    font-size: 16px;
    width: 16px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

#contents_list dd a {
    color: #222;
    text-decoration: underline;
    position: relative;
    padding: 0 0 0 20px;
    display: block;
}

#contents_list dd a:hover {
    color: #707070;
    text-decoration: none;
}

/* contents_01
------------------------------------------------------------ */
#contents_01 > :not(.btn_area) em {
    font-size: 18px;
    font-weight: bold;
    display: block;
    margin: 0 0 15px;
}

#contents_01 .chart {
    margin-top: 30px;
    margin-bottom: 30px;
}

#contents_01 .btn_area {
    margin-bottom: 20px;
}

#contents_01 .att_list {
    margin: 0 0 10px;
}

#contents_01 .att_list li {
    padding: 0 0 0 3.5em;
    text-indent: -3.5em;
    margin: 0 0 5px;
}

/* contents_02
------------------------------------------------------------ */
#contents_02 .calculation {
    text-align: center;
    margin: 0 -15px 20px;
}

#contents_02 .calculation img {
    max-width: 375px;
}

#contents_02 .calculation + p {
    text-align: center;
}

#contents_02 p em {
    font-size: 18px;
    font-weight: bold;
}

#contents_02 table {
    width: 100%;
    max-width: 375px;
    margin: 0 auto 10px;
}

#contents_02 table caption {
    text-align: left;
    margin: 0 0 15px;
}

#contents_02 table caption::before {
    content: '';
    width: 15px;
    height: 15px;
    display: inline-block;
    background: #222;
    margin: 0 10px 0 0;
}

#contents_02 table thead {
    font-size: 12px;
    background: #ebebeb;
    border-top: 1px solid #b8b8b8;
}

#contents_02 table thead th {
    vertical-align: middle;
    text-align: center;
    padding: 3px;
}

#contents_02 table thead th:not(:first-child):not(:last-child) {
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
}

#contents_02 table td:nth-child(-n+2) {
    border-right: 1px solid #b8b8b8;
}

#contents_02 table td:nth-child(4) {
    vertical-align: middle;
    border-left: 1px solid #b8b8b8;
}

#contents_02 table td {
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #b8b8b8;
    border-bottom: 1px solid #b8b8b8;
    padding: 3px;
}

#contents_02 .att {
    margin: 0 0 25px;
}

/* contents_03
------------------------------------------------------------ */
#contents_03 h3 {
    padding: 10px 0;
    border-top: 1px solid #b8b8b8;
    border-bottom: 1px solid #b8b8b8;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 0 10px;
    justify-content: space-between;
}

#contents_03 h3 strong {
    font-size: 20px;
    font-weight: bold;
    border-left: 10px solid #e13554;
    padding: 0 0 0 10px;
}

#contents_03 h3 span {
    font-size: 14px;
    font-weight: normal;
}

#contents_03 h4 {
    font-size: 18px;
    font-weight: bold;
    color: #ff8800;
    position: relative;
    margin: 0 0 5px;
}

#contents_03 h4::before {
    content: '';
    width: 100%;
    height: 2px;
    background: #ff8800;
    position: absolute;
    left: 0;
    top: calc(50% - 1px);
}

#contents_03 h4 span {
    padding: 0 10px 0 0;
    background: #fff;
    position: relative;
}

#contents_03 .plan_list {
    margin: 0 0 40px;
}

#contents_03 .plan_list li {
    margin: 0 0 10px;
}

#contents_03 .option_list {
    display: flex;
    gap: 5px 15px;
    margin: 0 0 5px;
    flex-wrap: wrap;
}

#contents_03 .option_list li {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background: #ffefeB;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((100% - 15px) / 2);
    min-height: 65px;
}

#contents_03 .option_list + p {
    font-weight: bold;
    text-align: right;
    margin: 0 0 10px;
}

/* contents_05
------------------------------------------------------------ */
#contents_05 {
    border-bottom: none;
}

#contents_05 figure {
    max-width: 345px;
    margin: 25px auto 35px;
}

/* aside
------------------------------------------------------------ */
.cv_wrapper {
    margin: 0 0 30px;
}

.cv_wrapper h2 {
    max-width: 650px;
    margin: 0 auto 15px;
}

.cv_wrapper .cv_area {
    margin: 0 15px;
}

.cv_area .support {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 5px;
}

.cv_area .web_btn {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    display: block;
    padding: 15px 25px;
    background: linear-gradient(to bottom, rgba(0,155,187,1) 0%,rgba(0,114,138,1) 100%);
    border-radius: 10px;
    position: relative;
    box-shadow: 0 3px 6px rgba(0,0,0,20%);
    position: relative;
    max-width: 450px;
    margin: 0 auto 10px;
}

.cv_area .web_btn::before {
    border: solid transparent;
    content: '';
    position: absolute;
    border-top-width: 9px;
    border-bottom-width: 9px;
    border-left-width: 10px;
    border-right-width: 0px;
    border-left-color: #fff;
    right: 13px;
    top: 50%;
    transform: translateY(-50%);
}

.cv_area .web_btn em {
    color: #fff56b;
}

.cv_area .web_btn span {
    font-size: 16px;
    font-weight: normal;
    display: block;
}

.cv_area .web_btn + p {
    font-weight: bold;
    margin: 0 0 15px;
}

.cv_area .tel_area {
    font-size: 14px;
    text-align: center;
    color: #222;
    display: block;
    max-width: 400px;
    margin: 0 auto 10px;
    padding: 20px 0 5px;
    border: 3px solid #009bbb;
    border-radius: 10px;
    position: relative;
}

.tel_area .tel_text {
    font-size: 18px;
    color: #009bbb;
    white-space: nowrap;
    padding: 0 10px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50% , -50%);
}

.tel_area .tel_num {
    font-size: clamp(25px, 9vw, 42px);
    font-weight: bold;
    color: #009bbb;
    padding: 0 0 0 33px;
    background: url(images/ico_tel.webp) no-repeat left center;
    background-size: 28px;
    margin: 0 auto 10px;
    width: fit-content;
}

.cv_area .att {
    max-width: 400px;
    margin: 0 auto;
}

/* footer
------------------------------------------------------------ */
footer .footer_content {
    margin: 0 30px 40px;
}

.footer_content figure {
    max-width: 315px;
    margin: 0 auto 10px;
}

.footer_content address {
    font-size: 14px;
    font-style: normal;
}

footer .privacy_link {
    text-align: center;
    color: #2d77c8;
    margin: 0 0 45px;
}

footer .privacy_link a {
    font-size: 13px;
    text-decoration: underline;
    color: #2d77c8;

}

footer .document_number {
    font-size: 12px;
    text-align: right;
    color: #707070;
    margin: 0 15px 5px;
}

footer .copyright {
    font-size: 13px;
    color: #fff;
    text-align: center;
    background: #2d77c8;
    padding: 15px 0;
}


/* 画面サイズ別調整
---------------------------------------------------------------- */
@media screen and (min-width:768px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
    }

    /* 共通
    ------------------------------------------------------------ */
    /* 枠 */
    .wrapper section {
        padding-bottom: 30px;
        border-bottom: 2px dotted #b8b8b8;
        margin-bottom: 30px;
    }

    .wrapper section:not(.mv_wrap) {
        width: 750px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 50px;
        padding-right: 50px;
    }

    /* 図 */
    .chart {
        width: 500px;
        margin: 0 auto;
        padding: 30px 0;
    }

    .chart figcaption {
        font-size: 17px;
    }

    /* MV
    ------------------------------------------------------------ */
    .mv_wrap ul:not([class]) {
        justify-content: center;
    }

    .mv_wrap .att {
        width: 650px;
        margin: 0 auto 5px;
    }

    .mv_wrap .att_list {
        width: 650px;
        margin: 0 auto 15px;
    }

    /* 目次
    ------------------------------------------------------------ */
    #contents_list {
        width: 600px;
        margin: 0 auto;
        padding: 25px 25px 0;
    }

    /* contents_02
    ------------------------------------------------------------ */
    #contents_02 .calculation {
        margin: 0 0 20px;
    }

    #contents_02 table {
        margin-bottom: 20px;
    }

    /* contents_03
    ------------------------------------------------------------ */
    #contents_03 .plan_list {
        display: flex;
        gap: 0 20px;
    }

    #contents_03 .plan_list li {
        margin: 0;
    }

    #contents_03 .option_list {
        gap: 5px 10px;
    }

    #contents_03 .option_list li {
        width: calc((100% - 30px) / 4);
    }

    /* aside
    ------------------------------------------------------------ */
    .cv_wrapper h2 {
        margin-bottom: 40px;
    }

    .cv_area .support {
        font-size: 25px;
        margin: 0 0 15px;
    }

    .cv_area .support br {
        display: none;
    }

    .cv_area .web_btn {
        margin-bottom: 25px;
    }

    .cv_area .web_btn + p {
        text-align: center;
        margin: 0 0 50px;
    }

    /* footer
    ------------------------------------------------------------ */
    .footer_content address {
        text-align: center;
    }

    .footer_content address br {
        display: none;
    }

    footer .document_number {
        width: 650px;
        margin: 0 auto 5px;
    }

}