@charset "utf-8";
/*----------------------------------------------------------
　全体
-----------------------------------------------------------*/
html {
	width: 100%;
	height: 100%;
  font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
  font-size: 62.5%;/*10px相当*/
	-moz-text-size-adjust: none;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
body {
	width: 100%;
	height: 100%;
	font-size: 16px;
	font-size: 1.6rem;
	background: #EDF6FA;
	color: #333;
	text-align: center;
}
@media only screen and ( max-width: 749px ) {
	body {
		font-size: 1.4rem;
		line-height: 1.4;
	}
}
.left {
	float: left;
}
.right {
	float: right;
}
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}
.textC {
	text-align: center;
}
.textL {
	text-align: left;
}
.textR {
	text-align: right;
}
.text_fff {
	color: #fff;
}
.red {
	color: #c3002f;
}
.text_b {
  font-weight: 700;
}
.text_small {
  font-size: 80%;
}
.text_url {
  word-break: break-all;
}
a:link, a:visited {
	color: #333;
	text-decoration: none;
}
a:hover {
	color: #005ECF;
	text-decoration: none;
}
/*イメージマップ用
IE対応：<area onFocus="this.blur();">
------------------------------------*/
area {
	border: none;
	outline: none;
}
/*******************************************************************
　ページ共通パーツ
*******************************************************************/

@media print, screen and (min-width:750px){
	.display_sp {display: none}
}
@media screen and (max-width:749px){
	.display_pc {display: none}
}
@media print, screen and (min-width:1200px){
	.display_sp2 {display: none}
}
@media screen and (max-width:1199px){
	.display_pc2 {display: none}
}

/*******************************************************************
　各セクション
*******************************************************************/
/*共通 ------------------------------*/
.contents {
	width: 100%;
  max-width: 750px;
	text-align: center;
	margin: 0 auto;
  position: relative;
  box-shadow: -5px 0 10px rgba(0, 0, 0, 0.2), 5px 0 10px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.wrapper {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.container {
	width: calc(680 / 750 * 100%);
	max-width: 680px;
	margin: 0 auto;
}
.box {
  width: calc(710 / 750 * 100%);
  max-width: 710px;
  margin: 0 auto;
  background: #fff;
}
@media only screen and ( max-width: 749px ) {
	.container {
	}
}

.attn_box {
  width: 90%;
  margin: 0 auto;
}
.attn {
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.4;
  word-wrap: break-word;
  word-break: break-all;
}
@media only screen and ( max-width: 749px ) {
  .attn {
    text-align: left;
    font-size: 1.0rem;
    line-height: 1.3;
  }
}
/*----------------------------------------------------------
　ヘッダー 
-----------------------------------------------------------*/
/*header {
	position: absolute;
  top: 0;
  left: 0;
	z-index: 1001;
	width: 100%;
	margin: 0;
	padding: 0 0 5px;
}
*/
header {
	position: relative;
	z-index: 0;
	width: 100%;
	margin: 0;
  background: #000;
}

.header_wrap {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 96%;
	margin: 0 auto;
	padding: 0 5px 5px 0;
}
.header_logo {
	width: 15%;
	text-align: left;
  align-items: center;
}
.header_logo img {
  width: 100%;
	max-width: 100px;
}
.header_name {
  width: 85%;
	text-align: right;
  align-items: center;
}
.header_name img {
  max-width: 300px;
}
@media only screen and ( max-width: 749px ) {
	.header_logo {
		width: 40%;
    padding: 3px 0 0;
  }
	.header_logo img {
    width: 100%;
    max-width: 180px;

	}
	.header_name {
    width: 60%;
	}
	.header_name img {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
  }
}

/*----------------------------------------------------------
　メインビジュアル
-----------------------------------------------------------*/
.mvArea {

}
/*----------------------------------------------------------
　キャンペーン
-----------------------------------------------------------*/
.cp_title {
  margin: 6% auto 0;
}
.cp_bvc {
  background: #DD3239;
}
.cp_omakase {
  background: #00A0DA;
}
/*----------------------------------------------------------
　車種ボタン
-----------------------------------------------------------*/
.car_box_wrap {
  background: url("../img/bg_cp.png") center top;
}
.car_title {}
.car_box {
  width: 94%;
  max-width: 660px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.car_box > div {
  width: 50%;
}

/*----------------------------------------------------------
  タブ
-----------------------------------------------------------*/
.tab_title {
  margin: 10% auto 3%;
}


/*----------------------------------------------------------
　画像エフェクト
-----------------------------------------------------------*/
/*スライドイン
------------------------------------------*/
/* フェードイン（下から） */
.fadein {
  opacity: 0;
  transform: translateY(200px); /* 初期位置を下に */
  /*transition: opacity 1.0s ease-out, transform 1.0s ease-out;*/
  /*transition: opacity 0.8s cubic-bezier(0.4, 0.0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0.0, 0.2, 1);*/
  transition: opacity 1.5s ease, transform 1.5s ease;
}
.fadein.show {
    opacity: 1;
    transform: translateY(0); /* 元の位置に戻る */
}

/* フェードイン（その場） */
.fadein2 {
    opacity: 0;
    transition: opacity 3.0s cubic-bezier(0.4, 0.0, 0.2, 1);
}
.fadein2.show {
    opacity: 1;
}

/* 遅延用のクラス */
.fadein.delay1,
.fadein2.delay1 {
    transition-delay: 0.3s;
}
.fadein.delay2,
.fadein2.delay2 {
    transition-delay: 0.6s;
}
.fadein.delay3,
.fadein2.delay3 {
    transition-delay: 0.9s;
}

/*ふわふわ
--------------------------------------*/
.floating_img {
  animation: floating 2.5s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
/*動画部分のセリフ
---------------------------------------*/
.floating_img1 {
  animation: floating1 5s ease-in-out infinite;
}

@keyframes floating1 {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating_img2 {
  animation: floating2 6.5s ease-in-out infinite;
}

@keyframes floating2 {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(-10px);
  }
}


/*バウンド動き
--------------------------------------*/
.bound_img {
  animation: serif_bound 2.5s ease-out infinite;
  opacity: 1;
}
@keyframes serif_bound {
  0%, 40%, 55%, 65% {
    transform: scale(1.0);
  }
  50%, 60% {
    transform: scale(0.95);
  }
}

/*----------------------------------------------------------
　近畿版：リンク
-----------------------------------------------------------*/
.shopArea {
  background: #fff;
  overflow: hidden;
}

.info_title {
	margin: 5% auto 5%;
}

.shop_box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc(630 / 750 * 100%);
  max-width: 630px;
  margin: 0 auto 4px;
  font-size: 2.4rem;
  background: #fff;
}
.area_name {
  background: #00A0DA;
  font-weight: 700;
  color: #fff;
  min-width: 6em;
  align-self: stretch;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shop_box:nth-child(odd) .area_name {
  background: #66C6E9;
}

.shop_name {
  text-align: left;
  align-self: center;
  padding: 10px 10px 10px 0.7em;
  line-height: 1.8;
}
.shop_name a {
  color: #333;
  text-decoration: underline;
}
.shop_name a:hover {
  color: #c3002f;
  text-decoration: underline;
}
@media only screen and ( max-width: 749px ) {
  
  .shop_box {
    display: block;
    font-size: 2.0rem;
  }
  .area_name {
    text-align: left;
    padding: 0.2em 0.5em;
  }
  .shop_name {
    font-size: 1.6rem;
    padding: 0 0 0.5em 0;
    margin: 0.5em 0 0 0.5em;
    
  }
}

/*----------------------------------------------------------
　ボタン
-----------------------------------------------------------*/
/*日産自動車へのリンク*/
.btn_box {
	width: 100%;
	margin: 0 auto;
	padding: 3% 0 5rem;
	text-align: center;
}
.link a {
	color: #000;
	font-size: 24px;
	text-decoration: underline;
}
.link a span {
	color: #00A1E0;
}
@media only screen and ( max-width: 749px ) {
	.btn_box {
		padding: 4% 0 4rem;
	}
	.link a {
		font-size: 16px;
	}
}

/*----------------------------------------------------------
　ページの先頭に戻る
-----------------------------------------------------------*/
#pageTop {
	position: fixed;
	bottom: 60px;
	right: 1rem;
	display: block;
	z-index: 1001;
}
#pageTop a {
	display: block;
	width: 50px;
	height: 50px;
	padding: 5px 0;
	line-height: 1.2;
	border-radius: 50%;
	background: #d40039;
	text-align: center;
	color: #ffffff;
	transition: .3s;
	box-shadow: 1px 1px 4px 2px rgba(0,0,0,0.5);
}
#pageTop a:hover {
	text-decoration: none;
	opacity: 0.7;
}
@media only screen and ( max-width: 749px ) {
	#pageTop {
		bottom: 60px;
		right: 1em;
	}
}
.kinki #pageTop {
	bottom: 100px;
}
@media only screen and ( max-width: 749px ) {
}

/*----------------------------------------------------------
　フッター 
-----------------------------------------------------------*/
footer {
	width: 100%;
	margin: 0 auto;
	background: #fff;
  padding-bottom: 250px;
}
@media only screen and ( max-width: 749px) {
footer {
	padding-bottom: 150px;
}
}
.copy {
	padding: 0 0 0.2em;
	text-align: center;
}
.copy a {
	text-decoration: underline;
}
@media only screen and ( max-width: 749px) {
	.copy {
		padding: 0.2em 0 0.2em;
	}
}

/*フッターバナー*/
.footer_btn {
	width: 100%;
	margin: 0 auto;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 6;
}


/* -----------------------------------------------------
　注意事項
-----------------------------------------------------------*/
.notice {
	text-align: left;
	line-height: 1.5;
}
.notice_inner {
	width: 100%;
	max-width: 1080px;
	padding: 3% 2% 0;
	margin:0 auto;
}
.notice_inner p {
	font-size: 1.2rem;
}
.notice_inner p:first-child {
	font-size: 1.4rem;
	margin-bottom: 1em;
}
.notice_inner dd {
	font-size: 1.2rem;
}

@media only screen and ( max-width: 749px ) {
	.notice {
	}
	.notice_inner p {
		font-size: 1rem;
	}
	.notice_inner p:first-child {
		font-size: 1.2rem;
		font-weight: normal;
	}
}
.notice_detail dt {
	display: block;
	width: 100%;
	padding: 0.5em 1em;
	margin: 0 auto 1em;
	background: #8a8a8a;
	color: #FFF;
	cursor: pointer;
}
.notice_detail dd {
	display: none;
}


/*ドロップダウン
-----------------------------------------------------------*/
.drop_wrap {
}
.drop_btn {
  width: 90%;
  max-width: 1080px;
  margin: 1em auto;
  text-align: left;
  padding: 0.2em 0 0.2em 1em;
  font-size: 1.2rem;
  border-bottom: 1px solid #ccc;
}
.drop_click {
  width: 100%;
  margin: 1em auto;
  text-align: left;
  padding: 0.2em 0 0.2em 1em;
  font-size: 1.6rem;
}
.drop_btn:hover,
.drop_click:hover {
  cursor: pointer;
}
.drop_box,
.drop_item {
  display: none;

}
.drop_inner {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto 1em;
  overflow: hidden;
	text-align: left;
	font-size: 1.2rem;
	line-height: 1.4;
}
@media only screen and ( max-width: 599px) {
  .drop_btn,
  .drop_inner {
	font-size: 1.0rem;
	line-height: 1.3;
}
}
