@charset "UTF-8";

/* ログイン画面 */
h2#tlLogin {
	margin: 80px auto 5px;
	font-size: 2.6rem;
    font-weight: bold;
	width : 700px;
    height: 60px;
    border: 1px solid #c71932;
    border-left:4px solid #c71932;
    border-right:4px solid #c71932;
    text-align: center;
    box-sizing: border-box;
    background: linear-gradient(#fff 40%, #e7efe7);
}
section#loginBox {
	margin: 0 auto;
	width : 700px;
    text-align: center;
}
section#loginBox div {
	margin-bottom: 5px;
	padding: 60px 0 30px;
	width : 100%;
    box-sizing: border-box;
    border: 1px solid #c7c7c7;
/*    border-radius: 8px; */
    overflow: hidden;
}
section#loginBox dl {
	margin: 0 auto 20px;
	display: flex;
    width : 450px;
}
section#loginBox dl dt {
	padding: 4px 0 0 8px;
	font-size: 1.8rem;
    width : 180px;
    text-align: left;
    box-sizing: border-box;
	border-left:solid 5px #c71932;
    border-radius: 4px 0 0 4px;
    line-height: 1.0;
}
section#loginBox dl dd {
    width : 270px;
}
section#loginBox dl dd input {
	box-sizing: border-box;
    padding: 0.2em;
    width:100%;
    border: 1px solid #b6b6b6;
    border-radius: 4px;
}
section#loginBox input#login{
	margin: 30px auto 0;
    padding-bottom: 3px;
	width:180px;
	height: 46px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
	background: #c71932;
    display: flex;
    justify-content: center;
    align-items: center;
	cursor: pointer;
	border: #c71932 3px solid;
    transition: all 0.4s;

    font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;

}
section#loginBox input#login:hover{
/*	color: #c71932;  */
	color: #000;
	background-color: #fff;
}
section#loginBox input[type="submit"] {
	-webkit-appearance: none;
/*    border-radius: 8px; */
}
section#loginBox a:link,
section#loginBox a:visited {
	color: #777;
}
section#loginBox a:active,
section#loginBox a:hover {
/*	color: #c71932; */
	color: #000;
}
section#loginBox a i{
	margin-right: 3px;
}

@media screen and (max-width:700px){
h2#tlLogin {
	margin: 40px auto 5px;
	font-size: 2.6rem;
    font-weight: bold;
	width : 90%;
    height: 60px;
}
section#loginBox {
	width : 100%;
}
section#loginBox div {
    padding: 30px 0;
    border: none;
}
section#loginBox dl {
	margin: 0 auto 20px;
	display: block;
    width : 90%;
}
section#loginBox dl dt {
    margin-bottom: 10px;
    padding: 0 0 0 8px;
    width : 100%;
}
section#loginBox dl dd {
    width : 100%;
}
}

/* トップ画面 */
.wrapperFlex{
	display: flex;
	width: 1060px;
	margin: 0 auto;
	background: rgba(255, 255, 255, 0.9);
}
.wrap_r{
	flex: 1;
	order: 2;
}
.wrap_l{
	width: 280px;
	order: 1;
    background: linear-gradient(#b7b7b7,#ffffff);
}
@media screen and (max-width:768px){
.wrapperFlex{
	display: block;
	width: 100%;
}
.wrap_l{
	width: 100%;
}
.wrap_r{
	width: 100%;
}
}

/* 左メニュー */
.focus a {
	color: #558a5d;
	border-left: 8px solid #0f53ad;
	border-image: linear-gradient(to bottom,#d2475b 0,#e9a3ad 100%);
	border-image-slice: 1;
	background: linear-gradient(90deg, #eabac1 0,#ffffff 90%);
}
.focusSmall a{
	color: #558a5d;
	border-left: 8px solid #0f53ad;
	border-image: linear-gradient(to bottom,#d2475b 0,#e9a3ad 100%);
	border-image-slice: 1;
	background: linear-gradient(90deg, #eabac1 0,#ffffff 90%);
	font-size: 1.4rem;
}
.no_focus a {
	font-size: 1.4rem;
}
.nav_item{
	border-right: solid 1px #c7c7c7;
}
.nav_item li{
	position: relative;
}
.nav_item li a{
	margin: 2px 0;
    padding: 15px 0 15px 7px;
    color: #000000;  
/*    color: #0F53AD; */
	text-decoration: none;
	font-weight: 700;
    background-color:#fff;
	display: block;
	box-sizing: border-box;
	border-left: 8px solid transparent;
    line-height: 1.4;
}
.nav_item li:first-child a{
	margin: 0;
}
.nav_item li a span{
	position: relative;
	left: 0;
	transition-duration: 500ms;
}
.nav_item li a:hover span{
	position: relative;
	left: 7px;
	transition-duration: 500ms;
}
.nav_hidden{
	display: none!important;
}
.nav_item .poster_dl > a{
	background: #7cc4bd;
	color: #fff;
	border-bottom: none;
}
.nav .lang {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 4px;
	width: 10%;
}
.nav .lang li{
	width: 49%;
	text-align: center!important;
}
.nav .lang li a{
	width: 100%;
	background: #fff;
	padding: 10px;
	text-decoration: none;
	color: #0C6193;
	font-weight: bold;
	display: block;
}
.nav .lang li a:hover{
	background: #d4eafc;
	transition-duration: 500ms;
	color: #0B7DC7;
}
.nav div{
	margin: 20px 10px 0;
    padding: 5px 5px 5px 10px;
    background-color: rgba( 255, 255, 255, 0.6 );
    font-size: 1.2rem;
    line-height: 1.5;
}
.nav div p{
	color: #c71932;
	font-weight: bold;
    font-size: 1.4rem;
}
@media screen and (max-width:768px){
.nav_item{
	border-right: none;
}
.nav_item li{
	border-bottom: 1px solid #ddd;
}
.nav_item li:nth-child(1){
	border-top: 1px solid #ddd;
	}
.nav_item li a{
	color: #000;
	margin: 0;
	background-color: rgba(255,255,255,1);
}
.nav{
	padding-bottom: 62px;
	width: 100%;
	position: fixed;
	right: 0;
	top: 60px;
}
#nav_toggle + #nav_menuBtn + .nav{
	height: 0;
	overflow: hidden;
	transition-duration: 500ms;
	opacity: 0;
	z-index: -5;
}
#nav_toggle:checked + #nav_menuBtn + .nav{
	height: 100%;
	transition-duration: 500ms;
	overflow: scroll;
	opacity: 1;
	z-index: 1000;
	background: #fff;
}
#nav_menuBtn{
	display: block;
	width: 40px;
	height: 62px;
	position: fixed;
	top: 0%;
	right: 0;
	z-index: 2000;
}

/*×の挙動*/
#nav_menuBtn span{
	display: block;
	width: 25px;
	height: 2px;
	background-color: #c71932;
	position: fixed;
	top: 29px;
	transition-duration: 500ms;
	opacity: 1;
}
#nav_menuBtn::before{
	display: block;
	content: "";
	width: 25px;
	height: 2px;
	background-color: #c71932;
	position: fixed;
	top:19px;
	transition-duration: 500ms;
}
#nav_menuBtn::after{
	display: block;
	content: "";
	width: 25px;
	height: 2px;
	background-color: #c71932;
	position: fixed;
	top: 39px;
	transition-duration: 500ms;
}
#nav_toggle:checked + #nav_menuBtn span{
	opacity: 0;
	transition-duration: 500ms;
}
#nav_toggle:checked + #nav_menuBtn::before{
	transform: rotate(45deg);
	top: 29px;
}
#nav_toggle:checked + #nav_menuBtn::after{
	transform: rotate(-45deg);
	top: 29px;
}
.nav div{
	margin: 20px 10px 0;
    padding: 0 5px 0 10px;
    background-color: rgba( 255, 255, 255, 1 );
    border-left: 5px solid #c71932;
}
}

/* 右コンテンツ */
section#pageBox {
    margin: 0 0 40px 50px;
	width : 700px;
}
section#pageBox p.lastmsg {
    margin-top: 40px;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
    color: #f00;
}
section#pageBox .option_top {
    margin-top: 40px;
    line-height: 1.35;
}

p#username {
    margin: 0 0 30px 0;
    padding-left: 20px;
    width: 300px;
    border: #e9a3ad 1px solid;
    border-top: none;
    background-color: #f4d1d6; 
    border-radius: 0 0 8px 8px;
    float: right;
    box-sizing: border-box;
}
p#username i {
    margin-right: 10px;
    color: #006DB9;
/*    color: #2E6784; */
}
h6.pagettl{
    clear: both;
    margin-bottom: 30px;
	padding: 1rem 2rem;
    background: linear-gradient(#fff 40%, #DAE3EA);
	color: #333;
	font-size: 2.0rem;
	font-weight: bold;
    border: #c71932 1px solid;
    border-left: 6px solid #c71932;
    border-radius: 10px;
}
.table_two dl{
	display: flex;
}
.table_two dt{
	border-bottom: 1px solid #333;
    padding: 10px 0;
    width: 30%;
	display: flex;
	align-items: center;
    font-weight: bold;
}
.table_two dd{
    padding: 10px 0 10px 20px;
	flex: 1;
	border-bottom: 1px solid #333;
}
.table_two dl:first-child{
	padding-top: 0;
}
.table_two dl:last-child{
	padding-bottom: 0;
    margin-bottom: 60px;
}

h5.subttl{
    margin-bottom: 20px;
	padding: 0.2rem 1rem;
	background: #fff;
	color: #333;
	font-size: 1.8rem;
	font-weight: bold;
    border: #D367A6 1px solid;
    border-left:5px solid #D367A6; /* #66a6d4 */
    border-radius: 7px;
}
.table_two_sub dl{
	display: flex;
}
.table_two_sub dt{
	border-bottom: 1px solid #8ebd95;
    padding: 14px 0;
    width: 30%;
	display: flex;
	align-items: center;
    line-height: 1.4;
}
.table_two_sub dd{
    padding: 14px 0 14px 20px;
	flex: 1;
	border-bottom: 1px solid #8ebd95;
    line-height: 1.4
}
.table_two_sub dl:first-child{
	padding-top: 0;
}
.table_two_sub dl:last-child{
	padding-bottom: 0;
}

@media screen and (max-width:768px){
section#pageBox {
    margin: 0 auto 40px;
	width : 98%;
}
h6.pagettl{
    margin-bottom: 15px;
    padding: 12px;
    font-size:2rem;
}
.table_two dl{
	display: block;
    margin-bottom: 20px;
}
.table_two dt{
	width: 100%;
	padding: 10px;
	background-color: #E8C5CA;  /* #e8f2e9 */
    border-left: 6px solid #c71932; /* #8ebd95 */
    border-bottom: 1px solid #c71932;
    border-radius: 6px 0 0 0;
	font-weight: 700;
    box-sizing:border-box;
}
.table_two dd{
	border-bottom: none;
    padding: 10px 0 10px 20px;
    border-left: 6px solid #ddd;
    border-radius: 0 0 0 6px;
}
.table_two dl:last-child{
    margin-bottom: 40px;
}
h5.subttl{
    margin-bottom: 10px;
	padding: 2px 10px;
}
.table_two_sub dl{
	display: block;
    margin-bottom: 20px;
}
.table_two_sub dt{
	width: 100%;
	padding: 5px 10px;
	background-color: #f4f8f4;
    border-left: 6px solid #b0d1b5;
    border-bottom: 1px solid #b0d1b5;
    border-radius: 6px 0 0 0;
	font-weight: 700;
    box-sizing:border-box;
}
.table_two_sub dd{
	border-bottom: none;
    padding: 5px 0 5px 20px;
    border-left: 6px solid #ddd;
}
}







/* パスワード変更 */
.password_two dl{
	display: flex;
	line-height:1.3;
}
.password_two dt{
	border-bottom: 1px solid #333;
	padding: 12px 0 12px 6px;
	width: 30%;
	display: flex;
	align-items: center;
	background: #efefef;
}
.password_two dt#top{
	border-top: 1px solid #333;
}
.password_two dd{
	padding: 14px 0 14px 20px;
	flex: 1;
	border-bottom: 1px solid #333;
}

.password_two dd input {
	box-sizing: border-box;
    padding: 0.2em;
    border: 1px solid #b6b6b6;
    border-radius: 4px;
}

.password_two dd#top{
	border-top: 1px solid #333;
}


.password_two dl:first-child{
	padding-top: 0;
}
.password_two dl:last-child{
	padding-bottom: 0;
}

@media screen and (max-width:768px){
.password_two dl{
	display: block;
}
.password_two dt{
	width: 100%;
	padding: 10px;
	color: #00418e;
	background-color: #E8C5CA;  /* #e8f2e9; */
	font-weight: 700;
    border-bottom: 1px solid #c71932;
    box-sizing:border-box;
}
.password_two dd{
    border-bottom: 1px solid #c71932;
    padding: 20px 0 40px 20px;
}
.password_two dt#top{
    border-top: 1px solid #c71932;
}
.password_two dd#top{
	border-top: none;
}
}

.passwordNotice {
    display: table;
	margin: 0 auto;
    width: 85%;
    font-size: 1.3rem;
	text-align:left;
    color: #f00;
}
.passwordComplete {
    margin-top: 20px;
    font-size: 1.3em;
	text-align:center;
    color: #333;
}

section#pageBox #btnArea {
    margin-top: 30px;
    width: 100%;
    text-align: center;
/*    display: flex;
    justify-content: center; */
}


/* マイページ左メニューの空白行 */
.nav_item li .space {
	color: #666;
	text-decoration: none;
	font-weight: 700;
	background-color:#fff;
	display: block;
	box-sizing: border-box;
	margin: 2px 0;
	padding: 15px 0 15px 7px;
	border-left: 8px solid transparent;
    
    line-height: 1.4;
}

/* サーバメンテナンス対策 */
.maintenance {
	width:700px;
	margin-left:auto;margin-right:auto;
	margin-top:25px;
	margin-bottom:50px;
	padding:20px 20px 20px 20px;
	background:rgb(255,255,255);
/*	text-align:center; */
}
.top_message {
	font-weight:normal;
	font-size:1.0em;
	line-height:130%;
}





section#formBoxMy {
    margin: 0 0 40px 25px;
	width : 700px;
/*    margin: 0 auto;
	width : 1020px;
    overflow: hidden; */
}
section#formBoxMy h3{
	font-weight: bold;
	font-size: 2.6rem;
	border-left: 8px solid #c71932;
	border-bottom: 1px solid #c71932;
    border-radius: 6px 0 0 6px;
	padding: 0 8px 4px;
	margin: 0 0 20px;
    width: 100%;
    box-sizing: border-box;
}
section#formBoxMy h4{
	font-weight: bold;
	font-size: 1.8rem;
	border-left: 8px solid #66a6d4;
	border-bottom: 1px solid #66a6d4;
    border-radius: 6px 0 0 6px;
	padding: 0 8px 1px;
    margin: 40px 0 15px;
    width: 100%;
    box-sizing: border-box;
}
section#formBoxMy a.maillink:link,
section#formBoxMy a.maillink:visited {
	color: #0f53ad;
}
section#formBoxMy a.maillink:active,
section#formBoxMy a.maillink:hover {
	color: #87a9d6;
}
section#formBoxMy a.textlink:link,
section#formBoxMy a.textlink:visited {
	color: #4f0fad;
    text-decoration: underline;
}
section#formBoxMy a.textlink:active,
section#formBoxMy a.textlink:hover {
	color: #956fce;
    text-decoration: underline;
}
section#formBoxMy p.comment{
	margin: 0 0 10px;
	line-height: 1.3;
}
section#formBoxMy p.commentAccompany{
	margin: 0 0 10px;
    line-height: 1.3;
font-size:0.8em;
    background: #e5f0f8;
width:100%;
}
section#formBoxMy ul.itemize{
	margin-bottom: 20px;
	list-style: none;
}
section#formBoxMy ul.itemize li {
	text-indent: -1em;
	padding-left: 1em;
	font-size: 1.5rem;
	line-height: 1.5
 } 
section#formBoxMy ul.itemize li::before {
	content: '・';
}
section#formBoxMy dl.formCate {
    margin-bottom: 5px;
    display: table;
    width: 100%;
}
section#formBoxMy dl.formCate dt {
    padding-left: 10px;
    width: 180px; /* 210 */
    display: table-cell;
    vertical-align: middle;
/*    background: #e5f0f8; */
    background: #efefef;
    font-weight: nomal;
    line-height: 1.2;
    border-radius: 6px 0 0 6px;
    box-sizing:border-box;
}
section#formBoxMy dl.formCate dt.bold {
    font-weight: bold;
}
section#formBoxMy dl.formCate dd {
    width: 520px; /* 810 */
    display: table-cell;
    vertical-align: middle;
    padding: 0.7% 2%;
    line-height: 1.6;
    box-sizing:border-box;
    border-bottom: 1px solid #eee;
}
section#formBoxMy dl.formCate dd .flexBox {
    display:flex;
}
section#formBoxMy dl.formCate dd .formItem {
    padding:0 10px 0 0;
}
section#formBoxMy dl.formCate dd .formItem p.note {
    font-size: 1.3rem;
    color: #2f4fb0;
}
section#formBoxMy dl.formCate dd .formItem p.noteRed {
    font-size: 1.2rem;
    color: #f00;
}
section#formBoxMy dl.formCate dd .formItem span.stl {
    font-weight: bold;
}
section#formBoxMy dl.formCate dd input {
	box-sizing: border-box;
    padding: 0.2em;
    border: 1px solid #b6b6b6;
    border-radius: 4px;
}
section#formBoxMy dl.formCate dd input.other {
	width: 240px;
}
section#formBoxMy dl.formCate dd input.phone {
	width: 475px;
}
section#formBoxMy dl.formCate dd select.country {
	width: 300px;
}
section#formBoxMy dl.formCate dd select.guest_num {
	width: 100px;
}
section#formBoxMy dl.formCate dd select.guest {  /* Fujita追加 */
	width: 40px;
	height: 32px;
}

section#formBoxMy dl.formCate dd select.month,
section#formBoxMy dl.formCate dd select.date {
	width: 80px;
    height: 35px;
}

section#formBoxMy dl.formCate dd input.upload {
	border: none;
}
section#formBoxMy dl.formCate dd input.ex_short {
	width: 60px;
}
section#formBoxMy dl.formCate dd input.short {
	width: 200px;
}
section#formBoxMy dl.formCate dd input.middle {
	width: 490px;
}
section#formBoxMy dl.formCate dd input.long {
	width: 100%;
}
section#formBoxMy dl.formCate dd p.total {
    padding-top: 5px;
    border-top: 1px dotted #ccc;
    font-size: 1.6rem;
    font-weight: bold;
}
section#formBoxMy dl.formCate dd ul.noteslist {
	list-style: none;
}
section#formBoxMy dl.formCate dd ul.noteslist li {
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.5;
    box-sizing: border-box;
 } 
section#formBoxMy dl.formCate dd ul.noteslist li::before {
    content: '・';
}
section#formBoxMy dl.formCate dd img#CardBrand {
    width: 300px;
}
.itemmg {
    margin-right: 15px;
}
i.fa-angle-double-right {
    margin: 0 5px ;
    font-size: 2.0rem;
}
section#formBoxMy dl.formCate dd dl dd ul li {
    line-height: 1.3;
    padding-bottom: 5px;
}
section#formBoxMy dl.formCate dd dl dd ul li.category {
    font-weight: bold;
}
section#formBoxMy dl.formCate dd dl dd ul li.price {
    font-size: 1.6rem;
}
section#formBoxMy .accom_box {
    margin-bottom: 5px;
    display: flex;
    width: 100%;
}
section#formBoxMy .accom_box p.accom_num {
    width: 20px;
    height: 60px;
    color: #fff;
    line-height: 60px;
    text-align: center;
    background: #666;
    border-radius: 6px 0 0 6px;
}
section#formBoxMy .accom_box div.accom_info {
/*    width: 1000px; */
    box-sizing: border-box;
    padding: 10px;
/*    padding: 20px; */
    border: 1px solid #666;
    border-radius: 0 10px 10px 10px;
}
section#formBoxMy .accom_box .accom_info dl.formCate dt {
    width: 210px;
    box-sizing: border-box;
}
section#formBoxMy .accom_box .accom_info dl.formCate dd {
/*    width: 750px; */
    width: 490px;
    box-sizing: border-box;
}
section#formBoxMy p.lastmsg {
    margin-top: 60px;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
    color: #f00;
}
section#formBoxMy #btnArea {
    margin-top: 30px;
	width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-around;
}
section#formBoxMy #btnArea p a {
	margin: 0 5px;
    padding-bottom: 2px;
	width:180px;
	height: 46px;
	border-radius: 8px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
    background: #c71932;
    border: #c71932 3px solid;
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}
section#formBoxMy #btnArea p a:hover{
	color: #c71932;
	background-color: #fff;
}

.home_second {
    padding: 5px 0px 5px 0px;
    line-height:1.2;
    letter-spacing:0.06em;
}
.home_second ul li {
    list-style: disc;
}

.home_third {
    line-height:1.2;
}




h3.pagettl {
    display: inline-block;
    padding: 14px 0 20px 20px;
    margin: 0 0 30px;
    border-top: solid 2px #000;
    border-bottom: solid 6px #c71932;
    border-right: solid 2px #000;
    position: relative;
    color: #c71932;
	font-size: 2.7rem;
    width: 100%;
    box-sizing: border-box;
    font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.1;
    background: linear-gradient(#fff 20%, #e8e6f0);
}

h3.pagettl:after {
    content: "";
    border-bottom: solid 4px #000;
    border-left: solid 14px #c71932;
    position: absolute;
    top: 2px;
    left: 0;
    right:0;
    width: calc(100% - 12px);
    height: calc(100% - 8px);
}

section#pageBox h4 {
    display: inline-block;
    padding: 0 8px 8px;
    margin: 40px 0 15px;
    border-bottom: solid 2px #c71932;
    position: relative;
	font-size: 2.4rem;
    width: 100%;
    box-sizing: border-box;
    font-family: "Oswald", serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    line-height: 1.1;
}

section#pageBox h4:after {
    content: "";
    border-bottom: solid 2px #000;
    position: absolute;
    top: 2px;
    left: 0;
    right:0;
    /*width: calc(100% - 10px);*/
    height: calc(100% - 5px);
}







