.tpl-btn {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	background-color: #00a76d;
	color: #FFF;
	width: 100%;
	height: 60px;
	font-size: 18px;
	text-decoration: none;
	cursor: pointer;
}

@media screen and (min-width: 768px) {
	.tpl-btn {
		transition: background-color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), color 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	.tpl-btn:hover {
		background-color: #FFF;
		color: #00a76d;
	}
	.tpl-btn:hover:after {
		border-color: #00a76d;
	}
}

@media screen and (max-width: 767px) {
	.tpl-btn {
		height: 10.66667vw;
		font-size: 30px;
		font-size: 4vw;
	}
}

.tpl-btn:after {
	content: '';
	display: block;
	border-color: #FFF;
	border-style: solid;
	border-width: 0 1px 1px 0;
	width: 9px;
	height: 9px;
	vertical-align: middle;
	transform: rotate(-45deg);
	margin-left: 10px;
}

@media screen and (max-width: 767px) {
	.tpl-btn:after {
		display: block;
		border-color: #FFF;
		border-style: solid;
		border-width: 0 1px 1px 0;
		width: 1.86667vw;
		height: 1.86667vw;
		vertical-align: middle;
		transform: rotate(-45deg);
		margin-left: 1.33333vw;
	}
}

/* tpl-line-btn
----------------------------------------*/
.tpl-line-btn {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	background-color: #FFF;
	width: 100%;
	height: 60px;
	text-decoration: none;
	color: #424242;
	line-height: 1.2em;
	text-align: center;
	cursor: pointer;
}

@media screen and (max-width: 767px) {
	.tpl-line-btn {
		font-size: 30px;
		font-size: 4vw;
		height: 12vw;
	}
	.tpl-btn-height {
		height: 20vw;
	}
}

.tpl-line-btn:before {
	content: '';
	position: absolute;
	display: block;
	left: 0;
	right: 0;
	top: 0;
	width: 80px;
	height: 3px;
	margin: auto;
	background-color: #00a76d;
}

@media screen and (max-width: 767px) {
	.tpl-line-btn:before {
		width: 13.33333vw;
		height: 0.26667vw;
	}
}

.tpl-line-btn:after {
	content: '';
	display: block;
	border-color: #00a76d;
	border-style: solid;
	border-width: 0 2px 2px 0;
	width: 9px;
	height: 9px;
	vertical-align: middle;
	transform: rotate(-45deg);
	margin-left: 10px;
}

@media screen and (max-width: 767px) {
	.tpl-line-btn:after {
		display: block;
		border-color: #00a76d;
		border-style: solid;
		border-width: 0 1px 1px 0;
		width: 1.86667vw;
		height: 1.86667vw;
		vertical-align: middle;
		transform: rotate(-45deg);
		margin-left: 1.33333vw;
	}
}

.tpl-line-btn--full-width {
	height: 90px;
}

@media screen and (max-width: 767px) {
	.tpl-line-btn--full-width {
		height: 13.33333vw;
	}
}

.tpl-line-btn--full-width:before {
	width: 218px;
	height: 5px;
}

@media screen and (max-width: 767px) {
	.tpl-line-btn--full-width:before {
		width: 42.66667vw;
		height: 0.66667vw;
	}
}

.tpl-line-btn--transparent {
	background-color: transparent;
	border: 1px solid #FFF;
	color: #FFF;
}

.tpl-line-btn--transparent:after {
	border-color: #FFF;
}

.tpl-line-btn--transparent:hover {
	background-color: rgba(0, 167, 109, 0.3);
}

.tpl-line-btn--lined {
	border: 1px solid #c8c8c8;
}

.tpl-line-btn--pdf:after {
	transform: none;
	border: none;
	width: 20px;
	height: 22px;
	background-image: url("/english/common/img/icon-pdf.png");
	background-size: cover;
	background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
	.tpl-line-btn--pdf:after {
		width: 3.73333vw;
		height: 4vw;
	}
}

.tpl-line-btn.arrow-down:after {
	content: '';
	display: block;
	border-color: #00a76d;
	border-style: solid;
	border-width: 0 2px 2px 0;
	width: 9px;
	height: 9px;
	vertical-align: middle;
	transform: translateY(-20%) rotate(45deg);
	margin-left: 10px;
}

@media screen and (max-width: 767px) {
	.tpl-line-btn.arrow-down:after {
		display: block;
		border-color: #00a76d;
		border-style: solid;
		border-width: 0 1px 1px 0;
		width: 1.86667vw;
		height: 1.86667vw;
		vertical-align: middle;
		transform: translateY(-20%) rotate(45deg);
		margin-left: 1.33333vw;
	}
}

@media screen and (min-width: 768px) {
	.tpl-line-btn {
		transition: background-color 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, color 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	.tpl-line-btn:before {
		transition: width 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	.tpl-line-btn:after {
		transition: border-color 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	.tpl-line-btn:hover {
		background-color: #00a76d;
		color: #FFF;
	}
	.tpl-line-btn:hover:before {
		width: 100%;
	}
	.tpl-line-btn:hover:after {
		border-color: #FFF;
	}
}

.tpl-line-btn.top-line {
	border-top: 1px solid #c8c8c8;
}

/* tpl-img-panel
----------------------------------------*/
.tpl-img-panel-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1400px;
	min-width: 1200px;
	width: 85.71429%;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel-list {
		max-width: none;
		min-width: 0;
		width: 92vw;
	}
}

.tpl-img-panel {
	position: relative;
	width: 48.07692%;
	margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel {
		width: 100%;
		margin-bottom: 5.33333vw;
	}
}

.tpl-img-panel .tpl-img-panel__img {
	position: relative;
	display: block;
	width: 100%;
}

.tpl-img-panel .tpl-img-panel__img figure {
	width: 100%;
}

.tpl-img-panel .tpl-img-panel__img figure img {
	width: 100%;
}

@media screen and (min-width: 768px) {
	.tpl-img-panel .tpl-img-panel__img {
		overflow: hidden;
		cursor: pointer;
	}
	.tpl-img-panel .tpl-img-panel__img figure {
		transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	.tpl-img-panel .tpl-img-panel__img:hover figure {
		transform: scale(1.05);
	}
}

.tpl-img-panel .tpl-img-panel__content {
	position: relative;
	width: 100%;
	width: 92%;
	margin-left: auto;
	margin-top: -162px;
	pointer-events: none;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__content {
		width: 85.33333vw;
		margin-top: -22.66667vw;
	}
}

.tpl-img-panel .tpl-img-panel__title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #FFF;
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__title {
		margin-bottom: 4vw;
	}
}

.tpl-img-panel .tpl-img-panel__title figure {
	width: 86px;
	height: 86px;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__title figure {
		width: 12vw;
		height: 12vw;
	}
}

.tpl-img-panel .tpl-img-panel__title figure img {
	width: 100%;
	max-height: 100%;
}

.tpl-img-panel .tpl-img-panel__title .tpl-img-panel__head {
	flex: 1;
	font-size: 25px;
	margin-left: 25px;
	margin-right: 25px;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__title .tpl-img-panel__head {
		font-size: 36px;
		font-size: 4.8vw;
		line-height: 1.2em;
		margin-left: 2.66667vw;
		margin-right: 2.66667vw;
	}
}

.tpl-img-panel .tpl-img-panel__box {
	background-color: #FFF;
	pointer-events: all;
}

.tpl-img-panel .tpl-img-panel__box > div {
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: 7.82609%;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__box > div {
		padding: 5.33333vw 6.66667vw;
	}
}

.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-head {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-head {
		font-size: 28px;
		font-size: 3.73333vw;
	}
}

.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list {
	position: relative;
	display: flex;
	justify-content: center;
}

.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li {
	display: flex;
	flex-direction: column;
	align-content: space-between;
}

.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li:not(:only-child) {
	width: 50%;
	flex: 1;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li:not(:only-child) .data-unit {
		width: 100%;
	}
}

.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li:not(:only-child):nth-child(1) {
	padding-right: 7.82609%;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li:not(:only-child):nth-child(1) {
		padding-right: 4vw;
	}
}

.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li:not(:only-child):nth-child(2) {
	padding-left: 7.82609%;
	border-left: 1px solid #d7d7d7;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li:not(:only-child):nth-child(2) {
		padding-left: 4vw;
	}
}

.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li p.data-head {
	font-size: 16px;
	margin-bottom: 1em;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li p.data-head {
		font-size: 24px;
		font-size: 3.2vw;
		line-height: 1.3em;
	}
}

.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li > div {
	display: flex;
	align-items: flex-end;
	flex-wrap: wrap;
	flex: 1 1 auto;
	align-content: flex-end;
}

.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li p.data-num {
	white-space: nowrap;
	margin-top: auto;
	font-size: 44px;
	font-weight: bold;
	line-height: 1em;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li p.data-num {
		font-size: 54px;
		font-size: 7.2vw;
	}
}

.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li p.data-unit {
	white-space: nowrap;
	font-size: 16px;
	color: #979797;
	margin-left: 1em;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li p.data-unit {
		font-size: 24px;
		font-size: 3.2vw;
		line-height: 1.3em;
		margin-top: 0.5em;
		margin-left: 0.5em;
	}
}

.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li p.data-about {
	white-space: nowrap;
	font-size: 16px;
	color: #979797;
	margin-right: 1em;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__box .tpl-img-panel__data-list li p.data-about {
		font-size: 24px;
		font-size: 3.2vw;
		line-height: 1.3em;
		margin-top: 0.5em;
		margin-right: 0.5em;
	}
}

.tpl-img-panel .tpl-img-panel__box .note {
	color: #979797;
	font-size: 13px;
	text-align: right;
	padding-right: 1em;
	margin-top: -20px;
	margin-bottom: 0.5em;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel .tpl-img-panel__box .note {
		font-size: 22px;
		font-size: 2.93333vw;
		margin-top: -2.66667vw;
	}
}

.tpl-img-panel .tpl-line-btn {
	border-top: 1px solid #c8c8c8;
}

.tpl-img-panel-small {
	position: relative;
	width: 30.76923%;
	margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel-small {
		width: 100%;
		margin-bottom: 5.33333vw;
	}
}

.tpl-img-panel-small .tpl-img-panel__img {
	position: relative;
	display: block;
	width: 100%;
}

.tpl-img-panel-small .tpl-img-panel__img figure {
	width: 100%;
}

.tpl-img-panel-small .tpl-img-panel__img figure img {
	width: 100%;
}

@media screen and (min-width: 768px) {
	.tpl-img-panel-small .tpl-img-panel__img {
		overflow: hidden;
		cursor: pointer;
	}
	.tpl-img-panel-small .tpl-img-panel__img figure {
		transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	.tpl-img-panel-small .tpl-img-panel__img:hover figure {
		transform: scale(1.05);
	}
}

.tpl-img-panel-small .tpl-img-panel__content {
	position: relative;
	width: 100%;
	width: 87.5%;
	margin-left: auto;
	margin-top: -88px;
	pointer-events: none;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel-small .tpl-img-panel__content {
		width: 85.33333vw;
		margin-top: -15.46667vw;
	}
}

.tpl-img-panel-small .tpl-img-panel__title {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: #FFF;
	margin-bottom: 1em;
}

.tpl-img-panel-small .tpl-img-panel__title .tpl-img-panel__head {
	font-size: 25px;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel-small .tpl-img-panel__title .tpl-img-panel__head {
		font-size: 36px;
		font-size: 4.8vw;
		line-height: 1.2em;
	}
}

.tpl-img-panel-small .tpl-img-panel__box {
	background-color: #FFF;
	pointer-events: all;
}

.tpl-img-panel-small .tpl-img-panel__box > div {
	display: flex;
	flex-direction: column;
	padding: 12.85714%;
}

@media screen and (max-width: 767px) {
	.tpl-img-panel-small .tpl-img-panel__box > div {
		padding: 5.33333vw 6.66667vw;
	}
}

.tpl-breadcrumb {
	padding: 10px 0;
	background-color: #FFF;
}

@media screen and (max-width: 767px) {
	.tpl-breadcrumb {
		padding: 5px 0;
	}
}

.tpl-breadcrumb ul {
	margin: auto;
	padding: 0 30px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

@media screen and (max-width: 750px) {
	.tpl-breadcrumb ul {
		width: 100%;
		padding: 0 15px;
	}
}

.tpl-breadcrumb ul li a, .tpl-breadcrumb ul li span {
	font-weight: 500;
	font-size: 12px;
}

@media screen and (max-width: 750px) {
	.tpl-breadcrumb ul li a, .tpl-breadcrumb ul li span {
		font-size: 12px;
	}
}

.tpl-breadcrumb ul li a {
	color: #a0a0a0;
}

.tpl-breadcrumb ul li > span {
	color: #424242;
}

.tpl-breadcrumb ul li + li:before {
	display: inline-block;
	content: '>';
	margin-left: 10px;
	margin-right: 5px;
	color: #898989;
	font-weight: 500;
}

@media screen and (max-width: 750px) {
	.tpl-breadcrumb ul li + li:before {
		margin-left: 7px;
		margin-right: 5px;
	}
}

.tpl-breadcrumb.is-transparent {
	background-color: transparent;
}

.tpl-breadcrumb.is-transparent ul li > span {
	color: #FFF;
}

.tpl-ttl1 {
	text-align: center;
	margin-top: 90px;
	margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
	.tpl-ttl1 {
		margin-top: 14.66667vw;
		margin-bottom: 8vw;
	}
}

.tpl-ttl1 h3 {
	font-size: 38px;
	line-height: 1.1;
}

@media screen and (max-width: 767px) {
	.tpl-ttl1 h3 {
		font-size: 54px;
		font-size: 7.2vw;
	}
}

.tpl-ttl1:after {
	display: block;
	content: '';
	width: 60px;
	margin: auto;
	margin-top: 1.5em;
	height: 2px;
	background: #00a76d;
}

@media screen and (max-width: 767px) {
	.tpl-ttl1:after {
		width: 10.66667vw;
		height: 2px;
	}
}

.tpl-table-head {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 0.5em;
}

@media screen and (max-width: 767px) {
	.tpl-table-head {
		font-size: 34px;
		font-size: 4.53333vw;
	}
}

.tpl-banner-list li + li {
	margin-top: 60px;
}

@media screen and (max-width: 767px) {
	.tpl-banner-list li + li {
		margin-top: 8vw;
	}
}

.tpl-banner-list .banner-bg > img {
	width: 100%;
}

.tpl-banner-list .banner-content {
	position: relative;
	top: -60px;
	background: #fff;
	margin: auto;
	padding: 60px;
	display: flex;
	flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
	.tpl-banner-list .banner-content {
		justify-content: space-between;
		width: 85.71429%;
		min-width: 1200px;
		max-width: 1400px;
	}
}

@media screen and (max-width: 767px) {
	.tpl-banner-list .banner-content {
		top: -8vw;
		width: 92%;
		padding: 0;
	}
}

@media screen and (max-width: 767px) {
	.tpl-banner-list .banner-ttlarea {
		width: 100%;
		padding: 7.73333vw 5.33333vw 0;
	}
}

@media screen and (min-width: 768px) {
	.tpl-banner-list .banner-ttlarea > .banner-btn {
		width: 400px;
	}
}

.tpl-banner-list .banner-ttl {
	position: relative;
	padding-left: 25px;
}

@media screen and (max-width: 767px) {
	.tpl-banner-list .banner-ttl {
		padding-left: 4vw;
		margin-bottom: 6.66667vw;
	}
}

.tpl-banner-list .banner-ttl:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	width: 3px;
	height: 100%;
	background: #00a76d;
}

.tpl-banner-list .banner-ttl h3 {
	font-size: 25px;
	line-height: 1.1;
}

@media screen and (max-width: 767px) {
	.tpl-banner-list .banner-ttl h3 {
		font-size: 40px;
		font-size: 5.33333vw;
	}
}

@media screen and (min-width: 768px) {
	.tpl-banner-list .banner-ttl + .banner-btn {
		margin-top: 50px;
	}
}

.tpl-banner-list .banner-btn-wrapper {
	width: 400px;
}

@media screen and (max-width: 767px) {
	.tpl-banner-list .banner-btn-wrapper {
		width: 100%;
	}
}

@media screen and (min-width: 768px) {
	.tpl-banner-list .banner-btn {
		border: 1px solid #c8c8c8;
	}
}

@media screen and (max-width: 767px) {
	.tpl-banner-list .banner-btn {
		border-top: 1px solid #c8c8c8;
	}
}

.tpl-banner-list .banner-txt {
	width: calc(100% - 400px);
	padding-left: 80px;
}

@media screen and (max-width: 767px) {
	.tpl-banner-list .banner-txt {
		width: 100%;
		padding-left: 5.33333vw;
		padding-right: 5.33333vw;
		padding-bottom: 6.66667vw;
	}
}

.tpl-banner-list .banner-txt p {
	font-size: 18px;
}

@media screen and (max-width: 767px) {
	.tpl-banner-list .banner-txt p {
		font-size: 30px;
		font-size: 4vw;
	}
}

.tpl-inner {
	margin-left: auto;
	margin-right: auto;
	width: 100%;
}

@media screen and (min-width: 768px) {
	.tpl-inner {
		width: 85.71429%;
		min-width: 1200px;
		max-width: 1400px;
	}
}

@media screen and (max-width: 767px) {
	.tpl-inner {
		padding: 0 4%;
	}
}

.tpl-sectBox:first-child {
	margin-top: 100px;
}

@media screen and (max-width: 767px) {
	.tpl-sectBox:first-child {
		margin-top: 4vw;
	}
}

.tpl-sectBox {
	position: relative;
	background: #fff;
	margin: auto;
	padding: 80px;
}

@media screen and (min-width: 768px) {
	.tpl-sectBox {
		width: 85.71429%;
		min-width: 1200px;
		max-width: 1400px;
	}
}

@media screen and (max-width: 767px) {
	.tpl-sectBox {
		width: 92%;
		min-width: 0;
		padding: 10.66667vw 5.33333vw;
	}
}

.tpl-sectBox + .tpl-sectBox {
	margin-top: 100px;
}

@media screen and (max-width: 767px) {
	.tpl-sectBox + .tpl-sectBox {
		margin-top: 4vw;
	}
}

.tpl-sectBox .tpl-flex {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
	.tpl-sectBox .tpl-flex {
		display: block;
	}
}

.tpl-sectBox .tpl-flex.reverse {
	flex-direction: row-reverse;
}

.tpl-sectBox .tpl-flex + .tpl-flex {
	margin-top: 70px;
}

@media screen and (max-width: 767px) {
	.tpl-sectBox .tpl-flex + .tpl-flex {
		margin-top: 9.33333vw;
	}
}

.tpl-sectBox .tpl-flex-photo {
	width: calc(50% - 30px);
}

@media screen and (max-width: 767px) {
	.tpl-sectBox .tpl-flex-photo {
		width: 100%;
		margin-bottom: 6.66667vw;
	}
}

.tpl-sectBox .tpl-flex-photo img {
	width: 100%;
}

.tpl-sectBox .tpl-flex-content {
	width: calc(50% - 30px);
}

@media screen and (max-width: 767px) {
	.tpl-sectBox .tpl-flex-content {
		width: 100%;
	}
}

.tpl-sectBox figure img {
	width: 100%;
}

.tpl-txt p + p {
	margin-top: 1em;
}

.tpl-aside {
	margin-top: 1.5em;
	font-size: 0.8em;
}

.mb50 {
	margin-bottom: 55px;
}

@media screen and (max-width: 767px) {
	.mb50 {
		margin-bottom: 4vw;
	}
}

.mb30 {
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.mb30 {
		margin-bottom: 2vw;
	}
}

.mt30 {
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.mt30 {
		margin-top: 2vw;
	}
}

.mb1 {
	margin-bottom: 1em;
}

.pl1 {
	padding-left: 1em;
}

.align-r {
	text-align: right;
}

/* table
----------------------------------------*/
.table-scroll {
	width: 100%;
	overflow: auto;
}

.tpl-table {
	width: 100%;
}

@media screen and (max-width: 767px) {
	.tpl-table {
		font-size: 24px;
		font-size: 3.2vw;
	}
}

@media screen and (max-width: 767px) {
	.tpl-table.sp-small {
		font-size: 22px;
		font-size: 2.93333vw;
	}
	.tpl-table.sp-small td, .tpl-table.sp-small th {
		padding: 2.66667vw;
	}
}

.tpl-table thead tr th {
	background-color: #e9e9e9;
}

.tpl-table thead.center tr th {
	text-align: center;
}

.tpl-table td,
.tpl-table th {
	border: 1px solid #c8c8c8;
	padding: 25px;
}

@media screen and (max-width: 767px) {
	.tpl-table td,
	.tpl-table th {
		padding: 3.33333vw;
	}
}

.tpl-table th {
	background-color: #f6f6f6;
}

.tpl-table th:nth-child(1) {
	width: 290px;
}

@media screen and (max-width: 767px) {
	.tpl-table th:nth-child(1) {
		width: 29.06667vw;
	}
}

@media screen and (min-width: 768px) {
	.tpl-table th:nth-child(2) {
		width: 1%;
	}
}

.tpl-table a {
	color: #00a76d;
	text-decoration: underline;
}

.tpl-table.th-min th {
	width: 1%;
	white-space: nowrap;
}

.tpl-table.th-min td {
	width: 100%;
}

.note {
	margin-top: 0.5em;
}

@media screen and (max-width: 767px) {
	.note {
		font-size: 24px;
		font-size: 3.2vw;
	}
}

.tpl-shoulder-txt {
	position: absolute;
	left: 0;
	top: -2em;
	text-align: right;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.tpl-shoulder-txt {
		font-size: 24px;
		font-size: 3.2vw;
	}
}

.tpl-vertical-btn-list {
	width: 600px;
	margin: 0 auto 0;
}

@media screen and (max-width: 767px) {
	.tpl-vertical-btn-list {
		width: 80vw;
	}
}

.tpl-vertical-btn-list li + li {
	margin-top: 30px;
}

@media screen and (max-width: 767px) {
	.tpl-vertical-btn-list li + li {
		margin-top: 5.33333vw;
	}
}

.tpl-horizontal-btn-list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 1040px;
	margin-left: auto;
	margin-right: auto;
}

@media screen and (max-width: 767px) {
	.tpl-horizontal-btn-list {
		width: 80vw;
	}
}

@media screen and (min-width: 768px) {
	.tpl-horizontal-btn-list li {
		width: 505px;
	}
	.tpl-horizontal-btn-list li:nth-child(n + 3) {
		margin-top: 30px;
	}
}

@media screen and (max-width: 767px) {
	.tpl-horizontal-btn-list li {
		width: 100%;
	}
	.tpl-horizontal-btn-list li + li {
		margin-top: 5.33333vw;
	}
}

.tpl-dot-list {
	margin-left: 1em;
}

.tpl-dot-list > li {
	list-style-type: disc;
	list-style-position: outside;
}

.tpl-dot-list > li + li {
	margin-top: 0.5em;
}

.tpl-num-list {
	margin-left: 1em;
}

.tpl-num-list > li {
	list-style-type: decimal;
	list-style-position: outside;
}

.tpl-num-list > li + li {
	margin-top: 1em;
}

.tpl-num-list .fb {
	font-weight: bold;
}

ul.tpl-dot-list-2 {
	margin-left: 2.5em;
}

ul.tpl-dot-list-2 > li {
	margin-top: 0.5em;
}

.tpl-middle-head {
	font-size: 26px;
	font-weight: bold;
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.tpl-middle-head {
		font-size: 34px;
		font-size: 4.53333vw;
		margin-bottom: 2vw;
	}
}

.tpl-border-box {
	border: 1px solid #c8c8c8;
	padding: 1em;
}

.ir-note {
	color: #979797;
	font-size: 13px;
	margin-top: 50px;
}
@media screen and (max-width: 767px) {
	.ir-note {
		color: #979797;
		font-size: 2.93333vw;;
		margin-top: 3.5em;
	}
}

/*# sourceMappingURL=../../../_map/english/common/css/component.css.map */
