@charset "utf-8";
/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
/*FOT-筑紫B丸ゴシック Std R
FOT-TsukuBRdGothic Std R
font-family: fot-tsukubrdgothic-std, sans-serif;
font-weight: 400;
font-style: normal;

FOT-筑紫B丸ゴシック Std B
FOT-TsukuBRdGothic Std B
font-family: fot-tsukubrdgothic-std, sans-serif;
font-weight: 700;
font-style: normal;*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0;
	font-family: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	vertical-align: baseline;
}
 /*------------------------------------------------------------
   Browser Default Initialization responsive1
 ------------------------------------------------------------*/
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }
 html {
   overflow-y: scroll;
   height: 100%;
 }
 body {
   margin: 0;
   padding: 0;
   /*font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
   *font-family: 'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;*/
   color: #333;
   font-size: 16px;
   line-height: 125%;
   text-align: left;
   -webkit-text-size-adjust: 100%;
   background-color: #FFF;
   height: 100%;
   word-wrap: break-word;
 }

#wrapper{
	overflow: hidden;
}
:focus {
	outline: 0;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: separate;
	border-spacing: 0;
}
caption, th, td {
	font-weight: normal;
	text-align: left;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: "";
}
blockquote, q {
	quotes: "" "";
}
a img {
	border: 0;
}
img{
	vertical-align:bottom;	
}
figure {
	margin: 0
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
a{
	text-decoration: none;
	color: #000;
}


/*-----------------------------
   Header
-------------------------------*/
.totop{
  position: fixed;
  right: 1%;
  bottom: 3%;
	width: 110px;
	height: 109px;
	background-image: url("../images/img_250214_btn_totop.png");
	background-position: center top;
	background-size: 100% auto;
	background-repeat: no-repeat;
  cursor: pointer;
  transition: .3s;
  opacity: 0;
  visibility: hidden;
	z-index: 800;
}

.totop:hover{
	opacity: .7;
	-moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
	transition: .2s;
}
.active{
  opacity: 1;
  visibility: visible;
}


.pc_only{
	display: block;
}
.smt_only{
	display: none !important;
}



.menu_squ{
	width: 100%;
	max-width: 1000px;
	position: absolute;
}

#menu_trigger_box{
	position: fixed;
	top: 32px;
	right: 5%;
	display: block;
	z-index: 1001;
	background-color: #fff;
	width: 60px !important;
	height: 74px !important;
	padding: 10px;
	border-radius: 6px;
	box-shadow: 3px 3px 0 gray;
}
#menu_trigger_box_inn{
	width: 100%;
	height: 100%;
	position: relative;
}
#menu_trigger_box::after{
	content: "";
	width: 80%;
	height: 20px;
	position: absolute;
	background-image: url("../images/icon_g_menu.jpg");
	background-size: 80% auto;
	background-position: center top;
	background-repeat: no-repeat;
	bottom: 0;
	left: 10%;
}
.menu-trigger,
.menu-trigger span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
}
.menu-trigger {
	position: relative;
	width: 40px;
	height: 34px;
}
.menu-trigger:hover {
	cursor: pointer;
}
.menu-trigger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 4px;
	background-color: #CCAD00;
	border-radius: 4px;
}
.menu-trigger span:nth-of-type(1) {
  top: 0;
}
.menu-trigger span:nth-of-type(2) {
  top: 15px;
}
.menu-trigger span:nth-of-type(3) {
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(15px) rotate(-45deg);
  transform: translateY(15px) rotate(-45deg);
}
.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}

.menu-trigger.returns span:nth-of-type(1) {
  -webkit-transform: translateY(0px) rotate(0deg);
  transform: translateY(0px) rotate(0deg);
}
.menu-trigger.returns span:nth-of-type(2) {
  left: 0%;
  opacity: 100;
  -webkit-animation: active-menu-bar02 .8s backwards;
  animation: active-menu-bar02 .8s backwards;
}

@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-15px) rotate(45deg);
  transform: translateY(-15px) rotate(45deg);
}
.menu-trigger.returns span:nth-of-type(3) {
  -webkit-transform: translateY(0px) rotate(0deg);
  transform: translateY(0px) rotate(0deg);
}

#smtnav{
	display: block;
}
#smtnav {
	position: fixed;
	top: 0;
	right: 0;
	width: 300px;
	height: 100%;
    background: #b8952c;
    background: -moz-linear-gradient( #b8952c 0%, #ebcd57 50%, #b8952c 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#b8952c), color-stop(50%, #ebcd57), to(#b8952c));
    background: -webkit-linear-gradient( #b8952c 0%, #ebcd57 50%, #b8952c 100%);
    background: -o-linear-gradient( #b8952c 0%, #ebcd57 50%, #b8952c 100%);
    background: linear-gradient( #b8952c 0%, #ebcd57 50%, #b8952c 100%);
	transition: all 0.2s;
	transform: translateX(300px);
	z-index: 1000;
}
#smtnav.open {
	transform: translateX(0); 
}
#smtnav.close {
	transform: translateX(300px);
}
#smtnav ul {
	margin: 100px 0 0 0;
	padding: 1em;
	list-style-type: none;
}
#smtnav ul li {
	padding: 1em 0;
	border-bottom: 1px solid #fff;
}
#smtnav ul li a {
	display: block;
	text-align: center;
	text-decoration: none;
	color: #fff;
}


div img{
	width: 100%;
	height: auto;
}

/*-----------------------------
   Section00 opening action
-------------------------------*/
#opening_set{
	width: 100vw;
	height: 100%;
	position: fixed;
	display: block;
	z-index: 1000;
}
.left_sect{
	width: 50%;
	height: 100vh;
	min-height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-image: url("../images/img_250606_sec01_open_l.jpg");
	background-position: right center;
	background-size: 100% auto;
	display: block;
	z-index: 1000;
	overflow: hidden;
}
.right_sect{
	width: 50%;
	height: 100vh;
	min-height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	background-image: url("../images/img_250606_sec01_open_r.jpg");
	background-position: left center;
	background-size: 100% auto;
	display: block;
	z-index: 1000;
	overflow: hidden;
}



.opendoor_l {
-webkit-animation:opendoor_l 6s linear alternate forwards;
animation:opendoor_l 6s linear alternate forwards;
}
.opendoor_l2 {
-webkit-animation:opendoor_l 6.1s linear alternate forwards;
animation:opendoor_l 6.1s linear alternate forwards;
}
.opendoor_l3 {
-webkit-animation:opendoor_l 6.2s linear alternate forwards;
animation:opendoor_l 6.2s linear alternate forwards;
}
@keyframes opendoor_l{
0% {transform:translate(0, 0)}
90% {transform:translate(0, 0); display: block;}
100% {transform:translate(-110vw, 0); display: none;}
}

.opendoor_r {
-webkit-animation:opendoor_r 6s linear alternate forwards;
animation:opendoor_r 6s linear alternate forwards;
}
.opendoor_r2 {
-webkit-animation:opendoor_r 6.1s linear alternate forwards;
animation:opendoor_r 6.1s linear alternate forwards;
}
.opendoor_r3 {
-webkit-animation:opendoor_rB 6.3s linear alternate forwards;
animation:opendoor_rB 6.3s linear alternate forwards;
}
@keyframes opendoor_r{
0% {transform:translate(0, 0)}
90% {transform:translate(0, 0); opacity: 1;}
100% {transform:translate(110vw, 0); opacity: 0; display: none;}
}
@keyframes opendoor_rB{
0% {transform:translate(-50%, 0)}
90% {transform:translate(-50%, 0); opacity: 1;}
100% {transform:translate(110vw, 0); opacity: 0; display: none;}
}

.open_toyopi{
	width: 16%;
	max-width: 120px;
	height: 119px;
	position: fixed;
	top: 22%;
	left: 50%;
	z-index: 1200;
	transform: translate(-50%, 0);
}
.toyopi_move {
-webkit-animation:toyopi_move 5.5s linear alternate forwards;
animation:toyopi_move 5.5s linear alternate forwards;
}

@keyframes toyopi_move{
0% {transform:translate(-50%, 0); opacity: 1;}
10% {transform:translate(-50%, -3%)}
20% {transform:translate(-50%, 3%)}
30% {transform:translate(-50%, -3%)}
40% {transform:translate(-50%, 3%)}
50% {transform:translate(-50%, -3%)}
60% {transform:translate(-50%, 3%)}
70% {transform:translate(-50%, -3%)}
80% {transform:translate(-50%, 3%)}
90% {transform:translate(-50%, -3%)}
95% {transform:translate(-50%, 1.5%); opacity: 1;}
100% {transform:translate(-50%, -50%); opacity: 0;}
}

.open_type{
	font-weight: bold;
	font-size: 1em;
	text-align: center;
	position: fixed;
	top: 46%;
	left: 50%;
	transform: translate(-50%, 0);
	z-index: 1200;
	color: #000;
	opacity: 0;
}
.open_type {
-webkit-animation:open_type 5.5s linear alternate forwards;
animation:open_type 5.5s linear alternate forwards;
}
@keyframes open_type{
0% {opacity: 0;}
1% {opacity: 1;}
15% {opacity: 0;}
20% {opacity: 1;}
35% {opacity: 0;}
40% {opacity: 1;}
55% {opacity: 0;}
60% {opacity: 1;}
75% {opacity: 0;}
80% {opacity: 1;}
95% {opacity: 0;}
}


.loader{
	width: 62px;
	height: 35px;
	position: fixed;
	display: block;
	z-index: 1200;
	top: 50%;
	left: 50%;
	transform: translate(-50%, 0);
}
.loader-inner{
	position: relative;
	width: 100%;
}

@-webkit-keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }
@keyframes line-scale {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  50% {
    -webkit-transform: scaley(0.4);
            transform: scaley(0.4); }
  100% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

.line-scale > div:nth-child(1) {
  -webkit-animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.4s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(2) {
  -webkit-animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.3s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(3) {
  -webkit-animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.2s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(4) {
  -webkit-animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s -0.1s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div:nth-child(5) {
  -webkit-animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08);
          animation: line-scale 1s 0s infinite cubic-bezier(0.2, 0.68, 0.18, 1.08); }

.line-scale > div {
  background-color: #aaa;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block; }

.loader_op {
-webkit-animation:loader_op 5.5s linear alternate forwards;
animation:loader_op 5.5s linear alternate forwards;
}
@keyframes loader_op{
0% {opacity: 1;}
90% {opacity: 1;}
100% {opacity: 0;}
}







/*-----------------------------
   Section01 タイトル
-------------------------------*/
.kira_deco_l{
	width: 37.4%;
	max-width: 374px;
	position: absolute;
	top: 0;
	left: 0;
}
.kira_inner{
	width: 100%;
	height: 100%;
	position: relative;
}
.left_kira_01{
	position: absolute;
	top: 0;
	left: 0;
	animation: starBlink 1.2s infinite steps(1);
	mix-blend-mode: screen;
}
.left_kira_02{
	animation: starBlink2 1s infinite steps(1);
	mix-blend-mode: screen;
}
.kira_deco_r{
	width: 37.4%;
	max-width: 374px;
	position: absolute;
	top: 0;
	right: 0;
}

.kira_deco_l2{
	width: 37.4%;
	max-width: 374px;
	position: absolute;
	top: 50%;
	left: 0;
}
.kira_deco_r2{
	width: 37.4%;
	max-width: 374px;
	position: absolute;
	top: 50%;
	right: 0;
}



@keyframes starBlink{
  0%{
    opacity:.5;
    filter:none;
  }
  10%{
    opacity:1;
  }
  20%{
    opacity:.9;
    filter:none;
  }
  45%{
    opacity:1;
  }
  55%{
    opacity:.95;
    filter:none;
  }
  100%{
    opacity:.95;
    filter:none;
  }
}

@keyframes starBlink2{
  0%{
    opacity:.7;
    filter:none;
  }
  15%{
    opacity:1;
  }
  25%{
    opacity:.9;
    filter:none;
  }
  55%{
    opacity:1;
  }
  75%{
    opacity:.95;
    filter:none;
  }
  100%{
    opacity:.95;
    filter:none;
  }
}

article.cont_base_A{
	width: 100%;
	position: relative;
	overflow: hidden;
	background-image: url("../images/260612_sec02_03_border.png"), url("../images/260612_sec01_bg_02.png"), url("../images/img_260612_sec01_bg01.jpg");
	background-position:center bottom, center bottom, center top;
	background-size: 100% 12px, 100% auto, 100% auto;
	background-repeat: repeat-x, no-repeat, no-repeat;
}

article.cont_base_A .A_inn{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
	padding: 0 0 8%;
}


.img_secA_01{
	width: 74.2%;
	position: relative;
	display: block;
	margin: 0 auto 0;
	z-index: 20;
}

.img_secA_02{
	width: 100%;
	position: relative;
	margin: -5% auto 0;
	z-index: 20;
	/*filter: drop-shadow(10px 10px 10px rgba(0, 0, 0, 0.5));*/
}

/*とよぴ*/
.img_secA_03{
	width: 22.7%;
	position: absolute;
	left: -11%;
	top: 2%;
	z-index: 11;
}

/*とよぴのコピー*/
.img_secA_04{
	width: 6.9%;
	position: absolute;
	left: -14%;
	top: 7%;
	z-index: 21;
}

/*駄菓子屋さん*/
.img_secA_05{
	width: 22.2%;
	position: absolute;
	left: -14%;
	top: 22%;
	z-index: 13;
}

/*開催期間*/
.img_secA_06{
	width: 20.1%;
	position: absolute;
	display: block;
	right: -3%;
	top: 30%;
	z-index: 18;
}

/*ラインナップ*/
.img_secA_07{
	width: 81.8%;
	position: relative;
	margin: -1% 0 0 4%;
	z-index: 15;
}

/*ガラポン大抽選会*/
.img_secA_08{
	width: 100%;
	position: relative;
	margin: 0 auto;
	display: block;
}
.img_secA_08::after{
	content: "";
	position: absolute;
	width: 11.8%;
	height: 100%;
	top: 0;
	right: -11.8%;
	background-image: url("../images/260612_sec02_01_garapon_r.png");
	background-size: 100% auto;
	background-position: left top;
	background-repeat: no-repeat;
}

.img_secA_08a{
	position: absolute;
	width: 12.3%;
	top: 0%;
	left: -6.5%;
	z-index: 20;
}
.img_secA_08b{
	position: absolute;
	width: 11.7%;
	top: 38%;
	right: -10%;
	z-index: 20;
}

.btn_area{
	width: 50%;
	position: relative;
	display: flex;
	flex-wrap:wrap;
	justify-content: center;
	gap: 2%;
	margin: 5% auto 0;
}
.btn_area .btn_A{
	position: relative;
	display: block;
	width: 100%;
	flex: 1; 
	filter: drop-shadow(3px 4px 3px rgba(0, 0, 0, 0.35));
}
.btn_area .btn_A:hover{
	opacity: .6;
	-moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
	transition: .2s;
}

/*-----------------------------
   Section02 ご来店イベント
-------------------------------*/
article.cont_base_B{
	width: 100%;
	position: relative;
	background-image: url("../images/260612_sec03_bg_l.png"), url("../images/260612_sec03_bg_r.png"), url("../images/260612_sec03_bg.png");
	background-position: left top, right top, center top;
	background-size: 31.4% auto, 31.4% auto, 300px auto;
	background-repeat: repeat-y, repeat-y, repeat;
	padding: 0 0 2%;
}

article.cont_base_B .B_inn{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 0;
	position: relative;
	z-index: 20;
}






.fuwafuwa {
-webkit-animation:fuwafuwa 4.5s infinite linear alternate;
animation:fuwafuwa 4.5s infinite linear alternate;
}

@keyframes fuwafuwa{
0% {transform:translate(0, 0)}
40% {transform:translate(0, -30px)}
50% {transform:translate(0, -40px)}
60% {transform:translate(0, -30px)}
100% {transform:translate(0, 0)}
}

.fuwafuwa2 {
-webkit-animation:fuwafuwa 6.5s infinite linear alternate;
animation:fuwafuwa 6.5s infinite linear alternate;
}

@keyframes fuwafuwa2 {
0% {transform:translate(0, 0) }
50% {transform:translate(0, -25px) }
100% {transform:translate(0, 0)}
}




.img_B_01{
	width: 100%;
	position: relative;
	margin: 0 0 0;
}

.img_B_02{
	width: 100%;
	position: relative !important;
	margin: 0 0 0;
	z-index: 20;
	filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.5));
}

.img_B_03{
	width: 100%;
	position: relative !important;
	display: block;
	margin: 3% 0 0;
	z-index: 20;
}



/*-----------------------------
   Section03 新車
-------------------------------*/
article.cont_base_C{
	width: 100%;
	position: relative;
	overflow: visible;
	background-image: url("../images/260612_sec04_bg01.png"), url("../images/260612_sec04_bg03_l.png"), url("../images/260612_sec04_bg03_r.png"), url("../images/260612_sec04_bg02.png");
	background-position: center top, left top, right top, center top;
	background-size: 100% auto, 31.4% auto, 31.4% auto, 300px auto;
	background-repeat: no-repeat, repeat-y, repeat-y, repeat;
}

article.cont_base_C .C_inn{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 0;
	position: relative;
	padding: 5% 0 5%;
}



.fuwafuwa {
-webkit-animation:fuwafuwa 4.5s infinite linear alternate;
animation:fuwafuwa 4.5s infinite linear alternate;
}

@keyframes fuwafuwa{
0% {transform:translate(0, 0)}
40% {transform:translate(0, -30px)}
50% {transform:translate(0, -40px)}
60% {transform:translate(0, -30px)}
100% {transform:translate(0, 0)}
}

.fuwafuwa2 {
-webkit-animation:fuwafuwa 6.5s infinite linear alternate;
animation:fuwafuwa 6.5s infinite linear alternate;
}

@keyframes fuwafuwa2 {
0% {transform:translate(0, 0) }
50% {transform:translate(0, -25px) }
100% {transform:translate(0, 0)}
}




.img_C_01{
	width: 100%;
	position: relative;
	display: block;
}


.img_C_02{
	width: 100%;
	position: relative;
	margin: 4% auto 0;
	z-index: 10;
	display: block;
}


.text_A{
	text-align: center;
	font-family: "Noto Sans JP", serif;
	font-size: 0.8em;
	font-weight: 400;
	font-style: normal;
	color: #000;
	line-height: 1.3em;
	margin: 1% 0 0;
}
.text_A span{
	display: inline-block;
}



/*-----------------------------
   Section04 中古車
-------------------------------*/
article.cont_base_D{
	width: 100%;
	position: relative;
	overflow-y: visible;
	background-image: url("../images/260612_sec05_bg01.png"), url("../images/260612_sec05_bg02.png");
	background-position: center top, center top;
	background-size: 100% auto, 225px auto;
	background-repeat: no-repeat, repeat;
}

article.cont_base_D .D_inn{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 0;
	position: relative;
	padding: 2% 0 6%;
}

.img_D_01{
	width: 100%;
	position: relative;
}

.img_D_02{
	width: 100%;
	position: relative;
	display: block;
	margin-top: -3%;
}

.img_D_03{
	width: 100%;
	position: relative;
	margin-top: 2%;
	display: block;
}


.btn_B{
	width: 22%;
	display: block;
	position: absolute;
	top: 15%;
	right: 15%;
	/*filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.8));*/
}
.btn_C{
	width: 47%;
	display: block;
	position: relative;
	margin: 4% auto 0;
	filter: drop-shadow(0px 5px 5px rgba(0, 0, 0, 0.8));
}
.btn_B img,
.btn_C img{
	width: 100%;
	height: auto;
}
.btn_B:hover,
.btn_C:hover{
	opacity: .7;
	-moz-transition: .2s;
    -webkit-transition: .2s;
    -o-transition: .2s;
    -ms-transition: .2s;
	transition: .2s;
}

/*-----------------------------
   Section05 U39応援キャンペーン
-------------------------------*/
article.cont_base_E{
	width: 100%;
	position: relative;
	overflow-y: visible;
	background-image: url("../images/260612_sec06_bg01.png");
	background-position: center top;
	background-size: cover;
	background-repeat: no-repeat;
}

article.cont_base_E .E_inn{
	max-width: 1000px;
	width: 100%;
	margin: 0 auto 0;
	position: relative;
	padding: 3% 0 3%;
}

.img_E_01{
	width: 100%;
	display: block;
	position: relative;
}
.img_E_01::after{
	content: "";
	position: absolute;
	width: 0.5%;
	height: 100%;
	top: 0;
	right: -0.5%;
	background-image: url("../images/260612_sec06_01_r.png");
	background-size: 100% auto;
	background-position: left top;
	background-repeat: no-repeat;
}


/*-----------------------------
   Section9 ラスト
-------------------------------*/
article.cont_base_J{
	width: 100%;
	position: relative;
	overflow: hidden;
	background-image: url("../images/260612_sec07_bg01.jpg");
	background-position: center top;
	background-size: 100% auto;
	background-repeat: no-repeat;
}
article.cont_base_J .J_inn{
	width: 100%;
	max-width: 1000px;
	height: auto;
	margin: 0 auto;
	position: relative;
	padding: 3% 0 6%;
	z-index: 20;
}

.img_J_00{
	width: 53.6%;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50% , 0);
	z-index: 10;
}

.img_J_01{
	width: 91.5%;
	position: relative;
	margin: 0 auto;
	z-index: 15;
	display: block;
}
.img_J_02{
	width: 28.3%;
	position: relative;
	margin: -3% auto 0;
	z-index: 10;
}
.img_J_03{
	width: 100%;
	position: relative;
	margin: 0 auto 0;
	z-index: 10;
}





/*-----------------------------
  Margin Padding
-------------------------------*/
.mt3pc{
	margin-top: 3%;
}
.mt4pc{
	margin-top: 4%;
}
.mt5pc{
	margin-top: 5%;
}
.mt10pc{
	margin-top: 10%;
}
.mt-43pc{
	margin-top: -43%;
}
.mt-45pc{
	margin-top: -45%;
}
.mt-40pc{
	margin-top: -40%;
}
.mt-8pc{
	margin-top: -8%;
}
.mt-6pc{
	margin-top: -6%;
}
.mt-4pc{
	margin-top: -4%;
}
.mt-2pc{
	margin-top: -2%;
}
.mt-40{
	margin-top: -40px;
}
.mt10{
	margin-top: 10px;
}
.mt20{
	margin-top: 20px;
}
.mt30{
	margin-top: 30px !important;
}
.mt40{
	margin-top: 40px !important;
}
.mt60{
	margin-top: 60px !important;
}
.mt100{
	margin-top: 100px !important;
}
.mb2pc{
	margin-bottom: 2%;
}
.pb100{
	padding-bottom: 100px;
}
.pt10{
	padding-top: 10px;
}

.pb80{
	padding-bottom: 80px;
}
/*-----------------------------
  Width
-------------------------------*/
.w80{
	width: 80%;
}