@charset "UTF-8";

/*--------------------------------------------------------------

reset.css
リセット関係・clearfixなど

common.css
上記cssのimport、レイアウト（大枠）を記載したcss

sub.css
下層のレイアウト（大枠）を記載したcss

--------------------------------------------------------------*/
/* fontIcon 
:before,
:after {
	content: "\f099";
	font-family: "icomoon";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
  }

/* ------------------------------------------------------------ */
/* 全デバイス幅共通：基本・レイアウト指定 */
/* ------------------------------------------------------------ */

* html body {
	background: url(null) fixed;
}

*,
*:before,
*:after {
	box-sizing: border-box;
}

body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	font-size: 16px;
 *font-size: small;
 *font: x-small;
	line-height: 1.5;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
	-webkit-text-size-adjust: 100%; /*レスポンシブのとき*/
}

html {
	overflow-x: hidden;
}

.sp {
	display: none;
}

/* ------------------------------------------------------------ */
/* リンク色 */
/* ------------------------------------------------------------ */
::selection {
	background: rgba(0, 0, 0, .1);
	color: #5cabdc;
}

::-moz-selection {
 background: rgba(0, 0, 0, .1);
 color: #5cabdc;
}

a {
	color: #000;
	cursor: pointer;
	line-height: inherit;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	text-decoration: none;
}

/* PCで電話番号リンクを無効に */
a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	color: #ec6817;
	text-decoration: none;
}

a:active {
	color: #ec6817;
	text-decoration: none;
}

/* ------------------------------------------------------------ */
/* font */
/* ------------------------------------------------------------ */

.gNav li a,
h3,
p.btn a,
.en {
	font-family: din-condensed, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.03em;
}

h4,
.base p.txt,
.base p.add,
.min {
	font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
	letter-spacing: 0.08em;
	font-weight: normal;
	line-height: 1.7;
}

/* ------------------------------------------------------------ */
/* 画像 */
/* ------------------------------------------------------------ */
img {
	max-width: 100%;
	height: auto;
	margin: 0 auto;
}
a img {
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

a:hover img {
	opacity: .7;
}

.logo img,
.thum img,
.image img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/* ------------------------------------------------------------ */
/* float */
/* ------------------------------------------------------------ */

.floatL {
	float: left;
	margin: 0 1em 1em 0;
}

.floatR {
	float: right;
	margin: 0 0 1em 1em;
}

/* ------------------------------------------------------------ */
/* 全体格納 */
/* ------------------------------------------------------------ */
.wrapper {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.inner {
	width: 95%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	clear: both;
}

.inner::after {
	content: "";
	clear: both;
	display: block;
}

.content {
	display: block;
	height: auto;
}

.blk {
	background: #2c2c2c;
}

/* ------------------------------------------------------------ */
/* ヘッダー */
/* ------------------------------------------------------------ */
header {
	width: 100%;
	margin: 0 auto;
	background: #000;
	position: relative;
	/*position: fixed;
	top: 0;
	left: 0;*/
	z-index: 9999;
	-webkit-transition: all .5s;
	transition: all .5s;
}

/* ------------------------------------------------------------ */
/* グローバルナビ */
/* ------------------------------------------------------------ */


header .inner {
    display: table;
}

header .inner h1.nav-logo  {
    width: 20%;
	max-width: 350px;
	display: table-cell;
	vertical-align: middle;
}

header .inner h1.nav-logo a {
    display: block;
    padding: 10px 0;
}

.gNav {
	width: 100%;
	vertical-align: middle;
	background: #000;
	color: #fff;
	display: table-cell;
	/*padding: 50px 0;*/
	padding: 15px 0;
	transition: all .5s;
}

.gNav ul {
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-wrap: nowrap;
	position: relative;
	z-index: 1;
}

.gNav li {
	margin: 0 5px;
	position: relative;
}

.gNav li a {
	display: inline-block;
	color: #fff;
	font-size: 24px;
	padding: 5px 10px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.gNav li a::after {
	content: '';
	position: absolute;
	background: #000;
	height: 1px;
	width: 90px;
	top: 50%;
	left: 50%;
	-webkit-transform: rotate(135deg);
	transform: translateX(-50%)translateY(-50%)rotate(135deg);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	z-index: -1;
}

.gNav li a:hover::after {
	background: #ec6817;
	z-index: -1;
}

.gNav li a span {
	font-size: 11px;
	display: block;
}

header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

header.is-fixed .gNav {
    padding: 15px 0;
}


header .inner h1.nav-logo {
	display: none;
}

.gNav ul {
	justify-content: space-around;
}

/* ------------------------------------------------------------ */
/* メインビジュアル */
/* ------------------------------------------------------------ */

.main-visual {
	border-bottom: 5px solid #ec6817;
	z-index: 1;
	position: relative;
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	background: url("../img/top-mv.png") no-repeat center center / cover;
}
.renew202204 .main-visual {
  background: none;
} 
.main-visual::after {
	content:'';
	display:block;
	padding-bottom: 55%;
}
.main-visual .bg-img {
	width: 70%;
	position: absolute;
	top: 50%;
	left:50%;
	transform:translate(-50%,-50%);
/*
	background: url("../img/img-mainvisual04.png") no-repeat;
	background-size: cover;
*/
	z-index: 2;
}

.main-visual .bg-img h1.main-logo {
	width: 55%;
	margin: 0 auto;
	position: relative;
	z-index: 1;
	background: rgb(0 0 0 / 19%);
    padding: 1em 1.5em;
    border: 3px solid rgba(255,255,255,.7);
}

.main-visual .bg-img p.sub-logo {
	width: 25%;
	margin: 0 auto;
	padding-bottom: 70px;
	position: relative;
	z-index: 1;
}

.main-visual .bg-img img {
	width: 100%;
}

.main-visual::before {
	content: '';
	background: rgba(0,0,0,.5);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index: 1;
}

.main-visual .bg img {
	width: 100%;
}

.renew202204 .main-visual::after {
     padding-bottom: 0; 
}

.renew202204 .main-visual .myswiper .swiper-slide img {
  width: 100%;
}

.renew202204 .main-visual::before {
	z-index: 2;
}
/* ------------------------------------------------------------ */
/* コンテンツ共通 */
/* ------------------------------------------------------------ */
h3 {
	font-size: 45px;
	margin-bottom: 20px;
	line-height: 1.2;
}

h3:first-letter {
	color: #ec6817;
}

h4 {
	font-size: 22px;
	margin-bottom: 20px;
}

.base p.txt {
	font-size: 14px;
	margin-bottom: 50px;
}

.base p.add {
	font-size: 12px;
	padding: 30px 0;
}

p.btn a {
	display: inline-block;
	text-align: center;
	color: #fff;
	font-size: 20px;
	width: 50%;
	padding: 10px;
	border-radius: 40px;
	border: 2px solid #ec6817;
}

p.btn a:hover {
	background: #ec6817;
}

.base {
	color: #fff;
	position: relative;
}

.base .item-r {
	margin-left: 50%;
	padding: 6% 0 6% 40px;
	
}

.base .item-l {
	margin-right: 50%;
	padding: 6% 40px 6% 0;
}

.base .thum {
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.base .thum.right {
	right: 0;
	left: auto;
}

.base .twentytwenty-container.pcOnly {
	width: 50%;
	height: 100%!important;
	position: absolute;
	right: 0;
	top: 0;
	overflow: hidden;
	background: #000;
}

.base .twentytwenty-container.spOnly {
	display: none;
}

.base .twentytwenty-container.pcOnly img {
	width: 100%;
	height: auto;
	top: 50%;
	transform: translateY(-50%);
}

#detail01 .thum {
	background: #000 url("../img/img-concept.png") no-repeat center;
	background-size: auto 100%;
}

/*#detail02 .thum {
    background: url("../img/img-base02.png") no-repeat center;
    background-size: cover;
}
*/
#detail03 .thum {
	background: url("../img/img-fas.png") no-repeat center;
	background-size: cover;
}

#detail04 .thum {
	background: url("../img/gallery/YOSHINOGATEWAY_046.jpg") no-repeat left;
	background-size: cover;
}

.base .thum img {
	height: 100%;
}

.order {
	background: #fff;
	text-align: center;
	padding: 50px 0;
}

.order h3 {
	color: #ec6817;
	margin-bottom: 50px;
}

.order h3 span {
	font-size: 14px;
	display: block;
	font-weight: 600;
}

.order p.btn a {
	color: #ec6817;
	font-size: 16px;
	font-weight: 600;
	padding: 15px;
	width: 30%;
}

.order p.btn a:hover {
	color: #fff;
}

.order p.txt {
	font-size: 14px;
	padding: 30px 0;
}

.order ul {
    max-width: 1000px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}

.order li {
    width: calc(100%/4);
    text-align: center;
    padding: 0 5px;
    position: relative;
    margin-bottom: 20px;
}

.order li::after {
    content: '▶︎';
    color: #4b4b4b;
    position: absolute;
    font-size: 16px;
    top: 50px;
    right: 0;
}

.order li:last-of-type::after {
    display: none;
}

.order li p {
    font-size: 16px;
    color: #ec6817;
    font-weight: 600;
    padding-top: 10px;
}

.order li p span {
    display: block;
    color: #4b4b4b;
    font-weight: normal;
    font-size: 12px;
    padding-top: 5px;
}

.order li img {
    width: 60%;
}

.price-table {
	margin: 0 auto 2em;
}
.price-table table {
	border: 1px solid #cfcfcf;
	width: 100%;
	margin: 0 auto 1em;
}
.price-table tr:nth-of-type(odd) {
	background: #e9e9e9;
}
.price-table td,
.price-table th {
	border: 1px solid #cfcfcf;
	padding: .5em;
	letter-spacing: .075em;
	vertical-align: middle;
}
.price-table th {
	background: #2c2c2c;
	color: #fff;
}
.price-table .caption {
	text-align: right;
	font-size: 14px;
}

.sample_box {
	display: flex;
	width: 100%;
	max-width: 860px;
    justify-content: space-around;
    margin: 0 auto 2em;
/*    align-items: center;*/
}
.sample_box .sample_item {
	width: 27%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.sample_box .sample_item img {
	max-width: 100%;
	height: auto;
}
.sample_box .sample_item p {
	padding-top: 10px;
	font-size: 14px;
}
.col_box {
	display: flex;
	justify-content: space-between;
	flex-wrap:wrap;
}
.col_box .col_item {
	width: 48%;
	border:2px solid #000;
	
}
.col_box .col_item a {
	position:relative;
	display:block;
}
.col_box .col_item a::before {
	position:absolute;
	content:'';
	display:block;
	width:100%;
	height:100%;
	background:rgba(0,0,0,0);
	top:0;
	left:0;
	z-index:1;
	transition: all .3s;
}
.col_box .col_item a:hover {
	opacity:1;
}
.col_box .col_item a:hover::before {
	background:rgba(0,0,0,.6);
}
.col_box .col_item a::after {
	content:'クリックしてPDFを開く';
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	color:#fff;
	z-index:2;
}
.col_box .col_item img {
	max-width: 100%;
}
/* ------------------------------------------------------------ */
/* フッター */
/* ------------------------------------------------------------ */
footer {
	background: #000;
	color: #fff;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 40px 0;
	position: relative;
	z-index: 9998;
}

footer .inner {
	display: table;
}

footer .ft-logo,
footer .ftNav {
	display: table-cell;
	vertical-align: middle;
}

footer .ft-logo {
	width: 35%;
}

footer .ft-logo .logo {
	padding: 5px 0;
}

footer .ft-logo a {
	display: block;
    width: 50%;
    float: left;
    padding:5%;
}

footer .ft-logo a.dinosaur {
    padding: 0 2%;
}

footer .ft-logo p {
    font-size: 12px;
    padding: 0 5%;
}

footer .ftNav ul {
	display: flex;
	justify-content: flex-end;
	align-content: flex-end;
	margin-bottom: 30px;
}

footer .ftNav li a {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	margin-right: 20px;
}

footer .ftNav li a:hover {
	color: #000;
}

footer .ftNav li:last-of-type a {
	margin-right: 0;
}

footer .ftNav p.copy {
	text-align: right;
	font-size: 9px;
}

@media screen and (max-width: 1400px) {
/* 1400px以下用の記述 */
}

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

/* 1079px以下用（タブレット用）の記述 */

}

@media screen and (max-width: 1023px) {
/* 1023px以下用（タブレット用）の記述 */

.pc {
	display: none!important;
}

.sp {
	display: block;
}

/* 電話番号リンクを有効に */
a[href*="tel:"] {
	pointer-events: auto;
	cursor: pointer;
}


/* ------------------------------------------------------------ */	
/* ナビボタン */
    
header h1 {
	width: 150px;
	padding: 10px;
}
	header h1 img {
		max-width: 100%;
		height: auto;
	}
    
.sb-toggle-right {
	width: 35px;
	height: 25px;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

#spBtn {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	outline: none;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 999;
}

#spBtn span {
	display: inline-block;
	width: 100%;
	height: 3px;
	background: #ec6817;
	position: absolute;
	left: 0;
	transition: all .4s;
}

#spBtn span:nth-of-type(1) {
	top: 0;
}

#spBtn span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}

#spBtn span:nth-of-type(3) {
	bottom: 0;
}

.sb-active #spBtn span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}

.sb-active #spBtn span:nth-of-type(2) {
	opacity: 0;
}

.sb-active #spBtn span:nth-of-type(3) {
	-webkit-transform: translateY(-12px) rotate(45deg);
	transform: translateY(-12px) rotate(45deg);
}

/* ------------------------------------------------------------ */
/* ドロワーナビ */
/* ------------------------------------------------------------ */

.sbNav {
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	background: #ec6817;
	box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
}

.sb-right-inner {
	width: 100%;
	height: 100%;
	padding: 0 10px;
}

.sb-right-inner .sp-logo {
	width: 100%;
	height: auto;
	max-width: none;
	max-height: none;
	padding: 20px 10px;
}
    
.sb-right-inner .sp-logo a {
    display: block;
}

.sb-right-inner .sp-logo img {
	width: 100%;
}

.drawrNav {
	width: 100%;
	height: auto;
	margin: 0 auto 30px;
}

.drawrNav ul {
	width: 100%;
	height: auto;
}

.drawrNav li {
	margin: 0 auto;
	width: 100%;
	text-align: left;
}

.drawrNav li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 15px 8px;
	color: #fff;
	border-bottom: 1px solid #fff;
	font-size: 25px;
}

.drawrNav li a span {
	display: block;
	font-size: 12px;
}
    
.drawrNav p.btn {
    text-align: center;
    margin: 30px auto 20px;
}

.drawrNav p.btn a {
    border: 2px solid #fff;
    font-size: 15px;
    width: 95%;
    padding: 10px 5px;
    background: #fff;
    color: #ec6817;
    font-weight: 600;
}
	
.drawrNav p.btn.fb a {
  font-size: 1.6rem;
}	

/* ------------------------------------------------------------ */
/* 全体格納 */
/* ------------------------------------------------------------ */
.inner {
	max-width: 95%;
	padding: 0;
}

h3 {
	font-size: 40px;
}

h4 {
	font-size: 20px;
}

p.btn a {
	width: 200px;
	padding: 5px;
	font-size: 18px;
}
.order li p {
	font-size: 13px;
	}
.order p.btn a {
	font-size: 14px;
	width: 280px;
	padding: 10px;
}
.price-table table {
		font-size: 14px;
	}	

footer {
    padding: 30px 0 15px;
}
    
footer .ft-logo, footer .ftNav {
    display: block;
}

footer .ft-logo {
    width: 60%;
    margin: 0 auto 30px;
}
	footer .ft-logo .logo {
		display: flex;
		justify-content: center;
	}
    
footer .ft-logo p {
    text-align: center;
}
    
footer .ftNav p.copy {
    text-align: center;
}
}

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

/* 767px以下用（タブレット／スマートフォン用）の記述 */
.main-visual .bg-img {
	width: 100%;
}

.base .item-r,
.base .item-l {
	margin-left: 0;
	margin-right: 0;
	padding: 40px 5px;
}

.base .thum,
.base .thum.right {
	width: 100%;
	position: unset;
	height: 350px;
}

.base .twentytwenty-container.pcOnly {
	display: none;
}

.base .twentytwenty-container.spOnly {
	display: block;
}

#detail02.base .twentytwenty-container {
	width: 100%;
	position: relative;
	height: auto;
}

.base .twentytwenty-container img {
	height: auto;
	width: 100%!important;
}

.base p.btn {
	text-align: center;
}
    
.order li {
    width: calc(100%/2);
}
    
.order li:nth-of-type(2n)::after {
    display: none;
}
	.price-table {
		position: relative;
	}
	.price-table .table-container {
		
		overflow-x: scroll;
	}
	.price-table::before {
		content: 'スワイプで全体をご覧いただけます';
		display: block;
		font-size: 12px;
		text-align: left;
		margin: 0 auto 5px;
		font-weight: bold;
		color: #707070;
	}
	.price-table table {
		font-size: 14px;
		min-width: 700px;
	}
}

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

/* 479px以下用（スマートフォン用）の記述 */
h3 {
	font-size: 35px;
	margin-bottom: 10px;
}

h4 {
	font-size: 18px;
}
	.main-visual::after {
		padding-bottom: 70%;
	}    
.main-visual .bg-img p.sub-logo {
    width: 30%;
}

.base p.txt {
	margin-bottom: 20px;
}

.base .thum,
.base .thum.right {
	height: 250px;
}
    
.order li {
    width: calc(100%/2);
}
    
.order li:nth-of-type(3n)::after {
    display: block;
}
    
.order li:nth-of-type(2n)::after {
    display: none;
}
	.sample_box {
		flex-wrap: wrap;
	}
	.sample_box .sample_item {
		width: 50%;
		padding: 0 1em;
		margin-bottom: 1em;
	}
	.sample_box .sample_item:last-of-type {
		width: 100%;
		margin: 0;
		display: block;
	}
	.sample_box .sample_item:last-of-type img {
		float: left;
		width: 50%;
	}
	.col_box .col_item {
		width:100%;
	}
	.col_box .col_item:first-of-type {
		margin-bottom:1em;
	}
footer .ft-logo {
    width: 80%;
}
}

@media screen and (max-width: 360px) {
/* 360px以下用（スマートフォン用）の記述 */

	
}
