.txt {
    h3 {
        font-size: 16px;
        line-height: 1.8;
        margin: 0 0 15px;
        @media (width >= 961px) {
            font-size: 20px;
            margin: 1em 0 40px;
        }
    }
    p {
        font-weight: normal;
        line-height: 1.8;
    }
}
figure {
    margin: 0;
    figcaption {
        font-size: 14px;
        font-weight: normal;
        line-height: 1.2;
        margin: 1em 0 0;
        text-align: center;
        @media (width >= 961px) {
            font-size: 16px;
        }
    }
}
.circle {
    display: block;
    position: absolute;
    height: 315px;
    width: 315px;
    z-index: -1;
    @media (width >= 961px) {
        height: 630px;
        width: 630px;
    }
}

main {
    overflow: hidden;
    .container {
        position: relative;
        margin: 0 auto;
        padding: 0 20px;
        width: 100%;
        max-width: 960px;
        z-index: 1;
        p {
            font-weight: normal;
            line-height: 1.8
        }
    }
    .orange {
        background: #FFF7E5;
    }
    .white {
        background: rgba(255, 255, 255, 0.75);
        .circle {
            right: -16px;
            top: -157.5px;
            @media (width >= 961px) {
                left: calc(50% + 154px);
                right: auto;
                top: -315px;
            }
        }
    }
}
#mv_box {
    z-index: 10;
}
main section {
    padding: 48px 0;
    position: relative;
    @media (width >= 961px) {
        padding: 128px 0;
    }
    h2 {
        margin: 1em 0 30px;
        font-size: 20px;
        @media (width >= 961px) {
            margin: 0 0 80px;
            font-size: 43px;
        }
    }
    .list {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
        padding: 0 20px;
        @media (width >= 961px) {
            flex-direction: row;
            justify-content: center;
            padding: 0;
            min-width: 960px;
            max-width: 1600px;
        }
        figure {
            order: 2;
            padding: 0;
            @media (width >= 961px) {
                order: 1;
                padding: 0 20px 0 0;
                width: 50%;
            }
        }
        .txt {
            order: 1;
            @media (width >= 961px) {
                order: 2;
                padding-right: calc(50% - 460px);
                width: 50%;
            }
        }
        &.cross {
            @media (width >= 961px) {
                margin-top: 80px;
            }
            .txt {
                order: 1;
                @media (width >= 961px) {
                    padding-left: calc(50% - 460px);
                    padding-right: 0;
                }
            }
            figure {
                order: 2;
                padding: 0 0 32px;
                @media (width >= 961px) {
                    padding: 0 0 0 20px;
                    width: 50%;
                }
            }
        }
    }
    .box {
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        width: 100%;
        max-width: 960px;
        @media (width >= 961px) {
            margin-bottom: 80px;
            padding: 0;
        }
        figure {
            padding: 0 0 32px;
            @media (width >= 961px) {
                padding: 0;
            }
        }
        .circle {
            top: -100px;
            opacity: .25;
            left: -30%;
            @media (width >= 961px) {
                left: -308px;
                top: -107px;
            }
        }
    }
    &#intro {
        padding: 50px 0 100px;
        @media (width >= 961px) {
            padding: 124px 0 96px;
        }
        .container {
            padding: 0 20px;
            position: relative;
            @media (width >= 961px) {
                display: flex;
                justify-content: space-between;
                padding: 0 20px 0 0;
            }
            figure {
                @media (width >= 961px) {
                    width: calc(50% - 10px);
                }
            }
            .txt {
                @media (width >= 961px) {
                    width: calc(50% - 10px);
                }
                h2 {
                    font-size: 20px;
                    @media (width >= 961px) {
                        margin-top: 0;
                        font-size: 25px;
                    }
                    span {
                        display: block;
                        font-size: 16px;
                        margin: 6px 0 0;
                        padding: 0 0 0 40px;
                        position: relative;
                        &::before {
                            background: #505050;
                            content: "";
                            display: block;
                            height: 1px;
                            left: 0;
                            position: absolute;
                            top: 50%;
                            transform: translateY(-50%);
                            width: 30px;
                        }
                    }
                }
            }
            .circle {
                top: -100px;
                left: -30%;
                @media (width >= 961px) {
                    left: -143px;
                    top: -403px;
                }
            }
        }
    }
    &.cont {
        padding-top: 0;
    }
}


main .about__button {
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    margin: 0 20px;
    text-align: center;
    transition: all 0.3s ease 0s
}
@media screen and (min-width:961px) {
    main .about__button {
        flex-direction: row;
        margin: -80px 0 0;
    }
}
main .about__button>a {
    background-color: #fff;
    border: 3px solid var(--main--color);
    border-radius: 50px;
    color: var(--main--color);
    display: inline-block;
    font-size: 17px;
    letter-spacing: 0.06em;
    padding: 10px 40px;
    position: relative;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    width: 100%
}
@media screen and (min-width:961px) {
    main .about__button>a {
        background-color: var(--main--color);
        color: #FFFBE8;
        font-size: 21px;
        padding: 11px 59px 12px 30px;
        width: 430px;
        height: 60.5px;
        margin-top: auto
    }
    main .about__button>a:hover {
        background-color: rgba(255, 255, 255, 0);
        color: var(--main--color);
        padding: 11px 55px 12px 30px
    }
    main .about__button>a:hover::after {
        background: url(../img/front-page/about-line_hover.svg) no-repeat center center/cover
    }
}
main .about__button>a::after {
    background: url(../img/front-page/about-line_hover.svg) no-repeat center center/cover;
    content: "";
    height: 10px;
    position: absolute;
    right: 18px;
    top: 48%;
    transform: translateY(-50%) rotate(-90deg);
    width: 16px
}
@media screen and (min-width:961px) {
    main .about__button>a::after {
        background: url(../img/front-page/about-line.svg) no-repeat center center/cover;
        right: 25px
    }
}
main .other {
    background: #FFF7E5;
    margin: 53px 0 0;
    padding: 48px 0;
    @media (width >= 961px) {
        margin: 150px 0 0;
        padding: 128px 0;
    }
    h2 {
        margin: 1em 0 30px;
        font-size: 20px;
        @media (width >= 961px) {
            margin: 0 0 80px;
            font-size: 43px;
        }
    }
    div {
        display: flex;
        flex-direction: column;
        gap: 23px;
        @media (width >= 961px) {
            flex-direction: row;
            gap: 32px;
        }
        >a {
            background: #1A1A1A;
            border-radius: 8px;
            display: block;
            height: 147px;
            margin: 0;
            overflow: hidden;
            position: relative;
            transition: .5s;
            width: 100%;
            @media (width >= 961px) {
                height: 204px;
                width: calc(50% - 16px);
            }
            >img {
                height: 100%;
                object-fit: cover;
                opacity: .6;
                transition: .5s;
                vertical-align: bottom;
                width: 100%;
            }
            >h3 {
                bottom: 34px;
                color: #fff;
                font-size: 14px;
                left: 12px;
                line-height: 1.6;
                margin: 0;
                padding: 0;
                position: absolute;
            }
            >p {
                bottom: 12px;
                color: #ffa900;
                font-size: 12px;
                line-height: 1.6;
                margin: 0;
                padding: 0;
                position: absolute;
                right: 12px;
           }
            &:hover {
                >img {
                    opacity: .4;
                }
            }
        }
    }
}

main section.cta-naruse {
    margin-top: 40px;
    padding: 0;
}
@media screen and (min-width:961px) {
    main section.cta-naruse {
        margin-top: 100px;
        padding: 0;
    }
}
