@charset "UTF-8";
/*** 共通事項 ***/
body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    color: #564146;
    background-color: #E6DFE080;
    text-align: center;
}
.rouge {
    color: #9E5E6F;
}
.cinzel-decorative-regular {
  font-family: "Cinzel Decorative", serif;
  font-weight: 400;
  font-style: normal;
}
.lustria-regular {
  font-family: "Lustria", serif;
  font-weight: 400;
  font-style: normal;
}

/*** ナビゲーションメニュー ***/
nav {
    /*fixedで上部固定*/
    position: fixed;
    z-index: 999;/*最前面へ*/
    width:100%;
}
nav ul {
    display: flex;
    justify-content: flex-end;
    color: #fff;
    background-color: #9D898980;
    padding: 7px 0;
}
nav ul li {
    margin-right: 30px;
    letter-spacing: 0.2em;
}
nav ul li:last-of-type {
    margin-right: 50px;
}
nav li.hover:hover {
    color: #9E5E6F;
}  
/*　上に上がる動き　*/

nav.UpMove{
    animation: UpAnime 0.5s forwards;
  }
  @keyframes UpAnime{
    from {
    opacity: 1;
    transform: translateY(0);
    }
    to {
    opacity: 0;
    transform: translateY(-100px);
    }
  }
  
  /*　下に下がる動き　*/
  
  nav.DownMove{
    animation: DownAnime 0.5s forwards;
  }
  @keyframes DownAnime{
    from {
    opacity: 0;
    transform: translateY(-100px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
  }

/*** ナビゲーションメニュー ***/


/*** ヘッダー ***/
header {
    height: 100vh;
    margin-bottom: 150px;
}
h1 {
    font-size: 120px;
    text-align: start;
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translateY(-50%);
    line-height: 1.1;
}
h2 {
    font-size: 50px;
    margin-bottom: 60px;
}
h1, h2 {
    color: #9D8989;
}
main .rouge {
    font-size: 58px;
}
/*** ヘッダー ***/


/*** メイン ***/
article {
    margin-bottom: 150px!important;
}
/** service **/
#service h3 {
    color: #fff;
    font-size: 34px;
    letter-spacing: 0.3em;
    background-color: #9D8989;
    padding: 7px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}
#service h4 {
    font-size: 26px;
    padding: 50px 0;
    letter-spacing: 0.21em;
    line-height: 1.6;
}
section {
    margin-bottom: 100px;
}
.whiteBox {
    margin: 0 auto;
    background-color: #ffffff80;
    border-radius: 20px;
}
#webSeisaku .whiteBox {
    height: 600px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
#webSeisaku p {
    margin-bottom: 15px;
}
#webSeisaku .whiteBox div {
    width: 33%;
}
#webSeisaku .whiteBox img {
    width: 100px;
}
#webSeisaku .whiteBox div p:first-of-type {
    margin-top: 50px;
}
#originalCosme h3 {
    font-size: 30px;
}
#originalCosme h3 span {
    padding: 0 4px;
    font-size: 24px;
}
#originalCosme .whiteBox {
    height: 540px;
}
#originalCosme p {
    margin-bottom: 30px;
}
#originalCosme .whiteBox img {
    width: 326px;
    height: 100%;;
}
#cosmeDesc {
    margin-left: 70px;
}
/** service **/

/** about **/
#about div img {
    width: 270px;
    height: 100%;
    margin: 30px 0 0 20px;
    display: inline-block;
}
#profile {
    margin-left: 80px;
    text-align: start;
}
#profile h3 {
    font-size: 32px;
    letter-spacing: 0.2em;
    margin-bottom: 10px;
    letter-spacing: 0.3em;
}
#profile h4 {
    color: #9E5E6F90;
    font-size: 24px;
    letter-spacing: 0.18em;
    margin-bottom: 30px;
    letter-spacing: 0.18em;
}
#profile p {
    margin-bottom: 20px;
    line-height: 1.8;
}
/** about **/

/** skills **/
#skills .whiteBox {
    padding-top: 60px;
    height: 490px;
    flex-wrap: wrap;
}
#skills img {
    width: 100px;
    display: inline-block;
    margin-bottom: 15px;
}
.skillList {
    justify-content: space-around;
}
/** skills **/

/** works **/
figcaption {
    width: 35vw;
    margin: 30px auto 20px!important;
    padding: 20px 0;
    font-size: 14px;
}
#works dl {
    margin-top: 10px;
    width: 100%;
    flex-wrap: wrap;
    display: flex;
}
#works dt {
    width: 30%;
    text-align: end;
    margin-bottom: 5px;
}
#works dl span {
    padding: 0 2%;
}
#works dd {
    width: 60%;
    text-align: start;
    margin-bottom: 5px;
}
/** works **/
/** contact **/
#contact .whiteBox {
    padding: 50px 0;
}
/** contact **/
/*** メイン ***/

/* スマホ用 */
@media only screen and (max-width:480px) {
    body {
        font-size: 14px;
    }
    header {
        height: 80vh;
        margin-bottom: 30px;
    }
    h1 {
        font-size: 46px;
        text-align: start;
        position: absolute;
        top: 40%;
        left: 5%;
        transform: translateY(-50%);
        line-height: 1.1;
    }
    h1 span:nth-of-type(5) {
        margin-left: 60px!important;
    }
    h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }
    h1, h2 {
        color: #9D8989;
    }
    main .rouge {
        font-size: 28px;
    }
    article:not(#work) {
        width: 90vw;
        margin: 0 auto;
    }
    article {
        margin-bottom: 50px!important;
    }
    /** service **/
    #service h3 {
        font-size: 20px;
        padding: 3px 0;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
    }
    #service h4 {
        font-size: 18px;
        padding: 23px 0;
        /* letter-spacing: 0.21em;
        line-height: 1.6; */
    }
    section {
        margin-bottom: 50px;
    }
    .whiteBox {
        margin: 0 auto;
        border-radius: 10px;
        display: block!important;
    }
    #webSeisaku .whiteBox {
        height: 1080px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }
    #webSeisaku p {
        margin-bottom: 15px;
    }
    #webSeisaku .whiteBox div {
        width: 80vw;
        margin: auto;
    }
    #webSeisaku .whiteBox img {
        width: 70px;
    }
    #webSeisaku .whiteBox div p:first-of-type {
        margin-top: 30px;
    }
    #originalCosme h3 {
        font-size: 17px;
    }
    #originalCosme h3 span {
        padding: 0 2px;
        font-size: 16px;
    }
    .mobile {
        width: 80vw;
        margin: 0 auto;
    }
    #originalCosme .whiteBox .mobile div:first-of-type {
        display: block;
        width: 80vw;
        margin: 0 auto;
    }
    #originalCosme .whiteBox {
        height: 650px;
    }
    #originalCosme p {
        margin-bottom: 30px;
    }
    #originalCosme .whiteBox img {
        width: 312px;
        height: 100%;;
    }
    #cosmeDesc {
        margin-left: 0;
    }
    /** service **/
    /** about **/
    #about div img {
        width: 150px;
        height: 100%;
        margin: 0;
        display: inline-block;
    }
    #about div:first-of-type {
        display: block;
    }
    #profile {
        margin-left: 0;
    }
    #profile h3 {
        margin: 15px 0 5px;
        text-align: center;
        font-size: 24px;
    }
    #profile h4 {
        text-align: center;
        font-size: 20px;
    }
    #profile p {
        line-height: 1.4;
    }
    /** about **/
    /** skills **/
    #skills .whiteBox {
        padding-top: 40px;
        height: 490px;
    }
    #skills img {
        width: 70px;
        margin-bottom: 10px;
    }
    .skillList {
        width: 80vw;
        margin: 0 auto;
        justify-content: space-around;
        flex-wrap: wrap;
    }
    .skillList li {
        margin-bottom: 10px;
    }
    /** skills **/

    /** works **/    
    figcaption {
        width: 95vw;
        margin: 10px auto!important;
        padding: 7px 0;
        font-size: 12px;
    }
    /** contact **/
    #contact {
        height: 350px;
    }
    #contact .whiteBox {
        padding: 30px 0 20px;
    }
    #contact .whiteBox {
        width: 80vw;
        /* opacity: 1!important; */
        height: 230px;
    }
/** contact **/
}