@charset "utf-8";

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

/* common */
* {
    margin: 0;
    padding: 0;
    color: #000;
    font-family: Oranienbaum;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

img {
    width: 100%;
}

/* common */

/* ============================
header
=============================== */
.header {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../images/header.png);
    background-size: cover;
    height: 120px;
    z-index: 2;
    position: fixed;
    top: 0;
    width: 100%;
}

/* .top {
    margin-top: 100px;
} */

.momon_header {
    font-size: 19px;
    text-decoration: none;
    padding-left: 30px;
    transition: 0.3s;
}
.momon_header:hover {
    color: #fff;
}

.nav {
    background-color: #EBC5BF;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;

}

.nav_list {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 60px;
    padding-left: 50%;
    margin-top: 50%;
    transform: translate(-25%, -25%);
}

.nav.active {
    transform: translateX(0);
}

.nav_item {
    list-style: none;
}

.nav_item a {
    font-family: Oranienbaum;
    font-size: 30px;
    text-align: center;
    text-decoration: none;
    transition: 0.3s;
}

.nav_item a:hover {
    color: #fff;
}

.close_btn {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    display: inline-block;
    margin-top: 60px;
    margin-left: 75%;
    transition: 0.3s;
    filter: brightness(0%);
}

.close_btn:hover {
    filter: opacity(0.1);
}

.nav_list_footer {
    display: none;
}

.hbg_btn {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    margin-right: 10%;
    transition: 0.3s;
}


.hbg_btn:hover {
    filter: opacity(0.1);
}

.logo_top {
    font-size: 18px;
}

/* header pc */
@media screen and (min-width:769px) {
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);

    }

    .nav_list {
        display: flex;
        flex-direction: row;
        gap: 70px;
        width: 100%;
        align-items: center;
        padding-top: 10px;
        justify-content: flex-end;
        padding-left: 0;
        margin-top: 0;
        transform: none;

    }


    .nav_item {
        display: flex;
        margin-right: 40px;
    }

    .nav_item a {
        font-weight: 700;
        text-decoration: none;
        text-align: center;
        font-size: 16px;
    }
    .hbg_btn {
        display: none;
    }
    .close_btn {
        display: none;
    }
    .logo_top {
        font-size: 30px;
    }
}

@media screen and (min-width:1200px) {
    .nav_item a {
        font-size: 22px;
    }

    .momon_header,.momondesign {
        font-size: 24px;
    }
    .title_skills{
        margin-top: 50px;
    }
}

/* nav */

  li {
    list-style: none;
  }
  /* ↓ スライドの外枠 */
  .slide-wrapper {
    width: 100%;
    height: 590px;
    position: relative;
    overflow: hidden; /* はみ出したスライドを隠す */
    margin-top: 70px;
  }
  /*  ↓ スライド（コンテンツ） */
  .slide { /*スライド全体 */
    width: 800%;
    height: 100%;
    display: flex;
    transition: all 2s;
    margin-top: -40px;
  }
  .slide div { /* スライド */
    width: 12.5%;
    height: 100%;
    font-size: 16px;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .slide1 { /* スライドさせるために必要なクラス */
    transform: translateX(0);
  }
  .slide2 { /* スライドさせるために必要なクラス */
    transform: translateX(-12.5%);
  }
  .slide3 { /* スライドさせるために必要なクラス */
    transform: translateX(-25%);
  }
  .slide4 { /* スライドさせるために必要なクラス */
    transform: translateX(-37.5%);
  }
  .slide5 { /* スライドさせるために必要なクラス */
    transform: translateX(-50%);
  }
  .slide6 { /* スライドさせるために必要なクラス */
    transform: translateX(-62.5%);
  }
  .slide7 { /* スライドさせるために必要なクラス */
    transform: translateX(-75%);
  }
  .slide8 { /* スライドさせるために必要なクラス */
    transform: translateX(-87.5%);
  }
  .mainphoto{

    width: 100%;
    
    height: auto;
    
    }
  /* ↓ 左右のボタン */
  .next {
    position: absolute;
    width: 15px;
    height: 15px;
    right: 10px;
    bottom: 50%;
    z-index: 10;
    cursor: pointer;
    border-top: solid 3px #E27270;
    border-right: solid 3px #E27270;
    -webkit-transform: rotate(45deg) translateY(50%);
    transform: rotate(45deg) translateY(50%);
  }
  .prev {
    position: absolute;
    width: 15px;
    height: 15px;
    left: 25px;
    bottom: 50%;
    z-index: 10;
    cursor: pointer;
    border-top: solid 3px #E27270;
    border-right: solid 3px #E27270;
    -webkit-transform: rotate(-135deg) translateY(-50%);
    transform: rotate(-135deg) translateY(-50%);
  }
  /* ↓ インジケーター */
  .indicator {
    width: 100%;
    position: absolute;
    bottom: 60px;
    display: flex;
    column-gap: 18px;
    z-index: 1;
    justify-content: center;
    align-items: center;
    column-gap: 12px;
  }
  .indicator li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    list-style: none;
    background-color: #fff;
    border: 2px #E27270 solid;
    cursor: pointer;
  }
  
  .indicator li:first-of-type {
    background-color: #E27270;
  }

.works {
    width: 80%;
    margin: 0 auto;
}
.works{
    opacity: 0;
  }
.show{
    opacity: 1;
    transition: 3s;
  }

.works_list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    justify-content: center;
    margin: 30px 0;
}

.works_item {
    width: 40%;
    max-width: 270px;
}
.works_item:hover{
        animation: poyoyon2 1s ease-in-out forwards;
      }
       
      @keyframes poyoyon2 {
        0%  {
          transform: scale(1.0, 1.0) translate(0, 0);
        }
        15% {
          transform: scale(0.98, 0.9) translate(0, 5px);
        }
        30% {
          transform: scale(1.02, 1.0) translate(0, 8px);
        }
        50% {transform: scale(0.98, 1.05) translate(0, -8px);
        }
        70% {
          transform: scale(1.0, 0.9) translate(0, 5px);
        }
        100% {
          transform: scale(1.0, 1.0) translate(0, 0);
        }
        0%, 100% {
          opacity: 1;
        }
      }
.mainphoto_pc{
    display: none;
}

.link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}
.comming{
    background-color: #EBC5BF;
    font-size: 14px;
}
.title {
    font-family: Oranienbaum;
    font-size: 22px;
    line-height: normal;
    text-align: center;
    padding-top: 60px;
}

.works_title {
    font-size: 14px;
}

.works_sub {
    font-size: 10px;
    font-family: "Shippori Mincho";
}

.works_sentence {
    font-size: 10px;
}
.comming{
    font-size: 14px;
    background-color:#EBC5BF;
}

.works_moji {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
    margin-top: 4px;
}

.works_photo {
    width: 120%;
    max-width: 350px;
}

.hana {
    width: 60%;
    max-width: 380px;
    display: block;
    margin: 0 auto;
    margin-bottom: 60px;
}

.about {
    text-align: center;
    background-image: url(../images/about.png);
    margin-top: -40px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 60px;
}

.about_bun {
    margin: 30px auto;
    width: 80%;
    max-width: 778px;

    text-align: left;
    color: #FFF;
    font-family: "Shippori Mincho";
    font-size: 12px;
    line-height: 24px;
}

.my {
    width: 50%;
    max-width: 350px;
    margin-top: 30px;
}

.title_about {
    font-size: 22px;
    line-height: normal;
    text-align: center;
    color: #FFF;
    padding-top: 80px;
}
.title_skills{
    margin-top: 60px;
}

.btn {
    color: #FFF;
    font-size: 16px;
    text-decoration: none;
}

.btn_waku {
    margin: 0 auto;
    width: 30%;
    max-width: 250px;
    min-width: 150px;
    padding: 2px;
    border: solid 1px #fff;
}

.skills {
    padding-bottom: 30px;
}
.skills_team{
    justify-content: center;
}
.skills_icon {
    width: 20%;
    flex-shrink: 0;
}

.skills_title {
    font-size: 18px;
}

.skills_bun {
    font-family: "Shippori Mincho";
}

.skills_group {
    display: flex;
    align-items: center;
    gap: 30px;
    width: 70%;
    max-width: 300px;
    margin: 30px auto;
    border-radius: 20px;
    background: #fff;
    padding: 20px;
}

.footer {
    display: flex;
    flex-direction: column;
    padding: 30px 60px;
    background-image: url(../images/footer.png);
    background-size: cover;
    margin-top: -100px;
}

.insta {
    width: 36px;
    margin: 0 auto;
    padding: 30px 0;
    flex-shrink: 0;
    transition: 0.4s;
}
.insta:hover{
    filter: opacity(0.5);
}
.insta_link{
    display: block;
}
.footer_instagram {
    text-align: center;
}


.momondesign {
    font-size: 19px;
    text-decoration: none;
    margin: 0 auto;
    transition: 0.4s;
}
.momondesign:hover {
    color: #fff;
}

.copy {
    text-align: right;
    margin-top: 30px;
}

@media screen and (min-width:500px) {
    .mainphoto_pc{
        display: block;
    }
    .mainphoto_sp{
        display: none;
    }
    .slide-wrapper {
        height: 340px;
      }
      .slide{
        padding-top: 100px;
      }
}
@media screen and (min-width:769px) {
    .slide-wrapper {
        height: 500px;
      }
    .title {
        font-size: 26px;
        margin-top: 80px;
    }

    .title_about {
        font-size: 26px;
    }

    .works_title {
        font-size: 20px;
    }

    .works_sub,
    .works_sentence {
        font-size: 14px;
    }

    .about {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .about_bun {
        font-size: 16px;
        line-height: 34px;
    }
}

@media screen and (min-width:1000px) {
    .slide-wrapper {
        height: 700px;
      }
    .works_list,
    .my,
    .copy {
        margin: 60px 0;
    }

    .about_bun{
        margin: 60px auto;
    }
    .skills_group{
        margin: 60px auto;
    }

    .insta {
        margin: 80px auto;
        padding-top: 20px;
    }
}
@media screen and (min-width:1200px) {
    .skills_team{
        display: flex;
        gap: 30px;
    }
    .skills_group{
        margin: 60px 0;
    }
    .title,.title_about{
        font-size: 28px;
    }
    .skills_bun{
        font-size: 16px;
    }
    .skills_title{
        font-size: 22px;
    }
        .nav_item a {
        font-size: 22px;
    }

    .momon_header,.momondesign {
        font-size: 24px;
    }
    
}
.skills {
    background: linear-gradient(-45deg, #E27270, #F6C7A8, #EBC5BF);
    background-size: 400% 400%;
    animation: gradient 10s ease infinite;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: -1;
    padding-bottom: 100px;
  }  
  @keyframes gradient {
      0% {
          background-position: 0% 50%;
      }
      50% {
          background-position: 100% 50%;
      }
      100% {
          background-position: 0% 50%;
      }
  }

  