@charset "utf-8";
/* ========================================
common.css
------------------------------------------

======================================== */
* -webkit-transform-style: preserve-3d;
/* ---------------------------------------- 
 - html
---------------------------------------- */
html, body {
    margin: 0;
    padding: 0;
}
html {
    font-size: 62.5%;
}
/*@media screen and (max-width: 768px) {
html{
    font-size: 56.25%;
}
}*/
@media screen and (max-width: 320px) {
    html {
        font-size: 52.5%;
    }
}
/* ---------------------------------------- 
 - img
---------------------------------------- */
html img {
    width: 100%;
    height: auto;
}
img.rspImg {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 320px) {
    html img {
        width: 100%;
        height: auto;
    }
}
/* ---------------------------------------- 
 - body
---------------------------------------- */
body {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-size: 1.8rem;
    /*color: #5a5a5a;*/
    color: #231815;
    line-height: 1.8;
    -webkit-text-size-adjust: none; /* 文字の拡大縮小を防ぐ */
    letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
    body {
        letter-spacing: 0;
        font-size: 1.6rem;
    }
}
/* ---------------------------------------- 
 - #container
---------------------------------------- */
#Container {
    width: 100%;
    /*text-align:center;*/
    margin: 0 auto;
    position: relative;
}
#Container * {
    box-sizing: border-box;
}
#Container .pc {
    display: inline-block !important;
}
#Container .sp {
    display: none !important;
}
@media screen and (max-width: 768px) {
    #Container .sp {
        display: inline-block !important;
    }
    #Container .pc {
        display: none !important;
    }
}
#Container .flex {
    display: -webkit-box;
    display: flex;
}
#Container .flex.wrap {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
/* ---------------------------------------- 
 - header
---------------------------------------- */
header {
    width: 100%;
    position: relative;
    z-index: 100;
    background: #0d0d0e url("../images/header_bg.png") center top no-repeat;
    background-size: cover;
    color: #fff;
}
header a {
    color: #fff;
}
header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
header .wrapper {
    width: 100%;
    max-width: 1000px;
    padding: 0 21px 0 34px;
    margin: 0 auto;
    height: 132px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}
header .wrapper a {
    opacity: 1;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
header .wrapper a:hover {
    opacity: .6;
}
header .wrapper h1 a {
    display: block;
}
header .wrapper h1 a img {
    width: 240px;
    height: auto;
    display: inline-block;
    backface-visibility: hidden;
}
@media screen and (max-width: 768px) {
    header {
        width: 100%;
        padding: 0;
        position: relative;
        z-index: 999;
    }
    header .wrapper {
        max-width: none;
        height: 80px;
        padding: 10px 5.2vw;
    }
    header .wrapper h1 a img {
        width: 44.8vw;
        height: auto;
    }
}
/* ---------------------------------------- 
 - .navBox
---------------------------------------- */
header .navBox {
    height: 100px;
    margin-bottom: 10px;
    margin-right: 50px;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
    /*-webkit-flex-direction: column;
    flex-direction: column;*/
    transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
    header .navBox {
        width: 100%;
        height: auto;
        display: block;
        background: #0d0d0e url("../images/bg.jpg") no-repeat;
        background-size: cover;
        position: fixed;
        top: calc(-100% - 70px); /*初期非表示*/
        left: 0;
        padding-top: 80px;
        transition: all 0.3s ease-in-out;
    }
}
/* ハンバーガーメニュー
---------------------------------------- */
.nav-unshown {
    display: none;
}
#nav-open {
    display: inline-block;
    width: 138px; /*80px*/
    height: 138px; /*80px*/
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1002;
    background-color: transparent;
    cursor: pointer;
    display: none; /*初期は非表示*/
}
@media screen and (max-width: 768px) {
    #nav-open {
        width: 80px;
        height: 80px;
        display: inline-block;
    }
}
/* ハンバーガーメニューをCSSだけで表現*/
#nav-open span {
    background: #231815;
    display: block;
    height: 3px;
    left: 35px;
    margin: 0 0 0;
    position: absolute;
    top: 46%;
    transition: all 0.3s ease-in-out;
    width: 68px;
}
#nav-open span:before, #nav-open span:after {
    -webkit-transform: rotate(0);
    background: #fff;
    content: "";
    display: block;
    height: 100%;
    left: 50%;
    margin: -8% 0 0 -50%;
    position: absolute;
    top: 50%;
    transform: rotate(0);
    transition: all 0.3s ease-in-out;
    width: 100%;
}
#nav-open span:before {
    margin-top: -38%;
}
#nav-open span:after {
    margin-top: 30%;
}
#nav-input:checked ~ #nav-open span {
    background: rgba(255, 255, 255, 0);
}
#nav-input:checked ~ #nav-open span:before, #nav-input:checked ~ #nav-open span:after {
    content: "";
    display: block;
    height: 100%;
    left: 50%;
    margin: -8% 0 0 -42%;
    position: absolute;
    top: 50%;
    width: 100%;
    background: #fff;
}
#nav-input:checked ~ #nav-open span:before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
#nav-input:checked ~ #nav-open span:after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
    /* ハンバーガーメニューをCSSだけで表現*/
    #nav-open span {
        background: #fff;
        display: block;
        height: 3px;
        left: 20px;
        margin: 0 0 0;
        position: absolute;
        top: 46%;
        transition: all 0.3s ease-in-out;
        width: 40px;
    }
    #nav-open span {
        display: block !important;
    }
    /*.navBox OPEN*/
    #nav-input:checked ~ #nav-open ~ .navBox {
        /*display: block;*/
        top: 0;
    }
}
/* #Gnav
----------------------------------------- */
header #Gnav ul.parent {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
}
header #Gnav ul.parent > li {
    width: 100px;
    padding: 1em 0;
    font-size: 1.6rem;
}
header #Gnav ul.parent > li > a {
    width: 100%;
    display: block;
    color: #fff;
    text-align: center;
}
@media screen and (max-width: 768px) {
    header #Gnav ul.parent {
        display: block;
        padding: 5.2vw;
        font-size: 2.2rem;
    }
    header #Gnav ul.parent > li {
        width: auto;
        margin-right: 0;
        border-left: none;
        text-align: center;
    }
    header #Gnav ul.parent > li:last-of-type {
        border-right: none;
    }
    header #Gnav ul.parent > li > a {
        color: #fff;
    }
}
/* ---------------------------------------- 
 - #Contents
---------------------------------------- */
#Contents {
    width: 100%;
    margin: 120px auto 0;
    box-sizing: border-box;
}
#Contents .wrapper {
    width: 100%;
    max-width: 1000px;
    padding: 0 50px;
    margin: 0 auto;
    overflow: hidden;
    text-align: left;
}
#Contents .section {
    /*padding-top: 144px;*/
}
@media screen and (max-width: 1024px) {
    #Contents .wrapper {
        width: 100%;
        max-width: none;
        padding: 0 5.2vw;
    }
}
@media screen and (max-width: 768px) {
    #Contents {
        margin-top: 80px;
    }
    #Contents .wrapper {
        width: 100%;
        max-width: none;
        padding: 0 5.14vw;
    }
    #Contents .section {
        /*padding-top: 80px;*/
    }
}
/* H
---------------------------------------- */
/*基本ページタイトル*/
#Contents .section h2 {
    padding-bottom: 1.2rem;
    font-weight: 500;
    font-size: 5.6rem;
    color: #c09b0f;
    letter-spacing: .1em;
}
@media screen and (max-width: 768px) {
    #Contents .section h2 {
        font-size: 4.2rem;
    }
}
/* ---------------------------------------- 
 - #pagetop
---------------------------------------- */
#pageTop {
    width: 50px;
    height: 50px;
    background: #231815;
    position: fixed;
    bottom: 0;
    right: 15px;
    cursor: pointer;
    z-index: 100;
    text-indent: -9999px; /* CSS3草案 */
    -webkit-transform: translate3d(0, 100.1%, 0);
    transform: translate3d(0, 100.1%, 0);
    opacity: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
}
#pageTop.fadeIn {
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
    transition-timing-function: cubic-bezier(0.42, 0, 0.58, 1.0);
}
#pageTop:hover {
    opacity: 0.5;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
#pageTop a::before, #pageTop a::after {
    position: absolute;
    top: 8px;
    bottom: 0;
    right: 20px;
    margin: auto;
    content: "";
    vertical-align: middle;
    width: 10px;
    height: 10px;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
@media screen and (max-width: 480px) {
    #pageTop {
        width: 40px;
        height: 40px;
        right: 2%;
    }
    #pageTop a::before, #pageTop a::after {
        top: 7px;
        right: 16px;
        width: 8px;
        height: 8px;
    }
}
/* ---------------------------------------- 
 - footer
---------------------------------------- */
footer {
    width: 100%;
    height: auto;
    background-color: #231815;
    color: #fff;
}
footer .wrapper {
    width: 100%;
    max-width: 1000px;
    padding: 3.5rem 5rem 0;
    margin: 0 auto;
}
footer .wrapper a {
    color: #fff;
}
/*bannerBox*/
footer .wrapper h2 {
    width: 100%;
    padding-bottom: .5em;
    margin-bottom: 2em;
    border-bottom: #fff solid 1px;
    font-size: 2.2rem;
}
footer .wrapper .bannerBox {
    width: 100%;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    font-size: 1.6rem;
}
footer .wrapper .bannerBox ul {
    padding: 0 0 0 50px;
}
footer .wrapper .bannerBox ul li {
    padding-bottom: 2em;
}
footer .wrapper .bannerBox img {
    width: 100%;
    height: auto;
    padding-bottom: 1em;
}
footer .wrapper .bannerBox span {
    position: relative;
}
footer .wrapper .bannerBox span::after {
    content: url("../images/ico_link.png");
    position: absolute;
    bottom: -0.25em;
    right: -3em;
}
@media screen and (max-width: 768px) {
    footer .wrapper .bannerBox {
        font-size: 1.5rem;
    }
    footer .wrapper .bannerBox span::after {
        display: block;
        content: url("../images/ico_link.png");
        position: relative;
        bottom: auto;
        right: auto;
    }
}
/*infoBox*/
footer .wrapper .infoBox {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    padding-top: 2rem;
    margin-top: 2.5rem;
    border-top: #fff solid 1px;
    font-size: 2.2rem;
}
footer .wrapper .infoBox p.sns {
    width: 50px;
}
/*.copyright*/
footer .wrapper p.copyright {
    text-align: center;
    padding: 6rem 0;
}
@media screen and (max-width: 768px) {
    footer .wrapper {
        width: 100%;
        max-width: none;
        padding: 3rem 5.2vw;
        margin: 0 auto;
        display: block;
        font-size: 1.4rem;
    }
    /*bannerBox*/
    footer .wrapper h2 {
        margin-bottom: 1.5em;
    }
    footer .wrapper .bannerBox {
        font-size: 1.4rem;
    }
    footer .wrapper .bannerBox ul {
        padding: 0;
    }
    footer .wrapper .bannerBox img {
        padding-bottom: .8em;
    }
    /*infoBox*/
    footer .wrapper .infoBox {
        display: block;
        padding-top: 2rem;
        margin-top: 2.5rem;
        border-top: #fff solid 1px;
        font-size: 1.8rem;
    }
    footer .wrapper .infoBox p.sns {
        margin-top: 1em;
    }
    /*.copyright*/
    footer .wrapper p.copyright {
        text-align: center;
        padding: 6rem 0;
    }
}