@charset "utf-8";


.story-head {
	width: 100%;
}

.story-head__image {
	height: 600px;
	display: flex;
	position: relative;
	z-index: 0;
}

.story-head__image__item {
	max-width: 25%;
	flex-basis: 25%;
}

.story-head__image__item span {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}

.story-head__image__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

span.story-head__image_sp {
	display: none;
}

_:-ms-lang(x)::-ms-backdrop, .story-head__image__item span {
	display: none;
}

_:-ms-lang(x)::-ms-backdrop, .story-head__image__item {
	background-position: center center;
	background-size: cover;
}

_:-ms-lang(x)::-ms-backdrop, .story-head__image01 {
	background-image: url(../images/story/img_head_pc01.jpg);
}

_:-ms-lang(x)::-ms-backdrop, .story-head__image02 {
	background-image: url(../images/story/img_head_pc02.jpg);
}

_:-ms-lang(x)::-ms-backdrop, .story-head__image03 {
	background-image: url(../images/story/img_head_pc03.jpg);
}

_:-ms-lang(x)::-ms-backdrop, .story-head__image04 {
	background-image: url(../images/story/img_head_pc04.jpg);
}


@supports (-ms-ime-align: auto) {

	.story-head__image__item span {
		display: none;
	}
	
	.story-head__image__item {
		background-position: center center;
		background-size: cover;
	}
	
	.story-head__image01 {
		background-image: url(../images/story/img_head_pc01.jpg);
	}
	
	.story-head__image02 {
		background-image: url(../images/story/img_head_pc02.jpg);
	}
	
	.story-head__image03 {
		background-image: url(../images/story/img_head_pc03.jpg);
	}
	
	.story-head__image04 {
		background-image: url(../images/story/img_head_pc04.jpg);
	}

}

.story-head__title,
.story-head__text {
	padding: 0 6vw;
	position: relative;
	z-index: 1;
	font-weight: 700;
	text-align: center;
	color: rgba(159, 32, 38, 1);
	letter-spacing: .1em;
}

.story-head__title {
	margin-top: -50px;
	margin-bottom: 40px;
	font-size: 6rem;
	line-height: 1.6;
}

.story-head__text {
	font-size: 1.8rem;
	line-height: 2;
}


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

	.story-head__image {
		height: 450px;
	}

	.story-head__title {
		margin-top: -40px;
		margin-bottom: 30px;
		font-size: 5rem;
	}

	.story-head__text {
		font-size: 1.6rem;
	}

}


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

	.story-head__image {
		height: 400px;
		flex-wrap: wrap;
	}

	.story-head__image__item {
		max-width: 50%;
		flex-basis: 50%;
	}

	span.story-head__image_pc {
		display: none;
	}

	span.story-head__image_sp {
		display: block;
	}

	_:-ms-lang(x)::-ms-backdrop, .story-head__image01 {
		background-image: url(../images/story/img_head_sp01.jpg);
	}

	_:-ms-lang(x)::-ms-backdrop, .story-head__image02 {
		background-image: url(../images/story/img_head_sp02.jpg);
	}

	_:-ms-lang(x)::-ms-backdrop, .story-head__image03 {
		background-image: url(../images/story/img_head_sp03.jpg);
	}

	_:-ms-lang(x)::-ms-backdrop, .story-head__image04 {
		background-image: url(../images/story/img_head_sp04.jpg);
	}

	@supports (-ms-ime-align: auto) {

		.story-head__image01 {
			background-image: url(../images/story/img_head_sp01.jpg);
		}
	
		.story-head__image02 {
			background-image: url(../images/story/img_head_sp02.jpg);
		}
	
		.story-head__image03 {
			background-image: url(../images/story/img_head_sp03.jpg);
		}
	
		.story-head__image04 {
			background-image: url(../images/story/img_head_sp04.jpg);
		}
	
	}

	.story-head__title {
		margin-top: -30px;
		margin-bottom: 20px;
		font-size: 4rem;
	}

	.story-head__text {
		font-size: 1.5rem;
	}

}


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

	.story-head__image {
		height: 300px;
	}

	.story-head__title {
		margin-top: -25px;
		font-size: 3rem;
	}



}


/*------------------------------------*/


.story-nav__list {
	display: flex;
	position: relative;
	flex-wrap: wrap;
}

.story-nav__list:after {
	content: "";
	width: 100%;
	height: 1px;
	display: block;
	background-color: rgba(0, 0, 0, .15);
	position: absolute;
	left: 0;
	bottom: 0;
}

.story-nav__list__item {
	max-width: calc((100% - 1px) / 7);
	flex-basis: calc((100% - 1px) / 7);
	position: relative;
	box-sizing: border-box;
}

.story-nav__list__item:before {
	height: 1px;
	display: block;
	background-color: rgba(0, 0, 0, .15);
	position: absolute;
	left: 0;
	top: 0;
}

.story-nav__list__item:nth-child(1):before {
		content: "";
		width: calc(100% * 7);
}

.story-nav__list__item:after {
	content: "";
	width: 1px;
	height: 100%;
	display: block;
	background-color: rgba(0, 0, 0, .15);
	position: absolute;
	right: 0;
	top: 0;
}

.story-nav__list__item:last-child:after {
	display: none;
}

.story-nav__list__item a {
	padding: 20px;
	display: flex;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}

.story-nav__list__item a:after {
	content: "";
	margin-top: 20px;
	border: 4px solid transparent;
	border-top: 7px solid rgba(0, 0, 0, 1);
}

.story-nav__list__item a:hover:after {
	transform: translateY(3px);
}


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

	.story-nav__list__item {
		max-width: calc((100% - 1px) / 4);
		flex-basis: calc((100% - 1px) / 4);
	}

	.story-nav__list__item:nth-child(1):before,
	.story-nav__list__item:nth-child(5):before {
		content: "";
		width: calc(100% * 4);
	}

	.story-nav__list__item:last-child:after {
		display: block;
	}

	.story-nav__list__item:nth-child(4n):after {
		display: none;
	}

}


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

	.story-nav__list__item {
		max-width: calc(100% / 2);
		flex-basis: calc(100% / 2);
	}

	.story-nav__list__item a {
		flex-direction: row;
		justify-content: space-between;
	}

	.story-nav__list__item:nth-child(1):before,
	.story-nav__list__item:nth-child(3):before,
	.story-nav__list__item:nth-child(5):before,
	.story-nav__list__item:nth-child(7):before {
		content: "";
		width: calc(100% * 2);
	}

	.story-nav__list__item:nth-child(2n):after {
		display: none;
	}

	.story-nav__list__item a {
		padding: 20px 15px;
	}

	.story-nav__list__item a:after {
		margin-top: 0;
		border-top: 4px solid transparent;
		border-left: 7px solid rgba(0, 0, 0, 1);
	}

	.story-nav__list__item a:hover:after {
		transform: translateX(3px);
	}

}


/*------------------------------------*/


.story-section__image_sp {
	display: none;
}

.story-section__contents {
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
}

.story-section__wrap {
	max-width: 800px;
	flex-basis: calc(100% - 300px - 40px);
}

.story-section__title {
	padding-left: 110px;
	position: relative;
	font-size: 3rem;
	font-weight: 700;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
	letter-spacing: .1em;
}

.story-section__title .en {
	display: block;
	font-size: 1.4rem;
	font-weight: 700;
	color: rgba(159, 32, 38, 1);
}

.story-section__title:before {
	content: "";
	width: 100px;
	height: 90px;
	display: block;
	position: absolute;
	left: 0;
	top: calc(50% - 45px);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.story_kumamoto .story-section__title:before {
	background-image: url(../images/story/img_gori_kumamoto.png);
}

.story_saga .story-section__title:before {
	background-image: url(../images/story/img_gori_saga.png);
}

.story_miyazaki .story-section__title:before {
	background-image: url(../images/story/img_gori_miyazaki.png);
}

.story_oita .story-section__title:before {
	background-image: url(../images/story/img_gori_oita.png);
}

.story_fukuoka .story-section__title:before {
	background-image: url(../images/story/img_gori_fukuoka.png);
}

.story_nagasaki .story-section__title:before {
	background-image: url(../images/story/img_gori_nagasaki.png);
}

.story_kagoshima .story-section__title:before {
	background-image: url(../images/story/img_gori_kagoshima.png);
}

.story-section__catch {
	margin-top: 30px;
	font-size: 2.2rem;
	line-height: 1.8;
	color: rgba(0, 0, 0, 1);
}

.story-section__text {
	margin: 40px 0;
	font-size: 1.5rem;
	line-height: 2.2;
}

.story-section__sub-image {
	max-width: 300px;
	flex-basis: 300px;
}

.story-section__sub-image__item {
	margin-bottom: 10px;
}

.story-section__sub-image__item:last-child {
	margin-bottom: 0;
}

.story-section__btn {
	position: relative;
	left: 30px;
}

.story-section__btn_sp {
	display: none;
}

.story-section__btn .layout-more__wrap {
	font-size: 1.8rem;
	line-height: 1.6;
}

.story-section__btn .layout-more__wrap span {
	font-size: 1.4rem;
	font-weight: 700;
}


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

	.story-section__contents {
		margin-top: 0;
		display: block;
	}

	.story-section__wrap,
	.story-section__sub-image {
		max-width: none;
	}

	.story-section__sub-image {
		display: flex;
		justify-content: space-between;
	}

	.story-section__sub-image__item {
		max-width: calc((100% - 15px) / 2);
		margin-top: 0;
	}

	.story-section__title,
	.story-section__catch {
		text-align: center;
	}

	.story-section__title {
		padding-left: 0;
		font-size: 2.5rem;
	}

	.story-section__title .en {
		font-size: 1.3rem;
	}

	.story-section__title:before {
		margin: 0 auto;
		margin-top: -30px;
		margin-bottom: 10px;
		position: relative;
		z-index: 1;
	}

	.story-section__btn {
		margin-top: 20px;
	}

	.story-section__btn_pc {
		display: none;
	}

	.story-section__btn_sp {
		display: block;
	}

}


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

	.story-section__image_pc {
		display: none;
	}

	.story-section__image_sp {
		display: block;
	}

	.story-section__title {
		font-size: 2rem;
	}

	.story-section__title .en {
		font-size: 1.2rem;
	}

	.story-section__catch {
		margin-top: 20px;
		font-size: 2rem;
	}

	.story-section__title:before {
		width: 67px;
		height: 60px;
		margin-top: -20px;
		margin-bottom: 5px;
	}

	.story-section__text {
		margin: 20px 0;
		font-size: 1.4rem;
	}

	.story-section__btn {
		margin-top: 10px;
		left: 0;
	}

	.story-section__btn .layout-more__wrap {
		display: block;
	}

	.story-section__btn .layout-more__wrap span {
		display: block;
	}

}
