﻿@charset "UTF-8";

/* utility */
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
	display: flex;
	flex-wrap: wrap;
}
.row .col .col_content {
	padding: 15px;
}
.item_section .btn {
	display: block;
	margin: 0 auto;
	padding: 15px;
	width: 240px;
	border: 2px solid #3eb0c8;
	background: #3eb0c8;
	color: #fff;
	transition: .3s;
	text-align: center;
}
.item_section .btn:hover {
	background: #fff;
	color: #3eb0c8;
	text-decoration: none;
}
.youtube_wrapper {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	margin-bottom: 45px;
	height: 0;
	overflow: hidden;
}
.youtube_wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* 商品ページタイトル */
.item_title {
  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;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: center;
	height: 70px;
	margin-top: 10px;
	margin-bottom: 30px;
	background: #ededed;
}
.item_title h1 {
	padding: 10px;
	background: none;
	border: none;
	font-size: 30px;
	text-align: center;
}
.item_title.item_title_colunm {
	flex-direction: column;
	height: auto;
}
.item_title.item_title_colunm h1 {
	margin-top: 0;
	padding-top: 0;
	margin-bottom: 0;
}
.item_title.item_title_colunm p {
	padding-top: 15px;
	margin: 0;
}
@media screen and (max-width: 480px) {
	.item_title {
		height: 160px;
	}
	.item_title h1 {
		font-size: 20px;
	}
}

/* 商品画像 */
#item_pics .lead {
	font-weight: bold;
	font-size: 20px;
	text-align: center;
}
#item_pics .lead:after {
	display: block;
	width: 120px;
	height: 3px;
	margin: 10px auto 0;
	background: #2e73c8;
	content: "";
}
#img_main {
	border: 1px solid #707070;
	margin-bottom: 20px;
}
#img_main li img {
	margin: 0 auto;
}
#img_main, #img_thumb {
	display: none;
}
#img_main.slick-initialized, #img_thumb.slick-initialized {
	display: block;
}
#img_thumb li {
  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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: center;
	border: 1px solid #707070;
	margin: 0 5px 5px 5px;
	transition: .3s;
	cursor: pointer;
}
#img_thumb li:hover,
#img_thumb li.slick-current {
	border: 1px solid #3eb0c8;
}
#img_thumb li img {
	margin: auto;
	width: 100%;
	height: auto;
}
@media screen and (max-width: 480px) {
	#item_pics .lead {
		font-size: 16px;
	}
}

/* カートエリア */
.item_cart {
	padding: 20px;
	margin-bottom: 60px;
	border: 1px solid #707070;
}
.item_cart .row {
	justify-content: space-between;
	flex-wrap: wrap;
}
.item_cart .row .col {
	padding: 10px 0;
}
.item_cart .item_cart_info {
	min-width: 50%;
}
.item_cart h2 {
	padding: 0;
	margin: 0 0 15px 0;
	border: none;
	background: none;
	font-size: 24px;
}
.item_cart p.price {
	font-weight: bold;
	font-size: 20px;
}
.item_cart p.price span {
	font-size: 16px;
}

.item_cart .item_cart_tags {
	margin-bottom: 15px;
	text-align: right;
}
.item_cart .item_cart_tags li {
	display: inline-block;
	padding: 2px 20px;
	margin-right: 10px;
	background: #000;
	color: #fff;
}
.item_cart .item_cart_tags li:nth-child(1) {
	background: #292929;
}
.item_cart .item_cart_tags li:nth-child(2) {
	background: #283445;
}
.item_cart .item_cart_tags li:nth-child(3) {
	background: #0c5f0c;
}
.item_cart .item_cart_btns {
	text-align: right;
}
.item_cart .item_cart_btns form:nth-child(2) {
	display: none;
}
.item_cart .item_cart_estimate .btn-estimate {
	display: block;
	padding: 15px 10px;
	margin: 0 auto 15px;
	width: 280px;
	background: #c13771;
	border: 2px solid #c13771;
	border-radius: 12px;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	text-align: center;
	transition: .3s;
}
.item_cart .item_cart_estimate .btn-estimate:hover {
	background: #fff;
	color: #c13771;
	text-decoration: none;
}
.item_cart .item_cart_estimate p {
	font-weight: bold;
	font-size: 15px;
	color: #c13771;
	text-align: center;
}
.item_cart .item_cart_links {
	width: 50%;
}
.item_cart .item_cart_links ul {
	display: flex;
	flex-wrap: wrap;
}
.item_cart .item_cart_links li {
	width: 50%;
	padding: 10px 0px 0px 10px;
}
.item_cart .item_cart_links li a {
	font-size: 15px;
	color: #000;
	text-decoration: underline;
}
.item_cart .item_cart_links li a:hover {
	color: #0623c1;
}

@media screen and (max-width: 480px) {
	.item_cart {
		margin-bottom: 30px;
		text-align: center;
	}
	.item_cart .row {
		flex-direction: column;
	}
	.item_cart .item_cart_info {
		min-width: 100%;
	}
	.item_cart .item_cart_tags {
		text-align: center;
	}
	.item_cart .item_cart_btns {
		text-align: center;
	}
	.item_cart .item_cart_links {
		width: 100%;
	}
	.item_cart .item_cart_links ul {
		display: flex;
		flex-wrap: wrap;
		text-align: left;
	}
	.item_cart .item_cart_links li {
		padding: 5px;
	}
	.item_cart .item_cart_links li a {
		font-size: 13px;
	}
}

/* 商品イントロ */
#item_intro {
	text-align: center;
}
#item_intro .lead {
	font-weight: bold;
	font-size: 20px;
}
#item_intro .message {
	font-weight: bold;
	font-size: 24px;
	color: #2e73c8;
}
@media screen and (max-width: 480px) {
	#item_intro .lead {
		font-size: 16px;
	}
	#item_intro .message {
		font-size: 20px;
	}
}

/* 商品情報 */
#item_info .item_info_table {
	width: 100%;
	font-size: 16px;
}
#item_info .item_info_table tr:not(:last-child) {
	border-bottom: 1px solid #707070;
}
#item_info .item_info_table th {
	width: 200px;
	padding: 10px 30px;
	background: #ddf0fd;
	vertical-align: top;
}
#item_info .item_info_table td {
	padding: 10px 30px;
}

/* コンテンツセクション */
.item_section {
	margin-bottom: 60px;
}
.item_section h2 {
	position: relative;
	padding-left: 64px;
	margin-bottom: 30px;
	background: #ededed;
	font-weight: normal;
	font-size: 28px;
}
.item_section h2:before {
	position: absolute;
	left: -20px;
	top: 36px;
	content: "";
	width: 64px;
	border-top: 5px solid #0623c1;
}
.item_section h3 {
	margin-top: 0;
	padding: 0;
	background: none;
	border: none;
	font-weight: normal;
	font-size: 24px;
}
.item_section h4 {
	margin-top: 0;
	padding: 0;
	background: none;
	border: none;
	font-weight: bold;
	font-size: 20px;
}
.item_section p {
	margin-bottom: 30px;
	font-size: 16px;
}
.item_section p.note {
	font-size: 14px;
}
.item_section img {
	margin: 0 auto 30px;
}
.item_section .row .col {
	width: 50%;
}
.item_section .row_3 .col {
	width: calc(100%/3);
}
.item_section .content_wrapper h3 {
	margin-bottom: 0;
	font-weight: bold;
	font-size: 20px;
}

@media screen and (max-width: 480px) {
	.item_section {
		margin-bottom: 30px;
	}
	.item_section h2 {
		padding-left: 48px;
		font-size: 20px;
	}
	.item_section h2:before {
		top: 28px;
		width: 48px;
	}
	.item_section h3 {
		font-size: 20px;
	}
	.item_section h4 {
		font-size: 16px;
	}
	.item_section img {
		margin: 0 auto 15px;
	}
	.item_section .row .col {
		width: 100%;
	}
	.item_section .row_3 .col {
		width: calc(100%/3);
	}
	.item_section .content_wrapper .row_3 .col {
		width: calc(100%/2);
	}
}

.table {
	width: 100%;
	margin-bottom: 20px;
}
.table th,
.table td {
	padding: 10px;
	border: 1px solid #ccc;
}
.table th {
	width: 200px;
	background: #efefef;
}

/* 関連商品 */
#item_relations {
	margin-bottom: 60px;
	text-align: center;
}
#item_relations .row .col {
	width: 33.3%;
}
#item_relations .row .col {
	width: 33.3%;
	padding: 10px;
}
#item_relations h3 {
	margin: 0;
	padding: 15px 10px;
	background: #ededed;
	border: none;
	font-size: 20px;
}
#item_relations h4 {
	margin: 0;
	padding: 10px 10px;
	background: none;
	border: none;
	font-size: 15px;
}
#item_relations p {
	margin-bottom: 15px;
	font-size: 15px;
}
#item_relations .btn-relation {
	display: block;
	padding: 10px;
	background: #ededed;
	color: #000;
	font-size: 15px;
}
#item_relations .btn-relation:hover {
	background: #3eb0c8;
	color: #fff;
	text-decoration: none;
	transition: .3s;
}
#item_relations .btn-relation:after {
	padding-left: 10px;
	content: "\2192";
}
@media screen and (max-width: 480px) {
	#item_relations .row .col {
		width: 100%;
	}
	#item_relations h3 {
		font-size: 15px;
	}
}


/* 202003新商品ページ */
.page-s100 .sp {
	display: none;
}
.page-s100 .pc {
	display: block;
}

.img_main {
	border: 1px solid #707070;
	margin-bottom: 20px;
}
.img_main li img {
	margin: 0 auto;
}
.img_main, .img_thumb {
	display: none;
}
.img_main.slick-initialized, .img_thumb.slick-initialized {
	display: block;
}
.img_thumb li {
  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;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: center;
	border: 1px solid #707070;
	margin: 0 5px 5px 5px;
	transition: .3s;
	cursor: pointer;
}
.img_thumb li:hover,
.img_thumb li.slick-current {
	border: 1px solid #3eb0c8;
}
.img_thumb li img {
	margin: auto;
	width: 100%;
	height: auto;
}
.divider {
	margin: 0 40px;
	border-top: 1px solid #555;
}

.page-s100 {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.page-s100 h1, .page-s100 h2, .page-s100 h3, .page-s100 h4 {
	margin-top: 0;
	padding: 0;
	background: none;
	border: none;
}
.page-s100 h1 br, .page-s100 h2 br, .page-s100 h3 br, .page-s100 h4 br {
	display: block;
}
.page-s100 h3 {
	font-weight: bold;
	font-size: 32px;
	color: #2e71bf;
}
.s100_main {
	position: relative;
	height: 540px;
	background: url(../item/s100/202003/main_bg.png) no-repeat;
}
.s100_main .content {
	padding: 50px;
}
.s100_main p {
	color: #fff;
}
.s100_main .main_catch {
	font-weight: bold;
	font-size: 20px;
}
.s100_main h1 {
	margin-top: 20px;
}
.s100_main .main_lead {
	margin-bottom: 10px;
	font-weight: bold;
	font-size: 22px;
}
.s100_main .main_desc {
	width: 300px;
	letter-spacing: 1px;
	text-align: justify;
}
.s100_main .main_pic {
	position: absolute;
	bottom: -140px;
	right: 40px;
	margin: 0;
}
.s100_main .main_pic figcaption {
	margin-top: 20px;
	font-weight: bold;
	font-size: 22px;
	color: #2e71bf;
	text-align: center;
}

.s100_iteminfo .row .col {
	width: 50%;
	flex-grow: 1;
}
.s100_iteminfo .item_info_table {
	margin: 50px;
}
.s100_iteminfo .item_info_table tr {
	vertical-align: top;
}
.s100_iteminfo .item_info_table th,
.s100_iteminfo .item_info_table td {
	padding: 5px 0;
}
.s100_iteminfo .item_info_table th {
	width: 80px;
}
.s100_iteminfo .img_main {
	margin-top: 160px;
	height: 240px;
	border: none;
}
.s100_iteminfo .img_main .slick-slide {
	height: 240px;
	border: 1px solid #707070;
}
.s100_iteminfo .img_main .slick-slide img {
	max-height: 100%;
}

.s100_steps {
	padding: 50px;
	background: #f6fafd url(../item/s100/202003/steps_bg.jpg) no-repeat;
	background-position: top;
}
.s100_steps p.desc {
	width: 380px;
	text-align: justify;
}
.s100_steps .steps_ol {
	display: flex;
	justify-content: space-around;
	margin-top: 30px;
}
.s100_steps .steps_ol li {
	width: 200px;
}
.s100_steps .steps_ol p {
	margin-top: 15px;
	padding-left: 15px;
	font-weight: bold;
	font-size: 20px;
}

.s100_performance-01 {
	padding: 50px;
	height: 800px;
	background: #f6fafd url(../item/s100/202003/performance_bg.png) no-repeat;
	background-position: bottom;
}
.s100_performance-01 .divider {
	margin: 0 60px;
	border-top: 1px solid #555;
}
.s100_performance-01 .performance_intro {
	display: flex;
	flex-direction: row-reverse;
}
.s100_performance-01 .performance_intro h3,
.s100_performance-01 .performance_intro p {
	writing-mode: vertical-rl;
}
.s100_performance-01 .performance_intro h2,
.s100_performance-01 .performance_intro h3 {
	margin-left: 10px;
}
.s100_performance-01 .performance_intro p {
	height: 310px;
	text-align: justify;
}
.s100_performance-02 {
	padding: 40px 40px 0;
	background: #f2f6f9;
}
.s100_performance-02 .row .col {
	width: 50%;
}
.s100_performance-02 .data-01 {
	margin-top: -220px;
}
.s100_performance-02 .performance_video {
	margin-top: 20px;
}
.s100_performance-02 .performance_video h3 {
	font-size: 24px;
	text-align: center;
}
.s100_performance-02 .performance_video .youtube_wrapper {
	margin-bottom: 0;
}
.s100_performance-03 {
	padding: 0 40px;
	background: #f2f6f9;
}
.s100_performance-03 .row {
	justify-content: space-between;
}
.s100_performance-03 .performance_vehicle h3 {
	font-size: 20px;
}
.s100_performance-03 .pic {
	margin: 0 auto;
}
.s100_performance-04 {
	padding: 50px;
	background: #f2f6f9;
}
.s100_performance-04 .performance_message {
	padding: 50px;
	background: #dde7e8 url(../item/s100/202003/performance_message_bg.jpg) no-repeat;
	background-position: bottom right;
}
.s100_performance-04 .performance_message h3 {
	color: #208b7b;
	font-size: 24px;
	line-height: 1.3;
}
.s100_performance-04 .performance_message p {
	width: 300px;
	text-align: justify;
}
.s100_performance-04 .s100_condition {
	position: relative;
}

.s100_preserve {
	position: relative;
	padding: 50px;
	background: #f2f6f9;
}
.s100_preserve .pic {
	position: absolute;
	top: 70px;
	right: 50px;
}
.s100_preserve p {
	width: 315px;
	text-align: justify;
}

.s100_college {
	padding: 0 50px 80px;
	background: #f2f6f9;
}
.s100_college .college_inner {
	position: relative;
	border: 5px solid #98908d;
	border-radius: 16px;
}
.s100_college .college_inner:before {
	position: absolute;
	top: -15px;
	left: 0;
	right: 0;
	display: block;
	margin: 0 auto;
	width: 303px;
	height: 36px;
	background: url(../item/s100/202003/college_inner-top.png) no-repeat;
	content: "";
}
.s100_college .college_intro .college_title {
	margin: 20px 0;
}
.s100_college .college_intro .college_title img {
	margin: 0 auto
}
.s100_college .college_intro {
	padding: 50px;
	border-top-left-radius: 16px;
	border-top-right-radius: 16px;
	background: url(../item/s100/202003/college_intro-bg.png) no-repeat bottom right / cover;
}
.s100_college .college_intro p {
	height: 180px;
	text-align: justify;
	writing-mode: vertical-rl;
}
.s100_college .college_qa img {
	margin: 30px auto;
}
.s100_college .college_emergency {
	position: relative;
	padding: 50px;
	background: url(../item/s100/202003/college_emergency-bg.png) no-repeat bottom right / cover;
}
.s100_college .college_emergency h3 {
	margin-top: 20px;
	font-size: 28px;
	line-height: 1.2;
	color: #1b2c58;
}
.s100_college .college_emergency .pic {
	position: absolute;
	bottom: -20px;
	right: 50px;
}
.s100_college .college_example {
	display: flex;
	align-items: center;
	padding: 20px 20px;
}
.s100_college .college_example p {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
	height: 80px;
	margin-right: 10px;
	background: #1b2c58;
	border-radius: 50%;
	font-size: 18px;
	color: #fff;
	text-align: center;
}
.s100_college .college_example ul {
	font-weight: bold;
	color: #000;
}
.s100_college .college_condition {
	padding: 50px;
	background: url(../item/s100/202003/college_condition-bg.png) no-repeat bottom right / cover;
	border-bottom-left-radius: 16px;
	border-bottom-right-radius: 16px;
}
.s100_college .college_condition h3 {
	font-size: 28px;
	color: #1b2c58;
	letter-spacing: -1px;
}
.s100_college .college_condition p {
	width: 315px;
	text-align: justify;
	letter-spacing: -1px;
}
.s100_college .college_condition .pic {
	margin-top: 30px;
}

.s100_results {
	padding: 50px 60px;
	background: #f1f5f8 url(../item/s100/202003/results_bg.jpg) no-repeat;
	background-position: bottom;
}
.s100_results .results_01 .row {
	justify-content: space-between;
}
.s100_results .results_01 .row .results_title {
	width: 180px;
}
.s100_results .results_01 .row .results_content {
	width: 420px;
}
.s100_results .results_01 h3 {
	margin-top: 30px;
	line-height: 1.2;
}
.s100_results .results_01 p {
	width: 370px;
}
.s100_results .results_02 {
	margin-top: 80px;
}
.s100_results .results_02 .results_content p {
	width: 320px;
}
.s100_results a.btn_doc {
	margin-top: 30px;
}

a.btn_doc {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 320px;
	max-width: 100%;
	padding: 20px;
	background: #1b2c58;
	font-weight: bold;
	font-size: 20px;
	color: #fff;
	text-align: center;
	letter-spacing: 1px;
	transition: .3s;
}
a.btn_doc:before {
	display: block;
	width: 26px;
	height: 27px;
	margin-right: 20px;
	background: url(../item/s100/202003/btn_doc-icon-white.png) no-repeat;
	content: "";
}
a.btn_doc:hover {
	background: #2e71bf;
	text-decoration: none;
	opacity: 1;
}

.s100_docs {
	padding: 50px;
	background: #f2f6f9;
}
.s100_docs .docs_inner {
	background: #dde7e9;
}
.s100_docs .docs_intro {
	padding: 50px;
	background: #dde7e8 url(../item/s100/202003/docs_intro-bg.jpg) no-repeat;
	background-position: bottom right;
}
.s100_docs .docs_intro h3 {
	margin-top: -5px;
	font-size: 20px;
	color: #1b2c58;
}
.s100_docs .docs_links {
	display: flex;
	justify-content: space-around;
	padding: 50px 50px 0;
}
.s100_docs .docs_links-list {
	padding-left: 60px;
	background: url(../item/s100/202003/docs_links-list-bg.png) no-repeat;
	background-position: center left;
}
.s100_docs .docs_links-list a {
	display: block;
	border-bottom: 2px solid #2e71bf;
	font-weight: bold;
	font-size: 16px;
	color: #2e71bf;
}
.s100_docs .docs_links-list a:hover {
	text-decoration: none;
}
.s100_docs .docs_items {
	padding: 50px;
}
.s100_docs .docs_items .items_dl {
	display: flex;
	flex-wrap: wrap;
}
.s100_docs .docs_items .items_dl dt {
	width: 150px;
	text-align: center;
}
.s100_docs .docs_items .items_dl dt img {
	margin: 0 auto;
}
.s100_docs .docs_items .items_dl dt h3 {
	font-weight: bold;
	font-size: 20px;
	color: #1b2c58;
	text-align: center;
}
.s100_docs .docs_items .items_dl dd {
	padding: 0 20px;
	margin-bottom: 10px;
	width: calc(100% - 150px);
}

.items_info-table {
	width: 100%;
	margin-bottom: 10px;
}
.items_info-table thead,
.items_info-table tbody {
	border-bottom: 1px solid #000;
}
.items_info-table th,
.items_info-table td {
	padding: 5px 0;
}
.items_info-table tbody th,
.items_info-table tbody td {
	font-weight: bold;
	font-size: 18px;
	color: #1b2c58;
}
.s100_docs a.btn_doc {
	padding: 10px 0;
	width: 240px;
	background: none;
	font-size: 16px;
	line-height: 1.2;
	color: #1b2c58;
	text-align: left;
}
.s100_docs a.btn_doc:before {
	background: url(../item/s100/202003/btn_doc-icon-navy.png) no-repeat;
}
.s100_docs a.btn_doc:hover {
	background: #2e71bf;
	color: #fff;
}
.s100_docs a.btn_doc:hover:before {
	background: url(../item/s100/202003/btn_doc-icon-white.png) no-repeat;
}

.s100_docs .showroom_bnr {
	padding: 30px 0 0;
	border-top: 1px solid #000;
}
.s100_docs .showroom_bnr h3 {
	font-size: 22px;
	color: #555;
}
.s100_docs .showroom_bnr h3 span {
	color: #1b2c58;
}
.s100_docs .showroom_bnr p {
	margin-top: 15px;
}

@media screen and (max-width: 480px) {
	.page-s100 .sp {
		display: block;
	}
	.page-s100 .pc {
		display: none;
	}
	
	.divider {
		margin: 0 20px;
		border-top: 1px solid #555;
	}
	.page-s100 h3 {
		font-size: 24px;
	}

	.s100_main {
		position: relative;
		height: auto;
	}
	.s100_main .content {
		padding: 20px;
	}
	.s100_main p {
		color: #fff;
	}
	.s100_main .main_catch {
		font-weight: bold;
		font-size: 14px;
	}
	.s100_main h1 {
		margin-top: 20px;
	}
	.s100_main .main_lead {
		font-size: 14px;
	}
	.s100_main .main_desc {
		width: 100%;
	}
	.s100_main .main_pic {
		position: static;
		width: 160px;
		margin: 0 auto;
	}
	.s100_main .main_pic figcaption {
		margin-top: 10px;
		font-size: 16px;
	}

	.s100_iteminfo .row .col {
		width: 100%;
	}
	.s100_iteminfo .item_info_table {
		margin: 20px;
	}
	.s100_iteminfo .item_info_table tr {
		vertical-align: top;
	}
	.s100_iteminfo .item_info_table th,
	.s100_iteminfo .item_info_table td {
		padding: 5px 0;
	}
	.s100_iteminfo .item_info_table th {
		width: 80px;
	}
	.s100_iteminfo .img_main {
		margin-top: 0;
	}

	.s100_steps {
		padding: 20px;
		background-size: 80%;
		background-position: top right;
	}
	.s100_steps h2 {
		width: 200px;
	}
	.s100_steps p.desc {
		width: 100%;
		margin-bottom: 15px;
	}
	.s100_steps .steps_ol li {
		padding: 0 5px;
	}
	.s100_steps .steps_ol p {
		margin-top: 5px;
		padding-left: 5px;
		font-size: 12px;
	}
	
	.s100_performance-01 {
		padding: 20px;
		height: auto;
		background-size: 100%;
		background-position: bottom left;
	}
	.s100_performance-01 .performance_intro {
		flex-wrap: wrap;
		justify-content: center;
	}
	.s100_performance-01 .performance_intro h2 {
		width: 160px;
	}
	.s100_performance-01 .performance_intro h3 {
		width: 120px;
	}
	.s100_performance-01 .performance_intro p {
		width: 100%;
		writing-mode: horizontal-tb
	}
	.s100_performance-02 {
		padding: 20px 20px 0;
	}
	.s100_performance-02 .row .col {
		width: 100%;
	}
	.s100_performance-02 .pic img {
		margin: 0 auto;
	}

	.s100_performance-02 .data-01 {
		margin-top: 0;
	}
	.s100_performance-02 .performance_video {
		margin-top: 20px;
	}
	.s100_performance-02 .performance_video h3 {
		font-size: 20px;
	}
	.s100_performance-02 .performance_video .youtube_wrapper {
		margin-bottom: 0;
	}
	.s100_performance-03 {
		padding: 0 40px;
		background: #f2f6f9;
	}
	.s100_performance-03 .row {
		flex-direction: column-reverse;
	}
	.s100_performance-03 .row .col {
		width: 100%;
	}
	.s100_performance-03 .vehicle_content {
		display: flex;
		margin-top: 20px;
	}
	.s100_performance-03 .vehicle_content .pic {
		min-width: 50%;
		margin-right: 15px;
	}
	.s100_performance-03 .performance_vehicle h3 {
		font-size: 16px;
	}
	.s100_performance-04 {
		padding: 20px;
	}
	.s100_performance-04 .performance_message {
		padding: 20px;
		background-size: 100%;
	}
	.s100_performance-04 .performance_message h2 {
		width: 200px;
	}
	.s100_performance-04 .performance_message h3 {
		font-size: 18px;
	}
	.s100_performance-04 .performance_message p {
		width: 60%;
	}

	.s100_preserve {
		padding: 20px;
	}
	.s100_preserve h2 {
		width: 200px;
	}
	.s100_preserve .pic {
		position: static;
		margin-top: 20px;
	}
	.s100_preserve p {
		width: 100%;
	}
	.s100_college {
		padding: 0 20px 40px;
		background: #f2f6f9;
	}
	.s100_college .college_inner {
		position: relative;
		border: 5px solid #98908d;
		border-radius: 16px;
	}
	.s100_college .college_inner:before {
		width: 240px;
		background-size: contain;
	}
	.s100_college .college_intro {
		padding: 20px;
		background-size: 80%;
		background-color: #ecf1f6;
	}
	.s100_college .college_intro p {
		height: 200px;
	}
	.s100_college .college_qa img {
		padding: 15px;
		margin: 0 auto;
	}
	.s100_college .college_emergency {
		padding: 20px;
	}
	.s100_college .college_emergency h2 {
		width: 200px;
	}

	.s100_college .college_emergency h3 {
		margin-top: 10px;
		font-size: 18px;
	}
	.s100_college .college_emergency .pic {
		bottom: -25px;
		right: 0px;
		width: 80px;
	}
	.s100_college .college_example {
		flex-direction: column;
	}
	.s100_college .college_example p {
		margin-right: 0;
		margin-bottom: 15px;
	}
	.s100_college .college_condition {
		padding: 20px;
		background-size: 80%;
		background-color: #e7e7e7;
	}
	.s100_college .college_condition h3 {
		font-size: 20px;
		letter-spacing: 0;
	}
	.s100_college .college_condition p {
		width: 100%;
		letter-spacing: 0;
	}
	.s100_college .college_condition .pic {
		margin-top: 30px;
		margin-bottom: 100px;
	}
	
	.s100_results {
		padding: 20px 20px;
		background-image: none;
		background-color: #f1f5f8;
	}
	.s100_results .results_01 .row {
		flex-direction: column;
	}
	.s100_results .results_01 .row .results_title {
		width: 100%;
		font-size: 26px;
		text-align: center;
	}
	.s100_results .results_01 .row .results_content {
		width: 100%;
	}
	.s100_results .results_01 p {
		width: 100%;
	}
	.s100_results .results_02 {
		margin-top: 20px;
	}
	.s100_results .results_02 .results_content p {
		width: 100%;
	}
	.s100_results a.btn_doc {
		margin-top: 15px;
		margin-left: auto;
		margin-right: auto;
	}
	

	.s100_docs {
		padding: 20px;
	}
	.s100_docs .docs_intro {
		padding: 20px;
		background: none;
	}
	.s100_docs .docs_intro h2 {
		width: 200px;
	}
	.s100_docs .docs_intro h3 {
		font-size: 16px;
	}
	.s100_docs .docs_links {
		flex-direction: column-reverse;
		padding: 20px 20px 0;
	}
	.s100_docs .docs_links p {
		margin-bottom: 20px;
	}
	.s100_docs .docs_links p img {
		margin: 0 auto;
	}

	.s100_docs .docs_links-list {
		margin-bottom: 20px;
	}
	.s100_docs .docs_items {
		padding: 10px;
	}
	.s100_docs .docs_items .items_dl dt {
		width: 100%;
	}
	.s100_docs .docs_items .items_dl dd {
		width: 100%;
	}

	.s100_docs .showroom_bnr h3 {
		font-size: 16px;
		text-align: center;
	}
	.s100_docs .showroom_bnr h3 span {
		display: block;
	}
	
}

/* GWアウトレットセール */
.outlet_cart .item_cart_btns,
.outlet_cart .item_cart_tags {
	text-align: left;
}
.outlet_cart .outlet_label {
	margin-bottom: 20px;
	padding: 5px;
	border: 2px solid #a81212;
	text-align: center;
}
.outlet_cart .outlet_label p {
	font-weight: bold;
	color: #a81212;
}
.outlet_cart .outlet_label p.notes {
	font-weight: normal;
	font-size: 12px;
	line-height: 1.4;
}
.outlet_cart .row .col.item_cart_info {
	flex-basis: 55%;
	padding: 10px 10px;
}
.outlet_cart .row .col.item_cart_btns {
	flex-basis: 45%;
	padding: 10px 10px;
}
.outlet_cart p.price-original {
	font-size: 16px;
}
.outlet_cart p.price-original b {
	text-decoration: line-through;
}
.outlet_cart p.price-sale b {
	font-size: 24px;
	color: #a81212;
}
.outlet_cart .cart_form {
	margin-top: 20px;
}
.outlet_cart .cart_form input, select {
	padding: .4rem;
	width: 100%;
	border: 1px solid #ccc;
}
.outlet_cart .cart_form button[type="submit"] {
	display: block;
	padding: 10px 0;
	max-width: 300px;
	width: 100%;
	height: 56px;
	border: 1px solid #e38313;
	border-radius: 12px;
	background: #e38313;
	transition: .3s;
	cursor: pointer;
}
.outlet_cart .cart_form button[type="submit"] span {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: auto;
	height: 22px;
	font-weight: bold;
	font-size: 1.1rem;
	color: #fff;
}
.outlet_cart .cart_form button[type="submit"] span:before {
	display: inline-block;
	width: 24px;
	height: 24px;
	margin-right: 5px;
	background: url(../img/icon_cart.svg);
	background-size: cover;
	content: "";
}
.outlet_cart .cart_form button[type="submit"]:hover,
.outlet_cart .cart_form button[type="submit"]:active,
.outlet_cart .cart_form button[type="submit"]:focus {
	opacity: 1;
	background:#e60013;
}
.outlet_cart .cart_form .cart-dl {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.outlet_cart .cart_form .cart-dl dt {
	width: 50px;
	padding: .4rem .2rem;
}
.outlet_cart .cart_form .cart-dl dd {
	width: calc(100% - 70px);
	margin-bottom: 0;
	padding: .4rem .2rem;
}
.outlet_cart .cart_form .cart-dl dd input {
	width: 80px;
}
.item_cart.outlet_cart .item_cart_btns form:nth-child(2) {
	display: block;
}
.item_cart.outlet_cart .item_cart_estimate .btn-estimate {
	padding: 10px 10px;
	font-size: 18px;
}
@media screen and (max-width: 480px) {
	.outlet_cart .outlet_label {
		margin-bottom: 10px;
	}
	.outlet_cart .row .col.item_cart_info {
		flex-basis: 100%;
		padding: 5px;
	}
	.outlet_cart .row .col.item_cart_btns {
		flex-basis: 100%;
		padding: 5px;
	}
	.outlet_cart .item_cart_tags {
		text-align: center;
	}
	.outlet_cart .item_cart_tags li {
    padding: 2px 10px;
    margin-right: 5px;
	}
}