@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/
*/
*{
	box-sizing:border-box;
}

body{
	background-color:#17A790;
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size:14px;
	color:#fff;
}

img, object, embed, video {
	max-width: 100%;
}

h1 {
	margin-top: 15px;
}

h1 img{
	width:60%;
	margin:5px auto 0;
}

#login h1+img {
	width: 85%;
}

h2 {
	font-size: 18px;
	margin-top: 10px;
	margin-bottom: 0;
}

#login h2 {
	margin-top: 20px;
}

ul,ol{
	list-style:none;
	margin:0;
	padding:0;
}

/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;

	Inspiration from "Responsive Web Design" by Ethan Marcotte
	http://www.alistapart.com/articles/responsive-web-design

	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/
.txt-danger {
    color: red;
    font-weight: normal;
}
.has-error input {
    border: 1px solid red !important;
}
.txt-center {
    text-align: center;
}
.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;
}

/* Mobile Layout: 480px and below. */

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 90%;
	padding:15% 0;
	clear: none;
	float: none;
	text-align:center;
}
#div1 {
display: none;
}
.head {
	background-color:#45A4D5;
	padding:7% 5% 3%;
	text-align:center;
	position:relative;
	font-size: 16px;
	font-weight: bold;
	border-bottom: 1px solid #fff;
}

.head .arrow {
  width: 12px;
  /*height: 15px;*/
  position: absolute;
  left: 30px;
  top: 42%;
}

.zeroMargin_mobile {
margin-left: 0;
}
.hide_mobile {
display: none;
}

.login_box{
	margin:20px auto 30px;
}

input[type=email],input[type=password]{
	width:300px;
	height:auto;
	border-radius:10px;
	margin:0;
	border:none;
	padding:10px 3%;
	margin-left:15px;
}

::placeholder {
	color: #aaa;
}

input:required,
input:invalid,
textarea:invalid {
  background-color: #fff;
}

.login_box label{
	display:flex;
	margin-top:15px;
	align-items:center;
	justify-content:center;
}

.login_box label img{
	width:6%;
	height:auto;
}

.login_box a{
	display: block;
	margin-right: calc((100% - 6% - 315px) / 2);
	text-decoration: underline;
	color: #fff;
	text-align: right;
	margin-top: 10px;
	font-size: 13px;
	font-weight: bold;
}

button{
	width:271px;
	height:44px;
	display:block;
	margin:30px auto;
	font-size:16px;
	color:#fff;
	font-weight:bold;
	border:#fff solid 2px;
	transition: 0.3s;
}

button:hover{
	opacity: 0.7;
}

.btn_login{
	background-color:#DE6975;
	border-radius:10px;
}

.btn_new{
	background-color:#45A4D5;
	border-radius:10px;
}

#login .btn_new{
	height: 55px;
}

.fs12 {
	font-size:12px !important;
}

.fs14 {
	font-size:14px !important;
}

.fs15 {
	font-size:15px !important;
}

.note{
	font-size:14px;
	text-align:left;
}



/*新規登録*/
section.form{
	text-align:left;
	padding-left:30px;
}

.form_list {
    margin: 4px 0 0 0;
    padding: 0;
	font-size: 13px;
}

/*.form_list+.form_list {
    margin-top: 8px
}*/

.form_list p {
    margin: 0;
    padding: 0;
    vertical-align: baseline
}

.form_list p+p {
    margin-top: 7px;
}

.form_list dt {
    width: 100%;
    font-size: 13px;
    font-weight: bold;
}

.form_list dd {
    padding: 0 0 0 2px;
    margin: 0;
}

.form_list dd+dd {
    padding-top: 0
}

.form_list dd p {
    font-weight: bold;
}

.form_list dd .flex{
	display:flex;
	justify-content:flex-start;
	align-items:center;
	/*margin-top:20px;*/
	width: 100%;
}

.form_list dd .flex:first-child {
	margin-top: 0;
}

.form_list dt label,.form_list dt p {
    position: relative;
    display: inline-block;
    padding: 6px 0 6px 2px;
}

section.confirm .form_list dt label,
section.confirm .form_list dt p {
	padding-top: 6px;
	padding-bottom: 6px;
}

.form_list.required dt label::before, .form_list.required dt p::before {
    position: absolute;
    /*top: 50%;*/
    top: 18px;
    left: -30px;
    margin-top: -10px;
    content: "必須";
    display: block;
    width: 25px;
    height:15px;
    font-size: 9px;
    font-weight: normal;
    text-align: center;
    line-height: 15px;
    color: #fff;
    border: 1px solid #DE6975;
    border-radius: 3px;
    background-color: #DE6975;
}

.form_list dd input,
.form_list dd select {
    height: 30px;
    padding: 0 8px;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    vertical-align: top;
    border: none;
    border-radius: 4px
}

.form_list dd input[type="checkbox"] {
    padding: 4px 0;
}

input[type='checkbox'] {
  appearance: none;
  outline: none;

  display: block;
  position: relative;
  text-align: center;
  cursor: pointer;

  width: 20px;
  height: 24px !important;
  margin: 0 auto;
}

input[type='checkbox']::before {
  display: block;
  position: absolute;
  content: '';

  width: 13px;
  height: 13px;
  background: #fff;
  border: none;
  border-radius: 3px;
}

input[type='checkbox']:checked::before {
  background-color: #fff;
}

input[type='checkbox']::after {
  display: block;

  content: '';
  position: absolute;
  left: 3px;
  top: 5px;

  width: 4px;
  height: 8px;
  border-right: 3px solid #2ea7e0;
  border-bottom: 3px solid #2ea7e0;
  transform: rotate(45deg);

  opacity: 0;
}

input[type='checkbox']:checked::after {
  opacity: 1;
}

.form_list dd .other input {
	height:auto;
}

.form_list dd .other span{
	margin-right:10px;
}

.form_list dd .other .txt-danger {
	margin-left:10px;
}

.form_list dd input[type="radio"] {
    width: 14px;
    height: 14px;
    padding: 0;
    margin-right: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-top: 3px;
    margin-right: 7px;
}
/*
.form_list dd input[type="radio"]:checked {
    border: 10px solid #444
}
*/

.form_list dd label.radio_label {
	position: relative;
	margin-right: 8px;
}

.form_list dd input[type="radio"]:checked +.radio_text::after {
    content: '';
    display: block;
    border-radius: 50%;
    width: 8px;
    height: 8px;
    background-color: #2ea7e0;
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
}

/*
.form_list dd select {
    width: 100%;
    height: 100%;
    padding: 0 24px 0 8px;
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    vertical-align: top;
    border: 0;
    background-color: transparent;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}
*/

.form_list dd .select_box {
	margin-right: 5px;
}

.form_list dd .select_box select {
    display: inline-block;
    /*height: 40px;*/
    vertical-align: top;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    /*background-image: url(/image/sp/registration/select_arrow.png);*/
    background-repeat: no-repeat;
    background-position: right 10px center;
    margin-right: 5px;
}

.form_list dd .select_box.date_box {
    display: flex;
    align-items: center;
}

#birthYears,
#birthMonth,
#birthDay {
	width: 90%;
}

.form_list dd a {
    color: #e30052;
    text-decoration: underline
}

.form_list dd span,.form_list dd label {
    padding: 0;
    margin: 0
}

.form_list dd label.w100,.form_list ul li{
	display: flex;
    align-items: center;
}

.form_list dd label.w100,.form_list ul li.not_ai{
	align-items: unset;
}

.form_list dd .sub_txt {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.3
}

.form_list dd .fleft {
    float: left
}

.form_list dd .fleft+.fleft {
    margin-top: 0
}

.form_list dd .tcenter {
    text-align: center;
    line-height: 40px
}

.form_list dd .tright {
    text-align: right;
    line-height: 1
}

.form_list dd .tleft {
    text-align: left;
    line-height: 1
}

.form_list dd .w5 {
    display: inline-block;
    width: 5%
}

.form_list dd .w7 {
    display: inline-block;
    width: 7%
}

.form_list dd .w10 {
    display: inline-block;
    width: 10%
}

.form_list dd .w16 {
    width: 16%
}

.form_list dd .w20 {
    width: 20%
}

.form_list dd .w25 {
    width: 25%
}

.form_list dd .w28 {
    width: 28%
}

.form_list dd .w30 {
    width: 30%
}

.form_list dd .w32 {
    width: 32%
}

.form_list dd .w35 {
    width: 35%
}

.form_list dd .w40 {
    width: 40%
}

.form_list dd .w50 {
    width: 50%
}

.form_list dd .w100 {
    width: 100%
}

.form_list dd .w_address {
    width: calc(80% - 4px);
}

.form_list dd .w_address input{
	width: 100%;
}

.form_list dd .pl4 {
    padding-left: 4px
}

.form_list dd .pl8 {
    padding-left: 8px
}

.form_list dd .pl12 {
    padding-left: 12px
}

.form_list dd .pl24 {
    padding-left: 24px
}

.form_list dd .lh20 {
    line-height: 20px
}

.form_list dd.err {
	text-align: right;
	color: #e71f19;
	margin-top: 2px;
}

.form_list ul{
	list-style:none;
	margin:0;
	padding:0;
}

.form_list ul li ul{
	margin-left:1em;
}

.form_list textarea{
    display: block;
    width: 100%;
	border-radius:10px;
	border:none;
}

.message_box {
    margin: 20px 0 0 0;
    padding: 0 8px
}

.message {
    padding: 12px;
    border: 1px solid #e30052
}

.message p {
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 1.5
}

.submit_box {
    margin: 28px 0 0 0
}

.submit_btn {
    display: block;
    width: 200px;
    height: 40px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
    line-height: 38px;
    text-align: center;
    color: #fff;
    background-image: url(/image/sp/registration/submit_button.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    border: 0
}

/*確認画面*/
section.form.confirm{
	padding-left:0;
}
.confirm dd p,.confirm dd ul li{
	font-size:16px;
}

/* モーダルCSS */
.modalArea {
  display: none;
  position: fixed;
  z-index: 10; /*サイトによってここの数値は調整 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modalBg {
  width: 100%;
  height: 100%;
  background-color: rgba(30,30,30,0.5);
}

.modalWrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform:translate(-50%,-50%);
  width: 70%;
  max-width: 500px;
  background-color: #fff;
  color:#221815;
  border-radius:30px;
}

.modalWrapper .modalContents{
  padding: 10px;
  font-size:15px;
  color: #595757;
}

.modalWrapper .modalContents h1{
	font-size:20px;
	font-weight:bold;
	margin-bottom:0;
	color: #000;
}

#mypage_edit .modalWrapper .modalContents h1{
	margin-top: 75px;
	margin-bottom: 55px;
}

.modalWrapper .modalContents .thanks{
	margin-top:5px;
	font-size:16px;
}

.modalWrapper .modalContents .text{
	margin-top:30px;
	margin-bottom:30px;
}

.modalWrapper .close p{
	border-top:1px solid #BCBCBC;
	padding-top:12px;
	margin-bottom: 15px;
	font-size:18px;
	font-weight: bold;
	color: #6d6c6c;
}

.modalWrapper .close p a{
	display:block;
	width:100%;
	height:100%;
	text-decoration:none;
	font-size:18px;
	font-weight: bold;
	color: #6d6c6c;
}

.modalWrapper #closeModal{
	cursor:pointer;
}

.tal {
	text-align: left !important;
}
.fwn {
	font-weight: normal !important;
}
.fwb {
	font-weight: bold !important;
}
.mt0 {
	margin-top: 0 !important;
}

.bdds {
	border-top: 1px dashed #6d6c6c;
	margin-top: 12px;
	padding-top: 6px;
}

/*マイページ*/
.mypage h4,.mypage ul{
	text-align:left;
}

.mypage h4{
	width:352px;
	margin-bottom:5px;
	margin-left: auto;
	margin-right: auto;
	color: #F0EA0C;
	font-size: 16px;
}

.mypage ul.update{
	width:352px;
	font-size: 13px;
	margin-left: auto;
	margin-right: auto;
}

#stamp.mypage ul.update{
	padding-left: 0;
}

.mypage .name{
	width:352px;
	margin:15px auto;
}

#stamp.mypage .name {
	margin-bottom: 0;
}

.mypage .name li{
	font-size:22px;
	font-weight: bold;
	display:flex;
	justify-content:flex-start;
	align-items: center;
	line-height:1.8
}

.mypage .name li.ruby {
	padding-left: 3px;
}

.mypage .name li button{
	width:54px;
	height:22px;
	font-size:13px;
	background-color:#45A4D5;
	color:#fff;
	margin: 0 0 0 20px;
	border-radius:3px;
	border:1px solid #fff;
}

.mypage .stamp_box{
	width:352px;
	height:136px;
	border-radius:20px;
	background-color:#DE6975;
	display:flex;
	justify-content:center;
	align-items:center;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10px;
}

.mypage .stamp_box li{
	width:92px;
	height:92px;
	background-color:#fff;
	margin-right:10px;
	padding:1%;
}

.mypage .stamp_box li:last-child{
	margin-right:0;
}

.mypage .stamp_box li img{
	width:100%;
	height:auto;
	max-width:100%;
}

.mypage .stamp_box li.gray{
	position:relative;
}

.mypage .stamp_box li.gray:before{
	content:'';
	background-color:rgba(75,75,75,0.71);
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

.mypage .henkin {
	width: 280px;
	background: #b5b6b6;
	border-radius: 3px;
	margin-top: 5px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 2px;
	padding-bottom: 2px;
	font-weight: bold;
}

.mypage .cashback{
	color:#F0EA0C;
	font-size:18px;
	margin-top: 8px;
	margin-bottom: 20px;
	font-weight: bold;
}

#stamp.mypage .cashback{
	width: 352px;
	margin: 0 auto 50px;
}

#qrcode img,
.qr{
	width: 200px;
	height:auto;
	margin-left:auto;
	margin-right:auto;
}

.stamp > div{
	margin-top:20%;
	}
.stamp .modalContents{
	margin-top:0;
	}

.stamp .modalContents h1{
	margin-bottom:30px;
	}
.stamp .modalContents .button{
	width:207px;
	height:58px;
	border:3px #2EA7E0 solid;
	color:#000;
	margin:auto;
	line-height:58px;
	text-align:center;
	margin-bottom:15px;
	font-size: 18px;
	font-weight: bold;
	}

	.stamp .modalContents .button:hover{
		background-color: rgba(238,238,238,1);
	}
#to-modal2 {
	border:3px #2EA7E0 solid;
	background-color:#2EA7E0;
	color:#fff;
}

	#to-modal2:hover {
		border:3px #2096cd solid;
		background-color: rgba(32,150,205,1);
	}

#passwd {
	width: 80%;
}

#passwd h2 {
	font-size: 16px;
	margin-top: 50%;
	text-align: left;
	margin-bottom: 8px;
}

/*フッター*/
footer{
	padding-top:30%;
}

footer img{
	width:60%;
	height:auto;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

.gridContainer {
	width: 90.675%;
	padding-left: 1.1625%;
	padding-right: 1.1625%;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
display: block;
}
.head {
}
.hide_tablet {
display: none;
}
.zeroMargin_tablet {
margin-left: 0;
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {

.gridContainer {
	width: 88.5%;
	max-width: 1232px;
	padding-left: 0.75%;
	padding-right: 0.75%;
	margin: auto;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
display: block;
}
.head {
}
.zeroMargin_desktop {
margin-left: 0;
}
.hide_desktop {
display: none;
}
}
