@charset "utf-8";
/*===================
  TOPページ
====================*/
/*== MV ==*/
.mv {
    background-image: url(../images/common/pc/bk_c.svg);
	position: relative;
	z-index: 0;
}
.mv .inner {
	padding: 60px;
    font-size: 0;
}
.mv .inner img {
	border-radius: 30px;
	position: relative;
	z-index: 2;
}
.mv h2 {
	max-width: 500px;
	width: 26.0417%;
	position: absolute;
	top: 300px;
	top: 27.2928%;
	left: 300px;
	left: 17.625%;
	z-index: 3;
}

/* slick のフェードを上書きして、しっかりクロスフェード */
.slick_mv .slick-slide{
	opacity: 0;
	transition: opacity 1.2s linear;
	will-change: opacity;
}
.slick_mv .slick-slide.slick-current{
	opacity: 1;
	z-index: 2;
}

/* Ken Burns（現在スライドだけ、ゆっくりズーム） */
.slick_mv .img_photo img{
	transform: scale(1);
	transition: transform 6s ease-out;
	will-change: transform;
}
.slick_mv .slick-slide.is-ken .img_photo img{
	transform: scale(1.06);
}

/* ちらつき対策（GPUヒント） */
.slick_mv .slick-list,
.slick_mv .slick-track,
.slick_mv .slick-slide{
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
}

@media screen and (max-width:1600px) { 
	.mv .inner {
		padding: 50px;
	}
	.mv h2 {} 
}


/*== intro ==*/
.intro {
	padding-top: 100px;
}
.intro .inner {
	max-width: 1700px;
	width: 88.5417%;
	margin: 0 0 0 auto;
}
.intro_head .txt_box {
	max-width: 700px;
	width: 41.1765%;
	padding-right: 2.9412%;
	box-sizing: border-box;
}
.intro_head .txt_box h3 {
	max-width: 250px;
	width: 35.7143%;
	position: relative;
	z-index: 0;
}
.intro_head .txt_box h3:before {
	content: "";
	position: absolute;
	top: -45px;
	left: -60px;
	background-image: url(../images/top/pc/intro_ttl_item.svg);
	background-repeat: no-repeat;
	background-size: 190px;
	width: 190px;
	height: 190px;
	z-index: -1;
}
.intro_head .txt_box p {
	margin-top: 30px;
	font-size: 28px;
	font-size: 1.458333vw;
	position: relative;
	z-index: 0;
}
.intro_head .txt_box .txt_large {
	font-size: 36px;
	font-weight: bold;
    white-space: nowrap;
}
.intro_head .img_box {
	position: relative;
	max-width: 1000px;
	width: 58.8236%;
}
.intro_head .img_box .sticky {
	position: sticky;
	top: 100px;
}
.intro_head .img_box .sticky .img_photo img {
	border-radius: 15px 0 0 15px;
	box-shadow: 7px 7px 5px rgba(0,0,0,.3);
}
.intro_head .more_btn a {
	margin-top: 50px;
}
.intro_head .more_btn a:hover {
	color: #fff;
}
.intro_gallery {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
	z-index: 0;
}
.intro_gallery .flex_box {
	justify-content: space-between;
}
.intro_gallery_01 {
	max-width: 440px;
	width: 22.9167%;
}
.intro_gallery_01 img {
	border-radius: 0 10px 10px 0; 
	box-shadow: 7px 7px 5px rgba(0,0,0,.3);
}
.intro_gallery_02 {
	max-width: 500px;
	width: 26.0417%;
	display: grid;
	align-items: end;
}
.intro_gallery_02 img {
	border-radius: 10px;
	box-shadow: 7px 7px 5px rgba(0,0,0,.3);
}
.intro_gallery_03 {
	max-width: 500px;
	width: 26.0417%;
}
.intro_gallery_03 img {
	border-radius: 10px 0 0 10px;
	box-shadow: 7px 7px 5px rgba(0,0,0,.3);
}
.intro_gallery .img_photo img {
	overflow: hidden;
}
.intro_gallery .item_intro_01 {
	width: 228px;
	position: absolute;
	top: 50px;
	left: 27%;
	z-index: 1;
	font-size: 0;
}
.intro_gallery .item_intro_02 {
	width: 228px;
	position: absolute;
	top: -50px;
	right: 27%;
	z-index: 1;
	font-size: 0;
}
.intro_gallery .item_intro_03 {
	width: 90px;
	font-size: 0;
}
.intro_gallery .item_intro_04 {
	width: 142px;
	font-size: 0;
}
.intro_gallery .item_intro_05 {
	width: 26px;
	font-size: 0;
}
.intro_gallery .item_intro_06 {
	width: 150px;
	position: absolute;
	bottom: 0;
	right: 15%;
	font-size: 0;
}
.intro_gallery .item_grass {
	position: absolute;
	bottom: 0;
	width: 100%;
	display: flex;
	justify-content: space-around;
	font-size: 0;
}
/* 雲は transform だけで動かす＝高速 */
.intro_gallery .item_intro_01,
.intro_gallery .item_intro_02{
  will-change: transform;
  transform: translate3d(0,0,0);
  pointer-events: none; /* 触れない飾りなら */
}

/* ふわっと呼吸する感じを足したい場合（任意） */
.intro_gallery .item_intro_01 img,
.intro_gallery .item_intro_02 img{
  animation: cloud-bob 6s ease-in-out infinite alternate;
}
@keyframes cloud-bob{
  from { transform: translateY(-3px); }
  to   { transform: translateY( 3px); }
}

/* モーション弱めたい人向け */
@media (prefers-reduced-motion: reduce){
  .intro_gallery .item_intro_01,
  .intro_gallery .item_intro_02{
	transform: none !important;
  }
  .intro_gallery .item_intro_01 img,
  .intro_gallery .item_intro_02 img{
	animation: none !important;
  }
}

@media screen and (max-width:1600px) {
	.intro .inner {
		width: 95%;
	}
	.intro_head .txt_box h3:before {
		top: -35px;
		left: -30px;
		background-size: 130px;
		width: 130px;
		height: 130px;
	}
	.intro_gallery_01 {
		width: 25%;
	}
	.intro_gallery_02 {
		width: 30%;
	}
	.intro_gallery_03 {
		width: 30%;
	}
}

@media screen and (max-width:1300px) {
	.intro_head .txt_box p {
		font-size: 21px;
	}
}



/*== 製品情報 ==*/
.top_product {
    overflow: hidden;
}
.top_product .product_ttl {
	padding-top: 80px;
	padding-bottom: 80px;
	background-image: url(../images/common/pc/bk_c.svg);
}
.top_product .product_ttl h3 {
	font-size: 55px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
}
.top_product .product_ttl p {
	text-align: center;
	margin-top: 50px;
	font-size: 24px;
}

/*共通*/
.top_product .inner {
	max-width: 1440px;
	/*width: 75%;*/
	margin: 0 auto;
	padding-top: 100px;
	padding-bottom: 100px;
}
.top_product .content {}
.top_product .product_head {}
.top_product .product_head .ttl_box {
    max-width: 1240px;
    margin: 0 auto;
	padding-top: 30px;
	padding-bottom: 30px;
	border-radius: 10px;
	background-color: #333;
}
.top_product .product_head .ttl_box h4 {
	text-align: center;
	line-height: 1;
	text-shadow: 3px 3px 5px rgba(0,0,0,.3);
}
.top_product .product_head .ttl_box h4 .en {
	font-size: 32px;
	font-weight: 800;
	font-family: "Montserrat", sans-serif;
	color: #fff;
}
.top_product .product_head .ttl_box h4 .ja {
	display: block;
	font-size: 48px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
}
.top_product .product_head .txt_box {
	margin-top: 80px;
	text-align: center;
}
.top_product .product_head .txt_box h4 {
	font-size: 55px;
	font-weight: bold;
	line-height: 1.5;
	border-bottom: 2px solid #918a71;
	padding-bottom: 30px;
	margin-bottom: 30px;
	display: inline-block;
}
.top_product .product_head .txt_box p {
	text-align: center;
	font-size: 24px;
}

.top_product .product_body {
	margin-top: 80px;
}
.top_product .product_body .flex_box {
	flex-wrap: wrap;
	display: flex !important;
	justify-content: center;
}
.top_product .product_body .flex_box.col_2 {
	gap: 30px;
}

.top_product .product_body .product_box h4 {
	font-size: 36px;
	font-family: "Montserrat", sans-serif;
	font-weight: bold;
	line-height: 1.2;
}
.top_product .product_body .product_box h4 span {
	font-size: 28px;
	display: inline-block;
	width: 1000%;
}

.top_product .product_body .product_slick {
	max-width: 650px;
	width: 100%;
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
}
.top_product .product_body .product_slick .img_photo {}

.top_product .product_body .product_slick .img_photo img {
	border-radius: 10px;
}
/*矢印・大*/
.top_product .product_body .product_card > .slick-next,
.top_product .product_body .product_card > .slick-prev {
	display: block;
	z-index: 999;
	position: absolute;
	width: 75px;
	height: 75px;
	z-index: 99;
	bottom: -65px;
	transition: .2s;
}
.top_product .product_body .product_card > .slick-next {
	right: -45px;
}
.top_product .product_body .product_card > .slick-prev {
	left: -45px;
}
.top_product .product_body .product_card > .slick-next:before,
.top_product .product_body .product_card > .slick-prev:before {
	content: "";
	top: 0;
	left: 0;
	position: absolute;
	height: 50px;
	width: 50px;
	opacity: 1;
	border-top: 3px solid #333;
	border-right: 3px solid #333;
	transition: .2s;
}
.top_product .product_body .product_card > .slick-next:before {
	transform: translateY(20%) rotate(45deg);
	left: 16px;
}
.top_product .product_body .product_card > .slick-prev:before {
	transform: translateY(20%) rotate(-135deg);
}
.top_product .product_body .product_card > .slick-next:hover,
.top_product .product_body .product_card > .slick-prev:hover {
	background-color: transparent;
	transition: .2s;
}
.top_product .product_body .product_card > .slick-next:focus,
.top_product .product_body .product_card > .slick-prev:focus {
	background-color: transparent;
	transition: .2s;
}
/*矢印・小*/
.top_product .product_body .slick-next,
.top_product .product_body .slick-prev {
	display: inline-block;
	z-index: 999;
	/*position: absolute;*/
	position: static;
	top: auto;
	width: 50px;
	height: 50px;
	z-index: 99;
	bottom: -100px;
	transition: .2s;
	transform: translateX(0);
}
.top_product .product_body .slick-next {
	right: 0;
	order: 2;
}
.top_product .product_body .slick-prev {
	left: 0;
	order: 0;
}
.top_product .product_body .slick-next:before,
.top_product .product_body .slick-prev:before {
	content: "";
	top: 16px;
	left: 20px;
	position: absolute;
	height: 10px;
	width: 10px;
	opacity: 1;
	border-top: 3px solid #333;
	border-right: 3px solid #333;
	transition: .2s;
}
.top_product .product_body .slick-next:before {
	transform: translateY(20%) rotate(45deg);
	left: 16px;
}
.top_product .product_body .slick-prev:before {
	transform: translateY(20%) rotate(-135deg);
}
.top_product .product_body .slick-next:hover,
.top_product .product_body .slick-prev:hover {
	background-color: transparent;
	transition: .2s;
}
.top_product .product_body .slick-next:focus,
.top_product .product_body .slick-prev:focus {
	background-color: transparent;
	transition: .2s;
}
.top_product .product_body .slick-dots {
	bottom: -60px;
	position: static;
	order: 1;
	width: auto;
	height: 45px;
}
.top_product .product_body .slick-dots li button:before {
	content: '';
	font-size: 0;
	opacity: 1;
	background-color: #c9c9c9;
	border-radius: 3px;
}
.top_product .product_body .slick-dots li.slick-active button:before {
	opacity: 1;
    background-color: #333;
}

.top_product .product_body .product_box .variant_nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}


.top_product .product_body .body_end {
	display: flex;
	justify-content: center;
	font-size: 0;
	margin-top: 50px;
}
.top_product .product_body .body_end .more_btn {
	max-width: 280px;
	width: 100%;
}
.top_product .product_body .body_end .more_btn a {}

/* まずは figure の既定マージンを無効化（超重要） */
.top_product .product_body .product_slick .img_photo{
  margin: 0;
}

/* slick の表示窓を必ず閉じる + 余計なパディングを排除 */
.top_product .product_body .product_slick .slick-list{
  overflow: hidden !important;
  padding: 0 !important;
}

/* Flex 子要素の「縮まない」問題を解消 */
.top_product .product_body .product_box{
	min-width: 0;
	border: 3px solid #333;
    border-radius: 15px;
    background-color: #fff;
    box-shadow: 5px 5px 7px rgba(0, 0, 0, .3);
    padding: 30px 20px;
}

/* 画像の収まりを安定化（はみ出し・高さブレ対策） */
.top_product .product_body .product_slick .img_photo{}
.top_product .product_body .product_slick .img_photo img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;             /* 画像を切りたくないなら contain / 見栄え優先なら cover */
}

/* （任意）高さを一定にしたい場合：比率を与える */
@supports (aspect-ratio: 1){
  .top_product .product_body .product_slick{ aspect-ratio: 4 / 3; }  /* 好きな比率に */
}
/* 古いブラウザ向けフォールバック */
@supports not (aspect-ratio: 1){
  .top_product .product_body .product_slick{ position: relative; }
  .top_product .product_body .product_slick::before{
    content:'';
    display:block;
    padding-top: 75%;
  }
  .top_product .product_body .product_slick > .slick-list{
    position:absolute; inset:0;
  }
}


/*ループ*/
.loop_box {
	display: flex;
	gap: 50px;
	position: relative;
	z-index: 1;
	overflow: hidden;
}
.loop_box .loop_list {
	display: flex;
	align-items: center;
	will-change: transform;
	gap: 50px;
}
.loop_box .loop_list .loop_item {
	display: inline-flex;
	align-items: center;
}

/*センターコンソール*/
.loop_box_cc .loop_list .loop_item > img {
	width: 210px;
}
.loop_box_cc .loop_list .loop_item p img {
	width: 1684px;
}

/*ベッドキット*/
.loop_box_bk .loop_list .loop_item > img {
	width: 390px;
}
.loop_box_bk .loop_list .loop_item p img {
	width: 780px;
}

/*カスタムフロアマット*/
.loop_box_cfm .loop_list .loop_item > img {
	width: 246px;
}
.loop_box_cfm .loop_list .loop_item p img {
	width: 1970px;
}

/* 上段：右から左 */
.loop_box .loop_list--left {
	animation: loop-left 60s linear infinite;
}
/* 下段：左から右 */
.loop_box .loop_list--right {
	animation: loop-right 60s linear infinite;
}

@keyframes loop-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

@keyframes loop-right {
	0% {
		transform: translateX(-100%);
	}
	100% {
		transform: translateX(0%);
	}
}




@media screen and (max-width:1600px) { 
	.top_product .product_ttl h3 {
		font-size: 48px;
	}

	.top_product .inner {
		width: 90%;
		padding-top: 80px;
		padding-bottom: 80px;
	}
	.top_product .product_head {
		padding: 50px 50px 0;
	}
	.top_product .product_body {}
	.top_product .product_body .txt_box {
		width: 50%;
		padding-right: 4%;
		box-sizing: border-box;
	}
	.top_product .product_body .flex_box:nth-child(even) .txt_box {
		padding-right: 0;
	}
	.top_product .product_body .product_box {
		width: 45%;
	}
	.top_product .product_body .txt_box h4 {
		font-size: 32px;
	}
	.top_product .product_body .txt_box .future_list ul li {
		font-size: 24px;
	}
	.top_product .product_body .flex_box {
	}
}

@media screen and (max-width:1300px) { 
	.top_product .product_ttl p {
		font-size: 21px;
		margin-top: 30px;
	}
	.top_product .product_head .txt_box {
		margin-top: 50px;
	}
	.top_product .product_head .txt_box h4 {
		font-size: 48px;
	}
	.top_product .product_head .txt_box p {
		font-size: 21px;
	}
	.top_product .product_body .txt_box h4 {
		font-size: 28px;
	}
	.top_product .product_body .txt_box .future_list ul li {
		font-size: 21px;
	}
	.top_product .product_body .txt_box .future_list ul li:before {
	    top: 11px;
	}

	.top_product .product_body .product_box {
		width: 43%;
	}

}


/*== MADE IN JAPAN ==*/
.product_cta {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
	clip-path: inset(0);
	z-index: 0;
}
.product_cta img {
	object-fit: cover;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -99;
	filter: grayscale(1);
}
.product_cta .inner {
	text-align: center;
}
.product_cta a {
	display: inline-block;
	max-width: 960px;
	width: 100%;
	margin: 0 auto;
	background-color: #fff;
	border-radius: 30px;
	padding: 15px;
    transition: .2s;
}
.product_cta a:hover {
}
.product_cta a .cta_box {
	border: 3px solid #333;
	border-radius: 15px;
	padding: 50px 130px 30px;
}
.product_cta a .cta_box h3 {
	font-size: 80px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	line-height: 1;
	color: #333;
	text-shadow: 3px 3px 5px rgba(0,0,0,.3);
}
.product_cta a .cta_box h4 {
	font-size: 36px;
	font-weight: bold;
	margin-top: 30px;
	line-height: 1;
}
.product_cta a .cta_box p {
	text-align: center;
	font-size: 24px;
	margin-top: 20px;
	padding-bottom: 20px;
}
.product_cta a .cta_box span {
	margin-left: -10px;
	position: relative;
    margin-left: -10px;
    display: inline-block;
    max-width: 300px;
    width: 100%;
    height: 70px;
    line-height: 70px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    background-color: #333;
    box-shadow: 7px 7px 5px rgba(0, 0, 0, .3);
    transition: .2s;
}

.product_cta a:hover .cta_box span {
    box-shadow: none;
    transition: .2s;
}



/*===================
  製品LINEUP
====================*/
/*== MV ==*/
.kv_product {
	background-image: url(../images/common/pc/bk_c.svg);
	position: relative;
    z-index: 0;
}

.kv_product .inner {
	padding: 60px;
	box-sizing: border-box;
}
.kv_product .inner img {
	border-radius: 30px;
	position: relative;
	z-index: 2;
}
.kv_product h2 {
	position: absolute;
	top: 300px;
	top: 34.511%;
	left: 150px;
	left: 7.8125%;
	z-index: 3;
	font-size: 60px;
	font-weight: bold;
	color: #fff;
    text-shadow: 7px 7px 5px rgba(0, 0, 0, .3);
}
.kv_product h2 span {
	display: inline-block;
	margin-left: 25px;
	color: #fff;
}

@media screen and (max-width:1600px) {
	.kv_product .inner {
		padding: 50px;
	}
	.kv_product h2 {
		top: 250px;
		left: 150px;
		z-index: 3;
		font-size: 40px;
	}
}

@media screen and (max-width:1300px) {
	.kv_product h2 {
		top: 200px;
		left: 120px;
		font-size: 36px;
	}
}

/*== 製品情報｜メニューボタン ==*/
.product .menu_btn {
	padding-top: 30px;
	padding-bottom: 30px;
}
.product .menu_btn .inner {
	padding-left: 1.613%;
	padding-right: 1.613%;
	padding-left: 60px;
	padding-right: 60px;
	box-sizing: border-box;
}
.product .menu_btn .inner ul {
	flex-wrap: wrap;
	justify-content: space-between;
}
.product .menu_btn .inner ul li {
	max-width: 600px;
	width: 32.2581%;
	font-size: 0;
}
.product .menu_btn .inner ul li + li {
	margin-left: 1.613%;
}
.product .menu_btn .inner ul li a {
	display: inline-block;
	position: relative;
}
.product .menu_btn .inner ul li a .nam {
	position: absolute;
	top: 10px;
	left: 20px;
	font-size: 120px;
	font-weight: bold;
	font-family: "Oswald"!important;
	line-height: 1;
	color: #fff;
	text-shadow: 7px 7px 5px rgba(0,0,0,.3);
	z-index: 2;
}

.product .menu_btn .inner ul li a .txt_box {
	position: absolute;
	bottom: 20px;
	left: 20px;
	z-index: 2;
}
.product .menu_btn .inner ul li a .hiace {
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	text-shadow: 7px 7px 5px rgba(0,0,0,.3);
}
.product .menu_btn .inner ul li a h3 {
	font-size: 60px;
	font-weight: bold;
	line-height: 1;
	color: #fff;
	text-shadow: 7px 7px 5px rgba(0,0,0,.3);
}
.product .menu_btn .inner ul li a p {
	font-size: 32px;
	/*font-weight: bold;*/
	line-height: 1;
	color: #fff;
	text-shadow: 7px 7px 5px rgba(0,0,0,.3);
	margin-top: 15px;
}

.product .menu_btn .inner ul li a .img_photo {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
}
.product .menu_btn .inner ul li a .img_photo:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100%;
	z-index: 1;
}
.product .menu_btn .inner ul li.menu_center_console a .img_photo:before {
	background-color: rgba(175,70,33,.5);
}
.product .menu_btn .inner ul li.menu_bed_kit a .img_photo:before {
	background-color: rgba(0,63,107,.5);
}
.product .menu_btn .inner ul li.menu_custom_floor_mat a .img_photo:before {
	background-color: rgba(90,111,38,.5);
}
.product .menu_btn .inner ul li a .img_photo img {
	transition: .2s;
}
.product .menu_btn .inner ul li a:hover .img_photo img {
	transition: .2s;
	transform: scale(1.1);
}

@media screen and (max-width:1600px) {
	.product .menu_btn .inner {
		padding-left: 50px;
	    padding-right: 50px;
	}
	.product .menu_btn .inner ul li a h3 {
		font-size: 42px;
	}
	.product .menu_btn .inner ul li a p {
		font-size: 21px;
	}
}

@media screen and (max-width:1300px) {
	.product .menu_btn .inner ul li a .nam {
		font-size: 100px;
	}	
}


/*== 製品LINEUP｜共通 ==*/
.product_content {
	position: relative;
	z-index: 0;
}

/*head_box*/
.product_wrap .head_box {
	flex-wrap: wrap;
    justify-content: center;
	background-color: #333;
	padding-top: 100px;
    padding-bottom: 80px;
}
.product_wrap .head_box .ttl_box {
	max-width: 540px;
	width: 37.5%;
}
.product_wrap .head_box .ttl_box .nam {
	font-size: 250px;
	font-weight: bold;
	font-family: "Oswald";
	color: #fff;
	line-height: 1;
}
.product_wrap .head_box .ttl_box .txt_box {
	margin-top: 30px;
	position: relative;
	z-index: 2;
}
.product_wrap .head_box .ttl_box .txt_box .hiace {
	font-size: 36px;
	font-weight: bold;
	line-height: 1;
	padding-bottom: 20px;
	display: inline-block;
	padding-left: 30px;
	color: #fff;
}
.product_wrap .head_box .ttl_box .txt_box h3 {
	font-size: 100px;
	font-weight: 800;
	font-family: "Montserrat", sans-serif;
	white-space: nowrap;
	color: #fff;
	line-height: 1;
    padding-left: 20px;
	border-radius: 15px;
	display: inline-block;
}
.product_wrap .head_box .ttl_box .txt_box p {
	font-size: 48px;
	font-weight: bold;
	color: #fff;
	line-height: 1.2;
	margin-top: 20px;
	padding-left: 20px;
}
.product_wrap .head_box .product_box {
	max-width: 900px;
	width: 62.5%;
}
.product_wrap .head_box .product_slick .img_photo {
	border-radius: 10px;
	overflow: hidden;
}
.product_wrap .head_box .product_slick .img_photo img {
	box-shadow: 7px 7px 5px rgba(0,0,0,.3);
}
.product_wrap .head_box .variant_nav {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}
.product_wrap .head_box .slick-next,
.product_wrap .head_box .slick-prev {
	display: block;
	z-index: 999;
	position: static;
	top: auto;
	width: 50px;
	height: 50px;
	z-index: 99;
	bottom: -90px;
	transition: .2s;
	transform: translateX(0);
}
.product_wrap .head_box .slick-next {
	right: 0;
	order: 2;
}
.product_wrap .head_box .slick-prev {
	left: 0;
	order: 0;
}
.product_wrap .head_box .slick-next:before,
.product_wrap .head_box .slick-prev:before {
	content: "";
	top: 16px;
	left: 20px;
	position: absolute;
	height: 10px;
	width: 10px;
	opacity: 1;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transition: .2s;
}
.product_wrap .head_box .slick-next:before {
	transform: translateY(20%) rotate(45deg);
	left: 16px;
}
.product_wrap .head_box .slick-prev:before {
	transform: translateY(20%) rotate(-135deg);
}
.product_wrap .head_box .slick-next:hover,
.product_wrap .head_box .slick-prev:hover {
	background-color: transparent;
	transition: .2s;
}
.product_wrap .head_box .slick-next:focus,
.product_wrap .head_box .slick-prev:focus {
	background-color: transparent;
	transition: .2s;
}
.product_wrap .head_box .slick-dots {
	position: static;
	width: auto;
	display: inline-block;
	order: 1;
	height: 45px;
}
.product_wrap .head_box .slick-dots li button:before {
	content: '';
	font-size: 0;
	opacity: 1;
	background-color: #606060;
	border-radius: 3px;
}
.product_wrap .head_box .slick-dots li.slick-active button:before {
	opacity: 1;
	background-color: #fff;
}
.product_wrap .inner {
	max-width: 1440px;
	margin: 0 auto;
	padding-top: 100px;
	padding-bottom: 100px;
}

/*ストアで購入する*/
.store_buy {
    padding-top: 80px;
    padding-bottom: 80px;
    background-color: #606060;
}
.store_buy .flex_box {
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}
.store_buy .store_btn {
    text-align: center;
    max-width: 650px;
    width: 100%;
}
.store_buy .store_btn a {
    display: inline-block;
    width: 100%;
    background-color: #333333;
    padding-top: 10px;
    padding-bottom: 10px;
    border-radius: 100px;
    box-shadow: 7px 7px 5px rgba(0,0,0,.3);
    transition: .2s;
}
.store_buy .store_btn a:hover {
    box-shadow: none;
    transition: .2s;
}
.store_buy .store_btn a span {
	display: inline-block;
	width: 100%;
	color: #fff;
	line-height: 1;
	font-weight: bold;
}
.store_buy .store_btn a span.ja {
	font-size: 18px
}
.store_buy .store_btn a span.en {
	font-size: 36px;
}
.store_buy .store_btn a span.store {
	font-size: 28px;
}



/*features*/
.product_wrap .features {
	border-radius: 15px;
	padding: 50px 45px 0;
	background-color: #fff;
	border: 3px solid #333;
}
.product_wrap .features + .features {
	margin-top: 100px;
}
.product_wrap .features .features_ttl {
	padding-top: 20px;
	padding-bottom: 20px;
	border-radius: 10px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	text-align: center;
    background-color: #333;
}
.product_wrap .features .features_ttl span {
	display: inline-block;
	color: #fff;
}
.product_wrap .features .features_ttl .ja {
    font-size: 28px;
    display: block;
    line-height: 1;
}
.product_wrap .features .features_ttl .en {
    display: block;
    line-height: 1;
	font-size: 55px;
	margin-top: 5px;
}
.product_wrap .features .product_list {
	margin-top: 30px;
	flex-wrap: wrap;
}
.product_wrap .features .product_list li {
	max-width: 650px;
	width: 48.1482%;
	margin-bottom: 50px;
}
.product_wrap .features .product_list li + li {
	margin-left: 50px;
	margin-left: 3.7038%;
}
.product_wrap .features .product_list li:nth-child(2n+1) {
	margin-left: 0;
}
.product_wrap .features .product_list li .img_photo {
	font-size: 0;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 7px 7px 5px rgba(0,0,0,.3);
}
.product_wrap .features .product_list li h4 {
	margin-top: 20px;
	padding-bottom: 10px;
	font-size: 36px;
	font-weight: bold;
	color: #333;
	border-bottom: 2px solid #333;
}
.product_wrap .features .product_list li p {
	margin-top: 20px;
	font-size: 24px;
	color: #333;
}

/*line_up*/
.product_wrap .line_up {
	margin-top: 100px;
	position: relative;
}
.product_wrap .line_up .line_up_ttl {
	padding-top: 5px;
	padding-bottom: 5px;
	border-radius: 10px;
	font-size: 55px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	text-align: center;
	background-color: #333;
}
.product_wrap .line_up .line_up_ttl span {
	display: inline-block;
	color: #fff;
}
.product_wrap .line_up_box {
	margin-top: 50px;
}
.product_wrap .line_up_box .card_list {
    display: flex;
    justify-content: center;
    gap: 40px;
}
.product_wrap .line_up .slick-track {
}
.product_wrap .line_up .card {
	width: 650px;
	height: auto;
	position: relative;
	background-color: #fff;
	/*margin-right: 40px;*/
	box-shadow: 7px 7px 5px rgba(0,0,0,.3);
	padding: 20px;
	box-sizing: border-box;
	border-radius: 15px;
	border: 3px solid #333;
}
.product_wrap .line_up .card + .card {
    /*margin-left: 40px;*/
}
.product_wrap .line_up .card_list > .slick-list {
	overflow: inherit;
}
.product_wrap .line_up .card img {
	border-radius: 10px;
	overflow: hidden;
}
.product_wrap .line_up .card p {
	font-size: 21px;
	font-weight: bold;
	text-align: center;
	/*margin-top: 20px;*/
}
.product_wrap .line_up .card .variant_nav {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	margin-top: -20px;
}

.product_wrap .line_up .card h4 {
	font-size: 36px;
	font-weight: bold;
	text-align: center;
}
.product_wrap .line_up .card .more_btn {
	margin-top: 15px;
	text-align: center;
}
.product_wrap .line_up .card .more_btn a {
	display: inline-block;
	max-width: initial;
	width: 400px;
	background-color: #333;
	font-size: 24px;
	font-weight: normal;
	border: none;
	transition: .2s;
}
.product_wrap .line_up .card .more_btn a span {
	color: #fff;
}


/*矢印・大*/
.product_wrap .line_up_box .card_list > .slick-next,
.product_wrap .line_up_box .card_list > .slick-prev {
	display: block;
	z-index: 999;
	position: absolute;
	width: 75px;
	height: 75px;
	z-index: 99;
	bottom: -65px;
	transition: .2s;
}
.product_wrap .line_up_box .card_list > .slick-next {
	right: 15px;
}
.product_wrap .line_up_box .card_list > .slick-prev {
	left: 20px;
}
.product_wrap .line_up_box .card_list > .slick-next:before,
.product_wrap .line_up_box .card_list > .slick-prev:before {
	content: "";
	top: 0;
	left: 0;
	position: absolute;
	height: 50px;
	width: 50px;
	opacity: 1;
	border-top: 3px solid #333;
	border-right: 3px solid #333;
	transition: .2s;
}
.product_wrap .line_up_box .card_list > .slick-next:before {
	transform: translateY(20%) rotate(45deg);
	left: 16px;
}
.product_wrap .line_up_box .card_list > .slick-prev:before {
	transform: translateY(20%) rotate(-135deg);
}
.product_wrap .line_up_box .card_list > .slick-next:hover,
.product_wrap .line_up_box .card_list > .slick-prev:hover {
	background-color: transparent;
	transition: .2s;
}
.product_wrap .line_up_box .card_list > .slick-next:focus,
.product_wrap .line_up_box .card_list > .slick-prev:focus {
	background-color: transparent;
	transition: .2s;
}

/*矢印・小*/
.product_wrap .line_up .card .slick-next,
.product_wrap .line_up .card .slick-prev {
	display: block;
	z-index: 999;
	position: static;
	width: 50px;
	height: 50px;
	z-index: 99;
	transition: .2s;
	transform: translate(0);
}
.product_wrap .line_up .card .slick-next {
	right: 0;
}
.product_wrap .line_up .card .slick-prev {
	left: 0;
}
.product_wrap .line_up .card .slick-next:before,
.product_wrap .line_up .card .slick-prev:before {
	content: "";
	top: 16px;
	left: 20px;
	position: absolute;
	height: 10px;
	width: 10px;
	opacity: 1;
	border-top: 3px solid #333;
	border-right: 3px solid #333;
	transition: .2s;
}
.product_wrap .line_up .card .slick-next:before {
	transform: translateY(20%) rotate(45deg);
	left: 16px;
}
.product_wrap .line_up .card .slick-prev:before {
	transform: translateY(20%) rotate(-135deg);
}
.product_wrap .line_up .card .slick-next:hover,
.product_wrap .line_up .card .slick-prev:hover {
	background-color: transparent;
	transition: .2s;
}
.product_wrap .line_up .card .slick-next:focus,
.product_wrap .line_up .card .slick-prev:focus {
	background-color: transparent;
	transition: .2s;
}
.product_wrap .line_up .card .slick-dots {
	position: static;
	display: inline-block;
	width: auto;
	height: 45px;
}
.product_wrap .line_up .card .slick-dots li button:before {
	content: '';
	font-size: 0;
	opacity: 1;
	background-color: #c9c9c9;
	border-radius: 3px;
}
.product_wrap .line_up .card .slick-dots li.slick-active button:before {
	background-color: #333;
	opacity: 1;
}
.product_wrap .line_up .card .variant_nav .slick-prev {
	order: 0;
}
.product_wrap .line_up .card .variant_nav .slick-dots {
	order: 1;
}
.product_wrap .line_up .card .variant_nav .slick-next{
	order: 2;
}


/*取付動画*/
.product_wrap .movie {
	margin-top: 100px;
}
.product_wrap .movie .movie_ttl {
	padding-top: 5px;
	padding-bottom: 5px;
	border-radius: 10px;
	font-size: 55px;
	font-weight: bold;
	font-family: "Montserrat", sans-serif;
	text-align: center;
	background-color: #333;
}
.product_wrap .movie .movie_ttl span {
	display: inline-block;
	color: #fff;
}
.product_wrap .movie_box {
	max-width: 1000px;
	margin: 0 auto;
}
.product_wrap .movie .iframe {
	width: 100%;
	margin-top: 50px;
	border-radius: 15px;
	overflow: hidden;
	font-size: 0;
	box-shadow: 7px 7px 7px rgba(0, 0, 0, .3);
}
.product_wrap .movie .iframe a img {
	transition: .5s;
}
.product_wrap .movie .iframe a:hover img {
	transform: scale(1.05);
	transition: .5s;
}

.product_wrap .movie .times {
	font-size: 28px;
	font-weight: bold;
	line-height: 1;
	margin-top: 10px;
	display: inline-block;
	padding-left: 37px;
	position: relative;
}
.product_wrap .movie .times:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(../images/common/pc/item_times.svg);
	background-repeat: no-repeat;
	background-size: 30px;
	width: 30px;
	height: 30px;
}

/*ループ*/
.product_wrap .loop_box {}


/*== センターコンソール ==*/


/*== ベットキット ==*/


/*== カスタムフロアマット ==*/



@media screen and (max-width:1600px) {
	.product_wrap .inner {
		padding-top: 80px;
		padding-bottom: 80px;
		padding-left: 5%;
		padding-right: 5%;
	}
	/*head_box*/
	.product_wrap .head_box .product_box {
		max-width: 750px;
	}
	.product_wrap .head_box .ttl_box .nam {
		font-size: 200px;
	}
	.product_wrap .head_box .ttl_box .txt_box h3 {
		font-size: 80px;
	}
	.product_wrap .head_box .ttl_box .txt_box p {
		font-size: 36px;
	}
	/*txt_box*/
	.product_wrap .txt_box .inner_box h4 {
		font-size: 42px;
	}
	/*features*/
	.product_wrap .features .features_ttl .ja {
	}
	.product_wrap .features .features_ttl .en {
		font-size: 48px;
	}
	.product_wrap .features .product_list li h4 {
		font-size: 32px;
		line-height: 1.5;
	}
	/*line_up*/
	.product_wrap .line_up .card {
	    width: 50%;
	}
	.product_wrap .line_up .line_up_ttl {
		font-size: 48px;
	}
	.product_wrap .line_up .card h4 {
		font-size: 32px;
	}
	/*取付動画*/
	.product_wrap .movie .movie_ttl {
		font-size: 48px;
	}
}

@media screen and (max-width:1300px) {

	/*features*/
	.product_wrap .features {
		margin-top: 50px;
	}
	.product_wrap .features .product_list li:nth-child(1) {
		margin-bottom: 35px;
	}
	/*.product_wrap .features .product_list li h4 {
		font-size: 28px;
	}*/
	.product_wrap .features .product_list li p {
		font-size: 21px;
		margin-top: 15px;
	}
	/*line_up*/
	/*取付動画*/
}



/*== ハイエースを自分らしくしたいすべての人へ ==*/
.be_yourself {
	padding-top: 100px;
	padding-bottom: 100px;
	position: relative;
	clip-path: inset(0);
	z-index: -1;
}
.be_yourself img {
	object-fit: cover;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -99;
    filter: grayscale(1); 
}
.be_yourself .inner {
	padding-left: 100px;
	padding-right: 100px;
}
.be_yourself h3 {
	font-size: 48px;
	font-weight: bold;
	color: #fff;
	text-shadow: 3px 3px 5px rgba(0, 0, 0, .3);
}
.be_yourself p {
	font-size: 28px;
	line-height: 2.5;
	color: #fff;
	margin-top: 30px;
	text-shadow: 3px 3px 5px rgba(0, 0, 0, .3);
}

@media screen and (max-width:1300px) {
	.be_yourself .inner {
		padding-left: 80px;
	}
}


/*===================
  会社概要
====================*/
/*== kv ==*/
.kv_company {
	position: relative;
	z-index: 0;
	background-image: url(../images/common/pc/bk_c.svg);
}
.kv_company:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background-repeat: repeat;
	width: 200px;
	height: 200px;
	z-index: 1;
}
.kv_company .inner {
	padding: 60px;
	box-sizing: border-box;
	position: relative;
}
.kv_company .inner img {
	border-radius: 30px;
	position: relative;
	z-index: 2;
}
.kv_company h2 {
	max-width: 280px;
	width: 14.5834%;
	position: absolute;
	top: 200px;
	top: 30%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 0;
	z-index: 3;
}
.kv_company p {
	text-align: center;
	position: absolute;
	z-index: 3;
	top: 380px;
	top: 52%;
	left: 50%;
	transform: translateX(-50%);
	/*font-size: 24px;*/
	/*font-size: 1.25vw;*/
	font-size: 36px;
	font-weight: bold;
	line-height: 2.125;
	color: #fff;
	width: 100%;
}

@media screen and (max-width:1600px) {
	.kv_company .inner {
		padding: 50px;
	}
	.kv_company p {
	}  
}
@media screen and (max-width:1300px) {
	.kv_company p {
		font-size: 28px;
	}
}

/*== greeting ==*/
.greeting {
	padding-top: 100px;
	padding-bottom: 100px;
	background-image: url(../images/common/pc/bk_c.svg);
}
.greeting .inner {
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 0;
}
.greeting .inner:before {
	content: "";
	position: absolute;
	top: 100px;
	right: -120px;
	background-image: url(../images/company/pc/greeting.svg);
	background-repeat: no-repeat;
	background-size: 695px;
	width: 695px;
	height: 245px;
	z-index: -1;
}
.greeting p {
	font-size: 24px;
}
.name_box {
	display: flex;
	justify-content: end;
	align-items: center;
	margin-top: 30px;
}
.name_box .rep {
	font-size: 21px;
	margin-right: 20px;
}
.name_box .name {
	width: 250px;
	font-size: 0;
}

@media screen and (max-width:1600px) {
	.greeting .inner {
		padding-left: 5%;
		padding-right: 5%;
		box-sizing: border-box;
		max-width: initial;
	}
	.greeting p {
		font-size: 21px;
	}
	.greeting .inner:before {
		right: 100px;
		background-size: 500px;
		width: 500px;
		height: 185px;
	}
}

@media screen and (max-width:1300px) {
	.greeting {
	    padding-top: 80px;
	    padding-bottom: 80px;
	}
}

/*== company ==*/
.company {
	padding-top: 100px;
	padding-bottom: 100px;
}
.company .inner {
	max-width: 1200px;
	margin: 0 auto;
}
.company h3 {
	padding-top: 30px;
    padding-bottom: 30px;
    border-radius: 10px;
    background-color: #333;
}
.company h3 span {
	display: block;
	font-size: 55px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	text-align: center;
}
.company_info {
	margin-top: 60px;
}
.company_info dl {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid #333;
	padding: 30px 20px;
	box-sizing: border-box;
}

.company_info dl dt {
	font-size: 21px;
	font-weight: bold;
	width: 25%;
}
.company_info dl dd {
	font-size: 18px;
	width: 75%;
}

.company_info dl dd img.e-mail {
	width: auto;
	height: 39px;
}

@media screen and (max-width:1600px) {
	.company .inner {
		padding-left: 5%;
		padding-right: 5%;
		box-sizing: border-box;
		max-width: initial;
	}
}

@media screen and (max-width:1300px) {
	.company {
	    padding-top: 80px;
	    padding-bottom: 80px;
	}
	

}

/*===================
  お問い合わせ
====================*/
.contact {
	max-width: 1200px;
	margin: 0 auto;
	padding-top: 230px;
	padding-bottom: 100px;
}
.contact h3 {
    padding-top: 25px;
    padding-bottom: 30px;
    border-radius: 10px;
    background-color: #333;
}
.contact h3 span {
	display: block;
	font-size: 55px;
	font-weight: 800;
	color: #fff;
	line-height: 1;
	text-align: center;
}
.contact .contact_txt {
	margin-top: 50px;
	text-align: center;
	font-size: 18px;
	margin-bottom: 70px;
}
.contact .contact_txt a {
	text-decoration: underline;
}

/*お問い合わせフォーム*/
.formTable {
	width: 100%;
	margin: 0 auto;
	padding-left: 150px;
	padding-right: 150px;
	background-image: url(../images/common/pc/bk_c.svg);
	padding-bottom: 50px;
	box-sizing: border-box;
	border-radius: 15px;
}

.formTable .textarea dt {
	padding: 30px 20px 0 0;
	vertical-align: top;
}

.formTable dd {
	width: 100%;
	padding-top: 0;
}
.formTable dt {
	font-weight:normal;
	text-align: left;
	border: none;
	padding: 38px 20px 0 0;
	box-sizing: border-box;
}
.formTable dt .required {
	margin-left: 10px;
	background-color: #FF0000;
	padding: 2px 10px 5px;
	font-size: 14px;
	color: #fff;
	border-radius: 3px;
}
.formTable dd .record_area {
	padding: 10px 13px;
	border: 1px solid #ddd;
	color: #333;
	width: 100%;
	box-sizing: border-box;
	border-radius: 6px;
	margin-top: 10px;
	height: 48px;
	font-size: 16px;
	padding-left: 15px;
	background-color: #fff;
}
.formTable .textarea dd .record_area {
	height: 230px;
}
.formTable dd .record_area:focus {
	outline: none;
}
input[type="submit"] {
	padding: 0;
	transition: .3s;
	cursor: pointer;
	background-color: #fff; 
	color: #333;
	border: 1px solid #333;
	width: 280px;
	height: 70px;
	line-height: 70px;
	font-size: 21px;
	font-weight: bold;
	border-radius: 50px;
	-webkit-appearance: none;
}
input[type="submit"]:hover {
	/*background-color: #eaeaea;*/
}
input[type="button"] {
	padding: 0;
	border: 1px solid #999;
	transition: .3s;
	cursor: pointer;
	 background-color: #999; 
	color: #fff;
	width: 255px;
	height: 65px;
	font-size: 18px;
	border-radius: 50px;
	-webkit-appearance: none;
}
input[type="button"]:hover {
	background-color: #444;
}
input[type="reset"] {
	padding: 10px 25px;
	margin-left: 20px;
	border: 1px solid #ddd;
	cursor: pointer;
	margin-left: 20px;
	border-radius: 50px;
	-webkit-appearance: none;
}
input[type="reset"]:hover {
	background-color: #dfdfdf;	
	transition: .5s;
}
@keyframes onAutoFillStart { from {} to {}}
input:-webkit-autofill {
	animation-name: onAutoFillStart;
	transition: background-color 50000s ease-in-out 0s;
}

@media screen and (max-width:1600px) {
	.contact {
		max-width: initial;
		padding-left: 5%;
		padding-right: 5%;
		box-sizing: border-box;
	}
}

/*プライバシーポリシー*/
#formWrap .privacy_txt {
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
	font-size: 16px;
	margin-top: 50px;
}
#formWrap .termsBox {
	max-width: 750px;
	width: 100%;
	margin: 0 auto;
	height: 250px;
	overflow-y: scroll;
	background-color: #fff;
	border: 1px solid #acadae;
	padding: 15px 10px;
	box-sizing: border-box;
	margin-top: 0px;
}
#formWrap .termsBox .scrollWrap dl + dl {
	padding-top: 15px;
}
#formWrap .termsBox .scrollWrap dl dt {
	font-size: 24px;
}
#formWrap .termsBox .scrollWrap dl dd {
	padding-top: 8px;
	font-size: 18px;
	line-height: 1.75;
	padding-left: 5px;
}

#formWrap .form_btn {
	text-align: center;
	margin-top: 50px;
}


/*== 確認 ==*/
table.formTable {
    display: block;
}
table.formTable tbody {
    display: block;
}
#formWrap .formTable tr {
	display: block;
	width: 100%;
	flex-wrap: wrap;
	margin: 0 auto;
}
#formWrap .formTable th {
	text-align: left;
	font-weight: normal;
	border: none;
	padding: 20px 0 0;
	box-sizing: border-box;
}
#formWrap .formTable td {
	padding: 10px 13px!important;
	border: 1px solid #ddd;
	border-radius: 5px;
	color: #333;
	background-color: #fff;
	box-sizing: border-box;
	display: block;
	min-height: 48px;
}
#formWrap .formTable tr:last-child td {
	min-height: 230px;
}
input[type="button"] {
	margin-left: 20px;
}
.error_box input[type="button"] {
	margin-left: 0;
}
.error_h4 {
	font-size: 18px;
    padding-top: 30px;
    padding-bottom: 30px;
    text-align: center;
}
.error_h4 .error_txt {
	color: #f01;
	font-weight: bold;
}
.messe_box {
}
.error_messe {
	line-height: 48px;
}
.error_messe dt {
	text-align: left;
	border: none;
	box-sizing: border-box;
}
.error_messe dt .required {
    margin-left: 10px;
    background-color: #FF0000;
    padding: 2px 10px 5px;
    font-size: 14px;
    color: #fff;
    border-radius: 3px;
}
.error_messe dd {
	width: 100%;
	padding-top: 0;
	border: 1px solid #ddd;
	color: #888;
	width: 100%;
	box-sizing: border-box;
	border-radius: 6px;
	height: 48px;
	font-size: 16px;
	padding-left: 15px;
	background-color: #fff;
	text-align: left;
}
.error_messe:last-child dd {
}

@media screen and (max-width:1024px) {
	#formWrap .formTable tbody tr +tr {
		padding-top: 0;
	}
	#formWrap .formTable tbody tr th {
		max-width: initial;
		padding-bottom: 0px;
		padding-top: 20px;
	}
	#formWrap .formTable tbody tr td {
		margin: 0 auto;
		width: 100%;
	}
}

@media screen and (max-width:599px) {
	input[type="button"] {
		margin: 0 auto;
	}
	input[type="submit"] {
		margin-bottom: 30px;
	}
}


/*== thanks ==*/
.thanks .tanks_ttl {
	font-size: 48px;
	font-weight: bold;
	text-align: center;
}
.thanks .tanks_txt {
	text-align: center;
	margin-top: 50px;
	font-size: 24px;
}
.thanks .top_back {
	margin-top: 80px;
	text-align: center;
	font-size: 24px;
	text-decoration: underline;
}
