@charset "UTF-8";
/* CSS Document */
:root{
    --accent-color: #ff7419;
    --bg-color: #f9f8e4;
    --bg-sub-color: #e0ead3;
    --bg-form-color: #ffedd5;
    --bg-line-color: #f0ffe9;
    --bg-tel-color: #f5f9ff;
    --bg-dot-image: radial-gradient(#dcdedd 1%, transparent 16%),
	radial-gradient(#dcdedd 1%, transparent 16%);
    --bg-dot-position: 0 0, 9px 9px;
    --bg-dot-size: 18px 18px;
    --text-color: #222d4c;
    --line-color: #13b902;
    --title-size: 1.87em;
}
html{
    scroll-behavior: smooth;
}
img,
video{
	max-width: 100%;
	height: auto;
}
#wrapper{
    padding: 80px 0 0;
}
h1{
    max-width: none;
}
.br-sp{
    display: none;
}
.br-spMax{
    display: none;
}
/*******************
MV
********************/
.mv{
    background: linear-gradient(90deg, var(--bg-color) 0%, var(--bg-color) 50%, #fffefa 50%, #fffefa 100%);
    color: var(--text-color);
    border-bottom: 2px solid var(--text-color);
}
.mvInner{
    position: relative;
    padding: 5em 2% 4em;
    margin: auto;
    margin-top: 1em;
    width: 100%;
    max-width: 1056px;
    background: url(../images/lp/generativeai/mv_pc.jpg);
    background-size: 100%;
    background-position: 50% 100%;
    background-repeat: no-repeat;
}
.mvText{
    margin-bottom: 2.4em;
    font-weight: 700;
    color: var(--text-color);
}
.mvText__sub{
    margin-bottom: .9em;
    color: var(--text-color);
    font-size: 1.125em;
}
.mvText__title{
    margin-bottom: .8em;
    font-size: 2.1em;
}
.mvText__title span{
    display: inline-block;
    background: linear-gradient(rgba(255,255,255,0) 75%, #ff996c 75%, #ff996c 92%, rgba(255,255,255,0) 92%);
    white-space: nowrap;
}
.mvText__text{
    color: var(--text-color);
    font-size: 1.125em;
    line-height: 2;
}
.mvButton__button{
    display: block;
    margin-bottom: 0.5em;
    padding: 1em 1em;
    width: 38.38%;

    max-width: 408px;
    color: #fff;
    font-size: 1.25em;
    font-weight: 700;
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 3em;
    text-align: center;
}
.mvButton__button:hover{
    color: var(--accent-color);
    background: #fff;
}
.mvButton__attention{
    font-size: 1em;
}
.mvPoint{
    width: 52%;
    position: absolute;
    right: 1%;
    bottom: 8%;
    display: flex;
    gap: 1.5%;
    font-size: 0.95em;
    font-weight: 700;
    text-align: center;
}
.mvPoint__item{
    position: relative;
    width: 33.333%;
    padding: 1.7em .2em 1em;
    background: var(--bg-color);
    border: 2px solid var(--text-color);
    border-radius: .5em;
}
.mvPoint__item::before{
    position: absolute;
    content: '';
    top: -.7em;
    left: 50%;
    transform: translateX(-50%);
    background: url(../images/lp/generativeai/mv-checkbox.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 30px;
    height: auto;
    aspect-ratio: 29.5 / 26.63;
}
.mvPoint.--sp{
    display: none;
}

@media(max-width: 1230px){
    .mvInner{
        margin-top: auto;
    }
}
@media(max-width: 768px){
    .mv{
        background: linear-gradient(180deg, var(--bg-color) 0%, var(--bg-color) 50%, #fffefa 50%, #fffefa 100%);
    }
    .mvInner{
        position: relative;
        padding: 2em 2% 2em;
        aspect-ratio: 768 / 1170;
        margin: auto;
        margin-top: 0;
        width: 100%;
        background: url(../images/lp/generativeai/mv_sp.jpg);
        background-position: 50% 42%;
        background-repeat: no-repeat;
        background-size: contain;
        text-align: center;
    }
    .mvButton__button{
        margin: 0 auto .5em;
        width: 93%;
        max-width: none;
    }
    .mvText{
        margin-bottom: 100vw;
    }
    .mvText__title{
        margin-bottom: 0.5em;
    }
    .mvPoint.--pc{
        display: none;
    }
    .mvPoint.--sp{
        display: block;
        width: 90%;
        right: auto;
        left: 50%;
        bottom: 27vw;
        transform: translateX(-50%);
    }
    .mvPoint__topList{
        display: flex;
        justify-content: center;
        margin-bottom: 1.2em;
    }
    .mvPoint__bottomList{
        display: flex;
        justify-content: center;
        gap: 3%;
    }
    .mvPoint__item.--top,
    .mvPoint__item.--bottom{
        width: 48%;
    }
}
@media(max-width: 500px){
    .mvInner{
        aspect-ratio: 768 / 1200;
        background-position: 50% 43%;
    }
    .mvPoint.--sp{
        bottom: 33.5vw;
    }
    .mvText{
        margin-bottom: 110vw;
    }
    .mvText__sub{
        margin-bottom: 0.4em;
        font-size: 3.4vw;
    }
    .mvText__text{
        font-size: 3.6vw;
    }

}
@media(max-width: 415px){
    .mvInner{
        background-position: 50% 47%;
    }
    .mvText{
        margin-bottom: 113vw;
    }
    .mvPoint.--sp{
        bottom: 35vw;
    }
}


/*******************
IF
********************/
.if{
    color: var(--text-color);
    padding: 2.8em 3% 5.5em;
    background-image: var(--bg-dot-image);
    background-position: var(--bg-dot-position);
    background-size: var(--bg-dot-size);
}
.ifInner{
    margin:  auto;
    width: 100%;
    max-width: 1000px;
}
.ifTitle{
    position: relative;
    margin-bottom: .8em;
    font-size: var(--title-size);
    font-weight: 700;
    text-align: center;
}
.ifTitle::before{
    content: '';
    margin-right: 0.4em;
    margin-bottom: -0.15em;
    display: inline-block;
    width: 47px;
    height: auto;
    aspect-ratio: 47/30;
    background-image: url(../images/lp/generativeai/title.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.ifTitle::after{
    content: '';
    margin-left: 0.1em;
    margin-bottom: -0.15em;
    display: inline-block;
    width: 47px;
    height: auto;
    aspect-ratio: 47/30;
    background-image: url(../images/lp/generativeai/title.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(-1, 1);
}
.ifList{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 1.5%;
    grid-row-gap: 3.2%;    
}
.ifItem{
    padding: 1em 0.2em 1.5em;
    background: var(--bg-sub-color);
    border: 2px solid var(--text-color);
    border-radius: .5em;
    text-align: center;

}
.ifItem__title{
    margin-bottom: 0.2em;
    font-size: 1.5em;
}
.ifItem__text{
    font-size: 1.125em;
    line-height: 2;
}

@media(max-width: 768px){
    .if{
        padding: 2.8em 5% 7em;
    }
    .ifTitle{
        line-height: 1.5;
    }
    .ifTitle::before{
        content: '';
        position: absolute;
        bottom: 0.4em;
        left: 8vw;
        margin-right: 0.4em;
        margin-bottom: -0.15em;
        display: inline-block;
        width: 6vw;
    }
    .ifTitle::after{
        content: '';
        position: absolute;
        bottom: 0.4em;
        right: 8vw;
        margin-left: 0.1em;
        margin-bottom: -0.15em;
        display: inline-block;
        width: 6vw;
    }
    .ifList{
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}
@media(max-width: 700px){
    .if{
        padding-bottom: 10vw;
    }
    .ifTitle::before{
        left: 0;
    }
    .ifTitle::after{
        right: 0;
    }
}
@media(max-width: 580px){
    .ifList{
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, 1fr);
        grid-row-gap: 2em;
    }
    .ifTitle::before{
        width: 10vw;
        left: 4vw;
    }
    .ifTitle::after{
        width: 10vw;
        right: 4vw;
    }
}
/*******************
POINT
********************/
.point{
    color: var(--text-color);
    padding: 3em 5% 3em;
    background: var(--bg-color);
    text-align: center;
    border-top: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
}
.pointInner{
    margin:  auto;
    width: 100%;
    max-width: 1000px;
}
.pointTitle{
    margin-bottom: 1.5em;
    font-weight: 700;
}
.pointTitle__main{
    font-size: var(--title-size);
}
.pointTitle__sub{
    position: relative;
    color: var(--text-color);
}
.pointTitle__sub::before{
    content: '';
    margin-right: 0.4em;
    margin-bottom: -0.15em;
    display: inline-block;
    width: 29px;
    height: auto;
    aspect-ratio: 47/30;
    background-image: url(../images/lp/generativeai/title.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.pointTitle__sub::after{
    content: '';
    margin-left: 0.4em;
    margin-bottom: -0.15em;
    display: inline-block;
    width: 29px;
    height: auto;
    aspect-ratio: 47/30;
    background-image: url(../images/lp/generativeai/title.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(-1, 1);
}
.pointList{
    display: flex;
    justify-content: space-between;
}
.pointItem{
    width: 31.333%;
    text-align: center;
}
.pointItem__title{
    margin-bottom: .3em;
    color: #fff;
    font-size: 1.625em;
}
.pointItem__title span{
    padding: 0.01em 0.5em;
    margin-bottom: 0.1em;
    line-height: 1.4;
    display: inline-block;
    background: var(--text-color);
}
.pointItem__img{
    margin: auto;
    margin-bottom: 1.2em;
    display: block;
    width: 100%;
    max-width: 500px;
    border: 2px solid var(--text-color);
    border-radius: .5em;
}
.pointItem__text{
    font-size: 1.25em;
}

@media(max-width: 768px){
    .pointTitle{
        line-height: 1.5;
    }
    .pointList{
        flex-direction: column;
        gap: 2em;
    }
    .pointItem{
        width: 100%;
    }
}
@media(max-width: 580px){
    .pointTitle__sub{
        margin-bottom: 0.5em;
    }
    .pointTitle__sub::before{
        content: '';
        position: absolute;
        bottom: 0.4em;
        left: 12vw;
        margin-right: 0.4em;
        margin-bottom: -0.15em;
        display: inline-block;
        width: 6vw;
    }
    .pointTitle__sub::after{
        content: '';
        position: absolute;
        bottom: 0.4em;
        right: 12vw;
        margin-left: 0.1em;
        margin-bottom: -0.15em;
        display: inline-block;
        width: 6vw;
    }
}
@media(max-width: 400px){
    .pointTitle__sub::before{
        left: 6vw;
    }
    .pointTitle__sub::after{
        right: 6vw;
    }
}

/*******************
CONTENT/SYSTEM
********************/
.contentSystem{
    padding: 3em 5% 3em;
    background-image: var(--bg-dot-image);
    background-position: var(--bg-dot-position);
    background-size: var(--bg-dot-size);
}
.contentSystemInner{
    margin:  auto;
    width: 100%;
    max-width: 1000px;
}
/*******************
CONTENT
********************/
.content{
    padding-bottom: 3em;
}
.contentTitle{
    margin-bottom: 1.5em;
    color: var(--text-color);
    font-size: var(--title-size);
    font-weight: 700;
    text-align: center;
}
.contentTitle>span{
    display: inline-block;
}
.contentList{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 3%;
    grid-row-gap: 3%;
}
.contentItem{
    background: var(--bg-sub-color);
    border: 2px solid var(--text-color);
    border-radius: .5em;
}
.contentItem__title{
    padding: 0.5em 1.2em;
    color: #fff;
    font-size: 1.5em;
    background: var(--text-color);
    border-radius: .1em .1em 0 0;
}
.contentItem__list{
    padding: 1em 1.5em 2em;
    display: flex;
    flex-direction: column;
    gap: .4em;
    font-size: 1.125em;
}
.contentItem__item{
    text-indent: -1em;
    margin-left: 1em;
}
.contentItem__item::before{
    content: '・';
}

@media(max-width: 768px){
    .contentTitle{
        line-height: 1.5;
    }
    .contentList{
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 1fr);
    }
}

/*******************
SYSTEM
********************/
.systemTitle{
    margin-bottom: 1.5em;
    color: var(--text-color);
    font-size: var(--title-size);
    text-align: center;
}
.systemTable{
    margin-bottom: 1em;
    width: 100%;
    border-radius: .5em;
    text-align: center;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 2px solid var(--text-color);
    font-size: 1.125em;
}
.systemTable th,
.systemTable td{
    padding: .2em;
    width: 33.3%;
    border-right: 2px solid var(--text-color);
}
.systemTable th{
    font-weight: 700;
    background: var(--bg-color);
    border-bottom: 2px solid var(--text-color);
}
.systemTable td{
    padding: .5em;
    background: #fff;
}
.systemTable th:last-of-type,
.systemTable td:last-of-type{
    border-right: none;
}

.attentionList{
    display: flex;
    flex-direction: column;
    gap: .2em;
    color: var(--text-color);
    font-size: .875em;
}
.attentionItem{
    text-indent: -1em;
    margin-left: 1em;
}
.attentionItem::before{
    content: '・';
}

@media(max-width: 768px){
    .systemTitle{
        line-height: 1.5;
    }
}

/*******************
FLOW
********************/
.flow{
    padding: 2em 5% 3em;
    color: var(--text-color);
    background: var(--bg-color);
    border-top: 2px solid var(--text-color);
    border-bottom: 2px solid var(--text-color);
}
.flowInner{
    margin:  auto;
    width: 100%;
    max-width: 1000px;
}
.flowTitle{
    margin-bottom: 2em;
    color: var(--text-color);
    font-size: var(--title-size);
    text-align: center;
}
.flowList{
    display: flex;
    justify-content: space-between;
    gap: 1.5%;
}
.flowItem{
    position: relative;
    padding: 2.4em 1% 2em;
    width: 33.3%;
    border: 2px solid var(--text-color);
    border-radius: .5em;
    background: #fff;
}
.flowItem__img{
    display: block;
    width: 70%;
    max-width: 250px;
    position: absolute;
    top: -1.7em;
    left: 50%;
    transform: translateX(-50%);
}
.flowItem__title{
    margin-bottom: .7em;
    font-size: 1.5em;
    font-weight: 700;
    text-align: center;
}
.flowItem__text{
    font-size: 1.125em;
    line-height: 2;
}

@media(max-width: 768px){
    .flowTitle{
        line-height: 1.5;
    }
    .flowList{
        flex-direction: column;
        gap: 3em;
    }
    .flowItem{
        padding: 2.4em 4% 2em;
        margin: auto;
        width: 100%;
        max-width: 500px;
    }
    .flowItem__img{
        width: 50%;
    }

}

/*******************
CTA
********************/
.cta{
    padding: 3.5em 5% 4.2em;
    color: var(--text-color);
    background-image: var(--bg-dot-image);
    background-position: var(--bg-dot-position);
    background-size: var(--bg-dot-size);
    text-align: center;
}
.ctaInner{
    margin:  auto;
    width: 100%;
    max-width: 1000px;
}
.ctaTitle{
    position: relative;
    margin-bottom: .8em;
    font-size: var(--title-size);
    font-weight: 700;
    text-align: center;
}
.ctaTitle::before{
    content: '';
    margin-right: 0.4em;
    margin-bottom: -0.15em;
    display: inline-block;
    width: 47px;
    height: auto;
    aspect-ratio: 47/30;
    background-image: url(../images/lp/generativeai/title.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.ctaTitle::after{
    content: '';
    margin-left: 0.4em;
    margin-bottom: -0.15em;
    display: inline-block;
    width: 47px;
    height: auto;
    aspect-ratio: 47/30;
    background-image: url(../images/lp/generativeai/title.svg);
    background-repeat: no-repeat;
    background-size: contain;
    transform: scale(-1, 1);
}
.ctaList{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 3%;
    grid-row-gap: 5%;
}
.ctaItem{
    padding: 2em 4% 1.4em;
    border: 2px solid var(--text-color);
    border-radius: .5em;
}
.ctaItem__title{
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.7;
}
.ctaItem__titleSub{
    font-size: 1.125em;
    font-weight: 700;
    line-height: 1.6;
}
.ctaItem.--form{
    grid-area: 1 / 1 / 2 / 3;
    background: var(--bg-form-color);
}
.ctaItem.--line{
    grid-area: 2 / 1 / 3 / 2;
    background: var(--bg-line-color);
}
.ctaItem.--tel{
    grid-area: 2 / 2 / 3 / 3;
    background: var(--bg-tel-color);
}
.ctaItem__botton{
    display: block;
    padding:  .3em 2em;
    margin: .6em auto 0;
    width: 100%;
    max-width: 365px;
    color: #fff;
    font-size: 1.625em;
    font-weight: 700;
    border-radius: 3em;
    transition: all 0.3s ease-in-out;
}
.ctaItem.--form .ctaItem__botton{
    background: var(--accent-color);
    border: 2px solid var(--accent-color);
}
.ctaItem.--line .ctaItem__botton{
    background: var(--line-color);
    border: 2px solid var(--line-color);
}
.ctaItem.--tel .ctaItem__botton{
    background: var(--text-color);
    border: 2px solid var(--text-color);
}
.ctaItem.--form .ctaItem__botton:hover{
    color: var(--accent-color);
    background: #fff;
}
.ctaItem.--line .ctaItem__botton:hover{
    color: var(--line-color);
    background: #fff;
}
.ctaItem.--tel .ctaItem__botton:hover{
    color: var(--text-color);
    background: #fff;
}
.ctaItem__btnAttention{
    margin-top: .2em;
    font-size: .875em;
}

@media(max-width: 768px){
    .ctaTitle{
        line-height: 1.5;
    }
    .ctaTitle::before{
        content: '';
        position: absolute;
        bottom: 0.4em;
        left: 10vw;
        margin-right: 0.4em;
        margin-bottom: -0.15em;
        display: inline-block;
        width: 6vw;
    }
    .ctaTitle::after{
        content: '';
        position: absolute;
        bottom: 0.4em;
        right: 10vw;
        margin-left: 0.1em;
        margin-bottom: -0.15em;
        display: inline-block;
        width: 6vw;
    }
    .ctaList{
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, 1fr);
    }
    .ctaItem.--form,
    .ctaItem.--line,
    .ctaItem.--tel{
        grid-area: auto;
    }
}
@media(max-width: 580px){
    .ctaTitle::before{
        width: 10vw;
        left: 0;
    }
    .ctaTitle::after{
        width: 10vw;
        right: 0;
    }
}

/*******************
ALL - resiposive
********************/
@media(max-width: 1050px){
    html{
        font-size: 80%;
    }
}
@media(max-width: 900px){
    html{
        font-size: 72%;
    }
}
@media(max-width: 768px){
    html{
        font-size: 100%;
    }
    .br-sp{
        display: block;
    }
}
@media(max-width: 580px){
    html{
        font-size: 84%;
    }
    .br-spMax{
        display: block;
    }
}
@media(max-width: 500px){
    html{
        font-size: 83%;
    }
    #wrapper {
        padding: 60px 0 20px 0;
    }
}
@media(max-width: 390px){
    html{
        font-size: 80%;
    }
}
@media(max-width: 363px){
    html{
        font-size: 75%;
    }
}
@media(max-width: 340px){
    html{
        font-size: 68%;
    }
}