@charset "UTF-8";
/* JS関係のCSSのみを抜粋 */

/*==================================
スクロールイベント（jquery.inview.js）
==================================*/


@media screen and (min-width: 769px) {
/* ７つ目：移動＋透明度 */
.item-mv07 {
    overflow: hidden;
    transition: 0.8s;
    opacity: 0;
    transform: translate(0, 60px);
    -webkit-transform: translate(0, 60px);
}
.mv07 {
    opacity: 1.0;
    transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
}
}
/*==================================
ハンバーガーメニュー（hamburger.js）
==================================*/
.menu-trigger, .menu-trigger span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
}
.menu-trigger {
    position: absolute;
    /*bottom: 20px;
 right: 20px;*/
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    z-index: 9999;
    background: #85bfcb;
}
a.menu-trigger:hover {
    background: rgba(0,0,0,0.5);
}
.menu-trigger span {
    position: absolute;
    z-index: 9999;
    left: 6px;
    width: 75%;
    height: 4px;
    background-color: #fff;
    border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
    top: 9px;
}
.menu-trigger span:nth-of-type(2) {
    top: 23px;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 9px;
}
.menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(14px) rotate(-45deg);
    transform: translateY(14px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-14px) rotate(45deg);
    transform: translateY(-14px) rotate(45deg);
}
#overlay {
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
    position: fixed;
    top: 0;
    z-index: 100;
    background: rgba(0,0,0,0.8);
    padding: 20px;
    box-sizing: border-box;
}
#overlay ul {
    padding-left: 0px;
    margin-top: 70px;
}
#overlay ul li {
    padding-left: 0px;
    list-style-type: none;
    margin-top: 30px;
}
#overlay ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 150%;
}

