/* ハンバーガーメニュー START*/
.menu-btn {
    position: fixed;
    display: flex;
    height: 30px;
    width: 30px;
    top: 10%;
    justify-content: center;
    align-items: center;
    z-index: 30;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
    z-index: 31;
}

.menu-btn span:before {
    bottom: 8px;
}

.menu-btn span:after {
    top: 8px;
}


#menu-btn-check:checked~.menu-btn span {
    background-color: rgba(255, 255, 255, 0);
    /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked~.menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

#menu-btn-check:checked~.menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}

.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    /*leftの値を変更してメニューを画面外へ*/
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.6);
    /*メニューオープン時は真ん中の線を透明にする*/
    transition: all 0.5s;
    /*アニメーション設定*/
}

@media (min-width:768px) {
    .menu-content {
        display: none;
    }
}

.menu-content ul {
    padding: 130px 10px 0;
}

.menu-content ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}

.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 20px;
    box-sizing: border-box;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 15px 20px 0;
    position: relative;
}

.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}

#menu-btn-check:checked~.menu-content {
    left: 0;
    /*メニューを画面内へ*/
}

/* ハンバーガーメニュー END*/



/*************** スクロールアニメーションSTART ***************/
/*スクロールダウン全体の場所*/
.scrolldown {
    /*描画位置※位置は適宜調整してください*/
    position: absolute;
    bottom: -10px;
    left: 50%;
}

/*Scrollテキストの描写*/
.scrolldown span {
    /*描画位置*/
    position: absolute;
    left: 10px;
    bottom: 60px;
    /*テキストの形状*/
    color: #eee;
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    /*縦書き設定*/
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown:before {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 50;
    left: -4px;
    /*丸の形状*/
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #eee;
    /*丸の動き1.6秒かけて透過し、永遠にループ*/
    animation:
        circlemove 1.6s ease-in-out infinite,
        cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
    0% {
        bottom: 100px;
    }

    100% {
        bottom: -5px;
    }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
    0% {
        opacity: 0
    }

    50% {
        opacity: 1;
    }

    80% {
        opacity: 0.9;
    }

    100% {
        opacity: 0;
    }
}

/* 線の描写 */
.scrolldown:after {
    content: "";
    /*描画位置*/
    position: absolute;
    bottom: 0;
    left: 0;
    /*線の形状*/
    width: 2px;
    height: 100px;
    background: #eee;
}

/*************** スクロールアニメーションEND ***************/

/*************** ABOUT USボタンデザインSTART ***************/
.main-btn,
.main-btn *,
.main-btn :after,
.main-btn :before,
.main-btn:after,
.main-btn:before {
    border: 0 solid;
    box-sizing: border-box;
}

.main-btn {
    -webkit-tap-highlight-color: transparent;
    -webkit-appearance: button;
    background-color: #ffffff;
    background-image: none;
    color: #000000;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 100%;
    font-weight: bold;
    line-height: 1.5;
    margin: 0;
    -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
    padding: 0;
    text-transform: uppercase;
}

.main-btn:disabled {
    cursor: default;
}

.main-btn:-moz-focusring {
    outline: auto;
}

.main-btn svg {
    display: block;
    vertical-align: middle;
}

.main-btn [hidden] {
    display: none;
}

.main-btn {
    --background: #ffffff;
    background: none;
    overflow: hidden;
    padding: 0.8rem 3rem;
    position: relative;
}

.main-btn span {
    font-family: 'Montserrat', sans-serif;
    display: block;
    position: relative;
    transition: transform 0.2s ease;
}

.main-btn:after,
.main-btn:before {
    --tilt: 20px;
    background: #008643;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 50%, 100% 100%, 0 100%);
    content: "";
    display: block;
    left: 0;
    position: absolute;
    top: 0;
    transition: -webkit-clip-path 0.2s ease;
    transition: clip-path 0.2s ease;
    transition: clip-path 0.2s ease, -webkit-clip-path 0.2s ease;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.main-btn:after {
    --thickness: 0px;
    background: var(--background);
    height: calc(100% - var(--thickness) * 2);
    left: var(--thickness);
    top: var(--thickness);
    width: calc(100% - var(--thickness) * 2);
}

.main-btn:hover span {
    transform: translateX(-20px);
}

.main-btn:hover:after,
.main-btn:hover:before {
    -webkit-clip-path: polygon(0 0,
            calc(100% - var(--tilt)) 0,
            100% 50%,
            calc(100% - var(--tilt)) 100%,
            0 100%);
    clip-path: polygon(0 0,
            calc(100% - var(--tilt)) 0, ▲ 100% 50%,
            calc(100% - var(--tilt)) 100%,
            0 100%);
}

/*************** ABOUT USボタンデザインEND ***************/


/*************** 画像ふわっ START ***************/  
/* fadeUp */

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:0.5s;
    animation-fill-mode:forwards;
    opacity:0;
    }
    
    @keyframes fadeUpAnime{
      from {
        opacity: 0;
      transform: translateY(100px);
      }
    
      to {
        opacity: 1;
      transform: translateY(0);
      }
    }
    
    
    /* スクロールをしたら出現する要素にはじめに透過0を指定　*/
     
    .fadeUpTrigger{
        opacity: 0;
    }
  /*************** 画像ふわっ END ***************/


/*************** 1文字ずつ出現させるための START ***************/



/*************** 1文字ずつ出現させるための END ***************/