/* リセットCSSやヘッダー、フッターのCSSをここに入れる */
/* サイト全体に共通するものはここにいれる */
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');

/* cssリセット */

/*利用するタグによってこちらの内容は増やす*/
html,
body,
h1,
h2,
h3,
p,
dl,
dt,
dd,
ul,
li {
    margin: 0;
    padding: 0;
    line-height: 1;
    /*デフォルトの文字色、font-familyを予め当てておく*/
    color: #333e33;
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", "homemade-apple-pro", sans-serif, "yu-gothic-pr6n", sans-serif, serif;
    font-feature-settings: "palt";
}

html {
    scroll-behavior: smooth;
}

a {
    /*下線を消す*/
    text-decoration: none;
    /*色を消す*/
    color: inherit;
    transition: 0.3s;
}

a:hover {
    opacity: 0.5;
}

ul {
    /*左の「・」を消す*/
    list-style: none;
}

img {
    max-width: 100%;
    vertical-align: bottom;
    border: none;
}

/* リセットCSSここまで */


/* 汎用クラス  */
.sp_only {
    display: none;
}

@media screen and (max-width: 767px) {
    .pc_only {
        display: none;
    }

    .sp_only {
        display: block;
    }
}

/* すべて */
section {
    padding-top: 100px;
}

.heading {
    margin: 0 auto;
    padding-top: 170px;
}

.heading2 {
    margin: 0 auto;
    padding-top: 100px;
}

@media screen and (max-width: 767px) {
    .heading {
        padding-top: 80px;
    }
}

/* ナビゲーションメニュー */
.nav {
    position: fixed;
    top: 0;
    right: 0;
    background: #384842;
    width: 140px;
    height: 100vh;
    z-index: 988;
}

.header_logo {
    position: fixed;
    top: 0;
    width: 100px;
    padding-top: 30px;
    padding-left: 30px;
    z-index: 999;
}

.sp_nav {
    display: none;
}

@media screen and (max-width: 767px) {
    .nav {
        position: fixed;
        top: 0;
        background: #384842;
        width: 100%;
        height: 75px;
    }
}


/* ハンバーガー*/
.sp_btn {
    position: fixed;
    top: 40px;
    right: 55px;
    display: block;
    height: 23px;
    cursor: pointer;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .sp_btn {
        position: fixed;
        top: 28px;
        right: 30px;
        display: block;
        height: 23px;
        cursor: pointer;
        z-index: 2;
    }
}

.sp_btn span {
    position: relative;
    top: 10px;
    display: block;
    width: 33px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    transition: 0.3s;
}

.sp_btn span::before,
.sp_btn span::after {
    position: absolute;
    content: "";
    display: block;
    width: 33px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    transition: 0.3s;
}

.sp_btn span::before {
    bottom: 10px;
}

.sp_btn span::after {
    top: 10px;
}


/* ハンバーガー閉じる */
.sp_btn.open span {
    background: transparent;
}

.sp_btn.open span::before {
    bottom: 0;
    transform: rotate(45deg);
}

.sp_btn.open span::after {
    top: 0;
    transform: rotate(135deg);
}


/* ハンバーガーメニュー */
.sp_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #384842;
    z-index: 999;
}

.sp_nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.sp_nav ul li {
    padding: 20px;
    color: #fff;
    font-size: 18px;
    font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}


@media screen and (max-width: 767px) {
    .sp_nav ul {
        margin-top: 0;
    }
}

.wrapper {
    margin-right: 140px;
}

.fv {
    min-height: 100vh;
}

.fv img {
    object-fit: cover;
    height: 100vh;
    width: 100%;
}

.nav_text {
    position: absolute;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    font-size: 16px;
    font-family: "yu-gothic", sans-serif;
    font-weight: normal;
    line-height: 1.75;
    color: #fff;
}

.page_top {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 40px;
}

.footer_wrap {
    width: 100px;
}

@media screen and (max-width: 767px) {
    .wrapper {
        margin-right: 0;
    }

    .header_logo {
        width: 100px;
    }

    .page_top {
        display: none;
    }

    .nav_text {
        display: none;
    }

}

/* フッター */
footer {
    margin: 0 auto;
    max-width: 1000px;
    padding: 60px 0px;
}

.footer_logo {
    max-width: 1000px;
    margin: 0 auto;
    width: 100px;
}

footer p {
    font-size: 10px;
    font-family: "yu-gothic-pr6n", sans-serif;
    font-weight: normal;
    text-align: center;
    color: #003c00
}