@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;@700&display=swap');

:root {
  --navy: #004190;
  --navy_op1: #80a0c7;
  --pale_green: #439595;
  --pale_green_op1: #e0f1f4;
  --pale_green_op2: #a2d7d4;
	--red: #e60012;
	--gray: #878787;
	--black: #231815;
	--yellow: #fff100;
	--orange: #ee7800;
	--orange_op: #fff4cd;
	--active_color: #0060df;
}

body {
	background-image: url("../images/bg.png"),
                    linear-gradient(45deg, var(--pale_green_op1) 0%, var(--pale_green_op2) 100%);
	background-repeat: repeat, no-repeat;
	background-position: center center, left top;
}
main {
	display: block;
	min-height: inherit;
}

/* header & footer */
header {
  padding: 25px 0;
}
header .logo img {
  width: 20%;
	max-width: 120px;
}
footer {
	background: #fff;
  padding: 60px 0 0;
}
footer .copy #f_logo img {
  width: 107px;
}
footer .copy #copy small span {
  display: inline-block;
  margin-left: 1em;
}

/* base style */
#denkacp {
	font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.171vw, 18px);
	font-weight: 400;
	line-height: 1.8;
}
#denkacp a {
  color: #3b6daa;
  text-decoration: underline;
}
#denkacp a, #denkacp a img {
  transition: .5s;
}
#denkacp a:hover {
  color: #0A4591;
  text-decoration: none;
}
#denkacp a:hover img {
  opacity: .7;
}
#denkacp img {
	width: auto;
	max-width: 100%;
	height: auto;
}
#denkacp sup, #denkacp sub {
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

/* utility style */
#denkacp .zen_m {font-family: 'Zen Maru Gothic', sans-serif;}
#denkacp .fs_xxsmall {font-size: 75%;}
#denkacp .fs_xsmall {font-size: 85%;}
#denkacp .fs_small {font-size: 90%;}
#denkacp .fs_large {font-size: 110%;}
#denkacp .fs_xlarge {font-size: 120%;}
#denkacp .red {color: #e60012;}
#denkacp .txt_right {text-align: right;}
#denkacp .em {font-weight: bold;}
#denkacp .underline {text-decoration: underline;}
#denkacp .normal {font-weight: normal;}
#denkacp .list > li {
  position: relative;
  padding-left: 1.3em;
}
#denkacp .list.custom_0 > li {
  padding-left: 0;
}
#denkacp .list.custom_2 > li {
  padding-left: 2.3em;
}
#denkacp .list.custom_3 > li {
  padding-left: 3.3em;
}
#denkacp .list.custom_4 > li {
  padding-left: 4.3em;
}
#denkacp .list > li::before,
#denkacp .list > li > .num {
  position: absolute;
  top: 0;
  left: 0;
}
#denkacp .list.kome > li::before {
  content: "※";
}
#denkacp .list.smldot > li::before {
  content: "・";
}
#denkacp .list.dot > li::before {
  content: "●";
}
#denkacp .list.square > li::before {
  content: "■";
}
#denkacp .list.circle > li::before {
  content: "○";
}
#denkacp .list.inline,
#denkacp .list.inline > li {
	display: inline-block;
}
#denkacp .container {
	width: 92%;
	max-width: 1024px;
	margin: 0 auto;
}
#denkacp .flex {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}

/* contents style */
#denkacp .mv_block {
	text-align: center;
	padding-bottom: 3em;
	position: relative;
}
#denkacp .mv_catch {
	display: inline-block;
	font-size: clamp(16px, 1.756vw, 24px);
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: .5em;
	position: relative;
}
#denkacp .mv_catch::before,
#denkacp .mv_catch::after {
	content: "";
	width: 2px;
	height: 3em;
	background: var(--black);
	position: absolute;
	bottom: -.25em;
}
#denkacp .mv_catch::before {
	transform: rotate(-20deg);
	left: -1.5em;
}
#denkacp .mv_catch::after {
	transform: rotate(20deg);
	right: -1.25em;
}
#denkacp .mv_tit {
	width: 94%;
	max-width: 740px;
	margin: 0 auto;
}
#denkacp.coming .mv_tit {
	max-width: 872px;
}
#denkacp .mv_date {
	width: 20%;
	max-width: 196px;
	position: absolute;
	top: -1em;
	right: 0;
}
#denkacp .hojokin_block {
	background: var(--orange);
	padding: 3em 0 6em;
}
#denkacp .hojokin_tit {
	width: 100%;
	max-width: 900px;
	margin: -7.5em auto 2em;
	color: #fff;
	text-align: right;
}
#denkacp .hojokin_tit > .list {
	margin-top: .75em;
}
#denkacp .hojokin_tit > .list > li {
	line-height: 1.4;
	text-align: left;
}
#denkacp .box_tit {
	background: var(--orange_op);
	border-radius: 1.5em 1.5em 0 0;
	font-size: clamp(16px, 1.756vw, 24px);
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	padding: 1em;
}
#denkacp .box_tit + .box {
	border-radius: 0 0 1.5em 1.5em;
}
#denkacp .box {
	background: #fff;
	border-radius: 1.5em;
	padding: 3em;
}
#denkacp .d_table {
	overflow-x: auto;
}
#denkacp .d_table table tr > * {
	border: 1px solid var(--gray);
	font-weight: 400;
	line-height: 1.5;
	text-align: left;
	padding: .5em 1em;
	vertical-align: middle;
}
#denkacp .d_table table tr > th {
	white-space: nowrap;
}
#denkacp .d_table.hojokin_table th {
	font-weight: 700;
	text-align: center;
}
#denkacp .d_table.hojokin_table ._subsidy {
	font-weight: 700;
	text-align: right;
	white-space: nowrap;
}
#denkacp .d_table.hojokin_table ._subsidy .fs_large {
	font-size: clamp(20px, 2.196vw, 30px);
	line-height: 1;
	letter-spacing: -.1em;
	vertical-align: -.1em;
	margin-right: .2em;
}
#denkacp .hojokin_link {
	font-weight: 700;
	text-align: center;
	margin-top: 2em;
}
#denkacp .hojokin_link ._searchbox {
	display: inline-block;
	border: 3px solid var(--navy);
	border-radius: .5em;
	color: var(--navy);
	font-size: clamp(16px, 1.610vw, 22px);
	letter-spacing: .05em;
	padding: .25em 3.5em .25em 1em;
	margin: 0 .5em;
	vertical-align: middle;
	overflow: hidden;
	position: relative;
}
#denkacp .hojokin_link ._searchbox::after {
	content: "";
	width: 2.5em;
	height: 100%;
	background: var(--navy) url("../images/icon_search.svg") no-repeat center center / 50% auto;
	position: absolute;
	right: 0;
	top: 0;
}
#denkacp .hojokin_link ._url {
	font-weight: 400;
	margin-top: .5em;
}
#denkacp .nav_block {
	text-align: center;
}
#denkacp .nav_catch {
	display: inline-block;
	font-size: clamp(16px, 1.756vw, 24px);
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 1em;
	position: relative;
}
#denkacp .nav_catch::before,
#denkacp .nav_catch::after {
	content: "";
	width: 2px;
	height: 3em;
	background: var(--black);
	position: absolute;
	bottom: -.25em;
}
#denkacp .nav_catch::before {
	transform: rotate(-20deg);
	left: -1.5em;
}
#denkacp .nav_catch::after {
	transform: rotate(20deg);
	right: -1.25em;
}
#denkacp .nav_block nav > a {
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center;
	background: #fff;
	border: 3px solid var(--navy);
	border-radius: 1em;
	color: var(--navy);
	font-weight: 700;
	text-decoration: none;
	padding: 1em;
}
#denkacp .nav_block nav > a:hover {
	background: var(--orange_op);
}
#denkacp .nav_block nav > a + a {
	margin-top: 1em;
}
#denkacp .nav_merit {
	font-size: clamp(18px, 1.756vw, 24px);
	width: 6em;
}
#denkacp .nav_merit > span {
	display: inline-block;
	background: var(--navy);
	border-radius: 50%;
	color: #fff;
	width: 1.5em;
	height: 1.5em;
	line-height: 1.5;
	margin-left: .25em;
}
#denkacp .nav_tit {
	width: 40em;
	max-width: 100%;
	font-size: clamp(16px, 1.464vw, 20px);
	line-height: 1.4;
	text-align: left;
	padding-left: 1em;
}
#denkacp .nav_tit ._tit {
	font-size: clamp(19px, 1.903vw, 26px);
}
#denkacp .nav_tit ._tit > span {
	display: inline-block;
}
#denkacp .nav_tit ._tit .fs_xlarge {
	line-height: 1;
}
#denkacp .sec_block {
	padding: 6em 0;
}
#denkacp .sec_block + .sec_block {
	padding-top: 0;
}
#denkacp .nav_block + .sec_block {
	padding-top: 2em;
}
#denkacp .sec_tit {
	text-align: center;
}
#denkacp #campaign .sec_tit {
	width: 92%;
	max-width: 928px;
	margin: 0 auto -2em;
}
#denkacp #cost .sec_tit {
	width: 92%;
	max-width: 700px;
	margin: 0 auto -5em;
}
#denkacp .sec_stit {
	font-size: clamp(16px, 1.464vw, 20px);
	font-weight: 700;
	margin-bottom: .5em;
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	align-items: center;
}
/*
#denkacp .sec_stit::after {
	content: "";
	width: 100%;
	height: 1px;
	border-bottom: 2px solid var(--black);
}
#denkacp .sec_stit > span {
	white-space: nowrap;
	background: #fff;
	padding-right: .75em;
}
*/
#denkacp #campaign .box {
	padding-top: 3.5em;
}
#denkacp #cost .box {
	padding-top: 6em;
}
#denkacp .sec_lead {
	color: var(--navy);
	font-size: clamp(16px, 1.464vw, 20px);
	font-weight: 700;
	line-height: 1.5;
}
#denkacp .planimg {
	text-align: center;
	padding: 2em 0;
}
#denkacp .detail_block {
	margin-top: 2em;
}
#denkacp .detail_tit {
	color: var(--navy);
	font-size: clamp(16px, 1.464vw, 20px);
	font-weight: 700;
	position: relative;
	padding-left: 1.3em;
	margin-bottom: .25em;
}
#denkacp .detail_tit::before {
	content: "○";
	position: absolute;
	top: 0;
	left: 0;
}
#denkacp .detail_tit .fs_small {
	display: inline-block;
	font-size: 85%;
	font-weight: normal;
	line-height: 1.5;
}
#denkacp .detail_body {
	line-height: 1.6;
	padding-left: 1.5em;
}
#denkacp .detail_body + .detail_tit {
	margin-top: 1.5em;
}
#denkacp .detail_body > * + * {
	margin-top: 1em;
}
#denkacp .supbox {
	display: flex;
	flex-flow: row nowrap;
	justify-content: flex-start;
	align-items: center;
	border: 2px dashed var(--black);
	padding: 1em;
	margin: .75em 0;
	word-break: break-all;
}
#denkacp .supbox_tit {
	background: var(--navy);
	color: #fff;
	line-height: 1.4;
	padding: .5em;
	margin-right: 2em;
	white-space: nowrap;
	position: relative;
}
#denkacp .supbox_tit::after {
	content: "";
	width: 1em;
	height: 100%;
	background: var(--navy);
	clip-path: polygon(0 0, 0% 100%, 100% 50%);
	position: absolute;
	top: 0;
	right: -1em;
}
#denkacp .supbox ._nowrap {
	display: inline-block;
}
#denkacp .bbox {
	border: 2px solid var(--pale_green);
}
#denkacp .bbox + .bbox {
	margin-top: 1.5em;
}
#denkacp .bbox_tit {
	background: var(--pale_green);
	color: #fff;
	font-size: clamp(16px, 1.464vw, 20px);
	font-weight: bold;
	text-align: center;
	padding: .25em 1em;
}
#denkacp .bbox_tit > span {
	display: inline-block;
	position: relative;
	padding-left: 1.5em;
}
#denkacp .bbox_tit ._num {
	position: absolute;
	top: 0;
	left: 0;
}
#denkacp .bbox_stit {
	display: inline-block;
	border: 1px solid var(--navy);
	color: var(--navy);
	font-weight: bold;
	padding: .25em 1em;
	margin-bottom: .5em;
}
#denkacp .bbox_body {
	padding: 1em;
}
#denkacp .bbox_body .flex._usage {
	align-items: flex-start;
	margin-top: .75em;
}
#denkacp .bbox_body .flex._usage .bbox_stit {
	white-space: nowrap;
	margin-right: .5em;
}
#denkacp .bbox_body.flex {
	align-items: flex-start;
	flex-wrap: wrap;
}
#denkacp .bbox_body.flex > * {
	width: 48.5%;
}
#denkacp .bbox_body.flex > ._w100 {
	width: 100%;
}
#denkacp .cbox {
	background: var(--orange_op);
	padding: .75em 1em;
}
#denkacp .btn_block {
	text-align: center;
	padding: 1em 0 2em;
}
#denkacp .btn_link {
	display: inline-block;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	background: var(--navy);
	border-radius: .5em;
	color: #fff;
	padding: .5em 3em;
	box-shadow: 2px 2px 0 rgba(255,255,255,.3) inset,
							-2px -2px 0 rgba(0,0,0,.2) inset;
}
#denkacp .btn_link._red {
	font-size: clamp(18px, 1.756vw, 24px);
	background: var(--red);
	padding: .75em 3em;
	box-shadow: 3px 3px 0 rgba(255,255,255,.3) inset,
							-3px -3px 0 rgba(0,0,0,.2) inset;
}
#denkacp .btn_link:hover {
	opacity: .7;
	color: #fff;
}
#denkacp .flex.oubo_mail {
	justify-content: flex-start;
	align-items: flex-start;
	margin-top: 1em;
}
#denkacp .flex.oubo_mail > *:nth-child(2) {
	width: 30%;
	text-align: center;
}
#denkacp .flex.oubo_mail > *:nth-child(2) img {
	width: 80%;
	border: 1px solid #ccc;
}
#denkacp .flex.oubo_mail > *:nth-child(2) .btn_link {
	margin: 1em auto 0;
}
#denkacp .meritgraf {
	padding: 2em 0 1em;
	text-align: center;
}
#denkacp .annobox {
	font-size: 90%;
	margin-top: 3em;
}
#denkacp .annobox_tit {
	font-size: 110%;
	font-weight: 700;
	margin-bottom: .25em;
}
#denkacp .coming {
	font-size: clamp(22px, 2.928vw, 40px);
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
	background: var(--pale_green);
	color: #fff;
	padding: 1em;
}
#denkacp .impbox {
	border: 4px double var(--red);
	padding: 1em 1.5em;
	margin-top: 2em;
}
#denkacp .impbox .sec_stit,
#denkacp .impbox .list.square > li::before {
	color: var(--red);
}
/*
#denkacp #cost .annobox_tit,
#denkacp #cost .list.dot > li::before {
	color: var(--navy);
}
*/
#denkacp .closed {
	background: #fde8e9;
	border: 3px dashed #ed1c24;
	color: #ed1c24;
	font-size: 120%;
	line-height: 1.4;
	padding: 1em;
	margin-bottom: 2em;
}


/* -----------------------------------------------
		スマホ向けのスタイル（～768px）
----------------------------------------------- */
@media only screen and (max-width: 768px) {
	body {
		background-size: 150% auto, 100% 100%;
	}
	
	/* header & footer */
  header {
    padding: 10px 0 15px;
  }
	footer {
		padding: 0;
	}
	footer .fnav {
		padding-top: 40px;
	}
	footer .copy #copy small span {
		display: block;
	}
	
	/* base style */
  #denkacp {
    font-size: 14px;
		padding-bottom: 10vw;
  }
	#denkacp.coming {
		padding-bottom: 0;
  }
	/* utility style */
	#denkacp .flex {
		flex-direction: column;
		justify-content: center;
	}
	
	/* contents style */
	#denkacp .mv_block {
		padding-bottom: 2em;
	}
	#denkacp .mv_catch::before,
	#denkacp .mv_catch::after {
		width: 1px;
		height: 4em;
	}
	#denkacp .mv_catch::before {
		left: -1.25em;
	}
	#denkacp .mv_catch::after {
		right: -1em;
	}
	#denkacp .mv_date {
		width: 65%;
		max-width: none;
		position: static;
		margin: .5em auto 0;
	}
	#denkacp .hojokin_block {
		padding: 5vw 0 3em;
	}
	#denkacp .hojokin_tit {
		margin: -12vw auto 1em;
	}
	#denkacp .box_tit {
		border-radius: 1em 1em 0 0;
		padding: 1em;
	}
	#denkacp .box_tit + .box {
		border-radius: 0 0 1em 1em;
	}
	#denkacp .box {
		background: #fff;
		border-radius: 1em;
		padding: 1em 4%;
	}
	#denkacp .d_table table tr > * {
		padding: .5em;
	}
	#denkacp .d_table.hojokin_table ._subsidy {
		text-align: center;
	}
	#denkacp .hojokin_link ._searchbox {
		display: block;
		border-width: 1px;
		width: 16em;
		margin: .25em auto;
	}
	#denkacp .nav_catch::before,
	#denkacp .nav_catch::after {
		content: "";
		width: 1px;
	}
	#denkacp .nav_block nav > a {
		flex-direction: column;
		border-width: 2px;
		border-radius: .75em;
		padding: .5em;
	}
	#denkacp .nav_block nav > a:hover {
		background: var(--orange_op);
	}
	#denkacp .nav_merit {
		width: 100%;
	}
	#denkacp .nav_tit {
		width: 100%;
		text-align: center;
		padding-left: 0;
	}
	#denkacp .sec_block {
		padding: 3em 0;
	}
	#denkacp .nav_block + .sec_block {
		padding-top: 1em;
	}
	#denkacp #campaign .sec_tit {
		width: 70%;
		max-width: 630px;
		margin-bottom: -10vw;
	}
	#denkacp #cost .sec_tit {
		margin-bottom: -10vw;
	}
	#denkacp .sec_stit::after {
		border-bottom-width: 1px;
	}
	#denkacp #campaign .box {
		padding-top: 13vw;
	}
	#denkacp #cost .box {
		padding-top: 13vw;
	}
	#denkacp .supbox {
		flex-direction: column;
		border-width: 1px;
	}
	#denkacp .supbox_tit {
		margin: 0 0 1em 0;
		white-space: normal;
		text-align: center;
	}
	#denkacp .supbox_tit::after {
		width: 1.5em;
		height: 1em;
		clip-path: polygon(0 0, 50% 100%, 100% 0);
		top: auto;
		bottom: -.75em;
		right: calc(50% - .75em);
	}
	#denkacp .bbox {
		border-width: 1px;
	}
	#denkacp .bbox_tit {
		text-align: left;
		line-height: 1.4;
		padding: .5em 1em;
	}
	#denkacp .bbox_tit > span {
		display: block;
	}
	#denkacp .bbox_body.flex > * {
		width: 100%;
	}
	#denkacp .bbox_body.flex > * + * {
		margin-top: 1em;
	}
	#denkacp .btn_link {
		display: block;
	}
	#denkacp .flex.oubo_mail > *:nth-child(2) {
		width: 100%;
		margin-top: 1em;
	}
	#denkacp .flex.oubo_mail > *:nth-child(2) img {
		width: 70%;
		max-width: 200px;
	}
	#denkacp .flex.oubo_mail > *:nth-child(2) .btn_link {
		max-width: 10em;
	}
	#denkacp .meritgraf {
		padding-top: 1em;
	}
	#denkacp .impbox {
		border-width: 3px;
		padding: 1em 4%;
	}
	#denkacp .closed {
		border-width: 2px;
		font-size: 110%;
		text-align: left;
		padding: 1em 4%;
		margin-bottom: 1.5em;
	}

	
	


}

/* -----------------------------------------------
		タブレット＆PCのスタイル（769px～）
----------------------------------------------- */
@media only screen and (min-width: 769px) {	
  
	
	
	

}
