﻿@charset "UTF-8";
/* CSS Document */

/*++++++++++++++++++++++++++++++++++++++++++++++++

Desighed ＆ Direction , Construction By BECK INC.
https://www.beck-dx.com

+++++++++++++++++++++++++++++++++++++++++++++++++*/


/*↓common CSS ↓ */
html{overflow-x:hidden; max-width:100%;}
body{ margin:0; padding:0;background:#f8f4e1;/*#f7f6f3*/ overflow-x:hidden; max-width:100%; box-sizing:content-box; -webkit-text-size-adjust: 100%;}

*{ font-family: "YakuHanJPs", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;}

::selection
{background: #000000;color: #ffffff;}
/* for Firefox */
::-moz-selection
{background: #000000;color: #ffffff;}

a{
	text-decoration:none;
}

input[type="button"],input[type="text"],input[type="submit"],input[type="image"],textarea{
   -webkit-appearance: none;
   border-radius: 0;
}
/*↑common CSS ↑ */


/*↓ローディング ↓ */
#logo_loader {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 101;
    background-color: #ece7d4;
}
#logo_loader .f_logo {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 300px;
    height: 150px;
    text-align: center;
    color: #fff;
    font-size: 30px;
}
#logo_loader .f_logo img {
    width: 100%;
    height: auto;
}

#logo_loader .f_logo:before {
    content: "";
    display: block;
    width: 100%;
    height: 110%;
    background-color: #ece7d4;
    position: absolute;
    top: 0;
    left: 100%;
    animation: loadLogo 1.5s;
}
@keyframes loadLogo {
  0% {
    left: 0;
  }
  50% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}

#logo_loader .f_logo:before {
    animation: loadLogo 1.5s;
}

#logo_loader.open {
    animation-name: slideOut;
    animation-fill-mode: forwards;
    animation-duration: 2s;
    animation-delay: 3s;
}

@keyframes slideOut {
  0% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(0%);
  }
  95% {
    opacity: 20%;
  }
  100% {
    transform: translateX(100%) ;
  }
}




/*↓header ↓ */
header.h-common{
	width:100%;
	position:fixed;
	background:#fff;
	padding:5px 0;
	box-shadow: 0px 5px 8px 0px rgba(231,231,231,0.6);
	z-index:99;
}
header.h-common h1{
	display:none;
}

.h-common .logo{
	padding:0;
	text-align:left;
}

.h-common .logo img{
	width:200px;
	padding-left:3%;
	padding-top:7px;
}
.h-common .fnc ul{
	margin:0;
	display:block;
	padding:0;
	position:absolute;
	left:60%;
	top:20px;
}
.h-common .fnc li{
	float:left;
	font-size:80%;
	color:#000;
	list-style:none;
	letter-spacing:3px;
}
.h-common .fnc li a{
	color:#000;
}
.h-common .fnc li:hover{
	color:#C00;
}

/* 検索BOXの処理 */
#search-gr {
 padding:3px 0;
 margin-bottom:10px;
 position:absolute;
 top:15px;
 right:1%;
 width:25%;
}
#search-gr .text {
 width:70%;
 height:30px;
 text-indent:10px;
 font-size:12px;
 letter-spacing:1.5px;
 color:#333;
 border:none;
 background:none;
 border-bottom:1px solid #333;
}
#search-gr .btn {
 height:18px;
 width:40px;
 text-indent:-9999px;
 background:url("https://www.rakuten.ne.jp/gold/e-8783/beck/interior-green/img/search-icon.png")  no-repeat;
 border:none !important;
 background-size:18px;
 margin-left:-30px;
}
input[type="text"]:focus {
  outline: 0;
}

/*　メニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 5px;
  top   : 23px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 20px;
  height  : 3px ;
  left    : 6px;
  background : #222;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 8px;
}
.hamburger span:nth-child(2) {
  top: 16px;
}
.hamburger span:nth-child(3) {
  top: 24px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 12px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 12px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateX(300%);
  transition: all 0.6s;
  width: 50%;
}

nav.globalMenuSp ul {
  background: #e3e4e4;
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
  font-size:90%;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 1em 0;
  text-decoration :none;
}

/* jQuery class付与 */
nav.globalMenuSp.active {
  transform: translateX(100%);
}

/*↑headerここまで↑ */


/*↓メインコンテンツここから↓*/
.main-cont{
	width:100%;
	margin:0 auto;
	text-align:center;
	height:100%;
	/*background-image:url("img/003.png");*/
	padding:0;
	background:linear-gradient(90deg,#f8f4e1 0%,#f8f4e1 32%,#ffffff 32%,#ffffff 100%);
}

.main-cont h2{
	/*font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif !important;*/
	text-align:left;
	font-size:210%;
	color:#111;
	margin-top:10px;
	margin-bottom:0;
	font-weight:600;
	line-height:1.5em;
	font-feature-settings: "palt";
}

.mc{
	width:100%;
	background-image:url("https://www.rakuten.ne.jp/gold/e-8783/beck/interior-green/img/003.png");
	margin:0 auto;
	text-align:center;
	position:relative;
	height:100%;
}

.ttl-img{
	width:700px;
	margin-top:100px;
}


.cont-img{
	width:100%;
}


#sc-view {
background-image:url("https://www.rakuten.ne.jp/gold/e-8783/beck/interior-green/img/001.jpg");
width:100%;
background-size:100%;
height:950px;
top:5%;
z-index:0;
left:0;
right:0;
bottom:0;
}

.cont-tx{
	width:45%;
	padding:20px;
	color:#222;
	font-size:100%;
	letter-spacing:1px;
	text-align:left;
	line-height:2em;
	padding-bottom:70px;
}

.cont-tx1{
	padding:30px;
	color:#222;
	font-size:100%;
	letter-spacing:1px;
	text-align:left;
	line-height:2em;
	margin-top:-50px;
	background:#fff;
	position:absolute;
	top:220px;
	right:0;
	opacity:0.92;
	box-shadow: 0px 6px 10px 0px rgba(200,200,200,0.3);
	overflow-x:hidden;
}

.cont-tx1 h2{
	/*font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif !important;*/
	text-align:left;
	font-size:210%;
	color:#111;
	margin-top:10px;
	margin-bottom:0;
	font-weight:bold !important;
	line-height:1.5em;
	font-feature-settings: "palt";
}

.u_line{
	border-bottom:1px solid #222;
	position: relative;
    width: 15%;
    padding: 10px;
	margin-bottom:25px;
	margin-top:10px;
}

.cont-bigimg{
background-image:url("https://www.rakuten.ne.jp/gold/e-8783/beck/interior-green/img/002.jpg");
width:100%;
height:650px;
background-repeat:no-repeat;
background-size:cover;
position:relative;
margin-bottom:80px;
}


.cont-bigimg1{
background-image:url("https://www.rakuten.ne.jp/gold/e-8783/beck/interior-green/img/004.jpg");
width:100%;
height:650px;
background-repeat:no-repeat;
background-size:cover;
position:relative;
margin-bottom:80px;
}

.cont-bigimg2{
background-image:url("https://www.rakuten.ne.jp/gold/e-8783/beck/interior-green/img/005.jpg");
width:100%;
height:650px;
background-repeat:no-repeat;
background-size:cover;
position:relative;
margin-bottom:80px;
margin-top:80px;
}



/*:::::::↓ アイテムキャプション ↓::::::*/
.item-container{
	width:95%;
	margin:0 auto;
	overflow:hidden;
	display: flex;
	display: -webkit-flex;
	-webkit-justify-content: space-between;
    justify-content: space-between;
	margin-bottom:30px;
	margin-top:30px;
	clear:both;
}

.item-list{
	float:left;
	overflow:hidden;
	position:relative;
}
.item-list .caption{
    font-size:95%;
	text-align:center;
	color:#fff;
	position:absolute;
	top:25%;
	left:0;
	right:0;
}
.item-list .mask{
    width:90%;
	height:50%;
	position:absolute;
	bottom:4px;
	left:5%;
	right:0;
	opacity:0;
	background-color:rgba(0,0,0,0.7);
	-webkit-transition:	all 0.2s ease;
	transition:all 0.2s ease;
}
.item-list:hover .mask{
	opacity:1;
}
.item-list img{
	width:90%;
 }


.item-list .pri{
	font-size:130%;
	font-weight:bold;
	display:block;
	margin-top:8px;
}

/*:::::::↓ コンテンツ一覧ボタン ↓::::::*/
.cont-pr{
	display:block;
	width:50%;
	margin-top:60px !important;
	box-sizing:border-box;
	background:#000;
	padding:20px 5px;
	margin:0 auto;
	color:#fff !important;
	border:2px solid #000;
	position: relative;
	text-align:center;
	font-size:95%;
	letter-spacing:1px;
	margin-bottom:60px;
	-webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}

.cont-pr a{
	display:block;
	color: inherit; 
}

.cont-pr::before{
  content: "";
  position: absolute;
  top: 46%;
  right: 4%;
  width: 10px;
  height: 10px;
  border-top:2px solid #fff;
  border-right:2px solid #fff;
  transform: rotate(45deg);
  margin-top: -5px;
}
 .cont-pr:hover{
	background:#fff;
	color:#000 !important;
	text-decoration:none;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
	box-shadow:0px 7px 4px -1px #ccc;
}
.cont-pr:hover::before{
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}


/*footer*/
footer{
	width:100%;
	display:block;
	padding:30px 0;
	background:#F1F1F1;
	height:100%;
}

footer .copy{
	text-align:center;
	font-size:70%;
	color:#555;
	display:block;
	line-height:2em;
}
footer a{
	color:#000;
	text-decoration:underline;
}
footer a:hover{
	text-decoration:none;
	color:#C00;
}


/*:::::::↓ TOPへ戻る ↓::::::*/
#goTop2{ position:fixed; bottom:45px; right:20px; z-index:99999;}
#goTop2 a{ display:block; width:45px; height:45px; border-radius:50%; -webkit-border-radius:50px; -moz-border-radius:50px; background:url("https://www.rakuten.ne.jp/gold/e-8783/beck/interior-green/img/return.png") no-repeat center; background-size:20px 20px; text-indent:-99999px; opacity:0.9; -moz-opacity:0.9; -khtml-opacity: 0.8; background-color:#fff; border:1px solid #000;}
#goTop2 a:hover{ background-color:#e7e7e5;}




@media screen and (max-width:780px) { 
#logo_loader .f_logo{
	bottom:70px;
}
#sc-view{
	background-size:contain;
	height:450px;
}
.ttl-img{
	width:90%;
	margin-top:80px;
}
.h-common .logo img{
	width:150px;
}
#search-gr{
	width:43%;
	top:10px;
}
#search-gr .text{
	width:77%;
	height:25px;
	font-size:11px;
	margin-left:-25px;
}
#search-gr .btn{
	width:30px;
	height:20px;
	margin-left:-20px;
	background-size:17px;
}
.hamburger{
	right:0;
	top:14px;
}
.cont-img{
	width:75%;
	margin:30px 0;
}
.cont-tx{
	width:90%;
	font-size:90%;
	margin-top:-20px;
}
.main-cont h2{
	font-size:140%;
	font-weight:bold;
}
}

@media screen and (min-width:800px){
.cont-img{
	width:700px;
	margin:30px 0;
}
.cont-tx{
	width:70%;
	margin:0 auto;
}
.cont-tx1{
	width:45%;
	margin:0 auto;
	height:auto;
}
.mc-sub1{
	position:absolute;
	top:90px;
	left:0;
	width:260px;
	z-index:2;
}

.mc-sub2{
	position:absolute;
	top:270px;
	right:0;
	width:250px;
	z-index:2;
}
}
@media screen and (max-width:1100px) { 
.mc-sub1{
	display:none;
}
.mc-sub2{
	display:none;
}
.ttl01-img{
	width:800px;
}
}

@media screen and (max-width:850px) { 
.cont-bigimg{
height:300px;
background-repeat:no-repeat;
background-size:cover;
margin-bottom:200px;
}

.cont-bigimg1{
height:300px;
background-repeat:no-repeat;
background-size:cover;
margin-bottom:200px;
}

.cont-bigimg2{
height:300px;
background-repeat:no-repeat;
background-size:cover;
margin-bottom:200px;
}

.cont-tx1{
	width:85%;
	font-size:90%;
	margin:0 auto;
	top:46%;
	padding:10px 7px 20px 20px;
}


.item-container{
	width:100%;
	overflow:auto;
	display: block;
	margin-bottom:0;
	margin-top:5px;
}
.item-list{
	width:50%;
	margin:20px 0;
}
.item-list img{
	width:95%;
}
.item-list .mask{
    width:95%;
	height:100%;
	position:absolute;
	bottom:5px;
	left:2.5%;
	right:0;
}
.item-list .caption{
    font-size:80%;
	padding:10px 5px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ttl01-img{
	width:95%;
}
.cont-pr{
	width:95%;
	margin-bottom:60px;
	margin-top:20px;
}
nav.globalMenuSp ul li{
	font-size:80%;
}
#goTop2{
	display:none !important;
}
}

@media screen and (max-width: 559px) {
body{ width:100%; overflow-x:hidden;}
}

