/* block */
.block-head {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 35px 0;
    text-align: center;
}
.block-head.blue {
    background-image: url(ttl-blue.jpg);
}
.block-head.black {
    background-image: url(ttl-black.jpg);
}
.block-head h2 {
    color: #FAEE56;
    font-size: 48px;
    font-weight: 700;
}
.block-head.black h2 {
    color: #fff;
}
@media screen and (max-width: 768px) {
    .block-head h2 {
        font-size: 32px;
    }
}

/* mv */
.mv {
    line-height: 0;
    position: relative;
}
.mv-btn {
    filter: drop-shadow(3px 3px 3px rgb(145 145 145 / 45%));
    position: absolute;
    left: 4.5vw;
    bottom: 8vw;
    width: 25vw;
    z-index: 1;
}
@media screen and (max-width: 768px) {
    .mv-btn {
        margin: auto;
        left: 0;
        right: 0;
        bottom: 8vw;
        width: 90%;
    }
}

/* service */
.service-body {
    background: #E5F0F3;
    padding: 85px 0;
}
.service-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    row-gap: 35px;
    margin: 0 auto;
    width: 90%;
    max-width: var(--main-column);
}
.service-item {
    background: #fff;
    border-radius: 40px 0 40px 0;
    filter: drop-shadow(4px 4px 4px rgb(145 145 145 / 45%));
    overflow: hidden;
}
.service-item__ttl {
    background: var(--main-theme-color);
    padding: 10px 0;
    text-align: center;
}
.service-item__ttl h3 {
    color: #fff;
    font-size: 23px;
    font-weight: 700;
}
.service-item__cont {
    background: #fff;
    padding: 20px;
}
.service-item__image {
    line-height: 0;
    margin: 0 0 10px;
}
.service-item__text p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.8em;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .service-body {
        padding: 45px 0;
    }
    .service-items {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .service-item__ttl h3 {
        font-size: 18px;
    }
}

/* price */
.price {
    background: url(price-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 85px 0;
}
.price-inner {
    margin: 0 auto;
    width: 90%;
    max-width: var(--sub-column);
}
.price-head {
    margin: 0 auto 65px;
    padding: 10px 0;
    position: relative;
    text-align: center;
    width: 100%;
}
.price-head::before {
    background: var(--main-theme-color);
    content: "";
    display: block;
    height: 100%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transform: skew(-15deg);
    width: 100%;
}
.price-head h2 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.price-card {
    background: #fff;
    border: 4px solid var(--main-theme-color);
    border-radius: 10px;
    padding: 45px;
}
.price-list,
.price-items {
    display: grid;
    gap: 25px;
}
.price-list__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.price-list__item dt {
    position: relative;
    text-align: center;
    width: 220px;
}
.price-list__item dt::before {
    background: var(--main-theme-color);
    content: "";
    display: block;
    height: 100%;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    transform: skew(-15deg);
    width: 100%;
}
.price-list__item dd {
    width: calc(100% - 245px);
}
.price-list__item dt p {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}
.price-list__item dd p {
    font-size: 31px;
    font-weight: 700;
}
.price-list__item dd p span {
    font-size: 21px;
    font-weight: 700;
}
.price-list__notice {
    font-size: 14px;
    font-weight: 600;
    margin: 20px 0 35px;
    text-align: right;
}
.price-item h3 {
    color: var(--main-theme-color);
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px;
}
.price-item h3::before {
    color: var(--main-theme-color);
    content: "▶︎";
    font-size: 34px;
    margin-right: 10px;
}
.price-item p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
    padding-left: 48px;
}
.price-information {
    background: #C0DEF4;
    border-radius: 10px;
    margin: 45px 0 0;
    padding: 25px;
}
.price-information h3 {
    color: var(--main-theme-color);
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 10px;
}
.price-information p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8em;
}
@media screen and (max-width: 768px) {
    .price {
        padding: 45px 0;
    }
    .price-head h2 {
        font-size: 32px;
    }
    .price-card {
        padding: 25px;
    }
    .price-list__item dt {
        width: 180px;
    }
    .price-list__item dd {
        margin: 10px 0 0;
        width: 100%;
    }
    .price-list__item dt p {
        font-size: 28px;
    }
    .price-list__item dd p {
        font-size: 16px;
    }
    .price-list__item dd p span {
        font-size: 12px;
    }
    .price-list__notice {
        font-size: 12px;
    }
    .price-item h3 {
        font-size: 28px;
    }
    .price-item h3::before {
        font-size: 26px;
    }
    .price-item p {
        font-size: 14px;
        padding-left: 35px;
    }
    .price-information {
        padding: 20px;
    }
    .price-information h3 {
        font-size: 28px;
    }
    .price-information p {
        font-size: 14px;
    }
}

/* area */
.area-body {
    background: #F2F2F2;
    padding: 85px 0;
}
.area-map,
.area-items,
.area-body h4,
.btn-wrap {
    margin: 0 auto;
    width: 90%;
    max-width: var(--main-column);
}
.area-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    row-gap: 45px;
    margin: 25px auto 45px;
}
.area-ttl {
    border-bottom: 2px dashed #000;
    font-size: 37px;
    font-weight: 700;
    margin: 0 0 10px;
    padding: 0 0 5px;
}
.area-txt {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.8em;
}
.area-body h4 {
    font-size: 24px;
    font-weight: 700;
    text-align: center;
}
.btn-wrap {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 45px auto 0;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .area-body {
        padding: 45px 0;
    }
    .area-items {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .area-ttl {
        font-size: 28px;
    }
    .area-txt {
        font-size: 14px;
    }
    .area-body h4 {
        font-size: 18px;
    }
    .btn-wrap {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* features */
.features-body {
    background: url(grid-bg.jpg) no-repeat;
    background-position: center;
    background-size: cover;
    padding: 85px 0;
}
.features-cards {
    display: grid;
    gap: 25px;
    margin: 0 auto;
    width: 90%;
    max-width: var(--main-column);
}
.features-card {
    background: #fff;
    border: 2px solid #B3B3B3;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 25px;
    position: relative;
}
.features-card:nth-child(even) {
    flex-direction: row-reverse;
}
.features-card__text {
    width: 45%;
}
.features-card__image {
    width: 50%;
}
.features-card__text h3 {
    background: var(--main-theme-color);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
    padding: 5px 0;
    text-align: center
}
.features-card__text p {
    font-size: 21px;
    font-weight: 700;
    line-height: 1.8em;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .features-body {
        padding: 45px 0;
    }
    .features-card {
        flex-direction: column-reverse;
        padding-top: 75px;
    }
    .features-card__text {
        margin: 15px 0 0;
        width: 100%;
    }
    .features-card__image {
        width: 100%;
    }
    .features-card__text h3 {
        font-size: 20px;
        margin: auto;
        position: absolute;
        top: 15px;
        left: 0;
        right: 0;
        width: calc(100% - 20px);
    }
    .features-card__text p {
        font-size: 14px;
    }
}

/* voice */
.voice-body {
    background: #fff;
    padding: 85px 0;
}
.voice-sliders {
    margin: 0 auto;
    width: 90%;
    max-width: var(--main-column);
}
.voice-slider {
    padding-bottom: 65px;
    position: relative;
}
.voice-slider__inner {
    align-items: stretch;
}
.voice-slide {
    background: #F2F2F2;
    height: auto;
    padding: 20px 20px 110px;
    position: relative;
    width: 480px;
}
.voice-slide__text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8em;
}
.voice-slide__user {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin: 10px 0 0;
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 100%;
}
.voice-slider__img {
    margin-right: 10px;
    width: 75px;
}
.voice-slider__ttl p {
    font-size: 18px;
    font-weight: 700;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 0;
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 10px;
}
.swiper-pagination-bullet {
    background: #fff;
    border: 2px solid #000;
    border-radius: 50%;
    height: 18px;
    opacity: 1;
    width: 18px;
}
.swiper-pagination-bullet-active {
    background: #000;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .voice-body {
        padding: 45px 0;
    }
    .voice-slider {
        padding-bottom: 0;
    }
    .voice-slide {
        width: 100%;
    }
    .voice-slider__inner {
        display: grid;
        gap: 20px;
    }
    .voice-slider__ttl p {
        font-size: 16px;
    }
    .swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        display: none;
    }
    .swiper-pagination {
        display: none !important;
    }
}

/* faq */
.faq-body {
    background: #fff;
    padding: 85px 0;
}
.faq-list {
    display: grid;
    gap: 20px;
    margin: 0 auto;
    width: 90%;
    max-width: var(--main-column);
}
.faq-list__item {
    border: 3px solid #f0f0f0;
}
.faq-list__item dt,
.faq-list__item dd {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 25px;
    position: relative;
}
.faq-list__item dt {
    background: #F0F0F0;
    padding-right: 45px;
}
.faq-list__item dd {
    background: #fff;
}
.faq-list__item dt .faq-icon,
.faq-list__item dd .faq-icon {
    height: 80px;
    margin-right: 20px;
    width: 80px;
}
.faq-list__item dt .faq-btn {
    height: 35px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 25px;
    width: 35px;
}
.faq-list__item.active dt .faq-btn {
    transform: rotate(45deg);
}
.faq-list__item dt .faq-btn::before,
.faq-list__item dt .faq-btn::after {
    background: #212A33;
    content: "";
    display: block;
    height: 35px;
    margin: auto;
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    top: 0;
    width: 2px;
}
.faq-list__item dt .faq-btn::after {
    transform: rotate(90deg);
}
.faq-list__item dt p,
.faq-list__item dd p {
    font-weight: 700;
    width: calc(100% - 100px);
}
.faq-list__item dt p {
    font-size: 24px;
}
.faq-list__item dd p {
    font-size: 18px;
    line-height: 1.8em;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
    .faq-body {
        padding: 45px 0;
    }
    .faq-list__item dt,
    .faq-list__item dd {
        padding: 20px;
    }
    .faq-list__item dt {
        padding-right: 45px;
    }
    .faq-list__item dt .faq-icon,
    .faq-list__item dd .faq-icon {
        height: 35px;
        margin-right: 12px;
        width: 35px;
    }
    .faq-list__item dt .faq-btn {
        height: 20px;
        right: 15px;
        width: 20px;
    }
    .faq-list__item dt .faq-btn::before,
    .faq-list__item dt .faq-btn::after {
        height: 20px;
    }
    .faq-list__item dt p,
    .faq-list__item dd p {
        width: calc(100% - 47px);
    }
    .faq-list__item dt p {
        font-size: 16px;
    }
    .faq-list__item dd p {
        font-size: 14px;
    }
}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}