@charset "UTF-8";

* {
	margin: 0;
	padding: 0;
}

html {
	height: 100%;
	font-size: 62.5%;
}
body {
	font-family:"Noto Sans JP","游ゴシック体",YuGothic,"游ゴシック","Yu Gothic","ヒラギノ角ゴ ProN W3",Hiragino Kaku Gothic ProN,Arial,Meiryo,sans-serif;
    font-size: 1.6rem;
    line-height: 2.0;
    font-weight: 400;
    color: #333;
    word-wrap: break-word;
	margin : 0;
	padding : 0;
	-webkit-text-size-adjust: 100%;
}
a { 
	text-decoration : none;
}
a:hover {
	text-decoration : none;
}
img {
	border: 0;
}

/*背景*/
.bg{
	background-image: linear-gradient(to right,#fff 0,#ebebeb 5%,#ebebeb 95%,#fff 100%);
	width: 1160px;
	min-height: 100vh;
	height: 100%;
	position: fixed;
	z-index: -5;
    margin: 0 auto;
    inset: 0;
}

@media screen and (max-width:768px) { 
.bg{
	background-image:none;
}
}

/* 共通 */
#wrapper {
	margin: 0 auto;
	padding: 0;
	background-color: #fff;
	width: 1060px;
	height: 100%;
    min-height: 100vh;
    position: relative;
    border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #c7c7c7;
	border-left-color: #c7c7c7;
}
body > #wrapper {
	height: auto;
}

/* ヘッター */
header {
    padding: 0;
	width : 1060px;
    background-color: #fff;
    border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #006ab8;
    border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #006ab8;
}
header dl{
    margin: 0px auto;
    display: flex;
    width: 1030px;
    height: 108px;
}
header dl dt{
    width: 260px;
    border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #d7d7d7;
}
header dl dt img {
    height: 108px;
    margin-left: 7px;
}
header dl dd{
    width: 770px;
    line-height: 98px;
}
header h1{
    text-align: center;
    margin: 0 auto;
    font-family: "Times New Roman";
    font-size: 3.5rem
}

@media screen and (max-width:768px) { 
#wrapper {
	width: 100%;
    border:none;
}
header{
    width: 100%;
}
header dl{
    margin: 0;
    width: 100%;
    height: 60px;
}
header dl dt{
    width: 140px;
}
header dl dt img {
    margin-left: 8px;
    width: 120px;
    height: auto;
}
header dl dd{
   width: 200px;
}
header h1{
    text-align: left;
    margin: 7px 0 0 10px;
    font-size: 1.9rem;
    line-height: 1.2;
}
}

@media screen and (max-width:360px) {
header dl{
    height: 54px;
}
header dl dt{
    width: 130px;
}
header dl dt img {
    margin-left: 8px;
    width: 110px;
}
header dl dd{
   width: 170px;
}
header h1{
    font-size: 1.7rem;
}
}
/* マージン調整 */
.mgBtm20 {
    margin-bottom: 20px;
}
.mgBtm30 {
    margin-bottom: 30px;
}
.mgLft15 {
    margin-left: 15px;
}
.mgLft30 {
    margin-left: 30px;
}
.mgRgt15 {
    margin-right: 15px;
}
.mgRgt30 {
    margin-right: 30px;
}

/* 頭出し */
#pagetop {
	position: fixed;
	bottom: -110px;
	right: 20px;
	z-index: 999;
    transition: 0.5s;
    background-color: #66a6d4;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
    border-radius: 8px;
}

#pagetop span{
	content: "";
	display: block;
	width: 14px;
	height: 14px;
	border-top: solid 5px #fff;
	border-right: solid 5px #fff;
	transform: rotate(-45deg);
	position: relative;
	top: 5px;
}
#pagetop:hover {
    opacity: 0.7;
}
@media screen and (max-width:768px){
#pagetop {
	position: fixed;
	bottom: -70px;
	right: 18px;
	z-index: 999;
    transition: 0.5s;
    background-color: #888;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 50px;
	height: 50px;
}
#pagetop span{
	content: "";
	display: block;
	width: 15px;
	height: 15px;
	border-top: solid 4px #fff;
	border-right: solid 4px #fff;
	transform: rotate(-45deg);
	position: relative;
	top: 3px;
}
}

/* フッター */
footer {
	margin: 0;
	width : 100%;
    position: sticky;
    top: 100vh;
    border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #1e7b2c;
}
footer p#copyright {
    margin: 0;
    padding:1.2em .7em;
    text-align: center;
	box-sizing:border-box;
	width : 100%;
    background-color: #fff;
    color: #999;
    font-size: 1.4rem;
    line-height: 1.3;
}
@media screen and (max-width:480px) {
footer p#copyright {
    font-size: 1.2rem;
}
}

main {
   margin-bottom: 100px;
}
@media screen and (max-width:768px){
main {
   margin-bottom: 60px;
}
}

/* SP版のみ改行 */
br.sp_br{
   display: none;
}
@media screen and (max-width:768px) {
   br.sp_br {
      display: inherit;
   }
}

/* PC版のみ改行 */
br.pc_br{
   display: inherit;
}
@media screen and (max-width:768px) {
   br.pc_br {
      display: none;
   }
}

section#stepBox {
	margin: 0 0 20px;
	width : 100%;
    overflow: hidden;
    background: linear-gradient(#e7ebef, #fff);
    text-align: center;
}
section#stepBox ul{
    margin: 0 20px 0 0;
    float: right;
    display: table;
}
section#stepBox ul li{
    padding: 20px 12px 10px;
    font-size: 1.7rem;
    color: #ccc;
    line-height: 1.0;
    display: table-cell;
    vertical-align: middle;
}
section#stepBox ul li.current {
    background-image: url("../images/bg_arrow.png") ;
    background-repeat: no-repeat;
    background-position: center top;
    color: #006ab8;
    font-weight: bold;
}
section#stepBox ul li.visited {
    color: #7fb4db;
}
section#stepBox ul li i{
	margin-right: 3px;
}
@media screen and (max-width:768px){
section#stepBox ul {
    margin: 0 auto 0;
	float: none;
}
section#stepBox ul li{
    padding: 20px 6px 10px;
    font-size: 1.4rem;
}
}
@media screen and (max-width:360px){

section#stepBox ul li{
    font-size: 1.3rem;
}
}

section#formBox {
    margin: 0 auto;
	width : 1020px;
    overflow: hidden;
}
section#formBox h3{
	font-weight: bold;
	font-size: 2.6rem;
	border-left: 8px solid #006ab8;
	border-bottom: 1px solid #006ab8;
    border-radius: 6px 0 0 6px;
	padding: 0 8px 4px;
	margin: 0 0 20px;
    width: 100%;
    box-sizing: border-box;
}
section#formBox 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#formBox a.maillink:link,
section#formBox a.maillink:visited {
	color: #0f53ad;
}
section#formBox a.maillink:active,
section#formBox a.maillink:hover {
	color: #87a9d6;
}
section#formBox a.textlink:link,
section#formBox a.textlink:visited {
	color: #4f0fad;
    text-decoration: underline;
}
section#formBox a.textlink:active,
section#formBox a.textlink:hover {
	color: #956fce;
    text-decoration: underline;
}
section#formBox p.comment{
	margin: 0 0 15px;
    line-height: 1.35;
}
.comment {
    line-height: 1.25;
    margin-bottom: 3px;
}
.mainConference {
    line-height: 1.25;
    text-indent: -13rem;
    padding-left: 13rem;
}

section#formBox ul.itemize{
	margin-bottom: 20px;
	list-style: none;
}
section#formBox ul.itemize li {
	text-indent: -1em;
	padding-left: 1em;
	font-size: 1.5rem;
	line-height: 1.5
 } 
section#formBox ul.itemize li::before {
	content: '・';
}
section#formBox dl.formCate {
    margin-bottom: 5px;
    display: table;
    width: 100%;
}
section#formBox dl.formCate dt {
    padding-left: 10px;
    width: 210px;
    display: table-cell;
    vertical-align: middle;
    background: #e5f0f8;
    font-weight: nomal;
    line-height: 1.2;
    border-radius: 6px 0 0 6px;
    box-sizing:border-box;
}
section#formBox dl.formCate dt.bold {
    font-weight: bold;
}
section#formBox dl.formCate dd {
    width: 810px;
    display: table-cell;
    vertical-align: middle;
    padding: 0.7% 2%;
    line-height: 1.6;
    box-sizing:border-box;
    border-bottom: 1px solid #eee;
}
section#formBox dl.formCate dd .flexBox {
    display:flex;
}
section#formBox dl.formCate dd .formItem {
    padding:0 10px 0 0;
}
section#formBox dl.formCate dd .formItem p.note {
    font-size: 1.2rem;
    color: #2f4fb0;
}
section#formBox dl.formCate dd .formItem p.noteRed {
    font-size: 1.2rem;
    color: #f00;
}
section#formBox dl.formCate dd .formItem span.stl {
    font-weight: bold;
}
section#formBox dl.formCate dd input {
	box-sizing: border-box;
    padding: 0.2em;
    border: 1px solid #b6b6b6;
    border-radius: 4px;
}
section#formBox dl.formCate dd input.other {
	width: 240px;
}
section#formBox dl.formCate dd input.phone {
	width: 475px;
}
section#formBox dl.formCate dd select.country {
	width: 300px;
}
section#formBox dl.formCate dd select.guest_num {
	width: 100px;
}
section#formBox dl.formCate dd select.month,
section#formBox dl.formCate dd select.date {
	width: 80px;
    height: 35px;
}

section#formBox dl.formCate dd input.upload {
	border: none;
}
section#formBox dl.formCate dd input.ex_short {
	width: 60px;
}
section#formBox dl.formCate dd input.short {
	width: 200px;
}
section#formBox dl.formCate dd input.middle {
	width: 490px;
}
section#formBox dl.formCate dd input.long {
	width: 100%;
}
section#formBox dl.formCate dd p.total {
    padding-top: 5px;
    border-top: 1px dotted #ccc;
    font-size: 1.6rem;
    font-weight: bold;
}
section#formBox dl.formCate dd ul.noteslist {
	list-style: none;
}
section#formBox dl.formCate dd ul.noteslist li {
	text-indent: -1em;
	padding-left: 1em;
	line-height: 1.5;
    box-sizing: border-box;
 } 
section#formBox dl.formCate dd ul.noteslist li::before {
    content: '・';
}
section#formBox dl.formCate dd img#CardBrand {
    width: 300px;
}
.itemmg {
    margin-right: 15px;
}
i.fa-angle-double-right {
    margin: 0 5px ;
    font-size: 2.0rem;
}
section#formBox dl.formCate dd dl dd ul li {
    line-height: 1.3;
    padding-bottom: 5px;
}
section#formBox dl.formCate dd dl dd ul li.category {
    font-weight: bold;
}
section#formBox dl.formCate dd dl dd ul li.price {
    font-size: 1.6rem;
}
section#formBox .accom_box {
    margin-bottom: 5px;
    display: flex;
    width: 100%;
}
section#formBox .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#formBox .accom_box div.accom_info {
    width: 1000px;
    box-sizing: border-box;
    padding: 20px;
    border: 1px solid #666;
    border-radius: 0 10px 10px 10px;
}
section#formBox .accom_box .accom_info dl.formCate dt {
    width: 210px;
    box-sizing: border-box;
}
section#formBox .accom_box .accom_info dl.formCate dd {
    width: 750px;
    box-sizing: border-box;
}
section#formBox p.lastmsg {
    margin-top: 60px;
    text-align: center;
    font-weight: bold;
    line-height: 1.4;
    color: #f00;
}
section#formBox #btnArea {
    margin-top: 30px;
	width: 100%;
    text-align: center;
    display: flex;
    justify-content: space-around;
}
section#formBox #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: #006ab8;
    border: #006ab8 3px solid;
    transition: all 0.4s;
    display: flex;
    justify-content: center;
    align-items: center;
}
section#formBox #btnArea p a:hover{
	color: #006ab8;
	background-color: #fff;
}
@media screen and (max-width:768px){
section#formBox {
	width : 100%;
}
section#formBox h3{
	margin: 0 auto 20px;
    width: 98%;
}
section#formBox h4{
    margin: 30px auto 15px;
    width: 98%;
    line-height: 1.4;
}
section#formBox p.comment{
	margin: 0 auto 15px;
    width: 96%;
    line-height;1.35;
}
section#formBox dl.formCate {
	display: block;
}
section#formBox dl.formCate dt {
	margin-bottom: 0;
    padding: 7px 0 7px 5px;
	width : 100%;
    display: block;
    font-size: 1.6rem;
    border-bottom: 1px solid #99c3e3;
    border-radius: 0;
}
section#formBox dl.formCate dd {
	margin: 0 auto 20px;
    padding: 10px 0 20px;
	width: 95%;
    display: block;
    border: none;
}
section#formBox dl.formCate dd .flexBox {
    display: block;
}
section#formBox dl.formCate dd input.phone {
	width: 96%;
}
section#formBox dl.formCate dd input.middle {
	width: 100%;
}
section#formBox dl.formCate dd input.long {
	width: 100%;
}
section#formBox dl.formCate dd dl dt {
	padding: 7px 5px 7px 0;
    border: none;
}
section#formBox .accom_box {
    margin: 0 auto 5px;
    display: inherit;
    width: 96%;
}
section#formBox .accom_box p.accom_num {
    width: 100%;
    height: 26px;
    line-height: 26px;
    border-radius: 6px 6px 0 0;
}
section#formBox .accom_box div.accom_info {
    padding: 20px 0;
    width: 100%;
    border-radius: 0 0 10px 10px;
}
section#formBox .accom_box .accom_info dl.formCate dt {
     width: 100%;
}
section#formBox .accom_box .accom_info dl.formCate dd {
     width: 95%;
}
section#formBox p.lastmsg {
     margin-top: 40px;
}
}
@media screen and (max-width:480px) {
section#formBox dl.formCate dd input.long {
    width: 330px;
}
section#formBox #btnArea p a {
	width:160px;
}
}
@media screen and (max-width:360px) {
section#formBox dl.formCate dd input.other {
	width: 200px;
}
section#formBox dl.formCate dd input.long {
	width: 300px;
}
section#formBox #btnArea p a {
	width:140px;
}
}

/* 必須マーク */
.mustmark{
	margin-left: 4px;
	font-size: 1.8rem;
	color: #f00;
}




/* 藤田追加 */
.error {
	font-size:small;
	color:#fff;
	width:91%;
	background: #ff2929;
	border-radius: 4px;
	padding-left:4px;
}

/*inputボタンの設定
---------------------------------------------------------------------------*/
input[type="submit"],
input[type="button"],
input[type="reset"] {

	margin: 0 5px;
	padding-bottom: 2px;
	width:160px;
	height: 46px;
	border-radius: 8px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
	background: #006ab8; /* 1e7b2c */
	border: #006ab8 3px solid;
	transition: all 0.4s;
/*    display: flex; */
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

/*ボタンのマウスオン時の設定*/
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover {
	color: #006ab8; /* 1e7b2c */
	background-color: #fff;
}

input[type="button"]#settlementError {
	margin: 0 5px;
	padding-bottom: 2px;
	width:200px;
	height: 46px;
	border-radius: 8px;
	font-size: 1.8rem;
	font-weight: bold;
	color: #fff;
	background: #006ab8; /* 1e7b2c */
	border: #006ab8 3px solid;
	transition: all 0.4s;
/*    display: flex; */
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

input[type="button"]#clear_abstract {
	margin: 0 5px;
	padding-bottom: 2px;
	width: 90px;
	height: 32px;
	border-radius: 8px;
	font-size: 1.3rem;
	background: #f5f5f5;
	border: 1px solid #004471;
	color: #333;
	font-family: inherit;
	-webkit-appearance: none;
}
input[type="button"]#clear_abstract1,
input[type="button"]#clear_abstract2,
input[type="button"]#clear_abstract3,
input[type="button"]#clear_abstract4,
input[type="button"]#clear_abstract5 {
	margin: 0 2px;
	padding-bottom: 2px;
	width: 68px;
	height: 26px;
	border-radius: 8px;
	font-size: 1.3rem;
	background: #f5f5f5;
	border: 1px solid #004471;
	color: #333;
	font-family: inherit;
	-webkit-appearance: none;
}

/* ボタンのマウスオン時の設定 */
input[type="button"]:hover {
	color: #006ab8; /* 1e7b2c */
	background-color: #fff;
}


/* 完了画面, エラー画面 */
.completeBox ,
.errorBox {
	text-align:left;
	width:720px;
	margin-left:auto;margin-right:auto;
	margin-top:5px;
	margin-bottom:60px;
	background-color: #F5F5F5;
	padding: 12px 0px 10px 6px;
        line-height:1.5;

        filter: alpha(opacity=85);
        -moz-opacity:0.85;
        opacity:0.85;
	border-radius: 5px;
}

section#formBox .completeBox dl.formCate dt {
	width:210px;
}
section#formBox .completeBox dl.formCate dd {
	width:510px;
}

@media screen and (max-width:768px) {
.completeBox ,
.errorBox {
	width:100%; 
}
section#formBox .completeBox dl.formCate dt {
	margin-bottom: 0;
	padding: 7px 0 7px 5px;
	width : 100%;
	display: block;
	font-size: 1.6rem;
	border-bottom: 1px solid #a5caab;
	border-radius: 0;
}
section#formBox .completeBox dl.formCate dd {
	margin: 0 auto 20px;
	padding: 10px 0 20px;
	width: 95%;
	display: block;
	border: none;
}
}

.messageLarge {
	font-weight: bold;
	font-size: 2.6rem;
	padding: 0 8px 4px;
	margin: 0 0 20px;
}
.messageNormal {
	font-size: 1.0em;
	padding: 0 8px 4px;
	margin: 0 0 20px;
}
.meaageCaution {
	font-weight: bold;
	color: #ff0000;
	font-size: 1.1em;
}
.messageNormal {
	font-size: 1.1em;
}
.authError {
	font-weight: bold;
	color: #ff0000;
	font-size: 1.2em;
}
.accommodationMessage {
	font-size: 1.0em;
	line-height:1.2;
}
.onedayMessage {
	font-size: 0.8em;
	font-weight: bold;
}

/* 確認画面 */
section#formBox .Confirmation dl.formCate dt {
	background-color: #CCD6EA;
}

/* 色情報 */
.red    { color:#ff0000; }
.blue   { color:#0000ff; }
.orange { color:#ff6600; }
.pink   { color:#ff0066; }
.black  { color:#ffffff; }
.green  { color:#32C102; }

textarea {
	max-width: 90%;
	padding: 4px 4px;
	font-size: 100%;
	font-family: inherit;
}
p.note {
    font-size: 1.2rem;
    color: #1571b1;
}
#noteOrange {
    font-size: 1.6rem;
    line-height:1.35;
    color: #ff6600;
}

.underConstruction {
	text-align: center;
	font-weight: bold;
}
.abstractPrice {
    padding: 10px 10px 5px 10px;
    line-height:1.2;
    letter-spacing:0.06em;
}
section#formBox dl.formCate dt.Narrow,
section#formBox dl.formCate dd.Narrow {
    padding: 1px 0 1px 10px;
        line-height:1.35;
}
@media screen and (max-width:768px){
section#formBox dl.formCate dd.Narrow {
    padding: 7px 0 7px 5px;
        line-height:1.35;
}
}


