@charset "UTF-8";
/*---------------------------------------
header
---------------------------------------*/
.header {
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    box-sizing: border-box;
    position: fixed;
    position: absolute;
    height: 50px;
    border-bottom: 3px solid #dd3020;
    z-index: 10;
}
  
@media (min-width: 1200px) {
    .header {
        height: 78px;
        border-bottom: none;
        padding-right: 10px;
    }
}

@media (max-width: 1199px) {
    .header {
        padding: 0 15px;
    }
}

.header .header_wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .logo_wrapper {
    display: block;
    transition: all 0.3s cubic-bezier(0.36, 0.1, 0.16, 1);
    width: 166px;
}

.header .logo_wrapper:hover {
    opacity: 0.7;
}

.header .logo_wrapper img {
    display: block;
    width: 100%;
}

@media (min-width: 1200px) {
    .header .logo_wrapper {
        position: absolute;
        top: 29px;
        left: 104px;
    }
}

.sp__btn {
	border: none;
	background: none;
	width: 38px;
	height: 33px;
	cursor: pointer;
    padding: 0;
}

.sp__btn > .bar {
    display: block;
    width: 38px;
    height: 19px;
    position: relative;
}

.sp__btn > .bar::before,
.sp__btn > .bar::after {
    content: "";
}

.sp__btn > .bar::before,
.sp__btn > .bar::after,
.sp__btn > .bar > span {
    width: 100%;
    height: 2px;
    background-color: #c8c8c8;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    margin: 0 auto;
    transform: translateY(-50%);
    transition: .4s;
}

.sp__btn > .bar::before {
    margin-top: -8px;
}

.sp__btn > .bar::after {
    margin-top: 9px;
}

.sp__btn > .text {
    display: block;
    font-weight: 600;
    font-size: .9rem;
    color: #787878;
    margin-top: 4px;
}

@media (min-width: 1200px) {
    .sp__btn {
        display: none;
    }
}

.header__gnav {
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s;
	position: absolute;
	top: 50px;
	left: 0;
	background-color: #fff;
    width: calc(100% + 30px);
    height: 100vh;
    margin-left: -15px;
    margin-right: -15px;
    padding: 30px 20px;
    box-sizing: border-box;
}

.header__gnav.is-open {
    opacity: 1;
    visibility: visible;
}

.header__gnav > ul,
.header__gnav > ul > li {
    margin-bottom: 0;
}

.header__gnav > ul > li {
    border-bottom: 1px solid #CB1C1D;
}

.header__gnav > ul > li > a {
    color: inherit;
    font-size: 1.4rem;
    font-weight: 500;
    padding: 10px 0;
    display: block;
    transition: .4s;
}

.header__gnav > ul > li > a:hover {
    text-decoration: none;
    opacity: .7;
}

.header__gnav__btn {
    margin: 20px auto 0;
    width: 168px;
}

@media (min-width: 1024px) {
    .header__gnav__btn {
        width: 300px;
    }

    .header__gnav__btn > .btn__02 > .text {
        font-size: 1.8rem;
    }
}

@media (min-width: 1200px) {
    .header__gnav {
        display: flex;
        align-items: center;
        position: static;
        width: 100%;
        background: none;
        justify-content: flex-end;
        margin: 0;
        height: auto;
        padding: 0;
        gap: 12px;
        visibility: visible;
        opacity: 1;
    }

    .header__gnav > ul {
        display: flex;
        border-left: 1px solid #CB1C1D;
    }

    .header__gnav > ul > li {
        border-bottom: 0;
        border-right: 1px solid #CB1C1D;
    }

    .header__gnav > ul > li > a {
        padding: 0 10px;
        font-size: 1.6rem;
    }

    .header__gnav__btn {
        margin: 0;
    }
}

@media (min-width: 1920px) {
    .header__gnav {
        margin-right: 100px;
        gap: 46px;
    }

    .header__gnav > ul > li > a {
        padding: 0 20px;
        font-size: 1.8rem;
    }
}

/*---------------------------------------
footer
---------------------------------------*/
#footer {
    padding-top: 0;
}

#footerArea .fixed_contact {
    display: none;
}

#footerArea .pnav li {
    border-right: 1px solid #dbdbdb;
}

#footerArea .pnav li:last-child {
    border-right: none;
}

/*---------------------------------------
setting
---------------------------------------*/
.wrapper > .main {
    background-color: #fff;
}

.wrapper > .main *,
.wrapper > .main *::before,
.wrapper > .main *::after {
    box-sizing: border-box;
}

.wrapper > .main .inner {
    padding-left: 2%;
    padding-right: 2%;
    max-width: 1100px;
    margin: 0 auto;
}

.main :where(p,h1,h2,h3,h4,h5,h6,ul,ol,figure,figcaption) {
    margin: 0;
    padding: 0;
    color: inherit;
}

.main :where(*) {
    line-height: 1.5;
}

.main .sp {
    display: block;
}

.main .tab {
    display: none;
}
.main .pc {
    display: none;
}

.main em {
    font-style: normal;
}

@media (min-width: 768px) {
    .wrapper > .main .inner {
        padding-left: 10px;
        padding-right: 10px;
    }

    .main .sp {
        display: none;
    }
    
    .main .tab {
        display: block;
    }
}
@media (min-width: 1024px) {
    .main .pc {
        display: block;
    }
}

/*---------------------------------------
hdg
---------------------------------------*/
.hdg__lv2__01 {
    font-size: 1.6rem;
    padding-bottom: 5px;
    position: relative;
    text-align: center;
    font-weight: 600;
}

.hdg__lv2__01::after {
    content: "";
    width: 50px;
    height: 1px;
    background-color: #CB1C1D;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
}

.hdg__lv2__01._white {
    color: #fff;
}

.hdg__lv2__01._white::after {
    background-color: #fff;
}

.hdg__lv2__02 {
    font-size: 2rem;
    text-align: center;
    color: #fff;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .hdg__lv2__01 {
        font-size: 3.2rem;
        padding-bottom: 10px;
    }
    
    .hdg__lv2__01::after {
        width: 100px;
        height: 2px;
    }

    .hdg__lv2__02 {
        font-size: 4rem;
    }
}

/*---------------------------------------
btn
---------------------------------------*/
.btn__01 {
    height: 28px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    border-radius: 40px;
    background-color: #fff;
    text-decoration: none;
    position: relative;
    max-width: 316px;
    min-width: 158px;
    transition: .4s;
}


.btn__01 > .icon {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #F01303;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.btn__01 > .icon::after {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #fff;
    transition: all 0.3s;
}

.btn__01 > .icon._download::after {
    -webkit-mask-image: url(../img/icon-download.svg);
    mask-image: url(../img/icon-download.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 16px auto;
    mask-size: 16px auto;
}

.btn__01 > .icon._free::after {
    -webkit-mask-image: url(../img/icon-free.svg);
    mask-image: url(../img/icon-free.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 16px auto;
    mask-size: 16px auto;
}

.btn__01 > .icon._voice::after {
    -webkit-mask-image: url(../img/icon-_voice.svg);
    mask-image: url(../img/icon-voice.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 16px auto;
    mask-size: 16px auto;
}

.btn__01 > .text {
    color: #CB1C1D;
    font-size: 1rem;
    font-weight: 600;
    transition: .4s;
}

.btn__01:hover,
.btn__01:active {
    text-decoration: none;
}

.btn__01:hover {
    background-color: #F01303;
}

.btn__01:hover > .text {
    color: #fff;
}

.btn__01:hover > .icon {
    background-color: #fff;
}

.btn__01:hover > .icon::after {
    background-color: #F01303;
}

@media (min-width: 1024px) {
    .btn__01 {
        height: 56px;
        padding-left: 30px;
    }
    
    
    .btn__01 > .icon {
        right: 4px;
        width: 48px;
        height: 48px;
    }
    
    .btn__01 > .icon::after {
        width: 32px;
        height: 32px;
    }
    
    .btn__01 > .icon._download::after {
        -webkit-mask-size: 32px auto;
        mask-size: 32px auto;
    }
    
    .btn__01 > .icon._free::after {
        -webkit-mask-size: 32px auto;
        mask-size: 32px auto;
    }

    .btn__01 > .icon._voice::after {
        -webkit-mask-size: 32px auto;
        mask-size: 32px auto;
    }

    .btn__01 > .text {
        font-size: 2rem;
    }
}

.btn__02 {
    height: 28px;
    display: flex;
    align-items: center;
    padding-left: 15px;
    border-radius: 40px;
    background-color: #F01303;
    text-decoration: none;
    position: relative;
    max-width: 316px;
    min-width: 158px;
    transition: .4s;
    border: 1px solid transparent;
}


.btn__02 > .icon {
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .4s;
}

.btn__02 > .icon::after {
    content: "";
    width: 16px;
    height: 16px;
    background-color: #F01303;
    transition: all 0.3s;
}

.btn__02 > .icon._contact::after {
    -webkit-mask-image: url(../img/icon-contact.svg);
    mask-image: url(../img/icon-contact.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 16px auto;
    mask-size: 16px auto;
}

.btn__02 > .icon._free::after {
    -webkit-mask-image: url(../img/icon-free.svg);
    mask-image: url(../img/icon-free.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: 16px auto;
    mask-size: 16px auto;
}

.btn__02 > .text {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    transition: .4s;
}

.btn__02:hover,
.btn__02:active {
    text-decoration: none;
}

.btn__02:hover {
    background-color: #fff;
    border: 1px solid #F01303;
}

.btn__02:hover > .text {
    color: #F01303;
}

.btn__02:hover > .icon {
    background-color: #F01303;
}

.btn__02:hover > .icon::after {
    background-color: #fff;
}

@media (min-width: 1024px) {
    .btn__02 {
        height: 56px;
        padding-left: 30px;
        border-width: 2px;
    }
    
    .btn__02 > .icon {
        right: 4px;
        width: 48px;
        height: 48px;
    }
    
    .btn__02 > .icon::after {
        width: 32px;
        height: 32px;
    }
    
    .btn__02 > .icon._contact::after {
        -webkit-mask-size: 32px auto;
        mask-size: 32px auto;
    }
    
    .btn__02 > .icon._free::after {
        -webkit-mask-size: 32px auto;
        mask-size: 32px auto;
    }

    .btn__02 > .text {
        font-size: 2rem;
    }

    .btn__02:hover {
        border-width: 2px;
    }
}

/*---------------------------------------
list
---------------------------------------*/
.list__01 {
    color: #fff;
    margin-top: 5px;
}

.list__01 > li {
    font-size: 1.2rem;
    padding-left: 17px;
    position: relative;
}

.list__01 > li::before {
    content: "●";
    position: absolute;
    left: 0;
    top: 0;
}

@media (min-width: 1024px) {
    .list__01 {
        margin-top: 12px;
    }
    
    .list__01 > li {
        font-size: 1.8rem;
        padding-left: 25px;
    }
}
/*---------------------------------------
js-anime
---------------------------------------*/
.js-anime {
    opacity: 0;
    transform: translateY(30px);
    transition: 1s;
}

.js-anime.is-active {
    opacity: 1;
    transform: translateY(0);
}

/*---------------------------------------
mv
---------------------------------------*/
.mv {
    height: 620px;
    position: relative;
    overflow: hidden;
}

.mv::before {
    content: "";
    background: url(../img/mv-bg.png) no-repeat center bottom / cover;
    width: 100%;
    height: 300px;
    position: absolute;
    left: 0;
    bottom: 0;
}

.mv__circle__bg {
    padding-top: 60px;
    background-color: #fff;
    position: relative;
}

.mv__circle__bg::after {
    content: "";
    background: url(../img/mv-content-sp.png) no-repeat left top /100% 100%;
    width: 100%;
    height: 115px;
    position: absolute;
    bottom: -115px;
    left: 0;
}

.mv__circle__content {
    width: 240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mv__sp__logo {
    width: 80px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -50px;
    z-index: 1;
    line-height: 1;
}
.mv__image {
    width: 370px;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateX(-24px);
    bottom: -1px;
    z-index: 2;
    line-height: 1;
    vertical-align: bottom;

}

.mv__lead {
    font-size: 1.4rem;
    font-weight: 600;
}

.mv__lead > em {
    color: #CB1C1D;
    font-weight: inherit;
}

.mv__hdg {
    margin-top: 15px;
    line-height: 1;
}

.mv__hdg > .sub {
    font-size: 1.4rem;
    font-weight: 600;
}

.mv__hdg > .main {
    font-size: 4.2rem;
    color: #002076;
}

.mv__pc__logo {
    display: none;
}

@media (min-width: 768px) {
    .mv {
        height: 400px;
    }

    .mv::before {
        content: "";
        background: url(../img/mv-bg.png) no-repeat center bottom / cover;
        width: 66.66%;
        height: 100%;
        left: auto;
        right: 0;
    }
    
    .mv__circle__bg {
        width: 47%;
        max-width: 580px;
        height: 100%;
        display: flex;
        align-items: center;
    }
    
    .mv__circle__bg::after {
        content: "";
        background: url(../img/mv-content-pc.png) no-repeat left top /100% 100%;
        width: 105px;
        height: 100%;
        bottom: 0;
        left: auto;
        right: -105px;
    }
    
    .mv__sp__logo {
        width: 79px;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: -65px;
        z-index: 1;
    }
    .mv__image {
        width: 391px;
        left: 42%;
    }

    .mv__sp__logo {
        display: none;
    }

    .mv__pc__logo {
        display: block;
        position: absolute;
        right: 15px;
        top: 80px;
        width: 80px;
    }
}

@media (min-width: 1024px) {
    .mv {
        height: 768px;
    }
    
    .mv__circle__bg {
        padding-top: 80px;
        width: 40%;
    }
    
    .mv__circle__bg::after {
        width: 150px;
        right: -150px;
    }
    
    .mv__circle__content {
        width: 380px;
    }
    
    .mv__image {
        width: 680px;
        left: 34%;
    }
    
    .mv__lead {
        font-size: 2rem;
    }
        
    .mv__hdg {
        margin-top: 35px;
    }
    
    .mv__hdg > .sub {
        font-size: 2.1rem;
    }
    
    .mv__hdg > .main {
        font-size: 6.5rem;
    }

    .mv__text__image {
        margin-top: 17px;
    }

    .mv__pc__logo {
        right: 27px;
        top: 96px;
        width: 179px;
    }
}

@media (min-width: 1366px) {
    .mv__circle__bg {
        width: 37%;
    }
    
    .mv__circle__bg::after {
        width: 200px;
        right: -200px;
    }

    .mv__circle__content {
        width: 480px;
    }
    
    .mv__image {
        width: 820px;
        left: 39%;
    }
    
    .mv__lead {
        font-size: 2.8rem;
    }
    
    .mv__hdg > .sub {
        font-size: 2.8rem;
    }
    
    .mv__hdg > .main {
        font-size: 8.4rem;
    }
}

@media (min-width: 1920px) {
    .mv {
        height: 800px;
    }

    .mv__circle__bg {
        margin-left: 100px;
    }

    .mv__circle__bg::after {
        right: -120px;
    }

    .mv__circle__content {
        margin-left: 0;
    }

    .mv__image {
        width: 940px;
        left: 34%;
    }

    .mv__pc__logo {
        right: 100px;
        top: 118px;
        width: 214px;
    }
}

/*---------------------------------------
mv__material
---------------------------------------*/
.mv__material {
    background: url(../img/bg-red.png) no-repeat center top /cover;
    padding: 28px 0;
    color: #fff;
}

.mv__material__col2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.mv__material__image {
    width: 46%;
    max-width: 372px;
}

.mv__material__lead {
    font-size: .9rem;
    font-weight: 500;
}

.mv__material__hdg {
    font-size: 1.8rem;
    font-weight: 600;
}

.mv__material__btn {
    margin: 5px auto 0;
}

@media (min-width: 1024px) {
    .mv__material {
        padding: 35px 0;
    }
    
    .mv__material__col2 {
        gap: 38px;
    }
        
    .mv__material__lead {
        font-size: 2.4rem;
    }
    
    .mv__material__hdg {
        font-size: 4.8rem;
        margin-top: 7px;
    }
    
    .mv__material__btn {
        margin-top: 40px;
    }
}

/*---------------------------------------
mv__contact
---------------------------------------*/
.mv__contact {
    background-color: #E1E6EB;
    padding: 16px 0;
}

.mv__contact__col2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.mv__contact__hdg {
    font-size: 1.4rem;
    font-weight: 600;
}

@media (min-width: 1024px) {
    .mv__contact {
        padding: 32px 0;
    }

    .mv__contact__col2 {
        gap: 40px;
    }

    .mv__contact__hdg {
        font-size: 3.2rem;
    }

    .mv__contact__btn {
        min-width: 316px;
    }
}

/*---------------------------------------
about
---------------------------------------*/
.about {
    padding-top: 30px;
}

.about__text {
    margin-top: 24px;
    font-size: 1.3rem;
}

.about__note {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 23px;
}

.about__note > li {
    width: 72%;
    border: 2px solid #F01303;
    border-radius: 4px;
    padding: 7px;
    width: 70%;
    max-width: 520px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about__note > li::before,
.about__note > li::after {
    content: "";
    position: absolute;
}

.about__note > li:nth-of-type(2) {
    margin-left: auto;
}

.about__note > li::before {
    width: 24px;
    height: 24px;
    background: url(../img/icon-about.svg) no-repeat left top /cover;
    position: absolute;
    left: -12px;
    top: -12px;
}

.about__note > li::after {
    width: 13px;
    height: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -15px;
}

.about__note > li:nth-of-type(1)::after {
    background: url(../img/about-1.png) no-repeat left top /cover;
}

.about__note > li:nth-of-type(2)::after {
    background: url(../img/about-2.png) no-repeat left top /cover;
}

.about__note__text {
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
    color: #CB1C1D;
    line-height: 1.3;
}

.about__fig {
    margin-top: 30px;
}

.about__list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 17px 10px;
}

.about__list > li {
    width: 110px;
}

.about__list__text {
    margin-top: 5px;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
}

.about__line {
    margin-top: 70px;
    position: relative;
}

.about__line__text {
    padding: 10px 0;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about__line__text .sp {
    display: block;
}

.about__line__gray {
    position: absolute;
    top: 0;
    right: 0;
    max-width: 1600px;
    background-color: #E1E6EB;
    height: 80px;
    margin-left: 20px;
    width: calc(100% - 20px);
}

.about__line__gray::before {
    content: "";
    width: 49px;
    height: 100%;
    background: url(../img/about-gray.png) no-repeat left top / 100% 100%;
    position: absolute;
    top: 0;
    left: -49px;
}

.about__line__red {
    position: absolute;
    top: -42px;
    left: 0;
    max-width: 350px;
    width: 7vw;
    background-color: #FB1203;
    height: 57px;
}

.about__line__red::before {
    content: "";
    width: 35px;
    height: 100%;
    background: url(../img/about-red.png) no-repeat left top / 100% 100%;
    position: absolute;
    top: 0;
    right: -35px;
}

@media (min-width: 1024px) {
    .about {
        padding-top: 80px;
    }

    .about__text {
        margin-top: 48px;
        font-size: 1.8rem;
    }

    .about__note {
        margin-top: 47px;
        flex-direction: row;
        gap: 20px;
    }
    
    .about__note > li {
        border: 4px solid #F01303;
        border-radius: 8px;
        padding: 15px;
    }
    
    .about__note > li::before {
        width: 48px;
        height: 48px;
        left: -24px;
        top: -24px;
    }
    
    .about__note > li::after {
        width: 25px;
        height: 30px;
        bottom: -30px;
    }
    
    .about__note__text {
        font-size: 2.4rem;
        line-height: 1.3;
    }
    
    .about__fig {
        margin-top: 20px;
    }
    
    .about__list {
        margin-top: 32px;
        flex-wrap: nowrap;
        gap: 20px;
    }
    
    .about__list > li {
        width: 200px;
    }
    
    .about__list__text {
        margin-top: 10px;
        font-size: 1.8rem;
    }

    .about__line {
        margin-top: 147px;
    }
    
    .about__line__text {
        padding: 40px 0;
        font-size: 2.8rem;
    }

    .about__line__text .sp {
        display: none;
    }

    .about__line__gray {
        height: 160px;
        margin-left: 43px;
        width: calc(100% - 43px);
    }
    
    .about__line__gray::before {
        content: "";
        width: 98px;
        left: -98px;
    }

    .about__line__red {
        top: -86px;
        width: 21.875vw;
        background-color: #FB1203;
        height: 114px;
    }
    
    .about__line__red::before {
        width: 70px;
        right: -70px;
    }
}

/*---------------------------------------
scene
---------------------------------------*/
.scene {
    padding-top: 30px;
    padding-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.scene::after {
    content: "";
    width: 100%;
    height: 0;
    padding-top: 28%;
    background: url(../img/scene-bg-sp.png) no-repeat left top /cover;
    position: absolute;
    left: 0;
    bottom: 0;
}

.scene > .inner {
    position: relative;
    z-index: 1;
}

.scene__list {
    margin-top: 30px;
    display: grid;
    justify-content: center;
    grid-template-columns: 90px 90px 90px;
    gap: 14px;
}

.scene__list > li {
    line-height: 1;
}

.scene__list__text {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: 4px;
}

.scene__image__list {
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px 10px;
    max-width: 350px;

}

.scene__image__list > li {
    width: 170px;
}

.scene__image__text {
    background-color: #F01303;
    border-radius: 4px;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    padding: 7px;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: -20px;
    position: relative;
    z-index: 1;
    text-align: center;
}

@media (min-width: 768px) {
    .scene__list {
        grid-template-columns: repeat(6, 78px);
    }

    .scene__image__list {
        max-width: 530px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (min-width: 1024px) {
    .scene {
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .scene::after {
        width: 1920px;
        height: 540px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0;
        background: url(../img/scene-bg.png) no-repeat left top /cover;
    }

    .scene__list {
        margin-top: 60px;
        display: flex;
        gap: 28px;
    }
    
    .scene__list__text {
        font-size: 1.8rem;
        margin-top: 8px;
    }

    .scene__image__list {
        max-width: none;
        margin-top: 60px;
        gap: 30px;
    }

    .scene__image__list > li {
        width: 340px;
    }

    .scene__image__text {
        border-radius: 8px;
        font-size: 1.8rem;
        padding: 15px;
        margin-left: 20px;
        margin-right: 20px;
        margin-top: -40px;
    }
}

/*---------------------------------------
free
---------------------------------------*/
.free {
    padding: 20px 0;
    background: url(../img/bg-black.jpg) no-repeat center top /cover;
}

.free__hdg__lv2 {
    text-align: center;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
}

.free__btn {
    margin: 10px auto 0;
    width: 168px;
}

@media (min-width: 1024px) {
    .free {
        padding: 36px 0;
    }
    
    .free__hdg__lv2 {
        font-size: 3.6rem;
    }
    
    .free__btn {
        margin-top: 18px;
        width: 316px;
    }
}

/*---------------------------------------
assignment
---------------------------------------*/
.assignment {
    background: url(../img/gray-bg.jpg) no-repeat center top /cover;
    padding: 30px 0 40px;
    position: relative;
}

.assignment::after {
    content: "";
    width:0;
    height:0;
    border-style:solid;
    border-width: 20px 40px 0 40px;
    border-color: #C4CDD4 transparent transparent transparent;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -20px;
    z-index: 1;
}

.assignment__list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.assignment__list > li {
    width: 127px;
}

.assignment__text {
    background-color: #fff;
    border: 2px solid;
    border-radius: 4px;
    position: relative;
    padding: 6px 3px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 1;
    margin-left: 7px;
    margin-right: 7px;
}

.assignment__text::after {
    content: "";
    width: 8px;
    height: 9px;

    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -9px;
}

.assignment__image {
    margin-top: -6px;
    position: relative;
    z-index: 0;
}

.assignment__list._gray .assignment__text {
    border-color: #E1E6EB;
}

.assignment__list._gray .assignment__text::after {
    background: url(../img/gray-fukidasi.png) no-repeat left top /cover;
}

.assignment__list._red .assignment__text {
    border-color: #F01303;
}

.assignment__list._red .assignment__text::after {
    background: url(../img/red-fukidasi.png) no-repeat left top /cover;
}

@media (min-width: 1024px) {
    .assignment {
        padding: 60px 0 70px;
    }
    
    .assignment::after {
        border-width: 40px 80px 0 80px;
        bottom: -40px;
    }

    .assignment__list {
        margin-top: 60px;
        flex-wrap: nowrap;
        gap: 20px;
    }
    
    .assignment__list > li {
        width: 255px;
    }
    
    .assignment__text {
        border-width: 3px;
        border-radius: 8px;
        padding: 9px;
        font-size: 1.8rem;
        margin-left: 15px;
        margin-right: 15px;
    }
    
    .assignment__text::after {
        content: "";
        width: 16px;
        height: 18px;
        bottom: -18px;
    }
    
    .assignment__image {
        margin-top: -12px;
    }
}

/*---------------------------------------
solution
---------------------------------------*/
.solution {
    overflow: hidden;
}

.solution__01 {
    background: url(../img/bg-red.png) no-repeat center top /cover;
    padding: 50px 0 80px;
}

.amazing__box {
    max-width: 800px;
    margin: -50px auto;
    border: 3px solid #F01303;
    border-radius: 10px;
    background-color: #fff;
    padding: 10px 15px 30px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .15);
    position: relative;
    z-index: 1;
}

.amazing__box__wrap {
    margin-top: 30px
}

.amazing__box__item {
    margin-top: 40px;
}

.amazing__box__item:first-child {
    margin-top: 0;
}

.amazing__box__hdg__wrap {
    padding: 8px 10px 5px;
    border: 2px solid #F01303;
    border-radius: 33px;
    position: relative;
}

.amazing__box__hdg__sub {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #F01303;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    position: absolute;
    top: -27px;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.amazing__box__hdg__sub::after {
    content: "";
    width:0;
    height:0;
    border-style:solid;
    border-width: 4px 3px 0 3px;
    border-color: #F01303 transparent transparent transparent;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: -4px;
}

.amazing__box__hdg {
    text-align: center;
    font-size: 1.2rem;
    color: #F01303;
    font-weight: 600;
}

.amazing__box__list {
    margin-top: 10px;
}

.amazing__box__list > li {
    padding-left: 14px;
    font-size: 1.2rem;
    margin-top: 5px;
    position: relative;
}

.amazing__box__list > li::before {
    content: "●";
    color: #F01303;
    position: absolute;
    left: 0;
    top: 0;
}

.amazing__box__list > li:first-child {
    margin-top: 0;
}

.amazing__figure {
    margin-top: 20px;
}

.solution__03 {
    background: url(../img/bg-red.png) no-repeat center top /cover;
    padding: 80px 0 40px;
}

.utilization {
    margin: 20px auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    width: fit-content;
}

.utilization__item {
    color: #fff;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    padding: 0 16px;
}

.utilization__item__hdg {
    text-align: center;
}

.utilization__item__hdg > .text {
    font-size: 1.4rem;
    font-weight: 600;
    padding-left: 24px;
    position: relative;
}
.utilization__item__hdg > .text::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.utilization__item__hdg > .text._01::before {
    background: url(../img/utilization-icon-01.svg) no-repeat left top /cover;
}

.utilization__item__hdg > .text._02::before {
    background: url(../img/utilization-icon-02.svg) no-repeat left top /cover;
}

.utilization__item__text {
    font-weight: 600;
    text-align: center;
    line-height: 1;
}

.utilization__item__text > .main {
    font-size: 6rem;
    font-family: "Noto Serif JP", serif;
}

.utilization__item__text > .sub {
    font-size: 1.6rem;
}

.voice {
    margin-top: 20px;
    color: #fff;
}

.voice__hdg {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 600;
}

.voice__list {
    margin-top: 20px;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
}

.voice__list > li {
    width: 250px;
}

.voice__text {
    margin-top: 5px;
    font-size: 1.3rem;
    font-weight: 500;
}

.voice__name {
    text-align: right;
    font-size: 1.2rem;
    margin-top: 5px;
}

.voice__btn {
    margin: 10px auto 0;
    width: 168px;
}

@media (min-width: 768px) {
    .utilization {
        flex-direction: row;
        gap: 0;
    }

    .utilization__item {
        flex: 0 0 35%;
    }

    .utilization__item:nth-of-type(2) {
        border-left: 0;
        flex: 0 0 70%;
    }

    .voice__list {
        flex-direction: row;
        justify-content: center;
    }
    
}

@media (min-width: 1024px) {
    .solution__01 {
        padding: 100px 0 240px;
    }

    .solution__02 {
        position: relative;
    }

    .solution__02::after {
        content: "";
        width: 1920px;
        height: 642px;
        left: 50%;
        position: absolute;
        bottom: 140px;
        transform: translateX(-50%);
        padding: 0;
        background: url(../img/solution-bg.png) no-repeat left top /cover;
    }

    .amazing__box {
        max-width: 800px;
        margin: -200px auto;
        border-width: 6px;
        border-radius: 20px;
        padding: 20px 40px 60px;
    }
    
    .amazing__box__wrap {
        margin-top: 50px
    }
    
    .amazing__box__item {
        margin-top: 80px;
    }
    
    .amazing__box__hdg__wrap {
        padding: 17px 10px 10px;
        border-width: 3px;
    }
    
    .amazing__box__hdg__sub {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
        top: -57px;
    }
    
    .amazing__box__hdg__sub::after {
        border-width: 8px 6px 0 6px;
        bottom: -7px;
    }
    
    .amazing__box__hdg {
        font-size: 2.4rem;
    }
    
    .amazing__box__list {
        margin-top: 20px;
        padding-left: 30px;
    }
    
    .amazing__box__list > li {
        padding-left: 26px;
        font-size: 1.8rem;
        margin-top: 10px;
    }
    
    .amazing__box__list > li.inline {
        display: inline-block;
    }
    
    .amazing__box__list > li.inline:nth-of-type(2) {
        margin-top: 0;
    }

    .amazing__box__list > li.inline:nth-of-type(odd) {
        width: 37%;
    }

    .amazing__figure {
        margin-top: 40px;
    }

    .solution__03 {
        padding: 260px 0 80px;
    }
    
    .utilization {
        margin-top: 60px;
    }
    
    .utilization__item {
        padding: 0 32px;
    }
    
    .utilization__item__hdg > .text {
        font-size: 2.8rem;
        padding-left: 48px;
    }
    .utilization__item__hdg > .text::before {
        width: 40px;
        height: 40px;
    }
    
    .utilization__item__text > .main {
        font-size: 12rem;
    }
    
    .utilization__item__text > .sub {
        font-size: 3.2rem;
    }

    .voice {
        margin-top: 60px;
    }
    
    .voice__hdg {
        font-size: 2rem;
    }
    
    .voice__list {
        margin-top: 40px;
        gap: 40px;
    }
    
    .voice__list > li {
        width: 500px;
    }
    
    .voice__text {
        margin-top: 10px;
        font-size: 1.8rem;
    }
    
    .voice__name {
        font-size: 1.6rem;
        margin-top: 10px;
    }

    .voice__btn {
        margin-top: 24px;
        width: 316px;
    }
}

/*---------------------------------------
support
---------------------------------------*/
.support {
    padding-top: 40px;
    padding-bottom: 30px;
    position: relative;
}

.support::after {
    content: "";
    background: url(../img/support-bg.png) no-repeat left top /cover;
    width: 268px;
    height: 226px;
    position: absolute;
    right: 0;
    bottom: 0;
}

.support > .inner {
    position: relative;
    z-index: 1;
}

.support__list {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.support__list > li {
    position: relative;
    width: 230px;
    margin: 0 auto;
}

.support__list__icon {
    width: 60px;
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.support__list__icon::before {
    content: "";
    width:0;
    height:0;
    border-style:solid;
    border-width: 4.5px 0 4.5px 6px;
    border-color: transparent transparent transparent #F01303;
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
}

.support__list__box {
    border: 2px solid #F01303;
    border-radius: 4px;
    background-color: #fff;
    padding: 10px 10px 10px 40px;
}

.support__list__text {
    font-size: 1.2rem;
}

@media (min-width: 768px) {
    .support__list {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 40px;
        max-width: 500px;
        margin: 20px auto 0;
    }

    .support__list > li {
        margin: 0;
    }
}

@media (min-width: 1024px) {
    .support {
        padding-top: 80px;
        padding-bottom: 90px;
    }
    
    .support::after {
        width: 628px;
        height: 451px;
    }
    
    .support__list {
        margin-top: 60px;
        max-width: 1060px;
        gap: 30px 80px;
    }
    
    .support__list > li {
        width: 460px;
    }
    
    .support__list__icon {
        width: 120px;
        left: -60px;
    }
    
    .support__list__icon::before {
        border-width: 9px 0 9px 12px;
        right: -10px;
    }
    
    .support__list__box {
        border-width: 3px;
        border-radius: 8px;
        padding: 20px 20px 20px 80px;
    }
    
    .support__list__text {
        font-size: 1.8rem;
    }
}

/*---------------------------------------
trial
---------------------------------------*/
.trial {
    padding: 25px 0;
    background: url(../img/bg-black.jpg) no-repeat center top / cover;
}

.trial__text {
    margin-top: 10px;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 500;
}

.trial__list {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.trial__list > li {
    width: 80px;
}

.trial__list__text {
    color: #fff;
    font-size: .8rem;
    text-align: center;
    margin-top: 5px;
}

.trial__btn {
    margin: 20px auto 0;
    width: 168px;
}

@media (min-width: 768px) {
    .trial__text {
        text-align: center;
    }
}

@media (min-width: 1024px) {
    .trial {
        padding: 60px 0 45px;
    }
    
    .trial__text {
        margin-top: 30px;
        font-size: 1.8rem;
    }
    
    .trial__list {
        margin-top: 40px;
        gap: 60px;
    }
    
    .trial__list > li {
        width: 200px;
    }
    
    .trial__list__text {
        font-size: 1.8rem;
        margin-top: 15px;
    }
    
    .trial__btn {
        margin-top: 40px;
        width: 316px;
    }
}