@charset "utf-8";

/* 共通事項 */
html {
    font-size: 62.5%;
    height: 100%;
    margin: 0;
}

body {
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    color: #000;
    background-color: #fff;
    line-height: normal;
}

.montserrat {
  font-family: "Montserrat", serif;
  font-weight: 400;
  font-style: normal;
}

.archivo {
  font-family: "Archivo", serif;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

.img {
    max-width: 100%;
    height: auto;
}

/* ヘッダー */
#header {
    padding: 50px 4% 15px 4% ;
    box-sizing: border-box;
}

#header a {
    text-decoration: none;
    color: #000;
}

#header .sp_nav a {
    text-decoration: none;
    color: #fff;
}

.header_area{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: Montserrat;
    font-size: 3rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 3px;
}

.nav {
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: 700;
}

.nav_txt {
    margin-right: 40px;
    color: #000;

}

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

.hamburger {
    display: none;
    position: relative;
    width: 50px;
    height: 50px;
    background-color: #609F48;
}

.hamburger span {
    display: inline-block;
    position: absolute;
    left: 13px;
    height: 5px;
    background-color: #fff;
    width: 50%;
}

.hamburger span:nth-of-type(1) {
    top: 18px;
}

.hamburger span:nth-of-type(2) {
    top: 30px;
}

/* ハンバーガーばつ */

.hamburger_cross {
    display: block;
    position: relative;
    width: 50px;
    height: 50px;
}

.hamburger_cross span {
    display: inline-block;
    position: absolute;
    left: 13px;
    height: 5px;
    background-color: #fff;
    width: 50%;
}

.hamburger_cross span:nth-of-type(1) {
    top: 20px;
    left: 16px;
    transform: translateY(6px) rotate(-45deg);
    
}

.hamburger_cross span:nth-of-type(2) {
    top: 32px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    
}

/* メニュー中 */

.sp_nav {
    pointer-events: none;
    position: fixed;
    z-index: -1;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #609F48;
    padding: 20px 5% 100px 5%;
    transition: all 0.3s;
    overflow: hidden;
}

.sp_navbox {
    display: flex;
    justify-content: space-between;
}

.sp_nav a {
    text-decoration: none;
    color: #fff;
}

.sp_navarea {
    padding: 0 5%;
}

.spnav_txt {
    display: block;
}

.sp_logo {
    font-family: Montserrat;
    font-size: 3rem;
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 50px;
}

.spnav_txt {
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 50px;
    text-align: center;
}

/* メニュー　アニメーション */

.sp_nav.active {
    pointer-events: auto;
    opacity: 1;
    z-index: 999;
}

/* ヘッダー　スマホサイズ */

@media screen and (max-width:768px) {
    #header {
        padding: 15px 4% 5px 4% ;
        position: fixed;
        z-index: 100003;
        top: 0;
        left: 0;
        width: 100%;
        background-color: rgb(255, 255, 255, 0.8);

    }

    .logo {
        font-size: 2rem;
    }

    .nav {
        display: none;
    }

    .hamburger {
        display: block;
    }
}

/* フッター */

#footer_page {
    background-color: #609F48;
    padding: 135px 5% 135px 5%;
    box-sizing: border-box;
}

.footer_area {
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
}

.footer_logo {
    color: #FFF;
    font-family: Montserrat;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 100%; 
    letter-spacing: 5px;
}

.footer_area dd{
    width:30%;
}

.footer_ularea {
    display: flex;
    flex-wrap: wrap;
    padding-left: 0;
}

.footer_nav {
    color: #FFF;
    font-family: Montserrat;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 0.6px;
    list-style: none;
    margin-bottom:50px;
    width:49%;
}

.footer_link {
    text-decoration: none;
    color: #FFF;
}

.Copyright {
    color: #FFF;
    font-family: Montserrat;
    font-size: 1rem;
    font-style: italic;
    font-weight: 500;
    line-height: 40%;
    letter-spacing: 0.4px;
    margin-top: -30px;
}

/* ヘッダー　スマホサイズ */

@media screen and (max-width:768px) {
    .footer_area {
        display: block;
    }

    .footer_ularea {
        display: block;
    }

    .footer_area dd{
        margin-top: 50px;
    }

    .footer_nav {
        margin-bottom:50px;
        width:100%;
    }

    .Copyright {
        line-height: 200%;
        letter-spacing: 1px;
        margin-top: 50px;
    }
}

/* ページトップボタン */

#page-top {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    border: 2px solid #000;
    background-color: #FFF;
    border-radius: 50% ;
    color: #000;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-decoration: none;
    text-align: center;
    margin-top: 20px;
    transition: all 0.3s;
    /* 表示位置 */
    position: fixed;
    right: 30px;
    bottom: 10px;
    z-index: 2;
    /* 初期配置 */
    opacity: 0;

}

#page-top a {
    text-decoration: none;
    color: #000;
}

/* ページトップのアニメーション */

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
    opacity: 1;
}

#page-top.DownMove{
    animation: DownAnime 0.5s forwards;
    opacity: 0;
}

/* ページトップSP */

@media screen and (max-width:768px) {
    #page-top {
        display: none;
    }
}

/* 作品一覧へ誘導させるボタン */

#under {
    background-color: #00000080;
    padding: 10px;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0 ;
    z-index: 1;
    opacity: 0;

}

.under_btn {
    max-width: 500px;
    background-color: red;
    border-radius: 99px;
    margin: 0 auto;
    border: solid 2px #000;
    padding: 10px 0;

}

.under_txt {
    font-size: 2.5rem;
    color: #fff;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    text-align: center;
}

#under.UpMove {
    transition: .5s ease;
    opacity: 1;
}

#under.DownMove{
    transition: .5s ease;
    opacity: 0;
}

@media screen and (max-width:425px) {
    #under {
        padding: 5%;
    }

    .under_btn {
        max-width: 500px;
        padding: 10px 0;
    
    }

    .under_txt {
        font-size: 1.5rem;
    }

}

