@charset "UTF-8";



/*** HEADER ***/
header {
    width: 100%;
    background: var(--colorblue);
    padding: 12px 50px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
}
.header__logo {
    display: block;
    width: 250px;
}
.header__logo img {
    width: 100%;
}

@media screen and (max-width:767px) {
    header {
        padding: 7px 5%;
    }
    .header__logo {
        width: 120px;
    } 
}



/* agent */
.agent {
    width: 200px;
    position: fixed;
    right: 35px;
    bottom: 70px;
    z-index: 97;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .6s ease, transform .6s ease;
}
.agent.visible {
    opacity: 1;
    transform: translateY(0);
}
.agent img {
    width: 100%;
}
@media screen and (max-width:767px) {
    .agent {
        width: 130px;
        position: fixed;
        right: 15px;
        bottom: 70px;
    }
}



/* sp menu */
.sp-menu {
    width: 100%;
    height: 100vh;
    background: var(--colorblack);
    padding: 120px 7.5%;
    overflow: scroll;
    position: fixed;
    top: 0;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}
.sp-menu.open {
    opacity: 1;
    pointer-events: all;
    visibility: visible;
}
.sp-menu nav {
    margin-top: 20px;
}
.sp-menu nav ul li a {
    color: #FFF;
    font-size: 14px;
    line-height: 1.4;
    padding: 15px 0;
    border-bottom: 1px solid #FFF;
    display: flex;
    gap: 0 10px;
}
.sp-menu nav ul li a span {
    font-size: 14px;
    line-height: 1.5;
}
.sp-menu__btn__wrap {
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}
.sp-menu__btn__wrap a {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    padding: 20px 0;
}
.sp-menu__btn01 {
    color: #FFF;
    background: var(--colororange);
}
.sp-menu__btn02 {
    color: var(--colororange);
    background: #FFF;
    border: 1px solid var(--colororange);
}




/*** MAIN ***/
main {
    zoom: 1.11111111;
    display: flex;
}
@media screen and (max-width: 767px) {
    main {
        display: block;
        zoom: 1;
        padding-top: 95px;
    }
}

/* side */
.sidebar {
    width: 350px;
    position: sticky;
    top: 0;
    align-self: flex-start;
    padding: 90px 35px 100px 50px;
    box-sizing: border-box;
}
.sidebar__scroller {
    height: calc(100vh - 140px);
    max-height: fit-content;
    padding-right: 15px;
    overflow-y: auto;
}
.sidebar__scroller::-webkit-scrollbar {
    width: 3px;
}  
.sidebar__scroller::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, .1);
    border-radius: 3px;
}  
.sidebar__scroller::-webkit-scrollbar-thumb {
    background-color: var(--colorblue);
    border-radius: 3px;
}
.sidebar__inner {
    display: flex;
    flex-direction: column;
}  
.sidebar__logo {
    display: block;
    width: 170px;
}
.sidebar__logo img {
    width: 100%;
}
.sidebar__inner nav {
    margin-top: 20px;
}
.sidebar__inner nav ul li a {
    color: #FFF;
    font-size: 13px;
    line-height: 1.4;
    border-bottom: 1px solid #FFF;
    padding: 13px 0;
    display: flex;
    gap: 0 10px;
    position: relative;
}
.sidebar__inner nav ul li a::after {
    content: '';
    width: 100%;
    height: 1px;
    background: var(--colororange);
    position: absolute;
    bottom: -1px;
    left: 0;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform .4s;
}
.sidebar__inner nav ul li a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}    
.sidebar__inner nav ul li a span {
    min-width: 20px;
    line-height: 1.5;
}
.sidebar__btn__wrap {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px 0;
}
.sidebar__btn__wrap a {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    padding: 15px 0;
    transition: opacity .3s ease;
}
.sidebar__btn__wrap a:hover {
    opacity: .5;
}
.sidebar__btn01 {
    color: #FFF;
    background: var(--colororange);
    border: 1px solid transparent;
}
.sidebar__btn02 {
    color: var(--colororange);
    background: #FFF;
    border: 1px solid var(--colororange);
}
@media screen and (min-width: 1512px) {
    .sidebar {
        width: 35rem;
        padding: 9rem 3.5rem 10rem 5rem;
    }
    .sidebar__scroller {
        height: calc(100vh - 14rem);
        padding-right: 1.5rem;
    }
    .sidebar__scroller::-webkit-scrollbar {
        width: .3rem;
    }  
    .sidebar__scroller::-webkit-scrollbar-track {
        border-radius: .3rem;
    }  
    .sidebar__scroller::-webkit-scrollbar-thumb {
        border-radius: .3rem;
    } 
    .sidebar__logo {
        width: 17rem;
    }
    .sidebar__inner nav {
        margin-top: 2rem;
    }
    .sidebar__inner nav ul li a {
        font-size: 1.3rem;
        border-bottom: .1rem solid #FFF;
        padding: 1.3rem 0;
        gap: 0 1rem;
    }
    .sidebar__inner nav ul li a::after {
        height: .1rem;
        bottom: -.1rem;
    }  
    .sidebar__inner nav ul li a span {
        min-width: 2rem;
    }
    .sidebar__btn__wrap {
        margin-top: 4rem;
        gap: 1rem 0;
    }
    .sidebar__btn__wrap a {
        font-size: 1.4rem;
        border-radius: .5rem;
        padding: 1.5rem 0;
    }
    .sidebar__btn01 {
        border: .1rem solid transparent;
    }
    .sidebar__btn02 {
        border: .1rem solid var(--colororange);
    }
}
@media screen and (max-width: 767px) {
    .sidebar {
        width: 100%;
        background: var(--colorblack);
        position: fixed;
        top: 27px;
        padding: 15px 20px;
        z-index: 99;
    }
    .sidebar__scroller {
        height: 100%;
        padding-right: 0;
    }
    .sidebar__scroller::-webkit-scrollbar {
        display: none;
    }  
    .sidebar__scroller::-webkit-scrollbar-track {
        display: none;
    }  
    .sidebar__scroller::-webkit-scrollbar-thumb {
        display: none;
    }
    .sidebar__inner {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0;
    }  
    .sidebar__logo {
        width: 65px;
    }
    .sidebar__humburger {
        width: 30px;
        height: 15px;
        position: relative;
    }
    .sidebar__humburger span {
        width: 100%;
        height: 1px;
        background: #FFF;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .sidebar__humburger span:nth-of-type(1) {
        top: 0;
    }
    .sidebar__humburger.open span:nth-of-type(1) {
        top: 50%;
        transform: translate(-50%, -50%) rotate(30deg);
    }
    .sidebar__humburger span:nth-of-type(2) {
        bottom: 0;
    }
    .sidebar__humburger.open span:nth-of-type(2) {
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%) rotate(-30deg);
    }
    .sidebar__inner nav {
        display: none;
    }
    .sidebar__btn__wrap {
        display: none;
    }
}



/* content */
.content {
    width: calc(100% - 350px);
    padding: 0 50px 100px 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
@media screen and (min-width: 1512px) {
    .content {
        width: calc(100% - 35rem);
        padding: 0 5rem 10rem 0;
        gap: 5rem;
    }
}
@media screen and (max-width: 767px) {
    .content {
        width: 85%;
        max-width: 500px;
        padding: 0 0 100px;
        margin: 0 auto;
        gap: 30px;
    }
}

/* mv */
.mv {
    display: flex;
    justify-content: center;
    align-items: center;
}
.mv__movie {
    width: calc(50% + 50px);
    max-width: 700px;
    height: 780px;
    position: relative;
}
.mv__movie::before, .mv__movie::after {
    content: '';
    width: 100px;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.mv__movie::before {
    background: linear-gradient(to right, var(--colorblack), rgba(8, 15, 30, 0));
    left: 0;
}
.mv__movie::after {
    background: linear-gradient(to left, var(--colorblack), rgba(8, 15, 30, 0));
    right: 0;
}
.mv__movie video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mv__txt {
    width: 50%;
    margin-left: -50px;
    position: relative;
    z-index: 1;
}
.mv__txt h2 {
    color: #FFF;
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: left;
    line-height: 1.5;
}
.mv__txt p {
    color: #FFF;
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 1.7;
    margin-top: 50px;
}
.mv__txt p span {
    display: inline-block;
    font-size: 10px;
    margin: 0 2px;
    transform: translateY(-8px);
}
.mv__txt__add {
    color: rgba(255, 255, 255, .7);
    font-size: 13px;
    line-height: 1.5;
    margin-top: 20px;
    text-indent: -1rem;
    padding-left: 1rem;
}
@media screen and (min-width: 1512px) {
    .mv__movie {
        width: calc(55% + 5rem);
        max-width: 70rem;
        height: 78rem;
    }
    .mv__movie::before, .mv__movie::after {
        width: 10rem;
    }
    .mv__txt {
        margin-left: -5rem;
    }
    .mv__txt h2 {
        font-size: 3.8rem;
    }
    .mv__txt p {
        font-size: 2rem;
        margin-top: 5rem;
    }
    .mv__txt p span {
        font-size: 1rem;
        margin: 0 .2rem;
        transform: translateY(-.8rem);
    }
    .mv__txt__add {
        font-size: 1.3rem;
        margin-top: 2rem;
        /* ローカル */
        /* text-indent: -1rem;
        padding-left: 1rem; */
        /* テスト環境 */
        text-indent: -1.6rem;
        padding-left: 1.6rem;
    }
}
@media screen and (max-width: 1360px) {
    .mv__movie {
        width: 50%;
    }
    .mv__txt {
        margin-left: 0;
    }
    .mv__txt h2 {
        font-size: 28px;
    }
    .mv__txt p {
        font-size: 17px;
    }
    .mv__txt p span {
        transform: translateY(-6px);
    }
    .mv__txt__add {
        font-size: 12px;
    }
}
@media screen and (max-width: 767px) {
    .mv {
        display: block;
    }
    .mv__movie {
        width: 100%;
        max-width: 500px;
        height: auto;
        aspect-ratio: 1/1.2;
        margin: 0 auto;
    }
    .mv__movie::before, .mv__movie::after {
        width: 30px;
    }
    .mv__txt {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    .mv__txt h2 {
        font-size: 24px;
    }
    .mv__txt p {
        font-size: 14px;
        margin: 30px 0 0 0;
    }
    .mv__txt p span {
        transform: translateY(-4px);
    }
    .mv__txt__add {
        font-size: 12px;
        margin-top: 10px;
        text-indent: -1rem;
        padding-left: 1rem;
    }
}


/* about */
.about__cnt {
    display: flex;
    justify-content: space-between;
}
.about__cnt__txt {
    width: 41%;
}
.about__cnt__txt strong {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.4;
}
.about__cnt__txt p {
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-top: 30px;
}
.about__cnt__txt__user {
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 10px 0 40px;
    margin-top: 45px;
}
.about__cnt__txt__user h3 {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.03em;
    text-align: center;
    background: var(--colorbeige);
    padding: 0 25px;
    transform: translateY(-24px);
}
.about__cnt__txt__user__num {
    font-size: 40px;
}
.about__cnt__txt__user__num span {
    display: inline-block;
    font-size: 74px;
    letter-spacing: -0.05em;
    line-height: 1;
    margin-right: 6px;
    transform: translateY(5px);
}
.about__cnt__img {
    width: 54%;
}
.about__cnt__img img {
    width: 100%;
}
@media screen and (min-width: 1512px) {
    .about__cnt__txt strong {
        font-size: 2.8rem;
    }
    .about__cnt__txt p {
        font-size: 1.4rem;
        margin-top: 3rem;
    }
    .about__cnt__txt__user {
        border: .1rem solid rgba(0, 0, 0, 0.2);
        padding: 1rem 0 4rem;
        margin-top: 4.5rem;
    }
    .about__cnt__txt__user h3 {
        font-size: 1.8rem;
        padding: 0 2.5rem;
        transform: translateY(-2.4rem);
    }
    .about__cnt__txt__user__num {
        font-size: 4rem;
    }
    .about__cnt__txt__user__num span {
        font-size: 7.4rem;
        margin-right: .6rem;
        transform: translateY(.5rem);
    }
}
@media screen and (max-width: 1360px) {
    .about__cnt__txt strong {
        font-size: 20px;
    }
    .about__cnt__txt__user__num {
        font-size: 30px;
    }
    .about__cnt__txt__user__num span {
        font-size: 50px;
        margin-right: 6px;
        transform: translateY(5px);
    }
}
@media screen and (max-width: 767px) {
    .about__cnt {
        flex-direction: column;
        gap: 30px 0;
    }
    .about__cnt__txt {
        width: 100%;
        order: 2;
    }
    .about__cnt__txt strong {
        font-size: 22px;
    }
    .about__cnt__txt p {
        font-size: 13px;
        margin-top: 20px;
    }
    .about__cnt__txt__user {
        padding: 0 0 30px;
        margin-top: 30px;
    }
    .about__cnt__txt__user h3 {
        font-size: 16px;
        padding: 0 15px;
        transform: translateY(-12px);
    }
    .about__cnt__txt__user__num {
        font-size: 30px;
    }
    .about__cnt__txt__user__num span {
        font-size: 60px;
    }
    .about__cnt__img {
        width: 100%;
        order: 1;
    }
}



/* effect */
.effect__cnt {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.effect__cnt__list {
    width: calc((100%/3) - (50px/3));
    border: 1px solid rgba(0, 0, 0, 0.2);
    background-image: radial-gradient(#e4e3dd 8%, transparent 8%);
    background-size: 15px 15px;
    padding: 25px 10px;
}
.effect__cnt__list h3 {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 5px;
}
.effect__cnt__list__num {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 0 5px;
}
.effect__cnt__list__num span {
    display: inline-block;
    font-size: 74px;
    letter-spacing: -0.05em;
    position: relative;
    z-index: 1;
}
.effect__cnt__list__num span::before {
    content: '';
    width: 100%;
    height: 10px;
    background: var(--colororange);
    position: absolute;
    bottom: 5px;
    left: 0;
    z-index: -1;
}
.effect__cnt__list__num--unit {
    font-size: 38px;
    white-space: nowrap;
}
.effect__cnt__list__num--unit.eg {
    font-size: 50px;
}
.effect__cnt__list p {
    font-size: 12px;
    letter-spacing: 0.03em;
    line-height: 1.5;
    text-align: center;
    margin-top: 10px;
    opacity: .7;
}
@media screen and (min-width: 1512px) {
    .effect__cnt {
        gap: 2.5rem;
    }
    .effect__cnt__list {
        width: calc((100%/3) - (5rem/3));
        border: .1rem solid rgba(0, 0, 0, 0.2);
        background-size: 1.5rem 1.5rem;
        padding: 2.5rem 1rem;
    }
    .effect__cnt__list h3 {
        font-size: 1.8rem;
        margin-bottom: .5rem;
    }
    .effect__cnt__list__num {
        gap: 0 .5rem;
    }
    .effect__cnt__list__num span {
        font-size: 7.4rem;
    }
    .effect__cnt__list__num span::before {
        height: 1rem;
        bottom: .5rem;
    }
    .effect__cnt__list__num--unit {
        font-size: 3.8rem;
    }
    .effect__cnt__list__num--unit.eg {
        font-size: 5rem;
    }
    .effect__cnt__list p {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
}
@media screen and (max-width: 1360px) {
    .effect__cnt__list h3 {
        font-size: 16px;
    }
    .effect__cnt__list__num span {
        font-size: 50px;
    }
    .effect__cnt__list__num span::before {
        height: 7px;
    }
    .effect__cnt__list__num--unit {
        font-size: 20px;
    }
    .effect__cnt__list__num--unit.eg {
        font-size: 30px;
    }
}
@media screen and (max-width: 767px) {
    .effect__cnt {
        gap: 10px;
    }
    .effect__cnt__list {
        width: 100%;
    }
    .effect__cnt__list h3 {
        font-size: 14px;
        margin-bottom: 5px;
    }
    .effect__cnt__list__num {
        gap: 0 5px;
    }
    .effect__cnt__list__num span {
        font-size: 60px;
    }
    .effect__cnt__list__num span::before {
        height: 6px;
        bottom: 3px;
    }
    .effect__cnt__list__num--unit {
        font-size: 30px;
    }
    .effect__cnt__list__num--unit.eg {
        font-size: 34px;
    }
    .effect__cnt__list p {
        font-size: 12px;
        margin-top: 10px;
    }
}



/* can */
.can__container {
    display: flex;
    flex-direction: column;
    gap: 60px 0;
}
.can__cnt {
    width: 100%;
    display: flex;
    justify-content: space-between;
}
.can__img {
    width: 50%;
}
.can__img img {
    width: 100%;
}
.can__txt {
    width: 45%;
}
.can__txt h3 {
    font-size: 26px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0 15px;
}
.can__txt h3 span {
    width: 28px;
    height: 28px;
    font-size: 16px;
    line-height: 1;
    border-radius: 100%;
    background: var(--colororange);
    display: flex;
    justify-content: center;
    align-items: center;
}
.can__txt p {
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-top: 15px;
    opacity: .6;
}
.can__txt__function {
    margin-top: 30px;
}
.can__txt__function h4 {
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}
.can__txt__function__flex {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}
.can__txt__function__flex ul {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 12px 0;
}
.can__txt__function__flex ul li {
    font-size: 12px;
    line-height: 1.3;
    padding-left: 15px;
    position: relative;
}
.can__txt__function__flex ul li::before {
    content: '';
    width: 3px;
    height: 3px;
    background: var(--colorblack);
    border-radius: 100%;
    position: absolute;
    top: 8px;
    left: 5px;
}
@media screen and (min-width: 1512px) {
    .can__container {
        gap: 6rem 0;
    }
    .can__txt h3 {
        font-size: 2.6rem;
        gap: 0 1.5rem;
    }
    .can__txt h3 span {
        width: 2.8rem;
        height: 2.8rem;
        font-size: 1.6rem;
    }
    .can__txt p {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }
    .can__txt__function {
        margin-top: 3rem;
    }
    .can__txt__function h4 {
        font-size: 1.2rem;
        border-bottom: .1rem solid rgba(0, 0, 0, 0.2);
        padding-bottom: 1rem;
    }
    .can__txt__function__flex {
        margin-top: 1.5rem;
    }
    .can__txt__function__flex ul {
        gap: 1.2rem 0;
    }
    .can__txt__function__flex ul li {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }
    .can__txt__function__flex ul li::before {
        width: .3rem;
        height: .3rem;
        top: .8rem;
        left: .5rem;
    }
}
@media screen and (max-width: 767px) {
    .can__container {
        gap: 50px 0;
    }
    .can__cnt {
        flex-wrap: wrap;
    }
    .can__img {
        width: 100%;
        margin-top: 25px;
        order: 2;
    }
    .can__txt {
        width: 100%;
        order: 1;
    }
    .can__txt h3 {
        font-size: 20px;
        gap: 0 10px;
    }
    .can__txt h3 span {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
    .can__txt p {
        font-size: 13px;
        margin-top: 15px;
    }
    .can__txt__function {
        margin-top: 20px;
    }
    .can__txt__function h4 {
        font-size: 12px;
    }
    .can__txt__function__flex {
        margin-top: 15px;
    }
    .can__txt__function__flex ul li {
        font-size: 12px;
        line-height: 1.3;
        padding-left: 15px;
        position: relative;
    }
    .can__txt__function__flex ul li::before {
        content: '';
        width: 3px;
        height: 3px;
        background: var(--colorblack);
        border-radius: 100%;
        position: absolute;
        top: 8px;
        left: 5px;
    }
}



/* cooperation */
.cooperation__cnt strong {
    display: block;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.03em;
    text-align: center;
    line-height: 1.6;
}
.cooperation__cnt ul {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 0 60px;
}
.cooperation__cnt ul li {
    height: 110px;
    position: relative;
}
.cooperation__cnt ul li img {
    height: 100%;
}
.cooperation__cnt ul li span {
    display: block;
    width: 275px;
    color: var(--colororange);
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    border-radius: 8px;
    border: 1px solid var(--colororange);
    padding: 5px 15px 6px;
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
}
.cooperation__cnt p {
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.4;
    text-align: center;
    margin-top: 70px;
}
@media screen and (min-width: 1512px) {
    .cooperation__cnt strong {
        font-size: 2.6rem;
    }
    .cooperation__cnt ul {
        margin-top: 5rem;
        gap: 0 6rem;
    }
    .cooperation__cnt ul li {
        height: 11rem;
    }
    .cooperation__cnt ul li span {
        width: 27.5rem;
        font-size: 1.2rem;
        border-radius: .8rem;
        border: .1rem solid var(--colororange);
        padding: .5rem 1.5rem .6rem;
        bottom: -3.5rem;
    }
    .cooperation__cnt p {
        font-size: 1.6rem;
        margin-top: 7rem;
    }
}
@media screen and (max-width: 1300px) {
    .cooperation__cnt ul li {
        height: 80px;
    }
}
@media screen and (max-width: 767px) {
    .cooperation__cnt strong {
        font-size: 18px;
        text-align: left;
    }
    .cooperation__cnt ul {
        margin-top: 40px;
        flex-wrap: wrap;
        gap: 0 30px;
    }
    .cooperation__cnt ul li {
        height: 75px;
    }
    .cooperation__cnt ul li span {
        width: 80vw;
        max-width: 275px;
        border-radius: 8px;
        border: 1px solid var(--colororange);
        padding: 5px 15px 6px;
        position: absolute;
        bottom: -40px;
        left: 50%;
        transform: translateX(-50%);
    }
    .cooperation__cnt p {
        font-size: 13px;
        text-align: left;
        margin-top: 80px;
    }
}



/* suite */
.suite__container {
    padding-top: 20px;
}

/* about */
.suite__about__index {
    width: 90%;
    max-width: 890px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.suite__about__index__img {
    width: 42%;
}
.suite__about__index__img img {
    width: 100%;
}
.suite__about__index p {
    width: 50%;
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-top: 30px;
}
.suite__about__movie {
    width: 100%;
    aspect-ratio: 2/1;
    margin-top: 75px;
    position: relative;
}
.suite__about__movie::before, .suite__about__movie::after {
    content: '';
    width: 100px;
    height: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.suite__about__movie::before {
    background: linear-gradient(to right, var(--colorbeige), rgba(244, 243, 236, 0));
    left: 0;
}
.suite__about__movie::after {
    background: linear-gradient(to left, var(--colorbeige), rgba(244, 243, 236, 0));
    right: 0;
}
.suite__about__movie video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.suite__about__movie__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
.suite__about__movie__bg::before, .suite__about__movie__bg::after {
    content: '';
    width: 100%;
    height: 100px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.suite__about__movie__bg::before {
    background: linear-gradient(to bottom, var(--colorbeige), rgba(244, 243, 236, 0));
    top: 0;
}
.suite__about__movie__bg::after {
    background: linear-gradient(to top, var(--colorbeige), rgba(244, 243, 236, 0));
    bottom: 0;
}
.suite__about__movie__comment {
    width: 210px;
    background: #FFF;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px;
    position: absolute;
    z-index: 2;
}
.suite__about__movie__comment01 {
    top: -30px;
    left: 0;
}
.suite__about__movie__comment02 {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.suite__about__movie__comment03 {
    top: -30px;
    right: 0;
}
.suite__about__movie__comment__summary {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
}
.suite__about__movie__comment__summary span.green {
    color: #009900;
}
.suite__about__movie__comment__summary span.blue {
    color: #2068FF;
}
.suite__about__movie__comment__summary span.purple {
    color: #AA00FF;
}
.suite__about__movie__comment p {
    font-size: 12px;
    line-height: 1.4;
    margin-top: 10px;
}
.suite__about__movie__item {
    width: 240px;
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}
.suite__about__movie__item img {
    width: 100%;
}

/* exp */
.suite__exp {
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
}
.suite__exp__txt {
    width: 45%;
}
.suite__exp__txt h3 {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.4;
}
.suite__exp__txt p {
    font-size: 14px;
    line-height: 1.6;
    margin-top: 15px;
}
.suite__exp__txt__function {
    margin-top: 30px;
}
.suite__exp__txt__function h4 {
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}
.suite__exp__txt__function__flex {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}
.suite__exp__txt__function__flex ul {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 12px 0;
}
.suite__exp__txt__function__flex ul li {
    font-size: 12px;
    line-height: 1.3;
    padding-left: 15px;
    position: relative;
}
.suite__exp__txt__function__flex ul li::before {
    content: '';
    width: 3px;
    height: 3px;
    background: var(--colorblack);
    border-radius: 100%;
    position: absolute;
    top: 8px;
    left: 5px;
}
.suite__exp__txt__function__add {
    font-size: 12px;
    text-align: end;
    margin-top: 10px;
    opacity: .6;
}
.suite__exp__img {
    width: 50%;
}
.suite__exp__img img {
    width: 100%;
}

/* addon */
.suite__addon {
    margin-top: 70px;
    display: flex;
    flex-direction: column;
    gap: 70px 0;
}
.suite__addon__cnt__index {
    display: flex;
    justify-content: space-between;
}
.suite__addon__cnt__index__ttl {
    width: 40%;
}
.suite__addon__cnt__index__ttl__item {
    width: 86px;
    font-size: 14px;
    text-align: center;
    border-radius: 30px;
    background: var(--colororange);
    padding: 3px 0;
}
.suite__addon__cnt__index__ttl h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 5px;
}
.suite__addon__cnt__index__ttl h3 span {
    display: block;
    font-size: 24px;
    font-weight: 700;
    text-indent: -1.5rem;
    padding-left: 1.5rem;
    margin-left: -15px;
}
.suite__addon__cnt__index p {
    width: 55%;
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-top: 30px;
    opacity: .6;
}
.suite__addon__cnt__exp {
    margin-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.suite__addon__cnt__exp__img {
    width: 55%;
}
.suite__addon__cnt__exp__img img {
    width: 100%;
}
.suite__addon__cnt__exp__function {
    width: 40%;
}
.suite__addon__cnt__exp__function h4 {
    font-size: 12px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-bottom: 10px;
}
.suite__addon__cnt__exp__function__flex {
    margin-top: 15px;
    display: flex;
    justify-content: space-between;
}
.suite__addon__cnt__exp__function__flex ul {
    width: 48%;
    display: flex;
    flex-direction: column;
    gap: 12px 0;
}
.suite__addon__cnt__exp__function__flex ul li {
    font-size: 12px;
    line-height: 1.3;
    padding-left: 15px;
    position: relative;
}
.suite__addon__cnt__exp__function__flex ul li::before {
    content: '';
    width: 3px;
    height: 3px;
    background: var(--colorblack);
    border-radius: 100%;
    position: absolute;
    top: 8px;
    left: 5px;
}
.suite__addon__cnt__exp__function__add {
    font-size: 12px;
    text-align: end;
    margin-top: 10px;
    opacity: .6;
}
@media screen and (min-width: 1512px) {
    .suite__container {
        padding-top: 2rem;
    }
    /* about */
    .suite__about__index {
        max-width: 89rem;
    }
    .suite__about__index p {
        font-size: 1.4rem;
        margin-top: 3rem;
    }
    .suite__about__movie {
        margin-top: 7.5rem;
    }
    .suite__about__movie::before, .suite__about__movie::after {
        width: 10rem;
    }
    .suite__about__movie__bg::before, .suite__about__movie__bg::after {
        height: 10rem;
    }
    .suite__about__movie__comment {
        width: 21rem;
        border-radius: 1rem;
        border: .1rem solid rgba(0, 0, 0, 0.2);
        padding: 2rem;
    }
    .suite__about__movie__comment01 {
        top: -3rem;
    }
    .suite__about__movie__comment02 {
        bottom: -3rem;
    }
    .suite__about__movie__comment03 {
        top: -3rem;
    }
    .suite__about__movie__comment__summary {
        font-size: 1.4rem;
    }
    .suite__about__movie__comment p {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
    .suite__about__movie__item {
        width: 24rem;
    }
    /* exp */
    .suite__exp {
        margin-top: 10rem;
    }
    .suite__exp__txt h3 {
        font-size: 2.6rem;
    }
    .suite__exp__txt p {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }
    .suite__exp__txt__function {
        margin-top: 3rem;
    }
    .suite__exp__txt__function h4 {
        font-size: 1.2rem;
        border-bottom: .1rem solid rgba(0, 0, 0, 0.2);
        padding-bottom: 1rem;
    }
    .suite__exp__txt__function__flex {
        margin-top: 1.5rem;
    }
    .suite__exp__txt__function__flex ul {
        gap: 1.2rem 0;
    }
    .suite__exp__txt__function__flex ul li {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }
    .suite__exp__txt__function__flex ul li::before {
        width: .3rem;
        height: .3rem;
        top: .8rem;
        left: .5rem;
    }
    .suite__exp__txt__function__add {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
    /* addon */
    .suite__addon {
        margin-top: 7rem;
        gap: 7rem 0;
    }
    .suite__addon__cnt__index__ttl__item {
        width: 8.6rem;
        font-size: 1.4rem;
        border-radius: 3rem;
        padding: .3rem 0;
    }
    .suite__addon__cnt__index__ttl h3 {
        font-size: 2.4rem;
        margin-top: .5rem;
    }
    .suite__addon__cnt__index__ttl h3 span {
        font-size: 2.4rem;
        margin-left: -1.5rem;
    }
    .suite__addon__cnt__index p {
        font-size: 1.4rem; 
        margin-top: 3rem;
    }
    .suite__addon__cnt__exp {
        margin-top: 3rem;
    }
    .suite__addon__cnt__exp__function h4 {
        font-size: 1.2rem;
        border-bottom: .1rem solid rgba(0, 0, 0, 0.2);
        padding-bottom: 1rem;
    }
    .suite__addon__cnt__exp__function__flex {
        margin-top: 1.5rem;
    }
    .suite__addon__cnt__exp__function__flex ul {
        gap: 1.2rem 0;
    }
    .suite__addon__cnt__exp__function__flex ul li {
        font-size: 1.2rem;
        padding-left: 1.5rem;
    }
    .suite__addon__cnt__exp__function__flex ul li::before {
        width: .3rem;
        height: .3rem;
        top: .8rem;
        left: .5rem;
    }
    .suite__addon__cnt__exp__function__add {
        font-size: 1.2rem;
        margin-top: 1rem;
    }
}
@media screen and (max-width: 1400px) {
    .suite__about__movie {
        margin-top: 80px;
    }
    .suite__about__movie__comment01 {
        top: -50px;
    }
    .suite__about__movie__comment02 {
        bottom: -40px;
    }
    .suite__about__movie__comment03 {
        top: -50px;
    }
    .suite__about__movie__item {
        width: 220px;
        top: 8%;
    }
}
@media screen and (max-width: 1300px) {
    .suite__about__movie {
        margin-top: 100px;
    }
    .suite__about__movie__comment01 {
        top: -80px;
        left: -30px;
    }
    .suite__about__movie__comment02 {
        bottom: -60px;
    }
    .suite__about__movie__comment03 {
        top: -80px;
        right: -30px;
    }
    .suite__about__movie__item {
        width: 220px;
        top: 6%;
    }
}
@media screen and (max-width: 767px) {
    .suite__container {
        padding-top: 10px;
    }
    /* about */
    .suite__about__index {
        width: 100%;
        flex-wrap: wrap;
    }
    .suite__about__index__img {
        width: 80%;
        margin: 0 auto;
    }
    .suite__about__index p {
        width: 100%;
        font-size: 13px;
        margin-top: 30px;
    }
    .suite__about__movie {
        margin-top: 230px;
    }
    .suite__about__movie::before, .suite__about__movie::after {
        width: 20px;
    }
    .suite__about__movie__bg::before, .suite__about__movie__bg::after {
        height: 20px;
    }
    .suite__about__movie__comment {
        width: 130px;
        border-radius: 10px;
        padding: 15px;
    }
    .suite__about__movie__comment01 {
        top: -200px;
        left: 0;
    }
    .suite__about__movie__comment02 {
        bottom: -120px;
    }
    .suite__about__movie__comment03 {
        top: -200px;
        right: 0;
    }
    .suite__about__movie__comment__summary {
        font-size: 12px;
    }
    .suite__about__movie__comment p {
        font-size: 11px;
        margin-top: 7px;
    }
    .suite__about__movie__item {
        width: 200px;
        top: -15%;
    }
    /* exp */
    .suite__exp {
        margin-top: 170px;
        flex-wrap: wrap;
    }
    .suite__exp__txt {
        width: 100%;
    }
    .suite__exp__txt h3 {
        font-size: 20px;
    }
    .suite__exp__txt p {
        font-size: 13px;
    }
    .suite__exp__txt__function {
        margin-top: 30px;
    }
    .suite__exp__img {
        width: 100%;
        margin-top: 20px;
    }
    /* addon */
    .suite__addon {
        margin-top: 50px;
        flex-wrap: wrap;
        gap: 50px 0;
    }
    .suite__addon__cnt__index {
        flex-wrap: wrap;
    }
    .suite__addon__cnt__index__ttl {
        width: 100%;
    }
    .suite__addon__cnt__index__ttl__item {
        width: 75px;
        font-size: 12px;
        padding: 2px 0;
    }
    .suite__addon__cnt__index__ttl h3 {
        font-size: 20px;
    }
    .suite__addon__cnt__index__ttl h3 span {
        font-size: 20px;
        text-indent: -1.2rem;
        padding-left: 1.2rem;
        margin-left: -13px;
    }
    .suite__addon__cnt__index p {
        width: 100%;
        font-size: 13px;
        margin-top: 20px;
    }
    .suite__addon__cnt__exp {
        margin-top: 20px;
        flex-wrap: wrap;
    }
    .suite__addon__cnt__exp__img {
        width: 100%;
    }
    .suite__addon__cnt__exp__function {
        width: 100%;
        margin-top: 30px;
    }
}



/* plan */
.plan__cnt__exp {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.plan__cnt__exp__price {
    width: 49%;
    background: #FFF;
    background-image: radial-gradient(#e4e3dd 8%, transparent 8%);
    background-size: 15px 15px;
    border: 1px solid rgba(0, 0, 0, .2);
    padding: 50px 20px;
}
.plan__cnt__exp__price__index {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
}
.plan__cnt__exp__price__index span {
    display: block;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}
.plan__cnt__exp__price p {
    font-size: 16px;
    text-align: center;
    line-height: 1.6;
    margin-top: 30px;
}
.plan__cnt__exp__price p strong {
    color: var(--colororange);
}
.plan__cnt__exp__question {
    width: 46%;
}
.plan__cnt__exp__question h3 {
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    padding-bottom: 10px;
}
.plan__cnt__exp__question p {
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-top: 15px;
}
.plan__cnt__exp__question ul {
    margin-top: 30px;
}
.plan__cnt__exp__question ul li {
    font-size: 12px;
    line-height: 1.3;
    text-indent: -.8rem;
    padding-left: .8rem;
    margin-top: 5px;
    opacity: .6;
}
.plan__cnt__message {
    font-size: 24px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-top: 50px;
}
.plan__cnt__message span {
    color: var(--colororange);
    font-weight: 700;
}
@media screen and (min-width: 1512px) {
    .plan__cnt__exp__price {
        background-size: 1.5rem 1.5rem;
        border: .1rem solid rgba(0, 0, 0, .2);
        padding: 5rem 2rem;
    }
    .plan__cnt__exp__price__index {
        font-size: 2.8rem;
    }
    .plan__cnt__exp__price__index span {
        font-size: 1.8rem;
    }
    .plan__cnt__exp__price p {
        font-size: 1.6rem;
        margin-top: 3rem;
    }
    .plan__cnt__exp__question h3 {
        font-size: 1.4rem;
        border-bottom: .1rem solid rgba(0, 0, 0, .2);
        padding-bottom: 1rem;
    }
    .plan__cnt__exp__question p {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }
    .plan__cnt__exp__question ul {
        margin-top: 3rem;
    }
    .plan__cnt__exp__question ul li {
        font-size: 1.2rem;
        margin-top: .5rem;
    }
    .plan__cnt__message {
        font-size: 2.4rem;
        margin-top: 5rem;
    }
}
@media screen and (max-width: 767px) {
    .plan__cnt__exp {
        flex-wrap: wrap;
    }
    .plan__cnt__exp__price {
        width: 100%;
        padding: 30px 10px;
    }
    .plan__cnt__exp__price__index {
        font-size: 19px;
    }
    .plan__cnt__exp__price__index span {
        display: block;
        font-size: 14px;
    }
    .plan__cnt__exp__price p {
        font-size: 13px;
        margin-top: 15px;
    }
    .plan__cnt__exp__question {
        width: 100%;
        margin-top: 20px;
    }
    .plan__cnt__exp__question h3 {
        font-size: 14px;
    }
    .plan__cnt__exp__question p {
        font-size: 13px;
        margin-top: 10px;
    }
    .plan__cnt__exp__question ul {
        margin-top: 20px;
    }
    .plan__cnt__message {
        font-size: 18px;
        text-align: left;
        margin-top: 30px;
    }
}



/* conversion */
.conversion__cnt__txt strong {
    font-size: 34px;
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1.4;
}
.conversion__cnt__txt p {
    font-size: 16px;
    letter-spacing: 0.03em;
    line-height: 1.6;
    margin-top: 30px;
}
.conversion__cnt__btn__wrap {
    width: fit-content;
    margin: 60px 0 0 auto;
    display: flex;
    gap: 0 30px;
}
.conversion__cnt__btn__wrap a {
    width: 250px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border-radius: 5px;
    padding: 15px 0;
    transition: opacity .3s ease;
}
.conversion__cnt__btn__wrap a:hover {
    opacity: .5;
}
.conversion__cnt__btn01 {
    color: #FFF;
    background: var(--colororange);
}
.conversion__cnt__btn02 {
    color: var(--colororange);
    background: #FFF;
    border: 1px solid var(--colororange);
}
@media screen and (min-width: 1512px) {
    .conversion__cnt__txt strong {
        font-size: 3.4rem;
    }
    .conversion__cnt__txt p {
        font-size: 1.6rem;
        margin-top: 3rem;
    }
    .conversion__cnt__btn__wrap {
        margin: 6rem 0 0 auto;
        gap: 0 3rem;
    }
    .conversion__cnt__btn__wrap a {
        width: 25rem;
        font-size: 1.6rem;
        border-radius: .5rem;
        padding: 1.5rem 0;
    }
    .conversion__cnt__btn02 {
        border: .1rem solid var(--colororange);
    }
}
@media screen and (max-width: 767px) {
    .conversion__cnt__txt strong {
        font-size: 20px;
    }
    .conversion__cnt__txt p {
        font-size: 13px;
        margin-top: 20px;
    }
    .conversion__cnt__btn__wrap {
        margin: 30px auto 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px 0;
    }
    .conversion__cnt__btn__wrap a {
        width: 250px;
        font-size: 14px;
        padding: 15px 0;
    }
}



/*** MODAL ***/
.modal {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all .3s ease;
}  
.modal.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}  
.modal__overlay {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
}  
.modal__content {
    width: 90vw;
    max-height: 95vh;
    margin: 0 auto;
    overflow-y: scroll;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}
.modal__content::-webkit-scrollbar {
    width: 3px;
}  
.modal__content::-webkit-scrollbar-track {
    background-color: #FFF;
    border-radius: 3px;
}  
.modal__content::-webkit-scrollbar-thumb {
    background-color: var(--colorblue);
    border-radius: 3px;
}
.modal__content img {
    display: block;
    width: 100%;
    height: auto;
}
.modal__close {
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    position: fixed;
    top: 30px;
    right: 30px;
    cursor: pointer;
}
.modal__close span {
    width: 100%;
    height: 1px;
    background: #FFF;
    position: absolute;
    top: 50%;
    left: 50%;
}
.modal__close span:nth-child(1) {
    content: '';
    transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close span:nth-child(2) {
    content: '';
    transform: translate(-50%, -50%) rotate(-45deg);
}
.js-modal-trigger {
    cursor: pointer;
    position: relative;
    transition: all .3s ease;
}
.js-modal-trigger:hover {
    opacity: .5;
}
@media screen and (min-width: 1512px) {
    .modal__content::-webkit-scrollbar {
        width: .3rem;
    }  
    .modal__content::-webkit-scrollbar-track {
        border-radius: .3rem;
    }  
    .modal__content::-webkit-scrollbar-thumb {
        border-radius: .3rem;
    }
    .modal__close {
        width: 3rem;
        height: 3rem;
        top: 3rem;
        right: 3rem;
    }
    .modal__close span {
        height: .1rem;
    }
}
@media screen and (max-width: 767px) {
    .modal__close {
        top: 30px;
        right: 20px;
    }
}



/*** FOOTER ***/
footer {
    background-color: var(--colorblue);
}