@charset "utf-8";

@media screen and (max-width: 850px) {
	body {
		min-width: 100%;
	}
}

html.os-pc {
	overflow-y: scroll;
}

/*============================================================
	RESET
*/
.mhi-body * {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	background-color: transparent;
	background-image: none;
	background-position: 0 0;
	background-repeat: no-repeat;
	text-decoration: none;
	text-indent: 0;
	text-transform: none;
	font-style: normal;
	font-size: inherit;
	font-family: inherit;
	font-weight: inherit;
	line-height: inherit;
	color: inherit;
}
.mhi-body ul {
	list-style-type: none;
}
.mhi-body table {
	border-collapse: collapse;
}
.mhi-body a,
.mhi-body button {
	cursor: pointer;
}
.mhi-body img {
	vertical-align: top;
	width: 100%;
}

/*============================================================
	HTML
*/
.mhi-body {
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smoothing: antialiased;
	font-family: "FOT-筑紫AMゴシックL Std B", sans-serif;
	font-size: 16px;
	line-height: 1.4;
	color: #000;
	font-feature-settings: "palt";
	letter-spacing: 0.08em;
}
.mhi-body a {
	text-decoration: none;
}
.mhi-body h1,
.mhi-body h2,
.mhi-body h3,
.mhi-body h4 {
	font-weight: inherit;
}
.mhi-body.mhi-loading::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: #fff;
}

/*============================================================
	VISIBLE
*/
@media screen and (min-width: 768px) {
	.mhi-body .visible-sp {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.mhi-body .visible-pc {
		display: none !important;
	}
}

/*============================================================
	HIDDEN
*/
@media screen and (min-width: 768px) {
	.mhi-body .hidden-pc {
		display: none !important;
	}
}
@media screen and (max-width: 767px) {
	.mhi-body .hidden-sp {
		display: none !important;
	}
}

/*============================================================
	FX
*/
.mhi-body .fx-fade-bottom {
	opacity: 0;
	transform: translateY(60px);
}
.mhi-body .fx-fade-bottom.active {
	transition: transform 1s cubic-bezier(0.215, 0.61, 0.355, 1) 0s, opacity 0.8s ease 0s;
	opacity: 1;
	transform: translateY(0px);
}

/*============================================================
	PAGETOP
*/
.mhi-body .mhi-pagetop {
	position: fixed;
	z-index: 10;
	bottom: -64px;
	right: 25px;
	transition: bottom 0.3s ease;
}
.active-pagetop .mhi-body .mhi-pagetop {
	bottom: 30px;
}
.mhi-body .mhi-pagetop a {
	display: flex;
	justify-content: center;
	align-items: center;
}
.mhi-body .mhi-pagetop a span {
	position: relative;
	display: block;
	width: 64px;
	height: 64px;
	background-color: #fff;
	border: 4px solid #000;
	border-radius: 999px;
	box-shadow: 4px 4px 0 #000;
	transition: background-color 0.3s ease;
}
.mhi-body .mhi-pagetop a span::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/pagetop-on.svg');
	background-size: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
	.os-pc .mhi-body .mhi-pagetop a span:hover {
		background-color: #e31f26;
	}
	.os-pc .mhi-body .mhi-pagetop a span:hover::after {
		opacity: 1;
	}
}

/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-pagetop {
		bottom: -64px;
		right: 4px;
	}
	.active-pagetop .mhi-body .mhi-pagetop {
		bottom: 4px;
	}
	.mhi-body .mhi-pagetop a {
		width: 64px;
		height: 64px;
	}
	.mhi-body .mhi-pagetop a span {
		width: 37px;
		height: 37px;
		border-width: 3px;
		box-shadow: 2px 2px 0 #000;
	}
}

/*============================================================
	BTN FIXED
*/
.mhi-body .mhi-btn-fixed {
	position: fixed;
	z-index: 9;
	top: 50%;
	right: -60px;
	transform: translateY(-50%);
	transition: right 0.3s ease;
}
.active-btn-fixed .mhi-body .mhi-btn-fixed {
	right: 25px;
}
.mhi-body .mhi-btn-fixed a {
	position: relative;
	display: block;
	background-color: #fff;
	border: 4px solid #000;
	border-radius: 999px;
	box-shadow: 4px 4px 0 #000;
	transition: background-color 0.3s ease;
}
.mhi-body .mhi-btn-fixed a::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/btn-fixed-pc-on.svg');
	background-size: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
	.os-pc .mhi-body .mhi-btn-fixed a:hover {
		background-color: #e31f26;
	}
	.os-pc .mhi-body .mhi-btn-fixed a:hover::after {
		opacity: 1;
	}
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-btn-fixed {
		top: auto;
		bottom: 0;
		right: auto;
		left: 0;
		padding-bottom: 13px;
		width: 100%;
		transform: translateY(100%);
		transition: transform 0.3s ease;
	}
	.active-btn-fixed .mhi-body .mhi-btn-fixed {
		right: auto;
		transform: translateY(0%);
	}
	.mhi-body .mhi-btn-fixed a {
		margin: 0 auto;
		width: 62.4%;
		background-color: transparent;
		border: 0;
		border-radius: 0;
		box-shadow: 0 0 0 #000;
	}
}

/*============================================================
	BTN MORE
*/
.mhi-body .mhi-button-more {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 15px;
	height: 42px;
	border-radius: 999px;
	background-color: #f0f0f0;
	font-size: 15px;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.mhi-body .mhi-button-more i {
	position: absolute;
	top: 50%;
	right: 15px;
	margin-top: -6px;
	width: 12px;
	height: 12px;
}
.mhi-body .mhi-button-more i::before,
.mhi-body .mhi-button-more i::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	background-color: #000;
	transition: background-color 0.3s ease;
}
.mhi-body .mhi-button-more i::before {
	margin: -1px 0 0 -6px;
	width: 100%;
	height: 2px;
}
.mhi-body .mhi-button-more i::after {
	margin: -6px 0 0 -1px;
	width: 2px;
	height: 100%;
}
/* HOVER */
@media screen and (min-width: 768px) {
	.os-pc .mhi-body .mhi-button-more:hover {
		background-color: #e31f26;
		color: #fff;
	}
	.os-pc .mhi-body .mhi-button-more:hover i::before,
	.os-pc .mhi-body .mhi-button-more:hover i::after {
		background-color: #fff;
	}
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-button-more {
		margin-top: 3.5vw;
		height: 11vw;
		font-size: 3.7vw;
	}
	.mhi-body .mhi-button-more:hover {
		color: #000;
	}
	.mhi-body .mhi-button-more i {
		right: 3.6vw;
		margin-top: -1.6vw;
		width: 3.2vw;
		height: 3.2vw;
	}
	.mhi-body .mhi-button-more i::before {
		margin: -0.25vw 0 0 -1.6vw;
		height: 0.5vw;
	}
	.mhi-body .mhi-button-more i::after {
		margin: -1.6vw 0 0 -0.25vw;
		width: 0.5vw;
		height: 100%;
	}
}

/*============================================================
	BTN VIEW
*/
.mhi-body .mhi-button-view {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	height: 46px;
	border: 4px solid #000;
	border-radius: 999px;
	background-color: #fff;
	font-size: 18px;
	box-shadow: 2px 2px 0 #000;
	color: #000;
	transition: background-color 0.3s ease, color 0.3s ease;
}
.mhi-body span.mhi-button-view {
	opacity: 0.3;
}
.mhi-body .mhi-button-view::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 10px;
	margin-top: -8px;
	width: 16px;
	height: 16px;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url(../img/icon-blank.svg);
	background-size: contain;
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-button-view {
		height: 12.2vw;
		font-size: 4.8vw;
	}
	.mhi-body .mhi-button-view::before {
		right: 2.6vw;
		margin-top: -2.1vw;
		width: 4.2vw;
		height: 4.2vw;
	}
}

/*============================================================
	PARTS CATEGORY
*/
.mhi-body .mhi-parts-category {
	display: flex;
	font-size: 13px;
	line-height: 1.3;
}
.mhi-body .mhi-parts-category span {
	display: block;
	padding: 0.34em 0.8em;
	border-radius: 99px;
	background-color: #f0f0f0;
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-parts-category {
		font-size: 3.2vw;
	}
}

/*============================================================
	PARTS TIME
*/
.mhi-body .mhi-parts-time {
	display: flex;
	align-items: center;
	font-size: 15px;
	line-height: 1.3;
}
.mhi-body .mhi-parts-time::before {
	content: '';
	display: block;
	margin-right: 0.5em;
	width: 22px;
	height: 22px;
	background-repeat: no-repeat;
	background-position: center;
	background-image: url(../img/icon-time.svg);
	background-size: contain;
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-parts-time {
		font-size: 3.7vw;
	}
	.mhi-body .mhi-parts-time::before {
		width: 5.3vw;
		height: 5.3vw;
	}
}

/*============================================================
	PARTS TAGS
*/
.mhi-body .mhi-parts-tags {
	margin-right: -1em;
	font-size: 14px;
	line-height: 1.5;
}
.mhi-body .mhi-parts-tags li {
	display: inline;
	padding: 0 0.6em 0.2em 0;
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-parts-tags {
		font-size: 3.5vw;
	}
}

/*============================================================
	MAIN
*/
.mhi-body .mhi-main {
	overflow: hidden;
	position: relative;
	background-image: url('../img/main-kv-pc.jpg');
	background-size: cover;
}
.mhi-body .mhi-main .mhi-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	left: 0;
	top: 0;
	width: 17.5%;
	height: 6.43vw;
	background-color: #fff;
}
.mhi-body .mhi-main .mhi-logo img {
	width: 76.7%;
}
.mhi-body .mhi-main h1 {
	position: relative;
}
.mhi-body .mhi-main .mhi-date {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}
.mhi-body .mhi-main .mhi-btn {
	position: absolute;
	left: 38.35%;
	top: 83.92%;
	width: 23.428%;
}
.mhi-body .mhi-main .mhi-btn a {
	display: block;
	position: relative;
}
.mhi-body .mhi-main .mhi-btn a::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('../img/btn-on.svg');
	background-size: cover;
	opacity: 0;
	transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
	.os-pc .mhi-body .mhi-main .mhi-btn a:hover::after {
		opacity: 1;
	}
}

.mhi-body .mhi-main .mhi-logo {
	opacity: 0;
	transition: opacity 1.2s ease 0.2s;
}
.mhi-body .mhi-main h1 {
	opacity: 0;
	transition: opacity 1.2s ease 0.2s;
}
.mhi-body .mhi-main .mhi-btn {
	opacity: 0;
	transform: translateY(60px);
	transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}
.mhi-loaded .mhi-body .mhi-main .mhi-logo,
.mhi-loaded .mhi-body .mhi-main h1,
.mhi-loaded .mhi-body .mhi-main .mhi-btn {
	opacity: 1;
}
.mhi-loaded .mhi-body .mhi-main .mhi-btn {
	transform: translateY(0);
}

/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-main {
		background-image: url('../img/main-kv-sp.jpg');
	}
	.mhi-body .mhi-main .mhi-logo {
		position: absolute;
		width: 39.2%;
		height: 14.4vw;
	}
	.mhi-body .mhi-main .mhi-logo img {
		width: 76.8%;
	}
	.mhi-body .mhi-main .mhi-btn {
		left: 19.2%;
		top: 81.15%;
		width: 62.4%;
	}
}

/*============================================================
	ABOUT
*/
.mhi-body .mhi-about {
	padding: 120px 0 100px 0;
	background-position: 0 50%;
	background-color: #e31f26;
	background-image: url('../img/about-bg.svg');
	background-size: contain;
	color: #fff;
}
.mhi-body .mhi-about .mhi-lead {
	display: table;
	margin: 0 auto;
	font-size: 40px;
	line-height: 2;
}
/* TB */
@media screen and (max-width: 980px) {
	.mhi-body .mhi-about .mhi-lead {
		font-size: 30px;
	}
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-about {
		padding: 50px 0;
		background-position: 96% 100%;
		background-size: 64% auto;
	}
	.mhi-body .mhi-about .mhi-lead {
		font-size: 5vw;
	}
}

/*============================================================
	NAV
*/
.mhi-body .mhi-nav {
	padding: 50px;
}
.mhi-body .mhi-nav nav {
	margin: 0 auto;
	max-width: 980px;
}
.mhi-body .mhi-nav ul {
	display: flex;
	text-align: center;
	font-size: 28px;
	line-height: 40px;
}
.mhi-body .mhi-nav ul li {
	position: relative;
	flex-basis: 24%;
	border-right: 2px solid #000;
}
.mhi-body .mhi-nav ul li:first-child {
	border-left: 2px solid #000;
}
.mhi-body .mhi-nav ul li:last-child {
	flex-basis: 52%;
}
.mhi-body .mhi-nav ul li a,
.mhi-body .mhi-nav ul li span {
	display: block;
	position: relative;
	padding: 12px 0 22px 0;
	color: #000;
}
.mhi-body .mhi-nav ul li a::after,
.mhi-body .mhi-nav ul li span::after {
	content: '';
	display: block;
	position: absolute;
	bottom: 5px;
	left: 50%;
	margin-left: -10px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #e31f26 transparent transparent transparent;
}
.mhi-body .mhi-nav ul li span {
	opacity: 0.4;
}
.mhi-body .mhi-nav ul li a {
	transition: color 0.3s ease;
}
.mhi-body .mhi-nav ul li br.static {
	display: none;
}
/* SP */
@media screen and (max-width: 1080px) {
	.mhi-body .mhi-nav ul {
		flex-wrap: wrap;
		line-height: 1.3;
	}
	.mhi-body .mhi-nav ul li {
		flex-basis: 50%;
	}
	.mhi-body .mhi-nav ul li:last-child {
		flex-basis: 100%;
		margin-top: 30px;
		border-left: 2px solid #000;
		font-size: inherit;
	}
}
/* HOVER */
@media screen and (min-width: 768px) {
	.os-pc .mhi-body .mhi-nav ul li a:hover {
		color: #e31f26;
	}
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-nav {
		padding: 25px 20px;
	}
	.mhi-body .mhi-nav ul {
		font-size: 4.8vw;
	}
	.mhi-body .mhi-nav ul li a,
	.mhi-body .mhi-nav ul li span {
		padding: 2.6vw 0 4.8vw 0;
	}
	.mhi-body .mhi-nav ul li a::after,
	.mhi-body .mhi-nav ul li span::after {
		bottom: 6px;
		margin-left: -8px;
		border-width: 8px 8px 0 8px;
	}
	.mhi-body .mhi-nav ul li br.static {
		display: block;
	}
}

/*============================================================
	content
*/
.mhi-body .mhi-content {
	padding: 0 0 100px 0;
	background-repeat: repeat;
	background-image: url('../img/point-bg.png');
	background-size: 8px 8px;
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-content {
		padding: 0 0 12vw 0;
	}
}

/*============================================================
	point
*/
.mhi-body .mhi-point {
	padding: 90px 50px 0 50px;
}
.mhi-body .mhi-point .mhi-frame {
	overflow: hidden;
	margin: 0 auto;
	max-width: 980px;
	background-color: #fff;
	border: 7px solid #000;
	border-radius: 30px;
}
.mhi-body .mhi-point .mhi-frame .mhi-headline {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 242px;
	background-image: url('../img/point-kv.jpg');
	background-size: cover;
	border-bottom: 7px solid #000;
}
.mhi-body .mhi-point .mhi-frame .mhi-headline h2 {
	font-size: 80px;
	line-height: 1.2;
	color: #e31f26;
}
.mhi-body .mhi-point .mhi-frame .mhi-detail {
	padding: 60px 86px;
}
.mhi-body .mhi-point .mhi-frame .mhi-recommend {
	display: flex;
}
.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-head {
	flex-basis: 268px;
}
.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-head h3 {
	margin: -0.1em 0 0.2em -0.1em;
	font-size: 45px;
	line-height: 1.28;
}
.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-head .mhi-en {
	font-size: 17px;
	line-height: 1.5;
	color: #e31f26;
}
.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-check {
	flex: 1;
	font-size: 30px;
}
.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-check ul li {
	position: relative;
	margin-top: 15px;
	padding-left: 46px;
}
.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-check ul li:first-child {
	margin-top: 0;
}
.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-check ul li::before {
	content: '';
	display: block;
	position: absolute;
	top: 0.18em;
	left: 0;
	width: 38px;
	height: 35px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	background-image: url('../img/point-check.svg');
	background-size: contain;
}
.mhi-body .mhi-point .mhi-frame .mhi-list {
	margin-top: 50px;
	padding-top: 45px;
	border-top: 7px solid #000;
}
.mhi-body .mhi-point .mhi-frame .mhi-list ul {
	display: flex;
	flex-wrap: wrap;
	margin: -10px;
}
.mhi-body .mhi-point .mhi-frame .mhi-list ul li {
	flex-basis: 50%;
	padding: 10px;
}
.mhi-body .mhi-point .mhi-frame .mhi-list ul li .mhi-block {
	display: flex;
	align-items: center;
	padding: 20px 0 20px 15px;
	background-color: #f0f0f0;
	border-radius: 15px;
	font-size: 20px;
}
.mhi-body .mhi-point .mhi-frame .mhi-list ul li .mhi-block .mhi-icon {
	flex-basis: 120px;
}
.mhi-body .mhi-point .mhi-frame .mhi-list ul li .mhi-block p {
	flex: 1;
	padding-left: 16px;
}
/* TB */
@media screen and (max-width: 980px) {
	.mhi-body .mhi-point .mhi-frame .mhi-headline h2 {
		font-size: 70px;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-detail {
		padding: 60px 50px;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-recommend {
		display: block;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-head {
		margin-bottom: 30px;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-head br {
		display: none;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-list ul {
		display: block;
		margin: 0;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-list ul li {
		padding-left: 0;
		padding-right: 0;
	}
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-point {
		padding: 40px 20px 0 20px;
	}
	.mhi-body .mhi-point .mhi-frame {
		border-width: 4px;
		border-radius: 18px;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-headline {
		height: auto;
		background-image: url('../img/point-kv-sp.jpg');
		border-width: 4px;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-headline h2 {
		padding: 0.7em 0;
		font-size: 9.33vw;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-detail {
		padding: 7vw 5.33vw 8vw 5.33vw;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-head h3 {
		margin: 0 0 0.1em -0.1em;
		font-size: 6.93vw;
		line-height: 1.4;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-head .mhi-en {
		font-size: 2.93vw;
		letter-spacing: 0;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-check {
		font-size: 4.26vw;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-check ul li {
		margin-top: 2vw;
		padding-left: 7vw;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-recommend .mhi-check ul li::before {
		top: 0;
		width: 6.2vw;
		height: 6.2vw;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-list {
		margin-top: 10vw;
		padding-top: 5vw;
		border-width: 4px;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-list ul li {
		padding: 4vw 0 0 0;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-list ul li .mhi-block {
		padding: 3vw 0 3vw 3vw;
		border-radius: 15px;
		font-size: 3.73vw;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-list ul li .mhi-block .mhi-icon {
		flex-basis: 32%;
	}
	.mhi-body .mhi-point .mhi-frame .mhi-list ul li .mhi-block p {
		padding-left: 3.6vw;
	}
}

/*============================================================
	PROGRAM
*/
.mhi-body .mhi-program {
	padding: 70px 50px 0 50px;
}
.mhi-body .mhi-program .mhi-frame {
	overflow: hidden;
	margin: 0 auto;
	padding: 0 80px 60px 80px;
	max-width: 1160px;
	background-color: #fff;
	border: 7px solid #000;
	border-radius: 30px;
}
.mhi-body .mhi-program .mhi-headline {
	position: relative;
	padding: 70px 0 50px 0;
	border-bottom: 7px solid #000;
	text-align: center;
}
.mhi-body .mhi-program .mhi-headline .mhi-inner {
	position: relative;
}
.mhi-body .mhi-program .mhi-headline h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 80px;
	line-height: 1.2;
	color: #e31f26;
}
.mhi-body .mhi-program .mhi-headline h2 span {
	display: block;
	position: relative;
}
.mhi-body .mhi-program .mhi-headline h2 span::before,
.mhi-body .mhi-program .mhi-headline h2 span::after {
	content: none;
	display: block;
	position: absolute;
	top: 50%;
	width: 16vw;
	height: 16vw;
	transform: translateY(-44%);
	background-size: contain;
}
.mhi-body .mhi-program .mhi-headline h2 span::before {
	right: 100%;
	margin-right: 1vw;
	background-image: url('../img/program-img-l-sp.png');
}
.mhi-body .mhi-program .mhi-headline h2 span::after {
	left: 100%;
	margin-left: 1vw;
	background-image: url('../img/program-img-r-sp.png');
}
.mhi-body .mhi-program .mhi-headline .mhi-lead {
	position: relative;
	margin-top: 10px;
	font-size: 20px;
	line-height: 1.65;
}
.mhi-body .mhi-program .mhi-headline .mhi-note {
	position: relative;
	margin-top: 10px;
	font-size: 16px;
}
.mhi-body .mhi-program .mhi-headline .mhi-img {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 17vw;
	max-width: 220px;
	background-position: 50% 50%;
	background-size: contain;
}
.mhi-body .mhi-program .mhi-headline .mhi-img-l {
	left: 0;
	margin-left: -20px;
	background-image: url('../img/program-img-l.png');
}
.mhi-body .mhi-program .mhi-headline .mhi-img-r {
	right: 0;
	margin-right: -20px;
	background-image: url('../img/program-img-r.png');
}
/**/
.mhi-body .mhi-program .mhi-list {
	display: flex;
	flex-wrap: wrap;
	margin: 55px -20px 0 -20px;
}
.mhi-body .mhi-program .mhi-list > li {
	flex-basis: 33.333%;
	padding: 0 20px 40px 20px;
}
.mhi-body .mhi-program .mhi-block-thumb {
	position: relative;
	z-index: 1;
	overflow: hidden;
	border-radius: 15px;
}
.mhi-body .mhi-program .mhi-block-thumb a,
.mhi-body .mhi-program .mhi-block-thumb span {
	display: block;
}
.mhi-body .mhi-program .mhi-block-thumb a img {
	display: block;
	transition: transform 0.3s ease;
}
.mhi-body .mhi-program .mhi-block-head {
	margin: 20px 0 0 0;
}
.mhi-body .mhi-program .mhi-block-head::after {
	content: '';
	display: block;
	clear: both;
}
.mhi-body .mhi-program .mhi-parts-category {
	float: left;
}
.mhi-body .mhi-program .mhi-parts-time {
	float: right;
}
.mhi-body .mhi-program .mhi-block-title {
	margin: 12px 0 8px 0;
	font-size: 19px;
	line-height: 1.6;
}
.mhi-body .mhi-program .mhi-block-button-accordion {
	display: none;
}
.mhi-body .mhi-program .mhi-block-detail {
	overflow: hidden;
	display: none;
	height: 0;
}

.mhi-body .mhi-program .mhi-block-button-view {
	margin: 15px 0 0 0;
}

/* HOVER */
@media screen and (min-width: 768px) {
	.os-pc .mhi-body .mhi-program .mhi-block-thumb a:hover img {
		transform: scale(1.06);
	}
	.os-pc .mhi-body .mhi-program .mhi-block-button-view a:hover {
		background-color: #e31f26;
		color: #fff;
	}
}


.mhi-body .mhi-program .mhi-foot {
	padding: 1.5em 1em;
	background-color: #f0f0f0;
	border-radius: 15px;
	text-align: center;
	font-size: 19px;
	line-height: 1.6;
}
.mhi-body .mhi-program .mhi-foot br {
	display: none;
}
@media screen and (max-width: 1200px) {
	.mhi-body .mhi-program .mhi-parts-category {
		float: none;
	}
	.mhi-body .mhi-program .mhi-parts-time {
		float: none;
		margin: 15px 0 0 0;
	}
}
/* HOVER */
@media screen and (min-width: 768px) {
	.os-pc .mhi-body .mhi-program .mhi-block-thumb a:hover img {
		transform: scale(1.06);
	}
}
/* TB */
@media screen and (max-width: 1100px) {
	.mhi-body .mhi-program .mhi-headline {
		min-height: initial;
	}
	.mhi-body .mhi-program .mhi-headline h2 span::before,
	.mhi-body .mhi-program .mhi-headline h2 span::after {
		content: '';
		width: 140px;
		height: 140px;
	}
	.mhi-body .mhi-program .mhi-headline .mhi-img {
		display: none;
	}
	.mhi-body .mhi-program .mhi-headline .mhi-lead {
		margin-top: 20px;
	}
	.mhi-body .mhi-program .mhi-list > li {
		flex-basis: 50%;
	}
	.mhi-body .mhi-program .mhi-parts-category {
		float: left;
	}
	.mhi-body .mhi-program .mhi-parts-time {
		float: right;
		margin: 0;
	}
}
@media screen and (max-width: 980px) {
	.mhi-body .mhi-program .mhi-frame {
		padding: 0 50px 50px 50px;
	}
	.mhi-body .mhi-program .mhi-headline {
		padding: 50px 0 50px 0;
	}
	.mhi-body .mhi-program .mhi-headline h2 {
		font-size: 6.5vw;
	}
	.mhi-body .mhi-program .mhi-headline h2 span::before,
	.mhi-body .mhi-program .mhi-headline h2 span::after {
		width: 120px;
		height: 120px;
	}
	.mhi-body .mhi-program .mhi-headline .mhi-lead p br {
		display: none;
	}
	.mhi-body .mhi-program .mhi-list {
		padding-bottom: 20px;
	}
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-program {
		padding: 20px 20px 0 20px;
	}
	.mhi-body .mhi-program .mhi-frame {
		padding: 0 5.33vw 5.33vw 5.33vw;
		border-width: 4px;
		border-radius: 4.8vw;
	}
	.mhi-body .mhi-program .mhi-headline {
		padding: 8vw 0 5.33vw 0;
		border-width: 3px;
		text-align: left;
	}
	.mhi-body .mhi-program .mhi-headline h2 {
		font-size: 8.8vw;
	}
	.mhi-body .mhi-program .mhi-headline h2 span::before,
	.mhi-body .mhi-program .mhi-headline h2 span::after {
		width: 16vw;
		height: 16vw;
	}
	.mhi-body .mhi-program .mhi-headline .mhi-lead {
		margin-top: 4vw;
		font-size: 4.26vw;
		line-height: 1.65;
	}
	.mhi-body .mhi-program .mhi-headline .mhi-lead p br {
		display: none;
	}
	.mhi-body .mhi-program .mhi-headline .mhi-note {
		margin-top: 0;
		font-size: 4.26vw;
		line-height: 1.65;
	}
	/**/
	.mhi-body .mhi-program .mhi-list {
		display: block;
		margin: 9.6vw 0 0 0;
		padding: 0;
	}
	.mhi-body .mhi-program .mhi-list > li {
		padding: 0 0 10vw 0;
	}
	.mhi-body .mhi-program .mhi-block-thumb {
		border-radius: 3.7vw;
	}
	.mhi-body .mhi-program .mhi-block-head {
		margin: 5vw 0 0 0;
	}
	.mhi-body .mhi-program .mhi-block-title {
		margin: 2.6vw 0;
		font-size: 4.7vw;
	}
	.mhi-body .mhi-program .mhi-block-button-modal {
		display: none;
	}
	.mhi-body .mhi-program .mhi-block-button-accordion {
		display: block;
	}
	.mhi-body .mhi-program .mhi-block-detail {
		display: block;
		margin: 0 -3vw;
		padding: 0 3vw;
	}
	.mhi-body .mhi-program .mhi-block-detail-lead {
		padding-top: 6.6vw;
		font-size: 4vw;
		line-height: 1.7;
	}
	.mhi-body .mhi-program .mhi-block-speaker {
		margin-top: 6.6vw;
		border-top: 3px solid #000;
	}
	.mhi-body .mhi-program .mhi-block-speaker > li {
		display: flex;
		padding-top: 6vw;
	}
	.mhi-body .mhi-program .mhi-block-speaker-portrait {
		flex-basis: 21.3%;
	}
	.mhi-body .mhi-program .mhi-block-speaker-portrait span {
		display: block;
		overflow: hidden;
		border-radius: 50%;
	}
	.mhi-body .mhi-program .mhi-block-speaker-text {
		flex: 1;
		padding-left: 6.4vw;
		font-size: 3.7vw;
		line-height: 1.6;
	}
	.mhi-body .mhi-program .mhi-block-button {
		padding: 6vw 0 2px 0;
	}
	.mhi-body .mhi-program .opened .mhi-button-more i::after {
		content: none;
	}
	.mhi-body .mhi-program .mhi-foot {
		padding: 1em 0.5em;
		border-radius: 4vw;
		font-size: 4vw;
	}
	.mhi-body .mhi-program .mhi-foot br {
		display: block;
	}
}

/*============================================================
	INTERNSHIP
*/
.mhi-body .mhi-internship {
	padding: 70px 50px 0 50px;
}
.mhi-body .mhi-internship .mhi-frame {
	overflow: hidden;
	margin: 0 auto;
	padding: 0 80px;
	max-width: 1160px;
	background-color: #fff;
	border: 7px solid #000;
	border-radius: 30px;
}
.mhi-body .mhi-internship .mhi-headline {
	position: relative;
	padding: 50px 0 40px 0;
	border-bottom: 7px solid #000;
	text-align: center;
}
.mhi-body .mhi-internship .mhi-headline .mhi-inner {
	position: relative;
}
.mhi-body .mhi-internship .mhi-headline h2 {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-size: 70px;
	line-height: 1.2;
	color: #e31f26;
}
.mhi-body .mhi-internship .mhi-headline h2 span {
	display: block;
	position: relative;
}
.mhi-body .mhi-internship .mhi-headline h2 br {
	display: none;
}
.mhi-body .mhi-internship .mhi-headline h2 br.static {
	display: block;
}
.mhi-body .mhi-internship .mhi-headline h2 span::before,
.mhi-body .mhi-internship .mhi-headline h2 span::after {
	content: none;
	display: block;
	position: absolute;
	top: 50%;
	width: 16vw;
	height: 16vw;
	transform: translateY(-44%);
	background-size: contain;
}
.mhi-body .mhi-internship .mhi-headline h2 span::before {
	right: 100%;
	margin-right: 1vw;
	background-image: url('../img/internship-img-l-sp.png');
}
.mhi-body .mhi-internship .mhi-headline h2 span::after {
	left: 100%;
	margin-left: 1vw;
	background-image: url('../img/internship-img-r-sp.png');
}
.mhi-body .mhi-internship .mhi-headline .mhi-lead {
	position: relative;
	margin-top: 10px;
	font-size: 20px;
	line-height: 1.65;
}
.mhi-body .mhi-internship .mhi-headline .mhi-img {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 17vw;
	max-width: 220px;
	background-position: 50% 50%;
	background-size: contain;
}
.mhi-body .mhi-internship .mhi-headline .mhi-img-l {
	left: 0;
	margin-left: -20px;
	background-image: url('../img/internship-img-l.png');
}
.mhi-body .mhi-internship .mhi-headline .mhi-img-r {
	right: 0;
	margin-right: -20px;
	background-image: url('../img/internship-img-r.png');
}
/**/
.mhi-body .mhi-internship .mhi-anchor {
	padding: 30px 0 10px 0;
}
.mhi-body .mhi-internship .mhi-anchor ul {
	display: flex;
}
.mhi-body .mhi-internship .mhi-anchor li {
	position: relative;
	margin: 20px 0 0 0;
	width: 100%;
}
.mhi-body .mhi-internship .mhi-anchor li::before,
.mhi-body .mhi-internship .mhi-anchor li::after {
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	width: 2px;
	background-color: #000;
}
.mhi-body .mhi-internship .mhi-anchor li::before {
	content: '';
	left: 0;
}
.mhi-body .mhi-internship .mhi-anchor li::after {
	right: 0;
}
.mhi-body .mhi-internship .mhi-anchor li:last-child:after {
	content: '';
}
.mhi-body .mhi-internship .mhi-anchor li a {
	display: block;
	position: relative;
	padding: 5px 0;
	text-align: center;
	font-size: 25px;
	line-height: 1.3;
	color: #000;
	transition: color 0.3s ease;
}
.mhi-body .mhi-internship .mhi-anchor li a::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	right: 12px;
	margin-top: -5px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 10px 10px 0 10px;
	border-color: #e31f26 transparent transparent transparent;
}
.mhi-body .mhi-internship .mhi-wrapper {
	padding-bottom: 80px;
}
.mhi-body .mhi-internship .mhi-section {
	padding-top: 30px;
}
.mhi-body .mhi-internship .mhi-heading {
	font-size: 25px;
	line-height: 1.3;
}
.mhi-body .mhi-internship .mhi-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0 -10px;
}
.mhi-body .mhi-internship .mhi-list > li {
	margin-top: 10px;
	padding: 0 10px 10px 10px;
	flex-basis: 25%;
}
.mhi-body .mhi-internship .mhi-block {
	overflow: hidden;
	height: 100%;
	border-radius: 17px;
}
.mhi-body .mhi-internship .mhi-block-title {
	overflow: hidden;
	padding: 12px 3px;
	min-height: 75px;
	text-align: center;
	font-size: 19px;
	line-height: 1.3;
	color: #fff;
}
.mhi-body .mhi-internship .mhi-block-title.mini {
	font-size: 18px;
}
.mhi-body .mhi-internship .mhi-block-title .small1 {
	display: block;
	margin-top: 5px;
	font-size: 64%;
}
.mhi-body .mhi-internship .mhi-block-title .small2 {
	display: block;
	margin-top: 2px;
	font-size: 80%;
}
.mhi-body .mhi-internship .mhi-block-detail {
	padding: 13px 15px 17px 15px;
}
.mhi-body .mhi-internship .mhi-parts-category {
	margin: 5px 0 15px 0;
}
.mhi-body .mhi-internship .mhi-parts-category span {
	background-color: #fff;
}
.mhi-body .mhi-internship .mhi-parts-time {
	margin: 5px 0 15px 0;
}
/**/
.mhi-body .mhi-internship .mhi-list > li:nth-child(odd) .mhi-block {
	background-color: #fce9e9;
}
.mhi-body .mhi-internship .mhi-list > li:nth-child(even) .mhi-block {
	background-color: #e5f3fb;
}
.mhi-body .mhi-internship .mhi-list > li:nth-child(odd) .mhi-block-title {
	background-color: #e31f26;
}
.mhi-body .mhi-internship .mhi-list > li:nth-child(even) .mhi-block-title {
	background-color: #008cd6;
}
@media screen and (max-width: 1100px) and (min-width: 768px) {
	.mhi-body .mhi-internship .mhi-list .type-a .mhi-block {
		background-color: #fce9e9 !important;
	}
	.mhi-body .mhi-internship .mhi-list .type-b .mhi-block {
		background-color: #e5f3fb !important;
	}
	.mhi-body .mhi-internship .mhi-list .type-a .mhi-block-title {
		background-color: #e31f26 !important;
	}
	.mhi-body .mhi-internship .mhi-list .type-b .mhi-block-title {
		background-color: #008cd6 !important;
	}
	.os-pc .mhi-body .mhi-internship .mhi-list .type-a a.mhi-button-view:hover {
		background-color: #e31f26 !important;
	}
	.os-pc .mhi-body .mhi-internship .mhi-list .type-b a.mhi-button-view:hover {
		background-color: #008cd6 !important;
	}
}


/* COMINGSOON */
.mhi-body .mhi-internship .mhi-comingsoon {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 260px;
	font-size: 50px;
	line-height: 1.2;
	color: #008cd6;
}
/* HOVER */
@media screen and (min-width: 768px) {
	.os-pc .mhi-body .mhi-internship .mhi-anchor li a:hover {
		color: #e31f26;
	}
	.os-pc .mhi-body .mhi-internship .mhi-list a.mhi-button-view:hover {
		color: #fff;
	}
	.os-pc .mhi-body .mhi-internship .mhi-list > li:nth-child(odd) a.mhi-button-view:hover {
		background-color: #e31f26;
	}
	.os-pc .mhi-body .mhi-internship .mhi-list > li:nth-child(even) a.mhi-button-view:hover {
		background-color: #008cd6;
	}
}
/* TB */
@media screen and (max-width: 1260px) {
	.mhi-body .mhi-internship .mhi-block-title .small1 {
		margin-top: 0;
	}
	.mhi-body .mhi-internship .mhi-block-title br.static {
		display: none;
	}
}
@media screen and (max-width: 1100px) {
	.mhi-body .mhi-internship .mhi-headline {
		padding: 50px 0 50px 0;
	}
	.mhi-body .mhi-internship .mhi-headline h2 span::before,
	.mhi-body .mhi-internship .mhi-headline h2 span::after {
		content: '';
		margin: 0;
		width: 140px;
		height: 140px;
	}
	.mhi-body .mhi-internship .mhi-headline .mhi-img {
		display: none;
	}
	.mhi-body .mhi-internship .mhi-headline .mhi-lead {
		margin-top: 20px;
	}
	.mhi-body .mhi-internship .mhi-anchor ul {
		flex-wrap: wrap;
	}
	.mhi-body .mhi-internship .mhi-anchor li {
		width: 33.333%;
	}
	.mhi-body .mhi-internship .mhi-anchor li:nth-child(3)::after {
		content: '';
	}
	.mhi-body .mhi-internship .mhi-anchor li:last-child::after {
		right: -2px;
	}
	.mhi-body .mhi-internship .mhi-list > li {
		flex-basis: 50%;
	}
	.mhi-body .mhi-internship .mhi-block-title {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		padding-left: 0.5em;
		padding-right: 0.5em;
	}
	.mhi-body .mhi-internship .mhi-block-title .small1 {
		margin-top: 2px;
		font-size: 80%;
	}
	.mhi-body .mhi-internship .mhi-block-title .small1 br {
		display: none;
	}
}
@media screen and (max-width: 980px) {
	.mhi-body .mhi-internship .mhi-frame {
		padding: 0 50px 0 50px;
	}
	.mhi-body .mhi-internship .mhi-headline h2 {
		font-size: 6.1vw;
	}
	.mhi-body .mhi-internship .mhi-headline h2 span::before,
	.mhi-body .mhi-internship .mhi-headline h2 span::after {
		width: 120px;
		height: 120px;
	}
	.mhi-body .mhi-internship .mhi-headline .mhi-lead p br {
		display: none;
	}
	.mhi-body .mhi-internship .mhi-wrapper {
		padding-bottom: 40px;
	}
	.mhi-body .mhi-internship .mhi-block-title .small1,
	.mhi-body .mhi-internship .mhi-block-title .small2 {
		margin-top: 2px;
		font-size: 70%;
	}
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-internship {
		padding: 20px 20px 0 20px;
	}
	.mhi-body .mhi-internship .mhi-frame {
		padding: 0 5.33vw;
		border-width: 4px;
		border-radius: 4.8vw;
	}
	.mhi-body .mhi-internship .mhi-headline {
		padding: 6vw 0 5.33vw 0;
		border-width: 3px;
		text-align: left;
	}
	.mhi-body .mhi-internship .mhi-headline h2 {
		font-size: 6.6vw;
	}
	.mhi-body .mhi-internship .mhi-headline h2 span::before,
	.mhi-body .mhi-internship .mhi-headline h2 span::after {
		width: 16vw;
		height: 16vw;
	}
	.mhi-body .mhi-internship .mhi-headline .mhi-lead {
		margin-top: 4vw;
		font-size: 4.26vw;
		line-height: 1.65;
	}
	/**/
	.mhi-body .mhi-internship .mhi-anchor {
		padding: 5.4vw 0 10px 0;
	}
	.mhi-body .mhi-internship .mhi-anchor li {
		margin: 2.6vw 0 0 0;
	}
	.mhi-body .mhi-internship .mhi-anchor li a {
		padding: 1.3vw 0;
		font-size: 4.5vw;
	}
	.mhi-body .mhi-internship .mhi-anchor li a::after {
		position: static;
		margin: 1vw auto 0 auto;
		border-width: 10px 10px 0 10px;
	}
	.mhi-body .mhi-internship .mhi-wrapper {
		padding-bottom: 7vw;
	}
	.mhi-body .mhi-internship .mhi-section {
		padding-top: 7vw;
	}
	.mhi-body .mhi-internship .mhi-heading {
		font-size: 5.3vw;
	}
	.mhi-body .mhi-internship .mhi-list {
		display: block;
		margin: 0;
	}
	.mhi-body .mhi-internship .mhi-list > li {
		margin-top: 4vw;
		padding: 0;
	}
	.mhi-body .mhi-internship .mhi-block {
		height: auto;
		border-radius: 3.7vw;
	}
	.mhi-body .mhi-internship .mhi-block-title {
		padding: 2.6vw 4vw;
		font-size: 5vw;
	}
	.mhi-body .mhi-internship .mhi-block-title .small1,
	.mhi-body .mhi-internship .mhi-block-title .small2 {
		font-size: 66%;
	}
	.mhi-body .mhi-internship .mhi-block-title br.static {
		display: block;
	}
	.mhi-body .mhi-internship .mhi-block-detail {
		padding: 4vw 4vw 4vw 4vw;
	}
	.mhi-body .mhi-internship .mhi-parts-category {
		margin: 1vw 0 4vw 0;
	}
	.mhi-body .mhi-internship .mhi-parts-time {
		margin: 1vw 0 4vw 0;
	}
	/**/
	.mhi-body .mhi-internship .mhi-comingsoon {
		min-height: 40vw;
		font-size: 6.8vw;
	}
}

/*============================================================
	MODAL
*/
.mhi-body .mhi-modal {
	display: none;
	position: fixed;
	z-index: 99999;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.4s ease;
}
.mhi-body .mhi-modal.mhi-modal-opened {
	opacity: 1;
}
.mhi-body .mhi-modal::before {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(255,255,255,0.9);
}
.mhi-body .mhi-modal .mhi-modal-wrapper {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	overflow: auto;
}
.mhi-body .mhi-modal .mhi-modal-outer {
	margin: auto;
	padding: 10px 0 70px 0;
	width: 100%;
	max-width: 768px;
}
.mhi-body .mhi-modal .mhi-modal-head {
	display: flex;
	justify-content: flex-end;
	margin: 0 auto;
	max-width: 610px;
}
.mhi-body .mhi-modal .mhi-modal-close {
	position: relative;
	display: block;
	margin-right: -8px;
	width: 50px;
	height: 50px;
	transition: opacity 0.3s ease;
}
.mhi-body .mhi-modal .mhi-modal-close::before,
.mhi-body .mhi-modal .mhi-modal-close::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -2px 0 0 -21px;
	width: 42px;
	height: 4px;
	background-color: #000;
	transform-origin: 50% 50%;
}
.mhi-body .mhi-modal .mhi-modal-close::before {
	transform: rotate(45deg);
}
.mhi-body .mhi-modal .mhi-modal-close::after {
	transform: rotate(-45deg);
}
.mhi-body .mhi-modal .mhi-modal-content {
	position: relative;
}
.mhi-body .mhi-modal .mhi-modal-slider {
	position: relative;
	margin: 0 auto;
	max-width: 630px;
}
.mhi-body .mhi-modal .mhi-modal-block {
	margin: 0 10px;
	padding: 40px;
	border: 6px solid #000;
	border-radius: 30px;
	background: #fff;
}
.mhi-body .mhi-modal.mhi-modal-opened .mhi-modal-slide {
	transition: all 0.4s ease;
}
.mhi-body .mhi-modal .mhi-block-image {
	overflow: hidden;
	border-radius: 15px;
}
.mhi-body .mhi-modal .mhi-block-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 20px 0;
}
.mhi-body .mhi-modal .mhi-block-head {
	display: flex;
	padding-top: 3px;
}
.mhi-body .mhi-modal .mhi-parts-category {
	margin-right: 10px;
}
.mhi-body .mhi-modal .mhi-block-button {
	width: 220px;
}
.mhi-body .mhi-modal .mhi-block-title {
	font-size: 19px;
	line-height: 1.4;
}
.mhi-body .mhi-modal .mhi-block-lead {
	margin-top: 10px;
	font-size: 15px;
	line-height: 1.7;
}
.mhi-body .mhi-modal .mhi-block-lead li {
	position: relative;
	padding-left: 0.8em;
}
.mhi-body .mhi-modal .mhi-block-lead li::before {
	content: '・';
	position: absolute;
	top: 0;
	left: 0;
}
.mhi-body .mhi-modal .mhi-block-speaker {
	margin-top: 25px;
	padding-top: 10px;
	border-top: 4px solid #000;
}
.mhi-body .mhi-modal .mhi-block-speaker > li {
	display: flex;
	padding: 15px 0 10px 0;
}
.mhi-body .mhi-modal .mhi-block-speaker-portrait {
	flex-basis: 82px;
}
.mhi-body .mhi-modal .mhi-block-speaker-portrait span {
	display: block;
	overflow: hidden;
	border-radius: 50%;
}
.mhi-body .mhi-modal .mhi-block-speaker-text {
	flex: 1;
	padding-left: 25px;
	font-size: 14px;
	line-height: 1.6;
}
/**/
.mhi-body .mhi-modal .mhi-modal-prev,
.mhi-body .mhi-modal .mhi-modal-next {
	display: block;
	position: absolute;
	top: 50%;
	margin-top: -27px;
	width: 54px;
	height: 54px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	transition: opacity 0.3s ease;
}
.mhi-body .mhi-modal .mhi-modal-prev {
	left: 15px;
	background-image: url(../img/icon-arrow-prev.svg);
}
.mhi-body .mhi-modal .mhi-modal-next {
	right: 15px;
	background-image: url(../img/icon-arrow-next.svg);
}
/**/
@media screen and (min-width: 768px) {
	.os-pc .mhi-body .mhi-modal a.mhi-button-view:hover {
		background-color: #e31f26;
		color: #fff;
	}
	.os-pc .mhi-body .mhi-modal .mhi-modal-close:hover,
	.os-pc .mhi-body .mhi-modal .mhi-modal-prev:hover,
	.os-pc .mhi-body .mhi-modal .mhi-modal-next:hover {
		opacity: 0.6;
	}
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-modal {
		display: none !important;
	}
}

/*============================================================
	FOOTER
*/
.mhi-body .mhi-footer footer {
	padding: 50px 0 30px 0;
	text-align: center;
}
.mhi-body .mhi-footer footer .mhi-logo {
	margin: 0 auto;
	max-width: 220px;
}
.mhi-body .mhi-footer footer small {
	display: block;
	margin-top: 35px;
	font-size: 13px;
	color: #000;
}
/* SP */
@media screen and (max-width: 767px) {
	.mhi-body .mhi-footer footer {
		padding: 30px 0 23% 0;
	}
	.mhi-body .mhi-footer footer .mhi-logo {
		max-width: 158px;
	}
	.mhi-body .mhi-footer footer small {
		margin-top: 20px;
	}
}
