@charset "UTF-8";
/* CSS Document */

/*----------------------------
 　　　標準設定
----------------------------*/

@font-face{
	font-family: 'Noto Sans JP', sans-serif;
	font-style: normal;
	font-weight: 400;	
}

html{
	font-size: 62.5%
}

body{
	font-size: 1.6rem;
	font-family: 'Noto Sans JP', sans-serif;
	line-height: 1.6;
	color: #333333;
}
img{
	max-width: 100%;
	height: auto;
}

.row{
/*ここに.rowの設定を書く*/ 
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
}

a{
	cursor: pointer;
}

.fadein {
  opacity : 0;
  transform: translateY(20px);
	transition: all 1s;
}


/*----------------------------
 　　　header
----------------------------*/
.header{
	position: fixed;
	width: 100%;
	padding: 48px 0 48px;
	z-index: 150;
}

.header.top{
	width: 100%;
	background: -moz-linear-gradient(top, rgba(128,216,255,1),  rgba(128,216,255,0));
  background: -webkit-linear-gradient(top, rgba(128,216,255,1),  rgba(128,216,255,0));
  background: linear-gradient(to bottom, rgba(128,216,255,1),  rgba(128,216,255,0));
}

.header-inner{
	display: flex;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

.header-logo{
	width: 214px;
}

/*----------------------------
 　　　navigation
----------------------------*/
/*PCナビゲーション*/

.navigation{
	width: 370px;
	display: flex;
	-ms-justify-content: space-between;
	justify-content: space-between;
}

.nav-item>a{
	font-size: 1.5rem;
	font-family: aktiv-grotesk, sans-serif;
	text-transform: uppercase;
	letter-spacing: 0.2em;
	color: #444;
}

.nav-item>a:hover{
	color: #fff;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display : none;
}

.hamburger span {
  display : none;
}

/*SPナビゲーション*/

nav.globalMenuSp { 
	display: none;
}


/*----------------------------
 　　　scroll-bar
----------------------------*/

.scroll-item{
	position: fixed;
	width: 20px;
	height: 120px;
	bottom: 120px;
	left: 95%;
	z-index: 140;
	padding: 0;
	overflow: hidden;
}

.scroll-text{
	position: absolute;
	text-transform: uppercase;
	font-size: 1.2rem;
	letter-spacing: 0.2em;
	writing-mode: vertical-rl;
	color: #fff;
	top: 0;
}

.scroll-bar {
	width: 100%;
	height: 3.5em;
	display: block;
	position: absolute;
	top: 70px;
	left: 7px;
	overflow: hidden;
}

.scroll-bar:before {
	content: '';
	display: inline-block;
	position: absolute;
	border: 1px solid rgba(255,255,255,0);
	height: 100%;
	animation: wrap_on 1s ease-in-out 1.5s forwards;
}

.scroll-bar:after{
	content: '';
	display: inline-block;
	position: absolute;
	border: 1px solid rgba(255,255,255,1);
	height: 100%;
	animation: scroll_border 2.5s ease-in-out 2.5s infinite;
}

@keyframes wrap_on {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

@keyframes scroll_border {
  0%,
  100%,
  52% {
    top: 0;
    opacity: 1;
  }
  25% {
    top: 100%;
    opacity: 1;
  }
  26% {
    top: 100%;
    opacity: 0;
  }
  27% {
    top: -100%;
    opacity: 0;
  }
}


/*----------------------------
 　　　main-concept
----------------------------*/
main{
	width: 100%;
	overflow: hidden;
}

.main-concept{
	position: relative;
	width: 100%;
	height: 1000px;
	background-color: #80d8ff;
}

.main-logo{
	position: absolute;
	width: 460px;
	top: 810px;
	z-index: 100;
}

.main-logo .main-logo-pc{
	display: block;	
}

.main-logo .main-logo-sp{
	display: none;
}

.main-intro.pc{
	width: 576px;
	position: absolute;
	top: 270px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	z-index: 100;	
}

.main-intro.sp{
	display: none;
}

/*----------------------------
 　　　cloud
----------------------------*/

.cloud-item.first{
	position: absolute;
	top: 630px;
	left: 400px;
	width: 563px;
	z-index: 90;
}
.cloud-item.second{
	position: absolute;
	top: -50px;
	left: -950px;
	width: 950px;
	z-index: 90;
}
.cloud-item.Third{
	position: absolute;
	top: 400px;
	left: 100px;
	width: 376px;
	z-index: 90;
}

/*----------------------------
 　　　main-room
----------------------------*/

.main-room{
	position: relative;
	width: 100%;
	height: 1375px;
	background-color: #80d8ff; 
}

.background-image{
	position: absolute;
	top: 710px;
	width: 100%;
	height: 665px;
	background-image: url("../img/top/house-back.png");
	background-repeat: repeat-x;
	background-size: contain;
}

.house{
	display: block;
	position: relative;
	width: 775px;
	height: 1102px;
	background: url("../img/top/house.png") center center;
	background-repeat: no-repeat;
	top: 100px;
	margin: 0 auto;
	-webkit-animation: anime1 5s ease;
	-ms-animation: anime1 5s ease;
	animation: anime1 5s ease;       /* アニメーション指定 */
	z-index: 120;	
}

@keyframes anime1 {
    0% {
        opacity:  0;               
        top: 150px;                 
    }
    100% {
        opacity:  1;               
        top: 100px;                     
    }
}

/*---house-baloonの基本設定-----*/

.house-baloon{
	width: 166px;
	height: 180px;
	background: url("../img/top/hukidashi.svg") center center;
	background-repeat: no-repeat;
	display: flex;
	text-align: center;
	align-items: center;
	opacity: 0.8;
	z-index: 120;
}

.house-baloon>span{
	font-size: 1.6rem;
	line-height: 1.6;
	font-weight: 600;
	letter-spacing: 0.1em;
	color: #444;
	margin: 0 auto;	
}

/*---------302-----------*/

.house-door-302{
	position: absolute;
	width: 132px;
	height: 217px;
	background: url("../img/top/302_door-close.png") center center;
	top: 265px;
	left: 322px;
	z-index: 110;
	cursor: pointer;
}

.house-door-302:hover{
	width: 150px;
	height: 228px;
	background: url("../img/top/302_door-open.png") center center;
	top: 262px;
	left: 303px;	
}

.house-baloon.r-302{
	position: absolute;
	top: 121px;
	left: 305px;
}

/*---------301-----------*/

.house-door-301{
	position: absolute;
	width: 132px;
	height: 217px;
	background: url("../img/top/301_door_close.png") center center;
	top: 265px;
	left: 90px;
	z-index: 110;
	cursor: pointer;
}

.house-door-301:hover{
	width: 157px;
	height: 228px;
	background: url("../img/top/301_door_open.png") center center;
	top: 262px;
	left: 65px;	
}

.house-baloon.r-301{
	position: absolute;
	top: 121px;
	left: 74px;
}

/*---------303-----------*/

.house-door-303{
	position: absolute;
	width: 132px;
	height: 217px;
	background: url("../img/top/303_door_close.png") center center;
	top: 265px;
	left: 555px;
	z-index: 110;
	cursor: pointer;
}

.house-door-303:hover{
	width: 157px;
	height: 228px;
	background: url("../img/top/303_door_open.png") center center;
	top: 262px;
	left: 531px;
}

.house-baloon.r-303{
	position: absolute;
	top: 121px;
	left: 538px;
}


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

.wagon-container{
	position: absolute;
	top: 920px;
	right: 30px;
	width: 270px;
	text-align: center;
	z-index: 120;	
}

.wagon-logo{
  opacity: 0;
	width: 240px;
	margin-bottom: 10px;
	padding-left: 16px;
}

.wagon>img{
	width: 270px;
	animation-name: shake;
  animation-duration: 0.6s;
  animation-iteration-count: infinite;
}

@keyframes shake
{
  from{
    transform: translateX(-1px);
  }
  
  50%{
    transform: translateX(2px);
  }

  to{
    transform: translateX(-1px);
  }
}

.wagon>img:hover{
	animation: none;
}

/*----------------------------
 　　　main-bench
----------------------------*/
.main-bench{
	position: relative;
	width: 100%;
	height: 175px;
	background-color: #a1ac52;
}

.bench-grass{
	position: absolute;
	top: -20px;
	width: 100%;
	height: 75px;
	background: url("../img/top/grass-2.png");
	background-repeat: repeat-x;
	background-size: contain;
	z-index: 110;
}

.bench-container{
	position: absolute;
	top: -110px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	z-index: 120;
	text-align: center;
}

.bench-logo{
	opacity: 0;
	width: 240px;
	height: 50px;
	margin: 0 auto;
}

/*
.bench>img:hover ~ .bench-logo{
	opacity: 1;
}
*/


.bench>img{
	animation-name: shake;
  animation-duration: 0.8s;
  animation-iteration-count: infinite;	
}

.bench>img:hover{
	animation: none;
}

/*----------------------------
 　　　main-topics
----------------------------*/
.main-topics{
	position: relative;
	width: 100%;
	height: 944px;
	background-color: #a1ac52; 
}


/*----------------------------------------
			/スライドの指定
----------------------------------------*/

#topics-list{           
	position: absolute;	
	width: 555px;
	height: auto;
	top: 100px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	z-index: 130;
}

/*slick setting 左右矢印の指定*/
.slick-prev:before,
.slick-next:before {
	color: #444;
}

/*----------------------------------------
			トピックスの指定
----------------------------------------*/

.topics-item{
	box-sizing: border-box;
	width: 100%;
	height: 660px;
	background-color: #fff;
	box-shadow: 2px 2px 3px rgba(51,51,51,0.5);  
	padding: 20px 43px;
	margin: 0;
	z-index: 150;	
}

.topics-item>a{
	color: #333;
}

.topics-date{
	font-family: aktiv-grotesk, sans-serif;
	font-size: 1.5rem;
	line-height: 1;
	padding-bottom: 5px;
	text-align: right;
}

.topics-line{
	width: 100%;
	margin-bottom: 15px;
}

.topics-line.roll{
	transform: rotate(0.5turn);
	margin-bottom: 15px;
}

.topics-name{
	width: 319px;
	margin-bottom: 60px;
}

.topics-title{	
	font-size: 1.6rem;
	font-weight: 700;
	margin: 0	55px;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
}

.topics-text{
	font-size: 1.3rem;
	line-height: 1.8;
	letter-spacing: 0.1em;
	margin: 0	55px 45px;	
}


.topics-post.pc{
	position: absolute;
	top: -42px;
	left: -10%;
	z-index: 100;
}

.topics-post.sp{
	display: none;
}

/*----------------------------
 　　　footer
----------------------------*/


.footer.top{
	background-color: #fff;
	padding: 55px 0 55px;
}
.copyright{
	text-align: center;
	font-size: 1.3rem;
	line-height: 1;
	font-family: aktiv-grotesk, sans-serif;
	letter-spacing: 0.1em;
	color: #6c6c6c;
}

/*--------------------------------------------------------
 　　　playroom
--------------------------------------------------------*/

.body.playroom{
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
		animation: fadeIn 2s ease 0s 1 normal;

}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.header.playroom{
	position: fixed;
	padding: 48px 0 0;
}

.header-inner.row.playroom{
/*	position: fixed;*/
	z-index: 150;
}

.navigation.playroom{
	display: none;
}

/*----------------------------
 　　　playroom-main
----------------------------*/
.ceiling-image{
	position: relative;
	top: 0;
	width: 100%;
	height: 750px;
	background: #fff;
	border-top: 160px solid #ada398;
	border-left: 16vw solid #cdccc6;
	z-index: 100;	
}

.playroom-logo.big{
	position: absolute;
	width: 850px;
	top: 330px;
	left: 38%;
	transform: translate3d(-50%,0,0);
	z-index: 110;
}

.illust-sofa{
	position: absolute;
	top: 400px;
	left: 40vw;
	width: 595px;
}

/*----------------------------
 　　　playroom-nav
----------------------------*/

.nav-toggle{
	display: none;
}

/* ハンバーガーボタン */
.btn-burger {
	position: fixed;
	bottom: 200px;
	left: 127px;
	z-index: 150;
	display: block;
	width: 52px;
	height: 52px;
	background: url("../img/playroom/trigger_open.svg") center center / 52px 52px no-repeat; ;
	cursor: pointer;	
}

/* メニューが開いたときの、ハンバーガーボタンの画像を指定 */
.nav-toggle:checked ~ .btn-burger {
  background: url("../img/playroom/trigger_close.svg") center center / 52px 52px no-repeat;
}

/* ナビゲーション */

.localNav{
	display: none;
	position: fixed;
	height: 100vh;
	top: 0;
	left: 0;
	padding: 150px 127px 0;
	background-color: rgba(255,255,255,0.9);
	z-index: 130;
}

.localNav-item {
  margin-bottom: 60px;
  padding: 0px;
}

.localNav-item>a {
	display: block;
	font-size: 1.4rem;
	font-family: aktiv-grotesk, sans-serif; 
	color: #444;
	text-transform: uppercase;
	letter-spacing: 0.2em;	
}

.localNav-item>a:hover{
	opacity: 0.5;
}

/* メニューが開いたとき、<ul>を表示する */
.nav-toggle:checked ~ .localNav {
  display: block;
}

/* ----------ナビゲーションのスタイル指定 ここまで---------- */

.playroom-logo.small{
	position: fixed;
	bottom: 150px;
	left: 127px;
	width: 166px;
	z-index: 150;
}

/*----------------------------
 　　　section
----------------------------*/

.section-box{
	width: 460px;
}

.section-title{
	font-size: 5rem;
	font-family: aktiv-grotesk, sans-serif;
	font-weight: 600;
	line-height: 1;
	color: #333;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 30px;
}

.section-text{
	font-size: 1.5rem;
	line-height: 2.4;
	letter-spacing: 0.1em;	
}

.section-text>span{
	font-size: 1.2rem;
}

/*----------------------------
 　　　about
----------------------------*/

.section.about{
	position: relative;
	width: 100%;
	height: 780px;
	border-left: 16vw solid #cdccc6;
	background-color: #e5dcd4;	
}

.section-box.about{
	position: absolute;
	top: 160px;
	left: 14vw;
	z-index: 120;
}

.illust-book{
	position: absolute;
	top: 167px;
	left: -30%;
	z-index: 110;
}

/*----------------------------
 　　　works
----------------------------*/

.section.works{
	position: relative;
	width: 100%;
	height: 900px;
	background-color: #9e8066;
}

.works-book{
	display: flex;
	position: absolute;
	background: url("../img/playroom/book-open.png") no-repeat;
	width: 1354px;
	height: 778px;
	top: 120px;
	left: 5vw;
	padding-top: 70px;
	padding-left: 370px;	
	z-index: 120;
}

.section-box.works{
	width: 294px;
	z-index: 130;
	margin-right: 120px;	
}

/*----作品のスライド----*/

.works-figure{
	padding-top: 80px;	
}

#works-list{
	width: 350px;
	height: auto;
	margin: 0	auto;
	padding: 0;
}

.works-item{
	box-sizing: border-box;
	width: 100%;
	height: 300px;
	background-color: #fff;
	border-radius: 5px;
	border: 1px solid #c3c3c3;
/*	box-shadow: 2px 2px 3px rgba(51,51,51,0.5);*/
	padding: 20px;
	text-align: center;
}

.works-item.No1>img{
	display: inline-block;
	width: 160px;
	height: 234px;
	margin: 0;
}

.works-item.No2>img{
	display: inline-block;
	width: 252px;
	height: 158px;
	margin: 30px 0 0;
}

.works-item>a{
	color: #333;
}

.caption{
	font-size: 1.0rem;
	margin-top: 15px;
}

/*----/作品のスライド----*/

.illust-green{
	position: absolute;
	width: 380px;
	top: -350px;
	left: 68vw;
	z-index: 110;
	transform: scale(0.9);
}


/*----------------------------
 　　　profile
----------------------------*/

.section.profile{
	position: relative;
	width: 100%;
	height: 1000px;
	background-color: #fff;
	z-index: 100;	
}

.section-box.profile{
	position: absolute;
	top: 150px;
	left: 30vw;
	width: 460px;
	z-index: 130;	
}

.window{
	position: absolute;
	width: 425px;
	height: 1688px;
	background: url("../img/playroom/window-wall.png");
	background-repeat: no-repeat;
	background-size: 95%;
	top: -414px;
	left: 85vw;
	z-index: 110;
}

.illust-guitar{
	position: relative;
	width: 1280px;
	height: 762px;
	background: url("../img/playroom/sofa_2.png");
	background-repeat: no-repeat;
	background-size: contain;
	top: 300px;
	transform: scale(0.8);
	z-index: 120;	
}

.illust-guitar>span{
	position: absolute;
	width: 485px;
	height: 563px;
	top: 200px;
	left: 184px; 
	z-index: 120;	
}

.illust-note{
	position: absolute;
	width: 138px;
	top: 300px;
	left: 150px;
}

.profile-floor{
	position: absolute;
	top: 844px;
	width: 100%;
	height: 598px;
	background-color: #e5dcd4;
	z-index: 110;
}

/*----------------------------
 　　　contact
----------------------------*/

.section.contact{
	position: relative;
	width: 100%;
	height: 880px;
	top: 300px;
	background-color: #998066;
	z-index: 100;	
}

.post-card{
	box-sizing: border-box;
	position: absolute;
	width: 755px;
	height: 800px;
	top: -200px;
	background-image: url("../img/playroom/postcard.svg");
	background-repeat: no-repeat;
	left: 50%;
	transform: translate3d(-50%,0,0);
	padding: 40px;
	cursor: pointer;
	-webkit-animation:blink 1s ease-in-out infinite alternate;
	-ms-animation:blink 1s ease-in-out infinite alternate;
	animation:blink 1s ease-in-out infinite alternate;	
}

@keyframes blink{
    0% {opacity:0.7;}
    100% {opacity:1;}
}


/*----------------------------
 　　　footer
----------------------------*/

.footer.playroom{
	position: relative;
	top: 0;
	background-color: #fff;
	padding: 55px 0 55px;	
}



/*--------------------------------------------------------
 　　　chat
--------------------------------------------------------*/

/*----------------------------
 　　　chat-header
----------------------------*/

.navigation.chat{
	display: none;
}

.body-color.chat{
	background-color: #80d8ff;	
}

.main.chat{
	position: relative;
	height: 1100px;
}

.container{
	width: 60%;
	box-sizing: border-box;	
	position: absolute;
	top: 200px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	z-index: 120;	
}

.chat-title{
	background: url("../img/chat/talking_bench.svg") center center no-repeat;
	width: 470px;
	height: 80px;
	position: absolute;
	top: 100px;
	left: 50%;
	transform: translate3d(-50%,0,0);	
}

.cell.item1{
	height: 330px;
	background-color: #E8FFB8;
	padding: 40px	8% 0;
	font-size: 1.6rem;
	font-weight: 600;
	letter-spacing: 0.1em;	
	overflow: auto;
}

.cell.item2{
	background-color: #fff;
	padding: 30px	8% 30px;
	box-sizing: border-box;
	text-align: center;
}

.chat-item{
	display: flex;
	margin-bottom: 40px;
}

.user-face{
	width: 160px;
	height: auto;
	margin-right: 22px; 
}

.user-number{
	font-size: 2.0rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	margin-bottom: 10px;
}

.user-number>span{
	display: inline-block;
	padding-left: 30px;
	font-size: 1.1rem;
	font-weight: 400;
	letter-spacing: 0.1em;
	color: #333;
}

.user-message{
	font-size: 1.3rem;
	line-height: 1.8;
	letter-spacing: 0.1em;	
}

#view_name{
	margin: 0	10%;
	padding: 10px;
	width: 70%;
	border: none;
	color: #777;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
	text-align: left;
}

#yourMessage {
	padding: 10px;
  width: 70%;
	color: #777;
  margin: 20px 10%;
  border: none;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
}

.btn_submit{
	width: 160px;
	padding: 8px 0;
	background-color: #00B1FF;
	color: #fff;
	border-radius: 5px;
	font-size: 1.5rem;
	border: none;
	
}
.chat-background{
	position: absolute;
	top: 670px;
	width: 100%;
	height: 460px;
	background-image: url("../img/chat/chat-green.png");
	background-repeat: repeat-x;
	background-size: contain;
	z-index: 110;
}

.chat-bench{
	position: absolute;
	top: 880px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	z-index: 120;
}

/*----------------------------
 　　　chat-footer
----------------------------*/

.footer.chat{
	position: relative;
	top: 0px;
	background-color: #fff;
	padding: 55px 0 55px;
}


/*--------------------------------------------------------
 　　　goodswagon
--------------------------------------------------------*/

/*----------------------------
 　　　goodswagon-header
----------------------------*/


.header.goodswagon{
	position: relative;
	width: 100%;
	height: 244px;
	z-index: 110;	
	padding: 48px 0 0;
	background: rgba(255,255,255,0);
	background-color: #c08d59;	
}

.header-inner.row.goodswagon{
	position: absolute;
	top: 48px;
	left: 0;
	right: 0;
	z-index: 120;
}

.roof-image{
	position: absolute;
	top: 0;
	width: 100%;
	height: 224px;
	background-image: url("../img/goodswagon/roof.png");
	background-repeat: repeat-x;
	background-size: contain;
	z-index: 100;
}


/*----------------------------
 　　　goodswagon-main
----------------------------*/

.main.goodswagon{
	position: relative;
	top: 0;
	width: 100%;
	height: 1115px;
	background-color: #c08d59;
	padding: 0;
}

.main-container{
	width: 100%;
	max-width: 1400px;
	margin: 0	auto;
}

.title-container{
	position: absolute;
	width: 100%;
	top: -30px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	z-index: 130;
}

.wagon-title{
	width: 550px;
	margin: 0 auto;
	margin-bottom: 30px;
}

.wagon-read{
	width: 600px;
	height: 70px;
	background: url("../img/goodswagon/goodswagon-read.svg");
	background-size: contain;
	background-repeat: no-repeat;
	margin: 0 auto;
	margin-bottom: 80px;		
}

.baloon-image{
	width: 1059px;
	height: 424px;
	background-image: url("../img/goodswagon/baloon.png");
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -150px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	z-index: 130;
	
}

/*----------------------------
 　　　goods-list
----------------------------*/

.list-container{
	position: absolute;
	top: 328px;
}

.goods-list{
	display: flex;
	-ms-justify-content: space-between;
	justify-content: space-between;
	max-width: 1400px;
	margin: 0	auto;;
}

.goods-item{
	box-sizing: border-box;
	width: 460px;
	background-color: #dfcdb2;
	border-right: 8px solid #93673c;
	border-bottom: 8px solid #6f5132;
	padding: 20px 45px 40px;
	margin: 0 52px 62px 0;
}

.goods-item:last-of-type{
	margin-right: 0;
}

.member-container{
	display: flex;
	width: 100%;
}

.member-face{
	width: 79px;
	height: 72px;
	margin-right: 10px;
	margin-bottom: 5px;
}

.member-face.r-301{
	background: url("../img/goodswagon/301_face.png") no-repeat;
	background-size: contain;
}

.member-face.r-302{
	background: url("../img/goodswagon/302_face.png") no-repeat;
	background-size: contain;
}

.member-voice{
	font-size: 1.8rem;
	line-height: 3.5;
	letter-spacing: 0.1em;
	font-weight: 600;
	color: #42210b;
}

.goods-photo{
	width: 100%;
	height: 210px;
	background-color: #fff;
	margin-bottom: 30px;
}

.goods-photo.r-301{
	background: url("../img/goodswagon/somenaya_2.jpg");
}

.goods-title{
	font-size: 1.7rem;
	font-weight: 600;
	margin-bottom: 15px;
	letter-spacing: 0.1em;
}

.goods-text{
	width: 100%;
	font-size: 1.3rem;
	line-height: 1.8;
	margin-bottom: 40px;
}

.item-btn{
	display: block;
	background-color: #873342;
	border-radius: 15px;
	border: none;
	padding: 20px 40px;
	margin: 0	auto;
}

.item-btn:hover{
	opacity: 0.6;
}

.item-btn>a{
	color: #fff;
	font-size: 1.3rem;
	font-weight: 400;	
	letter-spacing: 0.2em;
}

.slide-icon{
	display: flex;
	width: 100px;
	margin: 0 auto;
}

.slide-icon>span{
	width: 15px;
	height: 15px;
	background-color: #cfcfcf;
	border-radius: 50%;
	margin-left: 20px;
	margin-bottom: 100px;	
	text-align: center;
}

.slide-icon>span:first-of-type{
	background-color: #fff;
	margin-left: 0;
}

/*----------------------------
 　　　footer
----------------------------*/

.footer.goodswagon{
	height: auto;
	position: relative;
	top: 60px;
	background-color: #fff;
	padding: 55px 0 55px;
}

/*--------------------------------------------------------
 　　　SP用　480px以下の場合
--------------------------------------------------------*/


@media screen and (max-width:479px){
	
.row{  
	width: 100%;
	max-width: 100%;
	padding: 0 20px;
	margin: 0;
}
	
.fadein {
  opacity : 1;
  transform: translateY(0);
	transition: all 1s;
}
	
/*----------------------------
 　　　header
----------------------------*/	
	
.header{
	position: fixed;
	width: 100%;
/*	height: 56px;*/
	padding: 20px 0	0;
	line-height: 1;
}
	
.header-inner{
	display: block;
}

.header-logo{
	width: 110px;
}
	
/*------メイン　ハンバーガーメニュー--------*/

/*　PCナビゲーション　*/	
.navigation {
  display: none;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: absolute;
  z-index : 10;
  right : 13px;
  top   : 10px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}

.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #444;
  -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: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 20px;
  left: 6px;
  background :#444;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 20px;
  background :#444;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/*　SPナビゲーション　*/	
nav.globalMenuSp { 
	display: block;
	width: 80%;
  height: 100vh;
  position: fixed;
  z-index : 9;
  top  : 0;
  right : -100%;
	padding-top: 150px;
  background-color: rgba(255,255,255,0.9);
  text-align: center;
/*  opacity: 0;*/
  transition: opacity .6s ease, visibility .6s ease;
}
	
.navigationSp {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.nav-itemSp {
  padding: 0;
  width: 100%;
  transition: .4s all;
}

.nav-itemSp a {
	display: block;
  color: #444;
  font-size: 1.8rem;
	font-family: 'Poppins', sans-serif;	
	font-weight: 600;	
	text-transform: uppercase;
	letter-spacing: 0.05em;
  padding: 2em 0;
  text-decoration :none;
}
	
.nav-itemSp>a:hover{
	color: #80d8ff;
}	
	
/* ナビ開いてる時のSPナビゲーション */
/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	  right : 0;
/*  opacity: 100;*/
}
 	

/*------/ハンバーガーメニュー--------*/


/*----------------------------
 　　　scroll-bar
----------------------------*/

.scroll-item{
	position: fixed;
	bottom: 100px;
	left: 93%;
	z-index: 140;
	text-align: center;
}

.scroll-text{
	font-size: 1.0rem;
}
	
.scroll-bar {
	width: 100%;
	height: 3em;
	position: absolute;
	top: 60px;
	left: -4px;
	overflow: hidden;
}


/*----------------------------
 　　　main-concept
----------------------------*/

.main-concept{
	position: relative;
	height: 600px;
}
	
.main-logo{
	position: absolute;
	width: 284px;
	top: 590px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	z-index: 100;
}

.main-logo .main-logo-pc{
	display: none;
}

.main-logo .main-logo-sp{
	display: block;
	
}

.main-intro.pc{
	display: none;
}
	
.main-intro.sp{
	display: block;
	position: absolute;
	width: 93%;
	top: 123px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	z-index: 100;	
}

/*----------------------------
 　　　cloud
----------------------------*/

.cloud-item.first{
	position: absolute;
	width: 160px;
	top: 500px;
	left: 0px;
	}
.cloud-item.second{
	position: absolute;
	width: 308px;
	top: 0px;
	left: -308px;
}
.cloud-item.Third{
	position: absolute;
	width: 108px;
	top: 110px;
	left: -50px;
}

/*----------------------------
 　　　main-room
----------------------------*/

.main-room{
	position: relative;
	height: 810px;
}

.background-image{
	position: absolute;
	background-image: url("../img/top/sp/house-back2-sp.png");
	top: 374px;
	width: 100%;
	height: 450px;
}

.house{
	position: relative;
	width: 340px;
	height: 1200px;
	background-size: contain;
	top: -280px;
	animation: none;
	margin: 0 auto;
	z-index: 100;	
}
	
.house-door-302{
	position: absolute;
	width: 65px;
	height: 100px;
	background: url("../img/top/302_door-open.png") center center;
	background-size: cover;
	top: 474px;
	left: 133px;
	z-index: 110;
/*	pointer-events: none;*/
}
	
.house-door-302:hover{
	width: 65px;
	height: 100px;
	background: url("../img/top/302_door-open.png") center center;
	top: 474px;
	left: 133px;
}
	

	
.house-door-301{
	position: absolute;
	width: 65px;
	height: 100px;
	background: url("../img/top/301_door_open.png") center center;
	background-size: cover;
	top: 474px;
	left: 30px;
	z-index: 110;
	cursor: pointer;
}
	
.house-door-301:hover{
	position: absolute;
	width: 65px;
	height: 100px;
	background: url("../img/top/301_door_open.png") center center;
	background-size: cover;
	top: 474px;
	left: 30px;
	z-index: 110;
	cursor: pointer;
}
	
.house-door-303{
	position: absolute;
	width: 68px;
	height: 100px;
	background: url("../img/top/303_door_open.png") center center;
	background-size: cover;
	top: 474px;
	left: 233px;
	z-index: 110;
	cursor: pointer;
}
	
.house-door-303:hover{
	width: 68px;
	height: 100px;
	background: url("../img/top/303_door-open.png") center center;
	top: 474px;
	left: 233px;
}
	
	
/*---house-baloonの基本設定-----*/

.house-baloon{
	width: 120px;
	height: 117px;
	background: url("../img/top/hukidashi.svg") center center;
	background-repeat: no-repeat;
	display: flex;
	text-align: center;
	align-items: center;
	opacity: 0.8;
	z-index: 120;
}
	
.house-baloon>span{
	font-size: 1.2rem;
}

/*---/house-baloonの基本設定-----*/
	
.house-baloon.r-302{
	position: absolute;
	top: 370px;
	left: 110px;
}
	
.house-baloon.r-301{
	position: absolute;
	top: 370px;
	left: 5px;
}
	
.house-baloon.r-303{
	position: absolute;
	top: 370px;
	left: 214px;
}

.wagon-container{
	position: absolute;
	width: 150px;
	top: 590px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	z-index: 120;
}
	
.wagon-logo{
  opacity: 1;
	width: 150px;
	padding: 0;
	margin-bottom: 5px;
}
	
.wagon>img{
	width: 135px;
}

.wagon>img:hover{
	animation: none;
}

/*----------------------------
 　　　main-bench
----------------------------*/
.main-bench{
	position: relative;
	width: 100%;
	height: 127px;
}

.bench-grass{
	position: absolute;
	top: -10px;
	width: 100%;
	height: 75px;
}
.bench-container{
	position: absolute;
	width: 200px;
	top: 35px; 
	left: 50%;
	transform: translate3d(-50%,0,0);
	z-index: 120;
}
	
.bench-logo{
  opacity: 1; 
	width: 140px;
	height: 30px;
	}

.bench>img:hover{
	animation: none;
}

/*----------------------------
 　　　main-topics
----------------------------*/
	
.main-topics{
	position: relative;
	width: 100%;
	height: 830px;
	background-color: #a1ac52; 	
}
  
.slick-next{
  display: none!important;
  right: 0!important;
}
  
.slick-next:before{
    content: none!important;
}
  
.slick-prev{
  display: none !important;
}
  
.slick-dots{
  width: 90% !important;
}

	
	
#topics-list{           
	position: absolute;	
	width: 370px;
	height: auto;
	padding: 0 20px;
	top: 150px;
	left: 50%;
	transform: translate3d(-50%,0,0);
	z-index: 130;
}
	
.topics-item{
	width: 100%;
	height: 590px;
	padding: 20px 20px;
	margin: 0 auto;
}
	
.topics-date{
	font-size: 1.4rem;
	padding-left: 80%;
	padding-bottom: 5px;
}

.topics-name{
	width: 194px;
	margin-bottom: 33px;
}

.topics-title{	
	font-size: 1.4rem;
	margin: 0 0 20px;
}

.topics-text{
	font-size: 1.2rem;
	line-height: 1.8;
	letter-spacing: 0.1em;
	margin: 0	0 20px;	
}
	
.topics-post.pc{
	display: none;
}

.topics-post.sp{
	display: block;
	position: absolute;
	top: 20px;
	left: -20%;
	width: 400px;
	background-size: contain;
	z-index: 100;
}

/*----------------------------
 　　　footer
----------------------------*/

.footer.top{
	position: relative;
	background-color: #fff;
	padding: 30px 0 30px;
	z-index: 120;
}

/*--------------------------------------------------------
 　　　playroom
--------------------------------------------------------*/

.header.playroom{
	position: fixed;
	padding: 20px 0	0;
	width: 100%;
}

/*----------------------------
 　　　playroom-main
----------------------------*/
.ceiling-image{
	position: relative;
	top: 0;
	width: 100%;
	height: 570px;
	background: #fff;
	border-top: 100px solid #ada398;
	border-left: 10vw solid #cdccc6;
	z-index: 100;	
	box-sizing: border-box;
}

.playroom-logo.big{
	position: absolute;
	width: 333px;
	top: 220px;
	left: 45%;
	transform: translate3d(-50%,0,0);
	z-index: 110;
}

.illust-sofa{
	position: absolute;
	top: 350px;
	left: 30vw;
	width: 214px;
}

/*----------------------------
 　　　playroom-nav
----------------------------*/

/* ハンバーガーボタン */
.btn-burger {
	position: fixed;
	bottom: 130px;
	left: 20px;
	z-index: 150;
	display: block;
	width: 52px;
	height: 52px;
	background: url("../img/playroom/trigger_open.svg") center center / 52px 52px no-repeat; ;
	cursor: pointer;	
}

/* ナビゲーション */

.localNav{
	display: none;
	position: fixed;
	height: 100vh;
	top: 0;
	left: 0;
	padding: 160px 20px 0;
	background-color: rgba(255,255,255,0.9);
	z-index: 130;
}


.localNav-item>a:hover{
	opacity: 0.5;
}

/* メニューが開いたとき、<ul>を表示する */
.nav-toggle:checked ~ .localNav {
  display: block;
}

/* ----------ナビゲーションのスタイル指定 ここまで---------- */

.playroom-logo.small{
	position: fixed;
	bottom: 90px;
	left: 20px;
	width: 90px;
	z-index: 150;
}

/*----------------------------
 　　　section
----------------------------*/

.section-box{
	width: 100%;
/*	padding: 0 20px;*/
}

.section-title{
	font-size: 2.8rem;
	margin-bottom: 20px;
}

.section-text{
	font-size: 1.3rem;
	line-height: 2.2em;
	letter-spacing: 0.07em;
}

.section-text>span{
	font-size: 1.2rem;
}

/*----------------------------
 　　　about
----------------------------*/

.section.about{
	position: relative;
	width: 100%;
	height: 700px;
	border-left: 10vw solid #cdccc6;
	background-color: #e5dcd4;
	box-sizing: border-box;
}

.section-box.about{
	position: absolute;
	top: 160px;
	left: 18vw;
	width: 70%;
	z-index: 120;
}

.illust-book{
	position: absolute;
	top: 140px;
	left: -95%;
	transform: scale(0.4);
	z-index: 110;
}

/*----------------------------
 　　　works
----------------------------*/

.section.works{
	position: relative;
	width: 100%;
	height: 510px;
	box-sizing: border-box;
}

.works-book{
	display: block;
	position: absolute;
	background: url("../img/playroom/sp/book_open_sp.png");
	background-repeat: no-repeat;
	background-size: 110%;
	width: 100%;
	height: 420px;
	top: 75px;
	left: 0;
	padding-top: 30px;
	padding-left: 50px;
	box-sizing: border-box;
	z-index: 120;
}

.section-box.works{
	width: 85%;
	z-index: 130;
	margin: 0;	
}

.works-item{
	display: none;
}
.works-figure{
	display: none;
}

.caption{
	font-size: 1.0rem;
}

.illust-green{
	position: absolute;
	width: 100%;
	top: -300px;
	left: 20vw;
	z-index: 110;
	transform: scale(0.4);
}


/*----------------------------
 　　　profile
----------------------------*/

.section.profile{
	position: relative;
	width: 100%;
	height: 800px;
	background-color: #fff;
	z-index: 100;	
}

.section-box.profile{
	position: absolute;
	top: 90px;
	left: 15%;
	width: 64%;
	z-index: 130;	
}

.window{
	position: absolute;
	width: 17.866%;
	height: 945px;
	background: url("../img/playroom/sp/window_sp.png");
	background-repeat: no-repeat;
	background-size: contain;
	top: -120px;
	left: 82.133%;
	z-index: 110;
}

.illust-guitar{
	position: relative;
	width: 88%;
	height: 360px;
	background: url("../img/playroom/sp/sofa_sp.png");
	background-repeat: no-repeat;
	background-size: contain;
	top: 450px;
	transform: scale(1);
	z-index: 120;	
}

.illust-guitar>span{
	position: absolute;
	width: 214px;
	height: 245px;
	top: 100px;
	left: 25px; 
	z-index: 120;	
}

.illust-note{
	position: absolute;
	width: 82px;
	top: 400px;
	left: 20px;
}

.profile-floor{
	position: absolute;
	top: 648px;
	height: 500px;
}

/*----------------------------
 　　　contact
----------------------------*/

.section.contact{
	position: relative;
	width: 100%;
	height: 750px;
	top: 330px;
	background-color: #998066;
	z-index: 100;	
}

.post-card{
	box-sizing: border-box;
	position: absolute;
	width: 335px;
	height: 686px;
	top: -260px;
	background-image: url("../img/playroom/sp/postcard-sp.svg") ;
	background-repeat: no-repeat;
	background-size: contain;
	left: 50%;
	transform: translate3d(-50%,0,0);
	padding: 20px;
}
	


/*----------------------------
 　　　footer
----------------------------*/

.footer.playroom{
	position: relative;
	top: 0;
	background-color: #fff;
	padding: 30px 0 30px;	
}



/*--------------------------------------------------------
 　　　chat
--------------------------------------------------------*/

/*----------------------------
 　　　chat-header
----------------------------*/
	
.header-inner.row.chat{
	position: fixed;
	padding: 20px;
	top: 0px;
	left: 0;
	right: 0;
	z-index: 120;
	box-sizing: border-box;
}

.main.chat{
	position: relative;
	width: 100%;
	height: 667px;
	background: url("../img/chat/sp/main-chat.jpg");
	background-size: contain;	
}

.container{
	display: none;
}

.chat-background{
	display: none;
}

.chat-bench{
	display: none;
}

/*----------------------------
 　　　chat-footer
----------------------------*/

.footer.chat{
	position: relative;
	top: 0px;
	background-color: #fff;
	padding: 30px 0 30px;
}

	
/*--------------------------------------------------------
 　　　goodswagon
--------------------------------------------------------*/

/*----------------------------
 　　　goodswagon-header
----------------------------*/

.header.goodswagon{
	width: 100%;
	height: 110px;
	padding: 0;	
}
	
.roof-image{
	width: 100%;
	height: 110px;
	background-image: url("../img/goodswagon/sp/roof_sp_2.png");	
}

.header-inner.row.goodswagon{
	position: absolute;
	box-sizing: border-box;
	top: 0;
	padding: 20px;
	z-index: 120;
	}
	
	.baloon-image{
		width: 100px;
		height: 170px;
	}

/*----------------------------
 　　　goodswagon-main
----------------------------*/

.main.goodswagon{
	width: 100%;
	height: 930px;
	padding-top: 15px;
}
	
.wagon-title{
	width: 300px;
	margin: 0 auto;
	margin-bottom: 20px;
}

.wagon-read{
	width: 300px;
	height: 70px;
	background: url("../img/goodswagon/sp/goodswagon-read_sp.svg");
	background-size: contain;
	background-repeat: no-repeat;
	margin: 0 auto;
	margin-bottom: 40px;		
}
	
.baloon-image{
	position: absolute;
	top: -40px;
	width: 100%;
	height: 165px;
	z-index: 110;
}
	
.title-container{
	top: 20px;
}

/*----------------------------
 　　　goods-list
----------------------------*/
.list-container{
	top: 240px;
}
	
.goods-list{
	display: block;
	max-width: 100%;
	padding: 0 20px;
}

.goods-item{
	box-sizing: border-box;
	width: 100%;
	padding: 20px;
	margin-bottom: 40px;
}
	
.goods-item.r-302{
	display: none;
}

.member-voice{
	font-size: 1.6rem;
	line-height: 4;
}

.goods-title{
	font-size: 1.5rem;
	font-weight: 600;
	margin-bottom: 15px;
	letter-spacing: 0.1em;
}

.goods-text{
	width: 100%;
	font-size: 1.3rem;
	line-height: 1.8;
	margin-bottom: 30px;
}

.item-btn{
	display: block;
	padding: 20px 40px;
	margin: 0	auto 20px;
}

.item-btn:hover{
	opacity: 1;
}

.item-btn>a{
	font-size: 1.5rem;
	letter-spacing: 0.1em;
}

.slide-icon{
	margin: 0 auto;
}
	
.slide-icon>span{
	margin-bottom: 40px;
}
	


/*----------------------------
 　　　footer
----------------------------*/

.footer.goodswagon{
	padding: 30px 0 30px;
}	
	
}

.slick-next{
  display: none!important;
  right: 0!important;
}
.slick-prev:before, .slick-next:before{
    color: #ff0!important;

}

.slick-next:before{
    content: none!important;
}

.slick-prev,
.slick-next
{display:none !important;}