@charset "UTF-8";
/******************************************************************************
 Layout
******************************************************************************/
.l-main{
    width: 100%;
    background-color: #fff;
    background-image:
        radial-gradient(#f4f3f3 20%, transparent 20%),
        radial-gradient(#f4f3f3 20%, transparent 20%);
    background-size: 12px 12px;
    background-position: 0 0, 6px 6px;
}
.l-wrap{
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.l-inner{
    width: 77%;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}
.l-btn-box{
    padding: 2.3em 0 5em;
}
.l-btn-box a{
    display: block;
    width: 40%;
    max-width: 405px;
    margin: 0 auto;
}
.l-btn-box__fixed{
    width: 100%;
    max-width: 405px;
    position: fixed;
    bottom: 1em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 10;
}
@media screen and (max-width: 768px){
    .l-inner{
        width: 94%;
    }
    .l-btn-box{
        padding: 2.3em 0 2.5em;
    }
    .l-btn-box a{
        width: 80%;
    }
    .l-btn-box__fixed{
        width: 80%;
    }
}
/* footer */
.l-footer{
    background-color: #fff;
    background-image: radial-gradient(#f4f3f3 20%, transparent 20%), radial-gradient(#f4f3f3 20%, transparent 20%);
    background-size: 12px 12px;
    background-position: 0 0, 6px 6px;
    position: relative;
}
.l-footer__inner{
    max-width: 1000px;
    margin: 0 auto;
}
.l-footer__bg{
    margin-top: -18.75em;
}
.l-footer__text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
.l-footer__box{
    background: #000;
    padding: 1.25em 0 1.5em;
}
.l-footer__box ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 1.5em;
}
.l-footer__box li:not(:last-child){
    margin: 0 2.3em 0 0;
}
.l-footer__box a{
    font-size: 0.9em;
    color:#7d7d7d ; 
}
.l-footer__logo{
    width: 30%;
    max-width: 295px;
    margin: 0 auto 0.6em;
}
.l-footer__copy{
    width: 20%;
    max-width: 194px;
    margin: 0 auto;
}
@media screen and (max-width:1000px){
    .l-footer .l-inner{
        width: 100%;
    }
    .l-footer__bg{
        margin-top: -10em;
    }
}
@media screen and (max-width: 768px){
    .l-footer__bg{
        margin-top: -5em;
    }
    .l-footer__text{
        top: 30%;
    }
    .l-footer__box li:not(:last-child){
        margin: 0 1em 0 0;
    }
    .l-footer__logo{
        width: 80%;
    }
    .l-footer__copy{
        width: 80%;
    }
}
/******************************************************************************
 component
******************************************************************************/
.c-pcNone{
    display: none;
}
.c-spNone{
    display: block;
}
@media screen and (max-width: 450px){
    .c-pcNone{
        display: block;
    }
    .c-spNone{
        display: none;
    }
}

/******************************************************************************
 animate.css追加
******************************************************************************/
@-webkit-keyframes fadeInUpS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes fadeInUpS {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.animate__fadeInUpS {
    -webkit-animation-name: fadeInUpS;
    animation-name: fadeInUpS;
}
/******************************************************************************
 project
******************************************************************************/
/* mv */
.p-mv{
    position: relative;
    overflow: hidden;
}
.p-mv h1{
    position: absolute;
    top: 2em;
    right: 3%;
    width: 12.5%;
    max-width: 125px;
}
.p-mv h2{
    position: absolute;
    top: 3.75em;
    left: 7.5%;
    width: 37%;
    max-width: 373px;
}
.p-mv__girl,
.p-mv__boy{
    position: absolute;
    bottom: 0;
    right: 16.5%;
    width: 37%;
    max-width: 375px;
    z-index: 0;
}
.p-mv__boy{
    right: 5%;
    bottom: 0;
    z-index: 2;
}
.p-mv__line{
    position: relative;
    z-index: 1;
    
}
.p-mv__line img{
    display: block;
}
@media screen and (max-width: 768px){
    .p-mv h1{
        top: 1em;
    }
    .p-mv h2{
        top: 1.5em;
    }
}
@media screen and (max-width: 450px){
    .p-mv h2{
        top: 0.5em;
        width: 45%;
    }
    .p-mv__girl{
        right: 12.5%;
    }
    .p-mv__boy{
        right: 1%;
    }
}
/* contents */
.p-contents{
    position: relative;
    z-index: 1;
}
/* about01 */
.p-about01 h3{
    width: 78%;
    margin: 0 auto;
}
.p-about__box01,
.p-about__box02{
    width: 90%;
}
.p-about__box01{
    margin-top: 4.25em;
    margin-right: 0;
    margin-left: auto;
}
.p-about__box02{
    margin-top: -2.3em;
}
@media screen and (max-width: 768px){
    .p-about__box01,
    .p-about__box02{
        width: 95%;
    }
    .p-about__box01{
        margin-top: 2.5em;
    }
    .p-about__box02{
        margin-top: -0.5em;
    }
}
/* about02 */
.p-about02{
    margin-top: 1.7em;
}
.p-about__director{
    margin: 4.875em auto 0;
}
@media screen and (max-width: 768px){
    .p-about__director{
        margin: 3em auto 0;
    }
}
/* box01 */
.p-box01__content{
    position: relative;
    border-image-source: url(../img/border01.png);
    border-image-slice: 250 fill;
    border-image-width: 250px;
    border-image-repeat: round;
    margin-top: 10.8em;
    padding: 0 5% 2.5em;
}
.p-box01__content h3{
    position: absolute;
    top: -1.125em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 55%;
}
.p-box01__content p{
    padding-top: 8%;
}
@media screen and (max-width: 768px){
    .p-box01__content{
        border-image-slice: 50 fill;
        border-image-width: 50px;
        margin-top: 5em;
    }
}
@media screen and (max-width: 450px){
    .p-box01__content{
        margin-top: 2.5em;
    }
    .p-box01__content h3{
        width: 70%;
    }
}
/* box02 */
.p-box02__content{
    position: relative;
    border-image-source: url(../img/border02.png);
    border-image-slice: 250 fill;
    border-image-width: 250px;
    border-image-repeat: round;
    margin-top: 5.8em;
    padding: 0 5% 2.5em;
}
.p-box02__content h3{
    position: absolute;
    top: -1.125em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 55%;
}
.p-box02__content div >p{
    padding-top: 8%;
    padding-bottom: 1.875em;
}
.p-box02__content div >p img{
    display: block;
}
.p-box02__item:not(:first-child){
    padding: 2.81em 0 0;
}
.p-box02__item dl{
    width: 80%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 28% 65%;
    column-gap: 7%;
    align-items: center;
}
.p-box02__item dt{
    position: relative;
}
.p-box02__item:first-child dt::after,
.p-box02__item:nth-child(2) dt::after,
.p-box02__item:nth-child(3) dt::after{
    content: "";
    display: block;
    background: url("../img/box02-01arrow.png") no-repeat;
    background-size: contain;
    width: 15%;
    height: 17px;
    position: absolute;
    bottom: -1.875em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    margin-top: 0.9em;
}
.p-box02__item:nth-child(2) dt::after{
    background: url("../img/box02-02arrow.png") no-repeat;
    background-size: contain;
}
.p-box02__item:nth-child(3) dt::after{
    background: url("../img/box02-03arrow.png") no-repeat;
    background-size: contain;
}
.p-box02__item dd{
    font-size: 2.1vw;
    font-size: clamp(14px,2.1vw,21px);
    line-height: 1.57;
    letter-spacing: 0.06em;
}
.p-box02__item a{
    color: #e60012;
}
@media screen and (max-width: 768px){
    .p-box02__content{
        border-image-slice: 50 fill;
        border-image-width: 50px;
    }
    .p-box02__content div >p{
        padding-bottom: 1.5em;
    }
}
@media screen and (max-width: 450px){
    .p-box02__content{
        margin-top: 2.5em;
    }
    .p-box02__content h3{
        width: 70%;
    }
    .p-box02__item dl{
        width: 100%;
        grid-template-columns: 30% 65%;
        column-gap: 5%;
    }
    .p-box02__item:not(:first-child){
        padding: 1.5em 0 0 ;
    }
}
/* box03 */
.p-box03__content{
    position: relative;
    border-image-source: url(../img/border03.png);
    border-image-slice: 250 fill;
    border-image-width: 250px;
    border-image-repeat: round;
    margin-top: 5.8em;
    padding: 0 5% 1em;
}
.p-box03__content h3{
    position: absolute;
    top: -1.125em;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 55%;
}
.p-box03__content div >p{
    padding-top: 8%;
    padding-bottom: 1.875em;
}
.p-box03__content div >p img{
    display: block;
}
.p-box03__list{
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.p-box03__list li{
    width: 27%;
    margin: 0 3% 2.8em;
}
@media screen and (max-width: 768px){
    .p-box03__content{
        border-image-slice: 50 fill;
        border-image-width: 50px;
    }
    .p-box03__content div >p{
        padding-bottom: 1.5em;
    }
}
@media screen and (max-width: 450px){
    .p-box03__content{
        margin-top: 2.5em;
    }
    .p-box03__content h3{
        width: 70%;
    }
    .p-box03__list li{
        width: 45%;
        margin: 0 2% 1.5em;
    }
}