@charset "utf-8";

/* CSS Information
---------------------------------------------------------------
File name:	layout.css
Summary:	base styles
Created:	2013-11-15
Last update:	2016-04-15 by Sadaoka
Author:	Sadaoka
Copyright:	(C) 2013-2016 dabhand Inc.
--------------------------------------------------------------- */

/* 初期化 */
/* ------------------------------------------------------------ */
html, body, div, span, object, iframe, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, 
abbr, address, cite, code, 
del, dfn, em, img, ins, kbd, q, samp, 
small, strong, sub, sup, var, 
b, i, 
dl, dt, dd, ol, ul, li, 
fieldset, form, label, legend, 
table, caption, tbody, tfoot, thead, tr, th, td, 
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary, 
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	font-weight: normal;
	vertical-align: baseline;
	background: transparent;
	border: 0px #f00 solid; /* レイアウト確認用罫線 */
}

article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary {
	display: block;
}

body {
	background-color: #fff;
	font-size: 14px;
	line-height: 0;
	-webkit-text-size-adjust: none;
}

ul, ol {
	list-style: none;
}

blockquote, q {
	quotes: none;
}

blockquote: before,
blockquote: after, 
q: before,
q: after {
	content: '';
	content: none;
}

div,
p {
	display: block;
	overflow: visible;
}

img {
	vertical-align: middle;
}

a {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title], dfn[title] {
	border-bottom: 1px #000 dotted;
	cursor: help;
}

table {
	font-size: 14px;
	empty-cells: hide;
	border-collapse: collapse;
	border-spacing: 0px;
}

th {
	padding: 0;
}

td {
	padding: 0;
}

br {
	letter-spacing: 0;
}

hr {
	height: 2px;
	margin: 10px 0;
	padding: 0;
	display: block;
	border: 0;
	border-top: 2px #e6e6e6 solid;
}

input, select {
	vertical-align: baseline;
}

/* Link */
/* ------------------------------------------------------------ */
a:link, a:visited {
	color: #4d4d4d;
	text-decoration: underline;
}

a img.alpha:hover {
	filter: alpha(opacity=60);
	opacity: 0.6;
	-moz-opacity: 0.6;
}

/* 非表示 */
/* ------------------------------------------------------------ */
.none { display: none; }

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
	text-indent: -1em;
	margin-left: 1em;
}

/* Font */
/* ------------------------------------------------------------ */
.txt {
	line-height: 1.5;
	vertical-align: baseline;
}

.txt_9 {
	font-size: 9px;
}

.txt_10 {
	font-size: 10px;
}

.txt_11 {
	font-size: 11px;
}

.txt_12 {
	font-size: 12px;
}

.txt_14 {
	font-size: 14px;
}

.txt_16 {
	font-size: 16px;
}

.txt_18 {
	font-size: 18px;
}

.txt_bold {
	font-weight: bold;
}

.txt_black {
	color: #000;
}

.txt_white {
	color: #fff;
}

.txt_blue {
	color: #4481c4;
}

.txt_blue2 {
	color: #004ebb;
}

.txt_green {
	color: #4f7a00;
}

.txt_red {
	color: #eb221c;
}

.txt_pink {
	color: #d24351;
}

.txt_orange {
	color: #e87200;
}

.txt_orange2 {
	color: #ff7c00;
}

.txt_winered {
	color: #812847;
}

.txt_purple {
	color: #8048a2;
}


em {
	background-color: #f9b4ac;
	font-style: normal;
}

sup {
	font-size: 66%;
	vertical-align: top;
}

sub {
	font-size: 66%;
	vertical-align: baseline;
}

.txt_emboss {
	font-weight: bold;
	white-space: nowrap;
	text-overflow: ellipsis;
	text-shadow: 0px -1px #9a9a9a;
	overflow: hidden;
}

/* Align */
/* ------------------------------------------------------------ */
.a_left {
	text-align: left;
}

.a_center {
	text-align: center;
}

.a_right {
	text-align: right;
}

/* Float */
/* ------------------------------------------------------------ */
.f_left {
	float: left;
}

.f_right {
	float: right;
}

/* Clear */
/* ------------------------------------------------------------ */
.float:after {
	content: '';
	height: 0;
	clear: both;
	display: block;
	visibility: hidden;
}

.dsp_iln_blk {
	display: inline-block !important;
}

/* Margin */
/* ------------------------------------------------------------ */
.c_mgn {
	margin-left: auto;
	margin-right: auto;
}

.t_mgn5 {
	margin-top: 5px;
}

.t_mgn10 {
	margin-top: 10px;
}

.t_mgn15 {
	margin-top: 15px;
}

.t_mgn20 {
	margin-top: 20px;
}

.t_mgn30 {
	margin-top: 30px;
}

.t_mgn60 {
	margin-top: 60px;
}

.r_mgn5 {
	margin-right: 5px;
}

.r_mgn10 {
	margin-right: 10px;
}

.r_mgn15 {
	margin-right: 15px;
}

.r_mgn20 {
	margin-right: 20px;
}

/* Box */
/* ------------------------------------------------------------ */
.box_lr10 {
	margin-left: 10px;
	margin-right: 10px;
	display: block;
	overflow: visible;
}

.w32p {
	width: 32%;
}

.w48p {
	width: 48%;
}

.w49p {
	width: 49%;
}

.w50p {
	width: 50%;
}

.w90p {
	width: 90%;
}


.w260 {
	width: 260px;
}

.w290 {
	width: 290px;
}

.shadow {
	box-shadow: 0 1px 3px #808080;
}

.photo {
	border: 1px #808080 solid;
}

.photo2 {
	border: 1px #38c64c solid;
}

/* Button */
/* ------------------------------------------------------------ */

/* Header メニューボタン */
#mobile-bar {
	background-color: #fff;
	text-align: left;
	box-shadow: 0 1px 3px #808080;
	display: inline-block;
	overflow: hidden;
	border-radius: 4px;
	-webkit-border-radius: 4px;
}

#build-menu-button {
	background:#054387 url(../images/icon_menu.png) center no-repeat;
	background-size: 20px 18px;
	color: #fff;
	text-decoration: none;
	width: 28px;
	height: 28px;
	display: block;
	overflow: hidden;
}

#build-menu {
	background:black;
}
#build-menu ul {
	padding:0px;margin:0px;
}
#build-menu li {
	padding:0px;margin:0px;
	list-style: none;
	padding:10px;
	border-bottom:1px solid #4f4f4f;
}
#build-menu li a {
	color: #fff;
	text-decoration: none;
	display: block;
}

/* Button */
.button1 {
	background-image: -moz-linear-gradient(center top , #add1f8 50%, #6ba7e8);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#add1f8),color-stop(0.50, #add1f8),to(#6ba7e8));
	text-align: center;
	box-shadow: 0 1px 3px #808080;
	display: inline-block;
	overflow: hidden;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 0px #646464 solid;
}

.button1 a {
	background: url(../images/btn_icon2.png) left center no-repeat;
	background-size:6px 20px;
	text-decoration: none;
	font-size: 11px;
	font-weight: bold;
	padding: 7px 0;
	display: block;
	overflow: hidden;
}


.button2 {
	background-image: -moz-linear-gradient(center top , #faa6b5 50%, #de667b);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#faa6b5),color-stop(0.50, #faa6b5),to(#de667b));
	text-align: center;
	box-shadow: 0 1px 3px #808080;
	display: inline-block;
	overflow: hidden;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 0px #646464 solid;
}

.button2 a {
	background: url(../images/btn_icon5.png) left center no-repeat;
	background-size:6px 20px;
	text-decoration: none;
	font-size: 11px;
	font-weight: bold;
	padding: 7px 0;
	display: block;
	overflow: hidden;
}

.button3 {
	background-image: -moz-linear-gradient(center top , #81dbff 50%, #5cb6d9);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#81dbff),color-stop(0.50, #81dbff),to(#5cb6d9));
	text-align: center;
	box-shadow: 0 1px 3px #808080;
	display: inline-block;
	overflow: hidden;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 0px #646464 solid;
}

.button3 a {
	background: url(../images/btn_icon6.png) left center no-repeat;
	background-size:6px 20px;
	text-decoration: none;
	font-size: 11px;
	font-weight: bold;
	padding: 7px 0;
	display: block;
	overflow: hidden;
}



.button_blue {
	background-color: #6ba7e8;
	text-align: center;
	box-shadow: 0 1px 3px #808080;
	display: inline-block;
	overflow: hidden;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 2px #6ba7e8 solid;
}

.button_blue a {
	color: #fff;
	text-decoration: none;
	font-size: 11px;
	padding: 5px 0;
	display: block;
	overflow: hidden;
}


.footer_btn1 {
	background-color: #054387;
	text-align: center;
	box-shadow: 0 1px 3px #808080;
	display: inline-block;
	overflow: hidden;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 2px #054387 solid;
}

.footer_btn1 a {
	color: #fff;
	text-decoration: none;
	font-size: 11px;
	padding: 5px 0;
	display: block;
	overflow: hidden;
}

.icon_tel {
	background: url(../images/icon_tel.png) left center no-repeat;
	background-size:15px 11px;
	padding-left: 20px;
}

.footer_btn2 {
	background-color: #fff;
	text-align: left;
	box-shadow: 0 1px 3px #808080;
	display: inline-block;
	overflow: hidden;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 2px #f2f2f2 solid;
}

.footer_btn2 a {
	background: url(../images/btn_icon1.png) left center no-repeat;
	background-size:13px 10px;
	text-decoration: none;
	font-size: 11px;
	padding: 5px 0 5px 18px;
	display: block;
	overflow: hidden;
}

/* Header */
/* ------------------------------------------------------------ */
header {
	background: url(../images/header_bg.png) left top repeat-x;
	height: 45px;
	padding: 10px 10px 0;
	display: block;
	overflow: hidden;
}

/* Headline */
/* ------------------------------------------------------------ */
.hl_bg {
	background-image: -moz-linear-gradient(center top , #054387 50%, #122b46);
	background-image: -webkit-gradient(linear,left top,left bottom,from(#054387),color-stop(0.50, #054387),to(#122b46));
	text-align: center;
	padding: 5px 0;
}

.hl_bg2 {
	background: url(../images/icon_border.png) left center no-repeat;
	background-size:4px 20px;
	padding: 0 10px;
}

.hl_bg2 h3 {
	padding: 0 10px;
}

.hl_bg3 {
	background: url(../images/icon_border2.png) left center no-repeat;
	background-size:2px 20px;
	padding: 0 10px;
}

.hl_bg3 h3 {
	padding: 0 10px;
}

.h2_border1 {
	background-color: #e3717c;
	color: #fff;
	padding: 5px 10px;
}

.h2_border2 {
	background-color: #7c9e3f;
	color: #fff;
	padding: 5px 10px;
}

.h2_border3 {
	background-color: #3371c9;
	color: #fff;
	padding: 5px 10px;
}

.h2_border4 {
	background-color: #812847;
	color: #fff;
	padding: 5px 10px;
}

.h2_border5 {
	background-color: #fd9900;
	color: #fff;
	padding: 5px 10px;
}

.h2_border7 {
	background-color: #8048a2;
	color: #fff;
	padding: 5px 10px;
}


.h3_border {
	background: #009de8 url(../images/btn_icon4.png) left center no-repeat;
	background-size:6px 20px;
	color: #fff;
	padding: 5px 10px;
}

.h3_border2 {
	background-color: #f5949d;
	color: #fff;
	padding: 5px 10px;
}

.h3_border3 {
	background-color: #a2c366;
	color: #fff;
	padding: 5px 10px;
}

.h3_border4 {
	background-color: #5493ed;
	color: #fff;
	padding: 5px 10px;
}

.h3_border5 {
	background-color: #bf6d97;
	color: #fff;
	padding: 5px 10px;
}

.h3_border6 {
	background-color: #ffc255;
	color: #fff;
	padding: 5px 10px;
}

.h3_border7 {
	background-color: #d9a5d3;
	color: #fff;
	padding: 5px 10px;
}


/* Index */
/* ------------------------------------------------------------ */
#slideshow_block {
	background-color: #ffffff;
	width: 100%;
	display: block;
	overflow: hidden;
	border: 0px #f00 solid;
}

#slideshow {
	position: relative;
}

#slideshow:after {
	content: "";
	display: block;
	padding-top: 32%;
}

#slideshow img {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index:8;
}

#slideshow img.active {
	z-index: 10;
}

#slideshow img.last-active {
	z-index: 9;
}

#index .bg {
	background-color: #fff;
	box-shadow: 0 2px 3px #bebebe;
	padding: 0 0 10px;
	display: block;
	overflow: hidden;
}

#index .top_topics_list {
	padding: 10px;
	display: block;
	overflow: hidden;
	border-bottom: 1px #666 solid;
}

#index .top_topics_list p {
	line-height: 1.5;
	vertical-align: baseline;
}

#index .top_topics_list:last-child {
	padding: 10px 10px 0;
	border: none;
}



/* ブラウザーの右端いっぱいに広がるボタン
.menu_layout {
	color: #333333;
	text-align: left;
}

.menu_layout .photo {
	margin-right: 10px;
	float: left;
	border: 1px #4481c4 solid;
}

.menu_layout .txt_area {
	padding: 0 10px 0 0;
}

.menu_layout .icon {
	background: url("../images/arrow_next.png") no-repeat scroll right center rgba(0, 0, 0, 0);
	height: 70px;
	line-height: 70px;
	float: right;
	display: block;
	overflow: hidden;
	border: 0 #f00 solid;
}
*/

/* Second hierarchy */
/* ------------------------------------------------------------ */
#second_hierarchy .bg {
	background-color: #fff;
	box-shadow: 0 2px 3px #bebebe;
	padding: 0 0 10px;
	display: block;
	overflow: hidden;
}

#second_hierarchy .bg2 {
	background-color: #cfecf7;
	box-shadow: 0 2px 3px #bebebe;
	padding: 0 0 10px;
	display: block;
	overflow: hidden;
}

#second_hierarchy .bg3 {
	background-color: #c3eec9;
	box-shadow: 0 2px 3px #bebebe;
	padding: 0 0 10px;
	display: block;
	overflow: hidden;
}

.arrow {
	background: url(../images/icon_arrow.png) left center no-repeat;
	background-size: 9px 10px;
	padding-left: 14px;
}

.arrow2 {
	background: url(../images/icon_arrow2.png) left center no-repeat;
	background-size: 9px 10px;
	padding-left: 14px;
}

#second_hierarchy .price_area {
	padding: 20px 0;
	border-bottom: 4px #66c4f1 solid;
}

.photo_area1 {
	padding-left: 10px;
	display: block;
	overflow: visible;
}

.photo_area1 li {
	text-align: left;
	margin: 10px 10px 0 0;
	vertical-align: top;
	display: inline-block;
}

.photo_area2 {
	padding-left: 11px;
	display: block;
	overflow: visible;
}

.photo_area2 li {
	text-align: left;
	margin: 10px 11px 0 0;
	vertical-align: top;
	display: inline-block;
}


/* Topics */
/* ------------------------------------------------------------ */
div.new_title_layout,
div.new_layout {
	line-height: 1.5;
	vertical-align: baseline;
	margin-left: 10px;
	margin-right: 10px;
}

div.new_title_layout h4 {
    background-color: #DFB000;
    color: #fff;
    display: block;
    font-size: 14px;
    margin: 0;
    padding: 5px 0;
    text-align: center;
}

div.new_title_layout.new_title_layout p {
    background-color: #b65230;
    color: #fff;
    display: block;
    font-size: 12px;
    margin: 0;
    padding: 5px 0;
    text-align: center;
}

div.new_layout {
    clear: both;
    display: block;
    margin: 0 auto;
    overflow: hidden;
    padding: 20px;
}
div.new_layout .new_img img {
    display: block;
    float: right;
    margin: 0 0 0 20px;
    padding: 0;
    text-align: center;
    width: 100px;
}

/* Form */
/* ------------------------------------------------------------ */
form .bg {
	background-color: #fe92bb;
	background-image: -webkit-gradient(linear,left top,left bottom,from(#ffbad7),to(#fe92bb));
	text-align: center;
	font-size: 12px;
	padding: 10px 0px;
}

form .must {
	background-color: #ea211b;
	color: #fff;
	text-align: center;
	font-size: 12px;
	font-weight: normal;
	margin: 0 0 0 10px;
	padding: 3px 5px;
	border-radius: 2px;
	-webkit-border-radius: 2px;
}

form table {
	empty-cells: hide;
	border-collapse: separate;
	border-spacing: 5px;
	border: 0px #f00 solid; /* レイアウト確認用罫線 */
}

form th {
	text-align: right;
	vertical-align: middle;
	white-space: nowrap;
	width: 5%;
}

form td {
	text-align: left;
	vertical-align: middle;
	width: 95%;
}

input,
textarea {
	padding: 4px;
	font-size: 14px;
}

input[type="radio"] {

}

form .ic_type1 {
	width: 97%;
}

form .ic_type2 {
	width: 2em;
}

form .ic_type3 {
	width: 8em;
}

form .ic_type1,
form .ic_type2,
form .ic_type3 {
	background-color: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px #dcdcdc solid;
}

form .ic_type1:focus,
form .ic_type2:focus,
form .ic_type3:focus {
	background-color: #cae9f6; /* フォーカス時の背景色を指定 */
	border-color: #c8c8c8; /* フォーカス時のボーダーの色を指定 */
}

form select {
	background-color: #fff;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	border: 1px #dcdcdc solid;
}

form input.btn_submit {
	cursor: pointer;
	cursor: hand;
	background-color: #6ba7e8;
	color: #fff;
	text-align: center;
	text-shadow: 0px -1px #808080;
	font-size: 14px;
	width: 100%;
	padding: 7px 0;
	display: inline-block;
	overflow: hidden;
	border-style: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0 1px 3px #808080;
}

form .btn_reset {
	cursor: pointer;
	cursor: hand;
	background-color: #6ba7e8;
	color: #fff;
	text-align: center;
	text-shadow: 0px -1px #808080;
	font-size: 14px;
	width: 50%;
	padding: 7px 0;
	display: inline-block;
	overflow: hidden;
	border-style: none;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	box-shadow: 0 1px 3px #808080;
}

#second_hierarchy .bg .box_lr10 ul li {
	line-height: 1.5;
	vertical-align: baseline;
}

/* Footer */
/* ------------------------------------------------------------ */
footer {
	background-color: #fff;
	text-align: center;
	padding: 0 0px 10px;
}

footer .pagetop {
	background-color: #054387;
	color: #fff;
	font-size: 11px;
	padding: 5px 0;
}

footer .pagetop a:link,
footer .pagetop a:visited {
	color: #fff;
	text-decoration: underline;
}
