/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

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;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

li a.seminar {
	font-weight: 800;
	color: #e7f738;
}

body {
	line-height: 1;
	font-family:  "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", "sans-serif" !important;
}


article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

nav ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
}

/* change colours to suit your needs */
ins {
	background-color: #ff9;
	color: #000;
	text-decoration: none;
}

/* change colours to suit your needs */
mark {
	background-color: #ff9;
	color: #000;
	font-style: italic;
	font-weight: bold;
}

del {
	text-decoration: line-through;
}

abbr[title],
dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	width: 90%!important;
}

/* change border colour to suit your needs */
hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #cccccc;
	margin: 1em 0;
	padding: 0;
}

input,
select {
	vertical-align: middle;
}

li {
	list-style-type: none;
}

a {
	text-decoration: none;
}

* {
	box-sizing: border-box;
}

img {
	max-width: 100%;
	/*画像が親要素からはみ出すのを防ぐ*/
	height: auto;
}

/* ここまでリセットcss */

body {
	/*max-width: 1920px;*/
	margin: 0 auto;
	letter-spacing: 0.02em;
	font-family:  "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", "sans-serif" !important;
}


/* ここからheader */
header {
	width: 100%;
	height: 60px;
	background-color: #1D7E5C;
	position: sticky;
	position: -webkit-sticky;
	top: 0;
	z-index: 999999;
	display: flex;
	padding-top: 0.3rem;
	padding-bottom: 0.3rem;
}
header .logo {
	width: 23%;
	height: auto;
}

header .logo a {
	display: inline-block;
	height: 100%;
	box-sizing: border-box;
	padding: 1% 0 1% 15%;
}

header .logo a img {
  max-height: 100%;
  padding: 0;
  max-width: 131px;
}

header nav {
	width: 100%;
}

header nav ul {
	width: 100%;
	height: 100%;
	padding-right: 5%;
	display: flex;
	justify-content: end;
	align-items: center;
	font-size: 0.95rem;
}

header nav ul li {
	height: 50%;
	text-align: center;
	display: flex;
	align-items: center;
	padding: 10px 20px;
}

header .pc ul li {
	border-left: 1px solid #fff;
}

header .pc ul li:last-of-type {
	border-right: 1px solid #fff;
}

header nav ul li a {
	width: 100%;
	color: #fff;
	font-family:  "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", "sans-serif" !important;
	font-weight: bold;
	transition: all 1s;
	text-decoration: none;
	box-sizing: border-box;
}

header nav ul li a:hover {
	opacity: 0.6;
}

/* ハンバーガメニュー */
.sp {
	display: none;
}

.sp {
	top: 60px;
	/*headerの余白分*/
	left: 0px;
	/*headerの余白分　ヘッダーには左右に15px余白があるので、headerの子要素となる.smは15px分内側に設置されます。その余白を埋めるために左に寄せる。*/
	position: absolute;
	/*絶対配置　top　leftからの位置を絶対配置する*/
	z-index: 10;
	width: 100%;
	background-color: rgba(34, 49, 52, 0.9);
}

.sp ul {
	flex-direction: column;
	/*ulのflexboxを縦並びにする*/
}

.sp ul li a {
	text-align: center;
	/*メニューリストの文字を中央寄せ*/
}

#hamburger {
	display: none;
	/*高さと同じ幅*/
}

/* ここまでheader */

/* 右下固定ポップ */
.pop {
	position: fixed;
	bottom: 80px;
	right: 30px;
	width: 150px;
	height: 150px;
}

@keyframes fuwafuwa {

	0%,
	100% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-20px);
	}
}

.anime-fuwafuwa {
	animation: 2s fuwafuwa infinite;
	transition: all .5s;
	opacity: 0.9;
}

.pop:hover .anime-fuwafuwa {
	animation-play-state: paused;
	opacity: 1;
}

/*区切り線*/
/* Basic horizontal line */
.plain {
	background-color: #adadad;
	border: none;
	height: 3px;
	max-width: 1450px;
	margin: auto;
	margin-top: 0rem;
	width: 90%;
}

/* ここからmain */
main {
	/* max-width: 1920px; */
	height: 578px;
	display: flex;
	margin: 0 auto 3rem;
}

/* メイン左 */
main .main1 {
	width: 50%;
	height: 100%;
	background-image: url("../img/main-photo1.webp");
	background-position: center center;
}

.main1 .main1_contents {
	height: 100%;
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main1 .main1_contents img {
	max-width: 100%;
	max-height: 84%;
	box-sizing: border-box;
	padding: 7% 20%;
	display: block;
	margin: auto;
}


/* メイン右 */
main .main2 {
	width: 50%;
	height: 100%;
	background-image: url("../img/main-photo2.webp");
	background-position: center center;
}

.main2 .main2_contents {
	height: 100%;
	max-width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.main2 .main2_contents img {
	max-width: 100%;
	max-height: 100%;
	box-sizing: border-box;
	padding: 5%;
}

/* ここからスクロール */
/*スクロールダウン全体の場所*/
.scrolldown {
	/*描画位置※位置は適宜調整してください*/
	position: absolute;
	bottom: 1%;
	right: 50%;
	/*矢印の動き1秒かけて永遠にループ*/
	animation: arrowmove 2s ease-in-out infinite;
}

/*下からの距離が変化して全体が下→上→下に動く*/
@keyframes arrowmove {
	0% {
		bottom: 2%;
	}

	50% {
		bottom: 5%;
	}

	100% {
		bottom: 2%;
	}
}

/*Scrollテキストの描写*/
.scrolldown span {
	/*位置*/
	position: absolute;
	left: -23px;
	bottom: 20px;
	/*テキスト*/
	color: #eee;
	font-family:  "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", "sans-serif" !important;
	font-weight: bold;
}

/* 矢印 */
.scrolldown:after {
	content: "";
	/*位置*/
	position: absolute;
	bottom: -130px;
	right: -5px;
	/*形状*/
	width: 8px;
	height: 120px;
	background: #eee;
}

/* ここまでスクロール */
/* ここまでmain */

/* ここからcontent */
content {
	max-width: 1920px;
/*	display: flex; */
	justify-content: space-around;
	padding: 50px 20px 50px;
}

content .row-cols-3 h2 {
	font-size: 1.8rem;
	margin: 15px 0 21px 0px;
	color: #444;
	font-weight: bold;
	letter-spacing: 0.04em;
}

content .row-cols-3 p {
	line-height: 1.9rem;
}

content .row-cols-3 a {
	transition: all .5s;
}

content .row-cols-3 a:hover {
	opacity: 0.6;
}

.row {
	display: flex;
	justify-content: center;
	align-items: center;
	/*align-items: stretch;*/
	max-width: 1450px;
	margin: auto;
	width: 90%;
}



/* ここまでcontent */

/* ここからフッター */
footer {
	/*max-width: 1920px;*/
	margin: 0 auto;
	background-color: #F6F6F6;
	color: rgb(31, 31, 31);
	margin-top: 7rem;
}


footer a {
	color: rgb(39, 39, 39);
}

/* フッターCONTACT */
footer .contact {
	width: 100%;
	/*height: 500px;*/
	background-color: #F6F6F6;
	display: flex;
}

footer .contact {
	width: 100%;
	/*height: 500px;*/
	background-color: #f6f6f600;
	display: flex;
	max-width: 1450px;
	width: 90%;
	margin: auto;
}

.contact .contact_link a {
	text-decoration: none;
}

.contact .contact_link p {
	margin-bottom: 0;
}

/* 左 */
footer .contact .left {
	width: 50%!important;
	/*padding-left: 5%;
	padding-right: 5%;*/
}

footer .contact .left h1 {
	font-size: 2.5rem;
	font-family:  "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", "sans-serif" !important;
	font-weight: bold;
	/*margin-top: 90px;*/
	color: #626880;
}

footer#footer h1 {
	font-size: 3.5rem;
}

footer .contact .left .catalog {
  font-size: 1rem;
  font-family:  "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", "sans-serif" !important;
  font-weight: bold;
  margin-top: 30px;
  line-height: 2.0625rem;
  color: #626880;
}

footer .contact .left .contact_link {
	display: flex;
	margin-top: 28px;
}

footer .contact .left .contact_link a {
	width: 220px;
	height: 50px;
	background-color: #626880;
	color: #eee;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .5s;
	font-weight: bold;
	font-size: 1.2rem;
}

footer .contact .left .contact_link a:hover {
	opacity: .6;
}

footer .contact .left .contact_link a:last-child {
	margin-left: 10px;
}

/* 右 */
footer .contact .right {
	width: 50%!important;
	display: flex;
	align-items: center;
	padding-right: 0;
}

footer .contact .right img {
  max-width: 100%;
  margin-top: -7rem;
}

/* フッターナビ */
footer .footer_nav {
	width: 100%;
	height: 270px;
	display: flex;
	justify-content: space-around;
	background: white;
}

/* footer .footer_logo {
	width: 40%;
} */

.left.col-md-6.col-sm-12.col-12 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

footer .footer_logo img {
  max-width: 367px;
  height: auto;
  padding: 100px 50px;
}
footer .footer_navlist {
	width: 65%;
	display: flex;
	align-items: center;
	padding: 0 10% 0 0;
}

footer .footer_navlist .footer_nav_top {
	width: 100%;
	padding-right: 20px;
}

footer .footer_navlist .footer_nav_top .footer_nav_top_up {
	display: flex;
	align-items: center;
	width: 100%;
	padding-bottom: 10px;
}

footer .footer_navlist .footer_nav_top .footer_nav_top_up h3 {
	margin-right: 10px;
}

footer .footer_navlist .footer_nav_top .footer_nav_top_up a {
	margin-left: 10px;
}

footer .footer_navlist .footer_nav_top .footer_nav_top_up img {
	width: 20px;
	height: 20px;
}

.footer_nav_top_down {
	border-top: 1px solid #0b0b0b;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding-top: 10px;
}

.footer_nav_top_down div {
	width: 33%;
	margin: 10px auto;
	font-weight: normal;
	padding-left: 20px;
}

.footer_nav_top_down div:nth-of-type(8) {
	font-size: 0.9rem;
}

.footer_nav_top_down div a {
	color: #1e1e1e;
	text-decoration: none;
}

/* フッターコピーライト */
footer .copy_right {
	max-width: 1920px;
	height: 50px;
	background-color: #ffffff;
	color: #242424;
	font-size: 0.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ここまでフッター */

/* ブロックの空白設定 */
/*content .row .col-md-4, content .row .col-md-6 {
	padding: 30px 3%;
}*/

content .row .col-md-6 h3 {
  padding: 10px 0 20px 0px;
  line-height: 2rem;
  font-size: 1.3rem;
  font-weight: 500;
  color: #444;
}

/* レスポンシブ */
/* 768px以下 */
@media screen and (max-width: 1080px) {
	.scrolldown {
		display: none;
	}

	header nav ul li {
    padding: 10px 11px!important;
	}
}

@media screen and (max-width: 960px) {
	header .logo a img {
		padding: 5%;
	}

	content .row-cols-3 p {
		font-size: 14px;
		letter-spacing: 0.1em;
	}

	.footer_logo {
		display: none;
	}

	footer .footer_navlist {
		width: 100%;
		padding: 10%;
	}


}

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

	.left.col-md-6.col-sm-12.col-12 {
		width: 100%!important;
}

.right.col-md-6.col-sm-12.col-12 {
		width: 100%!important;
}

	.main1 .main1_contents img {
		padding: 13%;
	}
	.pc {
		display: none;
	}

	header {
		justify-content: space-between;
	}

	header .logo a {
		padding-left: 7%;
	}

	#hamburger {
		display: block;
		background-color: transparent;
		/*透明の背景*/
		position: relative;
		box-sizing: border-box;
		padding-left: 20px;
		/*ハンバーガーの横線の位置を決めるための基準*/
		cursor: pointer;
		/*左側に余白を作り、ハンバーガーメニューを右端に配置*/
		height: 60px;
		/*ヘッダーの高さと同じ60px*/
		width: 74px;
		z-index: 99;
	}

	.icon span {
		position: absolute;
		/*親要素である#hamburgerを基準に位置を指定*/
		left: 18px;
		/*#hamburger内の左がら15pxに横線を配置（幅が60pxなので右からも15px）*/
		width: 40px;
		/*横線の幅が30px*/
		height: 4px;
		/*横線の高さが4px*/
		background-color: white;
		/*横線を白色*/
		border-radius: 8px;
		/*横線の両端の角に丸みを持たせる*/
		transition: ease 0.75s;
		/*変化の時間（easeは初期値）*/
	}

	.icon span:nth-of-type(1) {
		top: 18px;
	}

	.icon span:nth-of-type(2) {
		top: 28px;
	}

	.icon span:nth-of-type(3) {
		bottom: 18px;
	}

	.close span:nth-of-type(1) {
		transform: rotate(45deg);
		/*反時計回りに45度回転*/
		top: 38px;
	}

	.close span:nth-of-type(2) {
		opacity: 0;
	}

	.close span:nth-of-type(3) {
		transform: rotate(-45deg);
		/*時計回りに45度回転*/
		top: 38px;
	}

	.sp {
		top: 0px;
		left: 0px;
		position: absolute;
		z-index: 10;
		width: 100%;
		background-color: rgba(34, 49, 52, 0.9);
	}

	.sp ul {
		flex-direction: column;
		padding: 10% 0 2%;
	}

	header nav ul li {
		padding: 15px 30px;
	}


/*
	main {
		flex-direction: column;
	}

	main .main1 {
		width: auto;
		height: 40%;
	}

	main .main2 {
		width: auto;
		height: 50%;
	}

	.main1 .main1_contents img {
		padding: 5%;
	}

	.main2 .main2_contents img {
		padding: 5%;
	}

	main .main2 {
		width: auto;
		height: 40%;
		background-size: cover;
	}

	.main1,.main2 {
		float: left;
		width: 50%;
	}
*/

	.main1,.main2 {
		height: 200px !important;
	}
	main {
		height: 240px;
	}

	content {
		padding-top: 0;
	}

	content .row .col-md-4 {
		padding: 10px 0;
	}

	content .row .col-md-4 img {
		display: block;
		margin: 0 auto;
		max-width: 68%;
	}

	content .row .col-md-4 h2 {
		box-sizing: border-box;
		width: 100%;
		text-align: center;
	}

	content .row .col-md-4 p {
		width: 100%;
		text-align: left;
		margin-bottom: 15px; 
	}

	footer .contact .left {
		width: 100%;
		padding-left: 90px;
	}

	/*footer .contact .right {
		display: none;
	}*/

	footer .footer_navlist {
		width: 100%;
	}

	footer .footer_navlist .footer_nav_top {
		padding: 0 0;
	}

	footer .contact {
   /* height: 538px;*/
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

	footer .footer_navlist {
		padding: 0 20px;
	}

	.footer_nav_top_down div a {
		font-size: 0.8rem;
	}

	/* ブロックの空白設定 */
	content .row .col-md-4, content .row .col-md-6 {
		padding: 0;
		margin-bottom: 1rem;
	}


	@media screen and (max-width: 576px) {
		.col-sm-12 {
			flex: 0 0 auto;
			width: 100%;
			padding-left: 0%;
		}

		footer .contact .left {
			padding-left: 10%;
		}

		footer .contact .left h1 {
			margin-top: 30px;
		}

	}

	@media screen and (max-width: 420px) {
		header .logo a img {
			height: auto;
			padding-top: 5%;
		}

		.pop {
			width: 100px;
			height: 100px;
		}

		content {
			padding-top: 40px;
		}

		content .row .col-md-4 h1 {
			margin: 10px 0;
			font-size: 1.25rem;
		}

		content .row .col-md-4 p {
			line-height: 1.6rem;
		}

		/*content .row .col-md-4:nth-of-type(2) p {
			font-size: 0.9rem;
			line-height: 1.25rem;
			white-space: nowrap;
			display: inline-b*/

		main {
			height: auto;
		}

		.main2 .main2_contents img {
			padding: 15%;
		}

		.main1 .main1_contents img {
			padding: 20%;
		}

		footer .contact .left {
			padding-left: 2%;
		}

		footer .contact .left h1 {
			margin-top: 20px;
			font-size: 1.625rem;
		}

		footer .contact .left h4 {
			font-size: 0.9rem;
		}

		footer .footer_navlist {
			padding: 4%;
			font-weight: bold;
		}

		.footer_nav_top_down div {
			font-size: 0.5rem;
		}

		.footer_nav_top_down div:nth-of-type(8) {
			font-size: 0.5rem;
		}

	}
}

/*take追記*/
.row.row-cols-3.box1 {
	margin-top: 4rem;
}

.box2 {
	align-items: baseline;
}

/*ボタン*/
/*ボタン１*/
a.btn1 {
	background: #1D7E5C;
	color: white; 
	padding: 0.5rem 1rem;
	margin-top: 2rem;
	display: inline-block;
	font-weight: bold;
}

a.btn1:hover {
	opacity: 0.7;
	transition: 0.5s;
}

/*トップへ戻るボタン*/
.page-top {
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 50px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 10px rgba(0,0,0,0.3);
	z-index: 9999;
	cursor: pointer;
	transition: .3s;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.page-top img {
	max-width: 40%;
}

/*タイトル*/
h1.h1_index {
	font-size: 2rem;
	max-width: 1450px;
	margin: auto;
	width: 90%;
	margin-top: 5rem;
}

h1.h1_index img {
	max-width: 184px;
	margin-right: 8px;
}

h1.h1_index {
	font-size: 2rem;
	max-width: 1450px;
	margin: auto;
	width: 90%;
	margin-top: 5rem;
	color: #1D7E5C;
	font-weight: 700;
	display: flex;
	align-items: center;
}

@media screen and (min-width: 768px) {
.col-md-6.col-sm-12.col-12.eco {
	width: 40%;
}

.col-md-6 {
	flex: 0 0 auto;
	width: 60%;
}
}

/*スライドショー*/

.img-frame {
	position: relative;
	width: 100%;
	height: 675px;
	overflow: hidden;
	margin: 0 auto;
	margin-bottom: 4rem;
}

@media screen and (max-width: 767px){
.img-frame{
	width: 100%;
	height: 462px;
}
}
.img-01, .img-02, .img-03{
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-repeat: no-repeat;
}
.img-01{
	background-image: url('../img/097c74b1eb40bc1577d0c7436f1d4280817d3255-1920x1080.webp');
	background-position: center;

	animation: slide-animation-01 24s infinite;
}
.img-02{
	background-image: url('../img/11ea944d39f7fb4a408ecca56950b481ceeb3595-6000x4000.webp');
	background-position: center;

	animation: slide-animation-02 24s infinite;
}
.img-03{
	background-image: url('../img/4a28d3d48d2d2326dbb1f1df4ff13605d833aac6-3243x1500.webp');
	background-position: center;

	animation: slide-animation-03 24s infinite;
}
@keyframes slide-animation-01 {
	 0% {opacity: 1; transform: scale(1.0);}
 30% {opacity: 1;}
 40% {opacity: 0; transform: scale(1.15);}
 90% {opacity: 0}
100% {opacity: 1; transform: scale(1.0);}
}
@keyframes slide-animation-02 {
	 0% {opacity: 0;}
 30% {opacity: 0; transform: scale(1.1);}
 40% {opacity: 1;}
 60% {opacity: 1;}
 70% {opacity: 0; transform: scale(1.0);}
100% {opacity: 0;}
}
@keyframes slide-animation-03 {
	 0% {opacity: 0;}
 60% {opacity: 0;  transform: scale(1.0);}
 70% {opacity: 1;}
 90% {opacity: 1;}
100% {opacity: 0; transform: scale(1.1);}
}

/*スライドショー内の文字*/

.main_text {
	position: absolute;
	z-index: 2;
	background: white;
	/* margin: auto; */
	top: 50%;
	left: 50%;
	margin-right: -50%;
	transform: translate(-50%, -50%);
	padding: 3.2rem 3rem 1rem;
	/* display: inline-block; */
	/* margin: auto; */
	/* transform: translate(0, -50%); */
	text-align: center;
	color: #484848;
}


.main_img2 {
	max-width: 760px;
}

.main_text h2 {
	font-size: 1.8rem;
	font-weight: 600;
	margin-bottom: 1.3rem;
}

.main_p1 {
	font-size: 1.3rem;
	color: #1D7E5C;
	margin-bottom: 0.6rem;
}

img.main_img1 {
	margin-bottom: 2rem;
	max-width: 370px;
}

p.main_p2 {
	font-size: 1.2rem;
	font-weight: 500;
}

/*メイン画像下テキスト*/

.content1 {
	max-width: 1450px;
	width: 90%;
	margin: 0rem auto 4rem;
}

p.main_text1 {
	text-align: center;
	font-size: 1.9rem;
	font-weight: 600;
	color: #1D7E5C;
	margin-bottom: 2.2rem;
}

p.main_text1 img {
	max-height: 32px;
	margin-left: 0.5rem;
}

p.main_text2 {
	line-height: 2;
	max-width: 980px;
	margin: auto;
}

.example {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1450px;
	width: 90%;
	margin: auto;
	margin-bottom: 7rem;
}
.example img {
	width: 24%;
}

@media screen and (max-width: 1000px){
img.main_img1 {
	max-width: 253px;
}

.main_text h2 {
	font-size: 1.35rem;
	font-weight: 600;
	margin-bottom: 0.7rem;
}

.main_p1 {
	font-size: 1.1rem;
}

p.main_p2 {
	font-size: 1rem;
	font-weight: 500;
}

.main_img2 {
	max-width: 437px;
}

}

@media screen and (max-width: 768px){
img.main_img1 {
	max-width: 200px;
	margin-bottom: 1.52rem;
}

.main_img2 {
	max-width: 299px;
}

.main_text h2 {
	font-size: 1.1rem;
	margin-bottom: 0.6rem;
}

.main_p1 {
	font-size: 1rem;
}

p.main_p2 {
	font-size: 0.8rem;
}

.main_text {
	position: absolute;
	padding: 1.8rem 1rem 1rem;
	opacity: 0.96;
}

p.main_text1 {
	text-align: center;
	font-size: 1.3rem;
	line-height: 2.2;
	font-weight: 600;
	color: #1D7E5C;
	margin-bottom: 1rem;
}

.img-frame {
	margin-bottom: 1.1rem;

}

p.main_text1 img {
	max-height: 28px;

}

p.main_text2 {

	font-size: 14px;
}

.content1 {
	max-width: 1450px;
	margin: 0rem auto 2rem;
}
.example {
	flex-wrap: wrap;
}

.example img {
	width: 48%;
	margin-bottom: 1rem;
}

.example {
	margin-bottom: 3rem;
}

content .row-cols-3 h2 {
	font-size: 1.3rem;
}

h1.h1_index {
	font-size: 1.4rem;
	max-width: 1450px;
	margin: auto;
	width: 90%;
	margin-top: 3rem;
	color: #1D7E5C;
	font-weight: 700;
	display: flex;
	align-items: center;
}

.row.row-cols-3.box1 {
	margin-top: 1.2rem;
}
h1.h1_index img {
	max-width: 134px;
	margin-right: 8px;
}

content .row .col-md-6 h3 {
	padding: 0px 0 16px 0px;
	line-height: 1.6rem;
	font-size: 0.95rem;
	font-weight: 500;
	color: #444;
}

.col-md-6.col-sm-12.col-12.eco {
	margin-top: 2rem;
	margin-bottom: 1rem;
}

footer {
	margin-top: 2rem;
}

footer#footer h1 {
	font-size: 2.5rem;
}

footer .contact .left h5 {
	font-size: 0.9rem;
	margin-top: 17px;
	line-height: 2.0625rem;

}

footer .contact .right img {
	max-width: 100%;
	margin-top: 1rem;
}

footer .contact .right {
	width: 100%;
	display: flex;
	align-items: center;
	padding-right: 0;
}

footer .contact .left .contact_link a {
	font-size: 1rem;
}

.footer_nav_top_up h3 {
	font-size: 0.8rem;
}

.footer_nav_top_down div {
	width: 33%;
	margin: 10px 0;
	font-weight: normal;
	padding-right: 3%;
}


}

body p, body h1, body h2, body h3, body h4, body div, body a, body b {
	font-family:  "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP", "Yu Gothic", "Meiryo", "sans-serif" !important;
}
