@charset "UTF-8";

.reason-slider,
.packplan-slider {
    padding: 0 0 70px;
    position: relative;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.swiper-pagination-bullet {
    background: rgb(0 0 0 / 20%);
    height: 21px;
    margin: 0;
    width: 21px;
}

.swiper-pagination-bullet-active {
    background: #000;
}

@media screen and (max-width: 968px) {
    .swiper-pagination {
        gap: 10px;
    }

    .swiper-pagination-bullet {
        height: 18px;
        width: 18px;
    }
}

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

    .reason-slider,
    .packplan-slider {
        padding: 0 0 50px;
    }

    .swiper-pagination {
        gap: 8px;
    }

    .swiper-pagination-bullet {
        height: 10px;
        width: 10px;
    }
}

/* worries */
.worries {
    background: var(--main-theme-color);
    padding: 80px 0 90px;
}

.worries-inner {
    margin: 0 auto;
    position: relative;
    width: 92%;
    max-width: 1120px;
}

.worries-inner::before,
.worries-inner::after {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
    display: block;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
}

.worries-inner::before {
    background-image: url(../images/worries-bg1.png);
    height: 496px;
    left: -230px;
    width: 211px;
}

.worries-inner::after {
    background-image: url(../images/worries-bg2.png);
    height: 484px;
    right: -230px;
    width: 217px;
}

.worries-head {
    margin: 0 auto 45px;
    position: relative;
    text-align: center;
}

.worries-head::before,
.worries-head::after {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
}

.worries-head::before {
    background-image: url(../images/ilust1.png);
    height: 275px;
    top: -30px;
    left: 10px;
    width: 203px;
}

.worries-head::after {
    background-image: url(../images/ilust2.png);
    height: 229px;
    right: 10px;
    top: -15px;
    width: 167px;
}

.worries-head h2 span {
    color: #222;
    font-size: 37px;
    font-weight: 700;
}

.worries-head h2 p {
    color: #333;
    font-size: 56px;
    font-weight: 700;
}

.worries-body {
    background: #fff;
    border-radius: 6px;
    padding: 40px 0;
    margin-bottom: 3rem;
}

.worries-items {
    /* display: grid;
    grid-template-columns: repeat(2, 1fr); */
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    margin: 0 auto;
    width: 92%;
    max-width: 1000px;
}

.worries-item {
    background: #F5F5F5;
    border-radius: 6px;
    padding: 25px 10px 25px 25px;
    width: calc((100% - (20px * 1)) / 2);
}

.worries-items.upper .worries-item {
    align-items: center;
    padding: 16px 10px 16px 25px;
}

.worries-item p {
    justify-content: flex-start;
    align-items: center;
}

.worries-item .worries-txt {
    position: relative;
}

.worries-item h3 {
    font-size: 1.3rem;
}

.worries-txt span {
    position: relative;
    z-index: 2;
}

.worries-item .worries-txt::before {
    background: url(../images/icon-checkbox-g.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 88px;
    margin-right: 5px;
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0%, -50%);
    z-index: 1;
    opacity: 0.5;
}

.worries-item .worries-txt_02 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.worries-item .worries-txt_02::before {
    background: url(../images/icon-checkbox-g.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 22px;
    margin-right: 5px;
    width: 27px;
}

.worries-item p span {
    font-size: 16px;
    font-weight: 700;
    width: calc(100% - 32px);
}

@media screen and (max-width: 1168px) {
    .worries-head::before {
        height: 197px;
        top: -25px;
        left: -35px;
        width: 145px;
    }

    .worries-head::after {
        height: 155px;
        right: -25px;
        top: 0px;
        width: 120px;
    }

    .worries-head h2 span {
        font-size: 32px;
    }

    .worries-head h2 p {
        font-size: 42px;
    }
}

@media screen and (max-width: 968px) {
    .worries-head {
        margin: 0 auto 35px;
    }

    .worries-head h2 span {
        font-size: 28px;
    }

    .worries-head h2 p {
        font-size: 40px;
    }
}

@media screen and (max-width: 768px) {
    .worries {
        padding: 40px 0 90px;
    }

    .worries-head {
        margin: 0 auto 25px;
    }

    .worries-head h2 span {
        font-size: 21px;
    }

    .worries-head h2 p {
        font-size: 32px;
    }

    .worries-body {
        padding: 25px 0;
        margin-bottom: 2rem;
    }

    .worries-items {
        gap: 15px;
    }

    .worries-items.upper .worries-item {
        padding: 25px 10px 25px 10px;
    }

    .worries-item {
        width: 100%;
        padding: 25px 10px 25px 10px;
    }

    .worries-item p span {
        font-size: 14px;
    }
}

@media screen and (max-width: 568px) {
    .worries-head::before {
        height: 130px;
        top: 55px;
        left: -35px;
        width: 95px;
    }

    .worries-head::after {
        height: 106px;
        right: -25px;
        top: 65px;
        width: 82px;
    }

    .worries-item .worries-txt::before {
        background: url(../images/icon-checkbox-g.png) no-repeat;
        background-position: center;
        background-size: contain;
        content: "";
        display: block;
        height: 130px;
        margin-right: 5px;
        width: 270px;
        position: absolute;
        top: 68%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
        opacity: 0.2;
    }
}

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

    .worries-head::before,
    .worries-head::after {
        display: none;
    }
}

/* reason */
.reason {
    background: url(../images/triangel-bg-y.png) no-repeat;
    background-color: #F5F7FB;
    background-position: center bottom;
    background-size: cover;
    padding: 0 0 240px;
}

.reason-bottom__image {
    border-top: 3px dotted #222;
    margin: 50px 0 -240px;
    padding: 50px 0 0;
}

.reason-bottom__image img {
    margin: 0 auto;
    position: relative;
    left: -6%;
    width: 85%;
}

.reason-ttl {
    background: var(--sub-theme-color);
    padding: 48px 0 34px;
    position: relative;
    text-align: center;
}

.reason-ttl__eyecatch {
    background: #fff;
    border: 4px solid #222;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 3px 3px rgb(0 0 0 / 20%));
    height: 53px;
    margin: auto;
    padding: 0 20px;
    position: absolute;
    left: 0;
    right: 0;
    top: -30px;
    text-align: center;
    min-width: 355px;
    width: 100%;
    max-width: max-content;
}

.reason-ttl__eyecatch::after {
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #ffffff;
    border-bottom: 0;
    content: "";
    display: block;
    height: 0;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: -10px;
    width: 0;
}

.reason-ttl__eyecatch p {
    color: #222;
    font-size: 26px;
    font-weight: 700;
}

.reason-ttl h2 {
    color: #fff;
    font-size: 46px;
    font-weight: 700;
}

.reason-inner {
    margin: 0 auto;
    padding: 62px 0 0;
    width: 92%;
    max-width: 1616px;
}

.reason-head {
    margin: 0 auto;
    text-align: center;
}

.reason-head::after {
    background: #222;
    content: "";
    display: block;
    height: 4px;
    margin: 37px auto 93px;
    width: 132px;
}

.reason-head h3 span {
    color: #222;
    font-size: 37px;
    font-weight: 700;
}

.reason-head h3 p {
    color: #333;
    font-size: 56px;
    font-weight: 700;
}

.reason-head h3 p span {
    color: var(--sub-theme-color);
    font-size: 56px;
    font-weight: 700;
}

.reason-slide {
    background: #fff;
    border: 5px solid #222;
    border-radius: 10px;
    height: auto;
    padding: 30px;
    position: relative;
}

.reason-card__eyecatch {
    background: #fff;
    border: 4px solid #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 97px;
    position: absolute;
    left: -30px;
    top: -30px;
    width: 97px;
}

.reason-card__eyecatch::before {
    background: url(../images/reason-eyeatch.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 41px;
    position: absolute;
    left: -15px;
    right: 0;
    top: -25px;
    width: 111px;
}

.reason-card__eyecatch p {
    font-family: var(--ft-robo);
    font-size: 65px;
    font-weight: 700;
}

.reason-card__image {
    line-height: 0;
}

.reason-card__text {
    padding: 14px 0;
}

.reason-card__ttl {
    color: #222;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 14px;
    text-align: center;
}

.reason-card__ttl span {
    color: var(--accent-color);
}

.reason-card__txt {
    color: #222;
    font-size: 16.5px;
    font-weight: 300;
}

@media screen and (max-width: 1268px) {
    .reason-card__eyecatch {
        height: 70px;
        left: -25px;
        top: -25px;
        width: 70px;
    }

    .reason-card__eyecatch::before {
        width: 86px;
    }

    .reason-card__eyecatch p {
        font-size: 42px;
    }
}

@media screen and (max-width: 968px) {
    .reason-ttl {
        padding: 42px 0 30px;
    }

    .reason-ttl__eyecatch {
        height: 50px;
        padding: 0 20px;
        top: -25px;
        min-width: 300px;
    }

    .reason-ttl__eyecatch p {
        font-size: 21px;
    }

    .reason-ttl h2 {
        font-size: 32px;
    }

    .reason-head::after {
        height: 4px;
        margin: 30px auto 65px;
        width: 100px;
    }

    .reason-head h3 span {
        font-size: 28px;
    }

    .reason-head h3 p,
    .reason-head h3 p span {
        font-size: 42px;
    }

    .reason-sliders {
        padding-left: 25px;
    }

    .reason-slide {
        padding: 25px;
    }
}

@media screen and (max-width: 768px) {
    .reason-ttl {
        padding: 42px 0 30px;
    }

    .reason-ttl__eyecatch {
        min-width: 230px;
    }

    .reason-ttl__eyecatch p {
        font-size: 18px;
    }

    .reason-ttl h2 {
        font-size: 26px;
    }

    .reason-head h3 span {
        font-size: 21px;
    }

    .reason-head h3 p,
    .reason-head h3 p span {
        font-size: 32px;
    }

    .reason-slide {
        padding: 20px;
    }

    .reason-card__ttl {
        font-size: 20px;
    }

    .reason-card__txt {
        font-size: 14px;
    }

    .reason-bottom__image img {
        left: 0;
        width: 100%;
    }

    .reason {
        padding: 0 0 80px;
    }

    .home .reason {
        padding: 0 0 240px;
    }
}

/* point */
.point {
    background: #F5F7FB;
    padding: 128px 0 70px;
}

.point-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1200px;
}

.point-head {
    margin: 0 auto 38px;
    text-align: center;
}

.point-head h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 20px;
}

.point-head h2::after {
    background: url(../images/icon-search.svg) no-repeat;
    background-size: contain;
    background-position: center;
    content: "";
    display: block;
    height: 47px;
    margin-left: 20px;
    width: 47px;
}

.point-head h2 span {
    color: var(--sub-theme-color);
    font-size: 56px;
    font-weight: 700;
}

.point-head p {
    color: #333;
    font-size: 30px;
    font-weight: 700;
}

.point-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    padding: 0 0 87px;
}

.point-item {
    width: calc((100% - (20px * 2)) / 3);
}

@media screen and (max-width: 968px) {
    .point {
        padding: 70px 0;
    }

    .point-head h2::after {
        height: 40px;
        margin-left: 15px;
        width: 40px;
    }

    .point-head h2 span {
        font-size: 48px;
    }

    .point-head p {
        font-size: 26px;
    }

    .point-items {
        gap: 15px;
        padding: 0 0 50px;
    }

    .point-item {
        width: calc((100% - (15px * 2)) / 3);
    }
}

@media screen and (max-width: 768px) {
    .point {
        padding: 45px 0;
    }

    .point-head h2::after {
        height: 32px;
        margin-left: 12px;
        width: 32px;
    }

    .point-head h2 span {
        font-size: 32px;
    }

    .point-head p {
        font-size: 21px;
    }

    .point-items {
        flex-direction: column;
        padding: 0 0 30px;
    }

    .point-item {
        width: 100%;
    }
}

/* cta */
.cta {
    background: #fff;
    border-radius: 20px;
    filter: drop-shadow(0 4px 4px rgb(0 0 0 / 25%));
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
    max-width: 1120px;
}

.cta-head {
    background: #F25424;
    padding: 10px 0;
    text-align: center;
}

.cta-head h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.cta-body {
    margin: 0 auto;
    padding: 25px 0 35px;
    text-align: center;
    width: 92%;
    max-width: 845px;
}

.cta-tel {
    margin: 0 0 35px;
}

.cta-tel a {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-tel a::before {
    background: url(../images/freedial.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 56px;
    margin-right: 15px;
    width: 86px;
}

.cta-tel a span {
    color: #222;
    font-family: var(--ft-robo);
    font-size: 76px;
    font-weight: 700;
}

.tel-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.tel-time {
    font-size: 26px;
    font-weight: 500;
}

.tel-tags {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.tel-tag {
    background: #F1F1F1;
    border: 1px solid #00AA55;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 400;
    height: 33px;
    text-align: center;
    width: 157px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 50px;
}

.cta-btn {
    border-radius: 50px;
    height: 101px;
    width: calc((100% - (50px * 1)) / 2);
}

.cta-btn a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    padding: 20px;
    position: relative;
    width: 100%;
}

.cta-btn.contact {
    background: #FF9800;
}

.cta-btn.line {
    background: #06C755;
}

.cta-btn a::before {
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    content: "";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    margin-right: 15px;
    width: 65px;
}

.cta-btn.contact a::before {
    background-color: #FF6200;
    background-image: url(../images/icon-contact.svg);
    background-size: 34px;
}

.cta-btn.line a::before {
    background-color: #12A646;
    background-image: url(../images/icon-line.svg);
    background-size: 43px;
}

.cta-btn a::after {
    background: url(../images/icon-solid-arrow-r.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 15px;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 15px;
}

.cta-btn__txt {
    width: calc(100% - 80px);
    max-width: max-content;
}

.cta-btn__txt p {
    color: #fff;
}

.cta-btn__txt .big {
    font-size: 24px;
    font-weight: 900;
}

.cta-btn__txt .small {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
}

.cta-btn__txt .small::before,
.cta-btn__txt .small::after {
    background-color: #fff;
    content: "";
    display: block;
    flex-grow: 1;
    height: 1px;
}

.cta-btn__txt .small::before {
    margin-right: 20px;
}

.cta-btn__txt .small::after {
    margin-left: 20px;
}

@media screen and (max-width: 968px) {
    .cta-head h2 {
        font-size: 24px;
    }

    .cta-body {
        padding: 20px 0 25px;
    }

    .cta-tel {
        margin: 0 0 30px;
    }

    .cta-tel a::before {
        height: 37px;
        margin-right: 12px;
        width: 55px;
    }

    .cta-tel a span {
        font-size: 60px;
    }

    .tel-time {
        font-size: 21px;
    }

    .tel-tag {
        font-size: 16px;
        height: 30px;
        width: 120px;
    }

    .cta-btns {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .cta-btn {
        height: 80px;
        width: 100%;
        max-width: 500px;
    }
}

@media screen and (max-width: 768px) {
    .cta-head h2 {
        font-size: 18px;
    }

    .cta-tel {
        margin: 0 0 25px;
    }

    .cta-tel a::before {
        height: 21px;
        margin-right: 12px;
        width: 32px;
    }

    .cta-tel a span {
        font-size: 32px;
    }

    .tel-bottom {
        flex-direction: column;
        margin: 5px 0 0;
    }

    .tel-time {
        font-size: 16px;
    }

    .tel-tag {
        font-size: 16px;
        height: 26px;
        width: 120px;
    }

    .cta-btn a::before {
        height: 50px;
        margin-right: 12px;
        width: 50px;
    }

    .cta-btn.contact a::before {
        background-size: 28px;
    }

    .cta-btn.line a::before {
        background-size: 32px;
    }

    .cta-btn a::after {
        height: 12px;
        right: 15px;
        width: 12px;
    }

    .cta-btn__txt {
        width: calc(100% - 62px);
    }

    .cta-btn__txt .big {
        font-size: 20px;
    }

    .cta-btn__txt .small {
        font-size: 14px;
    }

    .cta-btn__txt .small::before {
        margin-right: 12px;
    }

    .cta-btn__txt .small::after {
        margin-left: 12px;
    }
}

@media screen and (max-width: 468px) {
    .cta-head h2 {
        font-size: 16px;
    }

    .cta-tel {
        margin: 0 0 20px;
    }

    .cta-tel a span {
        font-size: 28px;
    }

    .tel-time {
        font-size: 14px;
    }

    .tel-tag {
        font-size: 14px;
        height: 24px;
    }

    .cta-btn {
        height: 65px;
    }

    .cta-btn a {
        padding: 0 12px;
    }

    .cta-btn a::before {
        height: 40px;
        margin-right: 8px;
        width: 40px;
    }

    .cta-btn.contact a::before {
        background-size: 24px;
    }

    .cta-btn.line a::before {
        background-size: 28px;
    }

    .cta-btn a::after {
        height: 12px;
        right: 15px;
        width: 12px;
    }

    .cta-btn__txt {
        width: calc(100% - 48px);
    }

    .cta-btn__txt .big {
        font-size: 18px;
    }

    .cta-btn__txt .small {
        font-size: 12px;
    }

    .cta-btn__txt .small::before {
        margin-right: 10px;
    }

    .cta-btn__txt .small::after {
        margin-left: 10px;
    }
}

/* btn */
.btn {
    background: #F25424;
    border-radius: 50px;
    height: 80px;
    filter: drop-shadow(0 5px 1px rgb(242 84 36 / 50%));
    margin: 0 auto;
    width: 92%;
    max-width: 480px;
}

.btn a {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 700;
    height: 100%;
    position: relative;
    text-align: center;
    width: 100%;
}

.btn a::after {
    background: url(../images/icon-solid-arrow-r.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 16px;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 10px;
}

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

@media screen and (max-width: 768px) {
    .btn {
        height: 60px;
    }

    .btn a {
        font-size: 20px;
    }
}

/* block-head */
.block-head {
    position: relative;
}

.block-head.bg-yellow {
    background: var(--main-theme-color);
}

.block-head.bg-green {
    background: var(--sub-theme-color);
}

.block-head.coverbg {
    margin: 0 0 77px;
    padding: 70px 0 0;
}

.block-head.normal {
    padding: 45px 0;
}

.coverbg::before {
    background: #F5F7FB;
    content: "";
    display: block;
    height: 35%;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.block-head h2 {
    text-align: center;
}

.block-head h2 span {
    font-size: 37px;
    font-weight: 900;
}

.block-head h2 span.cr-g {
    color: var(--sub-theme-color);
}

.block-head h2 p {
    font-size: 56px;
    font-weight: 900;
}

.block-head h2 p span {
    color: var(--sub-theme-color);
    font-size: 56px;
    font-weight: 900;
}

.block-head h2 p span.small {
    color: #222;
    font-size: 37px;
}

.block-head.ft-w h2 span,
.block-head.ft-w h2 p,
.block-head.ft-w h2 p span {
    color: #fff;
}

.block-head h2::after {
    background: #222;
    content: "";
    display: block;
    height: 4px;
    margin: 35px auto 75px;
    width: 132px;
}

.block-head.normal h2::after {
    display: none;
}

.block-head.ft-w h2::after {
    background: #fff;
}

.block-head__txt {
    font-size: 17px;
    font-weight: 500;
    margin: 25px 0 0;
    text-align: center;
}

@media screen and (max-width: 968px) {
    .block-head.coverbg {
        margin: 0 0 45px;
        padding: 45px 0 0;
    }

    .coverbg::before {
        height: 35%;
    }

    .block-head h2 span {
        font-size: 28px;
    }

    .block-head h2 p,
    .block-head h2 p span {
        font-size: 42px;
    }

    .block-head h2::after {
        height: 3px;
        margin: 25px auto 50px;
        width: 100px;
    }
}

@media screen and (max-width: 768px) {
    .block-head h2 span {
        font-size: 21px;
    }

    .block-head h2 p,
    .block-head h2 p span {
        font-size: 24px;
    }

    .block-head__txt {
        font-size: 14px;
        margin: 20px 0 0;
    }
}

/* service */
.service {
    background: var(--main-theme-color);
    padding: 70px 0 100px;
}

.service-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1503px;
}

.service-ttl {
    background: var(--sub-theme-color);
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 78px;
    margin: 0 0 40px;
    text-align: center;
    width: 100%;
}

.service-ttl h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.service-cards {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.service-cards.big {
    gap: 10px;
    margin: 0 0 20px;
}

.service-cards.small {
    gap: 10px;
    padding: 0;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    filter: drop-shadow(0 10px 65px rgb(59 39 32 / 8%));
    overflow: hidden;
}

.service-cards.big .service-card {
    width: calc((100% - (10px * 4)) / 5);
}

.service-cards.small .service-card {
    width: calc((100% - (10px * 4)) / 5);
}

.service-card__ttl {
    background: var(--sub-theme-color);
    padding: 15px 0;
    text-align: center;
}

.service-card__ttl p {
    color: #fff;
    font-size: 18px;
    font-weight: 900;
}

.service-card__content {
    padding: 20px 18px;
}

.service-card__image {
    line-height: 0;
    margin: 0 auto 15px;
}

.service-cards.big .service-card__image {
    width: 157px;
}

.service-cards.small .service-card__image {
    width: 129px;
}

.service-card__text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8em;
}

@media screen and (max-width: 1268px) {
    .service-card__content {
        padding: 25px 20px;
    }
}

@media screen and (max-width: 968px) {
    .service {
        padding: 60px 0 150px;
    }

    .service-ttl {
        height: 60px;
        margin: 0 0 40px;
    }

    .service-ttl h3 {
        font-size: 24px;
    }

    .service-cards.big {
        margin: 0 0 25px;
    }

    .service-cards.small {
        gap: 10px;
        padding: 0 25px;
    }

    .service-cards.big .service-card {
        width: calc((100% - (10px * 1)) / 2);
    }

    .service-cards.small .service-card {
        width: calc((100% - (15px * 1)) / 2);
    }
}

@media screen and (max-width: 768px) {
    .service {
        padding: 45px 0 60px;
    }

    .service-ttl {
        margin: 0 0 15px;
    }

    .service-ttl h3 {
        font-size: 18px;
    }

    .service-cards.big {
        margin: 0 0 20px;
    }

    .service-cards.small {
        gap: 10px;
        padding: 0;
    }

    .service-cards.big .service-card {
        width: 100%;
    }

    .service-cards.small .service-card {
        width: 100%;
    }

    .service-card__ttl {
        padding: 12px 0;
    }

    .service-card__ttl p {
        font-size: 20px;
    }

    .service-card__content {
        padding: 25px 20px;
    }

    .service-cards.big .service-card__image {
        width: 90px;
    }

    .service-cards.small .service-card__image {
        width: 90px;
    }

    .service-card__text p {
        font-size: 14px;
    }
}

/* ctawrapper */
.ctawrapper {
    background: #F5F7FB;
    padding: 100px 0;
}

.ctawrapper.bg {
    background: var(--main-theme-color);
}

.ctawrapper.wf {
    background: #fff;
}

.ctawrapper-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

@media screen and (max-width: 968px) {
    .ctawrapper {
        padding: 65px 0;
    }
}

@media screen and (max-width: 768px) {
    .ctawrapper {
        padding: 45px 0;
    }
}

/* block-head__card */
.bhead-card {
    background: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 35px;
    margin: 0 auto;
    padding: 35px;
    position: relative;
    width: 92%;
    max-width: 1200px;
    z-index: 1;
}

.normal-bhead__card {
    margin-bottom: 75px;
    width: 100%;
}

.bhead-card__image,
.bhead-card__text {
    width: calc((100% - (35px * 1)) / 2);
}

.bhead-card__text ul {
    margin: 20px 0 0;
}

.bhead-card__text ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.bhead-card__text ul li::before {
    background: url(../images/icon-check-o.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 27px;
    margin-right: 10px;
    width: 27px;
}

.bhead-card__text ul li p {
    color: #333;
    font-size: 24px;
    font-weight: 700;
    width: calc(100% - 37px);
}

.bhead-card__text ul li p span {
    color: #F25424;
    font-size: 24px;
    font-weight: 700;
}

.bhead-card__image {
    line-height: 0;
}

.bhead-card__text h3 {
    font-size: 27px;
    font-weight: 700;
    margin: 0 0 10px;
}

.bhead-card__text h3 span {
    color: #F25424;
    font-size: 27px;
    font-weight: 700;
}

.bhead-card__text h3 span.g {
    color: var(--sub-theme-color);
}

.bhead-card__text p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8em;
}

@media screen and (max-width: 968px) {
    .bhead-card {
        flex-wrap: wrap;
        gap: 20px;
        padding: 25px;
    }

    .normal-bhead__card {
        margin-bottom: 45px;
    }

    .bhead-card__image,
    .bhead-card__text {
        width: 100%;
    }

    .bhead-card__text h3,
    .bhead-card__text h3 span {
        font-size: 21px;
    }

    .bhead-card__text p {
        font-size: 15px;
    }

    .bhead-card__text ul li::before {
        height: 20px;
        width: 20px;
    }

    .bhead-card__text ul li p {
        color: #333;
        font-size: 20px;
        width: calc(100% - 30px);
    }

    .bhead-card__text ul li p span {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .bhead-card__text ul li p {
        font-size: 18px;
    }
}

/* price */
.price {
    padding: 0 0 100px;
}

.price-head.block-head {
    margin-bottom: 40px;
}

.price-head.block-head.coverbg::before {
    height: 10%;
}

.price-head.price-head__collection h2 {
    margin-bottom: 45px;
}

.price-head.price-head__collection h2::after {
    display: none;
}

.price-body {
    margin: 0 auto;
    width: 92%;
    max-width: 1200px;
}

.price-cards {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.price-card {
    background: #fff;
    border: 4px solid var(--sub-theme-color);
    border-radius: 10px;
    filter: 0 4px 4px rgb(0 0 0 / 6%);
}

.price-card__head {
    background: var(--sub-theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    text-align: center;
    width: 100%;
}

.price-card__head h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
}

.price-card__content {
    padding: 23px 40px;
}

.price-card__items {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
}

.price-card__item {
    border-top: 1px dashed #dddddd;
    padding: 23px 30px 23px;
    width: calc(100% / 3);
}

.price-card__item:nth-child(3n+2) {
    border-left: 1px dashed #DDDDDD;
    border-right: 1px dashed #DDDDDD;
}

.price-card__item:nth-child(-n+3) {
    border-top: 0;
    padding-top: 0;
}

.price-card__item.blank {
    border-left: 0;
    border-right: 0;
}

.price-card__item.border {
    border-right: 1px dashed #dddddd;
}

.price-card__tag {
    border: 1px solid var(--sub-theme-color);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    margin: 0 auto;
    padding: 0 25px;
    min-width: 142px;
    width: 100%;
    max-width: max-content;
}

.price-card__tag p {
    color: var(--sub-theme-color);
    font-size: 20px;
    font-weight: 700;
}

.price-card__value {
    margin: 0 0 15px;
    text-align: center;
}

.price-card__value p .yen {
    font-size: 28px;
    font-weight: 700;
}

.price-card__value p .p {
    font-size: 48px;
    font-weight: 700;
}

.price-card__value p .tax {
    font-size: 17px;
    font-weight: 700;
}

.price-card__menu p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8em;
}

.price-notice {
    background: #fff;
    border: 4px solid var(--sub-theme-color);
    border-radius: 20px;
    filter: 0 4px 4px rgb(0 0 0 / 6%);
    margin: 40px 0;
    padding: 35px 0;
}

.price-notice__text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 92%;
    max-width: 843px;
}

.price-notice__text::before {
    background: url(../images/icon-attention.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 50px;
    margin-right: 20px;
    width: 50px;
}

.price-notice__text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8em;
    width: calc(100% - 70px);
}

@media screen and (max-width: 968px) {
    .price {
        padding: 0 0 60px;
    }

    .price-head.block-head.coverbg::before {
        height: 10%;
    }

    .price-cards {
        gap: 25px;
    }

    .price-card__head h3 {
        font-size: 18px;
    }

    .price-card__content {
        padding: 20px;
    }

    .price-card__items {
        justify-content: space-between;
    }

    .price-card__item {
        padding: 20px 20px 0;
        width: calc(100% / 2);
    }

    .price-card__item,
    .price-card__item:nth-child(3n+2),
    .price-card__item:nth-child(-n+3),
    .price-card__item.blank,
    .price-card__item.border {
        border: 0;
    }

    .price-card__item:nth-child(-n+3) {
        padding: 20px;
    }

    .price-card__item,
    .price-card__item:nth-child(-n+3),
    .price-card__item:nth-child(3n+2) {
        border-top: 1px dashed #ddd;
    }

    .price-card__item:nth-child(even) {
        border-left: 1px dashed #ddd;
    }

    .price-card__item:nth-child(-n+2) {
        border-top: 0;
        padding: 0 20px 20px;
    }

    .price-card__tag {
        height: 28px;
        padding: 0 15px;
        min-width: 142px;
    }

    .price-card__tag p {
        font-size: 18px;
    }

    .price-card__value {
        margin: 0 0 8px;
    }

    .price-card__value p .yen {
        font-size: 21px;
    }

    .price-card__value p .p {
        font-size: 32px;
    }

    .price-card__value p .tax {
        font-size: 15px;
    }

    .price-card__menu p {
        font-size: 15px;
    }

    .price-notice {
        margin: 25px 0;
        padding: 25px 0;
    }

    .price-notice__text::before {
        height: 40px;
        margin-right: 15px;
        width: 40px;
    }

    .price-notice__text p {
        font-size: 15px;
        width: calc(100% - 55px);
    }
}

@media screen and (max-width: 768px) {
    .price {
        padding: 0 0 45px;
    }

    .price-head.block-head {
        margin-bottom: 35px;
    }

    .price-card__content {
        padding: 20px 15px;
    }

    .price-card__item {
        border-top: 1px dashed #ddd;
        padding: 20px 5px;
        width: 100%;
    }

    .price-card__item,
    .price-card__item:nth-child(3n+2),
    .price-card__item:nth-child(-n+3),
    .price-card__item.blank,
    .price-card__item.border {
        border: 0;
        border-top: 1px dashed #ddd;
    }

    .price-card__item:nth-child(-n+3) {
        padding: 20px 5px;
    }

    .price-card__item,
    .price-card__item:nth-child(-n+3),
    .price-card__item:nth-child(3n+2),
    .price-card__item:nth-child(-n+2) {
        border-top: 1px dashed #ddd;
    }

    .price-card__item:nth-child(even) {
        border-left: 0;
    }

    .price-card__item:first-child {
        border-top: 0;
        padding-top: 0;
    }
}

/* packplan */
.packplan {
    background: var(--main-theme-color);
    padding: 70px 0 100px;
}

.packplan.nobg,
.page-id-149 .packplan {
    background: #F5F7FB;
}

.packplan-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1508px;
}

.packplan-text {
    background: #fff;
    border: 4px solid var(--sub-theme-color);
    border-radius: 10px;
    margin: 0 0 45px;
    padding: 25px 450px 25px 80px;
    position: relative;
}

.packplan-text::after {
    background: url(../images/track.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 155px;
    position: absolute;
    bottom: 25px;
    right: 100px;
    width: 325px;
}

.packplan-text p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.8em;
}

.packplan-text p span {
    color: var(--sub-theme-color);
    font-size: 24px;
    font-weight: 700;
}

.packplan-notice {
    background: #fff;
    border: 4px solid var(--sub-theme-color);
    border-radius: 20px;
    filter: 0 4px 4px rgb(0 0 0 / 6%);
    margin: 40px 0;
    padding: 35px 0;
}

.packplan-notice__text {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 92%;
}

.packplan-notice__text::before {
    background: url(../images/icon-attention.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 50px;
    margin-right: 20px;
    width: 50px;
}

.packplan-notice__text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8em;
    width: calc(100% - 70px);
}

.packplan-sliders {
    overflow: hidden;
}

.packplan-slide {
    background: #fff;
    border-radius: 20px;
    filter: drop-shadow(0 4px 4px rgb(0 0 0 / 8%));
    height: auto;
    overflow: hidden;
    width: 70%;
}

.packplan-slide__ttl {
    background: var(--sub-theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    text-align: center;
    width: 100%;
}

.packplan-slide__ttl p {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
}

.packplan-slide__image {
    line-height: 0;
    display: none;
}

.packplan-slide__text {
    padding: 25px;
}

.packplan-slide__txt {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 20px;
    text-align: center;
}

.packplan-slide__info {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 10px;
}

.packplan-slide__list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
}

.packplan-slide__list dd .kagosya {
    width: 50px;
    padding-left: 0.5rem;
}

.packplan-slide__list dd .keitora {
    width: 76px;
    padding-left: 0.5rem;
}

.packplan-slide__list dd .tra_1t {
    width: 76px;
    padding-left: 0.5rem;
}

.packplan-slide__list dd .tra_2t {
    width: 76px;
    padding-left: 0.5rem;
}

/*
.packplan-slide__info.upper .packplan-slide__list {
    width: calc((100% - (10px * 1)) / 2);
}
*/

.packplan-slide__list dt {
    background: #F5F5F5;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    height: 40px;
    margin-right: 12px;
    width: 85px;
}

.packplan-slide__list dd {
    font-size: 20px;
    font-weight: 300;
    width: calc(100% - (85px + 12px));
    display: flex;
    align-items: center;
}

.packplan-slide__price {
    margin: 10px 0 0;
}

.packplan-slide__price .packplan-slide__list dt {
    background: var(--main-theme-color);
    font-weight: 700;
}

.packplan-slide__price .packplan-slide__list dd .p {
    font-size: 28px;
    font-weight: 700;
}

.packplan-slide__price .packplan-slide__list dd .tax {
    font-size: 17px;
    font-weight: 700;
}

@media screen and (max-width: 1268px) {
    .packplan-text {
        margin: 0 0 35px;
        padding: 20px 350px 20px 25px;
    }

    .packplan-text::after {
        height: 132px;
        right: 50px;
        width: 275px;
    }

    .packplan-text p,
    .packplan-text p span {
        font-size: 18px;
    }
}

@media screen and (max-width: 968px) {
    .packplan {
        padding: 55px 0 75px;
    }

    .packplan-text {
        margin: 0 0 65px;
        padding: 20px 20px 95px 20px;
    }

    .packplan-text::after {
        height: 130px;
        right: 35px;
        bottom: -50px;
        width: 270px;
    }

    .packplan-notice {
        margin: 25px 0;
        padding: 25px 0;
    }

    .packplan-notice__text::before {
        height: 40px;
        margin-right: 15px;
        width: 40px;
    }

    .packplan-notice__text p {
        font-size: 15px;
        width: calc(100% - 55px);
    }
}

@media screen and (max-width: 768px) {
    .packplan {
        padding: 35px 0 45px;
    }

    .packplan-text {
        margin: 0 0 65px;
        padding: 20px 20px 45px 20px;
    }

    .packplan-text::after {
        height: 72px;
        right: 25px;
        bottom: -45px;
        width: 150px;
    }

    .packplan-text p,
    .packplan-text p span {
        font-size: 16px;
    }

    .packplan-slide {
        width: auto;
    }

    .packplan-slide__ttl {
        height: 50px;
    }

    .packplan-slide__ttl p {
        font-size: 18px;
    }

    .packplan-slide__text {
        padding: 20px;
        text-align: left;
    }

    .packplan-slide__txt {
        font-size: 18px;
        margin: 0 0 15px;
    }

    .packplan-slide__info.upper .packplan-slide__list {
        width: 100%;
    }

    .packplan-slide__list dt {
        font-size: 15px;
        height: 28px;
        margin-right: 10px;
        width: 60px;
    }

    .packplan-slide__list dd {
        font-size: 14px;
        width: calc(100% - (60px + 10px));
    }

    .packplan-slide__price .packplan-slide__list dd .p {
        font-size: 18px;
    }

    .packplan-slide__price .packplan-slide__list dd .tax {
        font-size: 12px;
    }
}

/* features */
.features {
    padding: 70px 0 0;
}

.features.collectionfeatures {
    background: #fff;
    padding: 100px 0;
}

.features-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1496px;
}

.features-cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 40px;
}

.features-card {
    background: var(--main-theme-color);
    border-radius: 10px;
    border: 4px solid var(--sub-theme-color);
    padding: 50px 25px 50px;
    text-align: center;
    width: calc((100% - (40px * 2)) / 3);
}

.features-card__image {
    height: 200px;
    line-height: 0;
}

.features-card:nth-child(1) .features-card__image img {
    width: 187px;
}

.features-card:nth-child(2) .features-card__image img {
    width: 193px;
}

.features-card:nth-child(3) .features-card__image img {
    width: 251px;
}

.features-card__text {
    margin: 20px 0 0;
}

.features-card__text p {
    font-size: 30px;
    font-weight: 700;
}

.features-btn {
    margin-top: 100px;
}

@media screen and (max-width: 968px) {
    .features.collectionfeatures {
        padding: 75px 0;
    }

    .features-cards {
        gap: 20px;
    }

    .features-card {
        padding: 35px 20px;
        width: calc((100% - (20px * 2)) / 3);
    }

    .features-card__image {
        height: 150px;
        line-height: 0;
    }

    .features-card:nth-child(1) .features-card__image img {
        width: 120px;
    }

    .features-card:nth-child(2) .features-card__image img {
        width: 130px;
    }

    .features-card:nth-child(3) .features-card__image img {
        width: 150px;
    }

    .features-card__text {
        margin: 15px 0 0;
    }

    .features-card__text p {
        font-size: 21px;
    }

    .features-btn {
        margin-top: 65px;
    }
}

@media screen and (max-width: 768px) {
    .features.collectionfeatures {
        padding: 45px 0;
    }

    .features-card {
        padding: 35px 20px 20px;
        width: 100%;
    }

    .features-card__image {
        height: auto;
    }

    .features-card:nth-child(1) .features-card__image img {
        width: 90px;
    }

    .features-card:nth-child(2) .features-card__image img {
        width: 100px;
    }

    .features-card:nth-child(3) .features-card__image img {
        width: 120px;
    }

    .features-btn {
        margin-top: 45px;
    }
}

/* collection */
.collection {
    padding: 0 0 270px;
}

.collection-head.block-head {
    margin-bottom: 40px;
}

.collection-body {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.collection-items {
    display: flex;
    flex-direction: column;
    gap: 45px;
}

.collection-item__ttl {
    background: var(--sub-theme-color);
    border-radius: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 78px;
    margin: 0 0 20px;
    padding: 0 20px 0 37px;
    width: 100%;
}

.collection-item__ttl h3 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
}

.collection-item__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.collection-item__image {
    line-height: 0;
    width: 356px;
}

.collection-item__text {
    width: calc(100% - (356px + 28px));
}

.collection-item__text h4 {
    color: #F25424;
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
}

.collection-item__text p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8em;
}

@media screen and (max-width: 968px) {
    .collection {
        padding: 0 0 100px;
    }

    .collection-items {
        gap: 35px;
    }

    .collection-item__ttl {
        height: 55px;
        margin: 0 0 15px;
        padding: 0 20px;
    }

    .collection-item__ttl h3 {
        font-size: 21px;
    }

    .collection-item__image {
        width: 250px;
    }

    .collection-item__text {
        width: calc(100% - (250px + 20px));
    }

    .collection-item__text h4 {
        font-size: 21px;
        margin: 0 0 10px;
    }

    .collection-item__text p {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .collection {
        padding: 0 0 50px;
    }

    .collection-items {
        gap: 35px;
    }

    .collection-item__ttl {
        height: auto;
        margin: 0 0 10px;
        padding: 12px 20px;
    }

    .collection-item__ttl h3 {
        font-size: 17px;
    }

    .collection-item__image {
        width: 100%;
    }

    .collection-item__text {
        margin: 20px 0 0;
        width: 100%;
    }

    .collection-item__text h4 {
        font-size: 18px;
    }

    .collection-item__text p {
        font-size: 14px;
    }
}

/* menu */
.menu {
    padding-bottom: 250px;
}

.menu-head.block-head {
    margin-bottom: 40px;
}

.menu-body {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.menu-items {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
}

.menu-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    width: calc((100% - (20px * 4)) / 5);
}

.menu-item__ttl {
    background: var(--sub-theme-color);
    padding: 15px 0;
    text-align: center;
}

.menu-item__ttl p {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.menu-item__image {
    line-height: 0;
}

.menu-item__text {
    padding: 20px;
}

.menu-item__text p {
    color: #333;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8em;
}

@media screen and (max-width: 968px) {
    .menu {
        padding-bottom: 100px;
    }

    .menu-items::before {
        order: 1;
    }

    .menu-items::before,
    .menu-items::after {
        content: "";
        display: block;
        width: calc((100% - (20px * 3)) / 4);
    }

    .menu-item {
        width: calc((100% - (20px * 3)) / 4);
    }
}

@media screen and (max-width: 768px) {
    .menu {
        padding-bottom: 50px;
    }

    .menu-items {
        gap: 15px;
    }

    .menu-items::before,
    .menu-items::after {
        display: none;
    }

    .menu-item {
        width: calc((100% - (15px * 2)) / 3);
    }

    .menu-item__text {
        padding: 14px;
    }
}

@media screen and (max-width: 768px) {
    .menu-item {
        width: calc((100% - (15px * 1)) / 2);
    }
}

/* flow */
.flow {
    background: url(../images/flow-bg.jpg) no-repeat;
    background-position: center top;
    background-size: cover;
    padding: 0 0 70px;
}

.flow-head.coverbg::before {
    background: url(../images/flow-bg.jpg) no-repeat;
    background-position: center top;
    background-size: cover;
}

.flow-body {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.flow-items {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 95px;
}

.flow-item {
    background: #fff;
    border-radius: 10px;
    padding: 24px;
    position: relative;
    width: calc((100% - (95px * 2)) / 3);
}

.flow-item:not(:last-child)::after {
    background: url(../images/flow-arrow.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 58px;
    margin: auto;
    position: absolute;
    right: calc(((95px / 2) + 24px) * -1);
    top: 0;
    bottom: 0;
    width: 48px;
}

.flow-eyecatch {
    height: 80px;
    line-height: 0;
    position: absolute;
    left: -15px;
    top: -12px;
    width: 80px;
}

.flow-item__image {
    line-height: 0;
}

.flow-item__text {
    padding: 20px 0;
}

.flow-item__text h3 {
    color: var(--sub-theme-color);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px;
}

.flow-item__text p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8em;
}

@media screen and (max-width: 968px) {
    .flow {
        padding: 0 0 50px;
    }

    .flow-body {
        overflow-x: auto;
        padding: 12px 0 0 15px;
    }

    .flow-items {
        gap: 95px;
        width: max-content;
    }

    .flow-item {
        padding: 15px;
        width: 250px;
    }

    .flow-eyecatch {
        height: 70px;
        left: -15px;
        top: -12px;
        width: 70px;
    }

    .flow-item__text {
        padding: 15px 0;
    }

    .flow-item__text h3 {
        font-size: 16px;
    }

    .flow-item__text p {
        font-size: 14px;
    }
}

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

/* tokyo */
.tokyo {
    padding-bottom: 120px;
}

.tokyo-head.block-head {
    margin-bottom: 40px;
}

.tokyo-body {
    margin: 0 auto;
    width: 92%;
    max-width: 1140px;
}

.tokyo-panels {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.tokyo-panel {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    padding: 0 0 45px;
}

.tokyo-panel__head {
    background: var(--sub-theme-color);
    padding: 25px 0;
    text-align: center;
}

.tokyo-panel__head h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

.tokyo-panel__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 50px 0 0;
    margin: 0 auto;
    width: 92%;
    max-width: 1000px;
}

.tokyo-checkpoint {
    border: 8px solid var(--sub-theme-color);
    border-radius: 10px;
    padding: 35px;
}

.tokyo-checkpoint ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.tokyo-checkpoint ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: calc((100% - (20px * 1)) / 2);
}

.tokyo-checkpoint ul li::before {
    background: url(../images/icon-check-g.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 19px;
    margin-right: 10px;
    width: 27px;
}

.tokyo-checkpoint ul li p {
    font-size: 24px;
    font-weight: 300;
}

.tokyo-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 15px 0;
}

.tokyo-list__item dt {
    color: var(--sub-theme-color);
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 5px;
}

.tokyo-list__item dd {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8em;
}

.tokyo-panel__content p {
    font-size: 18px;
    font-weight: 300;
    line-height: 1.8em;
}

@media screen and (max-width: 968px) {
    .tokyo {
        padding-bottom: 75px;
    }

    .tokyo-panels {
        gap: 35px;
    }

    .tokyo-panel {
        padding: 0 0 35px;
    }

    .tokyo-panel__head {
        padding: 20px 0;
    }

    .tokyo-panel__head h3 {
        font-size: 28px;
    }

    .tokyo-panel__content {
        padding: 35px 0 0;
    }

    .tokyo-checkpoint {
        padding: 25px;
    }

    .tokyo-checkpoint ul {
        gap: 15px;
    }

    .tokyo-checkpoint ul li {
        width: calc((100% - (15px * 1)) / 2);
    }

    .tokyo-checkpoint ul li p {
        font-size: 21px;
    }

    .tokyo-list__item dt {
        font-size: 16px;
    }

    .tokyo-list__item dd {
        font-size: 16px;
    }

    .tokyo-panel__content p {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    .tokyo-panel__head h3 {
        font-size: 24px;
    }

    .tokyo-checkpoint ul {
        gap: 5px;
    }

    .tokyo-checkpoint ul li {
        width: 100%;
    }

    .tokyo-checkpoint ul li p {
        font-size: 18px;
    }

    .tokyo-list {
        margin: 5px 0;
    }

    .tokyo-table {
        overflow-x: auto;
    }

    .tokyo-table .tokyo-table__image {
        width: 800px;
    }
}

/* attention */
.attention {
    background: var(--main-theme-color);
    padding: 85px 0;
}

.attention-inner {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.attention-text {
    width: 50%;
}

.attention-image {
    line-height: 0;
    width: calc(50% - 50px);
}

.attention-text h3 {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin: 0 0 20px;
}

.attention-text h3::before {
    background: url(../images/icon-attention-o.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 40px;
    width: 40px;
}

.attention-text h3 p {
    color: #F25424;
    font-size: 37px;
    font-weight: 700;
    line-height: 1;
    width: calc(100% - 40px);
}

.attention-text h3 p span {
    color: #F25424;
    font-size: 32px;
    font-weight: 700;
}

.attention-text p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8em;
}

@media screen and (max-width: 968px) {
    .attention {
        padding: 60px 0;
    }
}

@media screen and (max-width: 768px) {
    .attention {
        padding: 45px 0;
    }

    .attention-text {
        width: 100%;
    }

    .attention-image {
        margin: 0 0 25px;
        width: 100%;
    }

    .attention-text h3::before {
        height: 30px;
        width: 30px;
    }

    .attention-text h3 p {
        font-size: 28px;
        width: calc(100% - 30px);
    }

    .attention-text h3 p span {
        font-size: 21px;
    }

    .attention-text p {
        font-size: 14px;
    }
}

/* faq */
.faq {
    background: #F5F5F5;
    padding: 8rem 0 6rem;
}

.faq.bg-yellow {
    background: var(--main-theme-color);
}

.faq-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.faq-pickup {
    background: #fff;
    border: 3px solid var(--sub-theme-color);
    border-radius: 20px;
    padding: 67px 53px 43px;
    position: relative;
}

.faq-head {
    background: var(--sub-theme-color);
    border-radius: 50px;
    height: 86px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: calc((86px / 2) * -1);
    width: 100%;
    max-width: 710px;
}

.faq-head h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.faq-head h2::before {
    background: url(../images/icon-faq.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 44px;
    margin-right: 10px;
    width: 44px;
}

.faq-head h2 p {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    width: calc(100% - 54px);
    max-width: max-content;
}

.pagefaq .faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-pickup .faq-list__item {
    padding: 26px 0;
}

.pagefaq .faq-list__item {
    background: #fff;
    border: 4px solid var(--sub-theme-color);
    border-radius: 20px;
    padding: 26px;
}

.faq-pickup .faq-list__item:first-child {
    padding-top: 0;
}

.faq-pickup .faq-list__item:not(:last-child) {
    border-bottom: 2px solid var(--sub-theme-color);
}

.faq-list__item dt,
.faq-list__item dd {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
}

.faq-list__item dt {
    align-items: center;
    padding-bottom: 20px;
}

.faq-list__item dt::before,
.faq-list__item dd::before {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 66px;
    margin-right: 20px;
    width: 66px;
}

.faq-list__item dt::before {
    background-image: url(../images/icon-q.svg);
}

.faq-list__item dd::before {
    background-image: url(../images/icon-a.svg);
}

.faq-list__item dd {
    border-top: 2px dotted #BFBFBF;
    padding-top: 20px;
}

.faq-list__item dt p,
.faq-list__item dd p {
    width: calc(100% - 86px);
}

.faq-list__item dt p {
    font-size: 22px;
    font-weight: 700;
}

.faq-list__item dd p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8em;
}

.faq-list__item dd p span {
    color: #E95532;
}

.faq-btn {
    margin-top: 70px;
}

@media screen and (max-width: 968px) {
    .faq {}

    .faq-pickup {
        padding: 50px 35px 35px;
    }

    .faq-head {
        height: 65px;
        top: calc((65px / 2) * -1);
    }

    .faq-head h2::before {
        height: 35px;
        width: 35px;
    }

    .faq-head h2 p {
        font-size: 22px;
        width: calc(100% - 50px);
    }

    .faq-pickup .faq-list__item {
        padding: 20px 0;
    }

    .pagefaq .faq-list__item {
        padding: 20px;
    }

    .faq-list__item:not(:last-child) {
        border-bottom: 2px solid var(--sub-theme-color);
    }

    .faq-list__item dt::before,
    .faq-list__item dd::before {
        height: 50px;
        margin-right: 15px;
        width: 50px;
    }

    .faq-pickup .faq-list__item dt {
        padding-bottom: 15px;
    }

    .faq-pickup .faq-list__item dd {
        padding-top: 15px;
    }

    .faq-list__item dt p,
    .faq-list__item dd p {
        width: calc(100% - 65px);
    }

    .faq-list__item dt p {
        font-size: 18px;
    }

    .faq-list__item dd p {
        font-size: 15px;
    }

    .faq-btn {
        margin-top: 50px;
    }
}

@media screen and (max-width: 768px) {
    .faq {
        padding: 4rem 0 1rem;
    }

    .faq-pickup {
        padding: 55px 20px 30px;
    }

    .faq-head {
        height: auto;
        padding: 5px 0;
        width: 90%;
    }

    .faq-head h2::before {
        height: 30px;
        margin-right: 10px;
        width: 30px;
    }

    .faq-head h2 p {
        font-size: 18px;
        width: calc(100% - 40px);
    }

    .pagefaq .faq-list__item {
        padding: 15px;
    }

    .faq-list__item dt::before,
    .faq-list__item dd::before {
        height: 40px;
        margin-right: 12px;
        width: 40px;
    }

    .faq-list__item dt p,
    .faq-list__item dd p {
        width: calc(100% - 52px);
    }

    .faq-list__item dt p {
        font-size: 16px;
    }

    .faq-list__item dd p {
        font-size: 14px;
    }

    .faq-btn {
        margin-top: 35px;
        margin-bottom: 35px;
    }
}

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

    .faq-list__item dt::before,
    .faq-list__item dd::before {
        height: 40px;
        margin-right: 12px;
        width: 40px;
    }

    .faq-list__item dt p,
    .faq-list__item dd p {
        width: calc(100% - 52px);
    }

    .faq-list__item dt p {
        font-size: 16px;
    }

    .faq-list__item dd p {
        font-size: 14px;
    }

    .faq-btn {
        margin-top: 35px;
    }
}

/* corporate */
.corporate {
    padding: 140px 0 60px;
}

.corporate-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1140px;
}

.corporate-card {
    background: var(--sub-theme-color);
    border-radius: 20px;
    padding: 0 0 10px;
}

.corporate-head {
    padding: 25px 0;
    text-align: center;
}

.corporate-head h2 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

.corporate-body {
    background: #fff;
    border-radius: 0 0 10px 10px;
    margin: 0 auto;
    padding: 40px 40px 65px;
    width: calc(100% - 20px);
}

.corporate-body table,
.corporate-body .corporate-map {
    margin: 0 auto;
    width: 100%;
    max-width: 1036px;
}

.corporate-body table {
    background: #fff;
    border: 1px solid #838383;
    border-collapse: collapse;
}

.corporate-body table th,
.corporate-body table td {
    border: 1px solid #838383;
    border-right: 0;
    border-left: 0;
    font-size: 18px;
    font-weight: 300;
    padding: 8px;
}

.corporate-body table th {
    background: #F5F5F5;
    font-weight: 700;
    padding: 8px 20px;
    text-align: left;
}

.corporate-body .corporate-map {
    aspect-ratio: 16 / 6;
    margin-top: 25px;
}

@media screen and (max-width: 968px) {
    .corporate {
        padding: 100px 0 50px;
    }

    .corporate-head {
        padding: 20px 0;
    }

    .corporate-head h2 {
        font-size: 28px;
    }

    .corporate-body {
        padding: 20px 20px 35px;
    }

    .corporate-body table th {
        padding: 8px;
    }
}

@media screen and (max-width: 768px) {
    .corporate {
        padding: 0 0 45px;
    }

    .corporate-head h2 {
        font-size: 21px;
    }

    .corporate-body table th,
    .corporate-body table td {
        border: 0;
        border-bottom: 1px solid #838383;
        display: block;
        font-size: 16px;
    }

    .corporate-body table tr:last-child td {
        border-bottom: 0;
    }
}

/* pagefv */
.pagefv {
    background: url(../images/pagefv.jpg) no-repeat;
    background-position: center bottom;
    background-size: cover;
    height: 400px;
    width: 100%;
}

.pagefv-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    margin: 0 auto;
    width: 92%;
    max-width: 1200px;
}

.pagefv-inner h1,
.pagefv-inner h2 {
    font-size: 50px;
    font-weight: 900;
}

@media screen and (max-width: 968px) {
    .pagefv {
        height: 300px;
    }

    .pagefv-inner h1,
    .pagefv-inner h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 768px) {
    .pagefv {
        height: 160px;
    }

    .pagefv-inner h1,
    .pagefv-inner h2 {
        font-size: 28px;
    }
}

/* breadcrumb */
.breadcrumbs {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 55px;
    margin: 0 auto;
    overflow-x: auto;
    width: 92%;
    max-width: 1200px;
}

.breadcrumbs-item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: max-content;
    white-space: nowrap;
}

.breadcrumbs-item:not(:last-child)::after {
    color: var(--sub-theme-color);
    content: ">";
    display: block;
    font-size: 17px;
    font-weight: 700;
    margin: 0 5px;
}

.breadcrumbs-item a,
.breadcrumbs-item span,
.breadcrumbs-item a span {
    font-size: 17px;
}

.breadcrumbs-item span {
    color: #333;
    font-weight: 400;
}

.breadcrumbs-item a span {
    color: var(--sub-theme-color);
    font-weight: 700;
}

@media screen and (max-width: 768px) {
    .breadcrumbs {
        height: 45px;
    }

    .breadcrumbs-item a,
    .breadcrumbs-item span,
    .breadcrumbs-item a span {
        font-size: 14px;
    }
}

/* area */
.area {
    background: var(--main-theme-color);
    background-image: url(../images/tokyo-map.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 95%;
    padding: 100px 0;
}

.area.nobg {
    background-color: transparent;
}

.area.simple {
    background-image: none;
}

.area-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1200px;
}

.area-head {
    margin: 0 0 80px;
}

.area-head h2::after {
    display: none;
}

.area-topic {
    background: #fff;
    border-radius: 10px;
    margin: 0 0 90px;
    padding: 40px;
    position: relative;
}

.area.simple .area-topic {
    width: 100%;
    max-width: 680px;
}

.area-topic::after {
    background: url(../images/track-area.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 301px;
    position: absolute;
    bottom: 0;
    right: 40px;
    width: 502px;
}

.area.simple .area-topic::after {
    background-image: url(../images/area-eyecatch.png);
    height: 219px;
    margin: auto;
    right: -450px;
    top: 0;
    width: 219px;
}

.area-topic__text {
    padding-right: 520px;
}

.area.simple .area-topic__text {
    padding-right: 0;
}

.area-topic__text h3 {
    font-size: 28px;
    font-weight: 700;
}

.area.simple .area-topic__text h3 span {
    color: var(--sub-theme-color);
}

.area-topic__text h3 span {
    color: #F25424;
    font-size: 28px;
    font-weight: 700;
}

.area-topic__text p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.8em;
    margin: 20px 0 0;
}

.area-content {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.area-content__ttl {
    background: var(--sub-theme-color);
    padding: 20px 0;
    text-align: center;
}

.area-content__ttl h3 {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

.area-content__ttl h3 span {
    color: var(--main-theme-color);
    font-size: 40px;
    font-weight: 700;
}

.area-content .area-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 0 auto;
    padding: 45px 0;
    width: 92%;
    max-width: 804px;
}

.area-content .area-list li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.area-content .area-list li::before {
    background: url(../images/icon-arrow-circle-r-g.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 19px;
    margin-right: 5px;
    width: 19px;
}

.area-content .area-list li a {
    font-size: 20px;
    font-weight: 700;
}

@media screen and (max-width: 1268px) {
    .area-topic::after {
        height: 243px;
        width: 402px;
    }

    .area.simple .area-topic::after {
        right: -300px;
    }

    .area-topic__text {
        padding-right: 420px;
    }
}

@media screen and (max-width: 1068px) {
    .area.simple .area-topic::after {
        height: 180px;
        right: -200px;
        width: 180px;
    }
}

@media screen and (max-width: 968px) {
    .area {
        padding: 75px 0;
    }

    .area-head {
        margin: 0 0 50px;
    }

    .area-topic {
        margin: 0 0 60px;
        padding: 40px 40px 200px;
    }

    .area.simple .area-topic {
        width: 100%;
        max-width: none;
    }

    .area.simple .area-topic {
        padding-bottom: 40px;
    }

    .area-topic::after {
        height: 192px;
        right: 30px;
        width: 320px;
    }

    .area.simple .area-topic::after {
        height: 100px;
        top: -50px;
        right: -25px;
        bottom: inherit;
        width: 100px;
    }

    .area-topic__text {
        padding-right: 0;
    }

    .area-topic__text h3,
    .area-topic__text h3 span {
        font-size: 24px;
    }

    .area.simple .area-topic__text h3 {
        padding-right: 80px;
    }

    .area-topic__text p {
        font-size: 18px;
        margin: 15px 0 0;
    }

    .area-content__ttl {
        padding: 15px 0;
    }

    .area-content__ttl h3,
    .area-content__ttl h3 span {
        font-size: 32px;
    }

    .area-content .area-list {
        grid-template-columns: repeat(4, 1fr);
        padding: 35px 0;
    }

    .area-content .area-list li a {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .area {
        padding: 45px 0;
    }

    .area-head {
        margin: 0 0 35px;
    }

    .area-topic {
        margin: 0 0 45px;
    }

    .area-topic__text h3,
    .area-topic__text h3 span {
        font-size: 20px;
    }

    .area-topic__text p {
        font-size: 16px;
    }

    .area-content__ttl h3,
    .area-content__ttl h3 span {
        font-size: 26px;
    }

    .area-content .area-list {
        grid-template-columns: repeat(3, 1fr);
        padding: 25px 0;
    }

    .area-content .area-list li a {
        font-size: 16px;
    }
}

@media screen and (max-width: 568px) {
    .area-topic {
        padding: 25px 20px 110px;
    }

    .area-topic::after {
        height: 120px;
        right: 20px;
        bottom: -20px;
        width: 200px;
    }

    .area-content .area-list li a {
        font-size: 14px;
    }
}

/* banner */
.banner {
    background: #fff;
    padding: 130px 0 100px;
}

.banner-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1200px;
}

.banner-items {
    display: grid;
    grid-template-columns: 1fr;
}

.banner-item {
    line-height: 0;
}

@media screen and (max-width: 968px) {
    .banner {
        padding: 75px 0;
    }
}

@media screen and (max-width: 768px) {
    .banner {
        padding: 45px 0;
    }

    .banner-items {
        gap: 20px;
    }
}

/* voice */
.voice {
    background: #F5F7FB;
}

.voice-body {
    padding: 0 0 135px;
}

.voice-sliders {
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: 1120px;
}

.voice-sliders .swiper-button-next,
.voice-sliders .swiper-button-prev {
    background: rgb(131 131 131 / 27%);
    border-radius: 50%;
    height: 76px;
    width: 76px;
}

.voice-sliders .swiper-button-next,
.voice-sliders .swiper-rtl .swiper-button-prev {
    right: -35px;
}

.voice-sliders .swiper-button-prev,
.voice-sliders .swiper-rtl .swiper-button-next {
    left: -35px;
}

.voice-sliders .swiper-button-next:after,
.voice-sliders .swiper-button-prev:after {
    color: #fff;
    font-size: 20px;
}

.voice-slide {
    background: #fff;
    border-radius: 20px;
    padding: 80px 88px 65px;
    width: 1120px;
}

.voice-slide__text {
    margin: 0 0 35px;
}

.voice-slide__text h4 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 0 0 25px;
}

.voice-slide__text h4 .tag {
    background: #fff;
    border: 1px solid #F25424;
    border-radius: 3px;
    color: #F25424;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    height: 31px;
    margin-right: 15px;
    text-align: center;
    width: 89px;
}

.voice-slide__text h4 p {
    font-size: 26px;
    font-weight: 700;
    width: calc(100% - 114px);
}

.voice-slide__txt p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.8em;
}

.voice-slide__txt p strong {
    color: #F25424;
    font-weight: 700;
}

.voice-slide__images {
    background: url(../images/beforeafter-arrow.png) no-repeat;
    background-position: center;
    background-size: 35px;
    border-bottom: 2px dotted #C7C7C7;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 0 0 65px;
}

.voice-slide__image {
    position: relative;
    width: calc((100% - (60px * 1)) / 2);
}

.voice-slide__image.before {
    border: 5px solid #41A9A5;
}

.voice-slide__image.after {
    border: 5px solid #F5253E;
}

.voice-slide__img {
    line-height: 0;
}

.voice-slide__tag {
    background-position: center;
    background-repeat: no-repeat;
    background-size: 107px;
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 47px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(((47px / 2) * -1) - 2px);
    width: 235px;
}

.voice-slide__image.before .voice-slide__tag {
    background-color: #41A9A5;
    background-image: url(../images/before.svg);
}

.voice-slide__image.after .voice-slide__tag {
    background-color: #F5253E;
    background-image: url(../images/after.svg);
}

.voice-btn {
    margin: 100px auto 0;
}

@media screen and (max-width: 1268px) {
    .voice-slide {
        padding: 50px 45px 80px;
        width: 930px;
    }
}

@media screen and (max-width: 968px) {
    .voice-body {
        padding: 0 0 85px;
    }

    .voice-sliders .swiper-button-next,
    .voice-sliders .swiper-button-prev {
        height: 60px;
        width: 60px;
    }

    .voice-sliders .swiper-button-next,
    .voice-sliders .swiper-rtl .swiper-button-prev {
        right: 20px;
    }

    .voice-sliders .swiper-button-prev,
    .voice-sliders .swiper-rtl .swiper-button-next {
        left: 20px;
    }

    .voice-sliders .swiper-button-next:after,
    .voice-sliders .swiper-button-prev:after {
        font-size: 14px;
    }

    .voice-slide {
        padding: 45px 35px 60px;
        width: auto;
    }

    .voice-slide__text {
        margin: 0 0 25px;
    }

    .voice-slide__text h4 {
        margin: 0 0 20px;
    }

    .voice-slide__text h4 .tag {
        font-size: 14px;
        height: 28px;
        margin-right: 12px;
        width: 75px;
    }

    .voice-slide__text h4 p {
        font-size: 21px;
        width: calc(100% - 87px);
    }

    .voice-slide__txt p {
        font-size: 15px;
    }

    .voice-btn {
        margin: 65px auto 0;
    }
}

@media screen and (max-width: 768px) {
    .voice-body {
        padding: 0 0 65px;
    }

    .voice-slide {
        padding: 35px 25px 45px;
    }

    .voice-slide__text h4 {
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .voice-slide__text h4 .tag {
        font-size: 14px;
        height: 28px;
        margin-right: 0;
        margin: 0 0 5px;
        width: 75px;
    }

    .voice-slide__text h4 p {
        font-size: 21px;
        width: 100%;
    }

    .voice-slide__images {
        background: none;
        flex-direction: column;
        gap: 90px;
        position: relative;
    }

    .voice-slide__images::after {
        background: url(../images/beforeafter-arrow.png) no-repeat;
        background-position: center;
        background-size: contain;
        content: "";
        display: block;
        height: 35px;
        margin: auto;
        position: absolute;
        left: 0;
        right: 0;
        bottom: -20px;
        top: 0;
        transform: rotate(90deg);
        width: 35px;
    }

    .voice-slide__image {
        width: 100%;
    }

    .voice-slide__image.before {
        border: 3px solid #41A9A5;
    }

    .voice-slide__image.after {
        border: 3px solid #F5253E;
    }

    .voice-slide__tag {
        background-size: 80px;
        height: 47px;
        bottom: calc(((47px / 2) * -1) - 2px);
        width: 155px;
    }

    .voice-btn {
        margin: 20px auto 0;
    }
}

/* recycle */
.recycle-head.block-head {
    margin-bottom: 40px;
}

.recycle-body {
    margin: 0 auto;
    padding: 0 0 100px;
    width: 92%;
    max-width: 1200px;
}

.recycle-items {
    display: flex;
    flex-direction: column;
    gap: 123px;
}

.recycle-item {
    position: relative;
}

.recycle-item.top {
    background: #fff;
    border-radius: 20px;
    padding: 35px 40px 45px 30px;
}

.recycle-item.bottom {
    background: #E7F2EB;
    border-radius: 10px;
    margin: 0 auto;
    padding: 35px 45px;
    width: calc(100% - 40px);
}

.recycle-item.top::after {
    background: url(../images/triangel-d-g.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 40px;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: calc(((123px / 2) + 20px) * -1);
    width: 74px;
}

.recycle-item__ttl {
    margin: 0 0 25px;
    text-align: center
}

.recycle-item__ttl h3 {
    color: #12A646;
    font-size: 33px;
    font-weight: 700;
}

.recycle-item__flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.recycle-item.top .recycle-item__image {
    width: 350px;
}

.recycle-item.top .recycle-item__text {
    width: calc(100% - 450px);
}

.recycle-item.bottom .recycle-item__image {
    width: 442px;
}

.recycle-item.bottom .recycle-item__text {
    width: calc(100% - 550px);
}

.recycle-item__text h3 {
    color: #F25424;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px;
}

.recycle-item__text p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8em;
}

@media screen and (max-width: 968px) {
    .recycle-body {
        padding: 0 0 60px;
    }

    .recycle-items {
        gap: 123px;
    }

    .recycle-item.top {
        padding: 30px 20px;
    }

    .recycle-item.bottom {
        padding: 30px 20px;
    }

    .recycle-item.top::after {
        height: 40px;
        bottom: calc(((123px / 2) + 20px) * -1);
        width: 74px;
    }

    .recycle-item__ttl {
        margin: 0 0 20px;
    }

    .recycle-item__ttl h3 {
        font-size: 26px;
    }

    .recycle-item__flex {
        flex-wrap: wrap;
    }

    .recycle-item.top .recycle-item__image {
        width: 200px;
    }

    .recycle-item.top .recycle-item__text {
        width: calc(100% - 250px);
    }

    .recycle-item.bottom .recycle-item__image {
        width: 300px;
    }

    .recycle-item.bottom .recycle-item__text {
        width: calc(100% - 350px);
    }

    .recycle-item__text h3 {
        font-size: 24px;
        margin: 0 0 15px;
    }

    .recycle-item__text p {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .recycle-head.block-head {
        margin-bottom: 25px;
    }

    .recycle-body {
        padding: 0 0 45px;
    }

    .recycle-items {
        gap: 90px;
    }

    .recycle-item.top {
        padding: 30px 20px;
    }

    .recycle-item.bottom {
        padding: 30px 20px;
    }

    .recycle-item.top::after {
        height: 30px;
        bottom: calc(((90px / 2) + 15px) * -1);
        width: 56px;
    }

    .recycle-item__ttl h3 {
        font-size: 23px;
    }

    .recycle-item.top .recycle-item__text,
    .recycle-item.bottom .recycle-item__text {
        width: 100%;
    }

    .recycle-item.top .recycle-item__image,
    .recycle-item.bottom .recycle-item__image {
        margin: 25px auto 0;
        width: 85%;
    }

    .recycle-item__text h3 {
        font-size: 21px;
    }

    .recycle-item__text p {
        font-size: 14px;
    }
}

/* areacontent */
.areacontent {
    background: var(--main-theme-color);
    padding: 75px 0 95px;
}

.areacontent.nobg {
    background: #fff;
}

.areacontent-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.areacontent-head.block-head {
    margin: 0 0 40px;
}

.areacontent-head h2::after {
    display: none;
}

.areacontent-head h2 span {
    color: var(--sub-theme-color);
}

@media screen and (max-width: 968px) {
    .areacontent-card {
        flex-wrap: wrap;
        gap: 20px;
        padding: 25px;
    }

    .areacontent-card__image,
    .areacontent-card__text {
        width: 100%;
    }

    .areacontent-card__text h3 {
        font-size: 21px;
    }

    .areacontent-card__text p {
        font-size: 15px;
    }
}

@media screen and (max-width: 768px) {
    .areacontent {
        padding: 40px 0 40px;
    }
}

/* comparison */
.comparison {
    padding: 120px 0 100px;
}

.comparison-inner {
    line-height: 0;
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

@media screen and (max-width: 968px) {
    .comparison {
        padding: 75px 0 50px;
    }
}

@media screen and (max-width: 768px) {
    .comparison {
        padding: 50px 0 25px;
    }
}

/* blockname */
.card {
    background: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 35px;
    margin: 0 auto;
    padding: 35px;
    position: relative;
    width: 100%;
    max-width: 1200px;
    z-index: 1;
}

.areacontent.nobg .card {
    background: #F5F7FB;
}

.reason-body .card {
    padding: 0;
    border-left: 20px solid #12A646;
    align-items: center;
}

.card-text {
    padding: 30px;
}

.card-image,
.card-text {
    width: calc((100% - (35px * 1)) / 2);
}

.card-image {
    line-height: 0;
}

.reason-body .card .card-image img {
    border-radius: 0 20px 20px 0;
}

.card-text h3 {
    color: var(--sub-theme-color);
    font-size: 27px;
    font-weight: 700;
    margin: 0 0 10px;
}

.card-text p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8em;
}

@media screen and (max-width: 968px) {
    .card {
        flex-wrap: wrap;
        gap: 20px;
        padding: 25px;
    }

    .card-image,
    .card-text {
        width: 100%;
    }

    .card-text h3 {
        font-size: 21px;
    }

    .card-text p {
        font-size: 15px;
    }
}

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

    .reason-body .card .card-image img {
        border-radius: 0 0 20px 0;
    }

    .areacontent-body .card-text {
        padding: 14px;
    }
}

/* staffintro */
.staffintro {
    background: var(--main-theme-color);
    padding: 80px 0 70px;
}

.staffintro.collectionstaff {
    background: none;
}

.staffintro-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.staffintro.collectionstaff .staffintro-inner {
    width: 100%;
    max-width: none;
}

.staffintro-head.block-head {
    margin: 0 0 100px;
}

.staffintro.collectionstaff .staffintro-head.block-head {
    background: var(--sub-theme-color);
    padding: 45px 0;
}

.staffintro-head h2::after {
    display: none;
}

.staffintro.collectionstaff .staffintro-head.block-head h2,
.staffintro.collectionstaff .staffintro-head.block-head h2 span,
.staffintro.collectionstaff .staffintro-head.block-head h2 p {
    color: #fff;
}

.staffintro.collectionstaff .staffintro-body {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.stafflist-wrapper {
    margin: 35px 0 0;
}

.stafflist {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 26px;
}

.stafflist-card {
    background: #fff;
    border-radius: 13px;
    overflow: hidden;
    width: calc((100% - (26px * 2)) / 3);
}

.stafflist-card__head {
    background: var(--sub-theme-color);
    padding: 15px 25px;
    text-align: center;
}

.stafflist-card__head p {
    color: #fff;
    font-size: 17px;
    font-weight: 700;
}

.stafflist-card__head p span {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-left: 20px;
}

.stafflist-card__image {
    line-height: 0;
    padding: 20px;
}

.stafflist-card__text {
    padding: 0 20px 20px;
}

.stafflist-card__ttl {
    color: var(--sub-theme-color);
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 15px;
    text-align: center;
}

.stafflist-card__txt {
    font-size: 11px;
    font-weight: 300;
    line-height: 1.8em;
}

.staff-btn {
    margin-top: 80px;
}

@media screen and (max-width: 968px) {
    .staffintro {
        padding: 60px 0 50px;
    }

    .staffintro-head.block-head {
        margin: 0 0 65px;
    }

    .stafflist-wrapper {
        margin: 25px 0 0;
    }

    .stafflist {
        gap: 15px;
    }

    .stafflist-card {
        width: calc((100% - (15px * 2)) / 3);
    }

    .stafflist-card__head {
        padding: 12px 10px 12px 20px;
    }

    .stafflist-card__head p {
        font-size: 16px;
    }

    .stafflist-card__head p span {
        font-size: 13px;
        margin-left: 10px;
    }

    .stafflist-card__image {
        padding: 12px;
    }

    .stafflist-card__text {
        padding: 0 12px 12px;
    }

    .stafflist-card__ttl {
        font-size: 14px;
    }

    .staff-btn {
        margin-top: 60px;
    }
}

@media screen and (max-width: 768px) {
    .staffintro {
        padding: 45px 0 35px;
    }

    .staffintro-head.block-head {
        margin: 0 0 45px;
    }

    .stafflist-wrapper {
        margin: 25px 0 0;
        overflow-x: auto;
    }

    .stafflist {
        gap: 15px;
        width: max-content;
    }

    .stafflist-card {
        width: 300px;
    }

    .staff-btn {
        margin-top: 45px;
    }
}

/* work */
.work {
    background: var(--main-theme-color);
    padding: 70px 0 95px;
}

.work-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1196px;
}

.work-body {
    padding-top: 50px;
}

.work-sliders {
    position: relative;
}

.work-sliders .swiper-button-next,
.work-sliders .swiper-button-prev {
    background: #333;
    border-radius: 50%;
    height: 60px;
    width: 60px;
}

.work-sliders .swiper-button-next,
.work-sliders .swiper-rtl .swiper-button-prev {
    right: -80px;
}

.work-sliders .swiper-button-prev,
.work-sliders .swiper-rtl .swiper-button-next {
    left: -80px;
}

.work-sliders .swiper-button-next:after,
.work-sliders .swiper-button-prev:after {
    color: #fff;
    font-size: 12px;
}

.work-slide {
    background: #fff;
    border-radius: 20px;
    height: auto;
    opacity: .8;
    width: 1196px;
}

.work-slide.swiper-slide-active {
    opacity: 1;
    position: relative;
    transform: translateY(-50px);
}

.work-slide.swiper-slide-active::after {
    content: "※上記は目安の料金であり、リサイクルの可否、回収品の状態・量・サイズ、作業内容などによって実際のお見積もりは異なります。";
    font-size: 14px;
    font-weight: bold;
    height: 55px;
    position: absolute;
    right: 0;
    left: 0;
    bottom: -65px;
    text-align: left;
    width: 100%;
}

.work-slide__head {
    background: var(--sub-theme-color);
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 25px;
}

.work-slide__case {
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90px;
    margin-right: 20px;
    width: 90px;
}

.work-slide__case p {
    color: var(--sub-theme-color);
    font-family: var(--ft-robo);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
}

.work-slide__case p span {
    color: var(--sub-theme-color);
    display: block;
    font-family: var(--ft-robo);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.work-slide__ttl {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    width: calc(100% - 110px);
}

.work-slide__body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 45px;
}

.work-slide__left {
    width: 45%;
}

.work-slide__right {
    position: relative;
    width: 50%;
}

.work-slide__right::after {
    background: url(../images/delivery-illust.png) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 189px;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 179px;
}

.work-slide__subttl {
    margin: 0 0 10px;
}

.work-slide__subttl p {
    font-size: 27px;
    font-weight: 700;
}

.work-slide__subttl p span {
    font-size: 17px;
    font-weight: 700;
    margin-left: 10px;
}

.work-slide__infolist {
    border: 3px solid var(--sub-theme-color);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin: 0 0 20px;
    overflow: hidden;
}

.work-infolist__item {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 50%;
}

.work-infolist__item dt {
    background: var(--sub-theme-color);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 12px;
    width: 55%;
}

.work-infolist__item dd {
    font-size: 18px;
    font-weight: 700;
    padding: 12px;
    width: 45%;
}

.work-slide__notice {
    color: #F25424;
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}

.work-slide__columns {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 45px;
}

.work-slide__column {
    margin: 0 0 10px;
    width: calc((100% - (45px * 1)) / 2);
}

.work-slide__column,
.work-slide__total,
.work-slide__voice,
.work-slide__comment {
    border: 3px solid var(--sub-theme-color);
    border-radius: 10px;
    overflow: hidden;
}

.work-slide__triangel {
    background: url(../images/triangel-d-g.png) no-repeat;
    background-position: center;
    background-size: contain;
    display: block;
    height: 19px;
    margin: -5px auto 25px;
    width: 36px;
}

.work-slide__total {
    margin: 0 0 20px;
}

.work-slide__comment {
    margin: -50px 0 0 40px;
    position: relative;
    width: calc(100% - 230px);
}

.work-column__head,
.work-total__head,
.work-voice__head,
.work-comment__head {
    background: var(--sub-theme-color);
    padding: 10px 0;
    text-align: center;
}

.work-column__head {
    padding: 8px 0;
}

.work-column__head p,
.work-total__head p,
.work-voice__head p,
.work-comment__head p {
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.work-column__head p {
    font-size: 20px;
}

.work-column__content {
    padding: 8px 0;
    text-align: center;
}

.work-total__content {
    padding: 12px 0;
    text-align: center;
}

.work-voice__content {
    padding: 15px 20px;
}

.work-comment__content {
    padding: 10px;
}

.work-column__content p .yen {
    font-size: 20px;
    font-weight: 700;
}

.work-column__content p .tax {
    font-size: 13px;
    font-weight: 700;
}

.work-total__content p .yen {
    color: #F25424;
    font-size: 40px;
    font-weight: 700;
}

.work-total__content p .tax {
    color: #F25424;
    font-size: 22px;
    font-weight: 700;
}

.work-voice__content p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.8em;
}

.work-comment__content p {
    font-size: 17px;
    font-weight: 500;
    line-height: 1.8em;
}

.work-btn {
    margin-top: 20px;
}

@media screen and (max-width: 1268px) {
    .work-sliders {
        margin: 0 auto;
        width: 100%;
        max-width: 850px;
    }

    .work-sliders .swiper-button-next,
    .work-sliders .swiper-rtl .swiper-button-prev {
        right: -50px;
    }

    .work-sliders .swiper-button-prev,
    .work-sliders .swiper-rtl .swiper-button-next {
        left: -50px;
    }

    .work-slide {
        width: 850px;
    }

    .work-slide__head {
        padding: 15px 20px;
    }

    .work-slide__case {
        height: 70px;
        margin-right: 15px;
        width: 70px;
    }

    .work-slide__case p {
        font-size: 24px;
    }

    .work-slide__case p span {
        font-size: 10px;
    }

    .work-slide__ttl {
        font-size: 21px;
        width: calc(100% - 85px);
    }

    .work-slide__body {
        align-items: stretch;
        padding: 20px 25px;
    }

    .work-slide__left {
        width: 50%;
    }

    .work-slide__right {
        width: 45%;
    }

    .work-slide__right::after {
        height: 159px;
        width: 150px;
    }

    .work-slide__subttl p {
        font-size: 21px;
    }

    .work-slide__subttl p span {
        font-size: 14px;
    }

    .work-infolist__item dt {
        font-size: 16px;
        padding: 12px 10px;
    }

    .work-infolist__item dd {
        font-size: 16px;
        padding: 12px 8px;
    }

    .work-slide__columns {
        gap: 35px;
    }

    .work-slide__column {
        width: calc((100% - (35px * 1)) / 2);
    }

    .work-slide__comment {
        margin: -50px auto;
        width: 100%;
    }

    .work-column__head p,
    .work-total__head p,
    .work-voice__head p,
    .work-comment__head p {
        font-size: 20px;
    }

    .work-column__head p {
        font-size: 18px;
    }

    .work-voice__content {
        padding: 12px 15px;
    }

    .work-column__content p .yen {
        font-size: 18px;
    }

    .work-column__content p .tax {
        font-size: 11px;
    }

    .work-total__content p .yen {
        font-size: 28px;
    }

    .work-total__content p .tax {
        font-size: 14px;
    }

    .work-voice__content p {
        font-size: 15px;
    }

    .work-comment__content p {
        font-size: 15px;
    }

    .work-btn {
        margin-top: 50px;
    }
}

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

    .work-sliders .swiper-button-next,
    .work-sliders .swiper-rtl .swiper-button-prev {
        right: -10px;
    }

    .work-sliders .swiper-button-prev,
    .work-sliders .swiper-rtl .swiper-button-next {
        left: -10px;
    }

    .swiper-slide-active::after {
        text-align: left;
    }

    .work-slide__head {
        padding: 15px;
    }

    .work-slide__ttl {
        font-size: 18px;
    }

    .work-slide__body {
        flex-direction: column-reverse;
        padding: 20px;
    }

    .work-slide__left {
        margin: 80px 0 0;
        width: 100%;
    }

    .work-slide__right {
        width: 100%;
    }

    .work-slide__right::after {
        display: none;
    }

    .work-infolist__item {
        width: 100%;
    }

    .work-infolist__item dt {
        font-size: 14px;
    }

    .work-infolist__item dd {
        font-size: 14px;
    }

    .work-infolist__item:not(:first-child) dd {
        border-top: 3px solid var(--sub-theme-color);
    }

    .work-slide__columns {
        gap: 35px;
    }

    .work-slide__column {
        width: 100%;
    }

    .work-slide__comment {
        margin: -50px auto;
        width: 100%;
    }

    .work-slide__triangel {
        margin: 10px auto 15px;
    }

    .work-column__head p,
    .work-total__head p,
    .work-voice__head p,
    .work-comment__head p {
        font-size: 17px;
    }

    .work-column__head p {
        font-size: 15px;
    }

    .work-slide__subttl p span {
        display: block;
        margin: 5px 0 0;
    }

    .work-voice__content {
        padding: 10px;
    }

    .work-column__content p .yen {
        font-size: 16px;
    }

    .work-column__content p .tax {
        font-size: 10px;
    }

    .work-total__content p .yen {
        font-size: 21px;
    }

    .work-total__content p .tax {
        font-size: 12px;
    }

    .work-voice__content p {
        font-size: 14px;
    }

    .work-comment__content p {
        font-size: 14px;
    }
}

@media screen and (max-width: 768px) {
    .work {
        padding: 40px 0 40px;
    }
}

/* archivementcontent */
.archivementcontent {
    background: var(--main-theme-color);
    padding: 75px 0 95px;
}

.archivementcontent-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.archivementcontent-head.block-head {
    margin: 0 0 40px;
}

.archivementcontent-head h2::after {
    display: none;
}

.archivementcontent-head h2 span {
    color: var(--sub-theme-color);
}

@media screen and (max-width: 768px) {
    .archivementcontent {
        padding: 40px 0;
    }
}

/* archivementpost */
.archivementpost {
    padding: 70px 0 100px;
}

.archivementpost-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.archivementpost-cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 50px;
}

.archivementpost-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    width: calc((100% - (50px * 1)) / 2);
}

.archivementpost-card__name {
    background: var(--sub-theme-color);
    padding: 10px 0;
    text-align: center;
}

.archivementpost-card__name p {
    color: #fff;
    font-size: 27px;
    font-weight: 700;
}

.archivementpost-card__image {
    line-height: 0;
    padding: 15px 25px 0;
}

.archivementpost-card__text {
    padding: 10px 25px 25px;
}

.archivementpost-card__tagline {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin: 0 0 15px;
}

.archivementpost-tag {
    background: #F5F5F5;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-weight: 300;
    height: 22px;
    padding: 0 15px;
    width: max-content;
}

.archivementpost-card__txt p {
    font-size: 17px;
    font-weight: 300;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
}

.archivementpost-card__btn {
    display: flex;
    justify-content: center;
    height: 61px;
    margin: 25px auto 0;
    width: 260px;
}

.archivementpost-card__btn p {
    background: #fff;
    border: 1px solid var(--sub-theme-color);
    border-radius: 50px;
    color: var(--sub-theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    height: 100%;
    position: relative;
    width: 100%;
}

.archivementpost-card__btn p::after {
    background: url(../images/icon-arrow-solid-g.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 16px;
    margin: auto;
    position: absolute;
    right: 25px;
    top: 0;
    bottom: 0;
    width: 10px;
}

@media screen and (max-width: 968px) {
    .archivementpost {
        padding: 50px 0 75px;
    }

    .archivementpost-cards {
        gap: 20px;
    }

    .archivementpost-card {
        width: calc((100% - (20px * 1)) / 2);
    }

    .archivementpost-card__name p {
        font-size: 21px;
    }

    .archivementpost-card__image {
        padding: 15px 15px 0;
    }

    .archivementpost-card__text {
        padding: 10px 15px 15px;
    }

    .archivementpost-card__txt p {
        font-size: 15px;
    }

    .archivementpost-card__btn {
        height: 55px;
        margin: 20px auto 0;
        width: 220px;
    }

    .archivementpost-card__btn p {
        font-size: 18px;
    }

    .archivementpost-card__btn p::after {
        height: 16px;
        right: 20px;
    }
}

@media screen and (max-width: 768px) {
    .archivementpost {
        padding: 45px 0 50px;
    }

    .archivementpost-card {
        width: 100%;
    }
}

/* archivementcat */
.archivementcat {
    background: var(--main-theme-color);
    padding: 115px 0;
}

.archivementcat-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.archivementcat-head,
.archivementpost-head {
    margin: 0 0 50px;
    text-align: center;
}

.archivementcat-head h2,
.archivementpost-head h2 {
    font-size: 56px;
    font-weight: 700;
}

.archivementcat-head h2 span,
.archivementpost-head h2 span {
    font-size: 47px;
    font-weight: 700;
}

.archivementcat-cards {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 50px;
}

.archivementcat-card {
    width: calc((100% - (50px * 2)) / 3);
}

.archivementcat-card__image {
    line-height: 0;
}

.archivementcat-card__btn {
    height: 82px;
    margin: 20px auto 0;
    width: 100%;
}

.archivementcat-card__btn p {
    background: #F25424;
    border-radius: 50px;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    height: 100%;
    padding: 0 35px;
    position: relative;
    text-align: center;
    width: 100%;
}

.archivementcat-card__btn p::after {
    background: url(../images/icon-arrow-solid-r-w.svg) no-repeat;
    background-position: center;
    background-size: contain;
    content: "";
    display: block;
    height: 16px;
    margin: auto;
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    width: 10px;
}

@media screen and (max-width: 968px) {
    .archivementcat {
        padding: 75px 0;
    }

    .archivementcat-head,
    .archivementpost-head {
        margin: 0 0 45px;
    }

    .archivementcat-head h2,
    .archivementpost-head h2 {
        font-size: 42px;
    }

    .archivementcat-head h2 span,
    .archivementpost-head h2 span {
        font-size: 32px;
    }

    .archivementcat-cards {
        gap: 20px;
    }

    .archivementcat-card {
        width: calc((100% - (20px * 2)) / 3);
    }

    .archivementcat-card__btn {
        height: 75px;
        margin: 15px auto 0;
    }

    .archivementcat-card__btn p {
        font-size: 16px;
        padding: 0 30px;
    }

    .archivementcat-card__btn p::after {
        display: none;
    }
}

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

    .archivementcat-head h2,
    .archivementpost-head h2 {
        font-size: 32px;
    }

    .archivementcat-head h2 span,
    .archivementpost-head h2 span {
        font-size: 24px;
    }

    .archivementcat-card {
        width: calc((100% - (20px * 1)) / 2);
    }

    .archivementcat-card__btn p {
        font-size: 14px;
    }
}

@media screen and (max-width: 468px) {
    .archivementcat-head h2 {
        font-size: 28px;
    }

    .archivementcat-head h2 span {
        font-size: 21px;
    }

    .archivementcat-card {
        width: 100%;
    }
}

/* archivementcontent */
.collectioncontent {
    background: var(--main-theme-color);
    padding: 75px 0 95px;
}

.collectioncontent-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.collectioncontent-head.block-head {
    margin: 0 0 40px;
}

.collectioncontent-head h2::after {
    display: none;
}

.collectioncontent-head h2 span {
    color: var(--sub-theme-color);
}

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

/* archivementcat */
.colletioncontent {
    padding: 115px 0;
}

.colletioncontent-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.colletioncontent-head {
    margin: 0 0 50px;
    text-align: center;
}

.colletioncontent-head h2 {
    font-size: 56px;
    font-weight: 700;
}

.colletioncontent-head h2 span {
    font-size: 47px;
    font-weight: 700;
}

.colletioncontent-cards {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 40px;
}

.colletioncontent-card {
    background: #fff;
    border-radius: 0 0 10px 10px;
    width: calc((100% - (20px * 2)) / 3);
}

.colletioncontent-card__ttl {
    background: var(--sub-theme-color);
    border-radius: 10px 10px 0 0;
    padding: 10px 0;
    text-align: center;
}

.colletioncontent-card__ttl p {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.colletioncontent-card__image {
    line-height: 0;
    padding: 5px 20px 0;
}

.colletioncontent-card__text {
    padding: 25px 20px;
}

.colletioncontent-card__text p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8em;
}

@media screen and (max-width: 968px) {
    .colletioncontent {
        padding: 75px 0;
    }

    .colletioncontent-head {
        margin: 0 0 45px;
    }

    .colletioncontent-head h2 {
        font-size: 42px;
    }

    .colletioncontent-head h2 span {
        font-size: 32px;
    }

    .archivementcat-card {
        width: calc((100% - (20px * 1)) / 2);
    }

    .colletioncontent-card__ttl p {
        font-size: 18px;
    }
}

@media screen and (max-width: 768px) {
    .colletioncontent {
        padding: 40px 0;
    }

    .colletioncontent-head h2 {
        font-size: 32px;
    }

    .colletioncontent-head h2 span {
        font-size: 24px;
    }

    .colletioncontent-card {
        width: calc((100% - (20px * 1)) / 2);
    }
}

@media screen and (max-width: 468px) {
    .colletioncontent-head h2 {
        font-size: 28px;
    }

    .colletioncontent-head h2 span {
        font-size: 21px;
    }

    .colletioncontent-cards {
        row-gap: 20px;
    }

    .colletioncontent-card {
        width: 100%;
    }
}

/* blockname */
.paginations {
    margin: 100px 0 45px;
}

ul.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.pagination li a,
.pagination li span {
    background: #fff;
    border: 2px solid var(--sub-theme-color);
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--sub-theme-color);
    font-family: var(--ft-robo);
    font-size: 18px;
    font-weight: 700;
    height: 50px;
    width: 50px;
}

.pagination li span {
    background: var(--sub-theme-color);
    color: #fff;
}

.pagination li a.prev,
.pagination li a.next {
    background-position: center;
    background-size: 4.5px;
    background-repeat: no-repeat;
    color: transparent;
}

.pagination li a.prev {
    background-image: url(../images/icon-arrow-solid-g2.svg);
}

.pagination li a.next {
    background-image: url(../images/icon-arrow-solid-g.svg);
}

@media screen and (max-width: 968px) {
    .paginations {
        margin: 75px 0 35px;
    }

    .pagination li a,
    .pagination li span {
        font-size: 16px;
        height: 40px;
        width: 40px;
    }
}

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


/* companycontent */
.companycontent {
    background: var(--main-theme-color);
    padding: 75px 0 95px;
}

.companycontent-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.companycontent-head.block-head {
    margin: 0 0 40px;
}

.companycontent-head h2 span {
    color: var(--sub-theme-color);
}

@media screen and (max-width: 968px) {
    .companycontent-card {
        flex-wrap: wrap;
        gap: 20px;
        padding: 25px;
    }

    .companycontent-card__image,
    .companycontent-card__text {
        width: 100%;
    }

    .companycontent-card__text h3 {
        font-size: 21px;
    }

    .companycontent-card__text p {
        font-size: 15px;
    }
}

/* corporationcontent */
.corporationcontent {
    background: var(--main-theme-color);
    padding: 75px 0 95px;
}

.corporationcontent-inner {
    margin: 0 auto;
    width: 92%;
    max-width: 1120px;
}

.corporationcontent-head.block-head {
    margin: 0 0 40px;
}

.corporationcontent-head h2::after {
    display: none;
}

.corporationcontent-head h2 span {
    /* color: #fff; */
}

@media screen and (max-width: 968px) {
    .corporationcontent-card {
        flex-wrap: wrap;
        gap: 20px;
        padding: 25px;
    }

    .corporationcontent-card__image,
    .corporationcontent-card__text {
        width: 100%;
    }

    .corporationcontent-card__text h3 {
        font-size: 21px;
    }

    .corporationcontent-card__text p {
        font-size: 15px;
    }
}

/* 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) {}

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

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












/* パックプランスライド - 円グラフ対応 */
.packplan-slide__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

.packplan-slide__chart-wrapper {
    width: 35%;
    min-width: 280px;
}

.packplan-slide__right-content {
    width: 65%;
}

.packplan-slide__chart {
    background: #f8f8f8;
    border-radius: 10px;
    padding: 20px;
}

.chart-container {
    position: relative;
    width: 100%;
    max-width: 250px;
    margin: 0 auto 20px;
}

.pie-chart {
    width: 100%;
    height: auto;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.chart-segment {
    opacity: 0;
    transform-origin: center;
    animation: segmentFadeIn 0.6s ease forwards;
}

.chart-segment:nth-child(2) {
    animation-delay: 0.1s;
}

.chart-segment:nth-child(3) {
    animation-delay: 0.2s;
}

.chart-segment:nth-child(4) {
    animation-delay: 0.3s;
}

.chart-segment:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes segmentFadeIn {
    from {
        opacity: 0;
        transform: scale(0);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.chart-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
}

.chart-label {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.chart-legend {
    margin-top: 15px;
}

.legend-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    font-size: 13px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    margin-right: 8px;
    flex-shrink: 0;
}

.legend-label {
    flex: 1;
    font-weight: 400;
    color: #333;
}

.legend-value {
    font-weight: 700;
    color: var(--sub-theme-color);
    margin-left: 8px;
}

@media screen and (max-width: 1268px) {
    .packplan-slide__chart-wrapper {
        width: 38%;
        min-width: 240px;
    }

    .packplan-slide__right-content {
        width: 62%;
    }

    .chart-container {
        max-width: 200px;
    }

    .legend-item {
        font-size: 12px;
    }
}

@media screen and (max-width: 968px) {
    .packplan-slide__content {
        flex-direction: column;
    }

    .packplan-slide__chart-wrapper,
    .packplan-slide__right-content {
        width: 100%;
    }

    .chart-container {
        max-width: 220px;
    }
}

@media screen and (max-width: 768px) {
    .packplan-slide__chart {
        padding: 15px;
    }

    .chart-container {
        max-width: 180px;
        margin-bottom: 15px;
    }

    .chart-label {
        font-size: 12px;
    }

    .legend-item {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .legend-color {
        width: 14px;
        height: 14px;
    }
}


/* --- Packplan Slider & Layout --- */

/* スライダーが機能するために必須 */
.packplan-slider {
    overflow: hidden;
    position: relative;
    padding-bottom: 70px;
}

.packplan-slide {
    height: auto;
    background: #fff;
    border: 5px solid #222;
    border-radius: 10px;
    padding: 30px;
}

/* 左右フレックスコンテナ */
.packplan-slide__flex-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-top: 2rem;
}

/* 左側：グラフ */
.packplan-slide__chart-side {
    flex: 0 0 260px;
    /* グラフエリアの幅を固定 */
    background: #fcfcfc;
    padding: 20px;
    border-radius: 10px;
}

.chart-container {
    position: relative;
    width: 180px;
    margin: 0 auto 15px;
}

.pie-chart {
    width: 100%;
    height: auto;
}

.chart-center-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 700;
    font-size: 14px;
}

/* 右側：メインコンテンツ */
.packplan-slide__right-content {
    flex: 1;
    /* 残りの幅をすべて使う */
}

.packplan-slide__image img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* リスト・料金の既存スタイル維持 */
.packplan-slide__info {
    margin-top: 15px;
}

.packplan-slide__list {
    display: flex;
    padding: 8px 0;
    border-bottom: 1px dotted #ccc;
}

.packplan-slide__list dt {
    width: 90px;
    font-weight: 700;
}

.packplan-slide__list-price {
    display: flex;
    align-items: center;
    margin-top: 15px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 5px;
}

.packplan-slide__list-price dt {
    width: 80px;
    font-weight: 700;
}

.packplan-slide__list-price .p {
    font-size: 32px;
    font-weight: 900;
    color: #F25424;
}

.packplan-slide__list-price .en {
    font-size: 20px;
    font-weight: normal;
    padding: 0 0.2rem;
}

/* レスポンシブ：スマホでは縦並び */
@media screen and (max-width: 1024px) {
    .packplan-slide__flex-container {
        flex-direction: column;
        gap: 20px;
    }

    .packplan-slide__chart-side {
        width: 100%;
        flex: none;
    }
}

@media screen and (max-width: 768px) {
    .packplan-slide {
        padding: 0;
    }

    .packplan-slide__flex-container {
        flex-direction: column-reverse;
    }

    .packplan-slide__flex-container {
        margin-top: 0;
    }

    .packplan-slide__list-price {
        padding: 10px 6px;
    }

    .packplan-slide__list-price .p {
        font-size: 18px;
    }

    .packplan-slide__list-price dt {
        width: 50px;
    }

    .packplan-slide__list-price .en {
        font-size: 11px;
    }

}