@charset 'utf-8';


.pageheader {
	width: 100%;
	padding-top: 25%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	overflow: hidden;
	position: relative;
}

.pageheader > .inner {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

.pageheader .cover {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	width: auto;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
	padding: 0 10px;
}

body.safearea .pageheader .cover {
	padding-left: calc(env(safe-area-inset-left) + 10px);
	padding-right: calc(env(safe-area-inset-right) + 10px);
}

.pageheader .brick {
	display: flex;
	align-items: center;
	justify-content: center;
	width: auto;
	height: 100%;
	padding: 0 30px;
	background: rgba(0,152,68,.7);
}

.pageheader .brick h1 {
	color: #fff;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.4;
}

@media only screen and (min-width: 768px) {

	.pageheader {
		height: 180px;
		padding-top: 0;
	}

	.pageheader .cover {
		padding: 0 20px;
	}

	body.safearea .pageheader .cover {
		padding-left: calc(env(safe-area-inset-left) + 20px);
		padding-right: calc(env(safe-area-inset-right) + 20px);
	}
}

@media only screen and (min-width: 1001px) {

	.pageheader {
	}

	.pageheader .brick {
		padding: 0 50px;
	}

	.pageheader .brick h1 {
		font-size: 20px;
	}
}



#contentblock .lead {
	max-width: 1000px;
	margin: 0 auto;
	padding: 20px;
}

#contentblock .lead p {
	font-size: 16px;
	line-height: 1.8;
}

#contentblock .lead p span {
	display: inline-block;
}

@media only screen and (min-width: 769px) {

	#contentblock .lead {
		padding: 40px;
	}

	#contentblock .lead p {
		font-size: 18px;
	}
}


.presentation {
	width: 100%;
	font-size: 1em;
	line-height: 1.6;
	position: relative;
}

.presentation.narrow {
	max-width: 900px;
	margin-left: auto;
	margin-right: auto;
}

.presentation > .inner {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	position: relative;
}

.presentation.half:before {
	display: block;
	content: '';
	width: 100%;
	height: 240px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

/*
.presentation.half:before {
	background-image: url(../image/business/back_tmp.jpg);
}
*/

.presentation .brick {
	width: 100%;
	padding: 10px;
	/*background: #fff;*/
	font-size: 1.1em;
}

.presentation .sentence {
	width: 100%;
}

.presentation .sentence.center {
	text-align: center;
}

.presentation .sentence:not(:last-child) {
	width: 100%;
	padding-bottom: 3em;
}

.presentation header {
	margin-bottom: 1em;
}

.presentation h1 {
}

.presentation .blockheader .label {
	font-size: 1.6rem;
}

.presentation .blockheader.deco .label {
	font-size: 2.909091em !important;
}

@media only screen and (min-width: 769px) {

	.presentation .blockheader.deco .label {
		font-size: 3.75em !important;
	}
}

.presentation h2 {
	margin-bottom: 1em;
	color: #000;
	font-size: 2em;
	font-weight: 700;
	line-height: 1.3;
}

.presentation h2 small {
	display: inline-block;
	font-size: .5em;
	font-weight: 400;
}

.presentation h2 .sup {
	display: inline-block;
}

.presentation header + h2 {
	margin-top: -.75em;
}

.presentation h3 {
	margin-bottom: 1em;
	color: #000;
	font-size: 1.6em;
	font-weight: 700;
	line-height: 1.4;
}

.presentation h3 span {
	display: inline-block;
}

.presentation h4 {
	margin-bottom: 1em;
	color: #000;
	font-size: 1.4em;
	font-weight: 700;
	line-height: 1.4;
}

.presentation h5 {
	margin-bottom: 1em;
	color: #000;
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.4;
}

.presentation p {
	font-size: 1.4em;
	line-height: 1.8;
}

.presentation a[target="_blank"]:after,
.presentation a[href$=".pdf"]:after,
.presentation a[href$=".doc"]:after,
.presentation a[href$=".docx"]:after,
.presentation a[href$=".xls"]:after,
.presentation a[href$=".xlsx"]:after {
	content: '\f109';
	margin-left: .5em;
	font-size: .85em;
	font-family: 'uiicon';
	font-weight: normal !important;
	vertical-align: middle;
}

.presentation a[href$=".pdf"]:before,
.presentation a[href$=".doc"]:before,
.presentation a[href$=".docx"]:before,
.presentation a[href$=".xls"]:before,
.presentation a[href$=".xlsx"]:before {
	content: '\f118';
	margin-right: .5em;
	font-size: .85em;
	font-family: 'uiicon';
	font-weight: normal !important;
	vertical-align: middle;
}

.presentation p:not(:last-child) {
	margin-bottom: 1.5em;
}

.presentation p strong {
	color: #d9515a;
}

.presentation .marker {
	background: linear-gradient(transparent 80%, #d9515a 0%);
}

.presentation .columns {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}

.presentation .columns:not(:last-child) {
	margin-bottom: 3em;
}

.presentation .column {
	display: flex;
	justify-content: flex-start;
	padding: 1em;
}

.presentation .column > .inner {
	display: flex;
	justify-content: flex-start;
}

.presentation .deflist {
	display: table;
}

.presentation .deflist:not(:last-child) {
	margin-bottom: 3em;
}

.presentation .deflist .row {
	display: table-row;
}

.presentation .deflist .cell {
	display: table-cell;
	padding: 1em;
}

.presentation figure {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

.presentation figure:not(:last-child) {
	margin-bottom: 1.5em;
}

.presentation .media.wide figure {
	max-width: 1000px;
}

.presentation figure img {
	width: 100%;
	height: auto;
}

.presentation figcaption {
	padding-top: .5em;
	color: #808080;
	font-size: 1.1em;
	line-height: 1.6;
	text-align: right;
}

.presentation ul,
.presentation ol {
	margin-left: 2em;
}

.presentation ul:not(:last-child),
.presentation ol:not(:last-child) {
	margin-bottom: 2em;
}

.presentation li {
	font-size: 1.4em;
	line-height: 1.6;
}

.presentation .price {
	padding-left: 2em;
	font-size: 1.2em;
	line-height: 1.6;
	text-align: right;
}

.presentation .price:not(:last-child) {
	margin-bottom: 1.5em;
}

.presentation .price > span {
	display: inline-block;
	padding-left: 1em;
	border-bottom: 2px solid #26bb68;
}

.presentation .price span span {
	color: #000;
}

.presentation .price span span.number {
	display: inline-block;
	font-size: 1.8em;
	font-weight: 700;
}

.presentation .price span span.period {
	display: inline-block;
	margin-right: 1em;
	padding: .2em .5em;
	background: #00662d;
	border-radius: 99px;
	color: #fff;
}

.presentation .price span span.note {
	display: inline-block;
}

.presentation .price span strong {
	display: inline-block;
	width: 4.5em;
	margin-right: .5em;
	font-weight: normal;
}

.presentation .price span small {
	font-size: .75em;
}

.presentation .caution:not(:last-child) {
	margin-bottom: 3em;
}

.presentation .caution p {
	margin-bottom: 0;
	font-size: 1.1em;
	line-height: 1.5;
}

.presentation .caution ul {
	margin-left: 3em;
	margin-bottom: 0;
}

.presentation .caution li {
	color: #808080;
	font-size: 1.2em;
}

.presentation .caution h5 {
	margin-bottom: .5em;
	color: #808080;
	font-size: 1.3em;
	font-weight: normal;
	line-height: 1.5;
	position: relative;
}

.presentation .btnarea:not(:last-child) {
	margin-bottom: 2em;
}

.presentation .btnarea.wide {
	font-size: 2em;
	font-weight: 700;
}

.presentation .btnarea.wide > div:not(:last-child) {
	margin-bottom: 10px;
}

.presentation .btnarea.wide a {
	width: 100%;
	max-width: 1000px;
	padding: .8em .3em;
}


.presentation table {
	width: 100%;
}

.presentation table:not(:last-child) {
	margin-bottom: 2em;
}

.presentation table th,
.presentation table td {
	padding: .8em 1em;
	border-bottom: 1px solid #ccc;
	font-size: 1em;
	line-height: 1.6;
	vertical-align: middle;
}

.presentation table th {
	text-align: left;
	white-space: nowrap;
}

.presentation table .center {
	text-align: center;
}

.presentation table .right {
	text-align: right;
}

.presentation .signature {
	color: #000 !important;
	font-size: .75em;
	text-align: right;
}

.presentation .signature .title {
	font-size: .85em;
}

.presentation .signature strong {
	color: #000 !important;
	font-size: 1.2em;
}

.presentation .signature p {
	margin: 0;
}

/*
.presentation .sup {
	display: inline-block;
	margin-top: -.5em;
	font-size: .4em;
	vertical-align: top;
}
*/
@media only screen and (min-width: 769px) {
/*
	.presentation > .inner {
		padding: 50px 0;
	}
*/
	.presentation.half:before {
		width: 50%;
		height: 100%;
		position: absolute;
		top: 0;
	}

	.presentation.right:before {
		left: 0;
	}

	.presentation.left:before {
		right: 0;
	}

	.presentation .brick {
		font-size: 1.2em;
	}

	.presentation.half .brick {
		width: 40%;
	}

	.presentation.right .brick {
		margin-left: 55%;
	}

	.presentation.left .brick {
		margin-right: 60%;
	}

	.presentation header {
		margin-bottom: 2em;
	}
}



.outlinetbl {
	font-size: 1.4em;
	line-height: 1.5;
}

.outlinetbl table {
	display: block;
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
}

.outlinetbl table th,
.outlinetbl table td {
	padding: 0;
	text-align: left;
	vertical-align: top;
}

.outlinetbl table th {
	display: inline-block;
	padding: 0 1em;
	border-bottom: 1px solid #4d4d4d;
	font-size: 1em;
	font-weight: 700;
	white-space: nowrap;
	line-height: 1.5;
}

.outlinetbl table td {
	display: block;
	padding-top: 1em;
	padding-left: 2em;
	border: none;
	font-size: 1em;
	line-height: 1.5;
}

.outlinetbl table tr {
	display: block;
	width: 100%;
	padding: 1em 0;
	border-bottom: 1px solid #4d4d4d;
}

.outlinetbl table tbody {
	display: block;
	width: 100%;
}

.outlinetbl table td ul {
	margin-left: 1.5em;
}

.outlinetbl table td ul:not(:last-child) {
	margin-bottom: .3em;
}

.outlinetbl table td li {
	font-size: 1em;
}

.outlinetbl table td li:not(:last-child) {
	margin-bottom: .3em;
}

.outlinetbl table td .caution {
	margin-top: .5em;
	padding-left: 1em;
	color: #808080;
	font-size: .8em;
	line-height: 1.5;
	position: relative;
}

.outlinetbl table td .caution::before {
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}

.outlinetbl table td .addrgrid {
	display: table;
}

.outlinetbl table td .addr {
	display: table-row;
}

.outlinetbl table td .addr span {
	display: table-cell;
	width: auto;
	vertical-align: top;
}

.outlinetbl table td .addr span.head {
	font-weight: 700;
}

.outlinetbl table td .addr:not(:last-child) span {
	padding-bottom: .5em;
}

.outlinetbl .btnarea {
	margin-top: 1em;
	text-align: left;
}

.outlinetbl .btnarea a {
	text-align: center;
	margin: 1px;
}

@media only screen and (min-width: 769px) {

	.outlinetbl {
		padding: 0;
		font-size: 1.4em;
	}

	.outlinetbl table {
		display: table;
	}

	.outlinetbl table th,
	.outlinetbl table td {
		display: table-cell;
		padding: .8em 2em;
		border: none;
	}

	.outlinetbl table th {
/* 
		width: 10em;
 */
	}

	.outlinetbl table tr {
		display: table-row;
		padding: 0;
	}

	.outlinetbl table tbody {
		display: table-row-group;
	}
}


.stepitems {
	display: flex;
	flex-wrap: wrap;
	max-width: 900px;
	margin: 0 auto;
}

.stepitems .item {
	display: flex;
	width: 100%;
	padding: 5%;
	font-size: 1rem;
	position: relative;
}

.stepitems .item > .inner {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100%;
	position: relative;
}

.stepitems .item .media {
	width: 80%;
	margin: 0 auto;
	margin-bottom: 5%;
	position: relative;
}

.stepitems .item .number {
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.stepitems .item .number span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: #00662d;
	color: #fff;
	font-size: 2em;
	font-weight: 700;
	line-height: 1;
}

.stepitems .item figure {
	margin: 0;
}

.stepitems .item figure span {
	display: inline-block;
	overflow: hidden;
}

.stepitems .item figure img {
	width: 100%;
	height: auto;
}

.stepitems .item h2 {
	margin: 0;
	margin-bottom: .8em;
	font-size: 1.5em;
	font-weight: 700;
	line-height: 1.4;
}

.stepitems .item h2 span {
	display: inline-block;
}

.stepitems .item p {
	margin: 0;
	font-size: 1em;
	line-height: 1.8;
}

.stepitems .item p:not(:last-child) {
	margin-bottom: 1.5em;
}

.stepitems .item .caution p {
	font-size: .85em;
	line-height: 1.6;
}

@media screen and (min-width: 481px) {

	.stepitems .item:not(:last-child) {
		margin-bottom: 1em;
	}

	.stepitems .item > .inner {
		flex-direction: row;
	}

	.stepitems .item .media {
		width: 32%;
		margin: 0;
	}

	.stepitems .item .sentence {
		width: 68%;
		margin: 0;
		padding-left: 7%;
	}
}

@media screen and (min-width: 769px) {

	.stepitems .item h2 {
		font-size: 1.9em;
	}
}

@media screen and (min-width: 1001px) {

	.stepitems .item {
		padding: 2%;
	}
}


.griditems {
	display: flex;
	flex-wrap: wrap;
}

.griditems .item {
	display: flex;
	width: 100%;
	padding: 5%;
}

.griditems .item > .inner {
	display: flex;
	flex-direction: column;
	width: 100%;
	position: relative;
}

.griditems .item .media {
	width: 80%;
	margin: 0 auto;
	margin-bottom: 5%;
	position: relative;
}

.griditems .item .number {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
}

.griditems .item .number span {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: #00662d;
	color: #fff;
	font-size: 3em;
	font-weight: 900;
	line-height: 1;
}

.griditems .item figure {
	margin: 0;
}

.griditems .item figure span {
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
}

.griditems .item figure img {
	width: 100%;
	height: auto;
}

.griditems .item h2 {
	margin: 0;
	margin-bottom: .8em;
	font-size: 2em;
	font-weight: 700;
	line-height: 1.4;
	text-align: center;
}

.griditems .item h2 span {
	display: inline-block;
}

@media screen and (min-width: 481px) {

	.griditems .item {
		width: 50%;
	}
}

@media screen and (min-width: 1001px) {

	.griditems .item {
		width: 25%;
		padding: 2%;
	}

	.griditems .item .media {
		width: 85%;
	}

	.griditems .item h2 {
		min-height: 2.8em;
	}
}


.presentation ul.listframe {
	list-style: none;
	max-width: 600px;
	margin: 0 auto;
	padding: 0;
	font-size: 1.6em;
	text-align: center;
}

.presentation ul.listframe:not(:last-child) {
	margin-bottom: 1.5em;
}

.presentation ul.listframe li {
	padding: .5em 1.5em;
	background: #58d28e;
	color: #fff;
	font-weight: 700;
	line-height: 1.2;
}

.presentation ul.listframe li:not(:last-child) {
	margin-bottom: .4em;
}

.presentation ul.listframe li p:not(:last-child) {
	margin-bottom: .5em;
}

.presentation ul.listframe li p span {
	display: inline-block;
}

.presentation ul.listframe li .desc {
	font-size: .65em;
	font-weight: normal;
	line-height: 1.5;
}



.presentation .deflist,
.presentation .deflist .row,
.presentation .deflist .cell {
	display: block;
	padding: 0;
}

.presentation .deflist:not(:last-child) {
	margin-bottom: 1.5em;
}

.presentation .deflist .row:not(:last-child) {
	margin-bottom: 1.5em;
}

.presentation .deflist .cell:nth-child(2) {
	padding-left: 2em;
}

.presentation .deflist .head {
	display: inline-block;
	margin-bottom: .6em;
	padding: .3em 1.2em;
	background: #ccc;
	white-space: nowrap;
}

@media only screen and (min-width: 769px) {

	.presentation .deflist .row {
		display: table-row;
		margin: 0;
	}

	.presentation .deflist .cell {
		display: table-cell;
		padding: 1em;
	}

	.presentation .deflist .head {
		transform: translateY(.5em);
	}
}
