@charset "UFT-8";

/*PCサイズレスポンシブ*/
@media(min-width:1000px) {
    body {
        min-width: 1000px;
        background-color: #F9F1EA;
        color: #2F4F4F;
    }

    nav,
    .openbtn {
        display: none;
    }

    /*========= LoadingのためのCSS ===============*/

    /* Loading背景画面設定　*/
    #splash {
        /*fixedで全面に固定*/
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        background: #f0fff0;
        text-align: center;
        color: #fff;
    }

    /* Loading画像中央配置　*/
    #splash_logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
        width: 260px;
    }

    /* 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);
        }
    }

    /* ボタン共通設定 */
    .btn03 {
        /*影の基点とするためrelativeを指定*/
        position: relative;
        /*ボタンの形状*/
        text-decoration: none;
        display: inline-block;

        text-align: center;
        background: transparent;
        border-radius: 25px;
        border: solid 1px #9CA0C5;
        outline: none;
        /*アニメーションの指定*/
        transition: all 0.2s ease;
    }

    /*hoverをした後のボタンの形状*/
    .btn03:hover {
        border-color: transparent;
    }

    /*ボタンの中のテキスト*/
    .btn03 span {
        position: relative;
        z-index: 2;
        /*z-indexの数値をあげて文字を背景よりも手前に表示*/
        /*テキストの形状*/
        display: block;
        padding: 10px 30px;
        background: #fff;
        border-radius: 25px;
        color: #9CA0C5;
        /*アニメーションの指定*/
        transition: all 0.3s ease;
    }

    /*== 右下に押し込まれる（立体が平面に） */

    /*影の設定*/
    .pushright:before {
        content: "";
        /*絶対配置で影の位置を決める*/
        position: absolute;
        z-index: -1;
        top: 4px;
        left: 4px;
        /*影の形状*/
        width: 100%;
        height: 100%;
        border-radius: 25px;
        background-color: #8b8b8b;
    }

    /*hoverの際にX・Y軸に4pxずらす*/
    .pushright:hover span {
        background-color: #505050;
        color: #fff;
        transform: translate(4px, 4px);
    }

    .container {
        width: 100%;
    }

    li {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: #2F4F4F;
    }

    .header {
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0px;
        background-color: #e1d0d052;
    }

    .header-left {
        width: 10%;
        height: 100%;
        margin: 0 0 0 30px;
        display: flex;
        align-items: center;
    }

    .header-left img {
        width: 80%;
    }

    .header-right {
        width: 45%;
    }

    .header-right ul {
        display: flex;
        justify-content: space-around;
    }

    .header-right li {
        display: flex;
        align-items: center;
    }

    .main {
        width: 100%;
        text-align: center;
    }

    .main img {
        width: 100%;
        object-fit: cover;
        margin: 80px 0 0 0;
        /* border-radius: 30px; */
        /* margin:0 auto; */
        /* display: block; */
        /* width: 300px; */
        /* height: 300px; */
        /* border-radius: 29% 57% 40% 29% / 54% 57% 28% 25%; */
    }

    h2 {
        color: #9CA0C5;
        text-align: center;
        margin: 100px 0 60px 0;
        font-family: "Instrument Serif", serif;
        font-size: 32px;
    }

    h3 {
        text-align: center;
    }

    .profile-top {
        text-align: center;
    }

    .profile-top p {
        line-height: 40px;
        font-size: 14px;
        display: inline-block;
        text-align: left;
    }

    .profile-down {
        text-align: right;
        margin: 0 5% 100px 0;
    }

    /* 下から */

    .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);
        }
    }

    .skill {
        background-color: #E1D0D0;
        padding: 20px 0;
        border-radius: 40px;
        width: 95%;
        margin: 0 auto;
    }

    .skill-top {
        text-align: center;
    }

    .skill table {
        margin: 0 auto;
        line-height: 60px;
    }

    .skill th {
        font-weight: lighter;
        font-size: 14px;
        text-align: left;
    }

    table th:nth-child(1) {
        font-weight: bold;
    }

    .skill-down {
        text-align: right;
        margin: 0 5% 100px 0;
    }

    .works-down {
        text-align: right;
        margin: 0 5% 100px 0;
    }

    .works {
        width: 100%;
    }

    .works img {
        width: 70%;
    }

    .works ul {
        display: flex;
    }

    .works li {
        width: calc(100% / 3);
        text-align: center;
        margin: 0 0 100px 0;
    }

    .works p {
        font-size: 12px;
    }

    .footer {
        width: 100%;
        height: 220px;
        background-color: #E1D0D0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px 50px 0 0;
    }

    .footer-c h3 {
        font-weight: lighter;
        font-size: 12px;
    }

    .footer-c img {
        width: 20px;
    }

    .footer-c {
        text-align: center;
        line-height: 30px;
    }


    /*スクロールリンクの形状*/
    .scroll-top {
        /*表示位置*/
        position: fixed;
        right: 20px;
        bottom: 10px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s, visibility .5s;
        /*それぞれに0.5秒の変化のアニメーション*/
        /*縦書き*/
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        /*改行禁止*/
        white-space: nowrap;
        /*矢印の動き*/
        animation: arrowmove 1s ease-in-out infinite;
    }

    @keyframes arrowmove {
        0% {
            bottom: 20px;
        }

        50% {
            bottom: 25px;
        }

        100% {
            bottom: 20px;
        }
    }


    /*.scroll-viewクラスがついたら出現*/
    .scroll-top.scroll-view {
        opacity: 1;
        visibility: visible;
    }

    /*リンク全体の aタグの形状*/
    .scroll-top a {
        text-decoration: none;
        color: #666;
        text-transform: uppercase;
        font-size: 0.9rem;
        display: block;
    }

    /*スクロールリンクの形状*/

    .js-scroll a::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 50px;
        background: #666;
    }

    .js-scroll a::before {
        content: "";
        position: absolute;
        top: 30px;
        right: -6px;
        width: 1px;
        height: 20px;
        background: #666;
        transform: skewX(-31deg);
    }

    /*Edge IE11 hack*/
    _:-ms-lang(x),
    .js-scroll a::before {
        right: -11px;
    }

    /*ページトップリンクの形状*/

    .js-pagetop a::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 50px;
        background: #666;
    }

    .js-pagetop a::before {
        content: "";
        position: absolute;
        top: 0;
        right: -6px;
        width: 1px;
        height: 20px;
        background: #666;
        transform: skewX(31deg);
    }

    /*Edge IE11 hack*/
    _:-ms-lang(x),
    .js-pagetop a::before {
        right: 0;
    }

}

/*ipadサイズレスポンシブ*/
/* PCcss */
@media(min-width:600px) and (max-width:999px) {
    body {
        min-width: 600px;
        max-width: 999px;
        background-color: #F9F1EA;
        color: #2F4F4F;
    }

    .container {
        width: 100%;
    }

    /*========= LoadingのためのCSS ===============*/
    /* Loading背景画面設定　*/
    #splash {
        /*fixedで全面に固定*/
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        background: #f0fff0;
        text-align: center;
        color: #fff;
    }

    /* Loading画像中央配置　*/
    #splash_logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
        width: 260px;
    }

    /* 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);
        }
    }

    /* ボタン共通設定 */
    .btn03 {
        /*影の基点とするためrelativeを指定*/
        position: relative;
        /*ボタンの形状*/
        text-decoration: none;
        display: inline-block;

        text-align: center;
        background: transparent;
        border-radius: 25px;
        border: solid 1px #9CA0C5;
        outline: none;
        /*アニメーションの指定*/
        transition: all 0.2s ease;
    }

    /*hoverをした後のボタンの形状*/
    .btn03:hover {
        border-color: transparent;
    }

    /*ボタンの中のテキスト*/
    .btn03 span {
        position: relative;
        z-index: 2;
        /*z-indexの数値をあげて文字を背景よりも手前に表示*/
        /*テキストの形状*/
        display: block;
        padding: 10px 30px;
        background: #fff;
        border-radius: 25px;
        color: #9CA0C5;
        /*アニメーションの指定*/
        transition: all 0.3s ease;
    }

    /*== 右下に押し込まれる（立体が平面に） */

    /*影の設定*/
    .pushright:before {
        content: "";
        /*絶対配置で影の位置を決める*/
        position: absolute;
        z-index: -1;
        top: 4px;
        left: 4px;
        /*影の形状*/
        width: 100%;
        height: 100%;
        border-radius: 25px;
        background-color: #8b8b8b;
    }

    /*hoverの際にX・Y軸に4pxずらす*/
    .pushright:hover span {
        background-color: #505050;
        color: #fff;
        transform: translate(4px, 4px);
    }

    li {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: #2F4F4F;
    }

    .header {
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0px;
        background-color: #e1d0d052;
    }

    .header-left {
        width: 15%;
        height: 100%;
        margin: 0 0 0 10px;
        display: flex;
        align-items: center;
    }

    .header-left img {
        width: 80%;
    }

    .header-right {
        width: 40%;
        display: none;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
        position: fixed;
        z-index: -1;
        opacity: 0;
        /*はじめは透過0*/
        /*ナビの位置と形状*/
        top: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: #ffeea9;
        /*動き*/
        transition: all 0.3s;
    }

    /*アクティブクラスがついたら透過なしにして最前面へ*/
    #g-nav.panelactive {
        opacity: 1;
        z-index: 999;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    #g-nav ul {
        display: none;
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #g-nav.panelactive ul {
        display: block;
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #333;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #666;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .main {
        width: 100%;
        text-align: center;
    }

    .main img {
        width: 100%;
        object-fit: cover;
        margin: 80px 0 0 0;
    }

    h2 {
        color: #9CA0C5;
        text-align: center;
        margin: 100px 0 60px 0;
        font-family: "Instrument Serif", serif;
        font-size: 32px;
    }

    h3 {
        text-align: center;
    }

    .profile-top {
        text-align: center;
    }

    .profile-top p {
        line-height: 40px;
        font-size: 14px;
        display: inline-block;
        text-align: left;
    }

    .profile-down {
        text-align: right;
        margin: 0 5% 100px 0;
    }

    /* 下から */

    .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);
        }
    }

    .skill {
        background-color: #E1D0D0;
        padding: 20px 0;
        border-radius: 40px;
        width: 95%;
        margin: 0 auto;
    }

    .skill-top {
        text-align: center;
    }

    .skill table {
        margin: 0 auto;
        line-height: 60px;
    }

    .skill th {
        font-weight: lighter;
        font-size: 14px;
        text-align: left;
    }

    table th:nth-child(1) {
        font-weight: bold;
    }

    .skill-down {
        text-align: right;
        margin: 0 5% 100px 0;
    }

    .works-down {
        text-align: right;
        margin: 0 5% 100px 0;
    }

    .works {
        width: 100%;
    }

    .works img {
        width: 85%;
    }

    .works ul {
        display: flex;
    }

    .works li {
        width: calc(100% / 3);
        text-align: center;
        margin: 0 0 100px 0;
    }

    .works p {
        font-size: 12px;
    }

    .footer {
        width: 100%;
        height: 220px;
        background-color: #E1D0D0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px 50px 0 0;
    }

    .footer-c h3 {
        font-weight: lighter;
        font-size: 12px;
    }

    .footer-c img {
        width: 20px;
    }

    .footer-c {
        text-align: center;
        line-height: 30px;
    }

    /*スクロールリンクの形状*/
    .scroll-top {
        /*表示位置*/
        position: fixed;
        right: 20px;
        bottom: 10px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s, visibility .5s;
        /*それぞれに0.5秒の変化のアニメーション*/
        /*縦書き*/
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        /*改行禁止*/
        white-space: nowrap;
        /*矢印の動き*/
        animation: arrowmove 1s ease-in-out infinite;
    }

    @keyframes arrowmove {
        0% {
            bottom: 20px;
        }

        50% {
            bottom: 25px;
        }

        100% {
            bottom: 20px;
        }
    }


    /*.scroll-viewクラスがついたら出現*/
    .scroll-top.scroll-view {
        opacity: 1;
        visibility: visible;
    }

    /*リンク全体の aタグの形状*/
    .scroll-top a {
        text-decoration: none;
        color: #666;
        text-transform: uppercase;
        font-size: 0.9rem;
        display: block;
    }

    /*スクロールリンクの形状*/

    .js-scroll a::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 50px;
        background: #666;
    }

    .js-scroll a::before {
        content: "";
        position: absolute;
        top: 30px;
        right: -6px;
        width: 1px;
        height: 20px;
        background: #666;
        transform: skewX(-31deg);
    }

    /*Edge IE11 hack*/
    _:-ms-lang(x),
    .js-scroll a::before {
        right: -11px;
    }

    /*ページトップリンクの形状*/

    .js-pagetop a::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 50px;
        background: #666;
    }

    .js-pagetop a::before {
        content: "";
        position: absolute;
        top: 0;
        right: -6px;
        width: 1px;
        height: 20px;
        background: #666;
        transform: skewX(31deg);
    }

    /*Edge IE11 hack*/
    _:-ms-lang(x),
    .js-pagetop a::before {
        right: 0;
    }

}

/*SPサイズレスポンシブ*/
@media (max-width:599px) {
    body {
        max-width: 599px;
        background-color: #F9F1EA;
        color: #2F4F4F;
    }

    .container {
        width: 100%;
    }

    /* タブレットcss */

    /*========= LoadingのためのCSS ===============*/
    /* Loading背景画面設定　*/
    #splash {
        /*fixedで全面に固定*/
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 999;
        background: #f0fff0;
        text-align: center;
        color: #fff;
    }

    /* Loading画像中央配置　*/
    #splash_logo {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    /* Loading アイコンの大きさ設定　*/
    #splash_logo img {
        width: 260px;
    }

    /* 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);
        }
    }

    /* ボタン共通設定 */
    .btn03 {
        /*影の基点とするためrelativeを指定*/
        position: relative;
        /*ボタンの形状*/
        text-decoration: none;
        display: inline-block;

        text-align: center;
        background: transparent;
        border-radius: 25px;
        border: solid 1px #9CA0C5;
        outline: none;
        /*アニメーションの指定*/
        transition: all 0.2s ease;
    }

    /*hoverをした後のボタンの形状*/
    .btn03:hover {
        border-color: transparent;
    }

    /*ボタンの中のテキスト*/
    .btn03 span {
        position: relative;
        z-index: 2;
        /*z-indexの数値をあげて文字を背景よりも手前に表示*/
        /*テキストの形状*/
        display: block;
        padding: 10px 30px;
        background: #fff;
        border-radius: 25px;
        color: #9CA0C5;
        /*アニメーションの指定*/
        transition: all 0.3s ease;
    }

    /*== 右下に押し込まれる（立体が平面に） */

    /*影の設定*/
    .pushright:before {
        content: "";
        /*絶対配置で影の位置を決める*/
        position: absolute;
        z-index: -1;
        top: 4px;
        left: 4px;
        /*影の形状*/
        width: 100%;
        height: 100%;
        border-radius: 25px;
        background-color: #8b8b8b;
    }

    /*hoverの際にX・Y軸に4pxずらす*/
    .pushright:hover span {
        background-color: #505050;
        color: #fff;
        transform: translate(4px, 4px);
    }

    li {
        list-style: none;
    }

    a {
        text-decoration: none;
        color: #2F4F4F;
    }

    .header {
        width: 100%;
        height: 80px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: fixed;
        top: 0px;
        background-color: #e1d0d052;
    }

    .header-left {
        width: 25%;
        height: 100%;
    }

    .header-left img {
        width: 70%;
        display: block;
        margin: 0 auto;
    }

    .header-right {
        width: 40%;
        display: none;
    }

    /*========= ナビゲーションのためのCSS ===============*/

    #g-nav {
        /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
        position: fixed;
        z-index: -1;
        opacity: 0;
        /*はじめは透過0*/
        /*ナビの位置と形状*/
        top: 0;
        width: 100%;
        height: 100vh;
        /*ナビの高さ*/
        background: #ffeea9;
        /*動き*/
        transition: all 0.3s;
    }

    /*アクティブクラスがついたら透過なしにして最前面へ*/
    #g-nav.panelactive {
        opacity: 1;
        z-index: 999;
    }

    /*ナビゲーションの縦スクロール*/
    #g-nav.panelactive #g-nav-list {
        /*ナビの数が増えた場合縦スクロール*/
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 100vh;
        /*表示する高さ*/
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    /*ナビゲーション*/
    #g-nav ul {
        display: none;
        /*ナビゲーション天地中央揃え*/
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    #g-nav.panelactive ul {
        display: block;
    }

    /*リストのレイアウト設定*/

    #g-nav li {
        list-style: none;
        text-align: center;
    }

    #g-nav li a {
        color: #333;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    }

    /*========= ボタンのためのCSS ===============*/
    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 10px;
        right: 10px;
        cursor: pointer;
        width: 50px;
        height: 50px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 14px;
        height: 3px;
        border-radius: 2px;
        background-color: #666;
        width: 45%;
    }

    .openbtn span:nth-of-type(1) {
        top: 15px;
    }

    .openbtn span:nth-of-type(2) {
        top: 23px;
    }

    .openbtn span:nth-of-type(3) {
        top: 31px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 18px;
        left: 18px;
        transform: translateY(6px) rotate(-45deg);
        width: 30%;
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 30px;
        left: 18px;
        transform: translateY(-6px) rotate(45deg);
        width: 30%;
    }

    .main {
        width: 100%;
        text-align: center;
    }

    .main img {
        width: 100%;
        object-fit: cover;
        margin: 80px 0 0 0;
    }

    h2 {
        color: #9CA0C5;
        text-align: center;
        margin: 60px 0 60px 0;
        font-family: "Instrument Serif", serif;
        font-size: 32px;
    }

    h3 {
        text-align: center;
    }

    .profile-top {

        text-align: center;
    }

    .profile-top p {
        width: 95%;
        line-height: 3cap;
        font-size: 12px;
        display: inline-block;
        text-align: left;
    }

    .profile-down {
        text-align: right;
        margin: 10% 5% 100px 0;
    }

    /* 下から */

    .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);
        }
    }

    .skill {
        background-color: #E1D0D0;
        padding: 10px 0 20px 0;
        border-radius: 40px;
        width: 95%;
        margin: 0 auto;
    }

    .skill-top {
        text-align: center;
    }

    .skill table {
        margin: 0 auto;
        line-height: 50px;
    }

    table th:nth-child(1) {
        font-weight: bold;
    }

    table th:nth-child(2) {
        display: none;
    }

    .skill th {
        font-weight: lighter;
        font-size: 12px;
        text-align: left;
        display: block;
    }


    .skill-down {
        text-align: right;
        margin: 0 5% 50px 0;
    }

    .works-down {
        text-align: right;
        margin: 0 5% 100px 0;
    }

    .works {
        width: 100%;
    }

    .works img {
        width: 90%;
    }

    .works ul {
        display: flex;
    }

    .works li {
        width: calc(100% / 3);
        text-align: center;
        margin: 0 0 100px 0;
    }

    .works p {
        font-size: 12px;
    }

    .footer {
        width: 100%;
        height: 220px;
        background-color: #E1D0D0;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px 50px 0 0;
    }

    .footer-c h3 {
        font-weight: lighter;
        font-size: 12px;
    }

    .footer-c img {
        width: 20px;
    }

    .footer-c {
        text-align: center;
        line-height: 30px;
    }

    /*スクロールリンクの形状*/
    .scroll-top {
        /*表示位置*/
        position: fixed;
        right: 20px;
        bottom: 10px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        visibility: hidden;
        transition: opacity .5s, visibility .5s;
        /*それぞれに0.5秒の変化のアニメーション*/
        /*縦書き*/
        -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
        writing-mode: vertical-rl;
        /*改行禁止*/
        white-space: nowrap;
        /*矢印の動き*/
        animation: arrowmove 1s ease-in-out infinite;
    }

    @keyframes arrowmove {
        0% {
            bottom: 20px;
        }

        50% {
            bottom: 25px;
        }

        100% {
            bottom: 20px;
        }
    }


    /*.scroll-viewクラスがついたら出現*/
    .scroll-top.scroll-view {
        opacity: 1;
        visibility: visible;
    }

    /*リンク全体の aタグの形状*/
    .scroll-top a {
        text-decoration: none;
        color: #666;
        text-transform: uppercase;
        font-size: 0.9rem;
        display: block;
    }

    /*スクロールリンクの形状*/

    .js-scroll a::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 50px;
        background: #666;
    }

    .js-scroll a::before {
        content: "";
        position: absolute;
        top: 30px;
        right: -6px;
        width: 1px;
        height: 20px;
        background: #666;
        transform: skewX(-31deg);
    }

    /*Edge IE11 hack*/
    _:-ms-lang(x),
    .js-scroll a::before {
        right: -11px;
    }

    /*ページトップリンクの形状*/

    .js-pagetop a::after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        width: 1px;
        height: 50px;
        background: #666;
    }

    .js-pagetop a::before {
        content: "";
        position: absolute;
        top: 0;
        right: -6px;
        width: 1px;
        height: 20px;
        background: #666;
        transform: skewX(31deg);
    }

    /*Edge IE11 hack*/
    _:-ms-lang(x),
    .js-pagetop a::before {
        right: 0;
    }
}