@charset "utf-8";

/* ----------------------------------------
   index.css
---------------------------------------- */
/* 基本
---------------------------------------- */
html,
body {
    position: relative;
    letter-spacing: 0.04em;
    line-height: 1.5;
    text-align: center;
    color: #333;
    font-family: Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "Osaka", sans-serif;
    font-size: 16px;
}

body * {
    box-sizing: border-box;
}

sup {
    vertical-align: top;
    font-size: 0.5em;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}

a {
    text-decoration: none;
}

a:hover {
    opacity: 0.5;
}


map,
area {
    outline: none;
}

.ib {
    display: inline-block;
}


/* レイアウト
---------------------------------------- */
header{
    position: relative;
}

.abs{
    position: absolute;
    top: 0;
    left: 0;
}

/* ぼかしから出現 */
.blur{
    animation-name:blurAnime;
    animation-duration:2.5s;
    animation-fill-mode:forwards;
}

@keyframes blurAnime{
    from {
        filter: blur(10px);
        transform: scale(1.02);
        opacity: 0;
    }
    to {
        filter: blur(0);
        transform: scale(1);
        opacity: 1;
    }
}

.blurTrigger{
    opacity: 0;
}

.fadeUp{
    animation-name:fadeUpAnime;
    animation-duration:1s;
    animation-fill-mode:forwards;
    opacity:0;
}
    
@keyframes fadeUpAnime{
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeUpTrigger{
    opacity: 0;
}

#section01,
#menu,
#section03{
    background-color: #EDECE3;
}

#section02{
    background-color: #231815;
}






footer {
    padding: 0 10px 20px;
    background: #EDECE3;
}

footer ul {
    display: flex;
    justify-content: center;
}

footer ul li {
    padding: 0 10px;
    line-height: 1.2;
    border-left: 1px solid #3e3a39;
}

footer ul li:last-child {
    border-right: 1px solid #3e3a39;
}

footer a {
    color: #3e3a39;
    font-size: 12px;
}

footer a:hover {
    text-decoration: underline;
}

#gototop {
    position: fixed;
    right: 20px;
    bottom: 20px;
}

#gototop a {
    font-size: 15px;
    background: rgb(0, 0, 0, 0.6);
    color: #fff;
    display: block;
    padding: 15px 20px;
    text-decoration: none;
}

/* ----------------------------------------
   @media : PC
---------------------------------------- */
@media screen and (min-width: 1150px) {
    .sp {
        display: none;
    }
}

/* /@media */

/* ----------------------------------------
   @media : SP
---------------------------------------- */
@media screen and (max-width: 1150px) {
    .pc {
        display: none;
    }
}

/* /@media */

@media screen and (max-width: 480px) {

    #profile {
        padding: 20px 0 40px;
    }

    .wrap {
        max-width: 90%;
    }

    .wrap2 {
        max-width: 80%;
        margin: 40px auto 20px;
    }

    footer ul {
        display: block;
    }

    footer ul li {
        border: none !important;
    }

    footer ul li+li {
        margin-top: 10px;
    }
}

/* /@media */