@charset "utf-8";

/* base
-------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure,
footer, header, main, menu, nav, section {
	display: block;
}
html {
	line-height: 1;
}
ul, ol {
	list-style-type: none;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
a img {
	border: none;
}
img {
	vertical-align: bottom;
	border: none;
	max-width: 100%;
	height: auto;
}
img[src*=".svg"] {
	width: 100%;
}
a {
	color: inherit;
	text-decoration: none;
}
*,
:before,
:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input,
button,
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font: inherit;
	border: none;
	border-radius: 0;
	outline: none;
}
textarea {
	resize: vertical;
}
input[type='checkbox'],
input[type='radio'] {
	display: none;
}
input[type='submit'],
input[type='button'],
label,
button,
select {
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}

/* フォントと背景
-------------------------------------------------------- */
html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	color: #3f3f3f;
	font-size: 1.6em;
	font-weight: 400;
	background: #fff;
	letter-spacing: 0.05em;
	line-height: 1.6;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	word-break: break-all;
	padding-top: 121px;
}
.en1 {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
}
.fc_rd { color: #aa2d37; }
.fs_s { font-size: 1.4rem;  }
.medium { font-weight: 500; }
.bold { font-weight: bold; }
.tal { text-align: left; }
.tac { text-align: center; }
.tar { text-align: right; }
@media screen and (max-width: 768px) {
body {
	padding-top: 60px;
}
}


/* リンク
-------------------------------------------------------- */
a {
	color: inherit;
	transition: .5s;
}
a:hover {
	opacity: 0.5;
}
.underline {
	text-decoration: underline;
}
.underline:hover {
	text-decoration: none;
	opacity: 1;
}
::-moz-selection {
	color: #fff;
	background: #0084ce;
}
::selection {
	color: #fff;
	background: #0084ce;
}


/* 余白
-------------------------------------------------------- */
/* margin */
.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt30 { margin-top: 30px; }
.mt40 { margin-top: 40px; }
.mt50 { margin-top: 50px; }
.mt60 { margin-top: 60px; }
.mb10 { margin-bottom: 10px; }
.mb20 { margin-bottom: 20px; }
.mb30 { margin-bottom: 30px; }
.mb40 { margin-bottom: 40px; }
.mb50 { margin-bottom: 50px; }
.mb60 { margin-bottom: 60px; }
@media screen and (max-width: 768px) {
.mt60 { margin-top: 24px; }
}

/* layout
-------------------------------------------------------- */
.inner {
	max-width: 1000px;
	width: 92%;
	margin: auto;
}
.inner.mw1290 {
	max-width: 1290px;
}
.cover {
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: block;
}
.iframe {
	position: relative;
}
.iframe iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.anchor {
	margin-top: -100px;
	padding-top: 100px;
}
@media screen and (max-width: 768px) {
}


/* flex系 */
.flex {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.nowrap {
	-webkit-flex-wrap: nowrap;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}
.fd_c {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.ai_fs {
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
}
.ai_fe {
	-webkit-box-align: end;
	-webkit-align-items: flex-end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.ai_c {
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.jc_fs {
	-webkit-box-pack: start;
	-webkit-justify-content: flex-start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}
.jc_fe {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.jc_c {
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.jc_sb {
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.jc_sa {
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
}
.order1 {
	-ms-flex-order: 1;
	-webkit-order: 1;
	order: 1;
}
.order2 {
	-ms-flex-order: 2;
	-webkit-order: 2;
	order: 2;
}


/* title
-------------------------------------------------------- */
.title1 {
	margin: 0 0 40px;
}
.title1 span {
	display: block;
}
.title1 .en {
	color: #aa2d37;
	font-size: 3.4rem;
	line-height: 1;
}
.title1 .jp {
	color: #d4969b;
	font-size: 1.2rem;
	margin: 4px 0 0;
}
.title1.is_wh .en {
	color: #fff;
}
.title2,
.api_h2 {
	font-size: 2rem;
	font-weight: bold;
	background: #e6e6e6;
	border-left: solid 9px #aa2d37;
	margin: 0 0 40px;
	padding: 16px 16px 16px 24px;
}
.api_h2 {
	margin: 0;
}
.title3 {
	font-size: 1.8rem;
	font-weight: bold;
	margin: 0 0 16px;
	padding: 0 0 0 24px;
	position: relative;
}
.title3::before {
	content: "";
	width: 15px;
	height: 5px;
	background: #aa2d37;
	display: block;
	position: absolute;
	top: 12px;
	left: 0;
}
.title4 {
	font-size: 2.2rem;
	font-weight: bold;
	border-bottom: solid 3px #aa2d37;
	margin: 0 0 24px;
	padding: 0 0 8px;
}
.title5 {
	font-size: 2rem;
	font-weight: bold;
	margin: 0 0 16px;
}
.title6 {
	font-size: 1.8rem;
	font-weight: bold;
}
.title7 {
	font-weight: bold;
	background: #e6e6e6;
	padding: 10px 16px;
}
.page_head {
	color: #fff;
	font-size: 2.6rem;
	font-weight: bold;
	background: rgb(170,45,55);
	background: linear-gradient(90deg, rgba(170,45,55,1) 0%, rgba(114,7,19,1) 100%);
	overflow: hidden;
	text-align: center;
	padding: 28px 0;
	position: relative;
}
.page_head h1 {
	position: relative;
	z-index: 1;
}
.page_head .mask {
	max-width: 155px;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 0;
}
.page_head .mask img {
}
@media screen and (max-width: 768px) {
.title1 {
	margin: 0 0 24px;
}
.title1 .en {
	font-size: 2.8rem;
}
.title2 {
	margin: 0 0 24px;
}
.title4 {
	font-size: 2rem;
}
.page_head {
	font-size: 2.4rem;
	padding: 16px 10px;
}
}


/* btn
-------------------------------------------------------- */
.btn1 {
	color: #aa2d37;
	font-weight: bold;
	width: 100%;
	background: #fff;
	border: solid 1px #aa2d37;
	display: block;
	text-align: center;
	padding: 24px 8px;
}
.mw358 {
	max-width: 358px;
}
.mw524 {
	max-width: 524px;
}
.btn_wrap1 a {
	width: 49%;
}
.btn_wrap2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.btn_wrap2 > div {
	width: 100%;

}
.btn_wrap2 > div:not(:last-child) {
	margin: 0 24px 0 0;
}

@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 768px) {
.btn_wrap1 a {
	width: 100%;
}
.btn_wrap1 a:not(:last-child) {
	margin: 0 0 10px;
}
.btn_wrap2 {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.btn_wrap2 > div:not(:last-child) {
	margin: 0 0 10px;
}}


/* link
-------------------------------------------------------- */
.link1 {
	display: inline-block;
	padding-left: 24px;
	position: relative;
}
.link1::before {
	content: "";
	width: 11px;
	height: 11px;
	background: #aa2d37;
	display: block;
	position: absolute;
	top: 8px;
	left: 0;
}
/* tbl
-------------------------------------------------------- */
/* tbl
-------------------------------------------------------- */
.scroll_tbl {
	overflow: auto;
}
.scroll_tbl table {
	white-space: nowrap;
}
.tbl1 th,
.tbl1 td {
	border: solid 1px #c7c7c7;
	padding: 16px;
}
.tbl1 th {
	font-weight: bold;
	width: 240px;
	background: #e6e6e6;
	text-align: center;
}
.tbl2 th,
.tbl2 td {
	width: 50%;
	border: solid 1px #c7c7c7;
	padding: 16px;
}
.tbl2 thead th {
	font-size: 1.4rem;
	font-weight: bold;
	background: #e6e6e6;
	text-align: center;
	padding: 8px;
}
.tbl3 th,
.tbl3 td {
	border: solid 1px #c7c7c7;
	padding: 16px;
}
.tbl3 td {
	text-align: center;
}
.tbl4 thead,
.tbl4 tbody,
.tbl5 thead,
.tbl5 tbody {
	border: solid 1px #c7c7c7;
}
.tbl4 thead th,
.tbl5 thead th {
	font-size: 1.4rem;
	font-weight: bold;
	background: #e6e6e6;
	text-align: center;
	padding: 8px;
}
.tbl4 thead th:nth-child(1),
.tbl4 tbody th:nth-child(1),
.tbl5 thead th:nth-child(1),
.tbl5 tbody th:nth-child(1) {
	border-right: solid 1px #c7c7c7;
}
.tbl4 tbody th,
.tbl4 tbody td,
.tbl5 tbody th,
.tbl5 tbody td {
	border-bottom: solid 1px #c7c7c7;
	padding: 16px;
}
.tbl4 tbody th,
.tbl5 tbody th {
	background: #f2f2f2;
}
.tbl4 tbody th:nth-child(1) {
	width: 250px;
}
.tbl5 tbody th:nth-child(1) {
	font-size: 1.4rem;
	width: 120px;
}
.tbl4 tbody td:nth-child(3),
.tbl5 tbody td:nth-child(3) {
	text-align: center;
}
.tbl4 tbody th a,
.tbl5 tbody th a {
	color: #aa2d37;
	font-weight: bold;
	text-decoration: underline;
}
.tbl4 tbody th a:hover,
.tbl5 tbody th a:hover {
	text-decoration: none;
}
.lab_type {
	font-size: 0;
}
.lab_type a {
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	min-width: 136px;
	display: inline-block;
	vertical-align: top;
	text-align: center;
	padding: 2px;
}
.lab_type .type1 a {
	background: #0071b7;
}
.lab_type .type2 a {
	background: #f28e1e;
}
.lab_type .type3 a {
	background: #008d45;
}
.lab_type .type4 a {
	background: #1b1464;
}
@media screen and (min-width: 769px) {
.lab_type li:not(:last-child) {
	margin: 0 0 4px;
}
}
@media screen and (max-width: 768px) {
.tbl1 th,
.tbl1 td {
	width: 100%;
	display: block;
}
	.tbl1 th,
	.tbl1 tr:not(:last-child) td {
		border-bottom: none;
	}
	.tbl4 thead {
		display: none;
	}
.tbl4 tbody th,
.tbl4 tbody td {
	width: 100% !important;
	display: block;
}
.tbl4 tbody th:nth-child(1) {
	border-right: none;
}
.tbl4 tbody td:nth-child(2) {
	border-bottom: none;
}
.tbl4 tbody td:nth-child(3) {
	padding-top: 0;
}
.tbl5 tbody th:nth-child(1) {
	width: 70px;
}
.lab_type {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.lab_type li {
	width: 49%;
	margin-top: 4px;
	margin-right: 2%;
}
.lab_type li:nth-child(-n + 2) {
	margin-top: 0;
}
.lab_type li:nth-child(2n) {
	margin-right: 0;
}
.lab_type a {
	width: 100%;
	display: inline-block;
}
}

/* icon
-------------------------------------------------------- */
.icon {
	position: relative;
}
.icon_popup::after,
.arrow_l::before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
}
.icon_popup.pa::after,
.arrow_l::before {
	position: absolute;
}
.icon_pdf span::after {
	content: "";
	width: 20px;
	height: 12px;
	background: url("../img/cmn/icon_pdf.svg") no-repeat;
	background-size: contain;
	display: inline-block;
	vertical-align: middle;
	margin: 0 0 0 4px;
}
.icon_popup::after {
	width: 12px;
	height: 12px;
	background-image: url("../img/cmn/icon_popup.svg");
}
.icon_popup.pa {
}
.icon_popup.pa::after {
	top: 50%;
	right: 16px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.icon_popup.inline::after {
	display: inline-block;
	margin: 0 4px;
}
.arrow_l::before {
	width: 16px;
	height: 16px;
	background-image: url("../img/cmn/arrow1.svg");
	top: 50%;
	left: 16px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

/* breadcrumb
-------------------------------------------------------- */
.breadcrumb {
	padding: 16px 4%;
}
.breadcrumb a {
	text-decoration: underline;
}
.breadcrumb a:hover {
	text-decoration: none;
}
.breadcrumb ul,
.breadcrumb ul li {
	font-size: 1.2rem;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.breadcrumb ul li:not(:last-child)::after {
	content: "";
	width: 20px;
	height: 1px;
	background: #aeaeae;
	display: block;
	margin: 0 8px;
}


/* list
-------------------------------------------------------- */
.page_nav ul {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.page_nav ul li {
	width: 32%;
	margin-top: 10px;
}
.page_nav.col5 ul li {
	width: 19%;
	margin-top: 10px;
}
.page_nav.col5 ul li a {
	padding: 16px 8px;
}
.list1 li,
.list4 li {
	width: 32%;
	margin-top: 24px;
	margin-right: 2%;
}
.list1 li a,
.list1 .txt_wrap {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
}
.list1 li a {
	width: 100%;
	height: 100%;
}
.list1 figure img {
	width: 100%;
}
.list1 .txt_wrap {
	font-size: 1.4rem;
	background: #ebebeb;
	flex: 1 1 auto;
	padding: 16px;
}
.list1_title {
	color: #aa2d37;
	font-size: 1.8rem;
	font-weight: bold;
	margin: 0 0 8px;
}
.list1_txt {
	margin: 0 0 8px;
}
.list1 .more {
	color: #aa2d37;
	font-weight: bold;
	margin-top: auto;
}
.list1 .more p {
	padding: 0 0 0 16px;
	position: relative;
}
.list1 .more p::before {
	content: "";
	width: 14px;
	height: 14px;
	background: url("../img/cmn/arrow1.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
}
.list2 > li {
	width: 49%;
	margin-top: 40px;
}
.list2 figure {
	margin: 0 0 16px;
}
.list2 figure img {
	width: 100%;
}
.list2 .list2_body {
	padding: 0 20px;
}
.list3 li {
	width: 21.26%;
}
.list3 li img {
	width: 100%;
}
.list4 figure {
	margin: 0 0 10px;
}
.list4 figure img {
	width: 100%;
}
.list4_head {
	margin: 0 0 10px;
}
.list4_head .title3 {
	margin: 0;
}
.list4_body {
	padding: 0 0 0 24px;
}
.list4.col2 li {
	width: 49%;
	margin-top: 2%;
}
.list5 {
	font-size: 1.8rem;
	font-weight: bold;
}
.list5 li:not(:last-child) {
	margin: 0 0 10px;
}
.list5 li a {
	color: #aa2d37;
	text-decoration: underline;
}
.list5 li a:hover {
	text-decoration: none;
}
.list6 li {
	width: 49.5%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 16px;
}
.list6 li p:nth-of-type(2) {
	white-space: nowrap;
	margin: 0 0 0 16px;
}
.list6 li:nth-child(3),
.list6 li:nth-child(4),
.list6 li:nth-child(7),
.list6 li:nth-child(8),
.list6 li:nth-child(11),
.list6 li:nth-child(12),
.list6 li:nth-child(15),
.list6 li:nth-child(16),
.list6 li:nth-child(19),
.list6 li:nth-child(20),
.list6 li:nth-child(23),
.list6 li:nth-child(24),
.list6 li:nth-child(27),
.list6 li:nth-child(28),
.list6 li:nth-child(31),
.list6 li:nth-child(32),
.list6 li:nth-child(35),
.list6 li:nth-child(36),
.list6 li:nth-child(39),
.list6 li:nth-child(40),
.list6 li:nth-child(43),
.list6 li:nth-child(44),
.list6 li:nth-child(47),
.list6 li:nth-child(48),
.list6 li:nth-child(51),
.list6 li:nth-child(52),
.list6 li:nth-child(55),
.list6 li:nth-child(56),
.list6 li:nth-child(59),
.list6 li:nth-child(60),
.list6 li:nth-child(63),
.list6 li:nth-child(64),
.list6 li:nth-child(67),
.list6 li:nth-child(68),
.list6 li:nth-child(71),
.list6 li:nth-child(72),
.list6 li:nth-child(75),
.list6 li:nth-child(76),
.list6 li:nth-child(79),
.list6 li:nth-child(80),
.list6 li:nth-child(83),
.list6 li:nth-child(84),
.list6 li:nth-child(87),
.list6 li:nth-child(88),
.list6 li:nth-child(91),
.list6 li:nth-child(92),
.list6 li:nth-child(95),
.list6 li:nth-child(96),
.list6 li:nth-child(99),
.list6 li:nth-child(100) {
	background: #eee;
}
.list6 li:last-child {
	font-weight: bold;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
.list7 {
	counter-reset: number 0;
}
.list7 li {
	padding: 0 0 0 20px;
	position: relative;
}
.list7 li::before {
	counter-increment: number 1;
	content: counter(number) ".";
	position: absolute;
	top: 0;
	left: 0;
}
@media screen and (min-width: 769px) {
.page_nav ul li {
	margin-right: 2%;
}
.page_nav.col5 ul li {
	margin-right: 1.25%;
}
.page_nav ul li:nth-child(-n + 3) {
	margin-top: 0;
}
.page_nav.col5 ul li:nth-child(-n + 5) {
	margin-top: 0;
}
.page_nav ul li:nth-child(3n) {
	margin-right: 0;
}
.page_nav.col5 ul li:nth-child(3n) {
	margin-right: 1.25%;
}
.page_nav.col5 ul li:nth-child(5n) {
	margin-right: 0;
}
.list1 li:nth-child(-n + 3),
.list4 li:nth-child(-n + 3) {
	margin-top: 0;
}
.list1 li:nth-child(3n),
.list4 li:nth-child(3n) {
	margin-right: 0;
}
.list2 > li {
	margin-right: 2%;
}
.list2 > li:nth-child(-n + 2) {
	margin-top: 0;
}
.list2 > li:nth-child(2n) {
	margin-right: 0;
}

.list3 li {
	margin-right: 4.9866%;
}
.list3 li:nth-child(4n) {
	margin-right: 0;
}
.list4.col2 li:nth-child(-n + 3) {
	margin-top: 2%;
}

.list4.col2 li {
	margin-right: 2%;
}
.list4.col2 li:nth-child(-n + 2) {
	margin-top: 0;
}
.list4.col2 li:nth-child(2n) {
	margin-right: 0;
}
.list6 li {
	margin-right: 1%;
}
.list6 li:nth-child(2n) {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.page_nav ul li {
	width: 100%;
}
.page_nav.col5 ul li {
	font-size: 1.4rem;
	width: 32%;
	margin-right: 2%;
}
.page_nav.col5 ul li a {
	padding: 16px 8px;
}
.page_nav.col5 ul li:nth-child(3n) {
	margin-right: 0;
}
.page_nav ul li:nth-child(1) {
	margin-top: 0;
}
.page_nav.col5 ul li:nth-child(1) {
	margin-top: 10px;
}
.page_nav.col5 ul li:nth-child(-n + 3) {
	margin-top: 0;
}
.list1 li,
.list2 > li,
.list4 li {
	width: 100%;
	margin-right: 0;
}
.list1 li:nth-child(1),
.list2 li:nth-child(1),
.list4 li:nth-child(1) {
	margin-top: 0;
}

.list3 li {
	width: 49%;
	margin-top: 2%;
	margin-right: 2%;
}
.list3 li:nth-child(-n + 2) {
	margin-top: 0;
}
.list3 li:nth-child(2n) {
	margin-right: 0;
}
.list4.col2 li {
	width: 100%;
	margin-top: 40px;
}
.list4.col2 li:nth-child(1) {
	margin-top: 0;
}
.list6 li {
	width: 100%;
}
.list6 li:nth-child(3),
.list6 li:nth-child(4),
.list6 li:nth-child(7),
.list6 li:nth-child(8),
.list6 li:nth-child(11),
.list6 li:nth-child(12),
.list6 li:nth-child(15),
.list6 li:nth-child(16),
.list6 li:nth-child(19),
.list6 li:nth-child(20),
.list6 li:nth-child(23),
.list6 li:nth-child(24),
.list6 li:nth-child(27),
.list6 li:nth-child(28),
.list6 li:nth-child(31),
.list6 li:nth-child(32),
.list6 li:nth-child(35),
.list6 li:nth-child(36),
.list6 li:nth-child(39),
.list6 li:nth-child(40),
.list6 li:nth-child(43),
.list6 li:nth-child(44),
.list6 li:nth-child(47),
.list6 li:nth-child(48),
.list6 li:nth-child(51),
.list6 li:nth-child(52),
.list6 li:nth-child(55),
.list6 li:nth-child(56),
.list6 li:nth-child(59),
.list6 li:nth-child(60),
.list6 li:nth-child(63),
.list6 li:nth-child(64),
.list6 li:nth-child(67),
.list6 li:nth-child(68),
.list6 li:nth-child(71),
.list6 li:nth-child(72),
.list6 li:nth-child(75),
.list6 li:nth-child(76),
.list6 li:nth-child(79),
.list6 li:nth-child(80),
.list6 li:nth-child(83),
.list6 li:nth-child(84),
.list6 li:nth-child(87),
.list6 li:nth-child(88),
.list6 li:nth-child(91),
.list6 li:nth-child(92),
.list6 li:nth-child(95),
.list6 li:nth-child(96),
.list6 li:nth-child(99),
.list6 li:nth-child(100) {
	background: #fff;
}
	.list6 li:nth-child(1) {
		padding-top: 0;
	}
.list6 li:nth-child(2n) {
	background: #eee !important;

}

}
/* animation
-------------------------------------------------------- */
.fade_in {
	opacity: 0;
	-webkit-transform: translateY(30px);
	transform: translateY(30px);
	transition: .3s;
}
.fade_in.is_active {
	opacity: 1;
	-webkit-transform: translateY(0);
	transform: translateY(0);
}
.is_firstView {
	opacity: 0;
	animation-name: firstView;
	animation-duration: 0.5s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}
@keyframes firstView {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		transform: translateY(30px);
	}

	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		transform: translateY(0);
	}
}
@keyframes show{
	0% {
			opacity: 0;
	}
	100% {
			opacity: .7;
	}
}

/* PC SP
-------------------------------------------------------- */
.is_sp { display: none; }
@media screen and (max-width: 768px) {
	.is_pc { display: none; }
	.is_sp { display: block; }
}


/* template
-------------------------------------------------------- */
.page_body {
	padding: 100px 0;
}
.sec_wrap {
	padding: 0 24px;
}
.column2 .main {
	width: calc(100% - 300px);
}
.column2 .side {
	width: 300px;
	background: #e6e6e6;
	padding: 24px 16px;
}
.column2 .side > div {
	position: -webkit-sticky;
	position: sticky;
	top: 80px;
}
.column2 .side > div .side_wrap:not(:last-child) {
	margin: 0 0 24px;
}
.column2 .side_title {
	font-weight: bold;
	margin: 0 0 8px;
}
.column2 .side ul li {
	border: solid 1px #aa2d37;
}
.column2 .side ul li:not(:last-child) {
	border-bottom: none;
}
.column2 .side ul li a {
	color: #720713;
	font-size: 1.4rem;
	font-weight: bold;
	background: #fff;
	display: block;
	padding: 16px;
}
.column2 .side ul li.is_active a,
.column2 .side ul li a:hover {
	color: #fff;
	background: #720713;
	opacity: 1;
}
.column2 .side ul li a span {
	display: inline-block;
	position: relative;
	padding: 0 0 0 32px;
}
.column2 .side ul li a span::before {
	content: "";
	width: 16px;
	height: 16px;
	background: url("../img/cmn/arrow1.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 4px;
	left: 0;
}
.flex_wrap1 .left {
	width: 60%;
}
.flex_wrap1 .right {
	width: 35%;
	margin: 0 0 0 5%;
}
.flex_wrap2 .left,
.flex_wrap2 .right {
	width: 48%;
}
.flex_wrap2 .right p:not(:last-child) {
	margin: 0 0 24px;
}
.flex_wrap3 .left,
.flex_wrap3 .right {
	width: 48%;
}
.flex_wrap4 .left {
	width: 75%;
}
.flex_wrap4 .right {
	width: 20%;
}

.rows .row:not(:last-child) {
	margin: 0 0 24px;
}
.teacher_list li {
	width: 23%;
	margin-top: 40px;
}
.teacher_list img {
	width: 100%;
}
.teacher_list .name {
	margin: 16px 0 0;
}
@media screen and (max-width: 1024px) {
.column2 {
	display: block;
}
.column2 .main,
.column2 .side {
	width: 100%;
}
}
@media screen and (min-width: 769px) {
.teacher_list li {
	margin-right: 2.666%;
}
.teacher_list li:nth-child(-n + 4) {
	margin-top: 0;
}
.teacher_list li:nth-child(4n) {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.page_body {
	padding: 40px 0;
}
.sec_wrap {
	padding: 0 12px;
}
.teacher_list li {
	width: 49%;
	margin-right: 2%;
}
.teacher_list li:nth-child(-n + 2) {
	margin-top: 0;
}
.teacher_list li:nth-child(2n) {
	margin-right: 0;
}
.teacher_list .name {
	margin: 10px 0 0;
}
.flex_wrap1 .left,
.flex_wrap1 .right {
	width: 100%;
}
.flex_wrap1 .right {
	text-align: center;
	margin: 24px 0 0;
}
.flex_wrap2 .left,
.flex_wrap2 .right {
	width: 100%;
}
	.flex_wrap2 .left {
		margin: 0 0 16px;
	}
.flex_wrap3 .left,
.flex_wrap3 .right {
	width: 100%;
}
	.flex_wrap3 .left {
		margin: 0 0 40px;
	}
	.flex_wrap4 {
		display: block;
	}
	.flex_wrap4 .left {
	width: 100%;
}
.flex_wrap4 .right {
	width: 50%;
	margin: 0 auto 16px;
}
}

/* header
-------------------------------------------------------- */
.humb {
	width: 60px;
	height: 60px;
	display: none;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	cursor: pointer;
	position: absolute;
	top: 0;
	right: 0;
}
.humb .icon {
	width: 26px;
	height: 18px;
	position: relative;
}
.humb .icon span {
	width: 100%;
	height: 2px;
	background: #fff;
	border-radius: 1.5px;
	position: absolute;
	transition: .5s;
}
.humb .icon span:first-child {
	top: 0;
}
.humb .icon span:nth-child(2) {
	top: calc(50% - 1.5px);
}
.humb .icon span:nth-child(3) {
	bottom: 0;
}
.is_open .humb .icon span:first-child,
.is_open .humb .icon span:nth-child(3) {
	top: 8px;
}
.is_open .humb .icon span:first-child {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.is_open .humb .icon span:nth-child(2) {
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}
.is_open .humb .icon span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
header {
	width: 100%;
	background: #720713;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 15;
}
.hd_logo {
	width: 252px;
	transition: .5s;
}
.hd_logo a {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	padding: 32px;
}
.hd_logo img {
	max-width: 233px;
}
.menu {
	color: #fff;
	font-size: 1.4rem;
	width: calc(100% - 373px);
}
.menu .top,
.menu .btm {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	transition: .5s;
}
.menu .top {
	height: 45%;
	background: #aa2d37;
}
.menu .btm {
	font-weight: bold;
	height: 55%;
}
.menu > .top > ul,
.menu > .btm > ul {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.menu > .btm > ul {
	height: 100%;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.menu > .top > ul > li:not(:last-child) {
	margin: 0 2% 0 0;
}
/*
.menu > .btm > ul > li:not(:last-child) {
	margin: 0 4% 0 0;
}
*/
.menu > .top > ul > li a {
	display: inline-block;
	padding: 0 0 0 16px;
	position: relative;
}
.menu > .top > ul > li a::before {
	content: "";
	width: 11px;
	height: 11px;
	background: url("../img/cmn/arrow1.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
}
.menu > .btm > ul > li {
	height: 100%;
	padding: 0 2%;
}
.menu > .btm > ul > li > a {
	height: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
}
.menu > .btm > ul > li > a::before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 9px 9px 9px;
	border-color: transparent transparent #e6e6e6 transparent;
	display: inline-block;
	opacity: 0;
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
}
.language {
	color: #fff;
	width: 121px;
	background: #c36c73;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	transition: .5s;
}
.language span,
.language a {
	line-height: 1;
	padding: 4px 8px;
}
.language span {
	background: #aa2d37;
}
.is_scroll .hd_logo {
	width: 155px;
}
.is_scroll .hd_logo a {
	padding: 10px;
}
.is_scroll .menu {
	width: calc(100% - 155px);
}
.is_scroll .language,
.is_scroll .menu .top {
	position: fixed;
	top: -100%;
}
.is_scroll .menu .top {
	height: 0;
	background: #aa2d37;
	display: none;
}
.is_scroll .menu .btm {
	font-weight: bold;
	height: 100%;
}
.mega {
	width: 100%;
	background: #e6e6e6;
	box-shadow: 0px 7px 10px 0px rgba(66, 66, 66, 0.4);
	display: none;
	padding: 24px 0;
	position: absolute;
	top: 100%;
	left: 0;
}
.mega_head {
	width: 18%;
	background: #720713;
	text-align: center;
	padding: 16px 8px;
}
.mega_head_title .jp {
	font-size: 1.8rem;
}
.mega_head_title .en {
	color: #d4969b;
	font-size: 1rem;
	font-weight: 400;
}
.mega_head a {
	font-weight: 400;
	display: inline-block;
	margin: 8px 0 0;
	padding: 0 0 0 16px;
	position: relative;
}
.mega_head a::before {
	content: "";
	width: 11px;
	height: 11px;
	background: url("../img/cmn/arrow1.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
}
.mega_body {
	width: 82%;
	padding: 0 0 0 10px;
}
.mega_body_title {
	color: #3f3f3f;
	font-size: 1.8rem;
	border-bottom: solid 3px #aa2d37;
	margin: 0 0 10px;
	padding: 0 0 8px;
}
.mega_body_wrap:not(:last-child) {
	margin: 0 0 16px;
}
.mega_body ul {
	color: #720713;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.mega_body ul li {
	width: 32.666%;
	background: #fff;
	margin-top: 1%;
}
.mega_body ul li:nth-child(-n + 3) {
	margin-top: 0;
}
.mega_body ul li a {
	display: block;
	padding: 16px;
}
.mega_body ul li a span {
	display: inline-block;
	padding: 0 0 0 16px;
	position: relative;
}
.mega_body ul li a span::before {
	content: "";
	width: 11px;
	height: 11px;
	background: url("../img/cmn/arrow1.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
}
.menu > .btm > ul > li:hover a,
.menu > .btm > ul > li:hover a::before {
	opacity: 1;
}
.menu > .btm > ul > li:hover .mega {
	display: block;
}
.humb_menu {
	color: #fff;
	width: 100%;
	min-height: 100vh;
	height: 100%;
	background: #720713;
	display: none;
	overflow: auto;
	padding: 60px 0;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
}
.humb_menu .is_main .acc {
	position: relative;
}
.humb_menu .is_main .acc::after {
	content: "";
	width: 20px;
	height: 20px;
	background: url("../img/cmn/arrow3.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	right: 16px;
	-webkit-transform: translateY(-50%) scale(1, -1);
	transform: translateY(-50%) scale(1, -1);
}
.humb_menu .is_main .acc.is_open::after {
	-webkit-transform: translateY(-50%) scale(1, 1);
	transform: translateY(-50%) scale(1, 1);
}
.humb_menu .is_main > ul > li,
.humb_menu .is_sub > ul > li {
	border-bottom: solid 1px #fff;
}
.humb_menu .is_main > ul > li > a,
.humb_menu .is_sub > ul > li > a {
	display: block;
	padding: 16px;
}
.humb_menu .is_sub > ul > li > a {
	background: #aa2d37;
}
.humb_menu .mega {
	position: static;
}
.humb_menu .mega .mega_body {
	width: 100%;
	padding: 0;
}
.humb_menu .mega .mega_body ul li {
	width: 100%;
	margin-top: 1% !important;
}
.humb_menu .mega .mega_body ul li:first-child {
	margin-top: 0 !important;
}
header.is_page .menu .top {
	padding: 0 10px 0 0;
}
header.is_page .menu .top,
header.is_page .menu > .top > ul {
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}
header.is_page .menu .top {
	font-size: 1.2rem;
}
header.is_page .menu > .top > ul {
	margin: 0 2% 0 0;
}
@media screen and (max-width: 1200px) {
header.is_page .menu .top {
	font-size: 1.1rem;
}
	header.is_page .menu > .top > ul > li a::before {
		top: 3px;
	}
}
@media screen and (min-width: 1025px) {
.mega_body ul li {
	margin-right: 1%;
}
.mega_body ul li:nth-child(3n) {
	margin-right: 0;
}
}
@media screen and (max-width: 1024px) {
.hd_logo {
	width: 155px;
}
.hd_logo a {
	padding: 10px;
}
.menu,
.mega,
.language {
	display: none;
}
.humb {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.humb_menu .language {
	width: 100%;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-webkit-justify-content: flex-end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	padding: 8px 16px;
}
}
@media screen and (max-width: 768px) {
}
@media screen and (max-width: 480px) {
}
/* footer
-------------------------------------------------------- */
footer {
	color: #fff;
	font-size: 1.4rem;
}
.ft_bnr {
	padding: 40px 0;
}
.ft_bnr_list {
	padding: 0 60px;
}
.ft_bnr_list .slick-prev,
.ft_bnr_list .slick-next,
.ft_bnr_list .slick-prev::before,
.ft_bnr_list .slick-next::before {
	width: 39px;
	height: 39px;
}
.ft_bnr_list .slick-prev {
	left: 0;
}
.ft_bnr_list .slick-next {
	right: 0;
}
.ft_bnr_list .slick-prev::before,
.ft_bnr_list .slick-next::before {
	content: "";
	background-repeat: no-repeat;
	background-size: contain;
	display: block;
}
.ft_bnr_list .slick-prev::before {
	background-image: url("../img/cmn/ft_bnr_list_prev.svg");
}
.ft_bnr_list .slick-next::before {
	background-image: url("../img/cmn/ft_bnr_list_next.svg");
}
.ft_bnr_list li {
	padding: 0 4px;
}
.ft_bnr_list img {
	width: 100%;
}
.ft_nav {
	background: #aa2d37;
	padding: 24px 0;
}
.ft_nav ul li:not(:last-child) {
	margin: 0 6% 0 0;
}
.ft_nav ul li a {
	display: inline-block;
	padding: 0 0 0 16px;
	position: relative;
}
.ft_nav ul li a::before {
	content: "";
	width: 11px;
	height: 11px;
	background: url("../img/cmn/arrow1.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
}
.ft_main {
	background: #720713;
	text-align: center;
	padding: 56px 0 64px;
}
.ft_logo a {
	max-width: 260px;
	display: inline-block;
}
.ft_main address {
	margin: 10px 0 0;
}
#copyright {
	color: #aa2d37;
	font-size: 1rem;
	font-weight: bold;
	text-align: center;
	padding: 10px 4px;
}
@media screen and (max-width: 768px) {
.ft_bnr {
	padding: 24px 0;
}
.ft_bnr_list {
	padding: 0 32px;
}
.ft_bnr_list .slick-prev,
.ft_bnr_list .slick-next,
.ft_bnr_list .slick-prev::before,
.ft_bnr_list .slick-next::before {
	width: 20px;
	height: 20px;
}
.ft_nav { display: none; }
.ft_main address {
	margin: 24px 0 0;
}
}
@media screen and (max-width: 480px) {
}
/* aside_youtube
-------------------------------------------------------- */
.aside_youtube {
	background: url("../img/index/bg_youtube.jpg") no-repeat center center;
	background-size: cover;
	position: relative;
}
.aside_youtube a {
	width: 100%;
	height: 100%;
	display: block;
	padding: 160px 0;
}
.aside_youtube::before {
	content: "";
	width: 100%;
	height: 100%;
	background: rgba(63, 63, 63, 0.7);
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.aside_youtube .txt {
	color: #fff;
	font-size: 3.4rem;
	text-align: center;
	position: relative;
	z-index: 1;
}
.aside_youtube .txt::after {
	content: "";
	width: 151px;
	height: 151px;
	background: url("../img/index/icon_youtube.png") no-repeat;
	background-size: contain;
	display: block;
	margin: auto;
}
@media screen and (max-width: 768px) {
.aside_youtube a {
	padding: 100px 0;
}
.aside_youtube .txt {
	font-size: 2.2rem;
}
.aside_youtube .txt::after {
	width: 120px;
	height: 120px;
}
}

/* mainv
-------------------------------------------------------- */
.mainv {
	overflow: hidden;
	margin: 20px 0 0;
}
.mainv_list {
	max-width: 820px;
	margin: auto;
}
.mainv_list .slick-list {
	overflow: inherit;
}
.mainv_list img {
	width: 100%;
}
.mainv_list .slick-dots {
	margin: 16px 0 0;
	position: static;
}
.mainv_list .slick-dots li button {
	width: 6px;
	height: 6px;
}
.mainv_list .slick-dots li button:before {
	content: "";
	width: 6px;
	height: 6px;
	background: #d4969b;
	border-radius: 50%;
	line-height: 6px;
	opacity: 1;
}
.mainv_list .slick-dots li.slick-active button:before {
	background: #aa2d37;
}
.mainv_list .slick-dots li.slick-active button:after {
	content: "";
	width: 22px;
	height: 22px;
	border: solid 1px #d4969b;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: -8px;
	left: -8px;
}
.mainv_list li {
	padding: 0 10px;
}
.mainv_list li a {
	width: 100%;
	height: 100%;
	display: block;
}
@media screen and (max-width: 820px) {
.mainv_list li {
	padding: 0;
}

}


/* information
-------------------------------------------------------- */
.information {
	margin: 0 0 60px;
}
.information .right,
.information .left {
	width: 48%;
	background: #e6e6e6;
}
.important_head {
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	background: #3f3f3f;
	text-align: center;
	padding: 4px;
}
.important_body {
	padding: 24px 40px;
}
.important_body ul li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.important_body ul li:not(:last-child) {
	margin: 0 0 10px;
}
.important_body .date {
	margin: 0 16px 0 0;
}
.important_body a {
	text-decoration: underline;
}
.important_body a:hover {
	text-decoration: none;
}
.information .left {
	padding: 24px 40px;
}
.information .search {
	margin: 0 0 10px;
}
.search form {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
::placeholder {
	color: #aeaeae;
}
::-ms-input-placeholder {
	color: #aeaeae;
}
:-ms-input-placeholder {
	color: #aeaeae;
}
.search input[type="text"] {
	display: block;
}
.information .search input[type="text"] {
	font-size: 1.4rem;
	width: calc(100% - 57px);
	padding: 12px 16px;
}
.search button {
	width: 57px;
	background: #333;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.information .search button img {
	max-width: 18px;
}
header.is_page .search {
	max-width: 170px;
	width: 25%;
}
header.is_page .search button img {
	max-width: 11px;
}
header.is_page .search input[type="text"] {
	font-size: 1.2rem;
	width: calc(100% - 28px);
	padding: 4px 8px;
}
header.is_page .search button {
	width: 28px;
}
.information .keyword_head {
	color: #fff;
	font-size: 1.4rem;
	background: #720713;
	padding: 8px 16px;
}
.information .keyword_body {
	background: #fff;
	padding: 6px 16px 10px;
}
.information .keyword_body a {
	font-size: 1.4rem;
	text-decoration: underline;
	margin: 4px 16px 0 0;
	padding: 0 0 0 16px;
	position: relative;
}
.information .keyword_body a::before {
	content: "";
	width: 11px;
	height: 11px;
	background: url("../img/cmn/arrow1.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 6px;
	left: 0;
}
.information .keyword_body a:hover {
	text-decoration: none;
}
@media screen and (max-width: 1024px) {
.information .right,
.information .left {
	width: 100%;
}
.information .right {
	margin: 0 0 24px;
}
}
@media screen and (max-width: 768px) {
	.information {
		margin: 0 0 32px;
	}
.important_body {
	padding: 16px;
}
.important_body ul li {
	display: block;
}
.information .left {
	padding: 16px;
}
.information .keyword_body {
	padding: 6px 10px 10px;
}
}


/* index_pickup
-------------------------------------------------------- */
.index_pickup {
	background: #720713;
	padding: 40px 0;
}
.pickup_list li {
	width: 23%;
	position: relative;
}
.pickup_list li a {
	width: 100%;
	height: 100%;
	display: block;
}
.pickup_list li .img .cover {
	padding-top: 54%;
}
.pickup_list li:nth-child(1) .img .cover {
	background-image: url("../img/index/pickup6.jpg");
}
.pickup_list li:nth-child(2) .img .cover {
	background-image: url("../img/index/pickup7.jpg");
}
.pickup_list li:nth-child(3) .img .cover {
	background-image: url("../img/index/pickup3.jpg");
}
.pickup_list li:nth-child(4) .img .cover {
	background-image: url("../img/index/pickup5.jpg");
}
.pickup_list .name {
	color: #fff;
	font-size: 1.4rem;
	width: 100%;
	background: rgba(51, 51, 51, 0.5);
	text-align: center;
	padding: 4px 0;
	position: absolute;
	bottom: 0;
	left: 0;
}
.pickup_list .name::before {
	content: "";
	width: 6px;
	height: 8px;
	background: url("../img/cmn/arrow2.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	left: 10px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
@media screen and (min-width: 1199px) {
.pickup_list li {
	margin-right: 2.6666%;
}
.pickup_list li:nth-child(4n) {
	margin-right: 0;
}
}
@media screen and (max-width: 1198px) {
.pickup_list li {
	width: 49%;
	margin-top: 2%;
	margin-right: 2%;
}
.pickup_list li:nth-child(-n + 2) {
	margin-top: 0;
}
.pickup_list li:nth-child(2n) {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.pickup_list li {
	width: 100%;
	margin-top: 2%;
	margin-right: 0;
}
.pickup_list li:nth-child(2n) {
	margin-top: 2%;
}
.pickup_list li:nth-child(1) {
	margin-top: 0;
}
}
/* index_topics
-------------------------------------------------------- */
.index_topics {
	padding: 100px 0;
}
.topics_list li {
	width: 32%;
	margin-top: 60px;
	margin-right: 2%;
}
.topics_list li a {
	display: block;
}
.topics_list figure {
	margin: 0 0 16px;
}
.topics_list figure img {
	width: 100%;
}
.topics_meta {
	background: #fff;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin: 0 0 10px;
	padding: 0 0 0 24px;
	position: relative;
}
.topics_meta::before {
	content: "";
	width: 15px;
	height: 2px;
	background: #aa2d37;
	display: block;
	position: absolute;
	top: 10px;
	left: 0;
}
.topics_meta .topics_date {
	margin: 0 16px 0 0;
}
.topics_cat {
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
	min-width: 110px;
	text-align: center;
	padding: 2px 4px;
}
.topics_cat.cat1 {
	background: #0071b7;
}
.topics_cat.cat2 {
	background: #d59300;
}
.topics_cat.cat3 {
	background: #22b073;
}
.topics_cat.cat4 {
	background: #aa2d37;
}
.topics_cat.cat5 {
	color: #aa2d37;
	background: #fff;
	border: solid 1px #aa2d37;
}
.topics_txt {
	color: #aa2d37;
	font-weight: bold;
	text-decoration: underline;
	padding: 0 0 0 24px;
}

@media screen and (min-width: 1025px) {
.topics_list li:nth-child(-n + 3) {
	margin-top: 0;
}
.topics_list li:nth-child(3n) {
	margin-right: 0;
}
}
@media screen and (max-width: 1024px) {
.topics_list li {
	width: 49%;
}
.topics_list li:nth-child(-n + 2) {
	margin-top: 0;
}
.topics_list li:nth-child(2n) {
	margin-right: 0;
}
}
@media screen and (max-width: 768px) {
.index_topics {
	padding: 60px 0;
}
.topics_list li {
	width: 100%;
	margin-top: 40px;
}
.topics_list li:nth-child(-n + 2) {
	margin-top: 40px;
}
.topics_list li:nth-child(1) {
	margin-top: 0;
}
}


/* index_news
-------------------------------------------------------- */
.index_news {
	background: #720713;
	overflow: hidden;
	padding: 100px 0;
	position: relative;
}
.index_news .mask {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}
.index_news .mask img {
	width: auto;
	height: 150vh;
}
.index_news .inner {
	position: relative;
	z-index: 1;
}
.index_news #tab1:checked ~ .panel.panel1,
.index_news #tab2:checked ~ .panel.panel2,
.index_news #tab3:checked ~ .panel.panel3,
.index_news #tab4:checked ~ .panel.panel4,
.index_news #tab5:checked ~ .panel.panel5,
.index_news #tab6:checked ~ .panel.panel6 {
	display: block;
}

.index_news #tab1:checked ~ .tabs label:nth-child(1),
.index_news #tab2:checked ~ .tabs label:nth-child(2),
.index_news #tab3:checked ~ .tabs label:nth-child(3),
.index_news #tab4:checked ~ .tabs label:nth-child(4),
.index_news #tab5:checked ~ .tabs label:nth-child(5),
.index_news #tab6:checked ~ .tabs label:nth-child(6) {
	color: #3f3f3f;
	font-weight: bold;
	background: #fff;
}

.index_news .tabs {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.index_news .tabs .tab {
	color: #fff;
	font-size: 1.8rem;
	width: 16.666%;
	background: #aa2d37;
	cursor: pointer;
	text-align: center;
	padding: 16px 2px;
	position: relative;
}
.index_news .tabs .tab::before {
	content: "";
	width: 100%;
	height: 7px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.index_news .tabs .tab.cat1::before { background: #aa2d37; }
.index_news .tabs .tab.cat2::before { background: #0071b7; }
.index_news .tabs .tab.cat3::before { background: #d59300; }
.index_news .tabs .tab.cat4::before { background: #22b073; }
.index_news .tabs .tab.cat5::before { background: #d4969b; }
.index_news .tabs .tab.cat6::before { background: #ffffff; }
.index_news .panel {
	max-height: 600px;
	background: #fff;
	display: none;
	overflow: auto;
	padding: 40px;
}
.news_list li {
	border-bottom: solid 1px #c7c7c7;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 24px 0;
}
.news_list li:nth-child(1) {
	padding-top: 0;
}
.news_list .topics_meta {
	margin: 0 16px 0 0;
}
.news_list .topics_meta .topics_date {
	width: 116px;
	margin: 0;
}
.news_list a {
	color: #aa2d37;
	font-weight: bold;
	text-decoration: underline;
}
.news_list a:hover {
	text-decoration: none;
}
@media screen and (max-width: 1024px) {
.index_news .tabs .tab {
	width: 33%;
}
.news_list li {
	display: block;
}
.news_list .topics_meta {
	margin: 0 0 10px;
}
}
@media screen and (max-width: 768px) {
.index_news {
	padding: 60px 0;
}
.index_news .tabs .tab {
	font-size: 1.4rem;
	width: 49.8%;
}
.index_news .panel {
	height: 400px;
	padding: 24px 16px;
}

}


.history_list li {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
}
.history_list li:not(:last-child)::before {
	content: "";
	width: 1px;
	height: 100%;
	background: #aa2d37;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 10px;
	left: 8px;
}
.history_list li:not(:last-child) {
	padding: 0 0 40px;
}
.history_head {
	font-size: 1.8rem;
	font-weight: bold;
	width: 170px;
	padding: 0 0 0 40px;
	position: relative;
}
.history_head::before {
	content: "";
	width: 17px;
	height: 17px;
	background: #aa2d37;
	border-radius: 50%;
	display: block;
	position: absolute;
	top: 7px;
	left: 0;
}
.history_head .month {
	position: absolute;
	top: 0;
	right: 0;
}
.history_body {
	width: calc(100% - 170px);
	padding: 0 0 0 16px;
}
@media screen and (max-width: 768px) {
.history_list li {
	display: block;
}
	.history_head {
		margin: 0 0 8px;
	}
.history_body {
	width: 100%;
	padding: 0 0 0 40px;
}
}
.message .img_wrap {
	width: 22%;
}
.message .img_wrap figure {
	margin: 0 0 10px;
}
.message .img_wrap p {
	text-align: right;
}
.message .img_wrap .job {
	line-height: 1.8;
	margin: 0 0 16px;
}
.message .img_wrap .name {
	font-size: 2.4rem;
}
.message .txt_wrap {
	width: 72%;
}
.message .txt_wrap .title {
	font-size: 2rem;
	font-weight: bold;
	margin: 0 0 24px;
}
.message .txt_wrap .txt p:not(:last-child) {
	margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
.message {
	display: block;
}
.message .img_wrap {
	width: 65%;
	margin: 40px auto 0;
}

.message .txt_wrap {
	width: 100%;
}
.message .txt_wrap .txt p:not(:last-child) {
	margin: 0 0 24px;
}
}


/* news
-------------------------------------------------------- */
.pager {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 70px 0 0;
}
.pager span,
.pager a {
	color: #aa2d37;font-size: 1.8rem;
	font-weight: bold;
	width: 40px;
	height: 40px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 2px;
}
.pager a:not(.prev):not(.next) {
	border: solid 1px #aa2d37;
}
.pager .prev img,
.pager .next img {
	max-width: 18px;
}
@media screen and (max-width: 768px) {
.pager {
	margin: 32px 0 0;
}
}


/* access
-------------------------------------------------------- */
.access figure {
	margin: 0 0 16px;
}
.access .address {
	font-size: 1.8rem;
	font-weight: bold;
	background: #e6e6e6;
	padding: 40px;
}
.access .address dl > div {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.access .address dl > div:not(:last-child) {
	margin: 0 0 10px;
}
.access .address dl dt {
	width: 80px;
}
.access .address dl dd {
	width: calc(100% - 80px);
	padding: 0 0 0 16px;
}
.access .btns {
	margin: 32px 0 0;
}
.access .btns a {
	width: 49%;
}
.access .btns .icon_popup::after {
	top: 50%;
	right: 16px;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}
.contact .tbl1 th {
	text-align: left;
}
@media screen and (max-width: 768px) {
.access .address {
	font-size: 1.6rem;
	padding: 24px 16px;
}
.access .address dl > div {
	display: block;
}
.access .address dl dt,
.access .address dl dd {
	width: 100%;
}
.access .address dl dd {
	padding: 0;
}
.access .btns a {
	width: 100%;
}
.access .btns a:not(:last-child) {
	margin: 0 0 10px;
}
}
.note_wrap1 .bg_wrap {
	background: #e6e6e6;
	margin: 0 0 10px;
	padding: 24px;
}
.note1 li {
	font-weight: bold;
	padding: 0 0 0 24px;
	position: relative;
}
.note1 li::before {
	content: "";
	width: 11px;
	height: 11px;
	background: #aa2d37;
	display: block;
	position: absolute;
	top: 8px;
	left: 0;
}
.lab_list ul li:not(:last-child) {
	margin: 0 0 10px;
}
.lab_list ul li a {
	color: #aa2d37;
	text-decoration: underline;
}
.lablist > div:not(:last-child) {
	margin: 0 0 60px;
}
.lablist > div:nth-child(4) .tbl4 tbody td:nth-child(3) {
	text-align: left;
}
.note2 li {
	color: #949494;
	font-size: 1.4rem;
	padding: 0 0 0 24px;
	position: relative;
}
.note2 li::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}
.txt_wrap1 p:not(:last-child) {
	margin: 0 0 16px;
}
.txt_wrap2 {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.txt_wrap2 figure {
	width: 25%;
	margin: 0 5% 0 0;
}
.txt_wrap2 p {
	font-size: 2rem;
	font-weight: bold;
	width: 70%;
}
.faq_list dt,
.faq_list dd {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	padding: 16px;
}
.faq_list dt:first-of-type {
}
.faq_list dd {
	display: none;
}
.faq_list dd:not(:last-of-type) {
	margin: 0 0 16px;
}
.faq_list .acc {
	padding-right: 24px;
	position: relative;
}
.faq_list .acc::after {
	content: "";
	width: 11px;
	height: 11px;
	background: url("../img/cmn/arrow3.svg") no-repeat;
	background-size: contain;
	display: block;
	position: absolute;
	top: 50%;
	right: 16px;
	-webkit-transform: translateY(-50%) scale(1, -1);
	transform: translateY(-50%) scale(1, -1);
}
.faq_list .acc.is_open::after {
	-webkit-transform: translateY(-50%) scale(1, 1);
	transform: translateY(-50%) scale(1, 1);
}
.faq_list .icon {
	font-size: 2.4rem;
	font-weight: bold;
	width: 36px;
	line-height: 1;
}
.faq_list .question .icon {
	color: #aa2d37;
}
.faq_list .question .txt {
	font-weight: bold;
}
.faq_list .answer .icon {
	color: #d4969b;
}
.faq_list .question {
	border-bottom: solid 1px #aa2d37;
}
.faq_list .txt {
	width: calc(100% - 36px);
}
@media screen and (max-width: 768px) {
.faq_list dt,
.faq_list dd {
	padding: 16px 0;
}
.faq_list .acc::after {
	right: 0;
}
.txt_wrap2 {
	display: block;
}
.txt_wrap2 figure,
	.txt_wrap2 p {
	width: auto;
	}
	.txt_wrap2 figure {
	margin: 0 0 16px;
}
.txt_wrap2 p {
	font-size: 1.8rem;
}
}

.corona {
	background: #eed5d7;
	padding: 40px 24px;
}
.corona .title {
	font-size: 2rem;
	font-weight: bold;
	text-align: center;
	margin: 0 0 16px;
}
.corona .txt {
	max-width: 808px;
	margin: auto;
}
@media screen and (max-width: 768px) {
.corona {
	padding: 24px 16px;
}
.corona .title {
	font-size: 1.8rem;
}
}

/*画像ポップアップ表示*/
.sec_wrap .lb {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.7);
    opacity: 0;
    transition: .3s opacity ease;
    pointer-events: none;
    z-index: 100;
}

.sec_wrap .lb img {
    width: auto !important;
    max-height: 100%!important;
    cursor: pointer;
}

.sec_wrap .lb img,
.sec_wrap .lb iframe {
    transform: scale(.85);
    transition: .3s all ease;
}

.sec_wrap .lb:target {
    opacity: 1;
    pointer-events: auto;
    z-index: 101;
}

.sec_wrap .lb:target img,
.sec_wrap .lb:target iframe {
    transform: scale(1);
}

/* なんちゃって閉じるボタン*/
.lb::before,.lb::after {
    display: block;
    position: fixed;
    content: "";
    width: 24px;
    height:3px;
    top: 24px;
    right: 12px;
    background: #fff;
    border-radius: 4px;
}
.lb::before {
    transform: rotate(-315deg);
}
.lb::after {
    transform: rotate(315deg);
}
/*画像ポップアップ表示*/
.page_body .lb {
    display: flex;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
    background: rgba(0,0,0,.7);
    opacity: 0;
    transition: .3s opacity ease;
    pointer-events: none;
    z-index: 100;
}

.page_body .lb img {
    width: auto !important;
    max-height: 100%!important;
    cursor: pointer;
}

.page_body .lb img,
.page_body .lb iframe {
    transform: scale(.85);
    transition: .3s all ease;
}

.page_body .lb:target {
    opacity: 1;
    pointer-events: auto;
    z-index: 101;
}

.page_body .lb:target img,
.page_body .lb:target iframe {
    transform: scale(1);
}

/* なんちゃって閉じるボタン*/
.page_body .lb::before,.lb::after {
    display: block;
    position: fixed;
    content: "";
    width: 24px;
    height:3px;
    top: 24px;
    right: 12px;
    background: #fff;
    border-radius: 4px;
}
.page_body .lb::before {
    transform: rotate(-315deg);
}
.page_body .lb::after {
    transform: rotate(315deg);
}


.list li {
	padding-left: 1.2em;
	background-image: url("../img/cmn/contentsListBg.png");
	background-repeat: no-repeat;
	background-position: 0.2em 6px;
	margin-bottom: 10px;
}
.nyushi_head .title {
	font-size: 2rem;
	font-weight: bold;
	margin: 0 0 24px;
}
.nyushi_head .btn_wrap2 figure {
	text-align: center;
	margin: 0 0 8px;
}
.outline1_sec.sec1 ul li figure img {
	width: auto;
}
.outline1_sec.sec3 ul li {
}
.outline1_sec.sec3 ul li figure {
	height: 79px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 0 16px;
}
.outline1_sec.sec3 ul li:nth-child(1) figure img {
	max-width: 70px;
}
.outline1_sec.sec3 ul li:nth-child(2) figure img {
	max-width: 78px;
}
.outline1_sec.sec3 ul li:nth-child(3) figure img {
	max-width: 85px;
}
.outline1_sec.sec3 ul li:nth-child(4) figure img {
	max-width: 77px;
}
.outline1_sec.sec3 ul li:nth-child(5) figure img {
	max-width: 70px;
}
.outline1_sec.sec3 ul li:nth-child(6) figure img {
	max-width: 60px;
}
.outline1_sec.sec3 .title6 {
	margin: 0 0 16px;
}
.outline1_sec.sec3 .title6 a {
	display: inline-block;
}
.outline3_sec.sec1 .flex_wrap2 .left figure {
	margin: 0 0 10px;
}
.outline3_sec.sec1 .flex_wrap2 .right .btn_wrap3 {
	margin: 32px 0 0;
}
.btn_wrap3 a:not(:last-child) {
	margin: 0 0 10px;
}
.outline3_sec.sec2 .list2 li {
	margin-top: 10px;
}
@media screen and (min-width: 769px) {
.outline3_sec.sec2 .list2 li:nth-child(-n + 2) {
	margin-top: 0;
}
}
@media screen and (max-width: 768px) {
.outline3_sec.sec2 .list2 li:nth-child(1) {
	margin-top: 0;
}
}
.slide_wrap {
	overflow: hidden;
}
.facility_list {
	margin: 0 0 40px;
}
.facility_list .slick-dots {
	margin: 8px 0 0;
	position: static;
}
.facility_list .slick-dots li button:before {
	color: #aa2d37;
}
.facility_list .slick-slide {
	padding: 0 16px;
}
.facility_list .slick-slide img {
	width: 100%;
}
.career_wrap .top {
	margin: 0 0 60px;
}
.career_wrap .top .title3 {
	margin: 0 0 40px;
}
.career_wrap .top table th {
	font-size: 1.8rem;
}
.career_wrap .top table td {
	font-size: 2rem;
	text-align: center;
}
.career_wrap .top table tr:last-child th,
.career_wrap .top table tr:last-child td {
	font-size: 2.4rem;
	font-weight: bold;

}
@media screen and (max-width: 768px) {
.career_wrap .top .title3 {
	margin: 0 0 24px;
}
}
.evaluation_sec.sec2 .scroll_tbl {
	overflow: inherit;
}
.evaluation_sec.sec2 .scroll_tbl table {
	white-space: normal;
}
.evaluation_sec.sec2 .tbl3 th {
	width: 370px;
	font-weight: bold;
}
.evaluation_sec.sec2 .tbl3 td {
	text-align: left;
}
@media screen and (max-width: 768px) {
.evaluation_sec.sec2 .scroll_tbl {
	overflow: auto;
}
.evaluation_sec.sec2 .scroll_tbl table {
	white-space: nowrap;
}
	.evaluation_sec.sec2 .btn1 {
		font-size: 1.4rem;
		padding-right: 32px;
	}
}
.equipment_list > div:not(:last-child) {
	margin-bottom: 40px;
}
.api_h3 { display: none; }
.api_result {
	margin: 0 0 16px;
}
.api_result td {
	border-bottom: solid 1px #eee;
	padding: 24px 0;
}
.page_top {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 5;
}
.page_top img {
	width: 60px;
	height: 60px;
}
@media screen and (max-width: 768px) {
.page_top {
	bottom: 40px;
}
.page_top img {
	width: 50px;
	height: 50px;
}
}
#exam1 .title2,
#exam2 .title2,
#exam3 .title2 {
	margin-bottom: 16px;
}
#exam2 .tbl5 th {
}
#exam3 .note1 li {
	font-weight: normal;
}
#exam3 .note1 li:not(:last-child) {
	margin-bottom: 16px;
}
.tbl6 th,
.tbl6 td {
	border: solid 1px #c7c7c7;
	padding: 10px;
}
.tbl6 thead th {
	background: #e6e6e6;
}
.tbl6 tbody th {
	background: #f2f2f2;
}
@media screen and (max-width: 768px) {
.tbl4 tbody th,
.tbl4 tbody td {
	width: auto !important;
}
	.tbl4 tbody tr:not(:first-of-type) th {
		border-top: solid 1px #c7c7c7;
	}
}