/********************************************************************************
OOCSS設計　設計ルール
レイアウト関係は l- を接頭辞につける（ヘッダー、フッター、コンテンツ、サイドメニュー等）
モジュールは　接頭辞なし（共通の要素、マージンやパディング、ワイド等）
ステートは　js- を接頭辞につける（js用のクラス等）
テーマ　theme- を接頭辞につける（カラムごとなどに分ける必要がある場合など）
********************************************************************************/

/*共通マージン 表記はm＋マージンかけたい場所の頭文字＋指定したい数値*/
.m-auto {
    margin: auto;
}

.m1 {
    margin: 1em;
}

.m2 {
    margin: 2em;
}

.m3 {
    margin: 3em;
}

.m4 {
    margin: 4em;
}

.m5 {
    margin: 5em;
}

.mb1 {
    margin-bottom: 1em;
}

.mt1 {
    margin-top: 1em;
}

.mt2 {
    margin-top: 2em;
}

.mt3 {
    margin-top: 3em;
}

.mt4 {
    margin-top: 4em;
}

.mt5 {
    margin-top: 5em;
}

.mb1 {
    margin-bottom: 1em;
}

.mb2 {
    margin-bottom: 2em;
}

.mb3 {
    margin-bottom: 3em;
}

.mb4 {
    margin-bottom: 4em;
}

.mb5 {
    margin-bottom: 5em;
}

.ml1 {
    margin-left: 1em;
}

.ml2 {
    margin-left: 2em;
}

.ml3 {
    margin-left: 3em;
}

.ml4 {
    margin-left: 4em;
}

.ml5 {
    margin-left: 5em;
}

.mr1 {
    margin-right: 1em;
}

.mr2 {
    margin-right: 2em;
}

.mr3 {
    margin-right: 3em;
}

.mr4 {
    margin-right: 4em;
}

.mr5 {
    margin-right: 5em;
}

/*共通width　表記はw＋指定したい数値*/
.w100,
.w200,
.w300,
.w400,
.w500,
.w600,
.w700,
.w800,
.w900,
.w1000,
.w1100,
.w1200 {
    width: 100%;
}

.w100 {
    max-width: 100px;
}

.w200 {
    max-width: 200px;
}

.w300 {
    max-width: 300px;
}

.w400 {
    max-width: 400px;
}

.w500 {
    max-width: 500px;
}

.w600 {
    max-width: 600px;
}

.w700 {
    max-width: 700px;
}

.w800 {
    max-width: 800px;
}

.w900 {
    max-width: 900px;
}

.w1000 {
    max-width: 1000px;
}

.w1100 {
    max-width: 1100px;
}

.w1200 {
    max-width: 1200px;
}

/*共通フィックス*/
.fb,
.fbr,
.fbl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.fbr {
    flex-direction: row-reverse;
}

.fbl {
    flex-direction: row;
}

.fbend {
    justify-content: flex-end;
}

/*フォント読み込み*/
@import url('https://fonts.googleapis.com/css2?family=RocknRoll+One&display=swap');

body {
    font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック体', 'Yu Gothic', YuGothic, 'MS PGothic', Osaka, arial, sans-serif;
    overflow-x: hidden;
}

/*ヘッダー*/
.header {
    padding: 1em;
/*    border-bottom: #E96000 1px solid;
*/}

.header .nav {
    transform: translateX(110%);
    position: fixed;
    top: 0;
    right: 0;
    padding: 2em 0;
    background: #E96000;
    height: 100%;
    width: 30%;
    border-left: 3px solid #EFC33F;
    z-index: 2;
}

.header .nav.active {
    transform: translateX(0);
    transition: all 0.5s ease;
}

.header .nav li {
    border-bottom: 1px dotted #fff;
}

.header .nav li:first-child {
    border-top: 1px dotted #fff;
}

.header .nav li a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 1em 2em 1em 1em;
    width: 100%;
    position: relative;
    box-sizing: border-box;
}

.header .nav li a:hover {
    background: #fbc602;
    transition: all 0.5s ease;
}

.header .nav li a::after {
    content: "\f105";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    position: absolute;
    top: 50%;
    right: 2em;
    transform: translate(0, -50%);
    display: block;
}

.header .nav .navclose {
    text-align: right;
    margin-right: 2em;
    color: #fff;
    margin-bottom: 1.5em;
}

.header .navopne {
    color: #E96000;
}

/*727px以下　SP表示処理*/
@media screen and (max-width: 727px) {
    .header .nav {
        width: 80%;
    }
}



/*フッター*/
.footer {
    padding: 1em 0;
    width: 100%;
    color: #707070;
    border-top: #E96000 1px solid;
}

.footer ul {
    list-style: none;
    width: 80%;
    max-width: fit-content;
    margin: 1em auto;
}

.footer .rogo {
    width: 250px;
    margin-right: 1em;
}

.footer .rogo img {
    width: 100%;
}

.footer .text {
    width: calc(100% - 250px - 1em);
}

.footer .text p:first-child {
    font-size: 16px;
    margin-bottom: 0.5em;
}

.footer .text p:last-child {
    font-size: 30px;
    font-weight: bold;
}

.footer .copy {
    text-align: center;
    margin-top: 1em;
    font-size: 14px;
}

/*727px以下　SP表示処理*/
@media screen and (max-width: 727px) {
    .footer ul {
        display: block;
        width: 95%;
    }

    .footer .rogo {
        margin-left: 0;
        margin-bottom: 1em;
    }

    .footer .text p:first-child {
        font-size: 14px;
        text-align: center;
    }

    .footer .text p:last-child {
        font-size: 20px;
        text-align: center;
        margin: 0.5em 0 2em;
    }

    .footer .text {
        width: 100%;
    }
}

/*パンクず*/
.breadcrumb {
    max-width: 1000px;
    margin: 1em auto;
    width: 95%;
}

.breadcrumb ul{
    display: flex;
    list-style: none;
    width: fit-content;
}
.breadcrumb ul li{
    margin-right: 1em;
    color: #707070;
}
.breadcrumb ul li a{
    color: #707070;
    text-decoration: none;
}
.breadcrumb ul li a::after {
    content: "\f105";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    margin-left: 1em;
}

/*下部ページ読み込み時アニメーション処理*/
.loading{
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    animation: loading 1.0s ease-out forwards ;
    transform: translateX(-100%);
    background: #E96000;
}

@keyframes loading {
    0%{
        transform: translateX(-100%);
    }
    50%{
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

.set-beneath {
    opacity: 0;
    -webkit-animation: bodyset-beneath .5s ease-out forwards 1.0s;
    -moz-animation: bodyset-beneath .5s ease-out forwards 1.0s;
    -o-animation: bodyset-beneath .5s ease-out forwards 1.0s;
    animation: bodyset-beneath .5s ease-out forwards 1.0s;
}

@-webkit-keyframes bodyset-beneath {

    100% {
        opacity: 1;
    }
}

@-moz-keyframes bodyset-beneath {

    100% {
        opacity: 1;
    }
}

@-o-keyframes bodyset-beneath {

    100% {
        opacity: 1;
    }
}

@keyframes bodyset-beneath {

    100% {
        opacity: 1;
    }
}