@charset "utf-8";
/* -----------------------------------------------------------
 =common css
----------------------------------------------------------- */ :root {
    --mainColor: #BBA700;
    --mainColorBg: #A89606;
    --textColor: #fff;
    --bgColor: #212021;
    --bgColorSection: #2E2D2E;
    --hoverOpacity: 0.6;
}
body {
    min-width: 320px;
    background-color: var(--bgColor);
    color: var(--textColor);
    font-family: 'Noto Serif JP', "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", serif;
    font-weight: 400;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 1;
}
@media print, screen and (min-width: 768px) {
    body {
        font-size: 1.6rem;
        letter-spacing: 0.05em;
    }
}
/* link
----------------------------------------------------------- */
#areaHeader a, #footer a, #sidebar a, .breadcrumbs a {
    text-decoration: none;
}
a, a:hover, a img, a::before, a::after, .btnForm {
    -webkit-transition: 0.5s;
    transition: 0.5s;
}
a {
    color: var(--textColor);
}
a:hover {
    color: var(--mainColor);
}
a:hover img, input[type="submit"]:hover {
    opacity: var(--hoverOpacity);
    transition: 0.5s;
}
.areaMain a:hover {
    text-decoration-color: transparent;
}
/* button
----------------------------------------------------------- */
.btnBasic {
    text-align: center;
}
.btnBasic a, .btnLogin a, .btnFormSubmit, .btnFormConfirm, .btnBack a, .btnFormBack, .post-password-form input[type="submit"] {
    display: inline-block;
    width: 100%;
    max-width: 20em;
    color: var(--textColor);
    font-size: 1.4rem;
    line-height: 3.6em;
    text-align: center;
    text-decoration: none;
}
.btnFormBack {
    display: block;
    width: 10em;
    margin-bottom: 1em;
    padding: 0 2.5em;
}
.btnHeaderLogin a {
    display: inline-block;
    width: 90px;
    color: var(--textColor);
    font-size: 1.2rem;
    line-height: 2.8;
    text-align: center;
    text-decoration: none;
}
.btnBasic a, .post-password-form input[type="submit"] {
    background-color: var(--mainColorBg);
}
.btnHeaderLogin a, .btnLogin a, .btnFormConfirm, .btnBack a, .btnFormBack {
    background-color: #434243;
}
.btnFormSubmit {
    background-color: var(--mainColorBg);    
}
.btnBack a {
    position: relative;
}
.btnFormBackWrap{
  color: #fff;
  position: relative;
  line-height: 2.8em;
  width: 130px;
  transition: 0.5s;
    margin-bottom: 1em;
}
.btnBack a::before, .btnFormBackWrap::before {
    position: absolute;
    content: "";
top:50%;
    left: 20px;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--textColor);
    border-right: 1px solid var(--textColor);
    transform: translateY(-50%) rotate(-135deg);
}
.btnBasic a:hover, .btnLogin a:hover, .btnFormSubmit:hover, .btnBack:hover a:hover, .btnFormBack:hover {
    filter: alpha(opacity=70);
    opacity: var(--hoverOpacity);
}
.btnHeaderLogin a:hover, .btnLogin a:hover {
    background-color: var(--mainColorBg);
    opacity: 1;
}
ul li.btnBasic {
    list-style: none;
}
@media print, screen and (min-width: 768px) {
    .btnBasic a, .btnFormSubmit, .btnLogin a, .btnFormConfirm, .btnBack a, .btnFormBack {
        font-size: 1.5rem;
    }
}
/* -----------------------------------------------------------
 =header, glovalnavi
----------------------------------------------------------- */
#areaHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 320px;
    background-color: var(--bgColor);
    padding: 0 4%;
    z-index: 1000;
    -webkit-transition: 0.8s;
    transition: 0.8s;
}
#areaHeader.dettach {
    box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.3);
}
.header, .headerHome {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    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;
    position: relative;
    height: 70px;
}
.logo {
    margin-top: 5px;
}
.logo img {
    width: 44px;
}
/* gnavi --------------- */
.btnGNaviSp, .btnGNaviSp span {
    display: inline-block;
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
}
.btnGNaviSp {
    position: relative;
    width: 26px;
    height: 18px;
}
.btnGNaviSp span, .btnGNaviSp.select span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--textColor);
}
.btnGNaviSp span:nth-of-type(1) {
    top: 0;
}
.btnGNaviSp span:nth-of-type(2) {
    top: 8px;
}
.btnGNaviSp span:nth-of-type(3) {
    bottom: 0;
}
.btnGNaviSp.select span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg);
}
.btnGNaviSp.select span:nth-of-type(2) {
    opacity: 0;
}
.btnGNaviSp.select span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
}
.areaGNavi {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(33, 32, 33, 0.98);
    overflow-y: auto;
}
.gNavi {
    border-top: 1px solid #1a1a1a;
    margin-bottom: 35px;
}
.gNavi > li {
    border-bottom: 1px solid rgba(26, 26, 26, 0.7);
    text-align: center;
}
.gNavi li a {
    display: block;
    position: relative;
    padding: 17px 20px;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
}
.gNavi li a:hover {
    background-color: rgba(0, 0, 0, 1.0);
}
.areaHeaderSub {
    text-align: center;
    font-size: 1.2rem;
}
.ownerNameTxt {
    margin-bottom: 2em;
}
.ownerName {
    font-size: 1.3rem;
}
@media print, screen and (min-width: 768px) {
    #areaHeader {
        /*min-width: 1080px;*/
        height: 120px;
        padding: 5px 50px 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
    }
    #areaHeader.dettach {
        background-color: #1a1a1a;
    }
    .areaHeaderInner {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        height: 145px;
    }
    .header, .headerHome {
        height: 96px;
        padding-top: 10px;
    }
    .headerHome {
        width: 100%;
        -ms-align-items: flex-start;
        align-items: flex-start;
    }
    .areaBtnGnaviSp {
        display: none;
    }
    .areaGNavi {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        position: static;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        -o-flex-direction: column;
        flex-direction: column;
        width: auto;
        height: auto;
        overflow-y: visible;
        background-color: transparent;
    }
    .logo img {
        width: 70px;
    }
    .gNavi {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        border-top: none;
        /*width: 460px;*/
        margin: 22px auto 0;
    }
    .gNavi > li {
        border-bottom: none;
    }
    .gNavi li:not(:last-child) {
        margin-right: 4vw;
    }
    .gNavi li a {
        padding: 0 0 16px 0;
        font-size: 1.5rem;
    }
    .gNavi li a::before {
        position: absolute;
        bottom: 6px;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: var(--mainColor);
        content: "";
        transform: scale(0, 1);
        transform-origin: left top;
        transition: 0.4s;
    }
    .gNavi li a:hover::before {
        transform: scale(1, 1);
    }
    .gNavi li a:hover {
        background-color: transparent;
    }
    .areaHeaderSub {
        order: -1;
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: flex-end;
        -ms-align-items: center;
        align-items: center;
        margin-top: 10px;
    }
    .ownerNameTxt {
        margin-right: 2em;
        margin-bottom: 0;
    }
}
/* -----------------------------------------------------------
 =breadcrumbs list
----------------------------------------------------------- */
.areaBreadcrumbs {
    padding: 10px 4% 15px;
}
.breadcrumbs {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    color: #CFCFCF;
    font-size: 1rem;
    line-height: 1.4;
    letter-spacing: 0;
}
.breadcrumbs li {
    position: relative;
    padding-left: 17px;
}
.breadcrumbs li::before {
    position: absolute;
    top: 50%;
    left: 4px;
    content: "";
    width: 5px;
    height: 5px;
    border-top: 1px solid #CFCFCF;
    border-right: 1px solid #CFCFCF;
    -webkit-transform: rotate(45deg) translateY(-50%);
    transform: rotate(45deg) translateY(-50%);
}
.breadcrumbs li:first-child {
    padding-left: 0;
}
.breadcrumbs li:first-child::before {
    display: none;
}
.breadcrumbs li a {
    color: #BEBEBE;
}
.breadcrumbs li a:hover {
    color: var(--textColor);
}
@media print, screen and (min-width: 768px) {
    .areaBreadcrumbs {
        width: 1180px;
        margin: 0 auto;
        padding: 15px 50px 50px;
    }
    .breadcrumbs li {
        padding-left: 20px;
    }
}
/* -----------------------------------------------------------
 =contents
----------------------------------------------------------- */
#contents {
    padding-top: 70px; /* default */
    line-height: 1.7;
}
.areaMain {
    padding: 3.5em 4% 4em;
}
.bgSection {
    background-color: var(--bgColorSection);
}
/* title --------------- */
.h1page {
    margin-bottom: 1.5em;
    font-size: 2.0rem;
    text-align: center;
    letter-spacing: 0.1em;
}
.h1Catch {
    margin-bottom: 1.3em;
    font-size: 2.0rem;
    line-height: 1.8;
}
.h2Mypage {
    margin-bottom: 0.8em;
    font-size: 1.7rem;
}
.h2Mypage span {
    font-size: 2.0rem;
}
@media print, screen and (min-width: 768px) {
    #contents {
        padding-top: 120px;
        line-height: 1.8;
    }
    .areaMain {
        max-width: 1100px;
        margin: 0 auto;
        padding: 5.5em 50px 6em;
    }
    /* title --------------- */
    .h1page {
        font-size: 2.4rem;
    }
    .h1Catch {
        font-size: 2.8rem;
    }
    .h2Mypage {
        font-size: 1.9rem;
    }
    .h2Mypage span {
        font-size: 2.8rem;
    }
}
/* -----------------------------------------------------------
 =footer
----------------------------------------------------------- */
/* footer info and navi --------------- */
.areaFooterWrap {
    background-color: var(--bgColorSection);
    padding: 25px 4% 30px;
}
.footerLogo {
    margin-bottom: 2em;
}
.footerLogo img {
    width: 44px;
}
.footerInfo {
    margin-bottom: 2em;
}
.footerInfo dt {
    margin-bottom: 0.6em;
}
.footerInfo dd {
    font-size: 1.3rem;
}
.footerNavi {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-bottom: 25px;
    font-size: 1.3rem;
}
.footerNavi li:not(:last-child) {
    margin-right: 30px;
}
.snsNavi {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    margin-bottom: 25px;
}
.snsNavi01 img {
    width: 24px;
}
.snsNavi02 img {
    width: 22px;
}
.snsNavi03 img {
    width: 20px;
}
.snsNavi li:not(:last-child) {
    margin-right: 25px;
}
/* copyright --------------- */
.copyright small {
    color: #ADAAAA;
    font-size: 1.0rem;
}
/* pagetop --------------- */
.pagetop {
    display: none;
    position: fixed;
    right: 10px;
    bottom: 50px;
    z-index: 10;
}
.pagetop a {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    background-color: rgba(255, 255, 255, 0.01);
}
.pagetop img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 23px;
    opacity: var(--hoverOpacity);
}
.pagetop a:hover img {
    top: -8px;
    opacity: 1;
}
.pagetop a:hover {
    border: 1px solid rgba(255, 255, 255, 0.8);
}
@media print, screen and (min-width: 960px) {
    .areaFooterWrap {
        padding: 50px 50px 40px;
    }
    .areaFooter {
        /*width: 1080px;*/
        /*margin: 0 auto;*/
    }
    .areaFooterInner {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        -ms-align-items: flex-end;
        align-items: flex-end;
        margin-bottom: 2em;
        font-size: 1.3rem;
    }
    .footerLogo img {
        width: 60px;
    }
    .footerInfo {
        margin-bottom: 0;
    }
    .footerInfo dt {
        font-size: 1.5rem;
    }
    .areaSnsNavi {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: flex-end;
    }
    .footerNavi {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        margin-bottom: 40px;
    }
    .snsNavi {
        margin-bottom: 0;
    }
    /* copyright --------------- */
    .copyright small {
        font-size: 1.1rem;
    }
    /* pagetop --------------- */
    .pagetop {
        bottom: 190px;
        right: 15px;
    }
    .pagetop a {
        width: 54px;
        height: 54px;
    }
    .pagetop img {
        width: 28px;
    }
    .pagetop a:hover img {
        top: -12px;
    }
}
@media print {
    .pagetop {
        display: none !important;
    }
}