@charset "UTF-8";
@charset "utf-8";
@import url(header.css);
@import url(footer.css);
@import url(pankuzu.css);
@import url(floating_bannar.css);

/**
 * YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
 * http://cssreset.com
 * Copyright 2012 Yahoo! Inc. All rights reserved.
 * http://yuilibrary.com/license/
 */
html {
	color: #4d4d4d;/* background: #FFF; */
	font-size: 62.5%;
	line-height: 1.4;
	-webkit-appearance: none;
}
body, div, dl, dt, dd, ul, li, h1, p {
	margin: 0;
	padding: 0;
}
img {
	border: 0;
}
ul {
	list-style: none;
}
h1 {
	font-weight: normal;
}

/* YUI CSS Detection Stamp */
a {
	text-decoration: none;
	outline: none;
}
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/* ======================================= */
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
    font-display: swap;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
    font-display: swap;
}
@font-face {
     font-family: 'Font Awesome 5 Brands';
     font-style: normal;
     font-weight: 400;
     src: url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.6.3/webfonts/fa-brands-400.woff2") format("woff2");
     font-display: swap;
 }

 @font-face {
     font-family: 'Font Awesome 5 Free';
     font-style: normal;
     font-weight: 900;
     src:url("https://cdn.jsdelivr.net/npm/@fortawesome/fontawesome-free@5.6.3/webfonts/fa-solid-900.woff2") format("woff2");
     font-display: swap;
 }

body {
	/*
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, 'Lato',"ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
	*/
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Yu Gothic", YuGothic, sans-serif !important;
	-webkit-text-size-adjust: 100%;
	font-size: 1.6rem;
}
#headerArea, #footerArea {
	margin: 0 auto;
	background-color: #fff;
}

/**********************************************************************
共通contentsArea（responsive）
**********************************************************************/
@media only screen and (max-width: 768px) {
    .onlyPc {
        display: none !important;
    }
}

@media only screen and (min-width: 769px) {
    .onlySp {
        display: none !important;
    }
}


/**********************************************************************
TOPページコンテンツ（responsive）
**********************************************************************/


#topContentsArea {
	width: 100%;
}
#topContentsArea .topContents {
	width: 980px;
	margin: 0 auto 40px;
	padding-bottom: 40px;
	background-color: rgba(255,255,255,0.8);
}

@media screen and (max-width: 1024px) {
	#topContentsArea .topContents {
		width: 95%;
	}
}
@media screen and (max-width: 640px) {
	#topContentsArea .topContents {
		width: 100%;
		background-color: #fff;
		margin-bottom: 0;
	}
}

/*新着情報*/
#topContentsArea .newsArea {
	text-align: center;
}
#topContentsArea .newsArea .newsAreaContent {
	width: 980px;
	margin: 0 auto 40px;
	display: flex;
	flex-direction: column;
}
#topContentsArea .newsArea .newsAreaContent dl {
	width: 90%;
	margin: 10px auto;
	padding: 10px 10px 8px 10px;
	border-bottom: 1px dotted #4d4d4d;
	display: flex;
	align-items: center;
	text-align: left;
}
#topContentsArea .newsArea .newsAreaContent dl dt {
	width: 110px;
	min-width: 110px;
	color: #cb162c;
}


@media screen and (max-width: 1024px) {
	#topContentsArea .newsArea .newsAreaContent {
		width: 95%;
	}
}
@media screen and (max-width: 640px) {
	#topContentsArea .newsArea .newsAreaContent dl {
		flex-direction: column;
		align-items: baseline;
	}
	#topContentsArea .newsArea .newsAreaContent dl dt {
		margin-bottom: 10px;
	}
	#topContentsArea .newsArea .newsAreaContent dl dd {
		margin-bottom: 20px;
	}
}

/**新着情報、リンク装飾**/
a.link_menu {
    position: relative;
    color: #cb162c;
}
a.link_menu::after {
    position: absolute;
    bottom: -2px;
    left: 0px;
    content: '';
    width: 100%;
    height: 0.5px;
    background: #4d4d4d;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}
a.link_menu:hover {

}
a.link_menu:hover::after {
    transform: scale(1, 1);
}



/*****************************************************************
 各ページ共通css
*****************************************************************/
.pageContentsArea {
    width: 100%;
    padding-top: 136px;
}

@media only screen and (max-width: 768px) {
    .pageContentsArea {
        padding-top: 0;
    }
}

/*各ページ共通タイトルエリア*/
.pageContentsArea .titleContents {
	width: 100%;
	margin: 0 auto;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #4d4d4d;
	color: #fff;
	font-size: 1.4rem;
	line-height: 1.414;
}
.pageContentsArea .titleContents .titleContentsInner {
	width: 980px;
	margin: 0 auto;
}
.pageContentsArea .titleContents .titleContentsInner a {
	color: #fff;
}
.pageContentsArea .titleContents .titleContentsInner a:hover {
	color: #cb162c;
}

h1.titleArea {
	text-align: center;
	padding-top: 30px;
	padding-bottom: 30px;
	background-color: #f0f0f0;
	margin-bottom: 40px;
    font-size: 25px;
}

@media screen and (max-width: 640px){
    h1.titleArea {
        font-size: 1.8rem;
        margin-bottom: 0;
        padding: 10px 0;
    }
}
.titleContentsInner {
    font-size: 12px;
}

@media print, screen and (max-width: 1024px) {
	.pageContentsArea .titleContents .titleContentsInner {
		width: 95%;
	}
}

/*　共通処理終了　*/

.contentsWrap {
	width: 980px;
	margin: 0 auto 40px;
}
/*****************************************
	articlePage
*****************************************/

.articleContainer {
	width: 920px;
	margin: 40px auto 0;
	padding-bottom: 40px;
	border-bottom: 2px solid #cb162c;
}
.articleContainer:last-child {
	border-bottom: none;
}

@media screen and (max-width: 1024px) {
	.articleContainer {
		width: 98%;
	}

}

/*ニュース共通CSS*/
.text-right {
	text-align: right;
}
.font-size-large {
	font-size: 2.4rem;
	font-weight: 900;
}
span.caution {
	text-decoration: underline;
	color: #cb162c;
}
.separator {
	margin-bottom: 100px;
	position: relative;
	height: 1px;
	border-width: 0;
	background-image: -webkit-linear-gradient(left,
	transparent 0%,#4d4d4d 50%,transparent 100%);
	background-image:         linear-gradient(90deg,
	transparent 0%,#4d4d4d 50%,transparent 100%);
}
a span.button {
	font-size: 1.4rem;
	margin: 0 3px;
	padding: 2px 6px 3px;
	color: #fff;
	letter-spacing: 1px;
	background-color: #8d8d8d;
	cursor: pointer;
	transition: all .3s;
	border: solid 1px #4d4d4d;
	border-radius: 3px;
}
a span.button:hover {
	color: #cb162c;
	background-color: #fff;
}
.article_content_p_index {
	font-size: 2.0rem;
	line-height: 1.0;
	padding: 20px;
	margin-bottom: 10px;
	margin-top: 40px;
	background-color: orangered;
	border-bottom: 1px solid #c0c0c0;
	border-radius: 4px;
	color: #fff;
	font-weight: 500;
}
.event_content_p_index {
	font-size: 2.0rem;
	line-height: 1.0;
	padding: 20px;
	margin-bottom: 20px;
	margin-top: 40px;
	background-color: #cb182c;
	border-bottom: 1px solid #c0c0c0;
	border-radius: 4px;
	color: #fff;
	font-weight: 600;
	border-bottom: 2px solid #4d4d4d;
	border-right: 2px solid #4d4d4d;
}


/*引用囲い*/
.quote {
	width: 96%;
	background-color: #f9f9f9;
	margin: 20px auto 40px;
	position: relative;
	padding: 8px 16px;
	box-sizing: border-box;
	color: #585858;
	border: solid 3px #585858;
	border-radius: 6px;
}
.quote i.quote_first {
	display: inline-block;
	position: absolute;
	top: -20px;
	left: -20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
	background: #585858;
	color: #FFF;
	font-size: 22px;
}
.quote i.quote_last {
	display: inline-block;
	position: absolute;
	bottom: -20px;
	right: -20px;
	width: 40px;
	height: 40px;
	line-height: 40px;
	border-radius: 50%;
	text-align: center;
	background: #585858;
	color: #FFF;
	font-size: 22px;
	font-weight: 900;
}
.quote p {
	padding: 0;
	margin: 10px 0;
	line-height: 1.7;
}
.quote cite {
	display: block;
	text-align: right;
	color: #888888;
	font-size: 0.9em;
}

/*記事ヘッダ*/
.articleContainer .article_header {
	width: 90%;
	margin: 0 auto 40px;
}
.articleContainer .article_header h2.article_header_title {
	margin-bottom: 10px;
    text-align: center;
    font-size: 2.5rem;
    font-weight: bold;
}
.articleContainer .article_header p.article_header_datetime {
	margin-bottom: 20px;
}
.articleContainer .article_header img.article_header_image {
	display: block;
	margin: 0 auto;
	width: 80%;
}

/*記事本文*/
.articleContainer .article_content {
	width: 90%;
	margin: 0 auto 40px;
	line-height: 1.7;
	letter-spacing: 0.5px;
	font-size: 1.6rem;
	text-align: justify;
}
.articleContainer .article_content .article_content_section {
	margin-bottom: 100px;
}
.articleContainer .article_content .article_content_section p{
	text-align: left;
	width: 100%;
	max-width: 760px;
	margin: 20px auto;
}
.articleContainer .article_content .article_content_section p.title{
    font-size: 2rem;
    font-weight: bold;
    border: 2px solid;
    width: fit-content;
    margin: 10px auto;
    padding: 5px;
}
.articleContainer .article_content .article_content_section img.photo{
	max-width: 85%;
    display: block;
    margin: 20px auto;
}
.articleContainer .article_content .article_content_section p.article_content_p {
	margin-bottom: 20px;
}
.articleContainer .article_content .article_content_section p.article_content_p_inquiry {
	font-size: 1.4rem;
}
.articleContainer .article_content .article_content_section p.article_content_p_inquiry span.caption {
	line-height: 1.5;
}
.articleContainer .article_content .article_content_section p.article_content_p_inquiry span.shop_name {
	line-height: 2.4;
	font-size: 1.6rem;
}
.article_content_section li{
    border: 1px solid #000;
    margin-bottom: 25px;
    display: inline-flex;
    width: 95%;
    min-height: 50px;
    padding: 5px 10px;
}
.article_content_section li img{
    margin: auto 0;
}
.article_content_section li img.light{
    opacity: 0.7;
}
.article_content_section li p{
	margin: auto 0;
    padding-left: 10px;
}


/*****************************************
	eventPage背景
*****************************************/
#bgAnimationArea {
	z-index: -1;
	position: fixed;
	width: 120%;
	height: 100%;
	background-image:
		url("../news/img/aeon_event_20190727/aaaa.png"),/*aaaa*/
		url("../news/img/aeon_event_20190727/bbbb.png");/*bbbb*/
	background-repeat:
		no-repeat,/*plane*/
		no-repeat;/*n-box*/
	background-position:
		left 5%,
		right 10%;
	animation:
		body_bg 5s linear infinite;
}
@keyframes body_bg {
	0% { background-position: 100% 280px, 100% 440px; }
    50% { background-position: 60% 280px, 40% 440px; }
    100% { background-position: -400px 280px, -400px 440px; }
}
/*****************************************
	eventPage
*****************************************/
#eventContentsArea .topContentsWide {
	background-color: beige;
}
.eventContainer {
	width: 920px;
	margin: 40px auto 0;
	padding-bottom: 40px;
	border-bottom: 2px solid #cb162c;
}
.eventContainer:last-child {
	border-bottom: none;
}

	/**イベントページ用表示OFF**/
	#event #headerArea #header ul.headerMenuList li.topMenuBtn {
	}
	#event nav.sp-menu-icon {
	}
	#event #footerArea {
		padding-top: 0;
	}
	#event #footerArea .footerContainer .footer_logo {
		display: none
	}
	#event #footerArea .footerContainer .footer_sitemap {
		display: none
	}

@media screen and (max-width: 1024px) {
	.eventContainer {
		width: 100%;
	}
}

/*イベント記事ヘッダ*/
.event_header {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
.event_header h2.event_header_title {
	text-align: center;
	width: 98%;
	margin: 0 auto 10px;
}
.event_header p.event_header_datetime {
	margin-bottom: 20px;
	width: 980px;
	margin: 0 auto 20px;
	text-align: right;
}
.event_header img.event_header_image {
	width: 100%;
}

@media screen and (max-width: 1024px) {
	.event_header p.event_header_datetime {
		width: 90%;
	}
}
@media screen and (max-width: 640px) {
}



/*イベント記事本文*/
.eventContainer .article_content {
	width: 90%;
	padding: 0 5%;
	margin: 0 auto 40px;
	line-height: 1.7;
	font-size: 1.6rem;
	text-align: justify;
}
.eventContainer .article_content .article_content_section {
	margin-bottom: 40px;
	padding: 20px 2% 10px;
	width: 96%;
	background-color: #fff;
	position: relative;
	border: 1px solid #e0e0e0;
}
	/**セクションタイトルのリボン見出し**/
	.eventContainer .article_content .article_content_section .ribbon_title {
		display: inline-block;
		position: relative;
		box-sizing: border-box;
		padding: 5px 0;
		margin: 0 0 20px -4.5%;
		width: calc(100% + 20px);
		color: white;
		background: darkred;
		width: 110%;
	}
	.eventContainer .article_content .article_content_section .ribbon_title p.event_content_p_index {
		margin: 0;
		padding: 0 30px 0 15px;
		border-top: dashed 1px #FFF;
		border-bottom: dashed 1px #FFF;
		font-size: 20px;
		line-height: 46px;
	}
	.eventContainer .article_content .article_content_section .ribbon_title p:after {
		position: absolute;
		content: '';
		z-index: 1;
		top: 0;
		right: 0;
		width: 0px;
		height: 0px;
		border-width: 30px 15px 30px 0px;
		border-color: transparent #f0f0f0 transparent transparent;
		border-style: solid;
	}
	.eventContainer .article_content .article_content_section .ribbon_title p:before {
		position: absolute;
		content: '';
		top: 100%;
		left: 0;
		border: none;
		border-bottom: solid 15px transparent;
		border-right: solid 20px darkred;
	}
	@media screen and (max-width: 1024px) {
		.eventContainer .article_content .article_content_section .ribbon_title {
			margin: 0 0 20px -5%;
		}
	}
	@media screen and (max-width: 640px) {
		.eventContainer .article_content .article_content_section .ribbon_title {
			margin: 0 0 20px -6%;
			width: 112%;
		}
	}
	@media screen and (max-width: 480px) {
		.eventContainer .article_content .article_content_section .ribbon_title p:before {
			border-bottom: solid 7px transparent;
			border-right: solid 12px darkred;
		}
	}


/** POINT **/
.eventContainer .article_content .article_content_section .section_point {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
	margin-right: 8px;
}
.eventContainer .article_content .article_content_section .section_point span.point {
	background-color: darkcyan;
	width: 90px;
	min-width: 90px;
	height: 90px;
	min-height: 90px;
	border-radius: 45px;
	color: #fff;
	font-weight: 900;
	font-size: 1.8rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}
.eventContainer .article_content .article_content_section p.section_point span.point_content {
	font-weight: 900;
	font-size: 2.2rem;
	letter-spacing: 0;
	padding: 2px 4px 4px 4px;
	border-top: 2px solid darkcyan;
	border-bottom: 2px solid darkcyan;
	line-height: 1.3;
}
.eventContainer .article_content .article_content_section p.section_point span.point_content span.red {
	color: darkred;
	font-size: 2.6rem;
}
@media screen and (max-width: 480px) {
	.eventContainer .article_content .article_content_section p.section_point span.point_content {
		font-size: 1.8rem;
		letter-spacing: 0.5px;
	}
	.eventContainer .article_content .article_content_section p.section_point span.point_content span.red {
		font-size: 1.8rem;
	}
}
/** POINT **/


/*最初の挨拶*/
.article_content_section_greeting {
	margin-bottom: 20px;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
}
.article_content_section_greeting img {
	width: 95%;
	max-width: 850px;
}
@media screen and (max-width: 640px) {
}


.eventContainer .article_content .article_content_section p.article_content_p {
	margin-bottom: 20px;
}
.eventContainer .article_content .article_content_section p.greeting {
	font-size: 2.2rem;
	font-weight: 600;
}
.eventContainer .article_content .article_content_section p.temporary {
	width: 100%;
	height: 300px;
	border: 2px solid #999;
	background-color: #f0f0f0;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 4.8rem;
}
.eventContainer .article_content .article_content_section p.article_content_p_inquiry {
	font-size: 1.4rem;
}
.eventContainer .article_content .article_content_section p.article_content_p_inquiry span.caption {
	line-height: 1.5;
}
.eventContainer .article_content .article_content_section p.article_content_p_inquiry span.shop_name {
	line-height: 2.4;
	font-size: 1.6rem;
}
.eventContainer .article_content .article_content_section img.article_header_image {
	margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
	.eventContainer .article_content {
		width: 90%;
		padding: 0 5%;
	}
}

/*イベント概要ノート風*/
.place_about {
	background-color: #fcffe4;
	color: #222;
	padding: 10px 10px 20px 10px;
	margin-bottom: 20px;
	font-size: 1.4rem;
}
dl.line_note {
	line-height: 30px;
	padding-left: 5px;
	padding-right: 5px;
	background: -webkit-linear-gradient(bottom, #4d4d4d 1px, rgba(255, 255, 255, 0) 1px);
	background: linear-gradient(to top, #4d4d4d 1px, rgba(255, 255, 255, 0) 1px);
	background-position: left top;
	background-size: 1px 30px;
	display: flex;
}
dl.line_note dt {
	width: 115px;
	max-width: 115px;
	min-width: 115px;
	font-weight: 900;
}
dl.line_note dd {
}
dl.line_note a {
	color: #4d4d4d;
}
dl.line_note dd.date {
	font-weight: 600;
}
dl.line_note span.bold {
	font-weight: 600;
}
dl.line_note span.red {
	color: #cb162c;
}
dl.line_note span.blue {
	color: darkblue;
}
@media screen and (max-width: 640px) {
	dl.line_note {
		display: flex;
		flex-direction: column;
	}
	dl.line_note dd {
		margin-left: 20px;
	}
}

/*イベントプレゼント*/
.event_present_section {
	display: flex;
	justify-content: space-between;
}
.event_present_section .event_present {
	width: 49%;
}
.event_present_section .event_present p {
	text-align: center;
}
.event_present_section .event_present .event_present_image {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
}
.event_present_section .event_present .event_present_image img {
	margin-bottom: 10px;
}
.event_present_section .event_present .event_present_image p {
	font-size: 1.4rem;
	line-height: 1.6;
	text-align: left;
	width: 90%;
	margin: 0 auto;
}

@media screen and (max-width: 768px) {
	.event_present_section {
		flex-direction: column;
	}
	.event_present_section .event_present {
		width: 100%;
		margin-bottom: 0;
	}
	.event_present_section .event_present:last-child {
		margin-bottom: 0;
	}
	.event_present_section .event_present .event_present_image img {
		width: 90%;
		max-width: 480px;
	}
}



/*イベント車輛*/
.event_car_section {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.event_car_section .event_car {
	width: 48%;
	margin-top: 20px;
	margin-bottom: 40px;
	font-weight: 900;
	background-size: 200px;
	background-repeat: no-repeat;
	background-position: right 20px top 45px;
	background-color: gold;
}
.event_car_section .event_car p {
}
.event_car_section .event_car p.car_title {
	padding: 5px 10px;
	background-color: darkolivegreen;
	color: #fff;
	font-weight: 900;
	font-size: 1.7rem;
	margin-bottom: 8px;
}
.event_car_section .event_car p.car_detail1 {
	margin-bottom: 10px;
	margin-left: 10px;
}
.event_car_section .event_car p.car_price_title {
	padding: 5px 10px;
	margin: 0 5px 10px;
	font-weight: 600;
	background-color: darkblue;
	color: #fff;
}

	/***車種別設定***/
	.event_car_section #event_car01 {
		background-image: url(../news/img/aeon_event_20190727/car01.png);
	}
	.event_car_section #event_car01 p.car_price_title {
	}

	.event_car_section #event_car02 {
		background-image: url(../news/img/aeon_event_20190727/car02.png);
	}
	.event_car_section #event_car02 p.car_price_title {
	}

	.event_car_section #event_car03 {
		background-image: url(../news/img/aeon_event_20190727/car03.png);
	}
	.event_car_section #event_car03 p.car_price_title {
	}

	.event_car_section #event_car04 {
		background-image: url(../news/img/aeon_event_20190727/car04.png);
	}
	.event_car_section #event_car04 p.car_price_title {
	}

	.event_car_section #event_car05 {
		background-image: url(../news/img/aeon_event_20190727/car05.png);
	}
	.event_car_section #event_car05 p.car_price_title {
	}

	/*注意事項*/
	.event_car_section #event_car06 p.car_title {
		background-color: darkred;
	}
	.event_car_section #event_car06 p.car_detail1 {
		letter-spacing: 0;
		font-size: 1.4rem;
		margin: 0 10px 20px;
	}
	@media screen and (max-width: 400px) {
		/*注意事項*/
		.event_car_section #event_car06 p.car_title {
			font-size: 1.4rem;
		}
		.event_car_section #event_car06 p.car_detail1 {

		}
	}

.event_car_section .event_car p.car_price1 {
	margin: 0 5px 10px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.event_car_section .event_car p.car_price1 span.sum {
	padding: 2px 4px 2px 6px;
	margin-right: 5px;
	background-color: #4d4d4d;
	color: #fff;
	text-align: center;
	letter-spacing: 0.5px;
	line-height: 1.4;
}
.event_car_section .event_car p.car_price1 span.komikomi {
	margin: 0 0 0 2px;
}
.event_car_section .event_car p.car_price1 span.komikomi img {
	width: 55px;
	margin-bottom: -6px;
}
.event_car_section .event_car p.car_price1 span.arrow {
	font-size: 3.0rem;
	margin-left: 4px;
	margin-right: 4px;
}
.event_car_section .event_car p.car_price1 span.price {
	margin: 0 5px;
	padding: 4px 6px 6px 6px;
	line-height: 1.0;
	font-weight: 900;
	color: #fff;
	background-color: #cb182c;
}
.event_car_section .event_car p.car_price1 span.price span.unit {
	font-size: 1.4rem;
	line-height: 1.0;
	color: #fff100;
}
.event_car_section .event_car p.car_price1 span.price span.event_price {
	font-size: 6.4rem;
	line-height: 1.0;
	font-weight: 900;
	font-family: 'Rubik', sans-serif;
}
.number_font {
	font-family: 'Rubik', sans-serif;
}



@media screen and (max-width: 840px) {
	.event_car_section {
		flex-direction: column;
	}
	.event_car_section .event_car {
		width: 98%;
		max-width: 400px;
		margin: 0 auto 40px;
	}
}
@media screen and (max-width: 640px) {
	.event_car_section .event_car {
		background-size: 160px;
		background-repeat: no-repeat;
		background-position: right 5px top 45px;
		background-color: gold;
	}
	.event_car_section .event_car p.car_price_title {
		padding: 5px 4px;
		margin: 0 5px 5px;
	}
	.event_car_section .event_car p.car_price1 span.arrow {
		font-size: 2.0rem;
		margin-left: 2px;
		margin-right: 2px;
	}
	.event_car_section .event_car p.car_price1 span.sum {
		padding: 2px 2px 2px 2px;
		letter-spacing: 0px;
	}
	.event_car_section .event_car p.car_price1 span.price span.event_price {
		font-size: 4.8rem;
	}
}
@media screen and (max-width: 400px) {
	.event_car_section .event_car p.car_price1 span.komikomi {
		display: none;
	}
	.event_car_section .event_car {
		background-position: right 5px top 55px;
	}
	.event_car_section .event_car:nth-child(4) {
		background-position: right 5px top 75px;
	}
	.event_car_section .event_car p.car_price_title {
		padding: 5px 5px;
		margin: 0 3px 10px;
		font-size: 1.4rem;
	}
	.event_car_section .event_car p.car_price1 span.price span.event_price {
		font-size: 4.2rem;
	}
}


/*** 右側アイコン ***/
.right_icon {
	position: fixed;
	bottom: 5px;
	right: 0;
	display: flex;
	flex-direction: column;
	z-index: 999;
}
.right_icon .icon_menu {
	margin-bottom: 8px;
	padding: 10px;
	background-color: #e3007f;
	cursor: pointer;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
}
.right_icon .icon_menu:hover {
	background-color: #222;
}
.right_icon .icon_menu img {
	width: 100%;
	margin: 0;
	padding: 0;
}
.right_icon .icon_menu p {
	text-align: center;
	font-size: 1.6rem;
	line-height: 1.0;
	font-weight: 900;
	color: #fff;
}


/*コロナ対策のお知らせnews_20200413*/
/*動画紹介*/
.article_content_section .youtube_content {
	width: 100%;
	text-align: center;
	margin: 20px auto 40px;
}
p.youtube_content_title {
	border-bottom: 2px solid #cb162c;
	padding: 5px 10px;
	box-sizing: border-box;
	margin-bottom: 20px;
	font-size: 2.0rem;
}
.youtube_content .youtube_wrapper {
	margin: 0 auto 40px;
	position: relative;
	max-width: 980px;
	width: 90%;
	padding-top: 56.25%;
}
.youtube_content .youtube_wrapper iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
/*
.article_content_section .youtube_content a {
	display: inline-block;
	max-width: 705px;
	width: 85%;
}
.article_content_section .youtube_content a img {
	max-width: 705px;
	width: 100%;
	opacity: 0.9;
}
.article_content_section .youtube_content a img:hover {
	opacity: 1.0;
}
#lightcase-overlay {
	background-color: rgba(10,10,10,0.9) !important;
}

@media screen and (max-width: 640px) {
	p.youtube_content_title {
		font-size: 1.4rem;
		padding: 5px 5px;
	}
}
*/

/*フレッシャーズローンnews_fresh_loan20210130*/
/*20210130*/
.article_content_section img.fresh {
	margin: 0 auto 20px;
	display: block;
	max-width: 640px;
	width: 100%;
}
.article_content_section dl.fresh {
	margin: 0 auto 10px;
	max-width: 760px;
	display: flex;
}
.article_content_section dl.fresh dt {
	width: 150px; /*width: 100px;*/
	min-width: 150px; /*min-width: 100px;*/
	margin-right: 20px;
}
.articleContainer .article_content .article_content_section p.txt {
	text-align: center;
}

@media (max-width:768px) {
	.articleContainer .article_content .article_content_section p.txt {
		text-align: left;
	}
	.articleContainer .article_content .article_content_section p br.pc {
		display: none;
	}
}
