@charset "utf-8";

/* 全ページ共通の設定 */
body {font-size: 18px;
    line-height: 1.6;
    color: #6F6F6F;
    background-color:#FAF6EC;}
.wrapper{max-width:960px;}
img{width: 100%;}

a{text-decoration:none;
  color: #6F6F6F;}
a:hover {
	color: #FF7E00;
	opacity: 0.5;
}

/*  ファビコンの設定  */

/* headerの設定 */
header {display: flex;justify-content: space-between;background-color:#FCCC2D ; height: 80px;}
h1{padding:20px 20px;}

/* footerの設定 */

.footer-list p{
	margin: 7px auto;
}


/*==========================ここから引用java============================*/
/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    top: 0;
    width:100%;
    height: 100vh;
}
/*丸の拡大*/
.circle-bg{
    position: fixed;
    z-index:3;
    /*丸の形*/
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #F4D69E;
    /*丸のスタート位置と形状*/
    transform: scale(0);/*scaleをはじめは0に*/
    right:-50px;
    top:calc(50% - 50px);/*50%から円の半径を引いた値*/
    transition: all .6s;/*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive{
    transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}
/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}
/*ナビゲーション*/
#g-nav ul {
    opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 999;
    top:50%;
    right:40px;
    transform: translate(-50%,-50%);
}
/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
}
/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}
/*リストのレイアウト設定*/
#g-nav li{
    text-align: center; 
    list-style: none;
}
#g-nav li a{
    color: #333;
    text-decoration: none;
    padding:10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
}
/*========= ボタンのためのCSS ===============*/
.openbtn{
    position:fixed;
    top:10px;
    right: 10px;
    z-index: 9999;/*ボタンを最前面に*/
    cursor: pointer;
    width: 50px;
    height:50px;
} 
/*×に変化*/    
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #666;
    width: 45%;
  }
.openbtn span:nth-of-type(1) {
    top:15px;   
}
.openbtn span:nth-of-type(2) {
    top:23px;
}
.openbtn span:nth-of-type(3) {
    top:31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
    opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/*=============================ここまで引用java========================*/


/*sns共通設定*/
.top-contents{font-size:1.3rem;text-align: center;}
.sns-icon img{max-width:60px;width: 70%;}
.sns{display:flex;justify-content:space-around;max-width:500px;margin:auto;}
/*bottom共通設定*/
.bottom{max-width:500px;margin:auto;}
.bottom-item{font-size: 1.2rem;background-color:#F4D69E;border-radius:10px;width:400px;padding:5px;text-align: center;margin:10px auto;}
/*footer共通設定*/
footer{background-color:#FCCC2D;text-align:center;}
footer div{width:500px;margin:0 auto;display:flex;flex-wrap:wrap;}
div p{font-size:0.75rem;padding:0 20px;margin:0 auto;}
footer small{font-size:0.5rem;}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝↑前頁共通＝＝＝＝＝＝＝＝＝＝＝*/


/* ＝＝＝＝＝＝＝＝＝＝＝＝index.htmlの設定＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝動きslide1＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
#slide,#slide-event{
    overflow:hidden;
    align-items: center;
    position: relative;
}
#slide ul,#slide-event ul{
    width:300%;
    display: flex;
}
#slide li,#slide-event li{
    width:33.4%;
    list-style-type:none;
}
#slide,#slide-event{width:70%;margin:auto;}

#prevbtn1,#prevbtn2{
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    left:20px;
}
#nextbtn1,#nextbtn2{
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    right:20px;
}

/*===============================slide動き=========================================*/


/*top-page（動き以外の設定）*/
div .sub-menu{display: flex;justify-content:space-around;max-width:800px;margin:0 auto;}
.sub-menu div{font-size: 1.15rem;background-color:#F4D69E;border-radius:10px;width:400px;padding:5px;text-align: center;margin:10px;}
.sub-menu a{text-decoration:none;}

.outdoor,.indoor{
	width: 35%;
	text-align: center;
	margin: 20px auto;
}

.scene{
	display: flex;
	text-align: center;
	justify-content: space-between;
}


.new-arrival{
	max-width:900px;
	text-aline: center;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	list-style:none;
	margin: 0 auto;
}
.new-arrival p{
	text-align: center;
}
.new-arrival img{}
.new-arrival li{fontsize: 1.2rem;display: block;width: 200px;}



/*==============================================================================================================*/

/*概要ページ*/

.overview-content{
	margin: 0 auto;
}

.page-title{
	text-align: center;
	font-size: 2rem;
	padding: 3%;
}

.sub-title{
	background-color: #F4D69E;
	text-align: center;
	padding: 8px 10px;
	border-radius: 20px;
	font-size:1.5rem;
	font-weight: normal;
	margin-bottom: 3%;
}

.sub-content{
	font-size: 1rem;
	margin-bottom: 7%;
	text-align: left;
}

.ovp{
	width: 70%;
	margin-bottom: 3%;
}

.ovs{
	display: flex;
}


/*---------------------------------------------------------------------------------------------------*/


/* 最大幅の設定（640PX) */
.sub-page {
    max-width: 640px;
    text-align: center;
    margin:  auto;
}
/* ボタンの設定 */
.button_room {
    font-size: 1rem;
    background-color: #F0BF62;
    color: #000;
    border-radius: 20px;
    padding: 7px 0px;
    margin: 0 auto;
    width: 100%;
	list-style: none;
}


/* indoorページの設定 */
.category_room {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 25px;
    max-width: 950px;
    margin-top: 20px;
	
}
.room_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
        max-width: 950px;
	margin-top:20px;
	margin-bottom:50px;
}
.pictem {
    padding: 5px;
	font-size: 15px;
}

.mein_room_img{
	margin-top :30px;
}


