@charset "utf-8";

#contents_area {
	--c-text: #333;
	--c-bg-styles: #f2f2f2;
	--c-bg-items: #dbdbdb;
}

@media print, screen and (min-width : 769px){
	#contents_area {
		min-width: 980px;
	}

	#footer_topic_path,
	footer {
		position: relative;
		z-index: 1;
	}

	#contents_area footer {
		margin-bottom: 0;
		padding-bottom: 110px;
		background: #fff;
	}

	.section,
	.section_inner,
	.block {
		position: relative;
		z-index: 1;
	}
	.section {
		color: var(--c-text);
		font-size: 16px;
	}
	.section img {
		display: block;
		max-width: 100%;
	}

	.section h3 {
		display: flex;
		flex-direction: column;
		align-items: center;
		line-height: 1;
	}
	.section h3::after {
		content: '';
		display: block;
		width: 100px;
		height: 3px;
		margin: 60px auto;
		background: var(--c-text);
	}

	.section_inner {
		width: 950px;
		margin: auto;
	}


/* ----------------------------------------
	section_kv
---------------------------------------- */

	#section_kv {
		display: flex;
		justify-content: center;
		align-items: center;
	}
	#section_kv>div {
		width: 100%;
		aspect-ratio: 16 / 9;
	}
	#section_kv video {
		display: block;
		width: 100%;
	}


/* ----------------------------------------
	section_movie
---------------------------------------- */

	#section_movie {
		margin-top: 100px;
	}

	#section_movie h3 {
		font-size: 34px;
	}
	#section_movie h3 img {
		margin-bottom: 1em;
	}
	#section_movie li+li {
		margin-top: 85px;
	}

	#section_movie .modal_mov_open a::after {
		background-image: url(../img/icon_play.svg);
	}


/* ----------------------------------------
	section_styles
---------------------------------------- */

	#section_styles {
		margin-top: 85px;
		padding: 50px 0;
		background: var(--c-bg-styles);
	}
	#section_styles h3::after {
		display: none;
	}
	#section_styles h3+p {
		margin-top: 25px;
		text-align: center;
		font-size: 23px;
		line-height: 1;
	}
	#section_styles ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		margin-top: 35px;
	}
	#section_styles li {
		width: 317px;
	}
	#section_styles li:nth-child(2) {
		width: 316px;
	}
	#section_styles li:nth-child(n+4) {
		width: 475px;
	}


/* ----------------------------------------
	section_items
---------------------------------------- */

	#section_items {
		margin-top: 30px;
		padding: 70px 0 60px;
		background: var(--c-bg-items);
	}

	#section_items h3 {
		font-size: 43px;
	}

	#section_items .item_list {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
	#section_items .item_list>li {
		background: rgba(255,255,255,.9);
	}
	#section_items .item_list a {
		align-items: flex-start;
		position: relative;
		color: var(--c-text);
	}

	#section_items .item_list .img {
		overflow: hidden;
		position: relative;
		width: 152px;
	}
	#section_items .item_list .img img {
		transition: .3s transform ease-out;
	}
	#section_items .item_list a:hover .img img {
		transform: scale(1.05);
	}

	#section_items .item_list .box {
		padding: 10px 10px;
		width: calc(100% - 152px);
		box-sizing: border-box;
	}

	#section_items .item_list h4 {
		font-size: 17px;
		line-height: calc(25 / 17);
	}

	#section_items .item_list .link {
		position: absolute;
		right: 8px;
		bottom: 8px;
		font-weight: var(--fw-regular);
		font-size: 14px;
	}
	#section_items .item_list .link::after {
		content: "";
		display: inline-block;
		position: relative;
		top: 4px;
		width: 18px;
		height: 20px;
		margin-left: 10px;
		background: url(../img/parts_ico_red_arrow.png) 50% 50% / 100% no-repeat;
	}


/* ----------------------------------------
	movie_modal
---------------------------------------- */

	#movie_modal {
		position: fixed;
		text-align: center;
		white-space: nowrap;
	}
	#movie_modal::after,
	#movie_modal_inner {
		display: inline-block;
		vertical-align: middle;
	}
	#movie_modal::after {
		content: '';
		width: 0;
		height: 100%;
	}
	#movie_modal_inner {
		position: relative;
		width: 90%;
		max-width: 800px;
	}
	#movie_modal_data {
		position: relative;
		padding-top: 56.25%;
	}
	#movie_modal_data iframe {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		height: 100%;
	}
}