@charset "UTF-8";
@import url("css/reset.min.css");

/*
theme Name: SHINKOUKENBI
Author: SHINKOUKENBI
Description: SHINKOUKENBI
*/

@font-face {
    font-family: 'shippori-semi';
    src: url(font/ShipporiMinchoB1-SemiBold.ttf);
}

@font-face {
    font-family: 'shippori-ex';
    src: url(font/ShipporiMinchoB1-ExtraBold.ttf);
}

@font-face {
    font-family: 'noto';
    src: url(font/NotoSansJP-Light.otf);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 62.5%;
    /*pxだと10px;*/
}

@media screen and (min-width:901px) and (max-width:1300px) {

    /*　画面サイズが901pxから1300pxまではここを読み込む　*/
    html {
        font-size: 56.5%;
        /*pxだと9.04px;*/
    }
}

body {
    width: 100%;
    height: auto;
    color: #272525;
    font-family: 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic';
    letter-spacing: 0.02em;
    position: relative;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

a {
    display: block;
    color: #000;
    text-decoration-line: none;
}

a:hover {
    opacity: 0.9;
    transition-duration: 0.8s;
}

a img:hover {
    opacity: 0.9;
    transition-duration: 0.8s;
}

a.anchor {
    display: block;
    margin-top: -80px;
    padding-top: 80px;
}

@media screen and (max-width: 900px) {
    a.anchor {
        margin-top: -40px;
        padding-top: 40px;
    }
}

.underline {
    border-bottom: 3px solid #000;
    padding-bottom: 1rem;
}

.pc-none {
    display: none;
}

.sp-none {
    display: block;
}

@media screen and (max-width: 900px) {
    .pc-none {
        display: block;
    }

    .sp-none {
        display: none;
    }

    a.anchor {
        margin-top: -40px;
        padding-top: 40px;
    }
}

.clear {
    clear: both;
}

.max-img {
    width: 100%;
}

/*ヘッダー
-------------------------------------*/
#header {
    width: 100%;
    z-index: 3;
}

#header .header-inner {
    width: 97%;
    height: 144px;
    margin: 0 0 0 3%;
    color: #fff;
    display: flex;
    align-items: flex-end;
    transition-duration: 0.5s;
    box-sizing: border-box;
}

@media screen and (max-width: 900px) {
    #header .header-inner {
        height: 67px;
        align-items: center;
    }
}

/*ロゴ*/
#header .logo-area {
    margin-bottom: 36px;
}

#header h1 {
    display: block;
    width: 368px;
    height: 68.72px;
    transition-duration: 0.5s
}

@media screen and (max-width: 1142px) {
    #header h1 {
        width: 314.31px;
        height: 58.7px;
    }
}

@media screen and (max-width: 900px) {
    #header .logo-area {
        margin-bottom: 0;
    }

    #header h1 {
        width: 176px;
        height: auto;
    }
}

/*メインナビゲーション*/
#header nav {
    margin-left: 11rem;
}

#header nav ul {
    display: flex;
    margin-bottom: 36px;
}

#header nav li a {
    display: block;
    height: 47px;
    line-height: 47px;
    padding: 0 1.7rem;
    box-sizing: border-box;
    font-size: 1.45rem;
    font-family: 'shippori-semi';
    letter-spacing: 0.1em;
    text-align: center;
    white-space: nowrap;
    transition-duration: 0.5s;
}

@media screen and (max-width: 1142px) {
    #header nav li a {
        padding: 0 1.5rem;
        font-size: 1.2rem;
    }
}

@media screen and (max-width: 900px) {
    #header nav li a {
        padding: 0;
        font-size: 1.6rem;
        text-align: left;
    }
}

#header nav li a:hover,
#header nav li a.current {
    color: #2A6C08;
}

#header nav .leaf {
    display: none;
}

@media screen and (max-width: 900px) {
    #header nav {
        display: block;
        position: fixed;
        top: 0;
        right: -307px;
        width: 307px;
        height: 100vh;
        background: #fff;
        overflow-x: hidden;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transition: all .5s;
        z-index: 200;
        opacity: 0;
    }

    #header .open nav {
        right: 0;
        opacity: 1;
        overflow: hidden;
    }

    #header .open nav .leaf {
        position: absolute;
        content: '';
        top: -100px;
        left: -100px;
        display: block;
        z-index: -1;
    }

    #header nav .inner {
        padding: 148px 0 25px 48px;
    }

    #header nav .inner ul {
        display: block;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    #header nav .contact {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 212px;
        height: 40px;
        line-height: 40px;
        background: #fff;
        border: 1px solid #272525;
        border-radius: 2px;
        font-size: 13px;
        font-family: 'shippori-semi';
        margin-top: 30px;
    }

    #header nav .contact img {
        width: 21px;
        height: 10.71px;
        padding-right: 6px;
    }
}


/*ハンバーガーボタン*/
@media screen and (min-width: 901px) {

    /* PC時はMENUボタンを非表示 */
    .toggle_btn {
        display: none !important;
    }

    #navi {
        display: block !important;
    }
}

@media screen and (max-width: 900px) {
    #header .toggle_btn {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        width: 60px;
        height: 60px;
        transition: all .5s;
        cursor: pointer;
        z-index: 3;
    }

    #header .toggle_btn span {
        display: block;
        position: absolute;
        right: 18px;
        width: 25px;
        height: 7px;
        background-image: url(img/common/tgl-btn.svg);
        transition: all .5s;
    }

    #header .toggle_btn span:nth-child(1) {
        top: 23px;
    }

    #header .toggle_btn span:nth-child(2) {
        top: 34px;
    }

    #header .open .toggle_btn {
        z-index: 300;
    }

    #header .open .toggle_btn span:nth-child(1) {
        -webkit-transform: translateY(10px) rotate(-315deg);
        transform: translateY(10px) rotate(-315deg);
        top: 18px;
    }

    #header .open .toggle_btn span:nth-child(2) {
        -webkit-transform: translateY(-10px) rotate(315deg);
        transform: translateY(-10px) rotate(315deg);
        top: 38px;
    }

    #header #mask {
        display: none;
        transition: all .5s;
    }

    #header .open #mask {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.5);
        opacity: .8;
        z-index: 2;
        cursor: pointer;
    }

}


/*コンテナ
-------------------------------------*/
section,
article,
div {
    box-sizing: border-box;
}

.wrap {
    padding-top: 0;
}

@media screen and (max-width: 900px) {
    .wrap {
        padding-top: 0;
    }
}

.container {
    max-width: 976px;
    width: 85%;
    margin: 0 auto;
}


.container-full {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
}

/*文字
-------------------------------------*/
h2 {
    font-size: 3.5rem;
    font-family: 'shippori-semi';
    text-align: center;
}

@media screen and (max-width: 900px) {
    h2 {
        font-size: 2rem;
    }
}

/*パンくずリスト
-------------------------------------*/
.breadcrumb-area {
    width: 94%;
    margin: 0 auto 39px;
}

ul.breadcrumb {
    display: flex;
    align-items: center;
    font-size: 12px;
}

ul.breadcrumb a:hover {
    color: #2A6C08;
}

ul.breadcrumb img {
    padding: 0 0.5em;
}

@media screen and (max-width: 900px) {
    .breadcrumb-area {
        margin: 0 auto 20px;
    }

    ul.breadcrumb {
        font-size: 11px;
    }
}

/*バナー
-------------------------------------*/
.banner {
    margin-top: 106px;
}

.banner .container {
    border-top: 0.3px solid #272525;
    padding: 22px 79px 37px;
    display: flex;
    justify-content: space-between;
}

@media screen and (max-width: 900px) {
    .banner {
        margin-top: 64px;
    }

    .banner .container {
        padding: 20px 0 10px;
        flex-wrap: wrap;
    }

    .banner .container a {
        width: 50%;
        margin-bottom: 1rem;
    }

    .banner .container a.one {
        width: 100%;
        text-align: center;
    }
}

/*ページトップへ戻るボタン
-------------------------------------*/
#pagetop {
    position: absolute;
    top: -65px;
    right: 5%;
    width: 37.65px;
    height: 78px;
    background-image: url(img/common/page-top.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

@media screen and (max-width: 900px) {
    #pagetop {
        top: -18px;
        bottom: 350px;
        width: 26.69px;
        height: 54.11px;
    }
}

/*フッター
-------------------------------------*/
footer {
    position: relative;
    width: 100%;
    background: #F5F2EF;
    padding: 37px 0;
    font-family: 'shippori-semi';
}

footer .container {
    display: flex;
    justify-content: space-between;
    max-width: 93%;
    margin: 0 auto;
}

footer .logo {
    width: 190.89px;
    height: 35.65px;
    margin-bottom: 27px;
}

footer .adress {
    font-size: 12px;
    line-height: 1.4;
}

footer p.place,
footer p.place2 {
    font-size: 13px;
    border-bottom: 1px solid#000;
    padding-bottom: 5px;
    margin-bottom: 7px;
}

footer p.place2 {
    padding-top: 18px;
}

.footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-nav ul li a {
    font-size: 13px;
    padding: 0 13px;
    white-space: nowrap;
}

.footer-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 52px;
    line-height: 52px;
    background: #fff;
    border: 1px solid #272525;
    border-radius: 2px;
    font-size: 14px;
    float: right;
    margin-bottom: 116px;
}

.footer-contact img {
    width: 29.63px;
    height: 13.31px;
    padding-right: 6px;
}

footer .copy {
    clear: both;
    text-align: right;
}

@media screen and (max-width: 900px) {
    footer .logo {
        margin: 0 auto 30px;
    }

    footer .adress {
        text-align: center;
    }

    footer p.place,
    footer p.place2 {
        border: none;
        padding-bottom: 0;
    }

    footer .adress a {
        display: inline;
    }

    footer .container {
        display: block;
    }

    .footer-nav-wrap {
        margin-top: 30px;
    }

    .footer-nav ul li {
        width: 25%;
    }

    .footer-nav ul li a {
        padding: 5px 13px;
    }

    .footer-contact {
        float: none;
        margin: 0 auto 20px;
    }

    footer .copy {
        text-align: center;
    }
}