@charset "utf-8";
/* レイアウトのためのCSS */

body{
	background:#f3f3f3 url(/html/user_data/images/bg_washi.png);
	background-size:48px 48px;
	font-family: 'Noto Serif JP', serif;
	letter-spacing:0.1em;
	color: #333;
	/* font-size:1rem; */
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
}

*{box-sizing: border-box;}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}
b, strong {
	font-weight: 700;
	color:#000;
}
a{
	color: #333;
	text-decoration: none;
	outline: none;
}

img{
	max-width: 100%;
	height: auto;
}

/* トップページ新着商品 */
.ec-newItemRole__list2 {
    display: flex;
    flex-wrap: wrap;
}

/* area */

#container{
	position: relative;
	overflow-x: hidden;
}

#header{
	position:fixed;
	top:0;
	left:0;
	width:230px;
	height: 100vh;
	background:#fdfdfd;
	padding: 150px 0 0 0;
	z-index: 1;
}

#content-area{
	width:100%;
	padding:0 0 0 230px;
}
.disp_none{
	display: none !important;
}
.souryou_mini {
	font-size: 12px;
	text-align: left;
	margin: 0 0 0.6em;
	font-weight: 300;
}

/* @media screen and (max-width:990px){ } */
@media screen and (max-width:1150px){
	#header{
		position: relative;
		width:100%;
		height: auto;
		padding: 0;
	}
	  
	#content-area{
		padding:0;
	}
	
}
/* heading */
.heading-block{
	display: flex;
	justify-content: center;
}

#menu h2,
#access h2{
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;	
	text-orientation: upright;
	letter-spacing:0.2em;
	font-size:2rem;
	margin:100px 0;
}

/* slider */

#slider-area{
	position: relative;
}

#slider-area .scrolldown1{
	top: inherit;
	bottom:0;
	z-index: 1;
}

/* header */

#header{
/*
	display: flex;
	justify-content: center;
*/
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: stretch;
    align-items: center;
}

.logo-area{
	width:130px;
	height: 170px;
}
.header-area{
	/* width:73px; */
	width:auto;
	height: 230px;
}

#header h1{
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;	
	text-orientation: upright;
	font-size: 1rem;
	letter-spacing: 1em;
	line-height: 1.3;
	color:#E26687;
	padding: 0 0 0px 0;
}

#header h1 span{
	letter-spacing: 0.5em;
	display: block;
	font-size: 2.2rem;
}

#header p{
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;	
	text-orientation: upright;
	letter-spacing: 0.3em;
}

#header .sns-link{
	position: absolute;
	left: auto;
	bottom:50px;
}

/* @media screen and (max-width:990px) { } */
@media screen and (max-width:1150px){
	
	#header{
		position:absolute;
		z-index: 2;
		background: none;
		color: #fff;
		height: 90vh;
		align-items: center;
		
		display: flex;
		justify-content: center;
		flex-direction: column;
		flex-wrap: wrap;
		align-content: stretch;
		align-items: center;
	}
		
	.header-area{
		width:auto;
		height: auto;
	}
	
	#header h1{
		color: #fff;
		background:#E26687;
		padding: 20px 22px 0 0px;
		width: 119px;
		height:240px;
		white-space: nowrap;
		font-size: 0.8rem;
		letter-spacing: 0.6em;
	}
	
	#header h1 span{
		font-size: 2.3rem;
	}
	
	#header p{
		background:#E26687;
		padding: 40px 35px 10px 0;
		width: 119px;
		height: 220px;
	}
	
	#header .sns-link{
		left: 10px;
		bottom:20px;
	}
}


/* sns */

.sns-link li{
	display:inline-block;
	margin:0 10px;
}

.sns-link li img{
	 width:20px;   
}

/* g-navi */

#main-nav{
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
	align-items: center;
	height:94px;
}

#g-nav ul{
	display: flex;
}

#g-nav ul li a{
	display: block;
	padding: 34px 25px;
	position: relative;
	transition:all 0.3s;
}

#g-nav ul li.current a::before,
#g-nav ul li a:hover::before{
	content: "";
	/*描画位置*/
	position: absolute;
	top: 0;
	left:50%;
	/*線の形状*/
	width: 1px;
	height: 20px;
	background: #000;
	/*線の動き1.4秒かけて動く。永遠にループ*/
	animation: gnavipathmove 2.4s ease-in-out infinite;
	opacity:0;
	color:#6a2e9e;
}

/* @media screen and (max-width:990px) { } */
@media screen and (max-width:1150px){
	#g-nav ul{
		display: block;
		text-align: center;
	}
	#g-nav ul li a{
		padding: 15px;
		/* color: #fff; */
		color: #666;
	}
	#g-nav ul li.current a::before,
	#g-nav ul li a:hover::before{
		animation: none;
		left:0;
		top:48%;
		width:10px;
		height: 1px;
		background: #fff;
		opacity: 1;
	}
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes gnavipathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:20px;
		opacity: 1;
	}
	100%{
		height:0;
		top:30px;
		opacity: 0;
	}
}

#main-nav dl{
	background:#E26687;
	color: #fff;
	padding: 20px 40px;
	text-align: center;
}

#main-nav dl dt{
	 font-size: 0.8rem;   
}

#main-nav dl a{
	color:#fff;
	font-size: 1.5vw;
}

/* @media screen and (max-width:990px) { } */
@media screen and (max-width:1150px){
	#main-nav{
		height:auto;
	}
	#main-nav dl{
		display: none;
		transition: all 0.5s;
		opacity: 0;
		padding: 10px 0;
	}
		
	#main-nav dl a{
	   font-size: 1.2rem; 
	}
	
	#main-nav dl.telactive{
		display: block;
		position: fixed;
		z-index: 9999;
		bottom:30px;
		left:20%;
		width:60%;
		border: 1px solid rgba(255,255,255,0.8);
		animation: UpAnime 1s forwards;
	}
	.ec-grid2__cell{
		padding: 10px;
	}
}

@media screen and (max-width:420px) {
	#main-nav dl.telactive{
		width:90%;
		left:5%;
	}
	
}

/* menu_slider_list */

#menu_slider_list{
	position: relative;
	padding: 25vh 20px 0 0;
}
.slider_list{
	position: relative;
}
.slider_list3{
	position: relative;
}

/* pickup */

#pickup{
	position: relative;
	padding: 15vh 20px 0 0;
}

/* lead */
#lead{
	position: relative;
	display: flex;
	justify-content: center;
	height: 80vh;
	padding: 25vh 0 0 0;
}

#lead .lead-area{
	display: flex;
	flex-direction: row-reverse;
	flex-wrap: wrap;
}


#lead .svganimeblock{
	width:50%;
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: -1;
}

#lead .lead-heading{
	width:30%;
}

#lead h2{
	 font-size:2rem;
	letter-spacing: 0.1em;
	line-height: 2.2;
	padding: 0 0 0 30px;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;	
}

#lead .lead-desc{
	width:70%;
	display: flex;
	flex-direction: row-reverse;
	height: 16em;
}

#lead .lead-desc p{
	width:12em;
	letter-spacing: 0.1em;
	line-height: 3;
	margin: 0 0 0 30px;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;	
}
#message .btnarrow5{
   padding: 20px 15px 40px 15px; 
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;	
}

#message .btnarrow5::before{
	top:90%;
	right:50%;
	width:1px;
	height: 40px;
}

#message .btnarrow5::after{
	top: 110%;
	right:60%;
}

_:-ms-lang(x), #message .btnarrow5::after{
	right:70%;
}


#lead .btnarrow5{
   padding: 20px 15px 40px 15px; 
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;	
}

#lead .btnarrow5::before{
	top:90%;
	right:50%;
	width:1px;
	height: 40px;
}

#lead .btnarrow5::after{
	top: 105%;
	right:60%;
}

_:-ms-lang(x), #lead .btnarrow5::after{
	right:70%;
}


/* @media screen and (max-width:1020px) { } */
@media screen and (max-width:1150px){
	#lead h2{
		line-height: 1.8;
		padding: 0 0 50px 0;
		display: inline-block;
		text-align: left;
		font-size: 1.5rem;
		letter-spacing: 0.4em;
	}
	
	#lead .lead-desc p{
		line-height:2.5;
	}
	
}


/* @media screen and (max-width:920px) { } */
@media screen and (max-width:1150px){
	
	#menu_slider_list{
		height:auto;
		padding:100px 20px 0;
	}
	.slider_list{
		height:auto;
		padding:100px 20px 0;
	}
	.slider_list3{
		height:auto;
		padding:20px 20px 0;
	}
	#pickup{
		height:auto;
		padding:100px 20px 0;
	}
	#lead{
		height:auto;
		padding:100px 0;
	}
	
	#lead .lead-heading{
		width:100%;
		text-align: center;
	}
	
	#lead .lead-desc{
		width: 100%;
		padding: 0 30px;
		display: block;
		height: auto;
	}
	
	#lead .lead-desc p{
		width:auto;
		margin: 0 0 30px 0;
		-ms-writing-mode: lr-tb;
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
	}
	
	#message .btnarrow5{
		display: block;
		padding: 8px 30px;
		width:250px;
		margin: 0 auto;
		-ms-writing-mode: lr-tb;
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
	}
	
	#message .btnarrow5::after{
		top: 155%;
		right: 52.4%;
	}
	
	#lead .btnarrow5{
		display: block;
		padding: 8px 30px;
		width:250px;
		margin: 0 auto;
		-ms-writing-mode: lr-tb;
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
	}
	
	#lead .btnarrow5::after{
		top: 152%;
		right: 52%;
	}
	
}

/* menu */

#menu{
	position:relative;
	margin: 0 0 100px 0;
}

#menu .menu-bg{
	position: relative;
	background:url(/html/user_data/images/bg_01.webp?20210721) no-repeat center;
	background-size:cover;
	background-attachment:fixed;
	width:100%;
	height:50vh;
}
.no-webp #menu .menu-bg{
	background:url(/html/user_data/images/bg_01.jpg?20210721) no-repeat center;
}

#menu section{
	display:flex;
	justify-content:space-between;
	flex-wrap:wrap;
}

#menu section:nth-of-type(2n){
	flex-direction:row-reverse;
}

#menu .menu-img{
	width:50%;
	height:40vh;
}

#menu .menu-img-detail{
	height:40vh;
}

#menu .menu-box{
	animation-delay:.5s;
}

#menu .menu-content{
	width:50%;
	display:flex;
	justify-content:center;
	align-items:center;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;	
	text-orientation: upright;
}

#menu section .img-ag{
	background:url(/html/user_data/images/producer/producer_01.jpg?20220325) no-repeat center;
	background-size:cover;
}

#menu section .img-katsu{
	background:url(/html/user_data/images/producer/producer_02.jpg?20220325) no-repeat center;
	background-size:cover;
}

#menu section .img-tanaka{
	background:url(/html/user_data/images/producer/producer_03.jpg?20210721) no-repeat center;
	background-size:cover;
}

#menu section .img-cro{
	background:url(/html/user_data/images/producer/producer_04.jpg?20220325) no-repeat center;
	background-size:cover;
}

#menu section .img-oni{
	background:url(/html/user_data/images/producer/producer_05.jpg?20220325) no-repeat center;
	background-size:cover;
}

#menu section .img-karo{
	background:url(/html/user_data/images/producer/producer_06.jpg?20220325) no-repeat center;
	background-size:cover;
}

#menu .menu-content h3{
	font-size:1.2rem;
	margin:0 0 0 1em;
}

#menu .menu-content p{
	height:13em;
	line-height:2.5;
}

@media screen and (max-width:768px){
	#menu .menu-bg{
		background-attachment: inherit;
	}
	
	#menu .menu-img{
		height: 18vh;
	}
	#menu .menu-img-detail{
		height: 18vh;
	}
}

@media screen and (max-width:560px){
	#menu{
		margin: 5vh 0px 0px 0px;
	}
	#menu .menu-img,
	#menu .menu-content{
		width:100%;
		margin: 0 0 20px 0;
	}
	#menu .menu-img{
		height: 23vh;
	}
	#menu .menu-img-detail{
		height: 23vh;
	}
}

/* access */

#access{
	position:relative;
}

#access .access-bg{
	background:url(../images/bg_02.jpg?20210721) no-repeat center;
	background-size:cover;
	background-attachment:fixed;
	width:100%;
	height:50vh;
}

#access .access-area{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	background:#fff;
	box-shadow: 0 4px 4px #ccc;
	width:90%;
	margin: 0 auto 100px auto;
}

#access .access-area .access-block{
	width:50%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#access .access-area .access-block h3{
	font-size: 1.2rem;
	margin: 0 0 20px 0;
}

#access .access-area .access-block p{
	margin: 0 0 20px 0;
}

#access .access-map{
	width:50%;
}

#access .iframe-wrap {
  position: relative;
  padding-bottom: 51.65%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  z-index: 2;
}

#access .iframe-wrap iframe,
#access .iframe-wrap object,
#access .iframe-wrap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* @media screen and (max-width:1040px){ } */
@media screen and (max-width:1150px){
	#access .access-area .access-block,
	#access .access-map{
		width:100%;
	}   
	#access .access-area .access-block{
		padding:40px 20px;
	}
}


/* @media screen and (max-width:768px){ } */
@media screen and (max-width:1150px){
	#access .access-bg{
		background-attachment: inherit;
	}
}

/* reserve */

#reserve{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width:90%;
	margin: 0 auto 100px auto;
	padding:100px 30px;
	text-align: center;
}

#reserve .scrolldown1{
	 top:-10vh;   
}

#reserve h2{
	 font-size: 1.2rem;   
}

#reserve .tel{
	font-size: 2vw;
	margin: 0 0 20px 0;
}

#reserve p br{
	 display: none;   
}

/* @media screen and (max-width:990px){ } */
@media screen and (max-width:1150px){
	#reserve h2{
		 font-size: 1rem;   
	}
	#reserve .tel{
		font-size: 1.5rem;
	}
	
}

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

	#reserve p br{
		 display:block;
	}
	
}

/* footer */

#footer{
	padding:40px;
	color: #fff;
	background:#E26687;
}

#footer .footer-area{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap:wrap;
}

#footer .footer-logo{
	letter-spacing: 1em;
	margin: 0 0 20px 0;
}

#footer .footer-logo span{
	font-size: 1.6rem;
	display: block;
}

#footer .footer-link{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

#footer .footer-link ul{
	font-size: 1.3rem;
	margin: 0 2vw 0 0;
}

#footer .footer-link ul li{
	display: block;
	margin: 0 10px;   
}
#footer .footer-link ul.sns-link{
	margin: 20px 0 0 0;
}
#footer .footer-link ul.sns-link li{
	display: inline-block;
}
#footer .footer-link a{
	 color:#fff;   
}

#footer small{
	 color:#ccc;  
}

#footer #page-top span{
	position: relative;
	top:-10px;
}

#footer #page-top span::before{
	 content:'';
	position: absolute;
	left:50%;
	top:-3px;
	background:#6C6C6C;
	width:1px;
	height: 30px;
}

#footer #page-top span::after{
	content:'';
	position: absolute;
	left:6px;
	top:-7px;
	background:#6C6C6C;
	width:1px;
	height: 20px; 
	transform: rotate(-45deg);
}

@media screen and (min-width:769px) {
	#footer #page-top a:hover span::before,
	#footer #page-top a:hover span::after{
		 background:#fff;   
	}
}
.souryou_img{
	width:500px;
	height:auto;
	background:#fff;
}
.card_img{
	max-width:300px;
	height:auto;
}
/* @media screen and (max-width:768px){ } */
@media screen and (max-width:1150px){
	#footer .footer-info{
		width: 100%;
		text-align: center;
	}
	#footer .footer-logo{
		margin: 0;
	}
	
	#footer .footer-link{
		width:100%;
		display: block; 
	}
	
	#footer .footer-link ul{
		text-align: center;
		margin: 50px 0;
		line-height: 3;
	}
	
	#footer small{
		 display: block;
		text-align: center;
	}
	.souryou_img{
		width:100%;
	}
	.ec-cartNavi .ec-cartNavi__price{
		display: block;
	}
	.ec-cartNavi{
		border-radius: 15px !important;
		background: #E26687;
		padding: 20px;
	}
	.ec-headerNaviRole .ec-headerNaviRole__right{
		display: block;
		width: 100% !important;
	}
	.cart_container{
		background: none !important;
	}
}

.ec-headerSearch__category{
	display: block;
	padding: 25px 25px;
	position: relative;
	transition: all 0.3s;
}
.ec-headerSearch__keyword{
	display: block;
	padding: 34px 25px;
	position: relative;
	transition: all 0.3s;
}
#g-nav{
	position: relative;
	z-index: 9999;
}
#g-nav-list li{
	position: relative;
	white-space: nowrap;
}
.cart_container{
	padding:0px !important;
}
.ec-headerNaviRole{
	padding: 25px 15px !important;
	/* height: 87px !important; */
}
.ec-headerNaviRole__right{
	width: 100% !important;
}
.ec-cartNaviIsset{
	min-width: 300px;
	max-width: 300px;
}
.ec-cartNaviIsset__action > a{
	padding:0px 16px !important;
}
.ec-cartNavi{
	    border-radius: 15px !important;
}
.search_container{
	position: relative;
	display: block;
	padding: 30px 25px;
	width:auto;
	box-sizing: border-box;
	margin: 0px 20px 0px 0px;
}
.search_container input[type="text"]{
  border: 1px solid #999;
  padding: 3px 5px;
  border-radius: 5px;
  height: 2.4em;
  overflow: hidden;
  background: #fff;
}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container button{
  cursor: pointer;
  font-family: FontAwesome;
  font-size: 1.4em;
  border: none;
  background: #E26687;
  color: #fff;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  outline : none;
  position: absolute;
  top: 22px;
  right: -15px;
}
.ec-select_search{
	display:inline-block;
}
.select_size_01 .custom-select-trigger{
	width:100px;
}
.select_size_02 .custom-select-trigger{
	width:150px;
}
.select_size_03 .custom-select-trigger{
	width:180px;
}
.select_size_04 .custom-select-trigger{
	width:200px;
}
.select_size_05 .custom-select-trigger{
	width:250px;
}

#item-option{
	padding: 1vh 0px 0px 0px;
	position: relative;
	z-index: 10;
}
#item-detail{
	padding: 0vh 30px 0 30px;
	position: relative;
	margin-top: 5vh;
}
/* itemlist */
#itemlist{
	padding: 1vh 30px 0 30px;
}
/*画像の横幅を100%にしてレスポンシブ化*/
#itemlist img{
	width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}
.item-list{
	display: flex;
/*	justify-content: space-between; */
	justify-content: flex-start;
	flex-wrap: wrap;
	counter-reset: number;
	list-style-type:none;
}
.item-list li {
	position: relative;
	z-index: 1;
	width: 20%;
	margin: 20px 0px;
	opacity: 0;
	padding: 10px;
}
.item-name{
	width:100%;
	height:40px;
	line-height: 20px;
	padding: 3px;
	vertical-align: middle;
	display: table-cell;
	overflow: hidden;
}
.item-value{
	width:100%;
	padding: 3px;
}
.item-nums{
	width:100%;
	padding: 3px;
}

/* ranking */

#ranking{
	padding: 15vh 30px 0 30px;
}
/*画像の横幅を100%にしてレスポンシブ化*/
#ranking img{
	width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

.ranking-list{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    counter-reset: number;
    list-style-type:none;
}

.ranking-list li{
    position: relative;
    z-index: 1;
    width:30%;
    margin:20px 0;
    opacity: 0;
}

.ranking-list .ranking-cap{
    margin:10px 0 0 0;
	text-align:left;
    display: block;
}

/* @media screen and (max-width:550px){ } */
@media screen and (max-width:1150px){
	#ranking{
		padding:10px;
	}
	.ranking-list li , .item-list li {
	    width: 33%;
		margin:20px 0px;
		padding:5px;
		text-align:left;
	}
	    
	.ranking-list li:last-child{
	    /*display: none;*/
    }    
}

@media screen and (max-width:550px){
	.ranking-list li , .item-list li {
	    width: 50%;
		margin:20px 0px;
	}
}
/*
.ranking-list li::before {
      position: absolute;
      left:-0.5em;
      top:-0.5em;
      z-index: 2;
      counter-increment: number;
      content: counter(number);
      background: #457703;
      display: inline-block;
      width: 2.5em;
      height:2.5em;
      line-height:2.5em;
      font-size:1.2rem;
      text-align: center;
      border-radius: 50%;
      color: #fff;
}
*/

/* @media screen and (max-width:768px){ } */
@media screen and (max-width:1150px){
	.item-list li::before {
		width: 2em;
		height:2em;
		line-height:2em;
		font-size:1.1rem;
	}
	.ranking-list li::before {
		width: 2em;
		height:2em;
		line-height:2em;
		font-size:1.1rem;
	}
}

.ranking-list li:nth-child(1)::before {
	background: #997F42;
}
.ranking-list li:nth-child(2)::before {
	background: #777;
}
.ranking-list li:nth-child(3)::before {
	background: #B25938;
}

/* newitems */

#newitems{
    margin: 0 0 50px 0;
}

#newitems li{
    position: relative;
}

#newitems .choice-btn li{
    border-radius: 10px;    
}

span.detail-price{
    position: absolute;
    right:10px;
    bottom:10px;
    background:#fff;
    padding: 2px 10px;
    border-radius: 10px;
}

#newitems .choice-btn li .detail-cap{
     border-radius:10px;
}


/* message */

#message{
    position: relative;
    padding:15vh 70px 0;
}

#message h2{
    position: absolute;
    right:45%;
    z-index: 2;
}

.message-area{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    
}

.message-img{
    background:url("/html/user_data/images/top/message_01.jpg?20210721") no-repeat center;
    background-size: cover;
    height: 50vh;
    width:48%;
}

.message-content{
    display: flex;
    justify-content: center;
    padding: 150px 0 0 0;
    width:45%;
}

.message-box{
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
}

.message-content h3,
.message-content p,
.message-content .message-btn{
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;    
    text-orientation: upright;
    height: 22em;
    letter-spacing: 0.1em;
}

.message-content h3{
    font-size:1.5rem;
    line-height: 2.5;
}

_:-ms-lang(x)::-ms-backdrop, .message-content h3{/*IE11用ハック*/
    width:30%;
}

.message-content p{
    line-height: 2.0;
    margin: 0 0 0 50px;
}

_:-ms-lang(x)::-ms-backdrop, .message-content p{/*IE11用ハック*/
    width:60%;
}

_:-ms-lang(x)::-ms-backdrop, .message-content .message-btn{/*IE11用ハック*/
    width:10%;
}


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

.message-content h3{
    line-height: 2;
    margin: 0 0 0 10px;
}

.message-content p{
    line-height: 3;
    margin: 0 0 0 20px;
}
    
}

@media screen and (max-width:1000px) {
	.message-content p{
		line-height: 2;
	}
}


/* @media screen and (max-width:768px){ } */
@media screen and (max-width:1150px){
	#message{
		padding: 0 20px;
	}
	
	#message h2 {
		position: relative;
		right: inherit;
		top: 30px;
	}
    .message-img,
    .message-content{
        width:100%;
    }
    
    .message-img{
        height:40vh;
    }

    .message-content{
    padding:50px 0 0 0;
    }
    
.message-content h3,
.message-content p,
.message-content .message-btn{
    -ms-writing-mode: lr-tb;
    -webkit-writing-mode: horizontal-tb;
    writing-mode: horizontal-tb;
    height: inherit;
    margin: 0 0 50px 0;
}
    
_:-ms-lang(x)::-ms-backdrop, .message-content h3,
_:-ms-lang(x)::-ms-backdrop, .message-content p,
_:-ms-lang(x)::-ms-backdrop, .message-content .message-btn{/*IE11用ハック*/
    width:100%;
}
    
.message-content h3{
    text-align: center;
    font-size: 1.2rem;

}
    
.message-box{
    display: block;

}
    
.message-box .btn{
    padding: 10px;
    display: block;
}
        
}


@media screen and (max-width:430px) {
    .message-img{
        height:40vh;
    }
}

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

 .message-content p br{
    display: none;
    }
}
/* font-family */

.heading{
    font-family: 'Alex Brush', cursive;
    font-size: 5vw;
    font-weight: normal;
    color: #E26687;
    animation-delay: 0.3s;
}

@media screen and (max-width:960px) {
.heading{
    font-size:3.5rem;
}
}

#container{
    overflow-x: hidden;
}
.fa-twitter{
	color:#1DA1F2;
}
.fa-instagram{
	color:#CB204B;
}
.fa-facebook-f{
	color:#1877F2;
}

.pickup-cap{
	display:block;
	text-align:center;
}
.slick-list{
	overflow: visible;
}
.ec-topicpath {
	color: #E26687;
	list-style: none;
	overflow: hidden;
}
.ec-searchnavRole .ec-searchnavRole__infos {
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
	box-sizing: border-box;
	font-size: 16px;
	line-height: 1.4;
	color: #525263;
	-webkit-text-size-adjust: 100%;
	width: 100%;
	display: flex;
	border-top: 0;
	margin-bottom: 16px;
	margin: 0 20px;
	padding-top: 5px;
	flex-direction: column;
}
.ec-topicpath .ec-topicpath__item, .ec-topicpath .ec-topicpath__divider, .ec-topicpath .ec-topicpath__item--active {
	display: inline-block;
	min-width: 16px;
	text-align: center;
	position: relative;
	letter-spacing: normal;
}
.ec-searchnavRole .ec-searchnavRole__infos {
    margin: 0 auto;
	padding: 10px 20px !important;
    box-sizing: border-box;
    font-size: 16px;
    line-height: 1.4;
    color: #525263;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    display: flex;
	border-top: 1px solid #E26687;
    margin-bottom: 16px;
    padding-top: 5px;
    flex-direction: column;
}
.search-name{
	width:180px;
}
.ec-searchnavRole .ec-searchnavRole__counter {
    margin-bottom: 16px;
    width: 100%;
    padding-top:10px;
}
.ec-searchnavRole .ec-searchnavRole__actions {
    text-align: right;
    width: 100%;
}
@media only screen and (max-width: 768px){
	#footer{
		padding: 40px 20px;
	}
	#footer p{
		font-size:11px;
	}
	.ec-topicpath {
		padding: 0px 20px 0px;
		border: 0;
		font-size: 16px;
	}
	.select_size_02 .custom-select-trigger{
		width:130px;
	}
	.select_size_03 .custom-select-trigger{
		width:160px;
	}
	.select_size_04 .custom-select-trigger{
		width:180px;
	}
	.select_size_05 .custom-select-trigger{
		width:230px;
	}
	#itemlist{
		padding: 5vh 10px 0 10px;
	}
	#item-option{
		padding: 15vh 0px 0px 0px;
	}
	#item-detail{
		padding: 5vh 0px 0px 0px;
	}
}
@media only screen and (min-width: 768px){
	.ec-searchnavRole {
		margin: 0 auto;
		padding: 10px;
		box-sizing: border-box;
		font-size: 16px;
		line-height: 1.4;
		color: #525263;
		-webkit-text-size-adjust: 100%;
		width: 100%;
	}
	.ec-topicpath {
		padding: 30px 20px 10px;
		border: 0;
		font-size: 16px;
	}
	.ec-searchnavRole .ec-searchnavRole__infos {
		padding-left: 0;
		padding-right: 0;
		border-top: 1px solid #E26687;
		padding-top: 16px;
		flex-direction: row;
	}
.ec-searchnavRole .ec-searchnavRole__infos {
    padding-left: 0;
    padding-right: 0;
    border-top: 1px solid #E26687;
    padding-top: 16px;
    flex-direction: row;
}
.ec-searchnavRole .ec-searchnavRole__counter {
    margin-bottom: 0;
    width: 50%;
}
.ec-searchnavRole .ec-searchnavRole__actions {
    width: 50%;
}
}
.ec-grid2__cell{
	background:#fff;
	overflow: hidden;
}
.ec-cartRole{
	margin: 50px auto;
}
.add-cart{
	line-height: normal;
}
.ec-blockTopBtn{
	display:none !important;
}
.ec-layoutRole__contents{
	margin: 0px auto 50px;
}
.ec-login__link > a{
	font-size:14px;
}
.ec-layoutRole{
	background: #f3f3f3 url(/html/user_data/images/bg_washi.png);
}
.ec-productRole__profile{
	padding-top: 10px;
}
