@charset "UTF-8";
body {
    background-color: #F8F8F3;
    color: #344A53;
}
/*** ナビゲーションメニュー ***/
nav {
    /*fixedで上部固定*/
    position: fixed;
    z-index: 999;/*最前面へ*/
    width:100%;
  }
  nav ul {
    display: flex;
    justify-content: flex-end;
    color: #344A53;
    background-color: #ACCACC40;
    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);
    }
  }
  /*** ナビゲーションメニュー ***/

.backBtn {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 6px;
    left: 20px;
}
h1 {
    padding-top: 80px;
    font-size: 46px;
    color: #344A5340;
}
h1 span {
    color: #344A53;
}
#mocTop img {
    width: 800px;
}
.whiteBox {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 50px 0;
}
h2 {
    font-size: 20px;
    font-weight: bold;
}
.kinouTab {
    color: #ffffff;
    background-color: #A3C7D6;
    padding: 3px 5px;
    display: inline-block;
    white-space: nowrap;
    margin-right: 5px;
    border-radius: 5px;
}
.mocDesc {
    align-items: flex-start;
}
.mocDesc ul {
    align-items: center;
    flex-wrap: wrap;
}
.mocDesc ul li {
    white-space: nowrap;
    padding: 0 3px;
    margin-bottom: 5px;
}
.mocDesc ul li::after {
    content: "/";
    top: 0;
}
.mocDesc ul li:last-of-type::after {
    content: "";
}
#mocSub img {
    width: 550px;
}
figure {
    margin-top: 40px;
}
figcaption {
    font-size: 18px;
    margin-bottom: 10px;
}
figcaption::before {
    content: '';/*何も入れない*/
    display: inline-block;
    width: 18px;/*画像の幅*/
    height: 18px;/*画像の高さ*/
    background-image: url(../images/star.png);
    background-size: contain;
    vertical-align:text-bottom;
}
.num {
    font-size: 18px;
}
#valenti .subDesc {
    padding-top: 40px;
}
#kintai .subDesc {
    padding-top: 5px;
}
footer {
    margin-top: 100px;
}
footer p {
    color: #344A5380!important;
}
#kintai #mocSub ul li {
    margin-bottom: 50px;
}

/* スマホ用 */
@media only screen and (max-width:480px) {
    .header-area {
        background-color: #ACCACC40;
    }
    .hamburger span{
        background-color: #344A53;
    }
    .flex {
        display: block;
    }
    p {
        font-size: 14px;
    }
    .kinouTab, .mocDesc ul li {
        font-size: 13px;
    } 
    main {
        width: 90vw!important;
    }
    .backBtn {
        width: 18px;
        height: 18px;
        top: 14px;
        left: 20px;
    }
    h1 {
        font-size: 30px;
        margin-bottom: 30px!important;
    }
    #mocTop img {
        width: 85vw;
    }
    .whiteBox {
        width: 100%;
        margin: auto;
        border-radius: 10px;
        padding: 40px 15px;
    }
    .whiteBox p {
        text-align: start;
    }
    h2 {
        font-size: 16px;
        font-weight: bold;
    }
    .mocDesc {
        width: 80vw!important;
        display: flex;
    }
    .kinouTab {
        padding: 3px 5px;
    }
    .mocDesc ul {
        display: flex;
    }
    .mocDesc ul li {
        white-space: nowrap;
    }
    #mocSub {
        width: 80vw;
        margin: auto;
        text-align: center;
    }
    #mocSub img {
        width: 100%;
    }
    figure {
        margin-top: 40px;
    }
    figure p:not(.num) {
        font-size: 13px;
    }
    figcaption, figure p {
        text-align: start;
    }
    figcaption {
        font-size: 15px;
        margin-bottom: 7px;
    }
    figcaption::before {
        width: 15px;/*画像の幅*/
        height: 15px;/*画像の高さ*/
    }
    .num {
        font-size: 16px;
    }
    #valenti .subDesc {
        padding-top: 20px;
    }
    #valenti #mocSub ol li {
        margin-bottom: 10px;
    }
    #kintai #mocSub ul li {
        margin-bottom: 30px;
    }
}