@charset "utf-8";


/*------------------------------------------------------

   common

-------------------------------------------------------*/
:root {
	--base-color: #000000;
    --main-color: #357acb;/*blue*/
    --bg-color:   #eaf1f7;
    
    --font-en:   "Barlow", sans-serif;
}


body {
    background: #f1f1f1;
    padding: 70px 0 50px;
    min-height: 100vh;
    color: var(--base-color);
	position: relative;
	font-family: 'Noto Sans JP', sans-serif;
}
input,
select,
textarea,
radio,
checkbox,
button {
	font-family: 'Noto Sans JP', sans-serif;
}

.sp {
    display: none !important;
}

.inner {
    padding: 0 60px;
    margin: auto;
    position: relative;
}
/* off */
.link-off a {
    cursor: default !important;
    color: #ccc !important;
}

/* error */
.err-msg {
    color: #cc0000;
    margin-bottom: 30px;
}
.err-msg2 {
    color: #cc0000;
    font-size: 13px;
}
.error {
    border-color: red !important;
}

/* editMsg */
.editMsg {
    text-align: center;
    color: #fff;
    width: 100%;
    line-height: 1;
    padding: 20px;
    position: fixed;
    top: 49%;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10;
}



/* ----------------------------
   header
-------------------------------*/

#global-header {
    width: 100%;
    height: 70px;
    background: #101010;
   -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10001;
}
.site-title {
    width: 131px;
    line-height: 1;
    position: absolute;
    left: 20px;
    top: 12px;
}
.site-title a {
    display: flex;
    align-items: center;
    line-height: 1;
}

.main-nav {
    border-radius: 30px 30px 0 0;
    background: #fff;
    padding: 35px 0;
    margin-top: -35px;
    position: relative;
    z-index: 10;
}
.main-nav__list {
    display: flex;
    justify-content: center;
}
.main-nav__list >li {
    font-size: 18px;
    font-weight: 500;
    position: relative;
    padding-left: 4%;
    margin-left: 4%;
}
.main-nav__list >li:first-child {
    padding-left: 0;
    margin-left: 0;
}
.main-nav__list >li:not(:first-child):before {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    background: var(--base-color);
    position: absolute;
    left: 0;
    top: 0;
}
.main-nav__list >li a {
    color: var(--base-color);
   -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.main-nav__list >li a:hover {
    color: var(--main-color);
}

.scrolled-off #global-header {
    background: none;
}

/**/
.mypage-login {
    width: 70px;
    height: 70px;
    text-align: center;
    position: fixed;
    top: 0;
    right: 70px;
    z-index: 999999;
}
.mypage-login a {
    display: block;
    padding-top: 10px;
}
.mypage-login i {
    display: block;
    width: 30px;
    height: 37px;
    background: url("../img/icon_mypage.png") no-repeat center;
    background-size: contain;
    margin: 0 auto;
}
.mypage-login span {
    display: block;
    font-size: 10px;
    margin-top: 5px;
    line-height: 1;
    color: #fff;
}

#menu-btn {
    width: 70px;
    height: 70px;
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999999;
}
#menu-btn span {
    width: 50px;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 10px;
   -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#menu-btn span.t {
    top: 22px;    
}
#menu-btn span.m {
    top: 34px;    
}
#menu-btn span.b {
    bottom: 22px;
}
#menu-btn.active span.t {
    transform: rotate(30deg);
    top: 34px;
}
#menu-btn.active span.m {
    width: 0;
}
#menu-btn.active span.b {
    transform: rotate(-30deg);
    bottom: 35px;
}


#sp-nav {
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    padding: 100px 0;
    overflow: auto;
    opacity: 0;
    visibility: hidden;
    position: fixed;
    left:0;
    top:0;
    z-index: -9999;
   -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
#sp-nav.active {
    opacity: 1;
    visibility: visible;
    z-index: 9999;
}
.sp-nav__list {
    margin-bottom: 30px;
}
.sp-nav__list > li {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    transition-duration: .3s;
    border-bottom: dotted 1px #fff;
}
.sp-nav__list > li a,
.sp-nav__list > li span {
    display: block;
    color: #fff;
    padding: 10px;
}
#sp-nav.active .sp-nav__list >li {
    opacity: 1;
    transform: translateY(0);
}


/* ----------------------------
   contets
-------------------------------*/
.mypage-wrap {
    max-width: 1200px;
    margin: auto;
    background: #fff;
}

.mypage-title {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: url("../img/header_bg.png") no-repeat center;
    background-size: cover;
}
.mypage-title h2 {
    font-size: 50px;
    font-family: var(--font-en);
    font-weight: 500;
    color: var(--main-color);
    line-height: 1;
}
.mypage-title p {
    font-size: 26px;
    font-weight: 500;
    margin-top: 15px;
}

/**/
.mypage-contents-user {
    display: flex;
    align-items: center;
}
.user-account {
    font-size: 20px;
    font-weight: 500;
    position: relative;
    padding-left: 50px;
}
.user-account i {
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: middle;
    background: url("../img/icon_user.png") no-repeat center;
    background-size: cover;
    position: absolute;
    left: 0;
    top: -3px;
}
.user-logout {
    margin-left: auto;
}
.user-logout a {
    display: block;
    color: var(--base-color);
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    border: solid 1px var(--main-color);
    border-radius: 10px;
    line-height: 1;
}


/**/
.mypage-contents {
    padding: 60px;
    overflow: hidden;
}

.conBox {
    padding: 100px 0;
	position:relative;
}

/* cmn-title */
.cmn-title {
    text-align: center;
    margin-bottom: 60px;
}
.cmn-title h3 {
    font-size: 50px;
    font-family: var(--font-en);
    font-weight: 500;
    color: var(--main-color);
    line-height: 1;
}
.cmn-title p {
    font-size: 26px;
    font-weight: 500;
    margin-top: 15px;
}
.subtitle {
    font-size: 20px;
    padding: 5px 0 5px 20px;
    border-left: solid 5px var(--main-color);
    margin-bottom: 30px;
}

.cmn-desc {
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    line-height: 2.2;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

.more {
    margin-top: 80px;
    text-align: center;
}
.more.left {
    text-align: left;
}
.more a {
    font-size: 20px;
    font-weight: 500;
    color: var(--main-color);
    display: inline-block;
    text-align: center;
    padding: 10px 40px;
    border: solid 2px;
    border-radius: 1000px;
    background: #fff;
   -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
.more a i {
    display: inline-block;
    width: 26px;
    height: 26px;
    background: var(--main-color);
    border-radius: 10000px;
    position:relative;
    margin-left: 10px;
    vertical-align: -5px;
}
.more a i:after {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: rotate(45deg);
    position: absolute;
    top: 9px;
    left: 7px;
}
.more a:hover {
    color: #fff;
    background: var(--main-color);
}

/* order_btn */
#order_btn {
    font-size: 18px;
    font-weight: 500;
    color: #000;
    text-align: center;
    padding: 10px 40px;
    margin-top: 30px;
    border: solid 2px;
    border-radius: 1000px;
    background: #fff;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#order_btn i {
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("../img/icon_order.png") no-repeat center;
	background-size: contain;
	margin-right: 10px;
    vertical-align: -2px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}
#order_btn:hover {
	color: #fff;
	background: #000;
}
#order_btn:hover i {
	background-image: url("../img/icon_order_w.png")
}

/* member-entry */
.member-check {
    padding: 50px 0;
}
.member-check__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.member-check__list >li {
    width: 48%;
    padding: 20px;
    text-align: center;
    border: solid 1px #ccc;
    border-radius: 10px;
    background: #fff;
}
.member-check-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 20px;
}
.member-check-btn a {
    color: #fff;
    font-weight: 500;
    display: block;
    background: #000;
    padding: 20px;
    border-radius: 5px;
    position: relative;
}
.member-check-btn a i {
    display: block;
    width: 8px;
    height: 8px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(45deg);
    position: absolute;
    right: 25px;
    top: calc(50% - 4px);
}
.about-rpj {
    padding-bottom: 50px;
}
.about-rpj p {
    line-height: 2;
}


/* ----------------------------
   footer
-------------------------------*/
.to-withdrawal {
    font-size: 14px;
    text-align: center;
    margin: 10px 0 20px;
}
.to-withdrawal a {
    color: #fff;
    border-bottom: solid 1px;
}

.mypage-footer {
    width: 100%;
    background:#101010;
    color:#fff;
    padding: 10px;
    text-align:center;
    font-size: 11px;
    position: absolute;
    bottom: 0;
    left: 0;
}


@media (max-width: 815px) {

	body {
        font-size: 13px;
		min-width: 375px;
        padding-top: 70px;
	}
	body.menu-fix {
		overflow: hidden;
	}
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
    .inner {
        padding: 0 20px;
    }
    .conBox {
        padding: 50px 0;
    }
    .cmn-title {
        margin-bottom: 50px;
    }
    .cmn-title.left {
        text-align: center;
    }

    .cmn-title h3 {
        font-size: 25px;
    }
    .cmn-title p {
        font-size: 13px;
    }
    .subtitle {
        font-size: 14px;
        padding: 5px 0 5px 15px;
    }

    .cmn-desc {
        font-size: 13px;
        line-height: 2;
        letter-spacing: 0;
    }

    .mypage-title {
        height: 130px;
    }
    .mypage-title h2 {
        font-size: 25px;
    }
    .mypage-title p {
        font-size: 13px;
        margin-top: 10px;
    }

    .mypage-contents-user {
        display:block;
    }
    .user-account {
        font-size: 15px;
        padding-left: 40px;
    }
    .user-account i {
        width: 30px;
        height: 30px;
    }
    .user-logout {
        margin-top: 10px;
        text-align: right;
    }
    .user-logout a {
        display: inline-block;
        font-size: 13px;
    }

    .mypage-contents {
        padding: 30px 20px;
    }

    .more {
        margin-top: 40px;
    }
    .more a {
        font-size: 16px;
    }
	
    .member-check {
        padding: 0 0 50px;
    }
    .member-check__list {
        display: block;
    }
    .member-check__list >li {
        width: 100%;
        margin-bottom: 20px;
    }
}
    


