body {
	width: 100%;
	margin: 0;
	box-sizing: border-box;
	/* font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
  "Hiragino Sans", "Noto Sans", Meiryo, sans-serif; */
	/* color: #333333; */
	color: #2f2f2f;
	font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/* 強制リセット */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
figure,
blockquote {
	margin: 0;
	padding: 0;
}

ul {
	list-style: none;
}

h2,
h3 {
	/* font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.12em; */
	font-size: 1.7142857143rem;
	letter-spacing: 0.15em;
}

p {
	font-size: 16px;
	line-height: 1.8;
}

@media(max-width:519px) {
	p {
		line-height: 2.3rem;
		font-size: .9rem;
	}
	
	h2,h3 {
		font-size:1.8rem;
	}
}

.button {
	background: #ff701e;
	border: 2px solid #ff701e;
	border-radius: 60px;
	color: #fff;
	display: block;
	font-weight: bold;
	max-width: 200px;
	padding: 15px 40px;
	text-align: center;
	cursor: pointer;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	text-decoration: none;
	margin: 30px auto;
}

.button:hover {
	background: #fff;
	color: #ff701e;
}

.wrapper {
	overflow: hidden;
}

/****************************        下部メニュー         **********************************/
#sp-fixed-menu {
	position: fixed;
	width: 100%;
	bottom: 0px;
	font-size: 0;
	/* opacity: 0.9; */
	z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
	width: 100%;
}

#sp-fixed-menu li {
	justify-content: center;
	align-items: center;
	/* width: 50%; */
	width: 100%;
	padding: 0;
	margin: 0;
	/* font-size: 20px; */
}

/*左側メニューを緑色に*/
/* #sp-fixed-menu li:first-child{
  background: #38b435;
} */

/*左側メニューをオレンジ色に*/
/* #sp-fixed-menu li:last-child{
  background: #f3a324;
} */

/*ボタンを調整*/
#sp-fixed-menu li a {
	color: #fff;
	text-align: center;
	display: block;
	width: 100%;

	/* padding:20px 0; */
	padding: 0;
}

#sp-fixed-menu img {
	width: 100%;
	object-fit: contain;

}

#sp-fixed-menu li a img {
	width: 100%;
	object-fit: contain;
}

.title-frame {
	width: 100%;
	max-width: 200px;
	display: block;
	margin: auto;
	margin-top: -40px;
}

.fadein {
	/* 最初は非表示 */
	transform: translateY(30px);
	opacity: 0;
	visibility: hidden;
	transition: transform 1s, opacity 1s, visibility 1s;
}

/* フェードイン時に入るクラス */
.is-fadein {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

/* SHUTTER ANIMATION */
.shutter {
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	background-color: #fff;
	z-index: 99;
	-webkit-animation: byeShutter 3.5s forwards;
	animation: byeShutter 3.5s forwards;
}

.shutter-logo {
	width: 300px;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	-webkit-animation: logo 0.8s forwards;
	animation: logo 0.8s forwards;
	animation-delay: 0.2s;
}

@keyframes byeShutter {
	50% {
		opacity: 1;
	}

	100% {
		display: none;
		opacity: 0;
		z-index: -1;
	}
}

@keyframes logo {
	0% {
		opacity: 1;
	}

	50% {
		transform: rotate(10deg);
	}

	100% {
		transform: scale(0.8);
	}
}

/* END SHUTTER ANIMATION */

/* HAMBURGER */
#hamburger {
	display: none;
}

#toggle {
	position: fixed;
	top: 30px;
	right: 30px;
}

#toggle-box {
	position: relative;
	width: 50px;
	height: 40px;
	cursor: pointer;
}

#toggle-box>span {
	width: 100%;
	height: 2px;
	left: 0;
	display: block;
	background: #000;
	position: absolute;
	transition: transform .6s ease-in-out, top .5s ease, bottom .5s ease;
}

#toggle-box>span:nth-child(1) {
	top: 0;
}

#toggle-box>span:nth-child(2) {
	top: 50%;
	transform: translatey(-50%);
}

#toggle-box>span:nth-child(3) {
	bottom: 0;
}

#toggle {
	z-index: 1000;
}

#nav-content {
	position: fixed;
	top: 0;
	right: 0;
	/* ← これ追加！ */
	width: 100vw;
	/* ← viewport幅ピッタリに！ */
	height: 100vh;
	background: #f0f8ff;
	transform: translateX(100%);
	transition: transform 0.3s ease;
	z-index: 999;
	overflow-y: auto;
	/* 長いメニューもスクロール可に！ */

}


/* #nav-content {
	z-index: 900;
	overflow-x: hidden;
	width: 50%;
	height: 100%;
	background: #EAF3F8;
	position: relative;
	position: fixed;
	top: 0;
	right: 0;
	transform: translateX(100%);
	transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1);
	text-align: center;

} */


#nav-content ul {
	list-style: none;
	display: block;
	position: absolute;
	/* top: 10%; */
	top: 8%;
	left: 8%;
	padding-left: 10px;
	width: 80%;
	line-height: 2.5em;
}

#nav-content ul li {
	width: 100%;
	border-bottom: 1px solid #08549b;
	padding: 10px 0;
}

#nav-content ul li a {
	display: block;
	text-decoration: none;
	font-size: 1em;
	font-weight: bold;
	color: #08549b;
}

#nav-content a:hover {
	opacity: 0.6;
}

.is-open {
	overflow: hidden;
}

.is-open #toggle-box>span {
	background: #fff;
}

.is-open #toggle-box>span:nth-child(1) {
	top: 50%;
	transform: rotate(45deg) translatey(-50%);
}

.is-open #toggle-box>span:nth-child(2) {
	width: 0;
}

.is-open #toggle-box>span:nth-child(3) {
	top: 50%;
	transform: rotate(-45deg) translatey(-50%);
}

.is-open #nav-content {
	z-index: 999;
	transform: translateX(0);
	width: 100%;
}


/* SM */
@media(max-width:519px) {
	#hamburger {
		display: block;
	}

	.header-top .gnav {
		display: none;
	}
}

/*PCの場合にはメニューを表示させない*/
@media (min-width: 768px) {
	.for-sp {
		display: none;
	}
}

@media(max-width:300px) {
	#toggle-box {
		width: 35px;
		height: 25px;
	}

	#nav-content ul li {
		padding: 15px 0;

	}

}


/* END HAMBURGER */



/* HEADER */
header {
	/* display: flex;
  align-items: center;  */
	position: fixed;
	z-index: 999;
	width: 100%;
	box-sizing: border-box;
	background: #fff;
	height: 180px;
}

.header-top {
	width: 100%;
}

.header-top .logo {
	/* width: 10%; */
	height: 70px;
	object-fit: contain;
	margin: 0 20px;
}

.header-top2 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-button-container {
	width: 100%;
	max-width: 1080px;
	margin-left: auto;
	padding: 10px;
}

.top-button {
	display: flex;
	/* flex-wrap: wrap; */
	justify-content: center;
	gap: 16px;
}

.top-button a {
	flex: 1 1 clamp(80px, 18%, 200px);
	max-width: 200px;
	margin: 0;
}

.top-button a img {
	width: 100%;
	height: auto;
	display: block;
}


/*********************************** ナビメニュー用CSS  ***********************************/
.gnav {
	/* margin-left: auto; */
	width: 100%;
	/* height: 70px; */
	display: flex;
	justify-content: space-between;
	padding: 20px 0 10px;
}

.gnav img {
	width: 20%;
	object-fit: contain;
	margin: 10px 0;
}

.gnav ul {
	display: flex;
	/* li要素を横並びにする */
	justify-content: space-between;
	width: 100%;
	margin: 0 auto;
	padding: 0;
}

.gnav li {
	/* list-style-type: none; */
	text-align: center;
	width: calc(100%/10);
	list-style: none;
	border-right: 1px solid #333;
	height: 30px;
}

.gnav li:nth-child(10) {
	border-right: none;
}

.gnav a {
	color: #333333;
	text-decoration: none;
	font-size: .9em;
	font-weight: bold;
}

/* .gnav li:nth-child(6) {
  background: #f1e767;
  background: -webkit-gradient(linear, left top, left bottom, from(#f1e767), to(#feb645));
  background: -webkit-linear-gradient(top, #f1e767 0%, #feb645 100%);
  background: linear-gradient(to bottom, #f1e767 0%, #feb645 100%);
}

.gnav li:nth-child(6):hover {
  background: -webkit-gradient(linear, left bottom, left top, from(#f1e767), to(#feb645));
  background: -webkit-linear-gradient(bottom, #f1e767 0%, #feb645 100%);
  background: linear-gradient(to top, #f1e767 0%, #feb645 100%);
}

.gnav li:nth-child(6) a {
  font-size: 1em;
  color: #fff;
} */

/*********************************** ナビメニュー用CSS  ***********************************/

/*スクロールダウン全体の場所*/
.scrolldown1 {
	/*描画位置※位置は適宜調整してください*/
	position: absolute;
	left: 50%;
	bottom: 100px;
	/*全体の高さ*/
	height: 50px;
	font-weight: bolder;
	z-index: 222;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
	/*描画位置*/
	position: absolute;
	left: -15px;
	top: -15px;
	/*テキストの形状*/
	/* color: #eee; */
	color: #fff;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}

/* .scrolldown1 span img {
  width: 100%;
  margin-top: -30px;
  margin-bottom: 5px;
} */

/* 線の描写 */
.scrolldown1::after {
	content: "";
	/*描画位置*/
	position: absolute;
	top: 0;
	/*線の形状*/
	width: 1px;
	height: 30px;
	/* background: #eee; */
	background: #fff;
	/*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.4s ease-in-out infinite;
	opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
	0% {
		height: 0;
		top: 0;
		opacity: 0;
	}

	30% {
		height: 30px;
		opacity: 1;
	}

	100% {
		height: 0;
		top: 50px;
		opacity: 0;
	}
}

/****************************レスポンシブ CSS（header/nav） ***********************************/
@media(max-width:1024px) {


	.header-top .logo {
		width: 100%;
		height: 70px;
		max-width: 200px;
		object-fit: contain;
	}

	.gnav ul {
		padding: 0;
		width: 100%;
	}

	/* .top-button {
		width: 700px;
	}

	.top-button a img {
		width: 150px;
	} */

	.gnav a {
		font-size: .8em;
	}

}

@media(max-width:834px) {

	.gnav a {
		font-size: .7em;
	}

	.gnav ul {
		width: 100%;
	}

	/* .top-button {
		width: 550px;
	}

	.top-button a img {
		width: 120px;
	} */

}

@media(max-width:820px) {}

@media(max-width:768px) {
	.gnav a {
		font-size: .6em;
	}

}

@media(max-width:519px) {

	header {
		height: 90px;
	}

	.header-top .logo {
		margin-right: auto;
	}

	.scrolldown1 span {
		top: -10px;
		color: #333;
	}

	.scrolldown1::after {
		top: 55px;
		height: 20px;
		background: #333;
	}

	.top-button {
		display: none;
	}

}

@media(max-width:300px) {
	header {
		height: 70px;
	}

	.header-top .logo {
		max-width: 130px;
	}

}


/* END HEADER */

/* CONTENTS-TOP */

.contents-top {
	background: url(img/bg.jpg);
	padding: 40px 20px;
	margin-top: 180px;
	text-align: center;
}

.contents-top .title {
	z-index: 111;
	background: rgba(255, 255, 255, .8);
	width: 30%;
	margin: auto;
	padding: 30px 0;
}

.contents-top .title .en {
	font-size: 1.4rem;
	letter-spacing: 2px;
	margin: 0;
}

.contents-top .title h1 {
	font-size: 2.5rem;
	margin: 0;
	color: #4780c5;
}

@media(max-width:1024px) {}

@media(max-width:834px) {
	.contents-top .title {
		width: 50%;
	}

}

@media(max-width:519px) {

	.contents-top {
		padding: 30px 10px;
		margin-top: 100px;
	}

	.contents-top .en {
		font-size: 1rem;
	}

	.contents-top h1 {
		font-size: 2rem;
		margin: 0;
	}

	.contents-top .title {
		width: 80%;
	}

	.contents-top .title h1 {
		font-size: 2rem;
		margin: 0;
		color: #4780c5;
	}

}


@media(max-width:300px) {}

/* END CONTENTS-TOP */

/* CONTENTS1 */
.contents1a-container {
	/* display: flex;
  justify-content: space-between; */
	width: 90%;
	margin: 50px auto;
}

.contents1a-title {
	width: 90%;
	margin: auto;
	text-align: center;
	padding: 70px 0;
	position: relative;
}

/* .contents1a-title::after {
	right: -100px;
	width: 380px;
	height: 255px;
	background-image: url(img/mid-img2.png);
} */

.contents1a-title::after {
	content: '';
	position: absolute;
	bottom: -30px;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -111;
}

.contents1a-title h2 {
	width: 80%;
	margin: auto;
	/* font-size: 1.5rem; */
	color: #08549b;
}

.contents1a-title h2 span {
	display: block;
}

.contents1a-title h3 {
	width: 90%;
	margin: 30px auto;
}

.contents1a-text {
	width: 70%;
	margin: auto;
}

.contents1a-text p {
	line-height: 3rem;
}

.contents1a-container2 {
	text-align: center;
	/* background-color: #EAF3F8; */
	margin: 50px auto;
	padding: 20px 0;
	background-color: #F2F2F2;
}

.contents1a-container2 img {
	width: 50%;
	display: block;
	margin: 30px auto;
}

.contents1a-container2 h2 {
	font-size: 1.8rem;
	font-weight: bold;
	color: #08549b;
}

.contents1a-container2 h2 span {
	display: block;
}

.contents1a-container2 .text {
	width: 80%;
	margin: auto;
}

.contents1a-container2 .text p {
	line-height: 3rem;
	text-align: left;
	display: inline-block;
	font-weight: normal;
}

.contents1a-container2 .text p span {
	display: block;
}

.contents1a-container3 {
	/* background-color: #EAF3F8; */
	padding: 30px 0;
}

.contents1a-area {
	display: flex;
	justify-content: space-between;
	width: 80%;
	margin: auto;
}

.contents1a-box {
	width: 44%;
	height: auto;
	margin: 0 auto;
	padding: 0 0 10px;
	text-align: center;
	border: 1px solid #333333;
	background-color: #fff;

}

.contents1a-box .title {
	font-size: 1rem;
	width: 95%;
	margin: 20px auto;
	border-bottom: 1px dotted #333333;
}

.contents1a-box .title span {
	font-weight: normal;
}

.contents1a-box p {
	font-size: .8rem;
	text-align: left;
	display: inline-block;
	line-height: 2rem;
	width: 80%;
	margin: auto;
	font-weight: normal;
}

.box2 {
	width: 80%;
	height: 300px;
	margin: 50px auto;
	padding: 10px 0;
	background-color: #fff;
}

.box2 h3 {
	font-size: 1.5rem;
}

.box2 h3 span {
	font-size: 1.8rem;
	display: block;
	text-decoration: underline;
	/* 下線 */
	text-decoration-thickness: 0.4em;
	/* 線の太さ */
	text-decoration-color: rgba(255, 228, 0, 0.4);
	/* 線の色 */
	text-underline-offset: -.1em;
	/* 線の位置。テキストに重なるようにやや上部にする */
	text-decoration-skip-ink: none;
	/* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
	color: #08549b;
}

.box2 p {
	width: 80%;
	font-size: 1rem;
	line-height: 2rem;
	font-weight: bold;
}

.yajirushi {
	width: 50%;
	display: block;
	margin: 0 auto;
}

.table-scroll {
	overflow-x: auto;
}

.table_design12 {
	border-collapse: collapse;
	table-layout: fixed;
	width: 90%;
	margin: auto;
	min-width: 700px;
	font-weight: bold;
	text-align: center;
}

.table_design12 thead th {
	padding: 1em .8em;
	border-right: 2px solid#fff;
}

.table_design12 thead th:not(:first-child) {
	background: #4d9bc1;
	color: #fff;
	font-size: 1.5rem;
	border-radius: 15px 15px 0 0;
	padding: 0.5em;
}

.table_design12 thead th span {
	font-size: .8rem;
}

.table_design12 thead th:nth-child(2) {
	background-color: #f88400;
	position: relative;
}

.table_design12 tbody {
	border: 2px solid #d2e8f1;
}

.table_design12 tbody tr {
	/* background-color: #e6f1f6; */
	border-top: 2px solid #d2e8f1;
}

/* .table_design12 tbody tr:nth-child(odd) {
  background-color: #fff;
} */
.table_design12 tbody tr {
	background-color: #fff;
}

.table_design12 td {
	border-left: 2px solid #d2e8f1;
}

.table_design12 td {
	color: #4d9bc1;
	padding: 1em;
}

.table_design12 td:nth-child(2) {
	color: #f88400;
	border-right: 2px solid #f88400;
	border-left: 2px solid #f88400;
}

.table_design12 tr:last-child td:nth-child(2) {
	border-bottom: 2px solid #f88400;
}

.table_design12 td img {
	width: 10%;
}

@media(max-width:1024px) {
	.contents1a-title {
		padding: 30px 0;
	}

	.contents1a-title h3 {
		width: 90%;
		margin: 30px auto;

	}

	.contents1a-title h3 span {
		display: block;
	}

	.contents1a-text {
		width: 95%;
	}

	.box2 {
		height: auto;
		padding: 10px 0 30px;
	}


}

@media(max-width:834px) {
	.contents1a-title {
		width: 95%;
	}

	.contents1a-title h3 {
		width: 90%;
		font-size: 1.6rem;
	}


}

@media(max-width:519px) {
	.contents1a-container {
		display: block;
		width: 100%;
	}

	.contents1a-container img {
		width: 90%;
	}

	.contents1a-title {
		padding: 0;
	}

	.contents1a-title h3 {
		font-size: 1.4rem;
	}

	.contents1a-text {
		width: 100%;
	}

	.contents1a-text p {
		line-height: 2rem;
		font-size: .8rem;
	}

	.contents1a-text p br {
		display: none;
	}

	.contents1a-container2 {
		width: 95%;
	}

	.contents1a-container2 h2 {
		font-size: 1.3rem;
	}

	.contents1a-container2 .text {
		width: 90%;
	}

	.contents1a-container2 .text p {
		line-height: 2rem;
		font-size: .8rem;
	}

	.contents1a-area {
		display: block;
		width: 100%;
	}

	.contents1a-box {
		width: 95%;
		margin: 50px auto;
	}

	.contents1a-box .title span {
		display: block;
	}

	.contents1a-box p {
		width: 90%;
	}

	.box2 {
		height: auto;
	}

	.box2 h3 {
		font-size: 1.1rem;
	}

	.box2 h3 span {
		font-size: 1.3rem;
	}

	.table_design12 td img {
		width: 40%;
	}

}


/* END CONTENTS1 */

/* CONTENTS2 */

.contents2 {
	width: 95%;
	margin: 50px auto;
	padding: 20px 0;
	background-color: #EAF3F8;
}

.contents2 a {
	max-width: 200px;
	padding: 13px 25px;
}

.contents2 h2 {
	text-align: center;
	margin: 30px auto;
	color: #08549b;
}

.contents2-container {
	width: 100%;
	margin: auto;
	display: flex;
	justify-content: space-between;
}

.contents2-box {
	width: 33%;
	margin: 0 auto;
	height: auto;
}

.contents2-box img {
	width: 90%;
	display: block;
	margin: auto;
}

.contents2-box .box--text {
	width: 93%;
	margin: auto;
	text-align: center;
}

.box--title {
	height: 100px;
	display: grid;
	place-content: center;
	place-items: center;
}

.contents2-box .box--title h3 {
	font-size: 1.3rem;
	text-decoration: underline;
	/* 下線 */
	text-decoration-thickness: 0.4em;
	/* 線の太さ */
	text-decoration-color: rgba(255, 228, 0, 0.4);
	/* 線の色 */
	text-underline-offset: -.1em;
	/* 線の位置。テキストに重なるようにやや上部にする */
	text-decoration-skip-ink: none;
	/* 下線と文字列が重なる部分でも下線が省略されない（線が途切れない） */
	margin: 15px auto;
	color: #08549b;
}


.contents2-box .box--text h3 span {
	display: block;
}

.contents2-box .box--text p {
	text-align: left;
	display: inline-block;
	font-size: .9rem;
	font-weight: lighter;
	line-height: 2rem;
	margin: 0 auto;
	width: 95%;
}

.contents2-box .box--text p span {
	display: block;
	font-size: .8rem;
}

.contents2-container2 {
	margin: 50px auto;
}

.contents2-container2 p {
	text-align: center;
}

.contents2-container2 h2 {
	font-size: 1.5rem;
	border-bottom: 1px solid #333333;
	width: 60%;
	margin: auto;
}


.contents2-area {
	display: flex;
	background-color: #fff;
	width: 95%;
	margin: auto;
	padding: 30px 0;

}

.contents2-box2 {
	width: 44%;
	margin: 0 auto;
	text-align: center;
}

.contents2-box2 img {
	width: 80%;
	display: block;
	margin: auto;
}

.contents2-box2 h3 {
	font-size: 1.3rem;
	color: #08549b;
}

.contents2-box2 p {
	line-height: 2rem;
	text-align: left;
	display: inline-block;
	width: 90%;
	margin: auto;
	font-weight: normal;
}

.box-list {
	height: auto;
	max-width: 95%;
	margin: 0 auto;
}


.box-content {
	text-align: center;
}

.box-content p {
	height: 100px;
	margin-bottom: 20px;
}

.box-content ul {
	text-align: left;
	/* border: 1px solid #333333; */
	width: 90%;
	margin: 30px auto;
	line-height: 2.5rem;
	list-style: none;
	padding: 10px;
	background-color: #EAF3F8;
	height: auto;
}

.box-content ul li {
	padding-left: 20px;
	border-bottom: 1px dashed #000;
	width: 90%;
	margin: auto;
}

.check {
	background: url(img/check.png) no-repeat;
	background-size: 15px;
	letter-spacing: 0.07em;
	background-position: left center;
}

.contents2 a {
	max-width: 200px;
	padding: 13px 25px;
}

/* .check {
  background: url(img/check.png) no-repeat;
  background-size: 18px;
  letter-spacing: 0.07em;
  background-position: left center;
} */


@media(max-width:1024px) {
	.box-content ul {
		height: auto;
	}

}

@media(max-width:834px) {
	.contents2-container {
		display: block;
	}

	.contents2-box {
		width: 80%;
		margin: 50px auto;
	}

	.contents2-box .box--title h3 {
		font-size: 1.5rem;
	}

	.contents2-area {
		display: block;
	}

	.contents2-box2 {
		width: 80%;
	}

	.contents2-box2 img {
		width: 90%;
	}

	.contents2-box2 h3 {
		font-size: 1.5rem;
	}

	.box-content ul {
		margin: 0 auto 30px;
	}

}

@media(max-width:519px) {
	.contents2-box {
		width: 99%;
		margin: 20px auto;
	}

	.contents2-box .box-text {
		width: 93%;
		margin: auto;
		text-align: center;
	}

	.contents2-box .box-title h3 {
		font-size: 1.3rem;
	}

	.contents2-box .box-title h3 span {
		display: block;
	}

	.contents2-box2 {
		width: 90%;
	}

	.contents2-box2 h3 {
		font-size: 1.3rem;
	}

	.box-content p {
		font-size: .8rem;
		line-height: 2rem;
	}

	.box-content ul li {
		width: 95%;
		font-size: .9rem;
	}

	.contents2-container2 p span {
		display: block;
	}


	.contents2 h2 span {
		display: block;
	}

	.contents2 h2 {
		font-size: 1.5rem;
	}

	.contents2-container2 h2 {
		width: 90%;
		font-size: 1.3rem;
	}

}


/* END CONTENTS2 */


/* CONTENTS3 */
.contents3 {
	width: 95%;
	margin: 50px auto;
	padding: 50px 0;
	background-color: #F7F8FA;
}

.contents3 h2 {
	text-align: center;
	/* font-size: 2.5rem; */
	font-size: 1.8rem;
	margin: auto;
	color: #08549b;
}

.contents3 p {
	line-height: 2rem;
}

.contents3 .title-text {
	width: 70%;
	margin: auto;
	text-align: center;
}

.contents3-container {
	width: 90%;
	margin: auto;
}

.contents3-container hr.bottom-line {
	border-top: 1px dashed #08549b;
	width: 100%;
}

.contents3-box {
	display: flex;
	justify-content: center;
	margin: 30px auto;
}

.contents3-box img {
	width: 30%;
	display: block;
	margin: auto;
}

.contents3-box .text {
	width: 60%;
	margin: 0 auto;
}

.contents3-box .text h3 {
	font-size: 1.4rem;
	margin: 10px auto;
	color: #08549b;
}

.contents3-box .text p {
	font-weight: normal;
	line-height: 2.2rem;
	font-size: .9rem;
}

@media (max-width: 1024px) {}

@media (max-width: 834px) {
	.contents3-box {
		display: block;
	}

	.contents3-box img {
		width: 80%;
	}

	.contents3-box .text h3 {
		font-size: 1.5rem;
		margin: 20px auto;
		text-align: center;
	}

	.contents3-box .text {
		width: 90%;
	}

}

@media (max-width: 519px) {
	.contents3-box .text {
		width: 95%;
	}

	.contents3-box img {
		width: 90%;
	}

}






/* END CONTENTS3 */

/* CONTENTS7 */
.contents7 {
	background: linear-gradient(rgba(255, 255, 255, .8), rgba(255, 255, 255, .8)), url(img/classimg.jpg) center bottom / cover no-repeat;
	text-align: center;
	padding: 30px 20px 100px;
	position: relative;
}

/* .contents7::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10,30,0,0.5);
} */

.contents7-container {
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
}

.contents7-title {
	text-align: center;
	letter-spacing: 1px;
	position: relative;
}

.contents7-title .en {
	font-size: 2rem;
	letter-spacing: 2px;
	color: #F1E96A;
	font-family: 'Lato', sans-serif;
	margin: 0;
}

.contents7-title h2 {
	font-size: 3.2rem;
	font-weight: bold;
	color: #333333;
}

.contents7-title .read {
	margin: 0;
	font-size: 1.5rem;
	color: #333333;
	line-height: 3rem;

}

.contents7-area {
	display: flex;
	justify-content: space-between;
	margin-top: 100px;

}

.contents7-box a img {
	width: 90%;
	transition: all 0.6s ease 0s;
}

.contents7-box a img:hover {
	opacity: .5;
	transform: translateY(-5px);
}


@media(max-width:1024px) {}

@media(max-width:834px) {

	.contents7-title h2 {
		font-size: 2.5rem;
	}

	.contents7-title .read {
		font-size: 1rem;
	}

	.contents7-area {
		display: block;
		margin: 0;
	}

	.contents7-box a img {
		width: 70%;
		margin: 30px auto;
	}

	.contents7-title .read {
		font-size: 1.3rem;
	}

}

@media(max-width:768px) {}

@media(max-width:519px) {
	.contents7-title h2 {
		font-size: 2rem;
	}

	.contents7-title h2 span {
		display: block;
	}

	.contents7-title img {
		width: 55%;
	}

	.contents7-title a {
		font-size: 2.5rem;
	}

	.contents7-title a img {
		width: 10%;
	}

	.contents7-title a span {
		font-size: 1rem;
	}

	.contents7-box a img {
		width: 80%;
		margin: 30px auto;
	}

}

@media(max-width: 300px) {}

@media(max-width: 300px) {}

/* END CONTENTS7 */

/* FOOTER */

.footer-container {
	display: flex;

}

.footer-map {
	width: 50%;
}

.footer-table {
	width: 50%;
	/* background: rgba(204, 204, 204, 0.8); */
	padding-bottom: 20px;
	color: #333;
}

.footer-table a {
	text-decoration: none;
	color: #333333;
	font-size: 1em;
	font-weight: lighter;
}

.footer-table p span {
	/* margin-left: 20px; */
	display: block;
}

.footer-table td span {
	display: block;
}

table {
	width: 85%;
	border-collapse: collapse;
	border-spacing: 0;
	font-size: 100%;
	margin: 30px auto;
}

tbody {
	display: table-row-group;
	vertical-align: middle;
	border-color: inherit;
}

tr {
	display: table-row;
	vertical-align: inherit;
	border-color: inherit;
	border-bottom: 2px solid gray;
}

th {
	display: table-cell;
	vertical-align: inherit;
	font-weight: bold;
	text-align: -internal-center;
	padding: 30px 0;
	white-space: nowrap;
	font-family: 'Prata', serif;
}

td {
	display: table-cell;
	vertical-align: inherit;
	padding-left: 50px;
}

.footer-bottom {
	padding: 60px 40px 0;
	display: flex;
	justify-content: space-between;
}

.footer-bottom_container {
	width: 90%;
	margin: auto;
}

.footer-bottom_container img {
	width: 20%;
	display: block;
	margin: 20px auto;
}

.footer-bottom_container ul {
	display: flex;
	justify-content: space-around;
	padding: 0;
}

.footer-bottom_container ul li {
	list-style: none;
	border-left: 2px solid #333333;
	margin: 30px 0;
	width: calc(100%/10);
	text-align: center;
	/* height: 30px; */
}

.footer-bottom_container ul li:last-child {
	border-right: 2px solid #fff;

}

.footer-bottom_container ul li a {
	text-decoration: none;
	font-size: .8em;
	font-weight: bold;
	color: #333;
}

.footer-bottom_container ul li a:hover {
	color: #fff;
}

footer .copy {
	font-size: 15px;
	line-height: 30px;
	letter-spacing: .06em;
	text-align: center;
	background-color: #0267F4;
	margin: 0;
	padding: 10px 0;
	color: #fff;
}

@media(max-width:1024px) {
	.footer-bottom_container {
		width: 100%;
	}
}

@media(max-width:834px) {

	.footer-table {
		width: 100%;
	}

	.footer-container {
		display: block;
	}

	.footer-map {
		width: 100%;
		height: 500px;
	}

	table {
		width: 65%;
	}

	.footer-bottom_container {
		width: 95%;
	}

	.footer-bottom_container ul li a {
		font-size: .6em;
	}

	.footer-bottom {
		padding: 60px 0 0;
		display: flex;
		justify-content: space-between;
	}

}

@media(max-width:519px) {

	footer {
		margin-bottom: 80px;
	}

	.footer-bottom {
		padding: 10px;
		margin-bottom: 0;
	}


	.footer-bottom_container ul {
		display: block;
		margin: 0;
		/* line-height: 2em; */
	}


	.footer-bottom_container ul li {
		border-left: none;
		border-bottom: 1px solid #333;
		width: 65%;
		margin: auto;
		padding: 13px 30px;
	}

	.footer-bottom_container ul li a {
		font-size: .8em;
	}

	.footer-bottom_container p {
		color: #fff;
		font-size: 10px;
		line-height: 30px;
		font-family: none;
	}

	.footer-bottom_container ul li:last-child {
		border-right: none;
	}

	.footer-table p span {
		display: block;
		margin: 0;
	}

	table {
		width: 90%;
	}

	.footer-bottom_container img {
		width: 70%;
		display: block;
		margin: 20px auto;
	}

}

@media(max-width:300px) {
	.footer-bottom {
		margin-bottom: 140px;
	}

	table {
		font-size: .7em;
	}

	td {
		padding-left: 30px;
	}

	.footer-bottom_container img {
		width: 70%;
		display: block;
		margin: 20px auto;
	}

	.footer-bottom_container .insta {
		width: 90%;
	}

}

/* END FOOTER */