@charset "UTF-8";
/*共通*/
html{
    font-size: 62.5%;
}
body{
    color: #5b4c4a;
    font-size: 1.4rem;
    line-height: 1.7;
    font-family: 'Glory', sans-serif;
}
img{
    max-width: 100%;
    height: auto;
}
section{
    padding: 35px 0 50px 0;
}
h2{
    text-align: center;
}
.inner{
    padding: 0 4%;
}
.go_top_btn{
    font-size: 1.6rem;
    text-align: center;
    line-height: 100%;
    color: #e7e7d1;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #3f4e4e;
    opacity: 0.7;
    border-radius: 50%;
    padding: 5px 10px;
}
.fadein {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s;
  }
/*スクロールダウン*/
.scroll_toppage{
    display: inline-block;
    position: absolute;
    right: 8px;
    bottom: 210px;
    z-index: 2;
    padding: 10px 10px 110px;
    color: #073f3f;
    overflow: hidden;
    font-size: 1.0rem;
    line-height: 1;
    letter-spacing: .2rem;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
}
.scroll_toppage::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background-color: #5b4c4a;
    animation: sdl 1.5s ease infinite;
}
@keyframes sdl{
    0% {
        transform: translateY(-70%);
    }
    50%, 100% {
        transform: translateY(30px);
    }
}

.scroll_aboutpage{
    display: inline-block;
    position: absolute;
    right: 4px;
    bottom: 260px;
    z-index: 2;
    padding: 10px 10px 110px;
    color: #feeee7;
    overflow: hidden;
    font-size: 1.0rem;
    line-height: 1;
    letter-spacing: .2rem;
    text-transform: uppercase;
    text-decoration: none;
    writing-mode: vertical-lr;
}
.scroll_aboutpage::after{
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 100px;
    background-color: #f86bb2;
    animation: sdl 1.5s ease infinite;
}
@keyframes sdl{
    0% {
        transform: translateY(-70%);
    }
    50%, 100% {
        transform: translateY(30px);
    }
}

@media (min-width:599px){
    .scroll_toppage,.scroll_aboutpage{
        font-size: 1.8rem;
        right: 32px;
        bottom: 140px;
        }
}
@media (min-width: 769px){
    .inner{
        max-width: 1040px;
        margin: 0 auto;
        padding: 0 20px;
    }
    .go_top_btn{
     font-size: 2.4rem;
     padding: 5px 13px;
    }
    .scroll_toppage,.scroll_aboutpage{
        bottom: 165px;
    }
}
@media (min-width:1023px){
    .scroll_aboutpage{
        bottom: 90px;
        }
}
@media (min-width:1299px){
    .scroll_toppage{
        bottom: 90px;
        }
}

/*----------
   Header
----------*/
.header{
    background-color:#596d6d;
    padding: 10px;
}
.header .inner{
    display: flex;
    justify-content: space-between;
}
/*ハンバーガーメニューのボタン*/
.nav_btn{
    width: 35px;
    height: 35px;
    position: relative;/*3本線を配置する基準*/
}
.nav_btn span{
    border-bottom: 3px solid #f8f4e6;
    width: 100%;
    display: block;
    position: absolute;
}
.nav_btn span:nth-child(1){
    top: 12px;
}
.nav_btn span:nth-child(2){
    top: 25px;
}
.nav_btn span:nth-child(3){
    top: 38px;
}
/*.nav_btnにjQueryで.openを付与した場合の設定*/
.nav_btn.open{
    z-index: 100;/*重なり順を1番上に指定*/
    position: fixed;/*クローズボタンを固定*/
    right: 4%;/*.innerで確保した余白に合わせる*/
}
.nav_btn.open span:nth-child(1){
    transform: rotate(-45deg);/*反時計回りに45度回転させる*/
    top: 25px;
}
.nav_btn.open span:nth-child(2),
.nav_btn.open span:nth-child(3){
    transform: rotate(45deg);/*時計回りに45度回転させる*/
    top: 25px;
}
/*グローバルナビゲーション*/
.header nav{
    position: fixed;/*ナビゲーションを固定させる*/
    top:0;
    left: 0;
    background-color: rgba(232, 215, 227, .8);
    width: 100%;
    height: 100vh;
    transition: all .4s ease-out;
    z-index: 10;/*重なり順をposition:absoluteを適用している箇所よりも上に表示させる*/
    text-align: right;
    font-size: 2.4rem;
    transform: translateY(-100%);
}
/*navにjQueryで.openを付与した場合の設定*/
.header nav.open{
    transform: translateX(0);
}
.header ul{
    margin: 100px 30px 0 0;
}
.header li{
    margin-bottom: 20px;
}
.header nav p{
    width: 30px;
    margin: 0 auto;
}
.header a{
    color: #596d6d;
}
.header nav a:hover{
    color: #011;
}
h1 img{
    height: 50px;
}


@media (min-width:769px){
    .header nav{
        height: 500px;
    }
    .nav{
        transform: translateX(0);
        width: auto;
        height: auto;
        position: static;
        padding-top: 0;
        display: flex;
        line-height: 1;
        font-size: 1.8rem;
    }
    .header ul{
        margin: 100px 50px 0 auto;
    }
    .header nav a{
        vertical-align: text-bottom;
    }
    .header li{
        margin-bottom: 40px;
    }
    .header .inner{
        max-width: 1400px;
        padding: 0 30px;
    }
}

/*----------
   Footer
----------*/
.footer{
    background-color:#596d6d;
    font-size: 1.2rem;
    color: #f8f4e6;
    text-align: center;
    padding: 40px 0 13px 0;
}
@media (min-width:769px){
    .footer{
        padding: 60px 0 13px 0;
    }
}

/*----------
  Top Page
-----------*/
.mv{
    background-image: url(../image/flower2.jpg),linear-gradient(#e7e7d1,#f1b5b8);
    background-blend-mode:overlay;
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center top;
    height: 94vw;
}
.mv p{
    text-align:center;
}
.name_1{
    font-size: 3.0rem;
    color: #300516;
    padding-top: 100px;
}
.name_2{
    font-size: 1.2rem;
    color: #513830;
}

@media (min-width:599px){
    .name_1{
        font-size: 5.0rem;
        padding-top: 120px;
    }
    .name_2{
        font-size: 1.6rem;
    }
}
@media (min-width:769px){
    .mv{
        height: 51vw;
    }
    .name_1{
        font-size: 5.0rem;
    }
    .name_2{
        font-size: 1.8rem;
    }
}
@media (min-width:1023px){
    .name_1{
        font-size: 8.0rem;
    }
    .name_2{
        font-size: 2.0rem;
    }
}
@media (min-width:1299px){
    .name_1{
        padding-top: 160px;
    }
}
/*work*/
.works{
    background-color:#e6a89b;
}
h3{
    font-size: 1.8rem;
    border-bottom: 2px dotted #aca5a5;
    margin:10px 0 36px 0;
}
.work_items img{
    width:725px;
}
.works_btn{
    background-color: #753350;
    box-shadow: 0px 4px 8px 4px rosybrown;
    color: #feeee7;
    width: 196px;
    height: 38px;
    line-height: 38px;
    border-radius: 5px;
    text-align: center;
    margin: 0 auto;
}
.works_btn a{
    display: block;
}
.works_btn:hover{
    box-shadow: 0 1px 4px rgba(0,0,0,.3);
    transform: translateY(4px);
}

@media (min-width:599px){
    .work_items ul{
        display: flex;
        justify-content: space-between;
    }
    .work_items li{
        width: 30%;
    }
}
@media (min-width:769px){
    .works_btn{
        margin: 0 auto;
    }
}

/*about*/
.about{
    background-color:#feeee7;
}
h2{
    font-size: 3.0rem;
    margin-bottom: 30px;
}
h2 span{
    font-size: 3.0rem;
    color: #b6748d;
}
.about_items li img{
    width: 300px;
    margin: 22px;
    box-shadow: 0 12px 10px -6px rgba(0, 0, 0, .4);
}
.profile_1{
    margin-top: 30px;
}
.btn_about{
    background-color: #da5771;
    box-shadow: 0px 4px 8px 4px #aa6885;
    color: #feeee7;
    width: 196px;
    height: 38px;
    line-height: 38px;
    border-radius: 5px;
    text-align: center;
    margin: 36px auto 0;
}
.btn_about a{
    display: block;
}
.btn_about:hover{
    box-shadow: 0 1px 4px rgba(0,0,0,.3);
    transform: translateY(4px);
}

@media (min-width:599px){
    .about_items{
        margin-left: 17%;
    }
}
@media (min-width:769px){
    h2,h2 span{
        font-size: 6.0rem;
        margin-bottom: 60px;
    }
    .about_items ul{
        display: flex;
    }
    .btn_about{
        margin: 0 auto;
        margin-top: 20px;
    }
    .about_items p{
        font-size: 1.5rem;
    }
    .profile{
        max-width: 290px;
    }
}

/*skill*/
.skills{
    background-color:#fdd7ce;
    background-image: url(../image/books.jpg);
    background-position: right 15% bottom 10%;
    background-repeat: no-repeat;
    background-size:70%;
}
.skill_contents li p{
    line-height: 1;
    padding-bottom: 10px;
}
.skill_contents{
    background-color: rgba(250, 255, 255, .5);
    width: 80%;
    padding: 10px 10px;
    margin-bottom: 118px;
}

@media (min-width:769px){
    .skills{
        background-position: right 9% bottom 20%;
        background-size:65%;
    }
    .skill_contents{
        width: 60%;
        padding:80px;
    }
}
@media (min-width:1023px){
    .skills{
        background-size:50%;
    }
}
@media (min-width:1299px){
    .skills{
        background-size:50%;
        background-position: right 20% bottom 20%;
    }
}
@media (min-width:1499px){
    .skills{
        background-size:40%;
        background-position: right 30% bottom 20%;
    }
}

/*----------
 works page
----------*/
.works_page{
    background-color:#ebf7e7;
}
.wrapper .menu{
    display: flex;
    margin-bottom: 30px;
}
.wrapper li{
    margin: 0 auto;
}
h6{
    font-size: 1.6rem;
    border-bottom: 2px dotted #aca5a5;
    margin-bottom: 30px;
}
.banner{
    padding: 30px 0 0 0;
}
.banner_3 img{
    width: 600px;
}
.paper{
    margin-bottom: 30px;
}
.menu li:hover{
    color: #f06d7c;
}
.last{
    margin-bottom: 20px;
}
.last_contents{
    margin-bottom: 40px;
}
.bnr1{
    margin-bottom: 20px;
}
.first{
    font-size: 1.7rem;
}
.wrapper img{
    padding-bottom: 15px;
}
.dmimg{
    padding: 0 30px 15px 30px;
}

@media (min-width:769px){
    .wrapper ul{
        display: flex;
    }
    .menu li{
        font-size: 30px;
    }
    .first{
        margin-top: 30px;
    }
    .wrapper img{
        padding: 10px 30px 20px 20px;
    }
    .banner_1,.banner_2,.banner_3,.banner_4,.dm,.name_card{
        margin-bottom: 30px;
    }
    .osechi2{
        width: 1340px;
    }
    .alcohol_img{
        width: 500px;
    }
    .dmimg{
        width: 350px;
    }
    .card_img{
        width: 500px;
    }
    .bnr1{
        margin-bottom: 0;
    }
    .banner_3 ul img{
        width: 500px;
    }
    .sub{
        padding-left: 30px;
    }
    .dm li p{
        padding-top: 115px;
    }
    .name_card li p{
        padding-top: 70px;
    }
    .web_site li p{
        padding-top: 15px;
    }
    .web_site img{
        width: 900px;
    }
}
@media (min-width:1023px){
    h6{
        font-size: 1.8rem;
    }
    .wrapper img{
        padding-top: 0;
    }
    .banner_1 li p{
        padding-top: 5px;
    }
    .banner_4 li p{
        padding-top: 40px;
    }
    .dm li p{
        padding-top: 175px;
    }
    .name_card li p{
        padding-top: 125px;
    }
    .web_site li p {
        padding-top: 50px;
    }
}
@media (min-width:1299px){
    h6{
        font-size: 2.0rem;
    }
}
/*----------
 about page
----------*/
.about_page{
    background-image: url(../image/sky.jpg);
    background-blend-mode:overlay;
    background-repeat:no-repeat;
    background-size:cover;
    background-position: center top;
    height: auto;
}
.about_page h2{
    color: #fdf28f;
}
.about_page h2 span{
    color: #f86bb2;
}
.about2 h5{
    color: #feeee7;
    padding-bottom: 20px;
    text-align: center;
    font-weight: bold;
}
.about2 p{
    text-align: center;
    color: #f7f1c3;
}
.star,.dinosaur,.hobby,.hobby2,.color,.student,.future,.mind{
    margin: 0 0 30px 0;
}
.about_page img{
    width: 80%;
}
.flower1{
    padding: 0 30px 0 30px;
    margin-bottom: 30px;
    opacity: 0.9;
}
.flower2{
    padding: 0px 0px 0px 45px;
    margin: 0 25px 0 45px;
    opacity: 0.7;
}
@media (min-width:769px){
    .about_contents{
        margin-bottom: 30px;
    }
    .about_page img{
        width: 60%;
    }
    .flower2{
        margin: 20px 0 0 47%;
    }
    .about_page img{
        width: 50%;
    }
}