@charset "utf-8";
/*------------------------------*/
h1,h2,h3 {
	font-size:13px;
	margin:0px;
	padding:0px;
	font-weight:normal;
}


/*------------------------------*/
/* ページャー用ボタン */
.pager_button_off {
	min-width:30px;
	display:block;
	text-align:center;
	padding:1px;
	margin:2px;
	text-decoration:none;
	float:left;
	padding-bottom:1px;
	color:#666666;
	border:1px solid #cccccc;
	border-radius:7px;
	background-color:#ffffff;
}
.pager_button_on {
	min-width:30px;
	display:block;
	text-align:center;
	padding:1px;
	margin:2px;
	text-decoration:none;
	float:left;
	padding-bottom:1px;
	border-radius:7px;
	border:1px solid #cccccc;
	background-color:#cccccc;
	color:#ffffff;
}
.pager_button_on:hover {
	color:#ffffff;
}
.pager_button_off:hover {
	color:#666666;
}
/*------------------------------*/
/*トップへ戻るボタン*/
.scroll_top_button {
	bottom: 80px;
	right: 50px;
	position: fixed;
	z-index: 101;
	background-color:#006837;
	border-radius:50%;
	box-shadow: 3px 3px 6px #333333;
	color: #ffffff;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	display: none;
	text-align:center;
	width: 80px;
	height: 80px;
	font-size:17px;
	padding:15px;
}
/* スマホ画面 */
@media only screen and (max-width:550px) {
	.scroll_top_button {
		width: 50px;
		height: 50px;
		font-size:15px;
		padding:2px;
	}
}

/*------------------------------*/
/* スマホ用メニューボタン */
.menu_switch {
	bottom: 140px;
	right: 50px;
	position: fixed;
	z-index: 101;
	background-color:#006837;
	border-radius:50%;
	box-shadow: 3px 3px 6px #333333;
	color: #ffffff;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	text-align: center;
	cursor: pointer;
	display: none;
}
/* スマホ画面 */
@media only screen and (max-width:550px) {
	.menu_switch {
		display: block;
		right: 30px;
	}
	.scroll_top_button {
		right: 30px;
	}
}
/*------------------------------*/
/* ハンバーガーボタン */
.menu-trigger {
	position:relative;
	margin:10px;
	box-sizing:border-box;
	width:30px;
	height:30px;
}
.menu-trigger div {
	transition:0.5s;
	position:absolute;
	width:100%;
	height:20%;
	background-color:#ffffff;
}
.menu-trigger div:nth-of-type(1) {
	top:0px;
}
.menu-trigger div:nth-of-type(2) {
	top:50%;
	transform:translateY(-50%);
}
.menu-trigger div:nth-of-type(3) {
	bottom:0px;
}

/* モバイル用のメニューボックス */
.mobile_nav {
	position:fixed;
	box-sizing:border-box;
	top:0px;
	left:-85%;
	height:100%; /* IEのボックスの高さ問題対策 */
	display:none;
	background-image:url('/image/common/text_box_bg_01.png');
	background-image:url('/image/common/text_box_bg_01.webp');
	box-shadow: 3px 3px 6px #666666;
	background-color:#ffffff;
	z-index:100;
	overflow:auto;
	padding:5px;
}

/*------------------------------*/
/* 枠の幅 */
.width_100 {
	width: 100%;
}
.width_90 {
	width: 90%;
}
.width_80 {
	width: 80%;
}
.width_70 {
	width: 70%;
}

/*------------------------------*/
/* margin調整 */
.margin-top_20 {
	margin-top: 20px;
}
.margin-top_30 {
	margin-top: 30px;
}
.margin-top_50 {
	margin-top: 50px;
}
.margin-bottom_30 {
	margin-bottom: 30px;
}
.margin-bottom_50 {
	margin-bottom: 50px;
}
.margin-bottom_100 {
	margin-bottom: 100px;
}

/*------------------------------*/
/* 隙間を調整するスタイル */
.padding-all_01 {
	padding:1px;
}
.padding-all_05 {
	padding:5px;
}
.padding-all_10 {
	padding:10px;
}
.padding-all_20 {
	padding:20px;
}

.padding-type_01 {
	padding:5px 5px 5px 20px;
}

/*------------------------------*/
/* テーブルタグ */
.col_top {
	width: 100%;
	box-sizing: border-box;
	font-size: 0px;
}
.pc_top-1 {
	box-sizing: border-box;
	display: inline-block;
	vertical-align: middle;
	font-size: 13px;
	width: 20%;
}
/* スマホ画面 */
@media only screen and (max-width:550px) {
	.pc_top-1 {
		width: 100%;
	}
}

/*------------------------------*/
/* ヘッダー */
.in_box {
	margin-left:auto;
	margin-right:auto;
	max-width:1000px;
}
/* スマホ画面 */
@media only screen and (max-width:1000px) {
	.in_box {
		margin-left:5px;
		margin-right:5px;
	}
}

/*------------------------------*/
/* 部品の幅の制御 */
.max-width_400 {
	width:100%;
	max-width:400px;
}

/*------------------------------*/
/* フォントサイズ */
.font-size_12 {
	font-size:12px;
}
.font-size_13 {
	font-size:13px;
}
.font-size_14 {
	font-size:14px;
}
.font-size_16 {
	font-size:16px;
}
.font-size_18 {
	font-size:18px;
}
.font-size_20 {
	font-size:20px;
}
.font-size_23 {
	font-size:23px;
}
.font-size_30 {
	font-size:30px;
}
.font-size_80 {
	font-size:80px;
}

/*------------------------------*/
/* テキスト枠 */
.text_box_01 {
	background-image:url('/image/common/text_box_bg_01.png');
	background-image:url('/image/common/text_box_bg_01.webp');
}

/*------------------------------*/
/* フッター */
.footer_box {
	background-image:url('/image/common/footer_bg.jpg');
	background-image:url('/image/common/footer_bg.webp');
	background-size:cover;
	background-position:top center;
	padding-top:30px;
}

.footer_link_style {
	color:#ffffff;
	font-weight_bold;
	font-size:15px;
}

.footer_logo_image {
	width:90%;
}
/* タブレット画面 */
@media only screen and (max-width:767px) {
	.footer_logo_image {
		width:60%;
	}
}

/* テキストカラー */
.color_01 {
	color:#ffffff;
}
.color_02 {
	color:#e1e1e1;
}
.color_03 {
	color:#006837;
}
.color_04 {
	color:#009944;
}


/* 背景色 */
.background-color_01 {
	background-color:rgba(0,0,0,0.3);
	border-radius:10px;
}
.background-color_02 {
	background-color:#E0EFC8;
}
.background-color_03 {
	background-color:#ffffff;
}
.background-color_04 {
	background-color:#FBE6EF;
}
.background-color_05 {
	background-color:#EE7800;
}
.background-color_06 {
	background-color:#38A1DB;
}
.background-color_07 {
	background-color:rgba(255,255,255,0.5);
	border-radius:10px;
}

/* 線 */
.hr_01 {
	border:none;
	border-top:1px dotted #3f220e;
}
.hr_02 {
	border:none;
	border-top:1px solid #333333;
}

/* ボタン */
.next_button_01 {
	padding:1px 10px;
	background-color:#84C024;
	color:#ffffff;
	font-size:12px;
	border-radius:5px;
}
.next_button_01:hover {
	color:#006837;
}

.border-all_01 {
	border:1px solid #cccccc;
}
.border-all_02 {
	border:3px solid #009944;
}

/* 影 */
.box-shadow_01 {
	box-shadow: 3px 3px 6px #cccccc;
}
.box-shadow_02 {
	text-shadow:1px 1px 2px #004d29,-1px 1px 2px #004d29,1px -1px 2px #004d29,-1px -1px 2px #004d29;
}

/* ヘッダー */
#header {
	height:1000px;
	height:100%; /* IEのボックスの高さ問題対策 */
}

/* 丸抜き */
.trim-image-to-circle {
	border-radius: 50%;
	max-width: 100%;
	max-height: 100%;
}

/* 決定ボタン */
.submit_button_01 {
	-webkit-appearance:none;
	-moz-appearance:none;
	appearance:none;
	box-sizing:border-box;
	border:none;

	background-color:#84C024;
	border-radius:5px;
	width:200px;
	padding:5px 2px;
	color:#ffffff;
	font-size:18px;
	cursor:pointer;
}
.submit_button_01:hover {
	background-color:#67a800;
}

/* 必須アイコン */
.required_icon {
	background-color:#ff0000;
	font-size:10px;
	color:#ffffff;
	padding:1px 3px;
}

/* メニュー帯 */
.menu_line {
	background-color:#90C63A;
	background-image:url('/image/common/menu_bg.png');
	background-image:url('/image/common/menu_bg.webp');
	background-size:100% 100%;
	padding:10px 2px;
	text-align:center;
	color:#ffffff;
	font-weight:bold;
	font-size:20px;
}


/* フッター問い合わせボタン */
.inquiry_box {
	margin:0px auto;
	background-color:#ffffff;
	border-radius:5px;
	color:#006837;
	font-size:30px;
	font-weight:bold;
	max-width:400px;
	padding:5px 2px;
}
.inquiry_box:hover {
	background-color:#f4fffa;
	color:#077f46;
}

/* フッター電話ボタン */
.footer_info_box {
	font-size:30px;
	font-weight:bold;
	color:#ffffff;
	padding:5px 0px;
}
.footer_info_box:hover {
	color:#cdffe7;
}

/*------------------------------*/
.menu_button_on {
	padding:10px 2px;
	font-weight:bold;
	font-size:14px;
	background-color:rgba(132,192,36,0.7);
	color:#000000;
}
/*------------------------------*/
/* スマホ画面 */
@media only screen and (max-width:550px) {

	.menu_button_on {
		margin:2px 0px;
		background-color:#006837;
		border-radius:2px;
		color:#ffffff;
		padding:15px 2px;
		font-weight:bold;
		font-size:16px;
	}

}
