@charset "UTF-8";
/* リセットcss */
* {
	margin: 0;
	padding: 0;
}

html {
  overflow-y: scroll;
}

body {
  margin: 0 auto;
  padding: 0 auto;
  color: #333333;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 23px;
}

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;
font-size: 100%;
font-weight: 500;
vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}

ol, ul {
list-style: none;
}

blockquote, q {
quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}

table {
border-collapse: collapse;
border-spacing: 0;
}

p {
  margin: 20px 0px;
}

/* === parts === */

.txt_orange {
	color: #ff9000;
}

.txt_red {
	color: #ff0000;
}

.txt_green {
	color: #236000;
}

.txt_13 {
	font-size: 14px;
}

.txt_16 {
	font-size: 16px;
}

.txt_18 {
	font-size: 18px;
}

.txt_19 {
	font-size: 19px;
}

.txt_20 {
	font-size: 20px;
}

.txt_25 {
	font-size: 25px;
}

.txt_center {
	text-align: center;
}

.txt_left {
	text-align: left;
}

.txt_bold {
	font-weight: bold;
}

.incident_20 {
	margin-left: 20px;
	margin-right: 20px;
}

.margin_top30 {
	margin-top: 30px;
}

.back_lightgreen {
	background-color: #e4ffd2;
	padding: 30px 0px;
}

.back_white {
	background-color: #ffffff;
	padding: 30px 0px;
}


/* aタグ */
a {
	color: #86b92c;
	text-decoration: underline;
	transition: all 0.3s ease;
}

a:hover {
	color: #a5de40;
	cursor: pointer;
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha(opacity=80)";
	-moz-opacity: 0.8;
	-khtml-opacity: 0.8;
}

/* リスト再表示 */
ul.list_on {
	list-style: disc;
	margin-left: 15px;
}

ul.list_on li {
	margin-bottom: 0.8rem;
}

/* hタグデザイン */
h1.logo_txt {
	color: #666666;
	font-size: 12px;
	padding-left: 5px;
}

.h_blue {
	color: #003e97;
	font-weight: bold;
	font-size: 30px;
}

.h_black_shadow {
	font-weight: bold;
	font-size: 30px;
	text-shadow:
		1px 1px 2px #757575;
		0 0 1em #ffffff,
		0 0 0.2em #757575;
	color: #000000;
}

.h_green {
	color: #236000;
	font-weight: bold;
	font-size: 30px;
	text-align: center;
	margin-bottom: 25px;
}

.index_green {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  background-color: #409e06;
  color: #ffffff;
  padding: 10px 23px 10px 15px;
  border-radius: 2px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08) inset;
  user-select: none;
  white-space: nowrap;
}

.index_green::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid #ffffff;
  transform: translateY(1px);
  margin-left: 6px;
}

.index_orange {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #f28d1f;
  font-size: 16px;
  font-weight: 600;
  padding: 6px 0;
}

.index_orange::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 6px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 10px solid #f28d1f;
  vertical-align: middle;
  transform: translateY(0);
}

/* ボタン */
.btn_orange {
  background: linear-gradient(#f59c34,#e67b00);
  color: #fff;
  padding: 14px 40px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
	text-decoration: none;
  display: inline-block;
	width: 100%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(179,86,0,0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
	box-sizing: content-box;
}

.btn_orange:hover,
.btn_orange:focus {
  transform: translateY(-4px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
  background: linear-gradient(#ffab4a,#ff7a00);
	color: #ffffff;
  outline: none;
}

.btn_green {
  background: linear-gradient(#2f7a00, #1f5000);
  color: #fff;
  padding: 14px 0px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
	text-decoration: none;
  display: block;
	width: 100%;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 0 rgba(20, 60, 0, 0.2);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn_green:hover,
.btn_green:focus {
  transform: translateY(-4px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
	background: linear-gradient(#368a01, #266100);
	color: #ffffff;
  outline: none;
}

/* バナー */
.banner_box {
	width: 100%;
	margin: 80px auto;
}

.banner_txt_block {
	max-width: 630px;
	color: #ffffff;
	text-align: center;
}

.banner_index {
	font-size: 30px;
	line-height: 1.35;
	font-weight: 700;
	margin-bottom: 12px;
}

.banner_txt {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 22px;
}




/* === header ===*/

#header {
  border-top: 3px solid #8cc63e;
  border-bottom: 3px solid #236000;
  background: #ffffff;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
}

.header_wrap {
  width: 950px;
  margin: 0px auto 0px auto;
}

#logo_box {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo_img {
  display: block;
  width: 84px;
  height: auto;
}

.logo_txt_block {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo_txt {
  font-size: 14px;
  font-weight: 600;
  color: #3b3b3b;
  margin: 0 0 6px 0;
  white-space: nowrap;
}

.logo_name {
  display: inline-block;
  background: #236000;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
	text-align: center;
  box-shadow: inset 0 -2px 0 rgba(0,0,0,0.08);
}


#gNav {
	display: flex;
	justify-content: center;
}

.gNav_box {
	display: flex;
	list-style: none;
	height: 40px;
	margin: 0;
	padding: 0;
	border-left: 1px solid #a1a1a1;
	border-right: 1px solid #a1a1a1;
}

.gNav_block {
	position: relative;
}

.gNav_link {
	display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: #333;
	font-size: 13px;
	font-weight: bold;
  padding: 0px 5px;
  width: 130px;
  height: 40px;
  box-sizing: border-box;
}

.gNav_block + .gNav_block {
	border-left: 1px solid #a1a1a1;
}

/* === contents ===*/
#main_contents {
	font-size: 18px;
}

.contents_wrap {
	margin: 50px auto;
}

.eyecatch_back {
	background-image: url('/img/dt_outline_eyecatch_back.png');
	background-repeat: no-repeat;
	background-position: center;
	padding: 60px 0px;
	text-align: center;
}


/* === footer ===*/

#footer {
	margin-top: 50px;
}

.fb_iframe {
	margin-bottom: 80px;
}

.fb_iframe iframe {
	display: block;
	margin: auto;
}

.footer_box {
	margin-top: 30px;
	margin-bottom: 0px;
	background-color: #8cc63e;
}

.footer_txt_block {
	margin: auto;
	display: flex;
	color: #ffffff;
}

.footer_txt {
	margin-right: auto;
}

.footer_link {
	color: #ffffff;
}

.footer_fix {
	position: fixed !important;
	z-index: 9999;
	bottom: 5px;
	right: 80px;
}


/*========= pc =========*/
@media screen and (min-width: 1230px) {
	/* === parts === */
	.pc_none {
		display: none;
	}

	/* aタグ */

	/* リスト再表示 */

	/* hタグデザイン */

	/* ボタン */
	.btn_orange {
    font-size: 18px;
    padding: 14px 0px;
  }

	/* バナー */
	.banner_back {
		overflow: hidden;
		background-image: url('/img/dt_outline_inquiry_back.png');
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}

	.banner_txt_block {
		min-height: 235px;
		padding: 80px 50px 0px 50px;
	}

	/* === contents ===*/
	.contents_wrap {
		width: 950px;
	}

	/* === footer ===*/

}


/*========= tablet =========*/
@media only screen and (min-width: 700px) and (max-width: 1229px) {
	/* === parts === */
	.tb_none {
		display: none;
	}

	/* aタグ */

	/* リスト再表示 */

	/* hタグデザイン */

	/* ボタン */
	.btn_orange {
    padding: 12px 40px;
    font-size: 16px;
  }

	/* バナー */
	.banner_back {
		overflow: hidden;
		background-image: url('/img/dt_outline_inquiry_back.png');
		background-repeat: no-repeat;
		background-position: center;
		background-size: contain;
	}

	.banner_txt_block {
		width: 65%;
		max-width: 630px;
		height: auto;
		min-height: 235px;
		padding: 60px 0px 0px 60px;
	}

	.banner_index {
		font-size: clamp(19px, 2.5vw, 29px);
	}

	.banner_txt {
		font-size: clamp(15px, 1.8vw, 18px);
	}

	.banner_txt_block .btn_orange {
		width: 60%;
	}
}

@media only screen and (min-width: 700px) and (max-width: 1000px) {
	.banner_txt_block {
		padding-top: 15vmin;
		padding-left: 5vmin;
	}

	.banner_index {
		margin-bottom: 0px;
	}

	.banner_txt {
		margin-bottom: 15px;
	}

	.banner_txt_block .btn_orange {
		width: 65%;
	}
}

@media only screen and (min-width: 700px) and (max-width: 1229px) {
	/* === header ===*/
	.header_wrap {
    width: auto;
    margin: 0px 30px 30px 30px;
    max-width: 100%;
  }

  #gNav {
    width: 100%;
		margin-top: 10px;
		margin-bottom: 20px;
  }

  .gNav_box {
    flex-wrap: wrap;
    justify-content: center;
		margin: auto;
  }

  .gNav_link {
    max-width: none;
    flex: 1 1 auto;
  }

	/* === contents ===*/
	.contents_wrap {
		margin: 30px auto 30px auto;
		padding: 0px 30px;
		max-width: 950px;
	}


	/* === footer ===*/
	.footer_fix {
		bottom: 15px;
		right: 5px;
	}

	.footer_link {
		margin-right: auto;
	}

	.footer_box .contents_wrap {
		margin: 15px 15px 0px 15px;
	}
}

/*========= smartPhone =========*/
@media screen and (max-width: 699px) {
	/* === parts === */
	.sp_none {
		display: none;
	}

	.txt_20 {
		font-size: 17px;
	}

	.back_lightgreen,
	.back_white {
		padding: 15px 0px;
	}

	/* aタグ */

	/* リスト再表示 */

	/* hタグデザイン */
	.h_green,
	.h_blue {
		font-size: 20px;
	}

	.h_blue {
		text-align: center;
		margin-bottom: 15px;
	}

	.index_green {
		display: block;
		width: 90%;
		padding: 10px;
	}

	/* ボタン */
	.btn_orange {
    width: 100%;
    max-width: 360px;
    padding: 12px 18px;
    font-size: 16px;
  }

	/* バナー */
	.banner_box {
		display: block;
		background-color: #222222;
	}

	.banner_back {
		background-image: url('/img/dt_outline_inquiry_back_sp.png');
		background-position: bottom right;
		background-size: 100% auto
	}

	.banner_txt_block {
		padding: 30px 15px;
		text-align: left;
	}

	.banner_index {
		font-size: 19px;
		text-shadow: 1px 1px 3px #236000;
		margin-bottom: 0px;
	}

	.banner_txt {
		font-size: 15px;
		text-shadow: 1px 1px 3px #236000;
	}

	.banner_txt_block .btn_orange {
		width: 65%;
		margin-left: 0;
	}

	/* === header ===*/
	.header_wrap {
    width: auto;
    margin: 0px 15px 10px 15px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

	#logo_box {
		gap: 5px;
	}

  .logo_img {
    width: 50px;
  }

  .logo_txt {
    font-size: 13px;
  }

  .logo_name {
    font-size: 12px;
    padding: 4px 10px;
  }

	#gNav {
		width: 100%;
		margin-top: 10px;
		margin-bottom: 20px;
	}

	.gNav_box {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin: auto;
		border-left: none;
		border-right: none;
	}

	.gNav_block {
		width: 22%;
		box-sizing: border-box;
	}

	.gNav_block:last-child {
		border-right: 1px solid #a1a1a1;
	}

	.gNav_link {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		text-decoration: none;
		color: #333;
		font-size: 12px;
		padding: 0px 5px;
		width: 100%;
		height: 45px;
		box-sizing: border-box;
	}

	/* === contents ===*/
	.contents_wrap {
		margin: 30px 15px 10px 15px;
	}


	/* === footer ===*/
	#footer {
		margin-top: 30px;
	}

	.fb_iframe {
    position: relative;
    width: 90%;
		margin: auto;
    padding-bottom: 50%;
    height: 0;
    overflow: hidden;
  }

  .fb_iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

	.footer_box {
		background: url(/img/ip_outline_footer_sp.png) left bottom no-repeat;
		margin-top: 30px;
		padding-top: 200px;
	}

	.footer_txt_block {
		display: block;
	}

	.footer_fix {
		bottom: 15px;
		right: 5px;
	}

	.footer_txt {
		font-size: 0.7rem;
	}

	.footer_box .contents_wrap {
		margin: 15px 15px 0px 15px;
		padding-bottom: 15px;
	}
}
