@charset "UTF-8";
@import url('//fonts.googleapis.com/css2?family=Barlow:wght@300;400;700&family=Noto+Sans+JP:wght@300;400;700&display=swap');

/* ==================================================
	Login, Signup, My Page
================================================== */
/* Base
----------------------------------------------------*/
body {
	color: #4a4a4a;
	margin: 0;
	padding: 0;
	font-family: "Barlow", "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, "MS PGothic", sans-serif;
	/*font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;*/
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
}

input[type="password"] {
    border: 1px solid #D8D8D8;
    display: block;
    /*margin-bottom: 20px;*/
    padding: 10px 12px;
    width: 100%;
    font-size: 14px;
    line-height: 100%;
    box-sizing: border-box;
    height: 40px;
}

.mypagearea {
	text-align: center;
	margin: 0 auto 20px auto;
	width: 100%;
}
.mypagearea a:hover, .mypagearea button:hover {
	opacity: 0.8;	
}

.pc_hide {
	visibility: hidden;
	display: none;
}

.notice::after {
    content: "\f06a";
    font-family: 'Font Awesome 5 Free';
	color: #D0021B;
	font-size: 34px;
	margin: -14px 0 0 -10px;
	position: absolute;
}

.nav01 ul li.hello {
	font-weight: bold;
	font-size: 18px;
	line-height: 20px; /* changed by propre */
	color: #337AB7;
	padding: 20 15px; /* changed by propre */
	border-bottom: 1px solid #eeeeee;
}

/* Breadcrumb
----------------------------------------------------*/

.mypagearea .breadcrumb {
	background: #F2F6F6;
	margin: 0 auto;
	padding: 10px 40px;
	width: 100%;
	text-align: left;
}
.mypagearea .breadcrumb ul {
    font-size: 14px;
	margin: 0 auto;
	padding:0;
	width: 100%;
}
.mypagearea .breadcrumb ul li {
    margin: 0 40px 0 0px;
    list-style: none;
    display: inline;
    position: relative;
}
.mypagearea .breadcrumb ul li::after {
    content: "";
	display: block;
	position: absolute;
	top: 6px;
	right: -27px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #4A4A4A;
	border-right: 2px solid #4A4A4A;
	transform: translateX(-50%) rotate(45deg);
}
.mypagearea .breadcrumb ul li:last-child::after {
    border: 0;
}
.mypagearea .breadcrumb ul li a {
	color: #337AB7;
}

/* Login & Signup Box
----------------------------------------------------*/

.mypagearea .formBox {
	width: 90%;
	max-width: 860px;
	min-height: 570px;
	margin: 65px auto 0 auto;
	background: #FFFFFF;
	border: 1px solid #337AB7;
	box-sizing: border-box;
	border-radius: 10px;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}
.mypagearea .formBox#login_box > div:first-child,
.mypagearea .formBox#signup_box > div:last-child {
	width: 58%;
	padding: 4% 8%;
	-ms-flex-item-align: center;
	align-self: center;
}
.mypagearea .formBox#login_box > div:last-child,
.mypagearea .formBox#signup_box > div:first-child {
	width: 42%;
	background: #337AB7;
	color: #FFF;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
	border: 1px solid #337AB7;
	box-sizing: border-box;
	border-radius: 0 9px 9px 0 / 9px 9px 9px 9px;
}
.mypagearea .formBox#signup_box > div:first-child {
	border-radius: 9px 9px 0 9px / 9px 0 9px 9px;	
}
.mypagearea .formBox#login_box > div:last-child > div,
.mypagearea .formBox#signup_box > div:first-child > div {
	-ms-flex-item-align: center;
	align-self: center;
	padding: 50px 0;
}
.mypagearea .formBox#login_box > div:last-child > div h5,
.mypagearea .formBox#signup_box > div:first-child > div h5 {
	text-align: center;
	color: #FFF;
	font-size: 28px;
	line-height: 100%;
	margin: 0 0 20px 0;
}
.mypagearea .formBox#login_box > div:last-child > div a.btn,
.mypagearea .formBox#signup_box > div:first-child > div a.btn {
	border: 1px solid #FFF;
	box-sizing: border-box;
	border-radius: 25px;
	font-size: 24px;
	line-height: 29px;
	padding: 10px 18px 10px 18px;
	line-height: 100%;
}
.mypagearea .formBox h4 {
	text-align: left;
	color: #979797;
	font-size: 36px;
	line-height: 100%;
	margin: 0 0 50px 0;
}
.mypagearea .formBox .btn{
  background: #337AB7;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  line-height: 1;
  margin-top: 20px;
  padding: 12px 0px;
  width: 100%;
  display: block;
  text-align: center;
  letter-spacing: 0.1em;
}
.mypagearea .formBox .loginIcon {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 52px auto 40px auto;
  width: 80%;
}
.mypagearea .formBox .loginIcon li {
  margin: 0;
  width: 100%;
  max-width: 90px;
  max-height: 90px;
}
.mypagearea .formBox .loginIcon li:nth-of-type(1) {
  margin: 0 4px 0 0;
}
.mypagearea .formBox .loginIcon li:nth-of-type(2) {
  margin: 0 2px;
}
.mypagearea .formBox .loginIcon li:nth-of-type(3) {
  margin: 0 0 0 4px;
}
.mypagearea .formBox .loginIcon li a {
  border: 1px solid #337AB7;
  color: #337AB7;
  text-align: center;
  display: block;
  font-size: 14px;
  width: 100%;
  height: 90px;
}
.mypagearea .formBox .loginIcon li:nth-of-type(1) a,
.mypagearea .formBox .loginIcon li:nth-of-type(3) a {
 background: #337AB7;
  color: #FFF;
}
.mypagearea .formBox .loginIcon li a i {
  font-size: 25px;
  margin: 20px 0 10px 0;
}
.mypagearea .formBox .loginIcon + div {/* Or */
	color: #8B999F;
  text-align: center;
}
.mypagearea .formBox .mainForm {
	margin: 22px 0 0 0;
	text-align: left;
	color: #8B999F;
}

.mypagearea .formBox .mainForm a {
	color: #337AB7;
	font-size: 14px;
	margin: 10px 0 0 0;
	display: block;
}
.mypagearea .mainForm input[type="text"],
.mypagearea .mainForm input[type="email"] {
  border: 1px solid #D8D8D8;
  display: block;
  margin-bottom: 20px;
  padding: 0 12px;
  width: 100%;
  font-size: 14px;
  line-height: 100%;
  box-sizing:border-box;
  height: 40px;
}
.mypagearea .mainForm .prop-checkbox {
	margin-bottom: 20px;
	display: block;
  position: relative;
}
.mypagearea .mainForm .prop-checkbox input {
  display: none;
}
.mypagearea .mainForm .prop-checkbox__txt {
  margin-left: 28px;
  display: block;
  color: #8B999F;
}
.mypagearea .mainForm .prop-checkbox__txt:before, .mypagearea .mainForm .prop-checkbox__txt:after {
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  display: block;
  height: 18px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  width: 18px;
}
.mypagearea .mainForm .prop-checkbox__txt:before {
  background: #fff;
  border: 1px solid #D8D8D8;
  content: '';
  left: 0;
  top: 0;
}
.mypagearea .mainForm input:checked + .prop-checkbox__txt:before {
  background: #337AB7;
  border: 0;
}
.mypagearea .mainForm input:checked + .prop-checkbox__txt:after {
  color: #fff;
  content: "\f00c";
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  left: 2.5px;
  top: 2px;
  z-index: 1;
}
.mypagearea .mainForm .prop-checkbox__txt a {
	display: inline;	
}

/* Set password & Detail info
----------------------------------------------------*/
.mypagearea .otherBox {
	
}

.mypagearea .otherBox h2 {
	font-size: 24px;
	line-height: 35px;
	letter-spacing: 0.2em;
	color: #8B999F;
	margin: 30px 0 80px 0;
}

.mypagearea .otherBox .memo {
	font-size: 14px;
	line-height: 17px;
	color: #4A4A4A;
	margin: -40px 0 40px 0;
}
.mypagearea .otherBox .mainForm dl {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 auto 20px auto;
	max-width: 600px;
}
.mypagearea .otherBox .mainForm dl input[type="text"],
.mypagearea .otherBox .mainForm dl input[type="email"] {
	margin: 0;
}
.mypagearea .otherBox .mainForm dl dt {
	min-width: 170px;
	text-align: left;
}
.mypagearea .otherBox .mainForm dl dd {
	width: 360px;
}
.mypagearea .otherBox .mainForm .btn {
 background: #337AB7;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  margin: 14px 15px 0 0;
  padding: 12px 30px;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.1em;
  /*border-radius: 2px;*/
  width: 100%;
}
.mypagearea .otherBox .mainForm input#ac_country {
  width: 25%;
  float: left;
}
.mypagearea .otherBox .mainForm input#ac_tel {
  width: 70%;	
  float: right;
}
.mypagearea .otherBox .mainForm dl::after {
	content: "";
	display: table;
	clear: both;
}

.mypagearea#mypage_detailinfo .otherBox .mainForm  dl:last-child dd {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
.mypagearea#mypage_detailinfo .otherBox .mainForm .btn {
	width: 170px;
}
.mypagearea#mypage_detailinfo .otherBox .mainForm a.btn {
	background: none;
	color: #337AB7;
	text-decoration: underline;
	display: inline-block;
	width: 80px;
}


/* My page
----------------------------------------------------*/
.mypagearea .mypageBody {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 55px auto 0 auto;
}

.mypagearea .mypageMenu {
	text-align: left;
	/*border-right: 1px solid #000;*/
	padding: 0 30px;
	font-size: 16px;
	line-height: 320%;
	width: 18%;
	min-width: 230px;
	color: #D8D8D8;
}
.mypagearea .mypageMenu ul li {
	white-space: nowrap
}
.mypagearea .mypageMenu ul li a {
	color: #4A4A4A;
	display: block;

}
.mypagearea .mypageMenu ul li.selected,
.mypagearea .mypageMenu ul li.selected a {
	font-weight: bold;
	color: #4A4A4A;
}

.mypagearea .mypageContent {
	width: 80%;
	text-align: left;
	padding: 0 30px;
}

.mypagearea .mypageContent h1 {
	font-size: 36px;
	line-height: 43px;
	color: #979797;
	margin: 0 0 25px 0;
}
.mypagearea .mypageContent h2 {
	font-weight: bold;
	font-size: 18px;
	line-height: 22px;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #337AB7;
	margin: 0 0 25px 0;
}

/* My page: Top
----------------------------------------------------*/

.mypagearea .mypageContent .mypageNews {
	border-top: 1px solid #D8D8D8; 
	border-bottom: 1px solid #D8D8D8; 
	height: 138px;
	overflow-y: scroll;
}

.mypagearea .mypageContent .mypageNews dl {
	margin: 25px 0 0 0;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	font-size: 16px;

}
.mypagearea .mypageContent .mypageNews dl dt {
	width: 120px;
	
}
.mypagearea .mypageContent .mypageNews dl dd {
	font-size: 16px;
	width: calc(100% - 120px);
}

.mypagearea .mypageContent .mypage-subscription {
	margin: 40px 0 0 0;

}
.mypage-subscription__tbl {
	width: 100%;
}

.mypage-subscription__tbl a {
	color: #337AB7;
	text-decoration: underline;
}

.mypage-subscription__tbl thead tr th {
	background-color: #4A4A4A;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 5px;
	text-align: center;
	text-transform: uppercase;
}

.mypage-subscription__tbl tbody tr td {
	border-bottom: 1px solid #D8D8D8;
	padding: 10px;
	text-align: center;
}

.mypage-subscription__tbl tbody tr td.mypage-subscription__notes {
	font-size: 14px;
	text-align: right;
	}

.mypage-subscription__tbl tbody tr td:nth-child(2) {
	font-weight: 700;
	text-align: left;
}

.mypage-subscription__sts {
	border-radius: 5px;
	color: #fff;
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	margin: 0 auto;
	padding: 5px 10px;
	text-align: center;
	text-transform: uppercase;	
}

.mypage-subscription__sts.-active {
	background-color: #EB5757;
}

.mypage-subscription__sts.-expired {
	background-color: #9B9B9B;
}

.mypage-subscription__sts.-canceled {
	background-color: #9B9B9B;
}

.mypage-subscription__btn {
	background-color: #337AB7;
	color: #fff;
	font-size: 14px;
	font-weight: 700;
	padding: 10px;
	text-transform: uppercase;
}


/* My page: Subscription detail
----------------------------------------------------*/

.mypage-subscrption__detailwrapper {

}

.mypage-subscription__detailwrapper h3 {
	font-size: 26px;
	display: inline-block;
	margin: 0 30px 15px 0;
}

.mypage-subscription__planttl {
	font-size: 18px;
	font-weight: 700;
}

.mypage-subscription__plandtl {
	margin: 20px 0;
}

.mypage-subscription__detailtbl {
	display: flex;
	flex-wrap: wrap;
	width: 50%;
}
.mypage-subscription__detailtbl dt {
	padding: 10px 0;
	width: 50%;
}
.mypage-subscription__detailtbl dd {
	padding: 10px 0;
	width: 50%;
}

.mypage-subscription__cancel {
	float: right;
	margin: 10px;
}
.mypage-subscription__cancel a {
	background-color: #F0F0F0;
	color: #4A4A4A;
	font-size: 14px;
	letter-spacing: 0.1em;
	padding: 10px;
	text-transform: uppercase;
}



/* My page: Form
----------------------------------------------------*/
.mypagearea .mypageContent .mainForm dl {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 20px 0;
	width: 100%;
}
.mypagearea .mypageContent .mainForm dl input[type="text"],
.mypagearea .mypageContent .mainForm dl input[type="email"] {
	margin: 0;
}
.mypagearea .mypageContent .mainForm dl dt {
	min-width: 170px;
}
.mypagearea .mypageContent .mainForm dl dd {
	min-width: 360px;
}
.mypagearea .mypageContent .mainForm button.btn {
 background: #337AB7;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin: 14px 15px 0 0;
  padding: 12px 30px;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.1em;
  border-radius: 2px;
  min-width: 136px;
}

.mypagearea .mypageContent .mainForm a.btn {
  color: #337AB7;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
}

.mypagearea .mypageContent .mainForm input#ac_country {
  width: 25%;
  float: left;
}
.mypagearea .mypageContent .mainForm input#ac_tel {
  width: 70%;	
  float: right;
}
.mypagearea .mypageContent .mainForm dl::after {
	content: "";
	display: table;
	clear: both;
}
.mypagearea .mypageContent .btn.close {
 background: #000;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  margin: 50px 0 0 0;
  padding: 12px 30px;
  display: inline-block;
  text-align: center;
  letter-spacing: 0.1em;
  border-radius: 2px;
  max-width: 214px;
}

/* My page: Upgrade Account
----------------------------------------------------*/
.upgrade-stage {
	margin: 0 0 42px 0;
	font-size: 18px;
}
.upgrade-stage__status {
	font-weight: bold;
	font-size: 24px;
	padding-left: 0.8em;
	letter-spacing: 0.1em;
}
.upgrade-box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}
.upgrade-box__item {
	width: 50%;
	max-width: 371px;
	border: 1px solid #B1B1B1;
	border-radius: 10px;
	text-align: center;
	padding: 2% 2% 10% 2%;
	align-self: center;
	box-sizing: border-box;
}
.upgrade-box__item.-selected {
	border: none;
	background: #7DC9D9;
	margin: 0px 0 0 -10px;
	box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.25);
	padding: 2% 2% 3% 2%;
}
.upgrade-box__price {
	font-size: 36px;
	font-weight: bold;
	color: #7DC9D9;
	border-bottom: 1px solid #B1B1B1;
	letter-spacing: 0.1em;
}
.upgrade-box__price.-selected {
	font-size: 46px;
	color: #FFF;
	border-bottom: 1px solid #FFF;
}
.upgrade-box__mo {
	font-size: 0.6em;
}
.upgrade-box__label {
	padding: 22px 0 20px 0;
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.1em;
	color: #4A4A4A;
}
.upgrade-box__text {
	font-size: 18px;
	text-align: left;
	margin: 0 auto;
	display: inline-block;
	list-style: none;
	line-height: 120%;
}
.upgrade-box__text li {
	margin-bottom: 2%;
}
.upgrade-box__btn {
	background: #000;
	color: #FFF!important;
	font-weight: bold;
	padding: 6px 0;
	display: block;
	border-radius: 2px;
	margin: 10% auto 0 auto;
	font-size: 18px;
	text-align: center;
	letter-spacing: 0.1em;
	max-width: 136px;
}

/* My page: Purchase History
----------------------------------------------------*/
.box-list__table {
	width: 100%;
	/*max-width: 776px;*/
	font-size: 16px;
}
.box-list__table tr {
	border-bottom: 1px solid #D8D8D8;
}
.box-list__table th {
	font-weight: bold;
	padding: 15px 0;
}
.box-list__table td {
	padding: 20px 0;	
}
.box-list__table .-pdf {
	text-align: center;
}
.box-list__table .-pdf a {
	text-decoration: underline!important;
}

/* My page: Head navi
----------------------------------------------------*/
.head-navi {
	background: #337AB7;
	color: #FFF;
	padding: 10px 40px;;
}
.head-navi__btn {
	background: transparent;
	color: #FFF;
	font-size: 14px;
	float: left;
	margin: 2px 0 0 0;
	cursor: pointer;
}
.head-navi__back {
	padding: 0px 20px 0 20px;
	vertical-align: middle;
}
.head-navi__btn i {
	font-size: 1.3em;
	vertical-align: middle;
}
.head-navi__ttl {
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 0.2em;
	text-align: center;
	position: relative;
	display: inline-block;
	margin: 0 0 0 -90px;
}
.head-navi__ttl.-checkout {
	margin: 0;
}

/* My page: Checkout
----------------------------------------------------*/
.checkout {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin: 40px auto 0 auto;
	max-width: 1200px;
	text-align: left;
	padding: 0 30px;
}
.checkout.-column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	max-width: 701px;
}

.checkout.-error {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	text-align: center;
	width: 95%;
}

.checkout-membership {
	font-size: 14px;
	width: 57%;
}
.checkout-membership.-confirm {
	width: 100%;	
}
.checkout-membership__ttl {
	font-weight: bold;
	letter-spacing: 0.2em;
	padding: 0 10px 30px 10px;
	position: relative;
}
.checkout-membership__btnedit {
	float: right;
	display: inline-block;
	color: #337AB7!important;
	margin: -30px 0 0 0;
}

.checkout-membership__status, .checkout-servicetype {
	color: #337AB7;
	letter-spacing: 0.2em;
	text-transform: uppercase;
}

.checkout-membership__fee {
	border-top: 1px solid #D8D8D8;
	border-bottom: 1px solid #D8D8D8;
	padding: 30px 10px;
	line-height: 143%;
	letter-spacing: 0.2em;
	margin-bottom: 10px;
}
.checkout-membership__feettl {
	font-weight: bold;
}
.checkout-total {
	padding: 30px 10px 50px 10px;
}
.checkout-total__dl{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	justify-content: space-between;
	letter-spacing: 0.2em;
	font-size: 14px;
}
.checkout-total__dt {
	text-align: right;
	width: 78%;
}
.checkout-total__dd {
	text-align: right;
	width: 20%;
	white-space: nowrap;
}
.checkout-total__dt.-last {
	font-weight: bold;
	margin-top: 5px;
}
.checkout-total__dd.-last {
	font-weight: bold;
	margin-top: 5px;
}
.checkout-membership__important {
	font-weight: bold;
	letter-spacing: 0.2em;
	line-height: 179%;
}
.checkout-membership__notes li {
	line-height: 208%;
	font-size: 12px;
}
.checkout-payment {
	width: 40%;
	border-left: 1px solid #979797;
	padding: 0 0 0 3%;
}
.checkout-payment.-confirm {
	width: 100%;
	border-left: none;
	margin: 5% 0 0 0;
	padding: 0;
}
.checkout-payment__ttl {
	font-weight: bold;
	letter-spacing: 0.2em;
	font-size: 16px;
	margin: 0 0 40px 0;
}
.checkout-payment__inputtext {
  background-color: transparent;
  border: 1px solid #D8D8D8;
  padding: 10px;
  width: 100%;
}
.checkout-complete__ttl {
	font-size: 20px;
	line-height: 130%;
	text-align: center;
	letter-spacing: 0.2em;
	font-weight: bold;
	margin: 0 auto 55px auto;
}
.checkout-complete__text {
	text-align: center;
	font-size: 14px;
	line-height: 143%;
	letter-spacing: 0.2em;
}
.checkout-complete__btns {
	display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center;
    align-content: space-between;
}
.checkout-complete__btnback {
	background: #000000;
	color: #FFF!important;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.1em;
	padding: 12px 0px;
	text-align: center;
	display: block;
	width: 232px;
	margin: 100px auto 0 auto;
}

.checkout-error__ttl {
	font-size: 20px;
	line-height: 130%;
	text-align: center;
	letter-spacing: 0.2em;
	font-weight: bold;
	margin: 0 auto 55px auto;
}
.checkout-error__text {
	text-align: center;
	font-size: 14px;
	line-height: 143%;
	/*letter-spacing: 0.2em;*/
}
.checkout-error__btnback {
	background: #000000;
	color: #FFF!important;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.1em;
	padding: 12px 0px;
	text-align: center;
	display: block;
	width: 232px;
	margin: 100px auto 0 auto;
}

.checkout-error__btns {
	margin: 100px 10px;
}
.checkout-error__btn {
	background: #000000;
	color: #FFF!important;
	font-weight: bold;
	font-size: 14px;
	line-height: 17px;
	letter-spacing: 0.1em;
	margin: 10px;
	padding: 10px 20px;
	text-align: center;
	display: inline-block;
}

.form-box a {
	color: #337AB7!important;
	text-decoration: underline!important;
}
.form-box__dt {
	letter-spacing: 0.2em;
	margin: 0 0 10px 0;
	font-size: 12px;
	line-height: 150%;
}
.form-box__dd {
	margin: 0 0 20px 0;
	line-height: 150%;
}
.form-box__dd.-ccardnum {
	padding: 0 0 0 40px;
}
.form-box__dt img, .form-box__dd img {
	vertical-align: middle;
	margin-right: 3px;
}
.form-box__spacer {
	display: none;
}
.form-box__ccardimg {
	display: inline-block;
	line-height: 500%;
}
.form-box__ccardimg.-mb{
	display: none;
}
.form-box_flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 290px;
}
.form-box__inputnum {
	border: 1px solid #D8D8D8;
	max-width: 64px;
	height: 40px;
	margin: 0 0px 0 0;
	padding: 10px 12px;
}
.form-box__inputtext {
	border: 1px solid #D8D8D8;
	width: 100%;
	max-width: 290px;
	height: 40px;
	padding: 10px 12px;
}
.form-box__inputradio{
	display: none;
}
.form-box__inputradio + .form-box__span{
	padding: 6px 0 0 40px;
	position:relative;
}
.form-box__inputradio + .form-box__span::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 28px;
	height: 28px;
	border: 1px solid #979797;
	box-sizing: border-box;
	border-radius: 50%;
}
.form-box__inputradio:checked + .form-box__span::after{
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	left: 5px;
	width: 18px;
	height: 18px;
	background: #337AB7;
	border-radius: 50%;
}
.form-box__inputcheckbox {
	display: none;
}
.form-box__span2 {
	padding-left: 30px;
	position:relative;
	margin: 0 30px 0 0;
	color: #979797;
	display: block;
	width: 100%;
}
.form-box__span2::before{
	content: "";
	display: block;
	position: absolute;
	top: 2px;
	left: 0;
	width: 18px;
	height: 18px;
	background: #FFFFFF;
	border: 1px solid #D3D3D3;
	box-sizing: border-box;
	border-radius: 3px;
}
.form-box__inputcheckbox:checked + .form-box__span2::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 4px;
  width: 6px;
  height: 12px;
  transform: rotate(40deg);
  border-bottom: 4px solid #337AB7;
  border-right: 4px solid #337AB7;
}
.form-box__inputnum.-invalid, .form-box__inputtext.-invalid, .form-box__inputcheckbox.-invalid + .form-box__span2::before {
	border: 1px solid #D0021B;
	box-sizing: border-box;
	box-shadow: 0px 0px 10px rgba(208, 2, 27, 0.2);
}
.form-box_sp {
	margin: 0;
	padding: 0 10px;
}
.form-box__btnsend {
	background: #000;
	color: #FFF;
	font-weight: bold;
	padding: 10px 18%;
	font-size: 14px;
	cursor: pointer;
	text-align: center;
}
.form-box__btncancel {
	background: #FFF;
	color: #337AB7;
	padding: 10px 7%;
	font-size: 14px;
	cursor: pointer;
	text-align: center;
}

.form-box2__dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin: 0 0 15px 0;
}
.form-box2__dl.-last {
	margin: 40px 0 0 0;
}
.form-box2__dt {
	letter-spacing: 0.2em;
	font-size: 14px;
	width: 36%;
}
.form-box2__dd {
	letter-spacing: 0.2em;
	font-size: 14px;
	width: 62%;
}


/* My page: loader
----------------------------------------------------*/
.loader {
	display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
}
.loader__bg {
	background-color: rgba(51,122,183,0.5);
	height: 100vh;
	position: absolute;
	width: 100%;
}

.loader__content {
	left: 50%;
	position: absolute;
	top: 50%;
	transform: translate(-50%,-50%);
}


/* Mobiles (Under 840px) - Media Queries ===========================================*/
@media only screen and (max-width: 840px) {
	/* My page: Upgrade Account
	----------------------------------------------------*/
	.upgrade-box__price.-selected {
		font-size: 42px;
	}
	.upgrade-box__text {
		font-size: 16px;
	}

}

	
/* Mobiles (Under 767px) - Media Queries ===========================================*/
@media screen and (max-width: 767px) {
	/* Base
	----------------------------------------------------*/	
	.mypagearea {
		margin: 0 auto 20px auto;
	}
	
	.pc_hide {
	visibility: visible;
	display: block
	}
	
	.notice::after {
	font-size: 26px;
	margin: -10px 0 0 -10px;
	position: absolute;
	}
	
	/* Breadcrumb
	----------------------------------------------------*/
	.mypagearea .breadcrumb {
		padding: 10px 15px;
	}
	.mypagearea .breadcrumb ul li {
    	margin: 0 18px 0 0px;
    }
	.mypagearea .breadcrumb ul li::after {
		top: 6px;
		right: -16px;
		width: 6px;
		height: 6px;
	}
	
	/* Login & Singup Box
	----------------------------------------------------*/
	.mypagearea .formBox {
		width: 94%;
		max-width: 500px;
		display: block;
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
		-webkit-box-align: stretch;
		-ms-flex-align: stretch;
		align-items: stretch;
		margin: 0 auto 0 auto;
	}
	.mypagearea .formBox#login_box > div:first-child,
	.mypagearea .formBox#signup_box > div:last-child  {
		width: 100%;
		padding: 8% 8%;
	}
	.mypagearea .formBox#login_box > div:last-child {
		width: 100%;
		border-radius: 0 9px 9px 9px / 9px 0 9px 9px;
	}
	.mypagearea .formBox#signup_box > div:first-child {
		width: 100%;
		border-radius: 9px 9px 0 0 / 9px 9px 9px 9px;
	}
	
	/* Set password & Detail info
	----------------------------------------------------*/
	.mypagearea .otherBox h2 {
		margin: 30px 0 40px 0;
	}
	.mypagearea .otherBox .memo {
		margin: -20px 0 20px 0;
	}
	.mypagearea .otherBox .mainForm dl {
		display: block;
		width: 95%;
		margin: 20px auto 0 auto;
	}

	.mypagearea .otherBox .mainForm dl dt,
	.mypagearea .otherBox .mainForm dl dd {
		width: 100%;
	}
	
	#mypage_detailinfo.mypagearea .otherBox .mainForm  dl:last-child dd {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	
	/* My page
	----------------------------------------------------*/
	.mypagearea .mypageBody {
		display: block;
		margin: 0 auto;
	}
	.mypagearea .mypageMenu {
		border: 0;
		text-align: center;
		padding: 0;
		font-size: 18px;
		line-height: 220%;
		width: 100%;
		color: #D8D8D8;
		/*background: #337AB7;*/
		position: relative;
		margin: 0;
	}
	#sub_menu ul{
		*zoom:1;clear:both;padding:0;display:none
	}
	#sub_menu ul:after{
		content:".";display:block;clear:both;height:0;visibility:hidden;font-size:0
	}
	#sub_menu li{
		display:inline-block;width:100%;height:auto;background: #FFF;margin: 0 0 2px 0; border-bottom: 1px solid #F2F6F6;
	}
	#sub_menu li a:hover{
		background: #F2F6F6;
	}
	#sub_menu-toggle{
		position:relative; background-color: #337AB7; width:100%;display: block;padding:0;color:#fff;font-size:18px;text-align:center;cursor:pointer;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;box-sizing:border-box;
	}
	#sub_menu-toggle span{
		-moz-user-select:-moz-none;-ms-user-select:none;-webkit-user-select:none;user-select:none;
	}
	#sub_menu-toggle:before,#sub_menu-toggle:after{display:block;position:absolute;content:'';
		
	}
	#sub_menu-toggle:before{
		top:50%;margin-top:-10px;right:12px;width:22px;height:22px;background-color:#fff;-moz-border-radius:50%;-webkit-border-radius:50%;border-radius:50%;
	}
	#sub_menu-toggle:after{
		top:16px;right:19px;width:6px;height:6px;content:'';border-bottom:2px solid #337AB7;border-left:2px solid #337AB7;-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-webkit-transform:rotate(-45deg);transform:rotate(-45deg);
	}
	#sub_menu-toggle.open:after{
		top:18px;-moz-transform:rotate(135deg);-ms-transform:rotate(135deg);-webkit-transform:rotate(135deg);transform:rotate(135deg);
		
	}
	
	.mypagearea .mypageContent {
		width: 95%;
		text-align: left;
		padding: 0;
		margin: 30px auto;
	}

	.mypagearea .mypageContent .mypageNews dl {
		margin: 20px 0 0 0;
		display: block;
	}
	.mypagearea .mypageContent .mypageNews dl dt,
	.mypagearea .mypageContent .mypageNews dl dd {
		width: 100%;
		padding: 5px 0;
	}
	
	.mypagearea .mypageContent .btn.close {
		margin: 50px auto 0 auto;
		display: block;	
	}

	.mypage-subscription__tbl {
		
	}
	.mypage-subscription__tbl thead {
		display: none;
	}

	.mypage-subscription__tbl tr {
		display: block;
		margin-bottom: 20px;
		width: 100%;
	}

	.mypage-subscription__tbl td {
	    display: block;
	    text-align: right;
	    width: 100%;
  	}

	.mypage-subscription__tbl td:first-child {
	    background: #F1F6F9;
	    font-weight: bold;
	    text-align: center;
  	}

	.mypage-subscription__tbl td:before {
	    content: attr(data-label);
	    display: inline-block;
	    font-weight: 400;
	    float: left;
	    margin-right: 10px;
	    text-align: left;
	    width: 30%;
  	}

	.mypage-subscription__tbl tbody tr td:nth-child(2) {
		text-align: center;
	}

	.mypage-subscription__tbl tbody tr td.mypage-subscription__notes {
		background-color: #fff;
		font-weight: 400;
		margin-top: -20px;
		padding: 5px;
		text-align: left;
	}

	


	/* My page: Subscription detail
	----------------------------------------------------*/
	.mypage-subscription__detailtbl {
	display: flex;
	flex-wrap: wrap;
	width: 300px;
	}	

	
	/* My page: Form
	----------------------------------------------------*/
	.mypagearea .mypageContent .mainForm dl {
		display: block;
		margin: 0 0 20px 0;
		width: 100%;
	}
	.mypagearea .mypageContent .mainForm dl:last-child dd:last-child {
		text-align: center;
	}
	.mypagearea .mypageContent .mainForm dl dt {
		min-width: inherit;
	}
	.mypagearea .mypageContent .mainForm dl dd {
		min-width: inherit;
	}



/* My page: Upgrade Account
	----------------------------------------------------*/
	.upgrade-box__price {
		font-size: 32px;
	}	
	.upgrade-box__price.-selected {
		font-size: 40px;
	}
	.upgrade-box__text {
		font-size: 15px;
	}
	.upgrade-box__text li {
		margin-bottom: 5%;
	}
	
	/* My page: Purchase History
	----------------------------------------------------*/
	.box-list__table {
		font-size: 14px;
	}

	
	/* My page: Head navi
	----------------------------------------------------*/
	.head-navi {
		padding: 10px 10px;
	}
	.head-navi__back {
		display: none;
	}
	.head-navi__ttl {
		margin: 0 0 0 -10px;
	}
	/* My page: Checkout
	----------------------------------------------------*/
	.checkout {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		margin: 30px auto 0 auto;
		max-width: 641px;
		padding: 0 15px;
	}
	.checkout-membership {
		width: 100%;	
	}
	.checkout-membership__btnedit {
		float: none;
		display: block;
		margin: 40px auto 0 auto;
	}
	.checkout-membership__fee {
		text-align: center;
	}
	
	.checkout-payment {
		width: 100%;
		border-left: none;
		margin: 5% 0 0 0;
		padding: 0;
	}
	.checkout-payment__ttl {
		margin: 20px 0 10px 0;
	}
	.checkout-total__dt {
		text-align: right;
		width: 63%;
	}
	.checkout-total__dd {
		text-align: right;
		width: 34%;
	}
	.checkout-complete__ttl {
		margin: 0 auto 30px auto;
	}
	.checkout-complete__btns {
		flex-wrap: wrap;
	}
	.checkout-complete__btnback {
		width: 80%;
		margin: 55px auto 0 auto;
	}
	
	.form-box__spacer {
		display: inline-block;
	}
	.form-box__ccardimg {
		display: none;
	}
	.form-box__ccardimg.-mb {
		display: block;		
		line-height: 100%;
		padding: 5px 0 0 0;
	}
	.form-box__btnsend {
		padding: 10px 75px;
		width: 100%;
		margin: 0 auto 20px auto;
	}
	.form-box__btncancel {
		padding: 10px 40px;
		width: 100%;
		margin: 0 auto;
	}
	
	.form-box2__dl {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		flex-direction: column;
		margin: 0 0 20px 0;
	}
	.form-box2__dt {
		width: 100%;
	}
	.form-box2__dd {
		width: 100%;
	}
		
	
}

/* Mobiles (Under 480px) - Media Queries ===========================================*/
@media only screen and (max-width: 480px) {
	/* My page: Upgrade Account
	----------------------------------------------------*/
	.upgrade-stage__status {
		font-size: 22px;
		padding-left: 0.2em;
	}
	.upgrade-box {
	  	-webkit-box-orient: vertical;
	  	-webkit-box-direction: normal;
	  	-ms-flex-direction: column;
	  	flex-direction: column;
	}
	.upgrade-box__item {
		width: 90%;
		max-width: 450px;
		padding: 2% 2% 10% 2%;
		margin: 0 auto;
	}
	.upgrade-box__item.-selected {
		margin: 30px auto 0 auto;
		padding: 2% 2% 10% 2%;
	}
	.upgrade-box__text {
		font-size: 16px;
	}
	/* My page: Purchase History
	----------------------------------------------------*/
	.purchaseh-box__table {
		font-size: 1em;
	}
}