@charset "UTF-8";
html {
    scroll-behavior: smooth;
}
body {
    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;
    color: #333;
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: border-box;
}

/* * {
    outline:1px solid #0000FF;
} */

/*--------共通パーツ--------*/
.section-title {
    color: #004a8e;
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
}
.section-title br {
    display: none;
}
.box-title {
    font-size: 1.2rem;
    font-weight: 900;
}
#point .box-title {
    color: #004a8e;
}
.feature-title {
    color: #c9444e;
    font-size: 1.2rem;
    font-weight: 900;
    text-align: left;
    margin-bottom: 1.5rem;
}
#customize .box-title {
    color: #c9444e;
}
.wrapper {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
a {
    text-decoration: none;
    transition: .3s;
}
a:hover {
    opacity: .7;
}
.sp-wrap {
    display: none;
}
/*--------ヘッダー--------*/
#header {
    position: fixed;
    background-color: #fff;
    top: 0;
    left: 0;
    width: 100%;
    height: 84px;
    box-shadow: 1px 1px 6px #aaa;
    transition: .3s ease;
    z-index: 30;
}
.header-change {
    background-color: rgba(255, 255, 255, .7) !important;
}
.header-wrapper {
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    height: 100%;
}
.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;
    color: #333;
    opacity: 1;
    overflow: hidden;
}
.header-link::before {
    position: absolute;
    content: "";
    background-color: #00aad6;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateX(-100%);
    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;
    background-color: #fff;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 756px;
    overflow: hidden;
    z-index: 0;
 }
 .main-visual::before {
    position: absolute;
    content: "";
    background-color: #004a8e;
    transform: rotate(-6deg);
    top: 56%;
    left: 0;
    width: 110%;
    height: 100%;
    z-index: -1;
} 
.main-catch-copy-container {
    display: inline-block;
}
.main-catch-copy {
    color: #333;
    font-size: 2rem;
    text-align: left;
    margin-bottom: 1rem;
}
.main-catch-copy-container img {
    width: 52%;
}
.main-visual-flex {
    width: 92%;
    max-width: 1200px;
    margin: 100px auto 0;
}
.main-visual-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: -2rem;
    margin-bottom: 2rem;
}
.main-visual-text-container {
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-visual-point {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 150px;
    height: 150px;
    color: #004a8e;
    font-weight: 600;
    text-align: center;
    border-radius: 100%;
    border: solid 3px #004a8e;
}
.main-visual-img-box {
    display: flex;
    width: 50%;
}
.main-visual-img-box img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.main-visual-img-pc {
}
.main-visual-img-sp {
    margin: auto 0 0 -4rem;
}
.main-visual-cta {
    display: flex;
    justify-content: space-around;
    align-items: center;
}
.download-link {
    position: relative;
    display: inline-block;
    align-items: center;
    background-color: #fff;
    font-size: 1.2rem;
    line-height: 1.5;
    border-radius: 3em;
    padding: 1rem 4rem 1rem 3rem;
    color: #4e6fbf;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    opacity: 1;
    transition: .3s ease;
}
.download-link:hover {
    background-color: #4e6fbf;
    color: #fff;
    opacity: 1;
}
.download-link::before {
    position: absolute;
    content: "";
    background-color: #4e6fbf;
    top: 30%;
    right: 6%;
    width: 28px;
    height: 28px;
    border-radius: 100%;
}
.download-link::after {
    position: absolute;
    content: "";
    background-color: #fff;
    top: 52%;
    right: 7.5%;
    width: 12px;
    height: 12px;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
    transform: translateY(-50%);
    transition: .3s ease;
}
.main-customize .download-link {
    background-color: #fff;
    color: #87c54f;
}
.main-customize .download-link:hover {
    background-color: #87c54f;
    color: #fff;
}
.main-customize .download-link::after {
    background-color: #fff;
}
.download-link:hover::before {
    background-color: #4e6fbf;
}
.main-customize .download-link::before {
    background-color: #87c54f;
}
.download-link:hover::after {
     right: 4%;
}
/*--お悩み--*/
#worry {
    background-image: url(../img/back/back-gray.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
}
.worry-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.worry-box {
    width: calc(25% - 1rem);
    margin-left: 2rem;
}
.worry-box:first-child {
    margin-left: 0;
}
.worry-img {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 7rem;
}
.worry-img img {
    width: 72%;
    height: 200px;
    object-fit: contain;
}
.worry-img-caption {
    font-size: 0.9rem;
    letter-spacing: 0/01rem;
    text-align: left;
}
.worry-solution {
    position: relative;
    background-color: #87c54f;
    color: #fff;
    height: auto;
    text-align: left;
    padding: 1rem;
    border-radius: 12px;
}

.worry-solution::before,
.worry-solution::after {
    position: absolute;
    content: "";
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-color: #c9444e transparent transparent transparent;
    border-width: 20.78px 12px 0px 12px;
}
.worry-solution::before {
    top: -3rem;
}
.worry-solution::after {
    top: -5rem;
}
/*--ポイント--*/
#point {
    background-image: url(../img/back/back-blue.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
}
.point-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.point-box {
    background-color: #fff;
    width: calc((100% / 3) - 1rem);
    padding: 2rem 1rem;
    border-radius: 12px;
    text-align: center;
}
.point-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.point-box-img {
    width: 100%;
    height: auto;
}
.point-box-img img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}
.point-box p {
    text-align: left;
    letter-spacing: .01rem;;
}
/*--機能紹介--*/
#feature {
    padding: 4rem 0;
}
.feature-tab-pc {
    display: block;
}
.feature-tab-sp {
    display: none;
}
.feature-tab {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.feature-tab-sec {
    justify-content: space-around;
    margin-bottom: 2rem;
}
.feature-tab-item {
    width: calc(20% - 8px);
    background-color: #509dbc;
    text-align: center;
    border-radius: 24px;
}
.feature-tab-link {
    display: block;
    color: #fff;
    padding: 12px;
}
.feature-container {
    background-repeat: no-repeat;
    background-size: cover;
    text-align: left;
    padding: 4rem 0;
}
.feature-container:nth-child(odd) {
    background-image: url(../img/back/back-blue.webp);
}
.feature-container:nth-child(even) {
    background-image: url(../img/back/back-gray.webp);
}
.feature-flex {
    display: flex;
    justify-content: space-between;
}
.feature-box {
    position: relative;
    width: 48%;
    text-align: left;
}
.feature-text {
    
    margin-bottom: 2rem;
}
.feature-img {
    width: 48%;
    margin-left: 2rem;
}
.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.feature-point-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.feature-point-box {
    position: relative;
    width: calc(50% - 1rem);
    border-radius: 12px;
    margin-left: 1rem;
    margin-bottom: 4rem;
}
.feature-text-1 {
    margin-bottom: 4rem;
}
.feature-point-number {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #87c54f;
    color: #fff;
    top: -26%;
    left: -8%;
    width: 68px;
    height: 68px;
    padding: 8px;
    border-radius: 100%;
}
.feature-point-number-sub {
    font-size: .8rem;
}
.feature-point-number-count {
    font-size: 1.2rem;
    font-weight: 900;
}
.feature-point-box:nth-child(2n+1) {
    margin-left: 0;
}
.feature-point-des {
    background-color: #d2edff;
    text-align: left;
    padding: 2rem 1rem 1rem;
    border-radius: 12px;
}
.feature-caption {
    color: #004a8e;
    margin-bottom: 8px;
}
.flex-reverse {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.feature-text {
    margin-bottom: 1rem;
}
.feature2-img {
    display: flex;
    width: 48%;
}
.feature2-img1 {
    width: 68%;
    height: auto;
    object-fit: contain;
    z-index: 10;
}
.feature2-img2 {
    width: 52%;
    height: auto;
    object-fit: contain;
    transform: translateX(-30%);
}
.feature3-img1 {
    width: 100%;
    height: auto;
}
.feature3-img1 img {
    width: 100%;
    height: auto;
}
.feature3-img-flex {
    display: flex;
    width: 48%;
    gap: 8px;
}
.feature3-img-flex img {
    width: calc(100% / 3);
    height: auto;
    object-fit: contain;
}
.feature4-img-box {
    display: flex;
}
.feature4-img1 {
    width: 40%;
    height: auto;
    object-fit: contain;
    transform: translateX(-8%);
}
.feature4-img2 {
    width: 64%;
    height: auto;
    object-fit: contain;
    transform: translate(-16%, 20%);
}
.feature4-img1 img, .feature4-img2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.feature5-img img {
    width: 100%;
    height: auto;
}
.option-title {
    display: block;
}
.normal, .option {
    font-size: .9rem;
}
.option {
    background-color: #c9444e;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
}
.feature-box-flex {
    display: flex;
    justify-content: space-between;
}
.feature6-img-flex {
    display: flex;
    justify-content: space-between;
}
.feature6-img {
    width: 25%;
}
.feature6-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.feature7-img-flex {
    display: flex;
    justify-content: space-between;
}
.feature7-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.feature8-point-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}
.feature-point-box.feature8 {
    width: calc(100% / 3);
    padding: 4px;
    margin-left: 8px;
    margin-bottom: 0;
}
.feature-point-box.feature8:nth-child(2n+1) {
    margin-left: 8px;
}
.feature8 .feature-point-number {
    background: #004a8e;
    top: -60%;
    left: 50%;
    transform: translateX(-50%);
}
.feature8 .feature-point-des {
    background-color: #fff;
    font-size: .9rem;
    text-align: center;
    padding: 1.5rem 8px 8px 8px;
}
.feature8-img {
    position: relative;
    z-index: 10;
}
.feature8-img-des {
    position: relative;
    background-color: #c9444e;
    color: #fff;
    text-align: left;
    padding: 1rem;
    border-radius: 12px;
    margin-top: -6rem;
    z-index: 20;
}
.feature9-img-flex {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.feature9-img-flex2 {
    display: flex;
    justify-content: space-between;
    width: 48%;
}
.feature9-img1, .feature9-img2,
.feature9-img3, .feature9-img4 {
    height: auto;
    object-fit: contain;
}
.feature9-img1, .feature9-img2 {
    width: 50%;
}
.feature9-img3, .feature9-img4 {
    width: 60%;
}
.feature9-img3 {
    transform: translate(0, -20%);
}
.feature9-img4 {
    transform: translate(-28%, 16%);
}

/*--カスタマイズ事例--*/
#customize {
    padding: 4rem 0;
}
.customize-container {
    display: flex;
    justify-content: space-between;
    text-align: left;
}
.customize-menu {
    width: 28%;
}
.customize-list {
    text-align: left;
    margin-bottom: 2rem;
}
.customize-item {
    position: relative;
    display: table;
    margin-bottom: 8px;
    cursor: pointer;
    overflow: hidden;
}
.customize-item:before {
    position: absolute;
    content: "";
    background-color: #00aad6;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    transform: translateX(-100%);
    transition: .3s ease;
}
.customize-item:hover::before {
    transform: translateX(0%);
}
.customize-item.active {
    color: #c9444e;
}
.customize-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: stretch;
    width: 72%;
    margin-left: 1rem;
    margin-bottom: 2rem;
}
.customize-box {
    position: relative;
    display: none;
    flex-direction: column;
    align-items: center;
    width: calc(50% - 1rem);
    height: auto;
    background-color: #f7f7f7;
    text-align: left;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    box-shadow: 2px 2px 10px #aaa;
}
.customize-box-number {
    position: absolute;
    top: -8%;
    left: 4%;
}
.customize-box-number span {
    color: #509dbc;
    font-size: 2rem;
    font-weight: 900;
}
.customize-box.show {
    display: flex;
}
.customize-text-box {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
}
.customize-title {
    color: #c9444e;
    font-size: 1.2rem;
    font-weight: 900;
    margin-bottom: 12px;
}
.normal {
    background-color: #87c54f;
    color: #fff;
    padding: 4px 8px;
    border-radius: 8px;
}
.customize-text {
    margin-bottom: 12px;
}
.customize-img {
    width: 100%;
    height: 50%;
    overflow: hidden;
}
.customize-img img {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
}
.active-box {
    box-shadow: 2px 2px 6px #004a8e;
}
.shuffle-btn {
    position: relative;
    display: inline-block;
    align-items: center;
    background-color: #509dbc;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 3em;
    border: solid 1px #509dbc;
    padding: 12px 2rem;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    opacity: 1;
    transition: .3s ease;
}
.shuffle-btn:hover {
    background-color: #fff;
    color: #509dbc;
}
.sp-btn {
    display: none;
}
/*--導入までの流れ--*/
#flow {
    background-image: url(../img/back/back-blue.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
}
.flow-flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin-top: 4rem;
}
.flow-box {
    position: relative;
    background-color: #fff;
    width: calc(25% - 2rem);
    padding: 2rem 1rem 1rem 1rem;
    border-radius: 12px;
    margin-bottom: 6rem;
    box-shadow: 2px 2px 10px #aaa;
}
.flow-box::before {
    position: absolute;
    content: "";
    top: 50%;
    right: -12%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent transparent transparent #c9444e;
    border-width: 12px 0px 12px 20.78px;
}
.flow-box:nth-child(4n):before {
    content: none;
}
.flow-step {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #b2b2b2;
    border-radius: 100%;
    top: -24%;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
}
.flow-step span {
    display: block;
    color: #fff;
}
.flow-step-sub {
    font-size: .8rem;
}
.flow-step-number {
    font-size: 1.6rem;
    font-weight: 900;
}
.flow-img {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
}
.flow-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}
.flow-img-caption {
    display: block;
    margin-bottom: 12px;
}
.flow-text {
    text-align: left;
}
/*--よくある質問--*/
#question {
    background-image: url(../img/back/back-gray.webp);
    background-repeat: no-repeat;
    background-size: 200%;
    padding: 4rem 0;
}
.question-box {
    background-color: #fff;
    text-align: left;
    width: 60%;
    padding: 1rem;
    border-radius: 12px;
    margin: 0 auto 2rem;
    box-shadow: 2px 2px 10px #aaa;
}
.question-head {
    display: flex;
    justify-content: space-between;
}
.question-text {
    font-weight: bold;
}
.accordion-tab {
    position: relative;
    background-color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 100%;
    cursor: pointer;
    transition: .3s ease;
}
.accordion-tab::before {
    position: absolute;
    content: "";
    background-color: #c9444e;
    width: 1px;
    height: 18px;
    top: 18%;
    left: 48%;
    transform: rotate(0deg);
    transition: .3s ease;
}
.accordion-tab.open::before {
    transform: rotate(-90deg);
}
.accordion-tab::after {
    position: absolute;
    content: "";
    background-color: #c9444e;
    width: 18px;
    height: 1px;
    top: 48%;
    left: 18%;
}
.answer-tab {
    display: none;
    background-color: #fff;
    text-align: left;
    padding: 1rem;
}
/*--料金表--*/
#price {
    background-image: url(../img/back/back-grad.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
}
.price-flex {
    display: flex;
    justify-content: space-between;
    align-items: start;
}
.table-wrapper {
    width: 32%;
}
.price-table {
    width: 32%;
    text-align: left;
    border-collapse: collapse;
    border-spacing: 0;
}
.table-wrapper .price-table {
    width: 100%;
}
.table-wrapper-1 {
    margin-bottom: 2rem;
}
.price-table th, .price-table td {
    background-color: #fff;
    padding: 8px;
    border: solid 1px #333;
}
.price-table th {
    width: 44%;
    letter-spacing: .01rem;
}
.price-table td {
    width: 50%;
    text-align: right;
}
.price-table span {
    display: block;
    letter-spacing: .01rem;
}
.th-addition {
    font-size: .8rem;
}
.table-flex {
    display: flex;
    justify-content: space-between;
}
thead tr .table-header {
    background-color: #00aad6;
    color: #fff;
}
.table-td-flex {
    display: flex;
    justify-content: space-between;
}
.price-td {
    position: relative;
}
.price-td::before {
    position: absolute;
    content: "￥";
    color: #333;
    top: initial;
    left: 4%;
}
/*--お問い合わせ--*/
#form-tab {
    background-image: url(../img/back/back-blue.webp);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 4rem 0;
}
.form-tab-menu {
    display: flex;
    justify-content: flex-start;
}
.tab-item {
    background-color: #d1d1d1;
    font-size: 1.2rem;
    width: 160px;
    padding: 1rem;
    border-radius: 12px 12px 0 0;
    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 {
    color: #004a8e;
    font-size: 1.6rem;
    font-weight: 900;
    margin-bottom: 2rem;
}
.request-title br {
    display: none;
}
.request-img-box {
    display: flex;
    align-items: flex-start;
}
.request-img1, .request-img2, .request-img3 {
    width: 40%;
    height: auto;
    object-fit: contain;
}
.request-img2 {
    transform: translate(-24%,8%);
}
.request-img3 {
    transform: translate(-48%,0);
}
.form-btn {
    display: flex;
    justify-content: flex-start;
    padding-left: 4rem;
}
.form-link {
    position: relative;
    display: inline-block;
    align-items: center;
    background-color: #4e6fbf;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 3em;
    border: solid 1px #4e6fbf;
    padding: 1rem 4rem;
    color: #fff;
    white-space: nowrap;
    text-align: center;
    cursor: pointer;
    opacity: 1;
    transition: .3s ease;
}
.form-link:hover {
    background-color: #fff;
    color: #4e6fbf;
}
.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 {
    background-color: #c9444e;
    border: solid 1px #c9444e;
    opacity: 1;
}
.contact-link .form-link:hover {
    background-color: #fff;
    color: #c9444e;
    opacity: 1;
}
.estimate-link .form-link {
    background-color: #4e6fbf;
    border: solid 1px #4e6fbf;
    opacity: 1;
}
.estimate-link .form-link:hover {
    background-color: #fff;
    color: #4e6fbf;
}
.trial-link .form-link {
    background-color: #00aad6;
    border: solid 1px #00aad6;
    opacity: 1;
}
.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%;
    text-align: left;
    margin-left: 4rem;
}
#contact .tab-list-intro {
   font-weight: 900;
   margin-bottom: 8px;
}
#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 {
    background-color: #004a8e;
    text-align: center;
    padding: 1.6rem;
}
.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;
    }
    .section-title {
        margin-bottom: 2rem;
    }
    /*--ヘッダーの設定_タブレット--*/
    #header {
        display: flex;
        background: #fff;
        align-items: center;
        width: 100%;
        height: 84px;
    }
    .site-title {
        width: 32%;
    }
    .header-link::before {
        content: none;
    }
    /*--メニュー_タブレット--*/
   #close_toggle {
        display: block;
        padding: 1em;
        text-align: right
    }
    #gnav_overlay {
        position: fixed;
        display: none;
        width: 100%;
        height: 100dvh;
        background: rgba(0,0,0,.7);
        transition: .5s;
        z-index: 80;
        top: 0;
        right: 0
    }
    .header-nav #nav_toggle{
        position: fixed;
        display: flex;
        align-items: center;
        height: 40px;
        top: 12px;
        right: 2rem;
        z-index: 1000;
        cursor: pointer;
    }
    .header-nav #nav_toggle #nav_toggle_icon {
        display: block;
        width: 30px;
        height: 2px;
        background: #333;
        margin-top: 15px;
        margin-right: 15px;
        transition: .2s;
        z-index: 90;
    }
    .header-nav #nav_toggle_text {
        position: absolute;
        display: block;
        font-size: 0.7rem;
        color: #333;
        right: 20%;
        bottom: -60%;
        z-index: 90;
    }
    .header-nav #nav_toggle::before {
        position: absolute;
        content: "";
        width: 80px;
        height: 80px;
        top: -4px;
        right: -9.6px;
        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;
        transition: .3s;
        top: 68%;
        left: 0
    }
    .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 {
        background-color: #333;
        margin-top: -1px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg)
    }
    .header-nav #nav_toggle.close #nav_toggle_icon:after {
        background-color: #333;
        margin-top: -1px;
        transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg)
    }
    .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;
        background-color: #fff;
        padding-top: 6rem;
        top: 0;
        right: -100%;
        z-index: 100;
        width: 50vw;
        height: 100dvh;
        text-align: center;
        transition: .3s;
    }
    /*--ハンバーガーメニューオープン--*/
    .open .header-list {
        right: 0;
        padding-top: 6rem;
    }
    .header-item {
        margin-right: 0;
    }
    .header-link {
        display: block;
        font-size: 1.2rem;
        padding: 2rem 0;
        border-top: solid 1px #333;
    }
    .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: 1.2rem;
    }
    /*--メインビジュアル_タブレット--*/
    .main-visual {
        height: 100%;
    }
    .main-visual::before {
        top: 56%;
    }
    .main-catch-copy {
        font-size: 4.4vw;
    }
    .main-visual-flex {
        width: 100%;
        padding: 0 2rem 2rem;
    }
    .main-visual-wrapper {
        flex-direction: column;
        margin-top: 0;
    }
    .main-catch-copy-container {
        margin-bottom: 2rem;
    }
    .main-visual-text-container {
        width: 100%;
        justify-content: space-around;
        margin-bottom: 2rem;
    }
    .main-visual-img-box {
        width: 100%;
    }
    .main-customize {
        margin-bottom: 2rem;
    }
    .main-visual-cta {
        flex-direction: column;
    }
    .main-download {
        margin-bottom: 2rem;
    }
    /*--お悩み_タブレット--*/
    #worry {
        padding: 2rem 0
    }
    .worry-flex {
        flex-wrap: wrap;
    }
    .worry-box {
        width: calc(50% - 2rem);
        margin-left: 1rem;
        margin-bottom: 2rem;
    }
    .worry-box:nth-child(2n+1) {
        margin-left: 0;
    }
    .worry-img {
        margin-bottom: 6rem;
    }
    .worry-img img {
        margin-bottom: 1rem;
    }
    /*--ポイント_タブレット--*/
    #point {
        padding: 2rem 0;
    }
    .point-box {
        margin-bottom: 1rem;
    }
    .point-box-img img {
        height: 120px;
    }
    /*--機能紹介_タブレット--*/
    #feature {
        padding: 2rem 0;
    }
    .option-wrapper {
        text-align: left;
    }
    .feature-tab-link {
        font-size: .9rem;
        padding: 8px;
    }
    .feature-tab-item {
        width: calc(20% - 8px);
    }
    .feature-tab-sec .feature-tab-item {
        width: calc(25% - 16px);
    }
    .feature-flex {
        flex-direction: column;
    }
    .flex-reverse {
        flex-direction: column;
    }
    .feature-container {
        padding: 2rem 0;
    }
    .feature-box {
        margin-bottom: 1rem;
    }
    .feature-box, .feature-img {
        width: 100%;
    }
    .feature-img {
        margin-left: 0;
    }
    .feature-point-number {
        top: -44%;
    }
    .feature-point-des {
        height: 120px;
    }
    .feature2-img {
        width: 100%;
    }
    .feature2-img1 {
        width: 60%;
    }
    .feature2-img2 {
        width: 40%;
    }
    .feature3-img-flex {
        width: 100%;
    }
    .feature4-img1 {
        width: 36%;
        transform: translateX(16%);
    }
    .feature4-img2 {
        width: 56%;
        transform: translate(0,8%);
    }
    .feature-box-flex {
        flex-direction: column;
    }
    .feature8 .feature-point-des {
        height: 60px;
    }
    .feature8-img {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin-top: 1rem;
    }
    .feature8-img img {
        width: 68%;
        height: auto;
    }
    .feature8-img-des {
        width: 40%;
        margin-top: 0;
        transform: translate(-16%, 40%);
    }
    .feature9-img-flex2 {
        width: 80%;
    }
    .feature9-img3 {
        transform: translate(10%, -4%);
    }
    .feature9-img4 {
        transform: translate(-8%, 8%);
    }
    #customize {
        padding: 2rem 0;
    }
    /*--カスタマイズ事例_タブレット--*/
    #customize {
        padding: 0;
    }
    .customize-menu {
        width: 40%;
    }
    .customize-flex {
        width: 60%;
        flex-direction: column;
        justify-content: flex-start;
        margin-bottom: -6rem;
    }
    .customize-box {
        width: 100%;
        height: 40%;
    }
    /*--導入までの流れ_タブレット--*/
    #flow {
        padding: 2rem 0;
    }
    .flow-box {
        width: calc(50% - 2rem);
    }
    .flow-step {
        top: -28%;
    }
    .flow-img {
        width: 68px;
        height: 68px;
    }
    .flow-box:nth-child(2n):before {
        content: none;
    }
    /*--よくある質問_タブレット--*/
    #question {
        padding: 2rem 0;
    }
    .question-box {
        width: 80%;
    }
    /*--料金表_タブレット--*/
    #price {
        padding: 2rem 0;
    }
    .price-flex {
        flex-direction: column;
    }
    .table-wrapper {
        width: 90%;
        margin: 0 auto;
    }
    .price-table {
        width: 90%;
        margin: 0 auto 2rem;
    }
    .price-table td {
        vertical-align: middle;
    }
    /*--お問い合わせ_タブレット--*/
    .request-img-box {
        align-items: center;
        width: 50%;
    }
    .request-flex {
        flex-direction: column;
        margin-bottom: 4rem;
    }
    .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.05rem;
    }
    .section-title {
        font-size: 1.4rem;
        text-align: left;
        margin-bottom: 1rem;
    }
    .section-title br {
        display: block;
    }
    .header-nav #nav_toggle {
        top: 8px;
        right: 1rem;
    }
    .header-nav #nav_toggle_text {
        right: 24%;
    }
    .header-list {
        width: 100%;
    }
    .header-link {
        font-size: 1rem;
        padding: 1rem 0;
    }
    .header-option-link span {
        font-size: 1rem;
    }
    .site-title {
        width: 44%;
    }
    .sp-wrap {
        display: block;
    }
    /*--メインビジュアル_SP--*/
    .main-visual {
        height: 100%;
    }
    .main-visual::before {
        width: 112%;
        top: 48%;
    }
    .main-visual-flex {
        width: 100%;
        padding: 0 1rem;
    }
    .main-catch-copy {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    .main-visual-text-container {
        margin-bottom: 1rem;
    }
    .main-visual-point {
        width: 28vw;
        height: 28vw;
    }
    .main-visual-point p {
        font-size: 2.8vw;
    }
    .main-catch-copy-container {
        margin-bottom: 1rem;
    }
    .main-catch-copy-container img {
        width: 100%;
        max-width: 400px;
    }
    .main-visual-img-box {
        justify-content: center;
    }
    .main-visual-img-pc {
        width: 100%;
    }
    .main-visual-img-sp {
        width: 16%;
    }
    .main-visual-cta {
        margin-bottom: 2rem;
    }
    .main-customize {
        margin-bottom: 1rem;
    }
    .download-link {
        font-size: 1rem;
        padding: 1rem 4rem 1rem 3rem;
    }
    .cta-span {
        font-size: 1rem;
        margin-bottom: 0;
    }
    .cta-span::before {
        left: 16%;
    }
    .cta-span::after {
        right: 16%;
    }
    .download-link::before {
        right: 8%;
        width: 24px;
        height: 24px;
    }
    .download-link::after {
        right: 9%;
    }
    /*--お悩み_タブレット--*/
    .worry-flex {
        flex-wrap: wrap;
    }
    .worry-box {
        width: 100%;
        margin-left: 0;
        margin-bottom: 2rem;
    }
    .worry-img {
        margin-bottom: 3rem;
    }
    .worry-img img {
        margin-bottom: 1rem;
    }
    .worry-solution {
        height: auto;
        padding: 1rem;
    }
    .worry-solution p {
        font-size: .9rem;
    }
    .worry-solution::before {
        top: -2rem;
    }
    .worry-solution::after {
        content: none;
    }
    .point-flex {
        flex-direction: column;
    }
    .point-box {
        width: 100%;
        margin-bottom: 1rem;
    }
    /*--機能紹介_SP--*/
    .feature-point-box {
        width: 92%;
    }
    .feature-point-box:nth-child(2n+1) {
        margin-left: 1rem;
    }
    .feature-point-box:last-child {
        margin-bottom: 1rem;
    }
    .feature-tab-pc {
        display: none;
    }
    .feature-tab-sp {
        display: block;
    }
    .feature-tab-sp-flex {
        display: flex;
        justify-content: space-between;
        align-items: stretch;
        flex-wrap: wrap;
    }
    .feature-tab-sp-flex .feature-tab-item {
        width: calc(50% - 12px);
        margin-bottom: 12px;
    }
    .feature-point-des {
        height: auto;
    }
    .feature-point-number {
        top: -56%;
    }
    .feature2-img2 {
        width: 56%;
    }
    .feature4-img1 {
        width: 44%;
        transform: translateX(0);
    }
    .feature4-img2 {
        width: 56%;
        transform: translate(-4%, 8%);
    }
    .feature8-point-flex {
        flex-direction: column;
    }
    .feature-point-box.feature8 {
        width: 100%;
        margin-left: 0;
        margin-bottom: 2rem;
    }
    .feature-point-box.feature8:nth-child(2n+1) {
        margin-left: 0;
    }
    .feature-point-box.feature8:last-child {
        margin-bottom: 0;
    }
    .feature8 .feature-point-number {
        top: -40%;
        width: 52px;
        height: 52px;
    }
    .feature-point-number-sub {
        font-size: .6rem
    }
    .feature8-img {
        flex-direction: column;
    }
    .feature8-img img {
        width: 100%;
    }
    .feature8-img-des {
        width: 100%;
        transform: translate(0%, 0%);
    }
    /*--カスタマイズ_SP--*/
    #customize .section-title {
        margin-bottom: 2rem;
    }
    .customize-flex {
        width: 100%;
        margin-bottom: 0;
    }
    .customize-menu {
        display: none;
    }
    .customize-box {
        width: 100%;
        margin-bottom: 2rem;
    }
    .customize-box-number {
        top: -11%;
    }
    .option-title {
        display: block;
    }
    .normal {
        margin-left: 0;
    }
    .option {
        margin-left: 0;
    }
    .sp-btn {
        display: block;
    }
    /*--導入までの流れ_SP--*/
    .flow-box {
        width: 100%;
    }
    .flow-box::before {
        content: none;
    }
    .flow-box:last-child {
        margin-bottom: 2rem;
    }
    .flow-img {
        width: 60px;
        height: 60px;
        margin-bottom: 0;
    }
    .flow-text {
        text-align: center;
    }
    /*--よくある質問_SP--*/
    .question-box {
        width: 100%;
    }
    /*--料金表_SP--*/
    .table-wrapper {
        width: 100%;
    }
    .price-table {
        width: 100%;
    }
    /*--お問い合わせ_SP--*/
    #form-tab {
        padding: 2rem 0;
    }
    .tab-item {
        width: 140px;
        font-size: 1rem;
        padding: 12px;
    }
    .request-flex {
        margin-bottom: 2rem;
    }
    .request-title {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    .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;
    }
    .contact-link-box .form-link {
        padding: 8px 1rem;
    }
    /*--フッター_SP--*/
    .footer-wrapper {
        width: 88%;
        flex-direction: column;
        align-items: flex-start;
    }
    .site-logo {
        width: 44%;
        margin-bottom: 1rem;
    }
    .footer-info {
        margin-bottom: 1rem;
    }
    .copyright p {
        font-size: 2vw;
    }

}
/*-------------アニメーション------------------*/
.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%
    }
}