/*--------------------
  common.css
--------------------*/

/*=======================

	common section

========================*/

html,
body {
	height: 100%;
	font-size: 16px;
	background-color: #b7241d;
	background-position: center top;
	background-repeat: repeat;
	background-attachment: fixed;
}

p{
	padding: 10px;
}

#wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;  /* Negative indent footer by it's height */
	margin: 0 auto;
}
#main {
	margin: 10px;
	border: 1px solid #b3b3b3;
	background-color: #f5f5f5;
	color:#000; 
}
.hide_text {
	text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.box_hover {
	cursor: pointer;
}
.a_button {
	display: block;
	margin: 10px 0;
	padding: 10px 5px;
	text-decoration: none;
	font-size: 1rem;
	text-align: center;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
/*-------
	HEADER
--------*/
#header {
	position: relative;
    margin:0;
    height: 120px;
    color: #FFF;
}
#header #logo {
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0px;
    text-align: center;
}
#header nav {
		position: absolute;
		top: 20px;
		right: 20px;
		width: 20px;
		height: 20px;
		background: url("../images/icon_menu.png") center center no-repeat;
		background-size: 20px auto;
		cursor: pointer;
}

#call {
	display: none;
    position: relative;
    text-align: center;
    width: 100%;
    border-top: #ddd solid 1px;
    border-bottom: #ddd solid 1px;
    /*margin-top: -32px;*/
}
#call.fixed {
	display: block;
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 0;
  box-shadow: 2px 0 3px rgba(0, 0, 0, .8);
  -moz-box-shadow: 2px 0 3px rgba(0, 0, 0, .8);
  -webkit-box-shadow: 2px 0 3px rgba(0, 0, 0, .8);
  z-index: 100;
}
span.menu {
		position: absolute;
		top: 10px;
		right: 20px;
		display: block;
		width: 20px;
		height: 20px;
		background: url("../images/icon_menu.png") center center no-repeat;
		background-size: 20px auto;
		cursor: pointer;
}

#guest_head {
	text-align: right;
}

#guest_head .point {
	color: #fff;
	font-weight: bold;
}
#globalnavi {
	position: fixed;
	top: 0;
	right: 100%;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, .5);
	z-index: 100;
}
#globalnavi nav {
  position: absolute;
  top: 0;
  left: 0px;
  width: 200px;
  height: 100%;
}
#globalnavi nav li {
	border-bottom-style: solid;
	border-bottom-width: 1px;
}

/*-------
	MAIN
--------*/
ul li a {
	display: block;
	text-decoration: none;
}
a.white_color {
	color: #ccc;
}
ul.link li a {
	border-bottom-style: solid;
	border-bottom-width: 1px;
}
ul.list li a {
	display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: start;
  flex:1 1 100px;
	border-bottom-style: solid;
	border-bottom-width: 1px;
}
ul.list li p {
	flex:1 0 auto;
}
ul.pager {
	display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 10px;
}
ul.pager li {
	flex:1 1 auto;
	border-style: solid;
	border-width: 1px;
  font-size: 1rem;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
ul.pager li:first-child {
	margin-right: 10px;
}
ul.pager li:last-child {
	margin-left: 10px;
}
/*page top*/
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
}
#page-top a {
	background-color: rgba(0,0,0,0);
  text-decoration: none;
  color: #fff;
  padding: 30px 10px;
  text-align: center;
  display: block;
  border-radius: 5px;
	background-image: url("../images/icon_top.png");
	background-position: center left 10px;
	background-repeat: no-repeat;
	background-size: 30px auto;
}
#page-top a:hover {
    text-decoration: none;
}
/*hover action*/
.button {
	outline: none;
}
.button::before,
.button::after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}
.button,
.button::before,
.button::after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}

/*-------
	TABLE
--------*/
table {
	border-collapse: collapse;
	line-hegiht: 1.5;
	width: 95%;
}
table th {
	padding: 10px;
	vertical-align: top;
	border: 1px solid #ccc;
	background-color: #745948;
}
table td {
	padding: 10px;
	vertical-align: top;
	border: 1px solid #ccc;
	background-color: rgba(0,0,0,0);
}


/*-------
	FORM
--------*/
form {
	padding: 0 10px;
}

input, select, textarea {
	font-size: 16px;
}

.check_list {
    padding: 10px 0;
}
.check_list li {
	padding: 10px;
	border: 1px solid #ccc;
	border-bottom: none;
}
.check_list li:first-child {
	border-radius: 10px 10px 0 0 / 10px 10px 0 0;
	-webkit-border-radius: 10px 10px 0 0 / 10px 10px 0 0;
	-moz-border-radius: 10px 10px 0 0 / 10px 10px 0 0;
}
.check_list li:last-child {
	border-bottom: 1px solid #ccc;
	border-radius: 0 0 10px 10px / 0 0 10px 10px;
	-webkit-border-radius: 0 0 10px 10px / 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px / 0 0 10px 10px;
}
.check_list input[type=radio],
.check_list input[type=checkbox] {
   display: inline-block;
   margin-right: 6px;
}
.check_list input[type=radio] + label,
.check_list input[type=checkbox] + label {
   position: relative;
   display: inline-block;
   margin-right: 12px;
   line-height: 30px;
   cursor: pointer;
}

@media (min-width: 1px) {
	.check_list input[type=radio],
  .check_list input[type=checkbox] {
		display: none;
    margin: 0;
  }
  .check_list input[type=radio] + label,
  .check_list input[type=checkbox] + label {
    padding: 0 0 0 24px;
  }
  .check_list input[type=radio] + label::before,
  .check_list input[type=checkbox] + label::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 18px;
    height: 18px;
    margin-top: -9px;
    background: #fff;
  }
  .check_list input[type=radio] + label::before {
    border: 2px solid #ccc;
    border-radius: 30px;
  }
  .check_list input[type=checkbox] + label::before {
    border: 2px solid #ccc;
  }
  .check_list input[type=radio]:checked + label::after,
  .check_list input[type=checkbox]:checked + label::after {
    content: "";
    position: absolute;
    top: 50%;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
  }
  .check_list input[type=radio]:checked + label::after {
    left: 5px;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    background: #108ceb;
    border-radius: 8px;
  }
  .check_list input[type=checkbox]:checked + label::after {
    left: 3px;
    width: 16px;
    height: 8px;
    margin-top: -8px;
    border-left: 3px solid #108ceb;
    border-bottom: 3px solid #108ceb;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
}
.input_item {
	position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: box;
  box-flex: 1;
  -webkit-box-align: center;
  box-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 28px !important;
  margin-bottom: 10px;
  -webkit-border-radius: 6px !important;
  border-radius: 6px !important;
  padding: 0;
  line-height: 1.5;
}
.textarea_item {
	display: block;
  -webkit-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 3px 2px;
  line-height: 1.5;
  vertical-align: bottom;
  text-align: left;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.select_item {
	width: 100%;
	padding: 10px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.submit_item {
  -webkit-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 10px 0;
  width: 100%;
  padding: 10px 5px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  text-shadow: none;
}
.button_item {
  display: block;
  margin: 10px 0;
  width: 100%;
  min-height: 35px;
  padding: 10px 5px 9px 5px;
  -webkit-border-radius: 6px;
  border-radius: 6px;
}
.form1_bcolor {
	color: #333;
  background: #fff;
  border: solid 1px #676767;
  -webkit-box-shadow: inset 0 1px 2px #f0f0f0;
  box-shadow: inset 0 1px 2px #f0f0f0;
}
.form1_selcolor {
	border: 1px solid #999;
	background: #eee;
	background: url(../images/select_arrow.png) right 50% no-repeat, -webkit-linear-gradient(top, #fff 0%,#ddd 100%);
	background: url(../images/select_arrow.png) right 50% no-repeat, linear-gradient(to bottom, #fff 0%,#ddd 100%);
	background-size: 20px, 100%;
}


/* h1-h5 */
h1 {
	display: block;
	margin: 10px 0;
	padding: 8px;
	width: 100%;
	font-size: 1.25rem;
}
h2 {
	display: block;
	margin: 10px 0;
	padding: 7px;
	width: 100%;
	font-size: 1.1rem;
}

h3 {
	display: block;
	margin: 10px 0;
	padding: 6px;
	width: 100%;
	font-size: 1rem;
}
h4 {
	display: block;
	margin: 10px 0;
	padding: 6px;
	width: 100%;
	font-size: 1rem;
}
h5 {
	display: block;
	margin: 10px 0;
	padding: 6px;
	width: 100%;
	font-size: 1rem;
}

/*-------
	COLOR
--------*/
.box1_color {
	color: #000;
	border-color: #0f0f0f;
	background-color: #e2e2e2;
}

.box2_color {
	color: #000;
	border-color: #111;
	background-color: #ddd;
}

.box3_color {
	color: #000;
	border-color: #0f0f0f;
	background-color: #FFF;
}

.box4_color {
	color: #d7d7d7;
	border-color: #0f0f0f;
	background-color: #745948;
}

.box5_color {
	color: #05273d;
	border-color: #0f0f0f;
	background-color: #000000;
}


.bar1_color {
	color: #e6e6e6;
	border-color: #59080a;
	background: #59080a;
	background: -moz-linear-gradient(top, #a1806d 0%, #4b3527 100%);
	background: -webkit-linear-gradient(top, #a1806d 0%,#4b3527 100%);
	background: linear-gradient(to bottom, #a1806d 0%,#4b3527 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a1806d', endColorstr='#4b3527',GradientType=0 );
}

.bar1_color.white_color {
	color: #ccc;
}
.bar2_color {
	color: #000;
	border-color: #111;
	background: #a1806d; /* Old browsers */
	background: -moz-linear-gradient(top, #a1806d 0%, #4b3527 100%);
	background: -webkit-linear-gradient(top, #a1806d 0%,#4b3527 100%);
	background: linear-gradient(to bottom, #a1806d 0%,#4b3527 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#a1806d', endColorstr='#4b3527',GradientType=0 );
}
.bar2_color.white_color {
	color: #6b6b6b;
}
.bar3_color {
	color: #FFF;
	border-left: 8px solid #59080a;
	border-bottom: 1px solid #59080a;
	background-color:#59080a;

}
.bar3_color.white_color {
	color: #ccc;
}

.bar4_color {
	color: #333;
	border-color: #111;
	background: #cccccc;
}
.bar4_color.white_color {
	color: #ccc;
}

.font_color1 {
	color: #111;
}
.font_color2 {
	color: #fff;
}
.font_color3 {
	color: #ff0000;
}

.border_color1 {
	border-color: #111;
}
.border_color2 {
	border-color: #fff;
}
.border_color3 {
	border-color: #666;
}

.btn1_color, .btn1_color:link {
  color: #666;
  background-color: #efefef;
  border: 1px solid #d3d3d3;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
}
.btn1_color:hover {
  color: #999;
  opacity: 0.9;
}

.btn2_color {
  color: #FFF;
  background-color: #B1001E;
  border: 1px solid #8A0018;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
}
.btn2_color:hover {
  background-color: #8A0018;
}

.btn3_color, .btn3_color:link {
  color: #FFF;
  background-color: #B1001E;  /* メインレッド */
  border: 1px solid #8A0018;   /* 補助レッド */
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 4px;
}
.btn3_color:hover {
  background-color: #8A0018;
  color: #FFF;
  opacity: 0.9;
}

/*-------
	LAYOUT
--------*/
.tleft {
	text-align: left;
}
.tright {
	text-align: right;
}
.tcenter {
	text-align: center;
}
.font_normal {
	font-weight: normal;
}
.font_bold {
	font-weight: bold;
}
.padding10 {
	padding: 10px;
}
.padding10_0 {
	padding: 10px 0;
}
.margin10 {
	margin: 10px;
}
.margin10_0 {
	margin: 10px 0;
}
.margin15 {
	margin: 15px;
}
.margin15_0 {
	margin: 15px 0;
}
.margin20 {
	margin: 20px;
}
.margin20_0 {
	margin: 20px 0;
}


.link_next_brown,
.link_next_gry,
.link_next_brown {
	display: block;
	padding-right: 30px;
	background-position: center right 10px;
	background-repeat: no-repeat;
	background-size: 20px auto;
}
.link_next_brown {
	background-image: url("../images/icon_next_brown.png");
}
.link_next_gry {
	background-image: url("../images/icon_next_gry.png");
}
.link_next_brown {
	background-image: url("../images/icon_next_brown.png");
}
.link_prev_wht,
.link_prev_gry,
.link_prev_brown {
	display: block;
	padding-left: 30px;
	background-position: center left 10px;
	background-repeat: no-repeat;
	background-size: 20px auto;
}
.link_prev_wht {
	background-image: url("../images/icon_prev_wht.png");
}
.link_prev_gry {
	background-image: url("../images/icon_prev_gry.png");
}
.link_prev_brown {
	background-image: url("../images/icon_prev_brown.png");
}


.red{
	color: red;
}