@charset "utf-8";

/*-----------------------------------------------------------------
  SELECTORS
-----------------------------------------------------------------*/
* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
body {
	margin: 0;
	background: #fff;
	color: #000;
}
a { 
	color:#265d9b;
	text-decoration:underline;
	word-wrap: break-word;
	}
a:hover { text-decoration:none; }
img { margin:0; vertical-align:bottom; }
p { margin:0; padding:0; line-height:1.6em; }
var,em { font-style:normal; }
input[type=text],
input[type=tel],
input[type=email],
input[type=number],
input[type=url],
input[type=password] {
	margin: 0;
	padding: 0.75em;
	font-size: 1em;
	line-height: 1em;
	border-radius: 4px;
	background: #fff;
	border: 1px solid #999;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
textarea {
	margin: 0;
	padding: 0.5em;
	border: 1px solid #999;
	border-radius: 4px;
	background: #fff;
	width: 100%;
	font-size: 1em;
	resize: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
select {
	margin: 0;
	font-size: 1em;
	padding: 0.5em 2em 0.5em 0.5em;
	border-radius: 4px;
	background-image: url(../../img/form/common/icon_selectarrow.svg);
	background-repeat: no-repeat;
	background-color: #fff;
	background-size: auto 50%;
	-webkit-appearance: button;
	-moz-appearance: button;
	appearance: button;
}
@media screen and (max-width: 767px) {
	select {
		background-position: 98% 50%;
	}
}
@media screen and (min-width: 768px) {
	select {
		background-position: 99% 50%;
	}
}
label {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}


/*-----------------------------------------------------------------
  COMMON CLASSES
-----------------------------------------------------------------*/
/*Floats*/
.floatL {float: left !important;}
.floatR {float: right !important;}
/*Aligns*/
.alignL {text-align: left !important;}
.alignL * {margin-right: auto !important;}
.alignC {text-align: center !important;}
.alignC * {margin-left: auto !important; margin-right: auto !important;}
.alignR {text-align: right !important;}
.alignR * {margin-left: auto !important;}
/*Double Aligns*/
.alignMC {text-align: center !important; vertical-align: middle !important;}
.alignMC * { margin-left: auto !important; margin-right: auto !important;}
/*Vertical Aligns*/
.valignT {vertical-align: top !important;}
.valignM {vertical-align: middle !important;}
.valignB {vertical-align: bottom !important;}
.clearfix:after {  
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}  
/*Margins*/
.marginleftS {margin-left: 0.5em !important;}
.marginleftM {margin-left: 1em !important;}
.marginleftL {margin-left: 2em !important;}
.marginrightS {margin-right: 0.5em !important;}
.marginrightM {margin-right: 1em !important;}
.marginrightL {margin-right: 2em !important;}
.marginbottomS {margin-bottom: 0.5em !important;}
.marginbottomM {margin-bottom: 1em !important;}
.marginbottomL {margin-bottom: 2em !important;}
.margintopS {margin-top: 0.5em !important;}
.margintopM {margin-top: 1em !important;}
.margintopL {margin-top: 2em !important;}
.marginNone {margin: 0 !important;}
/*Widths*/
.w5 {width: 5% !important;}
.w10 {width: 10% !important;}
.w15 {width: 15% !important;}
.w20 {width: 20% !important;}
.w25 {width: 25% !important;}
.w30 {width: 30% !important;}
.w35 {width: 35% !important;}
.w40 {width: 40% !important;}
.w45 {width: 45% !important;}
.w48 {width: 48.5% !important;}
.w50 {width: 50% !important;}
.w55 {width: 55% !important;}
.w60 {width: 60% !important;}
.w65 {width: 65% !important;}
.w70 {width: 70% !important;}
.w75 {width: 75% !important;}
.w80 {width: 80% !important;}
.w85 {width: 85% !important;}
.w90 {width: 90% !important;}
.w95 {width: 95% !important;}
.w99 {width: 99% !important;}
.w100 {width: 100% !important;}
.wauto {width: auto !important;}
/*BackgroundSize*/
.bgsContain {background-size:contain;}
.bgsCover {background-size:cover;}
/*textcolors*/
.txtred {color:#f00;}
.txtl {font-size: 1.2em;}
.txts {font-size: 0.8em;}
.fwb{font-weight: bold;}

/*-----------------------------------------------------------------
  HEADER
-----------------------------------------------------------------*/
header {
	width: 100%;
	background: #fff;
	/*border-bottom: 3px solid #9e000d;*/
}
header nav img {
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 767px) {
	header nav {
		padding: 0.5em;
	}
	header nav img {
		max-height: 2em;
	}
}
@media screen and (min-width: 768px) {
	header nav {
		padding: 1em;
	}
	header nav img {
		max-height: 2.5em;
	}
}


/*-----------------------------------------------------------------
  FOOTER
-----------------------------------------------------------------*/
footer {
	margin: 2em 0 0 0;
	border-top: 1px solid #ddd;
}
footer #statement {
	display: flex;
	padding: 1em;
	justify-content: center;
	align-items: center;
	align-content: center;
}
footer #statement nav {
}
footer #statement aside {
	font-size: 0.8em;
	color: #999;
	padding: 0 0 0 1em;
}
footer #copyrights {
	position: relative;
	text-align: center;
	background: #6383AF;
/*background: #9e000d;*/
	color: #fff;
	line-height: 100%;
}
#btnPagetopSP {
	position: fixed;
	z-index: 100;
	right: 2em;
	border-radius: 4px;
	box-shadow: 0 0 8px 2px rgba(0,0,0,0.2);
}
#btnPagetopPC {
	width:140px;
	height:50px;
	position: absolute;
	z-index: 100;
	bottom: 0;
	right: 9em;
}
#btnPagetopPC a {
	display: block;
	line-height:50px;
	color:#fff;
	text-decoration: none;
	font-size:1em;
	text-align:center;
/*background:#5d0007;*/
	background:#03357B;
}
@media screen and (max-width: 767px) {
	footer #copyrights {
		font-size: 0.7em;
		padding: 1.75em 0;
	}
	#btnPagetopPC {
		display: none;
	}
	#btnPagetopSP {
		right: 1em;
		bottom: 4em;
		width: 2.5em;
		height: 2.5em;
	}
}
@media screen and (min-width: 768px) and (max-width: 959px) {
	footer #copyrights {
		font-size: 0.8em;
		padding: 17px 0;
	}
	#btnPagetopPC {
		right: 3.5em;
	}
	#btnPagetopSP {
		display: none;
	}
}
@media screen and (min-width: 960px) {
	footer #copyrights {
		font-size: 0.8em;
		padding: 17px 0;
	}
	#btnPagetopSP {
		display: none;
	}
}


/*-------------------------------------------------
  Miscellanies
-------------------------------------------------*/
/* Main title */
#contentWrapper h1 {
	border-bottom: 1px solid #ccc;
	font-size: 1.1em;
	padding: 0.75em 0.75em 0.75em 0;
/*border-top: 3px solid #9e000d;*/
	border-top: 3px solid #03357B;
	padding-left: 1em;
}

#contentWrapper h2 {
	border-left: 5px solid #03357B;
	font-size: 1em;
	padding: 0.25em 0.25em 0.25em 0.5em;
	margin: 0 0 1em 0;
	position: relative;
}
@media screen and (max-width: 767px) {
	#contentWrapper h2 {
		border-left: 5px solid #03357b;
		font-size: 1em;
		padding: 0.25em 0.25em 0.25em 0.5em;
		margin: 0 1em 1em 1em;
		position: relative;
	}
}


.formlabel-ui {
	display: flex;
}
.formlabel-ui li {
	flex: 1;
	align-items: center;
	align-content: center;
	justify-content: center;
	text-align: center;
	list-style-type: none;
}
.formlabel-ui li input[type=radio],
.formlabel-ui li input[type=checkbox] {
	display: none;
}
.formlabel-ui li label {
	display: block;
	text-align: center;
	color: #333;
	background: #fff;
	border: 1px solid #999;
	border-right: none;
	font-size: 0.9em;
	line-height: 1em;
	padding: 0.75em 0;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
.formlabel-ui li:first-child label {
	border-radius: 4px 0 0 4px;
}
.formlabel-ui li:last-child label {
	border-right: 1px solid #999;
	border-radius: 0 4px 4px 0;
}
.formlabel-ui li label.onlyone {
	border-radius: 4px;
}
.formlabel-ui li input[type=radio]:checked + label,
.formlabel-ui li input[type=checkbox]:checked + label {
	background: #ff7f40;
	color: #fff;
	border-color: #ff7f40;
	position: relative;
	box-shadow: 0px 0px 7px 0px rgba(191,64,5,0.6) inset;
}

.form-radio-image {
    margin: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.form-radio-image li {
	list-style-type: none;
	flex: 1;
}
.form-radio-image input {
	display: none;
}
.form-radio-image label {
	display: block;
	width: 100%;
    border: 2px solid #ccc;
    border-radius: 4px;
    vertical-align: top;
    padding: 0;
    text-align: center;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
/*.form-radio-image label:hover {
	opacity: 0.7;
}*/
.form-radio-image label figure {
	padding: 1.5em;
}
.form-radio-image label figure img {
	width: 100%;
}
.form-radio-image label span {
	display: block;
    font-size: 1em;
	margin-bottom: 1em;
}
.form-radio-image input[type=radio] + label {
    position: relative;
}
/*.form-radio-image input[type=radio]:checked + label {
    border: 2px solid #d63e4c;
	background: #feeaea;
    color: #333;
}*/



.form-radio-image02 {
    margin: 0;
	display: flex;
	flex-wrap: nowrap;
	justify-content: space-between;
}
.form-radio-image02 li {
	list-style-type: none;
	flex: 1;
	margin: 0 2em 0 0;
}
.form-radio-image02 li:last-child {
	margin: 0;
}
.form-radio-image02 input {
	display: none;
}
.form-radio-image02 label {
	display: block;
	width: 100%;
    /*border: 2px solid #ccc;*/
    border-radius: 4px;
    vertical-align: top;
    padding: 0;
    text-align: center;
    /*cursor: pointer;*/
    -webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
/*.form-radio-image label:hover {
	opacity: 0.7;
}*/
.form-radio-image02 label figure {
	padding: 1.5em;
}
.form-radio-image02 label figure img {
	width: 100%;
}
.form-radio-image02 label span {
	display: block;
    font-size: 1em;
	margin-bottom: 1em;
}
.form-radio-image02 input[type=radio] + label {
    position: relative;
}

@media screen and (max-width: 767px) {
.form-radio-image02 label figure {
	padding: 0.5em;
}
}
@media screen and (max-width: 599px) {
	.form-radio-image02 {
	}
	.form-radio-image02 li {
		margin: 0 0.5em 0 0;
	}
	.form-radio-image02 label figure {
		padding: 0.5em;
	}
	.form-radio-image02 label figure img {
		width: 100%;
	}
	.form-radio-image02 label span {
		display: block;
		font-size: 0.7em;
		margin-bottom: 0.5em;
	}
	.form-radio-image02 li:last-child {
		margin: 0;
	}
}


/*-----------------------------------------------------------------
  LAYOUT
-----------------------------------------------------------------*/
@media screen and (max-width: 767px) {
	#contentWrapper {
		position: relative;
	}
}
@media screen and (min-width: 768px) {
	#contentWrapper {
		position: relative;
		max-width: 980px;
		margin: 0 auto 0 auto;
	}
}
#contentWrapper > article {
	padding: 1em;
	font-size: 0.9em;
}
@media screen and (max-width: 767px) {
	#contentWrapper > article > p {
		padding: 0 1em;
	}
}

#contentWrapper > article table {
	width: 100%;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
#contentWrapper > article table th {
	text-align: left;
	vertical-align: middle;
	background: #eee;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 0.5em;
	line-height: 1.2em;
}
#contentWrapper > article table td {
	vertical-align: middle;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 0.5em;
	line-height: 1.6em;
}

#contentWrapper dl {
}
#contentWrapper dl dt {
	background: #eee;
	margin: 0;
	padding: 0.75em;
	/*font-size: 0.9em;*/
	font-weight: bold;
}
#contentWrapper dl dd {
	margin: 0;
	padding: 1em 0.75em;
}
#contentWrapper dl dd aside {
	margin: 1em 0 0 0;
	font-size: 0.8em;
	color: #666;
}

#contentWrapper #agreementPolicy {
	margin: 2em 0 0 0;
	padding: 1em;
}
#contentWrapper #agreementPolicy article {
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	overflow: auto;
	padding: 1em;
	max-height: 240px;
	background: #fff;
	border: 1px solid #999;
	border-radius: 2px;
	font-size: 0.8em;
}
#contentWrapper #agreementPolicy article > p {
	line-height: 1.3em;
}
#contentWrapper #agreementPolicy article > h3 {
	font-size: 1.1em;
	line-height: 1.3em;
	margin: 1.5em 0 0.75em 0;
	position: relative;
    font-weight: bold;
}
#contentWrapper #agreementPolicy article > h3:first-of-type {
	margin: 0 0 0.75em 0;
}
#contentWrapper #agreementPolicy article > h3 + p {
}
#contentWrapper #agreementPolicy article > ol {
	margin: 0 0 0 1.5em;
}
#contentWrapper #agreementPolicy article > ol li {
	line-height: 1.3em;
	margin: 0.5em 0;
}
#contentWrapper #agreementPolicy article table.complaints {
	width: 100%;
	margin: 1em 0 0 0;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
#contentWrapper #agreementPolicy article table.complaints th {
	padding: 0.75em;
	white-space: nowrap;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	vertical-align: middle;
	background: #eee;
	text-align: left;
}
#contentWrapper #agreementPolicy article table.complaints td {
	padding: 0.75em;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	line-height: 1.3em;
}
#contentWrapper #agreementPolicy article > aside {
	text-align: right;
	margin: 1em 0 0 0;
}

#contentWrapper .last-attention {
	font-size: 0.9em;
	text-align: center;
}


#contentWrapper nav.singleButton {
	margin: 1em auto 0 auto;
}
#contentWrapper nav.singleButton a {
	display: block;
	border-radius: 4px;
	text-decoration: none;
	text-align: center;
	font-size: 1em;
	line-height: 100%;
	padding: 1em;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

#contentWrapper nav.doubleButton {
	margin: 1em auto 0 auto;
}
#contentWrapper nav.doubleButton ul {
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}
#contentWrapper nav.doubleButton ul li {
	position: relative;
	width: 49%;
}
#contentWrapper nav.doubleButton ul li a {
	display: block;
	border-radius: 4px;
	text-decoration: none;
	text-align: center;
	font-size: 1em;
	line-height: 100%;
	padding: 1em;
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

#contentWrapper .btncancel {
	color: #333;
	background: #ddd;
}
#contentWrapper .btncancel:hover {
	background-color: #eee;
}
#contentWrapper .btnapply {
	color: #fff;
	background: #ec2434;
}
#contentWrapper .btnapply:hover {
	background-color: #f2323f;
}

@media screen and (max-width: 767px) {
	#contentWrapper nav.singleButton {
		padding: 1em;
	}
	#contentWrapper nav.doubleButton {
		padding: 1em;
	}
}
@media screen and (min-width: 768px) {
	#contentWrapper nav.singleButton {
		max-width: 480px;
	}
	#contentWrapper nav.doubleButton {
		max-width: 480px;
	}
}
/*-----------------------------------------------------------------
  03_customer_information
-----------------------------------------------------------------*/
.formlabel-ui li p.kingaku {
	font-size: 1.2em;
	margin: 0 0 0.5em;
}
.formlabel-ui li p.info {
	font-size: .9em;
	margin: 0 0 0.5em;
}
.formlabel-ui li p.free {
	font-size: 1.2em;
}

@media screen and (max-width: 767px) {
	.formlabel-ui {
		display: block;
	}
	.formlabel-ui li label {
		border-color: #999 #999 currentcolor #999;
		border-image: none;
		border-style: solid solid none solid;
		border-width: 1px 1px medium 1px;
	}
	
	.formlabel-ui li:first-child label {
		border-radius: 4px 4px 0 0;
	}
	.formlabel-ui li:last-child label {
		border-radius: 0 0 4px 4px;
		border-bottom: 1px solid #999;
	}
}
/*-----------------------------------------------------------------
  21_userinfo
-----------------------------------------------------------------*/
.required {
	padding: 0 7px;
	color: #fff;
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
	background: #C45137;
}
.userinfo_table01 tr th {
	width: 30%;
}
.userinfo_table01 tr td {
	width: 70%;
	
}
@media screen and (max-width: 767px) {
	.userinfo_table01 tr th {
		width: 100%;
		display: block;
	}
	.userinfo_table01 tr td {
		width: auto;
		padding: 15px !important;
		display: block;
		border: none !important;
	}
}
/*-----------------------------------------------------------------
  51_purchase
-----------------------------------------------------------------*/
/*.th01 {
	width:120px;
}*/

.purchase_table01 tr th {
	text-align: center !important;
}
.purchase_table01 tr th:nth-child(1) {
	width: 110px;
}
.purchase_table01 tr th:nth-child(2) {
	width: 150px;
}
.purchase_table01 tr th:nth-child(3),.purchase_table01 tr th:nth-child(5) ,.purchase_table01 tr th:nth-child(6),.purchase_table01 tr th:nth-child(8) {
	width: 100px;
}
.purchase_table01 tr th:nth-child(4) {
	width: 45px;
}
.purchase_table01 tr th:nth-child(7) {
	width: 60px;
}
.purchase_table01 tr th:nth-child(9) {
	width: 90px;
}
.page tr td {
	width: 33%;
	vertical-align: middle;
}
.page_no {
	font-size: 0.9em;
}
.page_area01 {
	width: 190px;
	padding: 0 0 0 5px;
	font-size: 0.8em;
	float: right;
}
.page_area01 li {
	float: left;
	margin: 0 5px 0 0;
	padding: 5px 10px;
	list-style: none;
	background: #eee;
	border: solid 1px #ccc;
	-webkit-border-radius: 3px 3px 3px 3px;
	border-radius: 3px 3px 3px 3px;
	line-height: 1.4em;
}
.page_area01 li:last-child {
	margin: 0;
}
@media screen and (max-width: 767px) {
	.purchase_table01 { 
		display: block; 
		width: 100%; 
		margin: 0 -10px;
	}
	.purchase_table01 thead{ 
		display: block; 
		float: left;
		overflow-x:scroll;
	}
	.purchase_table01 tbody{ 
		display: block; 
		width: auto; 
		overflow-x: auto; 
		white-space: nowrap;
	}
	.purchase_table01 th{ 
		display: block;
		width: 120px !important;
	}
	.purchase_table01 tbody tr{ 
		display: inline-block; 
		margin: 0 -3px;
	}
	.purchase_table01 td{ 
		display: block;
		width: auto !important;
	}
	.page tr td {
		width: auto;
		display: block;
	}
	.page_no {
		text-align: center;
		margin: 0 0 20px;
	}
	.page_area01 {
		float: none;
		margin: 20px auto 0;
	}
}
/*-----------------------------------------------------------------
  PAYMENT INPUT
-----------------------------------------------------------------*/
.payment-input-container {}
@media screen and (max-width: 767px) {
	.payment-input-container .form-radio-image li {
		margin: 0 1em 0 0;
	}
	.payment-input-container .form-radio-image li:last-child {
		margin: 0;
	}
	#contentWrapper nav.singleButton {
		padding: 1em;
	}
	.payment-input-container .form-number {
		width: 25%;
	}
}
@media screen and (max-width: 599px) {
	.payment-input-container .form-radio-image {
	}
	.payment-input-container .form-radio-image li {
		margin: 0 0.5em 0 0;
	}
	.form-radio-image label figure {
		padding: 0.5em;
	}
	.form-radio-image label figure img {
		width: 100%;
	}
	.form-radio-image label span {
		display: block;
		font-size: 0.7em;
		margin-bottom: 0.5em;
	}
	.payment-input-container .form-radio-image li:last-child {
		margin: 0;
	}
}
@media screen and (min-width: 768px) {
	.payment-input-container .form-radio-image li {
		margin: 0 2em 0 0;
	}
	.payment-input-container .form-radio-image li:last-child {
		margin: 0;
	}
	.payment-input-container .form-number {
		width: 10%;
	}
}


/*-----------------------------------------------------------------
  PAYMENT FINISH
-----------------------------------------------------------------*/
.payment-finish-container {}
.payment-finish-container .license-code {
	text-align: center;
	background: #eee;
	font-size: 1.1em;
	padding: 1em 0;
}
.payment-finish-container .storelink {
	margin: 2em 0 0 0;
	padding: 1em 0.5em;
}
.payment-finish-container .storelink > p {
	font-size: 0.9em;
	padding: 1em;
}
.payment-finish-container .storelink ul {
	display: flex;
}
.payment-finish-container .storelink ul li {
	width: 50%;
	padding: 0 0.5em;
}
.payment-finish-container .storelink ul li img {
	width: 100%;
	height: 100%;
}

/*-----------------------------------------------------------------
  追加
-----------------------------------------------------------------*/
.mb10 {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}
.pl10 {
	padding-left: 10px !important;
}
.pl20 {
	padding-left: 20px !important;
}
.pl30 {
	padding-left: 30px !important;
}
.riyoukiyaku {
	padding-left: 20px ;
	line-height: 1.3em;
}
@media screen and (max-width: 767px) {
	.payment-finish-container .storelink {
		margin: 0;
		padding: 1em 0.5em;
	}
}
@media screen and (min-width: 768px) {
	.payment-finish-container .storelink {
		max-width: 360px;
		margin: 0 auto;
	}
}
