@charset "UTF-8";
html {
    scroll-behavior: smooth;
}
body {
    box-sizing: border-box;
    color: #333;
    font-family: "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "游ゴシック", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .1rem;
    line-break: strict;
}
*, *::before, *::after {
    box-sizing: border-box;
}

/* デバッグ用 */
/* * {
    outline:1px solid #0000FF;
}
 */

/*--------共通パーツ--------*/
.section-title {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}
.section-title span {
    color: #004a8e;
    font-size: 2rem;
    font-weight: 900;
}
.section-title img {
    width: 2rem;
    height: 2rem;
    object-fit: cover;
    margin-right: 1rem;
}
.box-title {
    margin-bottom: 1rem;
    color: #c9444e;
    font-size: 1rem;
    font-weight: 900;
    text-align: left;
}
.wrapper {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.wrapper2 {
    width: 72%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}
a {
    text-decoration: none;
    transition: .3s;
}
a:hover {
    opacity: .7;
}
.sp-wrap {
    display: none;
}
img {
    display: block;
}
.pc-img {
    display: block;
}
.sp-img {
    display: none;
}
.sp-br {
    display: none;
}
/*--------ヘッダー--------*/
#header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 30;
    width: 100%;
    height: 84px;
    box-shadow: 1px 1px 6px #aaa;
    background-color: #fff;
    transition: .3s ease;
}
.header-change {
    background-color: rgba(255, 255, 255, .7) !important;
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    height: 100%;
    margin: 0 auto;
}
.site-title {
    display: block;
    width: 16%;
    margin: auto 0 auto 2rem;
}
.logo-area img {
    width: 100%;
}
.header-nav {
    display: flex;
    justify-content: flex-end;
}
.header-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header-item {
    margin-right: 2rem;
}
.header-link {
    position: relative;
    display: inline-block;
    opacity: 1;
    overflow: hidden;
    color: #333;
}
.header-link::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    max-width: 100%;
    height: 2px;
    transform: translateX(-100%);
    transform-origin: left;
    background-color: #00aad6;
    transition: .3s ease;
}
.header-link:hover {
    color: #4e6fbf;
    opacity: .7;
}
.header-link:hover::before {
    transform: translateX(0%);
}
.header-option {
    display: flex;
    height: 100%;
}
.header-option-box {
    padding: 1rem;
    width: 120px;
    height: 100%;
}
.header-option-box.contact {
    background-color: #509dbc;
}
.header-change .header-option-box.contact {
    background-color: rgba(80, 157, 188, .7);
}
.header-option-box.contact:hover {
    background-color: #00aad6;
}
.header-option-box.request {
    background-color: #4e6fbf;
}
.header-change .header-option-box.request {
    background-color: rgba(78, 111, 191, .7);
}
.header-option-box.request:hover {
    background-color: #00aad6;
}
.header-option-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.option-icon {
    width: 32px;
    height: 32px;
}
.header-option-link span {
    color: #fff;
    font-size: 0.8rem;
    letter-spacing: 0.02rem;
}
/*-------------メインビジュアル------------------*/
.main-visual {
    position: relative;
    width: 100%;
    height: 756px;
    z-index: 0;
    overflow: hidden;
    background-image: url(../img/main/main-visual.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.main-visual-parts1 {
    position: absolute;
    width: 80%;
    height: auto;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.main-visual-parts2 {
    position: absolute;
    width: 80%;
    height: auto;
    bottom: 6%;
    right: 4%;
    z-index: -2;
}
.main-visual-parts1 img,
.main-visual-parts2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.main-visual-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}
.main-visual-left {
    width: calc(64% - 8px);
}
.main-copy {
    margin-top: calc(84px + 4rem);
    margin-bottom: 4rem;
    font-size: 2rem;
    font-weight: 900;
    -webkit-text-stroke: #fff 4px;
    paint-order: stroke;
    text-align: left;
}
.main-point-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 2rem;
}
.main-point {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    box-shadow: 2px 2px 7px #aaa;
    background-color: #fff;
}
.main-icon {
    width: 64px;
    height: 64px;
}
.main-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.main-point-text {
    font-size: .9rem;
    letter-spacing: 0.01rem;
}
.main-visual-right {
    display: flex;
    width: calc(36% - 8px);
}
.main-pc {
    margin-top: auto;
    margin-right: -12rem;
}
.main-pc img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.main-tab {
    margin-top: auto;
}
.main-tab img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.main-cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}
.cta-link {
    position: relative;
    display: inline-block;
    align-items: center;
    padding: 12px 2.4rem;
    border-radius: 3em;
    border: solid 1px #fff;
    background-color: #fff;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    transition: .3s ease;
}
.cta-download {
    padding-right: 4rem;
    color: #c9444e;
}
.cta-download:hover {
    opacity: 1;
    border: solid 1px #c9444e;
    background-color: #c9444e;
    color: #fff;
}
.cta-request {
    color: #87c54f;
    padding-right: 4rem;
}
.cta-request:hover {
    opacity: 1;
    border: solid 1px #87c54f;
    background-color: #87c54f;
    color: #fff;
}
.cta-link::before {
    position: absolute;
    content: "";
    top: 50%;
    right: 1.4rem;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    transition: .3s ease;
}
.cta-link::after {
    position: absolute;
    background-color: #fff;
    content: "";
    top: 50%;
    right: calc(1.4rem + 4px);
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    transition: .3s ease;
}
.cta-download.cta-link::before {
    background-color: #c9444e;
}
.cta-download.cta-link:hover::before {
    right: 1rem;
    background-color: #fff;
}
.cta-download.cta-link:hover::after {
    right: calc(1rem + 4px);
    background-color: #c9444e;
}
.cta-request.cta-link::before {
    background-color: #87c54f;
}
.cta-request.cta-link:hover::before {
    right: 1rem;
    background-color: #fff;
}
.cta-request.cta-link:hover::after {
    right: calc(1rem + 4px);
    background-color: #87c54f;
}
/*--お悩み--*/
#worry {
    background-color: #fff;
    padding: 4rem 0;
}
.worry-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.worry-img {
    width: calc(32% - 1rem);
}
.worry-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.worry-balloon-box {
    width: calc(68% - 1rem);
}
.worry-balloon {
    position: relative;
    z-index: 1;
    padding: 8px 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    filter: drop-shadow(2px 2px 7px rgba(170,170,170,1));
    background-color: #fff;
    text-align: left;
}
.worry-balloon::before {
    position: absolute;
    content: "";
    top: 50%;
    left: -1.4%;
    z-index: -1;
    transform: translate(-50%, -50%);
    border: solid 12px transparent;
    border-right: solid 12px #fff;
}
.worry-balloon:last-child {
    margin-bottom: 0;
}
/*--全幅帯--*/
.full-wide {
    position: relative;
    width: 100%;
    background-color: #004a8e;
}
.full-wide-text {
    padding: 2rem;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    text-align: center;
}
.full-wide::before {
    position: absolute;
    content: "";
    bottom: -60%;
    left: 50%;
    transform: translateX(-50%);
    border: solid 32px transparent;
    border-top: solid 32px #004a8e;
}
/*--メリット--*/
#merit {
    padding: 4rem 0;
}
.merit-text {
    margin-bottom: 2rem;
    text-align: center;
}
.merit-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.merit-container {
    display: flex;
    flex-direction: column;
    width: calc(20% - 8px);
    letter-spacing: .03rem;
    text-align: left;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 2px 2px 7px #aaa;
    background-color: #fff;
}
.merit-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 1rem;
}
.merit-icon img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
/*--機能紹介--*/
#feature {
    padding: 4rem 0;
    background-image: url(../img/back-gray.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.feature-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.feature-container {
    position: relative;
    width: calc((100% / 3) - 1rem);
    height: auto;
    padding: 2rem 1rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    box-shadow: 2px 2px 7px #aaa;
    background-color: #fff;
}
.feature-container:nth-child(n+4) {
    margin-bottom: 0;
}
.feature-heading {
    position: absolute;
    top: -4%;
    left: 0;
    padding: 4px 8px;
    border-radius: 8px;
    background-color: #004a8e;
    color: #fff;
}
.feature-des {
    font-size: .9rem;
}
.feature-number {
    margin-left: -4px;
    font-size: 1.2rem;
    font-weight: 900;
}
.feature-img {
    width: 100%;
    height: auto;
    margin-bottom: 8px;
}
.feature-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 0 auto;
}
.feature-text {
    letter-spacing: .03rem;
    text-align: left;
}
/*--よくある質問--*/
#question {
    padding: 4rem 0;
}
.question-box {
    width: 100%;
    padding: 1rem;
    border-radius: 12px;
    margin: 0 auto 2rem;
    box-shadow: 2px 2px 10px #aaa;
    background-color: #fff;
    text-align: left;
}
.question-head {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
}
.question-text {
    font-weight: bold;
}
.accordion-tab {
    position: relative;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    background-color: #fff;
    cursor: pointer;
}
.accordion-tab::before {
    position: absolute;
    content: "";
    top: 18%;
    left: 48%;
    width: 1px;
    height: 18px;
    transform: rotate(0deg);
    background-color: #c9444e;
    transition: .3s ease;
}
.accordion-tab.open::before {
    transform: rotate(90deg);
}
.accordion-tab::after {
    position: absolute;
    content: "";
    top: 48%;
    left: 18%;
    width: 18px;
    height: 1px;
    background-color: #c9444e;
}
.answer-tab {
    display: none;
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    background-color: #e7e7e7;
    text-align: left;
}
/*--ご利用料金--*/
#price {
    padding: 4rem 0;
    background-image: url(../img/back-gray.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.price-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.price-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc((100% / 3) - 1rem);
    border-radius: 16px;
    margin-bottom: 1rem;
    box-shadow: 2px 2px 7px #aaa;
    background-color: #fff;
}
.price-heading-box {
    padding: 12px 0;
    border-radius: 16px 16px 0 0;
    background-color: #004a8e;
    color: #fff;
}
.price-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.price-wrapper {
    padding: 12px 1rem;
    color: #c9444e;
    letter-spacing: .03rem;
}
.price-yen {
    font-size: .9rem;
}
.price-number {
    font-size: 1.6rem;
    font-weight: 900;
}
.price-tax {
    font-size: .9rem;
}
.price-caption {
    padding: 0 4px;
    font-size: .9rem;
    text-align: center;
}
.price-add {
    display: block;
    color: #333;
    font-size: .9rem;
}
.price-text {
    font-size: .9rem;
    letter-spacing: .03rem;
    text-align: right;
}

/*--お問い合わせ--*/
#form-tab {
    padding: 4rem 0;
}
.form-tab-menu {
    display: flex;
    justify-content: flex-start;
}
.tab-item {
    width: 160px;
    padding: 1rem;
    border-radius: 12px 12px 0 0;
    background-color: #d1d1d1;
    font-size: 1.2rem;
    cursor: pointer;
}
.tab-item.active {
    background-color: #f7f7f7;
    color: #004a8e;
}
.tab-container {
    display: none;
    padding: 2rem;
    border-radius: 0 12px 12px 12px;
    margin-bottom: 4rem;
    box-shadow: 2px 2px 10px #aaa;
}
.tab-container.active {
    display: block;
    background-color: #f7f7f7;
}
.request-flex {
    display: flex;
    justify-content: space-between;
}
.request-des-box, .request-img-box {
    width: calc(50% - 1rem);
}
.request-des-box {
    text-align: left;
}
.request-title {
    margin-bottom: 2rem;
    color: #004a8e;
    font-size: 1.6rem;
    font-weight: 900;
}
.request-title br {
    display: none;
}
.request-img-box img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.form-btn {
    display: flex;
    justify-content: flex-start;
    padding-left: 4rem;
}
.form-link {
    position: relative;
    display: inline-block;
    align-items: center;
    opacity: 1;
    padding: 1rem 4rem;
    border-radius: 3em;
    border: solid 1px #004a8e;
    background-color: #004a8e;
    color: #fff;
    font-size: 1rem;
    line-height: 1.5;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    transition: .3s ease;
}
.form-link:hover {
    background-color: #fff;
    color: #004a8e;
}
.contact-link-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.contact-link-box .form-btn {
    padding-left: 0;
    margin-bottom: 1rem;
    margin-right: 2rem;
}
.contact-link-box .form-link {
    padding: 12px 2rem;
}
.contact-link .form-link {
    opacity: 1;
    border: solid 1px #c9444e;
    background-color: #c9444e;
}
.contact-link .form-link:hover {
    opacity: 1;
    background-color: #fff;
    color: #c9444e;
}
.estimate-link .form-link {
    opacity: 1;
    border: solid 1px #4e6fbf;
    background-color: #4e6fbf;
}
.estimate-link .form-link:hover {
    background-color: #fff;
    color: #4e6fbf;
}
.trial-link .form-link {
    opacity: 1;
    border: solid 1px #00aad6;
    background-color: #00aad6;
}
.trial-link .form-link:hover {
    background-color: #fff;
    color: #00aad6;
}
#contact .request-title {
    text-align: left;
}
#contact .request-flex {
    margin-bottom: 2rem;
}
#contact .contact-des-box {
    width: 60%;
    text-align: left;
}
#contact .tab-text {
    margin-bottom: 1rem;
}
.contact-example-box {
    width: 40%;
    margin-left: 4rem;
    text-align: left;
}
#contact .tab-list-intro {
    margin-bottom: 8px;
    font-weight: 900;
}
#contact .tab-list li {
    position: relative;
    padding-left: 1rem;
}
#contact .tab-list li::before {
    position: absolute;
    content: "";
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left: 8px solid #c9444e;
}
/*--フッター--*/
.footer-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 84%;
    max-width: 1200px;
    padding: 2rem 0;
    margin: 0 auto;
}
.site-logo {
    display: block;
    width: 24%;
}
.footer-info span {
    display: block;
}
.footer-nav-list {
    display: flex;
}
.footer-item {
    margin-left: 2rem;
}
.footer-link {
    color: #333;
    text-decoration: underline;
}
.copyright {
    padding: 1.6rem;
    background-color: #004a8e;
    text-align: center;
}
.copyright p {
    color: #fff;
    font-size: .8rem;
}
/*--レスポンシブ用の設定--*/
#nav_toggle {
    display: none
}
#close_toggle {
    display: none
}
#gnav_overlay {
    display: none
}
/*-------------タブレットの設定------------------*/
@media screen and (max-width: 1000px) {
    .wrapper {
        width: 90%;
        margin: 0 auto;
    }
    .wrapper2 {
        width: 90%;
        margin: 0 auto;
    }
    .section-title {
        margin-bottom: 2rem;
        font-size: 1.6rem;
    }
    /*--ヘッダーの設定_タブレット--*/
    #header {
        display: flex;
        align-items: center;
        width: 100%;
        height: 84px;
        background: #fff;
    }
    .site-title {
        width: 40%;
    }
    .header-link::before {
        content: none;
    }
    /*--メニュー_タブレット--*/
   #close_toggle {
        display: block;
        padding: 1em;
        text-align: right
    }
    #gnav_overlay {
        position: fixed;
        display: none;
        top: 0;
        right: 0;
        z-index: 80;
        width: 100%;
        height: 100dvh;
        background: rgba(0,0,0,.7);
        transition: .5s;
    }
    .header-nav #nav_toggle{
        position: fixed;
        display: flex;
        align-items: center;
        top: 12px;
        right: 2rem;
        z-index: 1000;
        height: 40px;
        cursor: pointer;
    }
    .header-nav #nav_toggle #nav_toggle_icon {
        display: block;
        z-index: 90;
        width: 30px;
        height: 2px;
        margin-top: 15px;
        margin-right: 15px;
        background: #333;
        transition: .2s;
    }
    .header-nav #nav_toggle_text {
        position: absolute;
        display: block;
        right: 20%;
        bottom: -60%;
        z-index: 90;
        color: #333;
        font-size: 0.7rem;
    }
    .header-nav #nav_toggle::before {
        position: absolute;
        content: "";
        top: -4px;
        right: -9.6px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
    }
    .header-nav #nav_toggle #nav_toggle_icon:before,
    .header-nav #nav_toggle #nav_toggle_icon:after {
        position: absolute;
        display: block;
        content: "";
        width: 30px;
        height: 2px;
        background: #333;
        top: 68%;
        left: 0;
        transition: .3s;
    }
    .header-nav #nav_toggle #nav_toggle_icon:before {
        margin-top: -14px
    }
    .header-nav #nav_toggle #nav_toggle_icon:after {
        margin-top: 11px
    }
    .header-nav #nav_toggle.close {
        background: rgba(0,0,0,0)
    }
    .header-nav #nav_toggle.close #nav_toggle_icon:before {
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        margin-top: -1px;
        background-color: #333;
    }
    .header-nav #nav_toggle.close #nav_toggle_icon:after {
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        background-color: #333;
        margin-top: -1px;
    }
    .header-nav #nav_toggle.close #nav_toggle_icon {
        background-color: transparent;
    }
    .header-nav #nav_toggle.close #nav_toggle_text {
        color: #333;
    }
    .header-nav #nav_toggle.close::before {
        background-color: rgba(255,255,255,0);
    }
    .header-list {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 100;
        width: 50vw;
        height: 100dvh;
        padding-top: 6rem;
        text-align: center;
        background-color: #fff;
        transition: .3s;
    }
    /*--ハンバーガーメニューオープン--*/
    .open .header-list {
        right: 0;
        padding-top: 6rem;
    }
    .header-item {
        margin-right: 0;
    }
    .header-link {
        display: block;
        padding: 1rem 0;
        border-top: solid 1px #333;
        font-size: 1rem;
    }
    .header-item:last-child {
        border-bottom: solid 1px #333;
        margin-bottom: 2rem;
    }
    .header-option {
        flex-direction: column;
    }
    .header-option-box {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }
    .header-option-link {
        flex-direction: row;
        justify-content: center;
        padding: 1rem;
    }
    .header-change .header-option-box.contact {
        background-color: rgba(80, 157, 188, 1);
    }
    .header-change .header-option-box.request {
        background-color: rgba(78, 111, 191, 1);
    }
    .option-icon {
        margin-right: 1rem;
    }
    .header-option-link span {
        font-size: 1rem;
    }
    /*--メインビジュアル_タブレット--*/
    .main-visual {
        height: auto;
    }
    .main-visual-parts1 {
        width: 100%;
    }
    .main-visual-parts2 {
        width: 100%;
        right: 0;
    }
    .main-visual-flex {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .main-visual-left {
        width: 100%;
    }
    .main-copy {
        font-size: 3.6vw;
        margin-top: calc(84px + 2rem);
        margin-bottom: 2rem;
    }
    .main-visual-img-box {
        width: 80%;
        margin-bottom: 2rem;
    }
    .main-visual-right {
        width: 100%;
        justify-content: center;
    }
    .main-cta-flex {
        margin-bottom: 2rem;
    }
    /*--お悩み_タブレット--*/
    #worry {
        padding: 2rem 0;
    }
    .worry-img {
        width: calc(32% - 8px);
    }
    .worry-balloon-box {
        width: calc(68% - 8px);
    }
    /*--メリット_タブレット--*/
    #merit {
        padding: 2rem 0;
    }
    .merit-flex {
        flex-direction: column;
    }
    .merit-container {
        width: 100%;
        margin-bottom: 1rem;
    }
    .merit-container:last-child {
        margin-bottom: 0;
    }
    .merit-box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .merit-container-text {
        width: calc(88% - 1rem);
        margin-left: 1rem;
    }
    .merit-icon {
        margin: 0 auto;
    }
    /*--機能_タブレット--*/
    #feature {
        padding: 2rem 0;
    }
    .feature-container {
        width: calc(50% - 1rem);
        padding: 2rem 12px 1rem;
        margin-bottom: 2rem;
    }
    .feature-container:nth-child(n+4) {
        margin-bottom: 2rem;
    }
    .feature-container:nth-child(n+5) {
        margin-bottom: 0;
    }
    .feature-img {
        width: 100%;
    }
    .feature-img img {
        width: 100%;
    }
    /*--よくある質問_タブレット--*/
    #question {
        padding: 2rem 0;
    }
    .question-box {
        width: 100%;
    }
    /*--料金_タブレット--*/
    #price {
        padding: 2rem 0;
    }
    .price-heading-box {
        padding: 8px 0;
    }
    .price-wrapper {
        padding: 8px;
    }
    .price-caption {
        padding: 0 4px;
    }
    /*--お問い合わせ_タブレット--*/
    #form-tab {
        padding: 2rem 0;
    }
    .tab-container {
        margin-bottom: 2rem;
    }
    .request-img-box {
        align-items: center;
        width: 50%;
    }
    .request-flex {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .request-des-box, .request-img-box {
        width: 100%;
    }
    .form-btn {
        justify-content: center;
        padding-left: 0;
    }
    #contact .contact-des-box {
        width: 100%;
    }
    .contact-example-box {
        width: 100%;
        margin-left: 2rem;
    }
    .contact-link-box {
        flex-direction: column;
        align-items: flex-start;
    }
    /*--フッター_タブレット--*/
    .footer-wrapper {
        padding: 1rem 0;
    }
    .footer-wrapper {
        width: 80%;
    }
    .footer-nav-list {
        flex-direction: column;
    }
    .footer-item {
        margin-left: 0;
        margin-bottom: 8px;
    }
    .copyright p {
        font-size: 1.6vw;
    }
}
@media screen and (max-width: 767px) {
    body {
        font-size: 14px;
        letter-spacing: 0.03rem;
    }
    .section-title span {
        font-size: 1.1rem;
        text-align: left;
    }
    .header-nav #nav_toggle {
        top: 8px;
        right: 1rem;
    }
    .header-nav #nav_toggle_text {
        right: 28%;
    }
    .header-list {
        width: 100%;
    }
    .site-title {
        width: 60%;
    }
    .sp-br {
        display: block;
    }
    .pc-img {
        display: none;
    }
    .sp-img {
        display: block;
    }
    /*--メインビジュアル_SP--*/
    .main-copy {
        font-size: 6vw;
        -webkit-text-stroke: #fff 3px;
    }
    .main-point-flex {
        flex-direction: column;
        margin-bottom: 1rem;
    }
    .main-point {
        flex-direction: row;
        justify-content: space-between;
        width: 88%;
        height: auto;
        padding: 8px;
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    .main-point:last-child {
        margin-bottom: 0;
    }
    .main-icon {
        width: 48px;
        height: 48px;
    }
    .main-point-text {
        width: calc(100% - 48px - 1rem);
    }
    .main-pc {
        margin-right: -6rem;
    }
    .main-cta-flex {
        flex-direction: column;
    }
    .cta-btn {
        margin-bottom: 1rem;
    }
    .cta-btn:last-child {
        margin-bottom: 1rem;
    }
    .cta-link {
        font-size: 1rem;
        padding: 8px 3.6rem 8px 1.6rem;
    }
    /*--お悩み_SP--*/
    .worry-flex {
        flex-direction: column-reverse;
    }
    .worry-balloon-box {
        width: 100%;
        margin-bottom: 1rem;
    }
    .worry-balloon {
        margin-bottom: 1rem;
    }
    .worry-balloon::before {
        top: 100%;
        left: 50%;
    }
    .worry-img {
        width: 100%;
    }
    .worry-text {
        text-align: left;
    }
    /*--全幅帯--*/
    .full-wide-text {
        padding: 1rem;
        font-size: 1.2rem;
    }
    /*--メリット_SP--*/
    .merit-text {
        margin-bottom: 1rem;
        text-align: left;
    }
    .merit-icon {
        width: 64px;
        height: 64px;
    }
    .merit-container-text {
        width: calc(100% - 72px)
    }
    /*--機能_SP--*/
    .feature-container {
        width: 100%;
    }
    .feature-container:nth-child(n+5) {
        margin-bottom: 2rem;
    }
    .feature-container:last-child {
        margin-bottom: 0;
    }
    .feature-container .box-title {
        margin-bottom: 0;
    }
    .feature-img {
        height: auto;
    }
    .feature-img2-sp {
        width: 100%;
        max-width: 100%;
        height: auto;
        max-height: 100%;
        object-fit: cover;
        box-shadow: 2px 2px 7px #aaa;
    }
    /*--よくある質問_SP--*/
    #question {
        padding: 2rem 0;
        background-size: 800%;
    }
    .question-box {
        margin-bottom: 1rem;
    }
    .question-box:last-child {
        margin-bottom: 0;
    }
    .question-head {
        flex-direction: column;  
    }
    .accordion-tab {
        margin: 8px auto;
    }
    .answer-tab {
        margin-top: 0;
    }
    /*--料金_SP--*/
    #price {
        padding: 2rem 0;
    }
    .price-flex {
        flex-direction: column;
    }
    .price-container {
        width: 100%;
    }
    .price-caption {
        padding: 0 4px 1rem;
        font-size: .8rem;
    }
    .price-text {
        text-align: left;
    }
    /*--お問い合わせ_SP--*/
    #form-tab {
        padding: 2rem 0;
    }
    .tab-item {
        width: 140px;
        padding: 12px;
        font-size: 1rem;
    }
    .request-flex {
        margin-bottom: 2rem;
    }
    .request-title {
        margin-bottom: 1rem;
        font-size: 1rem;
        font-weight: 900;
    }
    .request-title br {
        display: block;
    }
    .request-des-box {
        flex-direction: column;
    }
    .request-text-box {
        width: 100%;
    }
    .request-img-box {
        width: 100%;
    }
    .tab-text {
        margin-bottom: 1rem;
    }
    .tab-container {
        padding: 1rem;
        margin-bottom: 2rem;
    }
    .contact-example-box {
        margin-left: 0;
    }
    .form-link {
        padding: 8px 1.6rem;
    }
    /*--フッター_SP--*/
    .footer-wrapper {
        width: 88%;
        flex-direction: column;
        align-items: flex-start;
    }
    .site-logo {
        width: 60%;
        margin-bottom: 1rem;
    }
    .footer-info {
        margin-bottom: 1rem;
    }
    .copyright p {
        font-size: 3vw;
    }
}
/*-------------アニメーション------------------*/
.animation {
    opacity: 0
}
.fadeup {
    transform-origin: center top;
    -webkit-animation: fadeup 1s both;
    animation: fadeup 1s both;
}

.slidein_left {
    transform-origin: right center;
    -webkit-animation: slidein_left 1s both;
    animation: slidein_left 1s both
}
.slidein_right {
    transform-origin: right center;
    -webkit-animation: slidein_right 1s both;
    animation: slidein_right 1s both
}

.d3 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.d5 {
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

.d10 {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.d15 {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s
}

.d20 {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.d25 {
    -webkit-animation-delay: 2.5s;
    animation-delay: 2.5s
}

.d30 {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.d35 {
    -webkit-animation-delay: 3.5s;
    animation-delay: 3.5s
}

.d40 {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.d45 {
    -webkit-animation-delay: 4.5s;
    animation-delay: 4.5s
}

.d50 {
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.d55 {
    -webkit-animation-delay: 5.5s;
    animation-delay: 5.5s
}

.d60 {
    -webkit-animation-delay: 6s;
    animation-delay: 6s
}

@-webkit-keyframes fadeup {
    0% {
        transform: translate(0, 2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes fadeup {
    0% {
        transform: translate(0, 2em);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes slidein_left {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@keyframes slidein_left {
    0% {
        transform: translate(-2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}

@-webkit-keyframes slidein_right {
    0% {
        transform: translate(2em, 0, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0, 0);
        opacity: 1
    }
}

@keyframes slidein_right {
    0% {
        transform: translate(2em, 0);
        opacity: 0
    }

    100% {
        transform: translate(0, 0);
        opacity: 1
    }
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

@-webkit-keyframes circle {
    0% {
        transform-origin: 50% 50%;
        transform: scaleY(1) rotate(0deg)
    }

    50% {
        transform: scaleY(1) rotate(180deg);
        transform-origin: 50% 50%
    }

    100% {
        transform: scaleY(1) rotate(360deg);
        transform-origin: 50% 50%
    }
}

@keyframes circle {
    0% {
        transform-origin: 50% 50%;
        transform: scaleY(1) rotate(0deg)
    }

    50% {
        transform: scaleY(1) rotate(180deg);
        transform-origin: 50% 50%
    }

    100% {
        transform: scaleY(1) rotate(360deg);
        transform-origin: 50% 50%
    }
}