@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	width: 100%;
	height: 100%;
	font-family: 'Zen Maru Gothic',
		sans-serif;
	font-weight: 500;
}

#wrap {
	width: 100%;
	overflow-x: hidden;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	border: none;
}

a {
	text-decoration: none;
	color: #333333;
}

ul {
	list-style-type: none;
}

ul li {
	list-style-type: none;
}

ul.disc {
	list-style-type: disc;
	margin-left: 1em;
}

ul.disc li {
	padding: 3px 0;
	list-style-type: disc;
}

.color01 {
	color: #cb5219 !important;
}

.small {
	font-size: 12px !important;
}

.large {
	font-size: 21px !important;
}

.center {
	display: block;
	text-align: center !important;
}

.right {
	display: block;
	text-align: right !important;
}

.mt1em {
	margin-top: 1em !important;
}

.mt2em {
	margin-top: 2em !important;
}

.mt3em {
	margin-top: 3em !important;
}

.mt4em {
	margin-top: 4em !important;
}

.mt10px {
	margin-top: 10px !important;
}

/****************************
					見出し
****************************/

h1.next_title {
	display: block;
	margin-bottom: 40px;
	font-size: 40px;
	font-weight: 500;
	text-align: center;
	color: #333333;
}

h1.next_title span {
	position: relative;
	padding: 0;
}

h1.next_title span:before {
	content: url("/images/common/h1_left.svg");
	display: inline-block;
	vertical-align: middle;
	padding-right: 15px;
	line-height: 1;
}

h1 span:after {
	content: url("/images/common/h1_right.svg");
	display: inline-block;
	vertical-align: middle;
	line-height: 1;
	padding-left: 15px;
}


h2 {
	display: block;
	font-size: 30px;
	color: #333333;
	margin-bottom: 20px;
	text-align: center;
}

h2 span {
	position: relative;
	line-height: 1;
}

h2 span:before {
	content: url("/minato/images/common/h2_border.svg");
	display: inline-block;
	padding-right: 10px;
	vertical-align: 0;
	line-height: 1;
}

h2 span:after {
	content: url("/minato/images/common/h2_border.svg");
	display: inline-block;
	padding-left: 10px;
	vertical-align: 0;
	line-height: 1;
}

h2.news_title {
	display: block;
	margin-bottom: 30px;
	font-size: 26px;
	padding: 10px 0 35px 0;
	color: #492c12;
	text-align: center;
	position: relative;
}

h2.news_title:after {
	content: url("/images/common/news_title_border.svg");
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	/* Safari用 */
	transform: translateX(-50%);
	bottom: 0;
}

h3 {
	display: flex;
	justify-content: center;
	width: 100%;
	margin: 0 auto;
	font-size: 30px;
	color: #6c2c2f;
	font-family: 'Zen Maru Gothic',
		sans-serif;
	font-weight: 500;
	position: relative;
}

h4 {
	display: block;
	font-size: 24px;
	font-weight: 500;
	color: #333333;
}

h4:before {
	content: url("/images/common/h4_border.svg");
	display: inline-block;
	padding-right: 5px;
	vertical-align: middle;
	line-height: 1;
}

h5 {
	display: block;
	color: #036eb8;
	font-size: 21px;
	line-height: 1;
}


/****************************
					スマホ
****************************/
@media screen and (max-width: 640px) {

	h1.next_title {
		font-size: 24px;
	}

	h1.next_title span:before {
		content: url("/images/common/sp_h1_left.svg");
	}

	h1.next_title span:after {
		content: url("/images/common/sp_h1_right.svg");
	}

	h2 {
		font-size: 20px;
	}

	h2 span:before {
		content: url("/minato/images/common/sp_h2_border.svg");
		vertical-align: 4px;
		padding-right: 5px;
	}

	h2 span:after {
		content: url("/minato/images/common/sp_h2_border.svg");
		vertical-align: 4px;
		padding-left: 5px;
	}

	h3 {
		font-size: 24px;
	}
}