﻿/*
Theme Name: k10000
*/
@charset "UTF-8";


/* 基本レイアウト ここから↓ */
* {
	margin: 0;
	padding: 0;
}
*, *::before, *::after {
    box-sizing: border-box;
}
html{
	font-size: 62.5%;
}
body{
	font-size: 1.6rem;/* 16px*/
	line-height: 2;
	width: 100%;
	background-color: #fff;
	/* フォントの種類を指定 */
	font-family: -apple-system, BlinkMacSystemFont, 游ゴシック, "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	/* 字間(プロポーショナルメトリクス)を指定 */
	font-feature-settings: "palt";
	display: inline;
}
li {
	list-style:none;
}
ul, ol {
	padding:0;
	margin:0;
}
a {	
	color: #000;
	text-decoration: none;
}
a:hover {
	/* filter: saturate(180%) opacity(70%);
	transition-duration: 0.5s; */
}
a img:hover {
	filter: opacity(80%);
}
a[href*="tel"] {
	pointer-events: auto;
}
.font {
	font-family: 'Stoke', serif;
	font-style: italic;
}
img {
	max-width: 100%;
    height: auto;
	vertical-align: middle;
	display: block;
	margin: auto;
}
img.widthmax {
	/* width: 100%; */
}
.hidden {
	position: absolute;
	top: -9999px;
	left: -9999px;
  }
.sp_only {
	display: block;
}
.pc_only {
	display: none;
}


@media screen and (min-width: 960px) {
	.sp_only {
		display: none;
	}
	.pc_only {
		display: block;
	}
	a[href*="tel"] {
		pointer-events: none;
	}
}

.bold {
	font-weight: bold;
}
/* webfont */
.ff-rodin-m {
	font-family: "FOT-ロダンNTLG Pro M";
}
.ff-rodin-db {
	font-family: "FOT-ロダンNTLG Pro DB";
}
.ff-rodin-b {
	font-family: "FOT-ロダンNTLG Pro B";
}
.ff-rodin-eb {
	font-family: "FOT-ロダンNTLG Pro EB";
}
.ff-kurokane-eb {
	font-family: "FOT-くろかね Std EB";
}

/* 文字色 */
.white {
	color: #fff;
}
.red {
	color: #e70012;
}
.yellow {
	color: #fdf100;
}
.orange {
	color: #ed722e;
}

/* 基本レイアウト ここまで↑ */

/* ヘッダーボタン ここから*/ 
.header-btn {
	background-color: #fabe00;
}
.header-btn ul {
	max-width: 1000px;
	margin: auto;
	padding: 1% 3%;
	display: flex;
	justify-content: space-between;
}
.header-btn ul li {
	width: 48%;
}
@media screen and (min-width: 960px) {
	.header-btn ul li {
		width: 23%;
	}
	.header-btn ul li.pc_only {
		width: 52%;
	}
}
/* ヘッダーボタン ここまで*/

/*------------------------------

	ヘッダーここから

------------------------------*/
header {
	background: #fff;
	width: 100%;
	position: fixed;
	z-index: 10;
}
header a {
	/* color: #fff; */
}
#header_box {
	padding: 0 3%;
	display: flex;
	/* align-items: center;垂直中央寄せ */
	justify-content: space-between;
	
}
#header_box h1 {
	/* width: 300px; */
	width: 68%;
}
#header_box nav{
	font-weight: bold;
}
  /*------------------------------
  
	ここから下がハンバーガーメニュー
	に関するCSS
  
  ------------------------------*/
	
  /* チェックボックスは非表示に */
  .drawer-hidden {
	display: none;
  }

  .drawer {
	align-self: center; /* 垂直方向中央寄せ */
  }

  /* ハンバーガーアイコンの設置スペース */
  .drawer-open {
	display: flex;
	height: 35px;
	width: 35px;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 100;/* 重なり順を一番上に */
	cursor: pointer;
	background: #dcdddd;
	border-radius: 5px;
  }
  
  /* ハンバーガーメニューのアイコン */
  .drawer-open span,
  .drawer-open span:before,
  .drawer-open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 20px;
	border-radius: 3px;
	background: #231815;
	transition: 0.5s;
	position: absolute;
  }
  
  /* 三本線のうち一番上の棒の位置調整 */
  .drawer-open span:before {
	bottom: 8px;
  }
  
  /* 三本線のうち一番下の棒の位置調整 */
  .drawer-open span:after {
	top: 8px;
  }
  
  /* アイコンがクリックされたら真ん中の線を透明にする */
  #drawer-check:checked ~ .drawer-open span {
	background: rgba(255, 255, 255, 0);
  }
  
  /* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
  #drawer-check:checked ~ .drawer-open span::before {
	bottom: 0;
	transform: rotate(45deg);
  }
  
  #drawer-check:checked ~ .drawer-open span::after {
	top: 0;
	transform: rotate(-45deg);
  }
	
  /* メニューのデザイン*/
  .drawer-content {
	width: 100%;
	/* width: 50%; */
	height: 100%;
	position: fixed;
	top: 0;
	left: 100%;/* メニューを画面の外に飛ばす */
	z-index: 99;
	/* background: #fff; */
	background: #231815;
	/* opacity:0.8; */
	transition: .5s;


	/* position: absolute;
    z-index: 100; 
    top: 68px;
	height: calc( 100vh - 52px);
	*/

	
  }
  
  /* アイコンがクリックされたらメニューを表示 */
  #drawer-check:checked ~ .drawer-content {
	left: 0;/* メニューを画面に入れる */
	/* left: 50%; *//* メニューを画面に入れる */
  }


ul.drawer-list li {
	margin: 10px 0;
}
ul.drawer-list li a {
	display: block;
	padding: 20px 40px;
	color: #fff;
}

#pcnav {
	display: none; /* PC用メニューを非表示に */
}

	/*------------------------------

		PC用メニューここから

	------------------------------*/
	@media screen and (min-width: 960px) {
	
		#header_box {
			/* padding: 0 5%; */
			display: block;
			max-width: 1000px;
			margin:auto;
		}
		#header_box h1 {
			/* width: 500px; */
			width: 40%;
		}
		nav#pcnav {
			display: block;	/* メニューはロゴの下の段に */
			width: 100%;
			/* width: auto;
			max-width: 75%; */
			align-self: center;/*  垂直方向中央寄せ */
			font-size: 1em;
			margin-top: 10px;
		}
		ul#pcnavul {
			display: flex;
			justify-content: space-around;
		}
		ul#pcnavul li {
			/* margin-left: 50px; */
		}
		ul#pcnavul a:hover {
			text-decoration: underline;
		}
		div.drawer {
			display: none; /* スマホ用メニューを非表示に */
		}
	}
	/*------------------------------

		PC用メニューここまで

	------------------------------*/
a.header-btn-lease img {
	width: 100%;
	max-width: 1000px;
	margin: auto;
	padding: 1% 3%;
}
/*------------------------------

	ヘッダーここまで

------------------------------*/
/*------------------------------

	メイン部分ここから

------------------------------*/
main {

}
main video {
	width: 100%;
	display: block;
}
main section {
	max-width: 1000px;
	padding: 0 3%;
	margin: auto;
	margin-top: 20px;
}
@media screen and (min-width: 960px) {
	main section {
		margin-top: 40px;
	}
}

/* メインイメージ部分 ここから */
#main-img {
	max-width: 1000px;
	position: relative;
	/* margin-bottom: 33%; */
	font-weight: bold;
}
#main-img div {
	/* width: 85%; */
	position: absolute;
	top: 66%;
	left: 7%;

	/* left: 50%;
	bottom: -6.5em;
	transform: translateX(-50%); */
	/* 
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	 */
	

	text-shadow:1px 1px 5px #FFF, -1px -1px 5px #FFF,
              -1px 1px 5px #FFF, 1px -1px 5px #FFF,
              0px 1px 5px #FFF,  0-1px 5px #FFF,
              -1px 0 5px #FFF, 1px 0 5px #FFF;
}
#main-img div p {
	font-size: 4.7vw;
}
#main-img div h3 {
	/* font-size: clamp(2rem, 4vw + 2rem, 6rem); */
	font-size: 10.1vw; /* ビューポートの幅の何パーセントか */
	line-height: 1.0;
	padding-left: 1.5em;
	text-indent: -1.5em;
}
@media screen and (min-width: 960px) {
	#main-img div p {
		font-size: 2.9em;
	}
	#main-img div h3 {
		font-size: 6.3em;
	}
}
/* メインイメージ部分 ここまで */

/* 見出し部分 */
h3.midashi {	
	color: #fdf100;
	text-shadow: 1px 2px 5px #000;
	font-size: clamp(1rem, 3vw + 1rem, 4.688rem);
    line-height: 1.0;
	text-align: center;
	background-image: url(img/midashi-back.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	/* background-color:#f9edd5; */
	padding-top: 3.3%;
	padding-bottom: 9%
}

/* 3つの実績　タイトル部分 */
#jisseki-title {
	background-color: #132a88;
	font-size: 7.5vw;
	text-align: center;
}
@media screen and (min-width: 960px) {
	#jisseki-title {
		font-size: 4em;
	}
}

/* 選ばれる理由　タイトル部分 */
#about > div {
	position: relative;
}
#about h4 {
	position: absolute;
	top: 0.3%;
	left: 5%;
}
#about h4 {
	font-size: 6.5vw;
}
@media screen and (min-width: 960px) {
	#about h4 {
		font-size: 4em;
	}
}

/* さらに */
.sarani {
	width: 20%;
}

/* 新車を買うなら新車館 ここから */
#sinsya {
	text-align: center;
}
p#sinsya-catch {
	font-size: 3.7vw;
}
@media screen and (min-width: 960px) {
	p#sinsya-catch {
		font-size: 2.3em;
	}
}
#sinsya > div {
	background-image: url(img/back-orange-border-b.jpg);
	background-repeat: repeat;
	background-size: cover;
	padding: 5%;
}
#sinsya h4 {
	font-size: 6.0vw;
	line-height: 1.2;
	text-shadow: 1px 2px 5px #000;
}
@media screen and (min-width: 960px) {
	#sinsya h4 {
		font-size: 3.6em;
	}
}
#sinsya h5 {
	font-size: 2.7vw;
}
@media screen and (min-width: 960px) {
	#sinsya h5 {
		font-size: 1.6em;
	}
}

#shinsya-img {
	position: relative;
	margin-top: 1em;
}
#shinsya-img p {
	width: 40%;
	/* background-color:#dcdddd; */
	font-size: 2.5vw;
	line-height: 1.2;
}
@media screen and (min-width: 960px) {
	#shinsya-img p {
		font-size: 1.5em;
	}
}
p#lt {
	position: absolute;
	top: 4%;
	left: 5%;
}
p#rt {
	position: absolute;
	top: 4%;
	right: 5%;
}
p#lb {
	position: absolute;
	bottom: 4%;
	left: 5%;
}
p#rb {
	position: absolute;
	bottom: 5%;
	right: 5%;
}
/* 新車を買うなら新車館 ここまで */

/* 新車を買うなら新車館 こんなお悩みありませんか？ ここから */
#sinsya-onayami h3 {
	background: url(img/04-sinsya/excl-mark.gif) no-repeat left/12%;
	width: 90%;
	margin: auto;
	padding-left: 13%;
	font-size: 5.5vw;
}
@media screen and (min-width: 960px) {
	#sinsya-onayami h3 {
		font-size: 3em;
	}
}
#sinsya-onayami ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/* width: 90%; */
	margin: auto;
	margin-top: 1em;
}
#sinsya-onayami li {
	width: 49%;
	/* height: 30vh; */
	margin-bottom: 1.5em;
}
#sinsya-onayami ul li p {
	font-size: 2.5vw;
	height: 2em;
	line-height: 1.2;
}
@media screen and (min-width: 960px) {
	#sinsya-onayami ul li p {
		font-size: 1.2em;
	}
}
#sinsya-onayami li img {
	margin-top: 0.5em;
}

.sinsya-onayami-arrow {
	background: url(img/04-sinsya/arrow.gif) no-repeat center/50%;
	padding: 4% 0 7% 0;
	line-height: 1.2;
	text-align: center;
	text-shadow: 
       3px  3px 1px #ffffff,
      -3px  3px 1px #ffffff,
       3px -3px 1px #ffffff,
      -3px -3px 1px #ffffff,
       3px  0px 1px #ffffff,
       0px  3px 1px #ffffff,
      -3px  0px 1px #ffffff,
       0px -3px 1px #ffffff;   
}
#sinsya-onayami .sinsya-onayami-arrow p {
	font-size: 4.5vw;
}
@media screen and (min-width: 960px) {
	#sinsya-onayami .sinsya-onayami-arrow p {
		font-size: 2.5em;
	}
}
.sinsya-onayami-arrow h4 {
	font-size: 5.9vw;
}
@media screen and (min-width: 960px) {
	.sinsya-onayami-arrow h4 {
		font-size: 3.2em;
	}
}
/* 新車を買うなら新車館 こんなお悩みありませんか？ ここまで */

/* 無料相談受付中 ここから */
section.soudan {
	text-align: center;
}

.soudan-catch {
	line-height: 1.3;
	background: url(img/soudan/catch-back.gif) no-repeat center/100%;
}
.soudan-catch p {
	font-size: 2.8vw;
}
@media screen and (min-width: 960px) {
	.soudan-catch p {
		font-size: 1.4em;
	}
}
.soudan-catch h3 {
	font-size: 4.5vw;
}
@media screen and (min-width: 960px) {
	.soudan-catch h3 {
		font-size: 2.2em;
	}
}
.soudan-box {
	background-image: url(img/soudan/back.png);
	background-size: cover;
	padding: 5% 10%;
	line-height: 1.3;
}
.soudan-box p {
	font-size: 3.3vw;
}
@media screen and (min-width: 960px) {
	.soudan-box p {
		font-size: 1.8em;
	}
}
.soudan-box a img {
	margin: 1.5em auto;
}
.soudan-tel {
	width: 95%;
	margin: 1.5em auto 0 auto;
	background: url(img/soudan/icon-tel.png) no-repeat left/17%;
	padding-left: 18%;
	text-align: left;
}
.soudan-tel a {
	font-size: 7.3vw;
	line-height: 1.0;
	color: #fff;
	border-bottom: 2px solid #fff;
}
@media screen and (min-width: 960px) {
	.soudan-tel a {
		font-size: 3.9em;
	}
}
.soudan-tel p {
	margin-top: 0.8em;
	font-size: 3vw;
}
@media screen and (min-width: 960px) {
	.soudan-tel p {
		font-size: 1.6em;
	}
}
/* 無料相談受付中 ここまで */

/* 最新モデルの新車が選べます ここから */
#newmodel {
	background: repeat top / 100% url(img/05-newmodel/back.webp);
	/* background-size: cover; */
	padding: 5%;
	text-align: center;
}
#newmodel h3 {
	font-size: 8.5vw;
	line-height: 1.0;
	text-shadow: 1px 2px 2px #888;
}
@media screen and (min-width: 960px) {
	#newmodel h3 {
		font-size: 4.6em;
	}
}
#newmodel h3 span {
	font-size: 150%;
}
#newmodel h4 {
	font-size: 4.9vw;
	line-height: 1.2;
	margin-top: 0.5em;
}
@media screen and (min-width: 960px) {
	#newmodel h4 {
		font-size: 2.5em;
	}
}
.newmodel-p {
	font-size: 2vw;
}
@media screen and (min-width: 960px) {
	.newmodel-p {
		font-size: 1.3em;
	}
}
#newmodel ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#newmodel ul li {
	width: 48.5%;
	padding: 2%;
	background: #fff;
	margin-top: 1em;
}
#newmodel ul li h5 {
	color: #fff;
	line-height: 1.2em;
	padding: 2%;
	background: #ed722e;
	border-radius: 5px;
	font-size: 2vw;
}
@media screen and (min-width: 960px) {
	#newmodel ul li h5 {
		font-size: 1.5em;
	}
}
#newmodel ul li p {
	border: 1px solid #ed722e;
	margin-top: 0.5em;
	padding: 2%;
	line-height: 1.3;
	text-align: left;
	font-weight: bold;
	font-size: 2.5vw;
	height: 5em;
}
@media screen and (min-width: 960px) {
	#newmodel ul li p {
		font-size: 1.3em;
	}
}
/* 最新モデルの新車が選べます ここまで*/ 

/* よくあるご質問アコーディオン ここから */
.accordion {
	margin-top: 1em;
	/* margin: 3em auto; */
	/* max-width: 60vw; */
}
.toggle {
	display: none;
}
.option {
	position: relative;
	margin-bottom: 1em;
}
.title,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.title {
	line-height: 1.3;
	color: #ee9f15;
	border: solid 2px #ee9f15;
	border-radius: 3px;
    background-color: #ffffe6;
	padding: 1em 2em 1em 3em;
	display: block;
	font-weight: bold;
	background-image: url(img/11-faq/q.png);
	background-repeat: no-repeat;
	background-position: center left 0.5em;
    background-size: auto 36px;
	cursor: pointer;
}

.title::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0d7";
	font-size: 1.5em;
	font-weight: 900;
	position: absolute;
	right: 0.5em;
	top: 0.5em;
	transition: all 0.3s;
}
/* .title::after {
	transform: rotate(90deg);
} */
/* .title::after,
.title::before {
	content: "";
	position: absolute;
	right: 1.25em;
	top: 1.25em;
	width: 2px;
	height: 0.75em;
	background-color: #999;
	transition: all 0.3s;
}
.title::after {
	transform: rotate(90deg);
} */
.content {
	max-height: 0;
	overflow: hidden;
}
.content p {
	margin: 0;
	padding: 0.5em 1em;
	/* font-size: 0.9em; */
	line-height: 1.5;
}
.toggle:checked + .title + .content {
	max-height: 500px;
	transition: all 1.5s;
}
.toggle:checked + .title::before {
	transform: rotate(180deg) !important;
}
/* .toggle:checked + .title::before {
	transform: rotate(90deg) !important;
} */

.content p.answer {
	font-weight: bold;
	margin-top: 1rem;
	margin-left: 2rem;
}
.content p.answer::before {
    position: absolute;
    content: "A";
    color: #E63201;
    /* top: 0;
    left: 2px; */
	left: 1em;
}
/* よくあるご質問アコーディオン ここまで */

/* 会社概要 ここから */
#company table {
	text-align: left;
	width: 100%;
	border-collapse:collapse;
	line-height: 1.5;
}
#company table tr {
	border-bottom: 1px solid #ccc;
}
#company table th {
	width: 30%;
}
#company table th, #company table td {
	padding: 0.5em;
}

#company iframe {
	margin-top: 2em;
	height: 300px;
}
@media screen and (min-width: 960px) {
	#company iframe {
		height: 450px;
	}
}
/* 会社概要 ここまで */

/* お問い合わせフォーム ここから */
div#contact {
	background: #f9edd5;
	padding-top: 1em;
	padding-bottom: 3em;
	margin-top: 3em;
}
#contact h3 {
	padding-top: 40px;
    background: url(img/mail.png) no-repeat top center;
    background-size: 40px;
	text-align: center;
}


/* フォームここから */
.Form {
	margin-top: 50px;
	margin-left: auto;
	margin-right: auto;
	max-width: 720px;
}
@media screen and (max-width: 700px) {
	.Form {
		margin-top: 40px;
	}
}
.Form-Item {
	border-top: 1px solid #ddd;
	padding-top: 24px;
	padding-bottom: 24px;
	width: 100%;
	display: flex;
	align-items: center;
}
@media screen and (max-width: 700px) {
	.Form-Item {
		padding-left: 14px;
		padding-right: 14px;
		padding-top: 16px;
		padding-bottom: 16px;
		flex-wrap: wrap;
	}
}
.Form-Item:nth-child(5) {
	border-bottom: 1px solid #ddd;
}
.Form-Item-Label {
	width: 100%;
	max-width: 248px;
	letter-spacing: 0.05em;
	font-weight: bold;
	font-size: 18px;
}
@media screen and (max-width: 700px) {
	.Form-Item-Label {
		max-width: inherit;
		display: flex;
		align-items: center;
		font-size: 15px;
	}
}
.Form-Item-Label.isMsg {
	margin-top: 8px;
	margin-bottom: auto;
}
@media screen and (max-width: 700px) {
	.Form-Item-Label.isMsg {
		margin-top: 0;
	}
}
.Form-Item-Label-Required {
	border-radius: 6px;
	margin-left: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
	width: 48px;
	display: inline-block;
	text-align: center;
	background: #e63102;
	color: #fff;
	font-size: 14px;
}
@media screen and (max-width: 700px) {
	.Form-Item-Label-Required {
		border-radius: 4px;
		padding-top: 4px;
		padding-bottom: 4px;
		width: 32px;
		font-size: 10px;
	}
}
.Form-Item-Input {
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-left: 30px;
	padding-left: 1em;
	padding-right: 1em;
	height: 48px;
	flex: 1;
	width: 100%;
	max-width: 650px;
	background: #fff;
	font-size: 18px;
}
@media screen and (max-width: 700px) {
	.Form-Item-Input {
		margin-left: 0;
		margin-top: 18px;
		height: 40px;
		flex: inherit;
		font-size: 15px;
	}
}
.Form-Item-Textarea {
	border: 1px solid #ddd;
	border-radius: 6px;
	margin-left: 30px;
	padding-left: 1em;
	padding-right: 1em;
	height: 216px;
	flex: 1;
	width: 100%;
	max-width: 650px;
	background: #fff;
	font-size: 18px;
}
@media screen and (max-width: 700px) {
	.Form-Item-Textarea {
		margin-top: 18px;
		margin-left: 0;
		height: 200px;
		flex: inherit;
		font-size: 15px;
	}
}
.Form-Btn {
	border-radius: 6px;
	margin-top: 32px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 20px;
	width: 280px;
	display: block;
	letter-spacing: 0.05em;
	background: #e63102;
	color: #fff;
	font-weight: bold;
	font-size: 20px;
}
@media screen and (max-width: 700px) {
	.Form-Btn {
		margin-top: 24px;
		padding-top: 8px;
		padding-bottom: 8px;
		width: 160px;
		font-size: 16px;
	}
}

.Form fieldset {
	margin-top: 1em;
	margin-left: 30px;
	flex: 1;
	width: 100%;
	max-width: 650px;
	font-size: 18px;
	border: none;
}
.Form fieldset label {
	display: inline-block;
	margin-right: 2em;
}
@media screen and (max-width: 700px) {
	.Form fieldset {
		margin-left: 0;
		font-size: 16px;
	}
}
/* フォームここまで */




/* お問い合わせフォーム ここまで */


/* プライバシーポリシー ここから　*/
#privacy h3 {
	font-size: 1.5em;
	margin-bottom: 2em;
}
#privacy p {
	font-size: 1.3em;
	margin-bottom: 2em;
}
#privacy ul li {
	font-size: 1.3em;
	margin-bottom: 2em;
	padding-left: 1em;
	text-indent: -1em;
}
#privacy ol {
	counter-reset: count 0;
}
#privacy li:before {
	content: counter(count) ". ";
	counter-increment: count 1;
}
/* プライバシーポリシー ここまで */

/*------------------------------

	メイン部分ここまで

------------------------------*/


/*------------------------------

	フッター部分ここまで

------------------------------*/
footer {
	/* padding-bottom: 20vw; */
	background: #3b3b3b;
	color: #ffffff;
    text-align: center;
	padding-top: 1em;
}





footer a {
	display: block;
	text-decoration: underline;
	color: #fff;
	margin-bottom: 0.5em;
}
/* フッターボタン ここから*/ 
.footer-btn {
	background-color: #e60012;
	margin-top: 2em;
}
.footer-btn ul {
	max-width: 1000px;
	margin: auto;
	padding: 1% 3%;
	display: flex;
	justify-content: space-between;
}
.footer-btn ul li {
	width: 48%;
}
/* フッターボタン ここまで*/
/*------------------------------

	フッター部分ここまで

------------------------------*/


/* *************************************************** */
/*------------------------------

	PC用ここから

------------------------------*/
@media screen and (min-width: 960px) {
	
	
}
/*------------------------------

	PC用ここまで

------------------------------*/








