@charset "UTF-8";
/* --------------------------------------------------
Base set
-------------------------------------------------- */
* {
        box-sizing: border-box;
    -ms-box-sizing: border-box;
   -moz-box-sizing: border-box;
-webkit-box-sizing: border-box;
}

html, body {
	width:100%;
	height:100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}

body {
	-webkit-font-smoothing: subpixel-antialiased;
	font-family: 'roboto', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro','YuGothicM','游ゴシック体', 'Yu Gothic',  'メイリオ', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	font-size: 14px;
	line-height: 1;
	letter-spacing: normal;
	word-break: break-all;
	word-wrap: break-word;
	font-feature-settings: "palt" 1;
	text-align: left;
	color: #111;
	background:#fff;
}

/*リンク */
a {
	color: #007048;
}
a:hover {
	color: #8dc220;
}

/*エラーメッセージ*/
.errormsg{
	font-size: 12px;
	color: #f00;
	margin-left: 15px;
	margin-top: 3px;
}

/* --------------------------------------------------
header
-------------------------------------------------- */
.header {
	display:flex;
	flex-wrap: nowrap;
	justify-content: space-between;
	width: 100%;
	height: 80px;
	background:url(../img/common/header_line.png) left top repeat-x;
	border-bottom: 1px solid #ccc;
}

.header-L {
	align-self: center;
	width: 210px;
	height: 45px;
}

.header-C {
	align-self: center;
	width: 210px;
	height: 45px;
	margin-left: 20px;
	background: url(../img/common/gc_logo.png) no-repeat;
	background-position: center;
}

.header-R {
	align-self: center;
	width: 210px;
	height: 45px;
	margin-right: 20px;
}

/* ▼スマートフォン設定▼ */
@media screen and (max-width: 799px) {
	.header-L {
		width: 0px;
	}

	.header-C {
		background-size: contain;
	}

	.header-R {
		width: 45px;
	}
}
/* ▲スマートフォン設定▲ */


/* --------------------------------------------------
ナビゲーションリンク（パンくず）
-------------------------------------------------- */
.navlink {
	margin: 10px auto 0;
    width: 850px;
	line-height: 20px;
	font-size: 12px;
}
.navlink ul {
	display: flex;
	justify-content: flex-start;
}
/* 後ろの ＞ ただし最後は無し */
.navlink li:not(:last-child)::after {
	display: inline-block;
	content: "";
	margin: 0 20px;
	width: 6px;
	height: 6px;
	border-top: 1px solid #111;
	border-right: 1px solid #111;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
.navlink a {
	color: #F39800;
}

/* ▼スマートフォン設定▼ */
@media screen and (max-width: 799px) {
	.navlink {
		max-width: 100%;
		padding: 0 3px;
	}
	.navlink li:not(:last-child)::after {
		margin: 0 10px;
	}
}
/* ▲スマートフォン設定▲ */


/* --------------------------------------------------
サイドメニュー
-------------------------------------------------- */
/*チェックボックス非表示*/
.nav-unshown {
	display:none;
}

/*メニューアイコン*/
#nav-open {
	display: inline-block;
	position: absolute;
	width: 45px;
	height: 45px;
	right: 20px;
	background: url(../img/common/menu.png) no-repeat;
}

/*閉じる用の薄黒カバー*/
#nav-close {
	display: none;	/*はじめは隠しておく*/
	position: fixed;
	z-index: 99;
	top: 0;			/*全体に広がるように*/
	left: 0;
	width: 100%;
	height: 100%;
	background: black;
	opacity: 0;
	transition: .3s ease-in-out;
}

/*中身のメニュー領域*/
#nav-content {
	display: none;	/*はじめは隠しておく*/
	overflow: auto;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
	width: 90%;			/*右側に隙間を作る（閉じるカバーを表示）*/
	max-width: 330px;
	height: 100%;
	background: #fff;
	transition: .3s ease-in-out;	/*滑らかに表示*/
	-webkit-transform: translateX(-105%);
	transform: translateX(-105%);	/*左に隠しておく*/
}
	#nav-content nav {
		display: flex;
		flex-direction: column;
		align-items:center;
	}
	#nav-content a {
		text-decoration: none;
		color: #111;
	}

	#nav-content li {
		height: 50px;
		width: 200px;
		line-height: 50px;
		padding-left: 30px;
		border-bottom: 1px solid #53AA32;
		background: url(../img/common/as.png) no-repeat top 50% left 10px;
	}
	#nav-content li:last-child {
		border-bottom: none;
	}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
	display: block;		/*カバーを表示*/
	opacity: .5;
	transition: .3s ease-in-out;	/*滑らかに表示*/
}

/*chromeの初動対策*/
	#nav-input:hover ~ #nav-content {
		display: block;
	}
#nav-input:checked ~ #nav-content {
	display: block;
	-webkit-transform: translateX(0%);
	transform: translateX(0%);		/*中身を表示（右へスライド）*/
	box-shadow: 6px 0 25px rgba(0,0,0,.15);
}


/* --------------------------------------------------
footer
-------------------------------------------------- */
.footer {
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1;
	background: #61B740;
	color: #fff;
}
.footer-copy {
	text-align: center;
	font-size: 14px;
}

/* ▼スマートフォン設定▼ */
@media screen and (max-width: 799px) {
	.footer-copy {
		font-size: 12px;
	}
}
/* ▲スマートフォン設定▲ */


/* --------------------------------------------------
共通定義
-------------------------------------------------- */
/* コンテンツボディ通常 */
.content {
	margin: 0 auto;
	padding: 0;
	font-size: 14px;
	font-weight: normal;
	text-align: left;
    width: 850px;
}
/* ▼スマートフォン設定▼ */
@media screen and (max-width: 799px) {
	.content {
		max-width: 100%;
		padding: 0 3px;
	}
}
/* ▲スマートフォン設定▲ */



/*見出しタイトル*/
.topicstitle {
	margin: 20px auto;
	font-size: 24px;
	font-weight: 700;
	border-left: 5px solid #8dc220;
	padding-left: 10px;
}



/*テキスト入力タイトル*/
.textinput_title {
	position: relative;
	margin-bottom: 20px;
	padding: 8px 2px 12px;
	line-height: 1.4;
	font-size: 20px;
	font-weight: 700;
}
.textinput_title:before {
	position: absolute;
	display: block;
	content: '';
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	z-index: 1;
	background: #d4d4d4;
}
.textinput_title:after {
	position: absolute;
	display: block;
	content: '';
	bottom: 0;
	left: 0;
	width: 80px;
	height: 2px;
	z-index: 2;
	background: #F39800;
}
/*必須マーク*/
.must {
	background: #61B740;
}
.free {
	background: #999;
}
.must,
.free {
	color: #FFF;
	border-radius: 3px;
	font-size: 12px;
	margin-right: 10px;
	margin-left: 10px;
	padding: 5px 10px;
	letter-spacing: 0.2em;
}

/* ▼スマートフォン設定▼ */
@media screen and (max-width: 799px) {
	.textinput_title {
		padding: 0 2px 12px;
		font-size: 16px;
	}
	.textinput_title:after {
		width: 50px;
	}
}
/* ▲スマートフォン設定▲ */



/*テキスト入力データ部*/
.textinput_data {
	width: 400px;
	margin-bottom: 30px;
}

/*テキスト出力データ部*/
.textoutput_data {
	font-size: 16px;
	margin-bottom: 30px;
}

textarea,
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="text"] {
	width: 100%;
	padding: 10px 15px;
	font-size: 14px;
	border: 1px solid #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
}

textarea {
    height: 100px;
}

textarea:focus,
input:focus {
	border: 1px solid #333;
}

/*テキスト入力データ部エラーメッセージ*/
.inputerror {
	margin: 10px 0 20px;
	font-size: 18px;
	font-weight: 900;
	color: #FF0000;
}
/*テキスト入力データ部エラー時*/
.inputerror input {
	background: #FFCCCC;
}

/* ▼スマートフォン設定▼ */
@media screen and (max-width: 799px) {
	.textinput_data {
		width: calc(90% + 10px);
		padding-left: 10px;
	}
}
/* ▲スマートフォン設定▲ */


/*ボタン*/
button {
	width: 100%;
	height: 44px;
	display: block;
	position: relative;
	text-align: center;
	cursor: pointer;
	background: #61B740;
	color: #fff;
	border: 1px solid #61B740;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	-webkit-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
	-moz-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
	-ms-transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
	transition: all 0.2s cubic-bezier(0.55, 0.085, 0.68, 0.53);
}
	button:hover {
		color: #111;
		background: #fff;
	}
	button:before {
		position: absolute;
		display: block;
		content: '';
		width: 98%;
		height: 3px;
		background: #ccc;
		bottom: -4px;
		left: 1%;
	}

/*戻るボタン*/
	.back_button button {
		background: #7B7B7B;
		border: 1px solid #7B7B7B;
	}
	.back_button button:hover {
		background: #d4d4d4;
		border: 1px solid #7B7B7B;
	}



/*＞付きリンク*/
.allowlink a {
	height: 30px;
	line-height: 30px;
	padding-left: 30px;
	background: url(../img/common/as.png) no-repeat top 50% left 10px;
	color: #F39800;
}


/*セレクトフォーム*/
.form-select {
	position: relative;
	width: 400px;
	height: 40px;
	margin-bottom: 30px;
	font-size: 14px;
	border: 1px solid #ccc;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	overflow: hidden;
}

.form-select:after {
	position: absolute;
	content: '';
	width: 0;
	height: 0;
	border-top: 6px solid transparent;
	border-left: 6px solid transparent;
	border-bottom: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #333;
	top: 50%;
	right: 10px;
	margin-top: -3px;
	pointer-events: none;
}

.form-select select {
	width: 100%;
	height: 40px;
	padding: 0 10px;
	border: none;
	position: relative;
}

/* ▼スマートフォン設定▼ */
@media screen and (max-width: 799px) {
	.form-select {
		width: 90%;
		margin-left: 10px;
	}
}
/* ▲スマートフォン設定▲ */



/* --------------------------------------------------
デザイン定義
-------------------------------------------------- */
.greentext {
	color: #007048;
}
.redtext {
	color: #FF0000;
}
.orangetext {
	color: #F39800;
}
.bg_green {
	background-color: #A8D796;
}
.bg_yellow {
	background-color: #FFFFEF;
}
.bg_red {
	background-color: #FFD9D9;
}

.bg_gray {
	background-color: #EDEDED;
}

.bg_wt {
	background-color: #FFF;
}

.bold_font {
	font-weight: 900;
}
