﻿@charset "UTF-8";

html {
    height: 100%;
    min-height: 650px;
}
body {
    margin: 0;
    overflow: hidden;
    font-size: 16px;
    font-weight: normal;
    font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
    color: #000;
    line-height: 1.7;
    letter-spacing: 1px;
    position: relative;
    min-height: 100%;
}

#page{
	flex: 1;
}
#page .btn_submit{
	display: -webkit-flex;
	display: flex;
}
a {
	outline: none;
	color: #000;
	text-decoration: none;
	-webkit-transition: .3s;
	transition: .3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a:hover {
	color: #000;
}
img{
	max-width: 100%;
	height: auto;
	-webkit-transition: .3s;
	transition: .3s;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
a img:hover{
	opacity: .8;
}
h1{
	font-weight: normal;
	margin: 0;
}
h2{
	font-weight: normal;
	margin: 0;
}
h3,h4,h5{
	font-weight: normal;
	margin: 0;
}
p{
	margin-bottom: 20px;
}
table{
	width: 100%;
}
th{
	display: block;
	padding: 5px 0 0;
	border-bottom: #000 solid 1px;
	text-align: left;
}
td{
	display: block;
	padding: 5px 0 10px;
}
input,
textarea{
	width: 100%;
}
textarea{
	height: 300px;
}
.sp_none{
	display: none;
}
.font_en{
	font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}
.btn_link{
	display: block;
	text-align: center;
	/*background: #606060;*/
	/*border: #606060 solid 1px;*/
    background: var(--accent-color);
    	border: var(--accent-color) solid 1px;
	padding: 8px 0;
	width: 45%;
	max-width: 300px;
	margin: 10px auto;
	outline: none;
	color: #fff;
	transition: .3s;
	-webkit-transition: .3s;
}
.btn_link:hover{
	/*color: #606060;*/
    color: var(--accent-color);
	background: #fff;
}
.wrapper{
	max-width: 1000px;
	width: 95%;
	margin: 0 auto;
}
.inner_wrap{
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
}
.accordion dd{
	display: none;
}

#site_header{
	/*background: #aba9a9;*/
    background: var(--header-color);
	padding: 10px;
	position: relative;
}
#header_logo{
	color: #fff;
	font-size: 20px;
	letter-spacing: 0;
	
}

#header_logo img{
	max-height: 3rem;
}
@media screen and (min-width: 768px) {
    #header_logo img{
	    max-height: 5rem;
    }
}


#login_logo{
    max-height: 7rem;
    margin-top: 5px;
}

@media screen and (min-width: 768px) {
    #login_logo{
        max-height: 10rem;
        margin-top: 15px;
    }
}

#main_navigation .menu_icon{
	position: absolute;
	top: -35px;
	right: -30px;
	width: 100px;
	height: 100px;
	/*border-radius: 50%;
	background: #000;*/
	text-align: center;
	z-index: 9999;
}
#main_navigation .menu_icon span{
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	position: absolute;
	left: 20px;
}
#main_navigation .menu_icon span.border{
	width: 34px;
	height: 3px;
	background-color: #fff;
	border-radius: 3px;
}
#main_navigation .menu_icon span.border:nth-of-type(1) {
	bottom: 45px;
}
#main_navigation .menu_icon span.border:nth-of-type(2) {
	bottom: 35px;
	opacity: 1;
}
#main_navigation .menu_icon span.border:nth-of-type(3) {
	bottom: 25px;
}
#main_navigation .menu_icon.open span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}
#main_navigation .menu_icon.open span:nth-of-type(2) {
	opacity: 0;
}
#main_navigation .menu_icon.open span:nth-of-type(3) {
	-webkit-transform: translateY(-10px) rotate(45deg);
	transform: translateY(-10px) rotate(45deg);
}
#main_navigation .menu_icon.open span.border{
	background-color: #000;
}
#main_navigation .nav_wrap{
	display: none;
	width: 100%;
	background: rgba(255,255,255,.95);
	z-index: 999;
	position: absolute;
	top: 0;
	left: 0;
    padding-bottom: 150px;
	box-shadow: 0 1px 5px rgba(0,0,0,.4);
}
#main_navigation .nav_wrap>ul{
	padding-top: 50px;
}
#main_navigation .nav_wrap>ul li:not(:last-child){
	border-bottom: #000 solid 1px;
}
#main_navigation .nav_wrap>ul li a,
#main_navigation .nav_wrap>ul li span{
	display: block;
	padding: 10px;
	position: relative;
}
#main_navigation .nav_wrap ul li a i,
#main_navigation .nav_wrap>ul li span i{
	position: absolute;
	top: 50%;
	margin-top: -10px;
	font-size: 20px;
	right: 10px;
}
#main_navigation .nav_wrap>ul li dt.open i::before{
	content: "\f106";
}
#main_navigation .nav_child .nav_child__head{
	display: none;
}
.nav_child dd{
	/*background: #f9fdea;*/
}
.nav_child dd li{
	border-bottom: 0 !important;
	border-top: #000 dotted 1px;
}
#main_navigation .nav_wrap #nav_inner{
	bottom: 10px;
	left: 50%;
	width: 100%;
}
#main_navigation .nav_wrap #nav_inner li#btn_logout button{
	display: block;
	width: 90%;
	max-width: 300px;
	margin: 0 auto 10px;
	/*background: #606060;*/
    background:var(--accent-color);
	color: #fff;
	border: 0;
	outline: 0;
	padding: 10px;	
}
#main_navigation .nav_wrap #nav_inner li#select_lang{
	margin-bottom: 20px;
}
#main_navigation .nav_wrap #nav_inner li#select_lang .goog-te-gadget-simple{
	width: 90%;
	max-width: 300px;
	margin: 0 auto;
	display: block;
	padding: 10px;
}
#site_footer{	
	color: #fff;
	/*background: #aba9a9;*/
    background: var(--footer-color);
	padding: 10px;
}
#footer_logo{
	display: block;
	width: 50%;
	max-width: 200px;
	margin: 0 auto 10px;
}
#site_footer .footer_copy{
	font-size: 12px;
	margin: 0;
	text-align: center;
}


.page_container{
	padding: 60px 0 100px;
}
#page_header{
	text-align: center;
	margin-bottom: 40px;
}
#page_header .page_title{
	position: relative;
	margin-bottom: 30px;
	font-size: 35px;
}
/*#page_header .page_title::after{
	content: '';
	background: #000;
	width: 100px;
	height: 2px;
	position: absolute;
	bottom: -5px;
	left: 50%;
	margin-left: -50px;
}*/

.form_box th span.icon_reqired{
	color: #fff;
	float: right;
	font-size: 13px;
	background: #a40000;
	padding: 1px 10px;
    border-radius: 5px;
}
.form_box td span.txt{
	font-size: 12px;
	display: block;
	/*color: #606060;*/
    color:var(--accent-color);
}


/* Login
***************************** */

.bg_container #page{
	/*background: #e5e5e5;*/
    background: var(--back-color);
	/*background: url('../images/bg.jpg') no-repeat center center;*/
	background-size: cover;
	background-attachment: fixed;
}
#page_login,
#page_entry{
	padding: 80px 0;
}
#login_form{
	background: rgba(255,255,255,.8);
	padding: 10px 20px 30px;
	box-shadow: 0 0 5px rgba(0,0,0,.5);
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
}
#login_form h1{
	text-align: center;
	font-size: 30px;
	margin-bottom: 20px;
}
#login_form form{
	max-width: 500px;
	margin: 0 auto;
}
#login_form table{
	margin-bottom: 30px;
}
#login_form .btn_submit{
	font-size: 20px;
}




/* Entry
***************************** */

#page_entry h1{
	position: relative;
}
/*#page_entry h1::after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -60px;
	width: 120px;
	height: 2px;
	background: #000;
}*/
#page_entry h2{
	font-size: 20px;
	padding-left: 15px;
	line-height: 1;
	border-left: #000 solid 5px;
	margin: 30px 0 20px;
}

#entry3 #page_entry form{
	max-width: 700px;
}
#plan_select select#plan_choice{
	padding: 3px;
	width: 200px;
}
#plan_select{
	margin-bottom: 50px;
}

#list_table{
	overflow-x: auto;
	margin-top: 20px;
}
#list_table table{
	min-width: 500px;
}
#list_table table tr:nth-child(2n+1){
	/*background: #f9fdea;*/
}
#list_table th,
#list_table td{
	border: #aaa solid 1px;
	display: table-cell;
	padding: 10px;
	text-align: center;
    vertical-align: middle;
}
#list_table .list_head td{
	/*background: #606060;*/
    background:var(--accent-color);
	color: #fff;
}
#list_table td.list_price{
	text-align: right;
}

#list_table td select{
	width: 100%;
}
#detail_agent th,
#detail_agent td{
	width: 33.33%;
	vertical-align: middle;
}
/*
#detail_client{
	display: none;
}*/
#detail_client th,
#detail_client td{
	vertical-align: middle;
}
#detail_client select{
	padding: 5px;
}
#entry_confirm table{
	margin-bottom: 50px !important;
}
#entry_confirm th,
#entry_confirm td{
	border: #aaa solid 1px;
	background: #fff;
}
#entry_confirm th{
	background: #aaa;
	color: #fff;
	padding: 5px 10px 0;
}
#entry_confirm td{
	padding: 5px 10px 30px;
}
.btn_back{
	/*background: #666;
	border: #666 solid 1px;*/
    border: solid 1px var(--accent-color);
    background:var(--accent-color);
}
.btn_back:hover{
	background: #fff;
	/*color: #666;*/
    color:var(--accent-color);
}
.plan_submit{
	display: block;
	background: #ffd700;
	cursor: pointer;
	padding: 10px;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0,0,0,.4);
	margin: 5px;
	font-weight: bold;
	letter-spacing: 3px;
}
.plan_submit:hover{
	box-shadow: 0 0 7px rgba(0,0,0,.7);
}
.plan_submit input[type="radio"]{
	width: 30px;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
	margin-right: 5px;
}



/* Inquiry
***************************** */

#entry_form{
	margin: 0 auto 50px;
}

#thanks_mess p{
	margin-bottom: 30px;
}





/* Account
***************************** */

#my_profile h2{
	font-size: 20px;
	border-left: #000 solid 5px;
	margin-bottom: 30px;
	padding-left: 15px;
	line-height: 1;
}
#my_profile .form_box{
	margin-bottom: 50px;
}





/* History
***************************** */




/* Information
***************************** */

#info_archive ul{
	border-top: #000 dotted 1px;
	margin-bottom: 50px;
}
#info_archive li{
	border-bottom: #000 dotted 1px;
}
#info_archive li a{
	display: block;
	padding: 10px;
}
#info_archive li a p{
	margin-bottom: 0;
}
#info_archive li a .posted_date{
	font-size: 14px;
	margin-bottom: 5px;
}


#posted_content{
	padding-bottom: 70px;
	border-bottom: #000 dotted 1px;
	margin-bottom: 30px;
}
#content_header{
	margin: 70px 0 50px;
}
#content_header h1{
	font-size: 22px;
	line-height: 1.5;
	margin-bottom: 10px;
}
#content_header .posted_date{
	font-size: 13px;
	/*background: #f9fdea;*/
	padding: 5px 10px;
}
#posted_content p a{
	text-decoration: underline;
}
#posted_content p a:hover{
	text-decoration: none;
}
#content_header .form_box_schedule{
	font-size: 13px;
	padding: 5px 10px;
}
#content_header .form_box_schedule td a{
	text-decoration: underline;
}
#content_header .form_box_schedule td a:hover{
	text-decoration: none;
}
#page_nav{
	text-align: center;
	position: relative;
	height: 150px;
}
#page_nav a{
	padding: 0 10px;
	position: absolute;
	top: 30px;
}
#page_nav a i{
	font-size: 30px;
	vertical-align: middle;
}
#page_nav .nav_next{
	left: 10px;
}
#page_nav .nav_prev{
	right: 10px;
}
#page_nav .nav_arc{
	left: 50%;
	margin-left: -80px;
	width: 160px;
	top: 0;
}
#page_nav .nav_arc:hover{
	text-decoration: underline;
}




/* RWD
***************************** */

@media screen and (min-width: 768px){
	body{
		min-width: 1200px;
		overflow: hidden;
	}
	th{
		display: table-cell;
		padding: 15px 10px;
		border-bottom: 0;
		width: 250px;
	}
	td{
		display: table-cell;
		padding: 15px 10px;
	}
	.sp_none{
		display: block;
	}
	.pc_none{
		display: none;
	}
	#site_header{
		/*background: url('../images/header_bg.jpg') no-repeat center center;*/
		background-size: cover;
		padding-top: 20px;
	}
	#header_logo{
		font-size: 40px;
	}
	#main_navigation .menu_icon,
	.nav_child dt{
		display: none;
	}
	#main_navigation .nav_wrap,
	.nav_child dd{
		display: block;
		background: none;
		position: relative;
		height: auto;
		padding: 0;
		box-shadow: none;
	}
	#main_navigation .nav_wrap>ul{
		padding-top: 10px;
		display: -webkit-flex;
		display: flex;
		-webkit-justify-content: flex-end;
		justify-content: flex-end;
	}
	#main_navigation .nav_wrap>ul li{
		border: 0 !important;
		/*width: 20%; */
		text-align: center;
		margin-left: 40px;
	}
	#main_navigation .nav_wrap>ul li a,
	#main_navigation .nav_wrap>ul li span{
		color: #fff;
		display: inline-block;
		padding: 10px 5px;
		position: relative;
		cursor: pointer;
	}
	#main_navigation .nav_wrap>ul li a::after,
	#main_navigation .nav_wrap>ul li span::after{
		content: '';
		background: #fff;
		width: 100%;
		height: 2px;
		position: absolute;
		bottom: -5px;
		left: 0;
		opacity: 0;
		-webkit-transition: .3s;
		transition: .3s;
	}
	#main_navigation .nav_wrap>ul li a:hover::after,
	#main_navigation .nav_wrap>ul li.nav_current a::after,
	#main_navigation .nav_wrap>ul li span:hover::after,
	#main_navigation .nav_wrap>ul li.nav_current .nav_child__head::after{
		bottom: 5px;
		opacity: 1;
	}
	#main_navigation .nav_wrap ul li a i,
	#main_navigation .nav_wrap>ul li span i{
		display: none;
	}
	#main_navigation .nav_child .nav_child__head{
		display: block;
	}
	.nav_child dd{
		display: block;
		position: relative;
	}
	.nav_child ul{
		display: none;
		position: absolute;
		top: 45px;
		left: 0;
		/*background: #aba9a9;*/
        background: var(--footer-color);
		width: 200px;
	}
	.nav_child dd:hover ul{
		display: block;
	}
	.nav_child ul li{
		margin: 0 !important;
		text-align: left !important;
	}
	.nav_child ul li a{
		padding: 15px !important;
		display: block !important;
	}
	.nav_child ul li a:hover{
		/*background: #e5e5e5;*/
        background: var(--back-color);
		color: #000 !important;
	}
	.nav_child ul li a::after{
		content: none !important;
	}
	#main_navigation .nav_wrap #nav_inner{
		top: -50px;
		right: 0;
		left: auto;
		bottom: auto;
		transform: none;
		width: 300px;
	}
	#main_navigation .nav_wrap #nav_inner ul{
		display: -webkit-flex;
		display: flex;
	}
	#main_navigation .nav_wrap #nav_inner ul li{
		width: 50%;
	}
	#main_navigation .nav_wrap #nav_inner li#btn_logout button{
		background: #000;
		color: #fff;
		padding: 0 10px;
		margin: 0 auto;
		font-size: 15px;
		-webkit-transition: .3s;
		transition: .3s;
	}
	#main_navigation .nav_wrap #nav_inner li#btn_logout button:hover{
		/*background: #606060;*/
        background:var(--accent-color);
	}
	#main_navigation .nav_wrap #nav_inner li#select_lang{
		margin: 0;
	}
	#main_navigation .nav_wrap #nav_inner li#select_lang .goog-te-gadget-simple{
		padding: 0;
		width: auto;
		display: inline-block;
	}
	#footer_logo{
		margin: 0;
		float: left;
	}
	#site_footer .footer_copy{
		text-align: right;
		padding-top: 30px;
	}
	.form_box th{
		vertical-align: middle;
	}
	#page_header{
		margin-bottom: 60px;
	}
	#page_header .page_title{
		font-size: 45px;
	}
	#page_login{
		padding: 0;
	}
	#login_form{
		padding: 30px 20px 50px;
		position: absolute;
		top: 50%;
		left: 50%;
		-webkit-transform: translate(-50%,-50%);
		transform: translate(-50%,-50%);
	}
	#page_entry{
		padding: 80px 0 160px;
	}
	#entry3 #login_form{
		position: static;
		-webkit-transform: none;
		transform: none;
	}
	#login_form h1{
		margin-bottom: 50px;
		font-size: 40px;
	}
	#login_form th{
		width: 140px;
	}
	#entry3 #login_form table th{
		width: 160px;
	}
	#thanks_mess{
		text-align: center;
	}
	#info_archive li a{
		display: -webkit-flex;
		display: flex;
		padding: 15px 10px;
	}
	#info_archive li a:hover{
		/*background: #f9fdea;*/
	}
	#info_archive li a .posted_date{
		width: 200px;
		margin: 0;
		display: block;
	}
	#info_archive li a .posted_title{
		width: 600px;
	}
	#content_header h1{
		font-size: 25px;
	}
    #content_header .form_box_schedule th{
	width:10%;
    }
	#page_nav a{
		top: 0;
	}
	#entry_confirm th,
	#entry_confirm td{
		padding: 15px 10px;
	}
	#entry_confirm th{
		border-bottom: #fff solid 1px;;
	}
	#entry_confirm .btn_submit{
		display: -webkit-flex;
		display: flex;
	}
	.bg_container #site_footer{
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
	}

    .form_box2 td {
        padding:0;
    }

    .form_box2 .search {
        width: 25%;
        padding:0 0 0 0px;
    }

    form_box2 .zip {
        width: 75%;
        padding:0 0 0 0;
    }
    .sp-mini-map,
    .sp-page-top{
        display:none;
    }
}

@media screen and (max-width: 769px) {
    .form_box2 td {
        width: 100%;
        padding:0;
    }
    #footer_logo {
        text-align:center;
    }
    #titleList{
        overflow-y: auto;
        height: 100%;
    }
    #titleList table td{
        padding: 0;
        text-align: center;
    }
    .pc-mini-map{
        display:none;
    }
    .sp-mini-map{
        width: 0;
        position: fixed;
        right: 0;
        bottom: 0;
        padding: 0;
        /*border: solid 1px #666;*/
        /*background: #666;*/
        border: solid 1px var(--accent-color);
        background:var(--accent-color);
        height: 12vh;
        width: 12vh;
        border-top-left-radius: 100px;
        opacity: 0.85;
        z-index: 999;
    }
    .sp-page-top{
        width: 0;
        position: fixed;
        left: 0;
        bottom: 0;
        padding: 0;
        /*border: solid 1px #666;*/
        /*background: #666;*/
        border: solid 1px var(--accent-color);
        background:var(--accent-color);
        height: 12vh;
        width: 12vh;
        border-top-right-radius: 100px;
        opacity: 0.85;
        z-index: 999;
    }
    #mapFrame{
        height: 80vh!important;
    }
    .dli-pin-fill{
        margin: 1vh 0 0 1vh;
    }
    .dli-arrow-up{
        margin: 2vh 1vh 0 0;
    }

}

.dli-pin-fill {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 1.3em;
  height: 1.3em;
  background: currentColor;
  border: 0.3em solid currentColor;
  border-radius: 40% 60% 0% 100% / 40% 100% 0% 60%;
  box-sizing: content-box;
  transform: rotate(45deg);
}

.dli-pin-fill::before {
  content: '';
  position: absolute;
  top: 18%;
  left: 18%;
  width: 0.5em;
  height: 0.5em;
  background: #666;
  border-radius: 50%;
  box-sizing: border-box;
}
.dli-arrow-up {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 0.5em;
  height: 2em;
  background: currentColor;
}

.dli-arrow-up::before {
  content: '';
  width: 1.2em;
  height: 1.2em;
  border: 0.4em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-46deg);
  transform-origin: top right;
  position: absolute;
  top: -0.2em;
  right: 50%;
  box-sizing: border-box;
}

#loading {
	opacity:	0.6;
	position:	fixed;
	top:		0;
	left:		0;
	width:		100%;
	height:		100%;
	background:	#fff;
	vertical-align:	middle;
	text-align:	center;
    min-width:1200px;
    min-height:900px;
	margin: 0 auto;
	z-index:	999;
}

#loadingIcon {
	opacity:	1;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

div.chartHeader {
	height:36px;
    overflow-x:hidden;
    overflow-y:scroll;
}
div.chartBody {
	height:340px;
    overflow:scroll;
}
table.chart {
	/*width: 100%;*/
	margin: 0 0 50px;
}
table.chartHeader {
	/*width: 100%;*/
	margin: 0;
    height:36px;
    overflow-x:hidden;
    overflow-y:scroll;
}
table.chartHeader th, table.chart td {
	font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
	font-size: 12px;
    width: auto;
	border: solid 1px #DDDDDD;
	padding: 2px;
    display: table-cell;
}
table.chartHeader th {
	/*background: #606060;*/
    background:var(--accent-color);
	color: #FFFFFF;
	font-weight: normal;
	text-align: center;
	height: 40px;
    vertical-align: middle;
}
table.chart tr:hover {
	/*background: #e5e5e5;*/
    background: var(--back-color);
}
table.chart td.numeric {
	text-align: right;
}
button.arrow{
	cursor: pointer;
	background: none;
	border: 0;
	width: auto;
	overflow: visible;
	padding: 0;
	font-size: 0;
	line-height: 0;
	margin-left: 5px;
	margin-right: 5px;
	vertical-align: middle;
}
.btn_down{
	display: block;
	text-align: center;
	/*background: #606060;*/
	/*border: #606060 solid 1px;*/
    background:var(--accent-color);
    border: var(--accent-color) solid 1px;
	padding: 8px 0;
	width: 100%;
	outline: none;
	color: #fff;
	transition: .3s;
	-webkit-transition: .3s;
}
.btn_down:hover{
	/*color: #606060;*/
    color:var(--accent-color);
	background: #fff;
}

/*
@media (max-width: 600px) {
    #chart_information {
        width: 300px;
    }
}
*/

table.map_info {
    width: 300px;
}

table.map_info td {
	padding: 0px 5px 0px 5px;
    display: table-cell;
    border: 1px rgb(170, 170, 170) solid;
}


#list_table2{
	padding: 10px;
}
#list_table3{
	overflow-x: auto;
}
#list_table3 table tr:nth-child(2n+1){
	/*background: #f9fdea;*/
}
#list_table3 th,
#list_table3 td{
	border: #aaa solid 1px;
	display: table-cell;
	padding: 10px;
	text-align: center;
    vertical-align: middle;
}
#list_table3 .list_head td{
	/*background: #606060;*/
    background:var(--accent-color);
	color: #fff;
}
#list_table3 td.list_price{
	text-align: center;
}

#list_table3 td select{
	width: 100%;
}

#list_table3 .form_box3 td {
	display: table-cell;
}

@media screen and (max-width: 769px) {
    #list_table3 .form_box3 {
      border-collapse: separate;
	  border-spacing: 0 10px;
      margin-bottom: 0px;
    }

    #list_table3 .form_box3 td {
	  display: block;
    }

    #list_table3 td.list_head{
	    /*background: #606060;*/
        background:var(--accent-color);
	    color: #fff;
    }
    #list_table3 .form_box3 thead {
      display: none;
    }

    #list_table3 .form_box3 td:before {
      content: attr(data-title) " ";
      display: flex;
      font-size:0.8rem;
    }
    #list_table3 .form_box3 .float_td:before {
      float:left;
    }
}

#list_table3 h2{
	font-size: 20px;
	border-left: #000 solid 5px;
	margin-bottom: 30px;
	padding-left: 15px;
	line-height: 1;
}

.movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

table.calendarTable {
	width: 100%;
	margin: 0 0 10px;
}
table.calendarTable th, table.calendarTable td {
	font-size: 12px;
	border: solid 1px #DDDDDD;
	padding: 5px 15px;
    vertical-align: top;
}
table.calendarTable th {
	width: 200px;
	color: #FFFFFF;
	font-weight: normal;
	text-align: center;
	/*background: #606060;*/
    background:var(--accent-color);
    display:compact;
}
@media screen and (max-width: 769px) {
    table.calendarTable th {
	    display:none;
    }
}

.bank_box td{
	padding: 5px;
}

.bank_box button{
    width: 18%;
	padding: 0px;
}


.footer-menu {
    text-align: center;
    display: none;
    width: 100%;
}

.footer-menu ul {
    display: flex;
    justify-content: space-around;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.footer-menu ul li {
    margin: 0;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0;
}

.footer-menu ul li a {
    text-decoration: none;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.7rem;
}

.footer-link {
    display: flex;
}

.footer-menu ul li a img {
    width: 50%;
    padding: 10px 0;
}

.footer-menu ul li a:hover {
    color: #007BFF;
}

.sp-icon-menu {
    background-color: #f4f4f4;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: none;
    z-index: 998;
}

input:not([type="checkbox"]),
button{
    border: 1px solid #aaa;
}

input:not([type="checkbox"]),
textarea,
select,
button{
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.4);
}

input:not([type="checkbox"]),
button,
div,
select
,textarea{
    outline: none;
    border-radius: 5px;
    background-clip: padding-box;
}

.form_box3 tr td a{
    /*background: #606060;*/
    /*border: 1px solid #606060;*/
    background:var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 5px 1rem;
    border-radius: 15px;
    color: #fff;
    box-shadow: 2px 2px 4px 0px rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 768px) {
    .footer-menu {
        display: block;
    }

    .sp-icon-menu {
        display: block;
    }

    #divTreeMap{
        padding-bottom:100px;
    }
    .sp_head{
	/*background: #606060;*/
    background:var(--accent-color);
    color: #fff;
}
    .sp_no_display{
        display: none!important;
    }
    .sp_no_border{
        border: none!important;
    }
    #list_table3 th,
    #list_table3 td{
	    text-align: right;
        border: none;
        border-bottom: #000 solid 1px;
    }
    .quantity {
        width: 30%!important;
    }
    .sp_padding_no_top{
        border-spacing: 0!important;
    }
    .sp_padding_no_top th,
    .sp_padding_no_top td{
        padding-top: 0!important;
    }
    #img-qr1{
        text-align: center;
    }
    .responsive_checkbox{
        display:flex;
    }
    .responsive_checkbox th{
        border-bottom:none;
        display: block;
        position: relative;
        padding-left: 1em;
        margin-right: 1rem;
    }
    .responsive_checkbox th input[type="checkbox"]{
        position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -moz-transform: scale(1.3);
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
}

@media screen and (min-width: 768px) {
    .pc_no_display{
        display: none!important;
    }
    .accordion_menu_icon{
        display:none;
    }
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px;
}

.quantity-button {
    /*background-color: #606060;*/
    background-color:var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%!important;
    padding: 10px;
    cursor: pointer;
    font-size: 20px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 10px;
    transition: background-color 0.3s;
    touch-action: manipulation;
}

.quantity-button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.quantity-button:hover:not(:disabled) {
    /*background-color: #606060;*/
    background-color:var(--accent-color);
}

.quantity {
    width: auto;
}

.right{
    text-align: right!important;
}

.accordion_menu_icon{
    width: 1.5rem;
    vertical-align: top;
    margin-right: 10px;
}

/* 円 */
.plus2 {
	position: relative;
	/*border: 0.4em solid #606060;*/
    border: 0.4em solid var(--accent-color);
	border-radius: 100%;
    width: 50px;
    height: 50px;
    margin: 0.5rem;
}
/* 縦 */
.plus2::before {
	position: absolute;
    top: 12%;
    left: 42%;
    width: 0.4em;
    height: 75%;
    content: "";
    /*background-color: #606060;*/
    background-color:var(--accent-color);
    border-radius: 10px;
}
/* 横 */
.plus2::after {
	position: absolute;
    top: 12%;
    left: 42%;
    width: 0.4em;
    height: 75%;
    content: "";
    /*background-color: #606060;*/
    background-color:var(--accent-color);
    border-radius: 10px;
    transform: rotate(-90deg);
}

/* 円 */
.minus2 {
	position: relative;
	/*border: 0.4em solid #606060;*/
    border: 0.4em solid var(--accent-color);
	border-radius: 100%;
    width: 50px;
    height: 50px;
    margin: 0.5rem;
}
/* 横 */
.minus2::after {
	position: absolute;
    top: 12%;
    left: 42%;
    width: 0.4em;
    height: 75%;
    content: "";
    /*background-color: #606060;*/
    background-color:var(--accent-color);
    border-radius: 10px;
    transform: rotate(-90deg);
}

#BL000{
    -webkit-tap-highlight-color:transparent; 
}

.dis-block-center{
    text-align:center;
    display:block
}
.dis-block-center p{
    text-align: left;
	display: inline-block;
}

@media screen and (min-width: 768px) {
    #main_navigation .nav_wrap #nav_inner{
        position: absolute;
        transform: translateX(-50%);
    }
}
