﻿html {
    font-size: 62.5%;
}

@media screen and (max-width:1040px) {
    html {
        font-size: calc((10 * (100vw / 1040)));
    }
}

body {
	font-family: 'Noto Sans JP',"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-size: 1.4rem;
	font-weight: 400;
	color: #5a5a5a;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

a{
    color: #1a69d5;
    text-decoration: underline;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity  0.3s ease;
}
a:hover{opacity: .6;}


/**************************************
wrap
**************************************/
#wrap{
	width: 100%;
	margin: 0 auto;
	padding: 0 0 0 0;
}
#wrap.lock{
	position: fixed;
	overflow: hidden;
	top: 0;
}


/**************************************
#header
**************************************/
#header{
    display: block;
	width: 100%;
    height: 12rem;
	margin: 0 auto;
    background: rgba(255,255,255,1);
}

#header .headTop{padding: 0 4rem;}

#header .headInner{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
    -webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: space-between;
	justify-content: space-between;
    width: 100%;
    height: 8rem;
    max-width: 960px;
    margin: 0 auto;
}

#header .headInner .headLogo{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
    -webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
    height: 100%;
}

#header .headInner .headLogo > a{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
    -webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
    text-align: left;
    text-decoration: none;
    white-space: nowrap;
    color: #c8004b;
}

#header .headInner .headLogo > a > img{
	display: block;
    width: 40rem;
    height: auto;
}

#header .headInner .headLogo > a > span{
    display: block;
    padding-left: 1rem;
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 700;
}

#header .headInner #headMemberNav,
#header .headInner #headMemberLogin{
    display: block;
    height: 100%;
}


#header .headInner #headMemberNav > dl{
    display: block;
    height: 100%;
    position: relative;
}

#header .headInner #headMemberNav > dl > dt,
#header .headInner #headMemberLogin > a{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
    -webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;
    width: 6rem;
    height: 100%;
    text-align: center;
    font-size: 1.1rem;
    text-decoration: none;
    color: #5a5a5a;
    cursor: pointer;
}

#header .headInner #headMemberNav > dl > dt > span,
#header .headInner #headMemberLogin > a > span{display: block;}

#header .headInner #headMemberNav > dl > dt > span > .img,
#header .headInner #headMemberLogin > a > span > .img{
    display: block;
    width: 3rem;
    margin: 0 auto 0.5rem;
}
#header .headInner #headMemberNav > dl > dt > span > .img > img,
#header .headInner #headMemberLogin > a > span > .img > img{display: block; width: 100%; height: auto;}

#header .headInner #headMemberNav > dl > dd{
	display: block;
    width: 22rem;
	padding: 1.5rem;
    border-radius: 4px;
	background: #f1f1f1;
	opacity: 0;
	position: fixed;
	top: 8rem;
	right: 0;
	z-index: 1000;
	webkit-transition: opacity 0.4s ease;
    -moz-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
    -webkit-transform: translate(100vw,0);
    -moz-transform: translate(100vw,0);
    -o-transform: translate(100vw,0);
    transform: translate(100vw,0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#header .headInner #headMemberNav.hover > dl > dd,
#header .headInner #headMemberNav.open > dl > dd{
	visibility: visible;
    opacity: 1;
	position: absolute;
    -webkit-transform: translate(0,0);
    -moz-transform: translate(0,0);
    -o-transform: translate(0,0);
    transform: translate(0,0);
}

#header .headInner #headMemberNav > dl > dd::before{
    content: '';
    display: block;
    width: 100%;
    height: 3rem;
    position: absolute;
    top: -3rem;
    right: 0;
}
#header .headInner #headMemberNav > dl > dd::after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 0.5rem 1.5rem 0.5rem;
    border-color: transparent transparent #f1f1f1 transparent;
    position: absolute;
    top: -1.4rem;
    right: 2.5rem;
}

#header .headInner #headMemberNav > dl > dd > ul{
    display: block;
    border-radius: 4px;
}

#header .headInner #headMemberNav > dl > dd > ul > li{
    display: block;
}
#header .headInner #headMemberNav > dl > dd > ul > li + li{margin-top: 1rem;}

#header .headInner #headMemberNav > dl > dd > ul > li > a{
    display: block;
    padding: 1rem;
    padding-right: 3rem;
    border-radius: 4px;
    background: #FFFFFF;
    text-decoration: none;
    color: #5a5a5a;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
}
#header .headInner #headMemberNav > dl > dd > ul > li > a::after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.4rem 0 0.4rem 0.8rem;
    border-color: transparent transparent transparent #f49c00;
    position: absolute;
    right: 1rem;
    top: calc(50% - 0.4rem);
}


#header .headInner #headMemberNav > dl > dd > ul > li.btnClose{
    display: block;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #CCCCCC;
    text-align: center;
    cursor: pointer;
    font-size: 1.4rem;
	webkit-transition: opacity 0.2s ease;
    -moz-transition: opacity 0.2s ease;
    -o-transition: opacity 0.2s ease;
    transition: opacity 0.2s ease;
}
#header .headInner #headMemberNav > dl > dd > ul > li.btnClose:hover{opacity: .6;}

#header .headInner #headMemberNav > dl > dd > ul > li.btnClose::before{
    content: '×';
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.2rem;
    font-weight: 700;
}


/** #headGlNav ***********/
#header #headGlNav{
    display: block;
    width: 100%;
    padding: 0 4rem;
    background: #c8004b;
}


#header #headGlNav > ul{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
    -webkit-align-items: stretch;
	align-items: stretch;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
    width: 100%;
    max-width: 960px;
    height: 4rem;
    margin: 0 auto;
}

#header #headGlNav > ul > li{
    display: block;
    height: 100%;
    padding-right: 3rem;
    position: relative;
}
#header #headGlNav > ul > li + li{padding-left: 3rem;}

#header #headGlNav > ul > li + li::before{
    content: '';
    display: block;
    width: 1px;
    height: calc(100% - 1rem);
    background: #9a2d56;
    position: absolute;
    left: 0;
    top: 0.5rem;
}
#header #headGlNav > ul > li + li::after{
    content: '';
    display: block;
    width: 1px;
    height: calc(100% - 1rem);
    background: #da487f;
    position: absolute;
    left: 1px;
    top: 0.5rem;
}


#header #headGlNav > ul > li > a{
	display: -webkit-flex;
    display: flex;
	-webkit-flex-wrap: nowrap;
	flex-wrap: nowrap;
    -webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
    height: 100%;
    padding-left: 1.8rem;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    color: #FFFFFF;
    position: relative;
}
#header #headGlNav > ul > li > a::before{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.4rem 0 0.4rem 0.8rem;
    border-color: transparent transparent transparent #f49c00;
    position: absolute;
    left: 0;
    top: calc(50% - 0.4rem);
}


#header #headGlNav > ul > li.current > a::after{
    content: '';
    display: block;
    height: 3px;
    width: 100%;
    background: #f49c00;
    border-radius: 1px;
    position: absolute;
    left: 0;
    bottom: -1px;
}


/**************************************
#footer
**************************************/
#footer{
    display: block;
    margin-top: 10rem;
    padding: 3rem 4rem 6rem;
    background: #e5e8e9;
}

#footer .footCopy{
    text-align: center;
    font-size: 1.2rem;
    color: #999999;
}

/**************************************
form
**************************************/
select{
    display: inline-block;
    height: 5.0rem;
    box-sizing: border-box;
    padding: 0 3.8rem 0 1rem;
    background: url(../img/icon_arrow_bottom.svg) calc(100% - 1rem) center no-repeat #FFFFFF;
    background-size: 1rem auto;
    border: 1px solid #cacaca;
    border-radius: 8px;
    vertical-align: middle;
    line-height: calc(5rem - 2px);
    font-size: 1.6rem;
    color: #5a5a5a;
    cursor: pointer;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="text"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="email"]{
	width: 100%;
    height: 5.0rem;
	box-sizing: border-box;
    padding: 0 1rem 0 1rem;
	background: #FFFFFF;
	border: 1px solid #cacaca;
    border-radius: 8px;
    color: #5a5a5a;
	font-size: 1.6rem;
    line-height: calc(5rem - 2px);
	vertical-align: middle;
	cursor: pointer;
    box-shadow: none;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input:read-only{ pointer-events: none;}

textarea{
	width: 100%;
	height: 20rem;
	box-sizing: border-box;
	padding: 1rem;
	background: #FFFFFF;
	border: 1px solid #cacaca;
    border-radius: 8px;
	font-size: 1.6rem;
    line-height: 1.5;
    color: #5a5a5a;
	vertical-align: middle;
	cursor: pointer;
    box-shadow: none;
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


:placeholder-shown { color: #999999; font-size: 1.6rem;}
::-webkit-input-placeholder { color: #999999; font-size: 1.6rem;}
:-moz-placeholder { color: #999999; font-size: 1.6rem;}
::-moz-placeholder { color: #999999; font-size: 1.6rem;}
:-ms-input-placeholder { color: #999999; font-size: 1.6rem;}


input[type="radio"],
input[type="checkbox"]{vertical-align: middle;}


input[type="text"].error,
input[type="tel"].error,
input[type="number"].error,
input[type="password"].error,
input[type="email"].error,
select.error,
textarea.error{
    border-color: #e60012;
    border-width: 2px;
}

select.error > option{background: #FFFFFF;}

input[type="text"]:read-only,
input[type="tel"]:read-only,
input[type="number"]:read-only,
input[type="password"]:read-only,
input[type="email"]:read-only,
textarea:read-only{
    border-color: #efefef;
    background: #efefef;
    cursor: inherit;
    font-weight: 700;
}




/**************************************
btn
**************************************/
/*btnRed  ***********************/
.btnRed > a,
.btnRed > span,
.btnRed > button{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    padding: 0 2rem;
    height: 6.0rem;
    background: #bf1347;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 2.0rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.btnRed.arrow > a::after,
.btnRed.arrow > span::after,
.btnRed.arrow > button::after{
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.6rem 0 0.6rem 1rem;
    border-color: transparent transparent transparent #FFFFFF;
    position: absolute;
    right: 2rem;
    top: calc(50% - 0.6rem);
}


.btnRed > a:hover,
.btnRed > span:hover,
.btnRed > button:hover{opacity: .6;}


/*btnOrange  ***********************/
.btnOrange > a,
.btnOrange > span,
.btnOrange > button{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    padding: 0 2rem;
    height: 6.0rem;
    background: #f49c00;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 2.0rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.btnOrange.arrow > a::after,
.btnOrange.arrow > span::after,
.btnOrange.arrow > button::after{
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.6rem 0 0.6rem 1rem;
    border-color: transparent transparent transparent #FFFFFF;
    position: absolute;
    right: 2rem;
    top: calc(50% - 0.6rem);
}

.btnOrange > a:hover,
.btnOrange > span:hover,
.btnOrange > button:hover{opacity: .6;}


/*btnGray  ***********************/
.btnGray > a,
.btnGray > span,
.btnGray > button{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    padding: 0 2rem;
    height: 6.0rem;
    background: #999999;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 2.0rem;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    position: relative;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.btnGray.arrow > a::after,
.btnGray.arrow > span::after,
.btnGray.arrow > button::after{
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.6rem 0 0.6rem 1rem;
    border-color: transparent transparent transparent #FFFFFF;
    position: absolute;
    right: 2rem;
    top: calc(50% - 0.6rem);
}


.btnGray > a:hover,
.btnGray > span:hover,
.btnGray > button:hover{opacity: .6;}



/*btnBack  ***********************/
.btnBack > a,
.btnBack > span,
.btnBack > button{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    padding: 0 2rem;
    height: 6.0rem;
    background: #CCCCCC;
    border-radius: 8px;
    color: #5a5a5a;
    font-size: 2.0rem;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.btnBack > a::after,
.btnBack > span::after,
.btnBack > button::after{
    content: '';
    width: 0;
    height: 0;
    display: block;
    border-style: solid;
    border-width: 0.6rem 1rem 0.6rem 0;
    border-color: transparent #5a5a5a transparent transparent;
    position: absolute;
    left: 2rem;
    top: calc(50% - 0.6rem);
}

.btnBack > a:hover,
.btnBack > span:hover,
.btnBack > button:hover{opacity: .6;}




/**************************************
#main
**************************************/
#main{
    min-height: calc(100vh - 12rem - 7.2rem - 100px);
    padding-top: 6rem;
}

#main.noMargin{padding-top: 0;}

#main .mainTTL{
    display: block;
    padding: 0 4rem;
    margin-bottom: 3.8rem;
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
}

/**************************************
formBox
**************************************/
#main .formBox{
    display: block;
    width: calc(100% - 4rem);
    max-width: 560px;
    margin: 0 auto;
    padding: 3rem 4rem;
    border: 1px solid #cccccc;
    border-radius: 8px;
}


#main .formUnderText{
    display: block;
    width: 100%;
    padding: 0 4rem;
    margin-top: 2rem;
    font-size: 1.6rem;
    text-align: center;
}

#main .formGuide{ display: block;}
#main .formGuide > ul{display: block;}
#main .formGuide > ul > li{
    display: block;
    padding-left: 1.3em;
    text-indent: -1.3em;
    font-size: 1.4rem;
    line-height: 1.6;
}
#main .formGuide > ul > li + li{margin-top: 0.5rem;}

#main .completeText{
    display: block;
}
#main .completeText > p{
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.6;
}
#main .completeText > p > strong{font-weight: 700;}
#main .completeText > p + p{margin-top: 1rem;}



#main .formCautionBox{
    display: block;
    width: calc(100% - 4rem);
    max-width: 560px;
    margin: 0 auto 2rem;
    padding: 2rem 2rem 2rem 12rem;
    background: url("../img/icon_caution.svg") 2rem center no-repeat #f1f1f1;
    background-size: 8rem auto;
    border-radius: 8px;
    position: relative;
}

#main .formCautionBox > ul{
    display: block;
    padding-left: 1.5rem;
    text-indent: -1.5rem;
    font-size: 1.4rem;
    line-height: 1.4;
}
#main .formCautionBox > ul > li{display: block;}

#main .formCautionBox > ul > li + li{margin-top: 0.8rem;}

#main .formTTL{
    display: block;
    width: 100%;
    text-align: center;
    padding: 1rem 2rem 1.2rem;
    font-size: 1.6rem;
    background: #CCCCCC;
    font-weight: 700;
    margin-bottom: 3rem;
}
#main * + .formTTL{margin-top: 4rem;}




/**************************************
formTable
**************************************/
#main .formTable{
    display: block;
    width: 100%;
    margin: 0 auto;
}
#main .formTable + .formTable{margin-top: 3rem;}
#main .formGuide + .formTable{margin-top: 3rem;}

#main .formTable > ul{ display: block;}
#main .formTable > ul > li{display: block;}
#main .formTable > ul > li + li{margin-top: 2rem;}


#main .formTable > dl{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
#main .formTable > dl + dl{margin-top: 2rem;}

#main .formTable > dl > dt{
    display: block;
    width: 14rem;
    padding: 1.6rem 0 0 0;
    font-size: 1.6rem;
    font-weight: 700;
}

#main .formTable > dl > dd{
    display: block;
    width: calc(100% - 14rem);
}

#main .formTable .errMsg{
    display: block;
    margin-top: 1rem;
    font-size: 1.4rem;
    color: #bf1347;
    font-weight: 700;
    text-align: left;
}
#main .formTable ul + .errMsg,
#main .formTable dl + .errMsg{margin-top: 2rem; text-align: center; font-size: 1.6rem;}


#main .bottomBtnArea{
    display: block;
    margin-top: 4rem;
}

#main .bottomBtnArea.border{border-top: 1px solid #CCCCCC; padding-top: 4rem; margin-top: 4rem;}


#main .bottomBtnArea > ul{}
#main .bottomBtnArea > ul > li{
    display: block;
    max-width: 32rem;
    margin: 0 auto;
}
#main .bottomBtnArea > ul > li + li{margin-top: 2rem;}


#main .bottomBtnArea > ul > li.btnBack > a,
#main .bottomBtnArea > ul > li.btnBack > .btnBack > span,
#main .bottomBtnArea > ul > li.btnBack > .btnBack > button{
    height: 5rem;
    font-size: 1.4rem;
}


#main .btnUnderLink{
    display: block;
    margin-top: 2rem;
    text-align: center;
    font-size: 1.6rem;
}

#main .privacyAgreeBox{
    display: block;
    margin-top: 4rem;
}
#main .privacyAgreeBox > p{
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

#main .privacyAgreeBox > .agreeCheckArea{display: block;}
#main .privacyAgreeBox > .agreeCheckArea > label{
    display: block;
    width: 100%;
    padding: 2rem;
    background: #f7f7f7;
    text-align: center;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

#main .privacyAgreeBox > .agreeCheckArea > label:hover{opacity: .6;}

#main .privacyAgreeBox > .agreeCheckArea > label > input{display: none;}

#main .privacyAgreeBox > .agreeCheckArea > label > span{
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding: 0 0 0 4.5rem;
    font-size: 1.6rem;
    font-weight: 700;
    min-height: 3.0rem;
    cursor: pointer;
    position: relative;
}

#main .privacyAgreeBox > .agreeCheckArea > label > span::before{
    content: '';
    display: block;
    width: 3.0rem;
    height: 3.0rem;
    border: 1px solid #cdd6dd;
    border-radius: 4px;
    background: #FFFFFF;
    vertical-align: middle;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
}

#main .privacyAgreeBox > .agreeCheckArea > label > span::after{
    content: '';
    display: block;
    width: 3.0rem;
    height: 3.0rem;
    background: url("../img/icon_check.svg") center center no-repeat;
    background-size: 1.5rem auto;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    transform: scale(0);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all  0.2s ease;
}

#main .privacyAgreeBox > .agreeCheckArea > label > input:checked + span::after{
    opacity: 1;
    transform: scale(1);
}

/**************************************
formTable
**************************************/
#main .formConfrimTable{
    display: block;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid #CCCCCC;
}
#main .formConfrimTable + .formConfrimTable{margin-top: 3rem;}
#main .formGuide + .formConfrimTable{margin-top: 3rem;}


#main .formConfrimTable > dl{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
#main .formConfrimTable > dl + dl{
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px dotted #CCCCCC;
}

#main .formConfrimTable > dl > dt{
    display: block;
    width: 14rem;
    padding: 0 0 0 0;
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 700;
}

#main .formConfrimTable > dl > dd{
    display: block;
    width: calc(100% - 14rem);
    font-size: 1.6rem;
    line-height: 1.4;
}

/**************************************
keyVisual
**************************************/
#main .keyVisual{
    display: block;
    width: 100%;
    max-width: calc(960px + 8rem);
    padding: 0 4rem;
    margin: -2rem auto 8rem;
}

#main .keyVisual > figure{
    display: block;
    margin-bottom: 1.6rem;
}
#main .keyVisual > figure > img{display: block; width: 100%; height: auto;}

#main .keyVisual > p{
    display: block;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.6;
}


/**************************************
contentsList
**************************************/
#main .contentsList{
    display: block;
    width: 100%;
    max-width: calc(960px + 8rem);
    padding: 0 4rem;
    margin: 0 auto;
}

#main .contentsList > ul{display: block;}
#main .contentsList > ul > li{ display: block;}
#main .contentsList > ul > li + li{margin-top: 2rem;}


#main .contentsList > ul > li > a{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 5rem 1rem 1rem;
    border: 1px solid #e5e8e9;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.4rem;
    font-weight: 700;
    color: #5a5a5a;
    position: relative;
}

#main .contentsList > ul > li > a::after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0.8rem 0 0.8rem 1.4rem;
    border-color: transparent transparent transparent #f49c00;
    position: absolute;
    right: 1.5rem;
    top: calc(50% - 0.4rem);
}

#main .contentsList > ul > li > a > figure{
    display: block;
    width: 32rem;
}
#main .contentsList > ul > li > a > figure > img{display: block; width: 100%;}

#main .contentsList > ul > li > a > .text{
    display: block;
    width: calc(100% - 34rem);
    text-align: left;
}

#main .contentsList > ul > li > a > .text > .ttl{
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
}

#main .contentsList > ul > li > a > .text > .detail{
    display: block;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.4;
}

#main .contentsList > ul > li > a > .text > .ttl + .detail{
    margin-top: 1.4rem;
}

/**************************************
#contentsDetail
**************************************/
#contentsDetail{
    display: block;
    margin-top: -6rem;
}

#contentsDetail .detailBtnArea{
    display: block;
    width: 100%;
    padding: 0 4rem;
    margin: 6rem auto 0;
}

#contentsDetail .detailBtnArea > ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex-direction: row-reverse;
    width: 100%;
    max-width: 66rem;
    margin: 0 auto;
}

#contentsDetail .detailBtnArea > ul > li{
    display: block;
    width: calc(50% - 1rem);
}

/**************************************
reservationForm
**************************************/
#reservationForm{}

#reservationForm .reservationContentsInfo{
    display: block;
    width: calc(100% - 4rem);
    max-width: 560px;
    margin: 0 auto 2rem;
    padding: 2rem 4rem;
    border: 2px solid #c8004b;
    border-radius: 8px;
    position: relative;
}
#reservationForm .reservationContentsInfo::after{
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2.1rem 1rem 0 1rem;
    border-color: #c8004b transparent transparent transparent;
    position: absolute;
    bottom: -2.1rem;
    left: calc(50% - 1rem);
}

#reservationForm .reservationContentsInfo > dl{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    line-height: 1.6;
    font-size: 1.4rem;
}
#reservationForm .reservationContentsInfo > dl + dl{
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px dotted #CCCCCC;
}

#reservationForm .reservationContentsInfo > dl > dt{
    display: block;
    width: 14rem;
    padding: 0 0 0 0;
    font-weight: 700;
}
#reservationForm .reservationContentsInfo > dl > dd{
    display: block;
    width: calc(100% - 14rem);
}





#main .formTable .timeSelect{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}

#main .formTable .timeSelect > select + span{display: block; margin-left: 1rem;}
#main .formTable .timeSelect > span + select{margin-left: 2rem;}


/**************************************
datePicker
**************************************/
#datePickerOuter{
    position: relative;
    z-index: 10;
}

#datePickerOuter input[type="text"].datePicker{
	background-image: url("../img/icon_calendar.svg");
	background-repeat: no-repeat;
	background-position: calc(100% - 1rem) center;
	background-size: 2rem auto;
}
#datePickerOuter input[type="text"].datePicker:disabled{
	background-color: #efefef;
	color: #999999;
	cursor: default;
}
#datePickerOuter input[type="text"].datePicker:read-only{
	background-color: #FFFFFF;
    border: 1px solid #cacaca;
    font-weight: 400;
    cursor: pointer;
    pointer-events: inherit;
}

.ui-datepicker{
	display: none;
	margin-top: 10px;
	padding: 1rem 1rem 1rem;
	background: #FFFFFF;
	border: 1px solid #CCCCCC;
	box-shadow: 0 4px 4px rgba(0,0,0,.2);
	border-radius: 8px;
	position: absolute;
}
.ui-datepicker::before{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0.9rem 1.4rem 0.9rem;
	border-color: transparent transparent #FFFFFF transparent;
	position: absolute;
	top: -1.4rem;
	right: 1.2rem;
	z-index: 2;
	
}
.ui-datepicker::after{
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 1rem 1.4rem 1rem;
	border-color: transparent transparent #CCCCCC transparent;
	position: absolute;
	top: -1.5rem;
	right: 1.1rem;
	z-index: -1;
}

.ui-datepicker-header{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	width: 100%;
	height: 3rem;
	margin: 0 auto;
	font-size: 1.6rem;
	line-height: 1;
	font-weight: 700;
	text-align: center;
	position: relative;
}

.ui-datepicker-header .ui-datepicker-prev,
.ui-datepicker-header .ui-datepicker-next{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 4rem;
    height: 2rem;
    color: #333333;
    background: #FFFFFF;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
	position: absolute;
	top: 6px;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.ui-datepicker-header .ui-datepicker-prev{ left: 0;}
.ui-datepicker-header .ui-datepicker-next{ right: 0;}

.ui-datepicker-header .ui-datepicker-prev:hover,
.ui-datepicker-header .ui-datepicker-next:hover{
	background-color: #efefef;
}
.ui-datepicker-header .ui-datepicker-prev.ui-state-disabled,
.ui-datepicker-header .ui-datepicker-next.ui-state-disabled{
	opacity: 0;
    box-shadow: none;
	cursor: default;
}
.ui-datepicker-header .ui-datepicker-prev.ui-state-disabled:hover,
.ui-datepicker-header .ui-datepicker-next.ui-state-disabled:hover{background-color: #FFFFFF;}


.ui-datepicker-header .ui-datepicker-prev > span{
	display: block;
	width: 100%;
	height: 2rem;
	background:url("../img/icon_arrow_left_black.svg") center center no-repeat;
	background-size: 0.6rem auto;
}
.ui-datepicker-header .ui-datepicker-next > span{
	display: block;
	width: 100%;
	height: 2rem;
	background:url("../img/icon_arrow_right_black.svg") center center no-repeat;
	background-size: 0.6rem auto;
}


.ui-datepicker-calendar{ margin-top: 0.5rem;}
.ui-datepicker-calendar th,
.ui-datepicker-calendar td{
	width: 3rem;
	height: 3rem;
	padding: 0.2rem 0;
	font-size: 1.4rem;
	color: #333333;
	font-weight: 700;
	text-align: center;
	vertical-align: middle;
}
.ui-datepicker-calendar td a{
	display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
	text-decoration: none;
	width: 3rem;
	height: 3rem;
    color: #5a5a5a;
	border-radius: 50%;
	background: #FFFFFF;
    -webkit-transition: background 0.2s ease;
    -moz-transition: background 0.2s ease;
    -o-transition: background 0.2s ease;
    transition: background 0.2s ease;
}
.ui-datepicker-calendar td a:hover{
	background: #eeeeee;
}

.ui-datepicker-week-end:first-child,
.ui-datepicker-week-end:first-child a{
  color:  #e35555;
}
.ui-datepicker-week-end:last-child,
.ui-datepicker-week-end:last-child a{
  color:  #1e80cc;
}

.ui-datepicker-calendar td.ui-state-disabled{opacity: .3;}

.ui-datepicker-calendar td.ui-datepicker-current-day a{
	background: #e35555;
	color: #FFFFFF;
}
.ui-datepicker-calendar td.ui-datepicker-current-day a:hover{background: #e35555;}

.ui-datepicker-buttonpane{
    display: none;
	width: 100%;
}

.ui-datepicker-buttonpane{
	padding-top: 16px;
}

.ui-datepicker-close{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
	border-radius: 4px;
    background: #333333;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}

.ui-datepicker-close:hover{
	opacity: .6;
}


/**************************************
reservationContentsList
**************************************/
#main .reservationContentsList{
    display: block;
    width: 100%;
    max-width: calc(960px + 8rem);
    padding: 0 4rem;
    margin: 0 auto;
}


#main .reservationContentsList .listHead{
    display: block;
    padding: 2rem 0;
    border-top: 1px solid #CCCCCC;
    border-bottom: 1px solid #CCCCCC;
}

#main .reservationContentsList .listHead > ul{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
#main .reservationContentsList .listHead > ul > li{
    display: block;
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
}
#main .reservationContentsList .listHead > ul > li.startDate{width: 20%;}
#main .reservationContentsList .listHead > ul > li.contentsName{width: 45%;}
#main .reservationContentsList .listHead > ul > li.reservationDate{width: 20%;}
#main .reservationContentsList .listHead > ul > li.status{width: 15%;}



#main .reservationContentsList > ul{
    display: block;
    border-bottom: 1px solid #CCCCCC;
}
#main .reservationContentsList > ul > li{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    padding: 2rem 0;
    font-size: 1.4rem;
    line-height: 1.4;
}
#main .reservationContentsList > ul > li + li{border-top: 1px dotted #CCCCCC;}

#main .reservationContentsList > ul > li > dl{display: block;}
#main .reservationContentsList > ul > li > dl > dt{display: none;}
#main .reservationContentsList > ul > li > dl > dd{display: block;}


#main .reservationContentsList > ul > li > .startDate{width: 20%; text-align: center; font-weight: 700;}
#main .reservationContentsList > ul > li > .contentsName{width: 45%; text-align: left; padding: 0 1rem;}
#main .reservationContentsList > ul > li > .reservationDate{width: 20%; text-align: center;}
#main .reservationContentsList > ul > li > .status{width: 15%; text-align: center; padding: 0 1rem;}


#main .reservationContentsList > ul > li > .status > dd > span{
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    width: 100%;
    height: 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    background: #f1f1f1;
}

#main .reservationContentsList > ul > li > .status > dd > span.yet{}
#main .reservationContentsList > ul > li > .status > dd > span.finished{background: #999999; color: #FFFFFF;}

#main .reservationContentsList > ul > li > .status > dd .btnCancel{
    display: inline-block;
    margin-top: 0.8rem;
    font-size: 1.2rem;
    text-align: center;
    color: #1a69d5;
    border-bottom: 1px solid #1a69d5;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
#main .reservationContentsList > ul > li > .status > dd .btnCancel:hover{opacity: .6;}






/**************************************
overRide
**************************************/
.spView{display: none!important;}

