/*======================================================================
  common style
======================================================================*/
html{
    scroll-behavior: smooth;
}

body{
    counter-reset: number 0;
    overflow-x: hidden;
    height: 100vh;
}

.wrapper_scale{
    min-width: 500px;
}

@media screen and (max-width: 500px) {
    .wrapper_scale{
        transform-origin: top left;
    }
}

img{
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a{
    transition: .3s;
}

a:active{
    opacity: 0.5;
}

@media (hover: hover) {
    a:hover{
        opacity: 0.5;
    }
}

/**** Import Fonts ****/
/** Yu-Mincho **/
/* 400 */
@font-face {
	font-family: 'YuMinchoRegular';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/yu-mincho-regular.woff2') format('woff2'), url('../font/yu-mincho-regular.woff') format('woff'), url('../font/yu-mincho-regular.ttf') format('truetype'); 
}

/* 600 */
@font-face {
	font-family: 'YuMinchoDemibold';
	font-style: normal;
	font-weight: 600;
	src: url('../fonts/yu-mincho-demibold.woff2') format('woff2'), url('../font/yu-mincho-demibold.woff') format('woff'), url('../font/yu-mincho-demibold.ttf') format('truetype'); 
}

/** YDWbananaslipplus **/
/* 400 */
@font-face {
	font-family: 'YDWbananaslipplus';
	font-style: normal;
	font-weight: 400;
	src: url('../fonts/YDWbananaslipplus.woff2') format('woff2'), url('../font/YDWbananaslipplus.woff') format('woff'), url('../font/YDWbananaslipplus.otf') format('truetype'); 
}

/** Color **/
:root {
    --white: #ffffff;
    --yellow-light: #f5f2ec;
    --pink: #f96b86;
    --pink-light: #ffa8b8;
    --purple: #e0c6ef;
    --blue: #5db8e9;
    --gray-light: #d3d3d3;
    --gray: #717171;
    --black: #000000;
}

.wrapper{
    position: relative;
    overflow: hidden;
    height: 100%;
    background: url(../images/bg_body.png) center top / 100vw auto , var(--yellow-light);
    padding: 40px 0 0 0;
}

.box_wrap {
    margin: 0 auto;
    max-width: 1000px;
    box-sizing: border-box;
}

.logo{
    display: block;
}

/* button_registration */
.button_registration{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 140px;
    height: 140px;
    border-radius: 50%;
}

.button_registration::after{
    content: "";
    display: block;
    box-sizing: border-box;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    background: var(--white);
    border: 1px solid var(--black);
    position: absolute;
    bottom: -5px;
    right: -5px;
    z-index: -2;
}

.button_registration p{
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--black);
    background: var(--blue);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    position: relative;
    top: 0;
    left: 0;
    transition: .3s;
    font-family: "YDWbananaslipplus", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    text-align: center;
    -webkit-text-stroke: .5px var(--black);
    text-stroke: .5px var(--black);
    color: var(--white);
}

.button_registration p::after{
    content: "";
    display: block;
    width: 39px;
    height: 36px;
    position: absolute;
    bottom: 25px;
    right: -10px;
    background: url(../images/icon_finger.png) no-repeat;
}

.button_registration span{
    display: block;
}

.button_registration:active{
    opacity: 1;
}

.button_registration:active p{
    background: var(--white);
    top: 3px;
    left: 3px;
}

.button_registration:active p::after{
    bottom: 25px;
    right: -10px;
}

@media (hover: hover) {
    .button_registration:hover{
        opacity: 1;
    }

    .button_registration:hover p{
        background: var(--white);
        top: 3px;
        left: 3px;
    }

    .button_registration:hover p::after{
        bottom: 25px;
        right: -10px;
    }
}

/*======================================================================
  Body
======================================================================*/
.box_outside{
    max-width: 1024px;
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-53%,-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.box_outside .logo{
    font-family: "Abril Fatface", sans-serif;
    font-size: 3.375rem;
    font-weight: 400;
    color: var(--pink);
}

.content{
    max-width: 500px;
    margin: 0 auto;
    background: var(--white);
    font-family: "NotoSansJP", sans-serif;
}

@media screen and (max-width: 1200px) {
    .wrapper .logo,
    .wrapper .button_registration{
        visibility: hidden;
        opacity: 0;
    }
}

@media screen and (max-width: 768px) {
    .wrapper{
        padding: 0;
    }
    .content{
        max-width: 768px;
    }
}

/*======================================================================
  Header
======================================================================*/
.header_sp{
    height: 0;
    visibility: hidden;
}

@media screen and (max-width: 1200px) {
    .header_sp{
        height: 100%;
        visibility: visible;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--white);
        padding: 10px 20px 15px 20px;
    }

    .button_registration_header{
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        box-sizing: border-box;
        width: fit-content;
    }
    
    .button_registration_header p{
        box-sizing: border-box;
        border-radius: 5px;
        font-family: "YDWbananaslipplus", sans-serif;
        font-size: 1.25rem;
        font-weight: 400;
        -webkit-text-stroke: .5px var(--black);
        text-stroke: .5px var(--black);
        color: var(--white);
        border: 1px solid var(--black);
        background: var(--blue);
        padding: 10px 24px;
        position: relative;
        top: 0;
        left: 0;
        z-index: 10;
        transition: .3s;
    }
    
    .button_registration_header::after{
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 5px;
        left: 5px;
        z-index: 1;
        border-radius: 5px;
        border: 1px solid var(--black);
        background: var(--white);
    }
    
    .button_registration_header:active{
        opacity: 1;
    }

    .button_registration_header:active p{
        top: 3px;
        left: 3px;
        background: var(--white);
    }
    
    @media (hover: hover) {
        .button_registration_header:hover{
            opacity: 1;
        }
        .button_registration_header:hover p{
            top: 3px;
            left: 3px;
            background: var(--white);
        }
    }
}

@media screen and (max-width: 768px) {
    .header_sp{
        position: fixed;
        top: 0;
        z-index: 10000;
        width: 100%;
        height: auto;
    }
}

/* @media screen and (max-width: 500px) and (min-width: 320px) {
    .header_sp{
        flex-direction: column;
        gap: 20px;
    }

    .header_sp > .logo{
        margin: 0 auto 0 0;
        visibility: visible;
        height: 100%;
    }
} */

/*======================================================================
  MV
======================================================================*/
.mv{
    position: relative;
    box-sizing: border-box;
    height: 780px;
    background: url(../images/mv.jpg) no-repeat center center / 100% auto;
    padding: 9px 17px 0 17px;
}

.mv small{
    display: block;
    color: var(--gray);
    font-size: 0.5rem;
    text-align: right;
}

.mv h1{
    font-family: "YDWbananaslipplus", sans-serif;
    color: var(--pink);
    font-size: 2.25rem;
    text-align: center;
    transform: rotate(-8deg);
    margin: 45px 0 0 0;
}

.mv h1 span{
    display: block;
}

@media screen and (max-width: 768px) {
    .mv{
        margin: 70px 0 0 0;
    }
}

/*======================================================================
  Experience
======================================================================*/

.experience{
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 460px;
    width: calc(100% - 40px);
}

.experience h2{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    box-sizing: border-box;
    font-family: "YDWbananaslipplus", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1rem;
    background: url(../images/bg_text_small.jpg) no-repeat;
    padding: 10px 20px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.experience ul{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: -13px 0 0 0;
}

.experience ul li{
    border: 1px solid var(--black);
    background: var(--white);
    padding: 10px 19px;
}

.experience ul li .img_wrap{
    display: block;
    margin: 0 auto;
    width: 101px;
    height: 101px;
}

.experience ul li p{
    text-align: center;
    font-family: "YuMinchoDemibold", sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.25rem;
    letter-spacing: -0.08em;
    margin: 10px 0 0 0;
}

.experience ul li p span{
    display: block;
}

/*======================================================================
  About
======================================================================*/
.about{
    margin: 53px 0 0 0;
    padding: 0 20px;
}

.about h2{
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    box-sizing: border-box;
    font-family: "YDWbananaslipplus", sans-serif;
    font-size: 2.25rem;
    font-weight: 400;
    background: url(../images/bg_text_medium.jpg) no-repeat;
    padding: 8px 10px;
    margin: 0 auto;
    transform: rotate(4deg);
}

.about ul{
    max-width: 460px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 15px auto 0;
}

.about ul li{
    padding: 15px 0;
}

.about ul li .box_detail h3{
    display: block;
    width: fit-content;
    position: relative;
    text-align: center;
    line-height: 1.5rem;
    color: var(--pink);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 0 0 0 34px;
}

.about ul li .box_detail h3::before{
    font-family: "Allura", sans-serif;
    font-size: 3.75rem;
    font-weight: 400;
    color: var(--gray-light);
    counter-increment: number 1;
    content: counter(number)".";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.about ul li .box_detail h3 span{
    display: block;
}

.about ul li .box_detail p{
    font-family: "YuMinchoRegular", sans-serif;
    margin: 20px 0 0 0;
}

.about ul li:first-child{
    background: url(../images/object_girl_1.png) no-repeat center left;
}

.about ul li:first-child .box_detail{
    width: calc(100% - 165px);
    margin: 0 0 0 auto;
}

.about ul li:nth-child(2){
    background: url(../images/object_girl_2.png) no-repeat center right;
}

.about ul li:nth-child(2) .box_detail{
    width: calc(100% - 160px);
}

.about ul li:nth-child(2) .box_detail h3{
    padding: 0 0 0 50px;
}

.about ul li:last-child{
    padding: 55px 0;
    background: url(../images/object_girl_3.png) no-repeat center left, url(../images/object_girl_4.png) no-repeat center right;
}

.about ul li:last-child .box_detail{
    width: calc(100% - 160px);
    margin: 0 auto;
}

.about ul li:last-child .box_detail h3{
    margin: 0 auto;
    padding: 0 0 0 48px;
}

.about ul li:last-child .box_detail p{
    text-align: center;
}

/*======================================================================
  Summary
======================================================================*/
.summary{
    margin: 40px 0 0 0;
}

.summary .summary_head{
    position: relative;
    z-index: 10;
    padding: 0 26px;
}

.summary .summary_head strong{
    display: block;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    font-family: "YDWbananaslipplus", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    line-height: 2.625rem;
    background: url(../images/bg_text_large.jpg) no-repeat center top;
}

.summary .summary_head strong span{
    display: block;
}

.summary .summary_head strong .marker{
    display: inline-block;
    background: linear-gradient(transparent 60%, var(--pink-light) 40%);;
}

.summary .summary_detail{
    background: var(--pink-light);
    padding: 40px 20px 20px 20px;
    margin: -20px 0 0 0;
}

.summary .summary_detail ul{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
}

.summary .summary_detail ul li{
    position: relative;
    background: var(--white);
    padding: 10px 10px 10px 50px;
}

.summary .summary_detail ul li::after{
    content: "";
    display: block;
    width: 44px;
    height: 47px;
    position: absolute;
    top: -10px;
    left: 4px;
    background: url(../images/icon_check.png) no-repeat;
}

/*======================================================================
  Footer
======================================================================*/
footer{
    padding: 20px 0 0 0;
}

footer .box_footer{
    max-width: 357px;
    box-sizing: border-box;
    padding: 0 20px;
    margin: 0 0 0 auto;
}

footer .box_footer strong{
    font-family: "YDWbananaslipplus", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--pink);
}

footer .box_footer strong span{
    display: block;
}

.button_registration_footer{
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-sizing: border-box;
    width: fit-content;
    margin: 20px auto 0;
}

.button_registration_footer p{
    box-sizing: border-box;
    border-radius: 5px;
    font-family: "YDWbananaslipplus", sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    -webkit-text-stroke: .5px var(--black);
    text-stroke: .5px var(--black);
    color: var(--white);
    border: 1px solid var(--black);
    background: var(--blue);
    padding: 10px 24px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 10;
    transition: .3s;
}

.button_registration_footer::after{
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 5px;
    left: 5px;
    z-index: 1;
    border-radius: 5px;
    border: 1px solid var(--black);
    background: var(--white);
}

.button_registration_footer:active{
    opacity: 1;
}

.button_registration_footer:active p{
    top: 3px;
    left: 3px;
    background: var(--white);
}

@media (hover: hover) {
    .button_registration_footer:hover{
        opacity: 1;
    }
    .button_registration_footer:hover p{
        top: 3px;
        left: 3px;
        background: var(--white);
    }
}

footer .box_copyright{
    position: relative;
    background: var(--purple);
    padding: 25px 0 15px;
    margin: 60px 0 0 0;
}

footer .box_copyright::before,
footer .box_copyright::after{
    content: "";
    display: block;
    position: absolute;
}

footer .box_copyright::before{
    width: 174px;
    height: 214px;
    background: url(../images/object_girl_5.png) no-repeat;
    bottom: 0;
    left: 0;
}

footer .box_copyright::after{
    width: 83px;
    height: 50px;
    background: url(../images/object_cosmetics.png) no-repeat;
    top: -42px;
    left: 50%;
    transform: translateX(-50%);
}

footer .box_copyright small{
    display: block;
    text-align: center;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
}