@charset "UTF-8";
/*------------------------------
63
------------------------------*/

/*------------------------------
フロー
------------------------------*/
.section-flow{
	margin:0 0 15px;
}
.section-flow .flow{
    background: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
  }
.section-flow .flow ol{
	font-size:0;
	display:flex;
	justify-content:center;
	align-items:center;
	position:relative;
	height:44px;
}
.section-flow .flow ol li{
	height:44px;
}
.section-flow .flow ol li br{
	display:none;
}
.section-flow .flow ol li i{
	display:inline;
	font-style:normal;
}

.section-flow .flow.row-2 ol li{
	flex-basis:calc(50% + 33px);
	position:relative;
	z-index:1;
}
.section-flow .flow.row-2 ol li:last-child{
	z-index:2;
	margin:0 0 0 -22px;
}

.section-flow .flow.row-3 ol li{
	flex-basis:calc(33.33% + 22px);
	position:relative;
	z-index:1;
}
.section-flow .flow.row-3 ol li:nth-child(2){
	flex-basis:calc(33.33% + 44px);
	z-index:2;
	margin:0 -22px;
}
.section-flow .flow.row-3 ol li:last-child{
	z-index:3;
}
.section-flow .flow.row-4 ol li{
	flex-basis:calc(25% + 22px);
	position:relative;
	z-index:1;
}
.section-flow .flow.row-4 ol li:nth-child(2){
	flex-basis:calc(25% + 22px);
	z-index:2;
	margin:0 -22px;
}
.section-flow .flow.row-4 ol li:nth-child(3){
	flex-basis:calc(25% + 22px);
	z-index:3;
	margin:0 -22px;
}
.section-flow .flow.row-4 ol li:last-child{
	z-index:4;
}

.section-flow .flow span{
    padding: 15px;
    display: block;
    position: relative;
		font-size:14px;
		text-align:center;
		line-height:1;
		background-repeat:no-repeat;
		background-size:22px auto;
		background-image:url(/img/common/flow-arrow-normal.png);
		background-position:center right;
  }
.section-flow .flow ol li:first-child span{
	background-image:url(/img/common/flow-arrow-normal.png);
	background-position:center right;
  }
.section-flow .flow ol li.current:first-child span{
	background-image:url(/img/common/flow-arrow-left-c.png);
	background-position:center right;
  }
.section-flow .flow ol li.current span{
	background-image:url(/img/common/flow-arrow-left-c.png),url(/img/common/flow-arrow-right-c.png);
	background-position:center right,center left;
  }
.section-flow .flow ol li:last-child span{
	background-image:none;
  }
.section-flow .flow ol li.current:last-child span{
	background-image:url(/img/common/flow-arrow-right-c.png);
	background-position:center left;
  }

.section-flow .flow ol li.current{
    background: #3e3f3f;
		color:#fff;
  }
.point-code{
    border: solid #ddd 1px;
    background-color: #f2f2f2;
    border-radius: 10px;
    overflow: hidden;
    padding: 30px;
    font-size: 14px;
    line-height: 1.8;
    background-color: #fff;
}

@media screen and (max-width: 1040px) {
.section-flow .flow ol li br{
	display:block;
}
.section-flow .flow ol li i{
	display:none;
}
.section-flow .flow.row-3 span,
.section-flow .flow.row-4 span{
	padding:8px 15px;
}
}

/*------------------------------
 入力フォーム
------------------------------*/
.section-form{
	
}
.section-form small{
	font-size:10px;
}
.section-form .table-form{
	
}
.section-form .table-form table{
	width:100%;
	border-collapse:collapse;
	font-size:14px;
}
.section-form .table-form table tr{
	
}
.section-form .table-form table th{
	line-height:1.5;
	text-align:left;
	vertical-align:top;
	padding:30px 0 15px 0;
	width:17%;
}
.section-form .table-form table td{
	line-height:1.5;
	text-align:left;
	vertical-align:top;
	padding:15px 0 15px 30px;
}
.section-form .table-form input,
.section-form .table-form select,
.section-form .table-form textarea{
	-webkit-appearance: none;
}
.section-form .table-form table td.checkbox label{
	margin:1em 30px 1em 0;
	display:inline-block;
	vertical-align:middle;
}
.section-form .table-form table td.checkbox label:last-child{
	margin:0;
}
.section-form .table-form input[type="text"],
.section-form .table-form input[type="password"]{
	box-sizing:border-box;
	border:solid #ddd 1px;
	border-radius:3px;
	background-color:#fff;
	padding:15px;
	font-size:14px;
}
.section-form .table-form .required input[type="text"],
.section-form .table-form .required input[type="password"]{
	background-color:#ffefef;
}
.section-form .table-form .required input:not(:placeholder-shown) {
	background-color: #fff;
}
.section-form .table-form input.input-text-100{
	width:100%;
}
.section-form .table-form input.input-text-50{
	width:100%;
	margin:0 2% 0 0;
}
.section-form .table-form input.input-text-50:nth-child(even){
	margin:0;
}
.section-form .table-form input.input-text-20{
	width:18.4%;
	margin:0 2% 0 0;
}
.section-form .table-form input.input-text-20:last-child{
	margin:0;
}
.section-form .table-form textarea{
	box-sizing:border-box;
	border:solid #ddd 1px;
	border-radius:3px;
	background-color:#fff;
	padding:15px;
	font-size:14px;
	width:100%;
	height:180px;
}

.section-form .table-form .select-box {
    width:auto;
  position:relative;
	display:inline-block;
	vertical-align:middle;
}
.section-form .table-form select{
  -webkit-appearance:none;
    appearance:none;
    width:auto;
  padding:15px 60px 15px 15px;
  box-sizing:border-box;
  font-size:14px;
  border:#ddd 1px solid;
  border-radius:0;
  background-color:#fff;
	background-image: url(/img/common/select-arrow.png);
	background-repeat: no-repeat;
	background-size: 13px 7px;
	background-position: right 15px center;
	border-radius:3px;
}
.section-form .table-form select.short{
  padding:5px 60px 5px 15px;
	margin:10px 0;
}
/*.section-form .table-form .select-box::after{
  content:"";
  display:block;
  width:10px;
  height:10px;
  position:absolute;
  right:15px;
  top:40%;
  border-bottom:#888 1px solid;
  border-right:#888 1px solid;
  transform:rotate(45deg)translateY(-30%);
}*/
.section-form .table-form .unit{
	display:inline-block;
	margin:0 .5em;
}
.section-form .table-form .required .select-box select{
	background-color:#ffefef;
}
.section-form .table-form .required .select-box select:valid {
	background-color: #fff;
}

.section-form .table-form input[type="radio"]{
	
}
.section-form .table-form input[type="radio"]:before {
	content: '';
	background: #fff;
	border-radius: 100%;
	border: 1px solid #ddd;
	display: inline-block;
	width: 1.3em;
	height: 1.3em;
	position: relative;
	top: -2px;
	left:-2px;
	margin-right: 0; 
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all .2s ease;
}
.section-form .table-form input[type="radio"]:checked:before{
	background-color: #000;
	box-shadow: inset 0 0 0 2px #fff;
}

.section-form .table-form input[type="checkbox"]{
	
}
.section-form .table-form input[type="checkbox"]:before {
	content: '';
	background: #fff;
	border: 1px solid #ddd;
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	position: relative;
	top: -2px;
	left:-2px;
	margin-right: 0; 
	vertical-align: top;
	cursor: pointer;
	text-align: center;
	transition: all .2s ease;
}
.section-form .table-form input[type="checkbox"]:checked:before{
	background-color: #000;
	box-shadow: inset 0 0 0 2px #fff;
}

input:placeholder {
	color: #888;
}
input:focus::-webkit-input-placeholder {
	color: transparent;
}
input:focus::-moz-placeholder {
	color: transparent;
}
input:focus::-ms-input-placeholder {
	color: transparent;
}
input:focus::placeholder {
	color: transparent;
}

p.error{
	line-height:1.5;
	font-size:14px;
	color:#ff0000;
}

.form-check{
	text-align:center;
}
.form-check label,
.form-check .text-link{
	display:inline-block;
	vertical-align:top;
	font-size:14px;
}

@media screen and (max-width: 480px) {
.form-check.agree-check{
	text-align:left;
	width:260px;
	margin:0 auto;
}
.form-check.agree-check .text-link{
	margin-left:1em;
}
}

@media screen and (max-width: 1040px) {
.section-form .table-form table{
	display:block;
}
.section-form .table-form table tr,
.section-form .table-form table tbody{
	display:block;
}
.section-form .table-form table th{
	display:block;
	padding:0 0 5px;
	width:auto;
}
.section-form .table-form table td{
	display:block;
	width:auto;
	line-height:1.5;
	padding:0 0 15px 0;
}
.section-form .table-form .unit{
	display:inline-block;
	margin:0 .2em;
}
}

/*------------------------------
 ボタン
------------------------------*/
.btn-area{
	text-align:center;
}
.btn-wrap{
	display:inline-block;
	vertical-align:middle;
	position: relative;
  transition: .2s;
}
.cart-btn{
	width:360px;
	height:50px;
}
.cart-btn input{
  box-sizing:border-box;
  font-size:16px;
	display:inline-block;
	border-radius:6px;
	color:#fff;
	width:100%;
	height:100%;
	min-width:360px;
	min-height:50px;
	border:none;
	background-color:#000;
	cursor:pointer;
  transition: .2s;
}
.cart-btn input:hover{
	background-color:#777;
}

.cart-btn::after{
  content: "";
  width: .6em;
  height: .6em;
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
  position: absolute;
  top: -1px;
  bottom: 0;
  right: 15px;
  margin: auto;
  -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.cart-btn:hover::after{
  border-top: 1px solid #b5b5b5;
  border-right: 1px solid #b5b5b5;
}

.btn-normal{
	width:100%;
	/*min-width:300px;
	min-height:50px;*/
	height:50px;
	font-size:16px;
}
.btn-normal input{
	height:50px;
	font-size:16px;
}

.btn-small{
	width:100%;
	/*min-width:300px;
	min-height:50px;*/
	height:40px;
	margin:5px 0;
	font-size:14px;
}
.btn-small input{
	height:40px;
}
.btn-small input{
	font-size:14px;
}

.btn-xsmall{
	width:100%;
	/*min-width:300px;
	min-height:50px;*/
	height:30px;
	margin:10px 0;
	font-size:13px;
}
.btn-xsmall{
}
.btn-xsmall input{
	height:30px;
}
.btn-xsmall input{
	font-size:13px;
}

.btn-default input{
  box-sizing:border-box;
	display:inline-block;
	border-radius:6px;
	color:#fff;
	width:100%;
	height:100%;
	border:none;
	cursor:pointer;
  transition: .2s;
}
.btn-default input:hover{
}
.btn-default.btn-round input{
	border-radius:40px;
}

.btn-center{
	text-align:center;
}

.btn-default.w10{
	width:10%;
}
.btn-default.w15{
	width:15%;
}
.btn-default.w20{
	width:20%;
}
.btn-default.w25{
	width:25%;
}
.btn-default.w30{
	width:30%;
}
.btn-default.w35{
	width:35%;
}
.btn-default.w40{
	width:40%;
}
.btn-default.w45{
	width:45%;
}
.btn-default.w50{
	width:50%;
}
.btn-default.w60{
	width:60%;
}
.btn-default.w70{
	width:70%;
}
.btn-default.w80{
	width:80%;
}

.btn-default.white input{
	border:1px solid #000;
	background-color:#fff;
	color:#000;
}
.btn-default.white input:hover{
	background-color:#f2f2f2;
}
.btn-default.black input{
	border:1px solid #3e3f3f;
	background-color:#3e3f3f;
	color:#fff;
}
.btn-default.black input:hover{
	background-color:#777777;
}

.forward-btn::after{
  content: "";
  width: .6em;
  height: .6em;
  border-top: 1px solid #7a7a7a;
  border-right: 1px solid #7a7a7a;
  position: absolute;
  top: -1px;
  bottom: 0;
  right: 15px;
  margin: auto;
  -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.forward-btn:hover::after{
  border-top: 1px solid #b5b5b5;
  border-right: 1px solid #b5b5b5;
}

.back-btn::after{
  content: "";
  width: .6em;
  height: .6em;
  border-top: 1px solid #7a7a7a;
  border-left: 1px solid #7a7a7a;
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 15px;
  margin: auto;
  -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.back-btn:hover::after{
  border-top: 1px solid #b5b5b5;
  border-left: 1px solid #b5b5b5;
}


.forward-btn.btn-xsmall::after{
  width: .4em;
  height: .4em;
  right: 10px;
}
.back-btn.btn-xsmall::after{
  width: .4em;
  height: .4em;
  left: 10px;
}

.btn-default.icon input{
	padding:0 0 0 .5em;
}
.btn-default.icon-review::after{
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 15px;
  margin: auto;
	background:url(/img/common/icon-review.png) no-repeat center /10px;
}
.btn-default.icon-share::after{
  content: "";
  width: 12px;
  height: 11px;
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 15px;
  margin: auto;
	background:url(/img/common/icon-share.png) no-repeat center /12px;
}
.btn-default.icon-fav::after{
  content: "";
  width: 15px;
  height: 13px;
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 15px;
  margin: auto;
	background:url(/img/common/icon-fav.png) no-repeat center /15px;
}
.btn-default.icon-fav.fav:after{
	background:url(/img/common/fav-mark.png) no-repeat center /15px;
}
.btn-default.icon-logout::after{
  content: "";
  width: 10px;
  height: 11px;
  position: absolute;
  top: -1px;
  bottom: 0;
  left: 15px;
  margin: auto;
	background:url(/img/common/icon-logout.png) no-repeat center /10px;
}

.text-link{
}
.text-link a{
	text-decoration:none;
	color:#000;
}
.text-link a:hover{
	text-decoration:underline;
	color:#000;
}

@media screen and (max-width: 780px) {
.btn-area{
	font-size:0;
	text-align:left;
}
.cart-btn{
	width:100%;
}
.btn-default.w10{
	margin:0 0 15px !important;
}
.btn-default.w15{
	width:auto;
	min-width:130px;
	margin:0 0 15px !important;
}
.btn-default.w20{
	width:49%;
	margin:0 2% 15px 0 !important;
}
.btn-default.w20:nth-child(even){
	margin:0 0 15px !important;
}
.btn-default.w25{
	width:49%;
	margin:0 2% 15px 0 !important;
}
.btn-default.w25:nth-child(even){
	margin:0 0 15px !important;
}
.btn-default.w30{
	width:100%;
	margin:0 auto 15px !important;
}
.btn-default.w35{
	width:100%;
	margin:0 auto 15px !important;
}
.btn-default.w40{
	width:100%;
	margin:0 auto 15px !important;
}
.btn-default.w45{
	width:100%;
	margin:0 auto 15px !important;
}
.btn-default.w50{
	width:100%;
	margin:0 auto 15px !important;
}
.btn-default.w20.icon-logout{
	width:130px;
	margin:0 2% 0 0 !important;
}
}

@media screen and (max-width: 360px) {
	.btn-default.icon-fav::after{
		left:5px;
	}
}

/*------------------------------
タブ
------------------------------*/
#ui-tabs{
	
}
#ui-tabs.border{
	position:relative;
	border-bottom:solid #ddd 1px;
}
#ui-tabs .wrap{
	border:solid #ddd 1px;
	border-radius:10px 10px 0 0;
	overflow:hidden;
}
#ui-tabs.border .wrap{
	position:relative;
	bottom:-1px;
}
#ui-tabs .wrap ul{
	font-size:0;
}
#ui-tabs .wrap ul li{
	display:inline-block;
	vertical-align:middle;
	font-size:14px;
	width:33.33%;
}
#ui-tabs .wrap ul li a{
	display:block;
}
#ui-tabs .wrap ul li a:hover{
	text-decoration:none;
}
#ui-tabs .wrap ul li br{
	display:none;
}
#ui-tabs .wrap ul li a span{
	display:block;
	padding:15px 0;
	color:#000;
	background-color:#f2f2f2;
	text-align:center;
	line-height:1;
	transition:.2s ease;
	border-right:solid #ddd 1px;
}
#ui-tabs .wrap ul li:last-child a span{
	border-right:none;
}
#ui-tabs .wrap ul li a:hover span{
	background-color:#fff;
}
#ui-tabs .wrap ul li.current a span{
	background-color:#3e3f3f;
	color:#fff;
}

#ui-tabs-b{
	
}
#ui-tabs-b .wrap{
	border:solid #ddd 1px;
	border-radius:0 0 10px 10px;
	overflow:hidden;
}
#ui-tabs-b.border{
	position:relative;
	border-top:solid #ddd 1px;
}
#ui-tabs-b.border .wrap{
	position:relative;
	top:-1px;
}
#ui-tabs-b .wrap ul{
	font-size:0;
}
#ui-tabs-b .wrap ul li{
	display:inline-block;
	vertical-align:middle;
	font-size:14px;
	width:33.33%;
}
#ui-tabs-b .wrap ul li a{
	display:block;
}
#ui-tabs-b .wrap ul li a:hover{
	text-decoration:none;
}
#ui-tabs-b .wrap ul li br{
	display:none;
}
#ui-tabs-b .wrap ul li a span{
	display:block;
	padding:15px 0;
	color:#000;
	background-color:#f2f2f2;
	text-align:center;
	line-height:1;
	transition:.2s ease;
	border-right:solid #ddd 1px;
}
#ui-tabs-b .wrap ul li:last-child a span{
	border-right:none;
}
#ui-tabs-b .wrap ul li a:hover span{
	background-color:#fff;
}
#ui-tabs-b .wrap ul li.current a span{
	background-color:#3e3f3f;
	color:#fff;
}

@media screen and (max-width: 780px) {
#ui-tabs .wrap ul li br{
	display:block;
}
#ui-tabs-b .wrap ul li br{
	display:block;
}
}

/*------------------------------
タブ切替
------------------------------*/

.panel{
  opacity: 0;
	display:none;
}
.panel.is-show{
	display:block !important;
	animation: show .2s ease 0s;
  opacity: 1;
}

@keyframes show{
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/*------------------------------
ボックス
------------------------------*/
.ui-box{
	
}
.ui-box .wrap{
	border:solid #ddd 1px;
	background-color:#f2f2f2;
	border-radius:10px;
	overflow:hidden;
}
.ui-box .wrap .content{
	padding:60px 30px;
	text-align:center;
}
.ui-box .wrap .content.bank-text{
	padding:10px 30px;
	text-align:center;
}
.ui-box .wrap .content h1{
	font-size:16px;
	line-height:1.5;
	margin:0 0 30px;
}
.ui-box .wrap .content .attention{
	display:inline-block;
	vertical-align:middle;
	padding:0 0 0 40px;
	margin:0 0 30px;
	background:url(/img/common/icon-attention.png) no-repeat center left /29px;
}
.ui-box .wrap .content .attention p{
	font-size:16px;
	line-height:1.9;
}
.ui-box .wrap .cols-2{
	font-size:0;
	text-align:center;
	padding:60px 30px 0;
}
.ui-box .wrap .narrow{
	width:35%;
	margin:0 auto;
}
.ui-box .wrap .cols-2 .col{
	width:50%;
	display:inline-block;
	vertical-align:top;
}
.ui-box .wrap .col h1{
	font-size:16px;
	line-height:1.5;
	margin:0 0 15px;
}
.ui-box .wrap .point{
	font-size:25px;
	line-height:1;
}
.ui-box .wrap .rank{
	font-size:30px;
	line-height:1;
	color:#ad8d66;
}
.ui-box .wrap hr{
	height:1px;
	padding:0;
	margin:0;
	background-color:#ddd;
	border:none;
}

.ui-box .wrap-half{
	font-size:0;
}
.ui-box .wrap-half .box{
	width:49%;
	margin:0 2% 0 0;
	display:inline-block;
	vertical-align:top;
	border:solid #ddd 1px;
	box-sizing:border-box;
	border-radius:10px;
	overflow:hidden;
}
.ui-box .wrap-half .box:nth-child(even){
	margin:0;
}
.ui-box .wrap-half .box h1{
	font-size:16px;
	line-height:1;
	margin:0 0 15px;
}
.ui-box .wrap-half .box .content{
	padding:30px;
}
.ui-box .wrap-half .box .setting{
	padding:15px;
	text-align:center;
}
.ui-box .wrap-half .box .setting p{
	font-size:14px;
	line-height:1;
}
.ui-box .wrap-half .box .changing{
	
}
.ui-box .wrap-half .box .changing a{
	display:block;
	text-align:center;
	padding:15px 0;
	line-height:1;
	font-size:14px;
	background-color:#fff;
	text-decoration:underline;
}
.ui-box .wrap-half .box .changing a:hover{
	background-color:#f2f2f2;
	text-decoration:none;
}
.ui-box .wrap-half .box .changing ul{
	font-size:0;
}
.ui-box .wrap-half .box .changing ul li{
	display:inline-block;
	vertical-align:middle;
	width:100%;
}
.ui-box .wrap-half .box .changing ul li a{
	border-right:solid #ddd 1px;
}
.ui-box .wrap-half .box .changing ul li:last-child a{
	border-right:none;
}
.ui-box .wrap-half .box .changing ul li a span.close{
	display:inline-block;
	padding:0 0 0 20px;
	background:url(/img/common/icon-close-b.png) no-repeat center left /12px;
	text-decoration:underline;
}
.ui-box .wrap-half .box .changing ul li a:hover span.close{
	text-decoration:none;
}
.ui-box .wrap-half .box .cols-2 ul li{
	width:50%;
}
.ui-box .wrap-half .box .cols-3 ul li{
	width:33.33%;
}
.ui-box .wrap-half .box .content.card{
	text-align:center;
}
.ui-box .wrap-half .box .content.card p{
	font-size:14px;
	line-height:1;
}
.ui-box .wrap-half .box .content.card-info{
	text-align:left;
}
.ui-box .wrap-half .box .content.card-info table{
	width:auto;
	border-collapse:collapse;
}
.ui-box .wrap-half .box .content.card-info table tr{
	
}
.ui-box .wrap-half .box .content.card-info table th{
	font-size:16px;
	vertical-align:top;
	text-align:left;
	padding:15px 30px 0 0;
	font-weight:normal;
}
.ui-box .wrap-half .box .content.card-info table td{
	font-size:14px;
	vertical-align:top;
	text-align:left;
	padding:16px 0 0 0;
}
.ui-box .wrap-half .box .content.address p{
	font-size:14px;
	line-height:1.8;
}
.ui-box .wrap-half hr{
	height:1px;
	padding:0;
	margin:0;
	background-color:#ddd;
	border:none;
}

@media screen and (max-width: 780px) {
.ui-box .wrap-half .box{
	width:auto;
	margin:0 0 15px;
	display:block;
}
}

/*------------------------------
お知らせ
------------------------------*/
.section-news{
	
}
.section-news .wrap{
	border:solid #ddd 1px;
	background-color:#fff;
	border-radius:10px;
	overflow:hidden;
}
.section-news .wrap.no-border{
	border:none !important;
}
.section-news .wrap.flex{
	display:flex;
	align-items: center;
  justify-content: center;
}
.section-news .wrap .list{
}
.section-news .wrap .list table{
	width:100%;
	border-collapse:collapse;
	font-size:14px;
}
.section-news .wrap .list table tr{
	
}
.section-news .wrap .list table th{
	padding:15px 20px 15px 45px;
	text-align:left;
	vertical-align:middle;
	color:#7d7d7d;
	border-bottom:solid #ddd 1px;
	/*background-color:#fff;*/
	transition:.2s ease;
	width:15%;
}
.section-news .wrap .list table th a{
	color:#7d7d7d;
}
.section-news .wrap .list table th a:hover{
	text-decoration:none;
}

.section-news .wrap .list table td{
	padding:15px 45px 15px 20px;
	text-align:left;
	vertical-align:middle;
	line-height:1.8;
	border-bottom:solid #ddd 1px;
	background-color:#fff;
	transition:.2s ease;
}
.section-news .wrap .list table tr.title th,
.section-news .wrap .list table tr.title td{
	font-size:16px;
}
.section-news .wrap .list table tr:last-child th,
.section-news .wrap .list table tr:last-child td{
	border-bottom:none;
}
.section-news .wrap .list table tr:hover th,
.section-news .wrap .list table tr:hover td{
	background-color:#f2f2f2;
}
.section-news .wrap .link{
	
}
.section-news .wrap .link a{
	display:block;
	text-align:center;
	padding:15px 0;
	line-height:1;
	font-size:14px;
	background-color:#fff;
	text-decoration:underline;
}
.section-news .wrap .link a:hover{
	background-color:#f2f2f2;
	text-decoration:none;
}
.section-news .wrap hr{
	height:1px;
	padding:0;
	margin:0;
	background-color:#ddd;
	border:none;
}
.section-news .wrap .detail{
	padding:30px 30px 30px 165px;
}
.section-news .wrap .detail p{
	font-size:14px;
	line-height:1.8;
}

@media screen and (max-width: 780px) {
.section-news .wrap .list table{
	display:block;
}
.section-news .wrap .list table tr,
.section-news .wrap .list table tbody{
	display:block;
}
.section-news .wrap .list table th{
	padding:15px 15px 0;
	text-align:left;
	border-bottom:none;
	width:auto;
	display:block;
}
.section-news .wrap .list table td{
	padding:0 15px 15px 15px;
	text-align:left;
	line-height:1.8;
	border-bottom:solid #ddd 1px;
	display:block;
}

.section-news .wrap .detail{
	padding:15px;
}
}

/*------------------------------
ページナビ
------------------------------*/
.page-navi{
	text-align:center;
}
.page-navi span,
.page-navi a{
	display:inline-block;
	vertical-align:middle;
	font-size:14px;
	line-height:1;
	box-sizing:border-box;
	width:36px;
	padding:10px;
	border-radius:4px;
}
.page-navi a.navi{
	background-color:#fff;
	border:solid #ddd 1px;
	color:#000;
}
.page-navi a.navi:hover{
	background-color:#f2f2f2;
	text-decoration:none;
}
.page-navi span.current{
	border:solid #ddd 1px;
	color:#fff;
	background-color:#ddd;
}
.page-navi a.direct{
	background-color:#3e3f3f;
	width:34px;
}
.page-navi a.direct:hover{
	opacity:.8;
}
.page-navi a.direct i{
	background-repeat:no-repeat;
	background-position:center;
	background-size:12px;
	display:block;
	width:14px;
	height:14px;
}
.page-navi a.direct.previous{
	margin:0 15px 0 0;
}
.page-navi a.direct.next{
	margin:0 0 0 15px;
}
.page-navi a.direct.previous i{
	background-image:url(/img/common/arrow2-p.png)
}
.page-navi a.direct.next i{
	background-image:url(/img/common/arrow2.png)
}

.page-navi-sp{
	display:none;
}

@media screen and (max-width: 780px) {
.page-navi span,
.page-navi a{
	font-size:12px;
	line-height:1;
	box-sizing:border-box;
	width:30px;
	padding:8px;
}
.page-navi a.direct{
	width:26px;
}
.page-navi a.direct i{
	background-size:10px;
	width:12px;
	height:12px;
}
}

/*------------------------------
タグ
------------------------------*/
.tags{
	
}
.tags span.tag{
	font-size:14px;
	line-height:1;
	color:#fff;
	font-size:10px;
	display:inline-block;
	vertical-align:middle;
	padding:4px 10px 3px 10px;
	border-radius:20px;
}
.tags span.tag.tag01{
	background-color:#e2c69b;
}
.tags span.tag.tag02{
	background-color:#c4d98a;
}
.tags span.tag.tag03{
	background-color:#a1a4a4;
}
.tags span.tag.tag04{
	background-color:#8ad5dc;
}
.tags span.tag.tag05{
	background-color:#a291b8;
}
.tags span.tag.tag06{
	background-color:#a3b0d0;
}
.tags span.tag.tag07{
	background-color:#ffb6a2;
}
.tags span.tag.tag08{
	background-color:#ffc7d3;
}

.section-title{
	margin:0 0 30px;
	font-size:16px;
	line-height:1.5;
	font-weight:bold;
}

@media screen and (max-width: 480px) {
	
    .section-flow .flow{
        border:none;
        border-top:solid #ddd 1px;
        border-bottom:solid #ddd 1px;
        border-radius: 0;
    }

    .section-flow .flow.row-2 ol li{
        flex-basis:calc(50% + 16px);
        position:relative;
        z-index:1;
    }
    .section-flow .flow.row-2 ol li:last-child{
        z-index:2;
        margin:0 0 0 -11px;
    }

    .section-flow .flow.row-3 ol li{
        flex-basis:calc(33.33% + 11px);
        position:relative;
        z-index:1;
    }
    .section-flow .flow.row-3 ol li:nth-child(2){
        flex-basis:calc(33.33% + 22px);
        z-index:2;
        margin:0 -11px;
    }
    .section-flow .flow.row-3 ol li:last-child{
        z-index:3;
    }
    .section-flow .flow.row-4 ol li{
        flex-basis:calc(25% + 11px);
        position:relative;
        z-index:1;
    }
    .section-flow .flow.row-4 ol li:nth-child(2){
        flex-basis:calc(25% + 11px);
        z-index:2;
        margin:0 -11px;
    }
    .section-flow .flow.row-4 ol li:nth-child(3){
        flex-basis:calc(25% + 11px);
        z-index:3;
        margin:0 -11px;
    }
    .section-flow .flow.row-4 ol li:last-child{
        z-index:4;
    }

    .section-flow .flow span{
    padding: 15px;
    display: block;
    position: relative;
		font-size:12px;
		text-align:center;
		line-height:1.3;
		background-repeat:no-repeat;
		background-size:11px 100%;
		background-image:url(/img/common/flow-arrow-normal.png);
		background-position:center right;
  }
	
    .section-form .table-form{
        margin:0 15px;
    }

    .section-form .table-form input[type="text"]{
        box-sizing:border-box;
        border:solid #ddd 1px;
        border-radius:3px;
        background-color:#fff;
        padding:15px 5px 15px 5px;
        font-size:14px;
    }
    .section-form .table-form input.input-text-20{
        width:32%;
        margin:0 2% 0 0;
    }
    .section-form .table-form input.input-text-20{
        width:32%;
        margin:0 2% 0 0;
    }
    .section-form .table-form input.input-text-20:nth-child(3n) {
        margin: 0;
    }
    .section-form .table-form select{
      -webkit-appearance:none;
        appearance:none;
        width:auto;
        max-width:100%;
        padding:15px 27px 15px 10px;
        box-sizing:border-box;
        font-size:14px;
        border:#ddd 1px solid;
        border-radius:0;
        background-color:#fff;
        border-radius:3px;
        background-position: right 10px center;
    }
    .option-payment-check-content select{
        max-width:85%!important;
    }
    .option-payment-check-content td select{
        max-width:100%!important;
    }


    .section-form .table-form select.short{
      padding:5px 60px 5px 15px;
        margin:10px 0;
    }

    .btn-area{
        font-size:0;
        text-align:left;
    }
    .cart-btn{
        width:100%;
    }
    .cart-btn input{
        min-width: auto;
        min-height: auto;
    }

    .btn-default.w10{
        min-width:40px;
        margin:0 0 15px !important;
    }
    .btn-default.w15{
        width:auto;
        min-width:130px;
        margin:0 0 15px !important;
    }
    .btn-default.w20{
        width:49%;
        margin:0 2% 15px 0 !important;
    }
    .btn-default.w20:nth-child(even){
        margin:0 0 15px !important;
    }
    .btn-default.w25{
        width:49%;
        margin:0 2% 15px 0 !important;
    }
    .btn-default.w25:nth-child(even){
        margin:0 0 15px !important;
    }
    .btn-default.w30{
        width:100%;
        margin:0 auto 15px !important;
    }
    .btn-default.w35{
        width:100%;
        margin:0 auto 15px !important;
    }
    .btn-default.w40{
        width:100%;
        margin:0 auto 15px !important;
    }
    .btn-default.w45{
        width:100%;
        margin:0 auto 15px !important;
    }
    .btn-default.w50,
    .btn-default.w60,
    .btn-default.w70,
    .btn-default.w80{
        width:100%;
        margin:0 auto 15px !important;
    }
    .btn-default.w20.icon-logout{
        width:130px;
        margin:0 2% 0 0 !important;
    }

    #ui-tabs{
        padding:0 15px;
        border-bottom:solid #ddd 1px;
    }
    #ui-tabs .wrap{
        position:relative;
        bottom:-1px;
    }

    #ui-tabs-b{
        padding:0 15px;
    }
    #ui-tabs-b .wrap{
    }
    #ui-tabs-b.border{
        position:relative;
        border-top:solid #ddd 1px;
    }
    #ui-tabs-b.border .wrap{
        position:relative;
        top:-1px;
    }

    .ui-box .wrap {
        border: none;
        border-top: solid #ddd 1px;
        border-bottom: solid #ddd 1px;
        border-radius: 0;
    }
    .ui-box .wrap .content {
        padding: 30px 15px;
        text-align: center;
    }
    .ui-box .wrap .content.bank-text{
    	padding:30px 15px;
    	text-align:center;
    }
    .ui-box .wrap .narrow {
        width: auto;
        margin: 0 auto;
    }
    .ui-box .wrap .content .attention {
        display: inline-block;
        vertical-align: middle;
        padding: 0 0 0 40px;
        margin: 0 0 15px;
        background: url(/img/common/icon-attention.png) no-repeat top left /29px;
        text-align: left;
    }
    .ui-box .wrap .content .attention + p{
        font-size:85%;
    }

    .ui-box .wrap .content p.info-text{
        font-size:66%;
    }

    .ui-box .wrap-half {
        font-size: 0;
        margin: 0 15px;
    }

    .section-news .wrap {
        border: none;
        border-top: solid #ddd 1px;
        border-bottom: solid #ddd 1px;
        border-radius: 0;
    }
    .section-news .wrap .list table{
        display:block;
    }
    .section-news .wrap .list table tr,
    .section-news .wrap .list table tbody{
        display:block;
    }
    .section-news .wrap .list table tr{
        background:url(/img/common/arrow.png) no-repeat center right 15px /7px;
    }
    .section-news .wrap .list table th{
        padding:15px 15px 0;
        text-align:left;
        border-bottom:none;
        width:auto;
        display:block;
    }
    .section-news .wrap .list table td{
        padding:0 30px 15px 15px;
        text-align:left;
        line-height:1.8;
        border-bottom:solid #ddd 1px;
        display:block;
        background-color:transparent;
    }
    .section-news .wrap .list table td a,
    .section-news .wrap .list table th a {
        width:100%;
        display:block;
    }

    .section-news .wrap .detail{
        padding:15px;
    }

    .page-navi{
        display:none;
    }
    .page-navi-sp{
        display:block;
    }
    .page-navi-sp p{
        font-size:12px;
        text-align:center;
        margin:0 0 15px;
    }
    .page-navi-sp ul{
        font-size:0;
        background-color:#e1e4e6;
    }
    .page-navi-sp ul li{
        display:inline-block;
        vertical-align:middle;
        font-size:14px;
        line-height:1;
        box-sizing:border-box;
        width:35%;
        border-right:solid #fff 1px;
    }
    .page-navi-sp span,
    .page-navi-sp a{
        display:block;
        vertical-align:middle;
        font-size:14px;
        line-height:1.4;
        box-sizing:border-box;
        text-align:center;
        padding:15px 0;
    }
    .page-navi-sp ul li:first-child{
        width:15%;
    }
    .page-navi-sp ul li:last-child{
        border-right:none;
        width:15%;
    }
    .page-navi-sp a.direct{
        line-height:1;
    }
    .page-navi-sp a.direct img{
        width:12px;
        height:auto;
    }
    .page-navi-sp a.navi-prev{
        background:url(/img/common/arrow2-p.png) no-repeat center left 15px /12px;
    }
    .page-navi-sp a.navi-next{
        background:url(/img/common/arrow2.png) no-repeat center right 15px /12px;
    }

    .tags {
        margin: 0 15px;
    }
}

.item-list figure a:hover img {
	opacity: 0.7;
}
.item-list ul li figure .color2 {
	font-size: 13px;
	height: 14px;
	margin-bottom: 20px;
}
.item-list ul li figure .color2 a {
	letter-spacing: 1.5px;
}

@media screen and (max-width: 780px) {
    .item-list ul li figure .color2 {
        font-size: 13px;
        height: 14px;
        margin-bottom: 10px;
    }
}

/*------------------------------
Amazon pay
------------------------------*/

.amazon-pay::before{
	content: "";
	width: 2em;
	height: 2em;
	position: absolute;
	top: 0px;
	bottom: 0;
	left: 60px;
	margin: auto;
	background-image:url(/img/cart/amazon_logo_icon.svg);
	background-size: cover;
}

@media screen and (max-width: 780px) {
	.amazon-pay::before{
		content: "";
		width: 2em;
		height: 2em;
		position: absolute;
		top: 0px;
		bottom: 0;
		left: 25px;
		margin: auto;
		background-image:url(/img/cart/amazon_logo_icon.svg);
		background-size: cover;
	}
}

.amazon-pay input {
    background-color: #ffc002!important;
    border-color: #000000!important;
    border: 1px solid #3e3f3f;
    color: #000;
}


.order-amazon-pay::before{
	content: "";
	width: 2em;
	height: 2em;
	position: absolute;
	top: 0px;
	bottom: 0;
	left: 27px;
	margin: auto;
	background-image:url(/img/cart/amazon_logo_icon.svg);
	background-size: cover;
}

@media screen and (max-width: 780px) {
	.order-amazon-pay::before{
		content: "";
		width: 2em;
		height: 2em;
		position: absolute;
		top: 0px;
		bottom: 0;
		left: 45px;
		margin: auto;
		background-image:url(/img/cart/amazon_logo_icon.svg);
		background-size: cover;
	}
}

.order-amazon-pay input {
    background-color: #ffc002!important;
    border-color: #000000!important;
    border: 1px solid #3e3f3f;
    color: #000;
    padding-left: 27px;
}

@media screen and (min-width: 1041px) {
	.section-form .table-form input.input-text-50 {
        width: 70%;
        margin: 0 2% 0 0;
	}
}
