@charset "UTF-8";
/*---------------------------------------------
reset
---------------------------------------------*/

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); 
  /*overflow: scroll!important;*/
}

body {
  margin: 0;
   padding: 0; }

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit; }

img {
    border-style: none;
    vertical-align: bottom;
    width: 100%;
    height: auto; 
}

video{
    max-width: 100%;
}

ul {
  padding: 0;
}

li {
	text-decoration: none!important;
    list-style-type: none;
}

p {
	margin: 0;
}

/*---------------------------------------------
common
---------------------------------------------*/

body{
    -webkit-text-size-adjust: 100%;
    font-family: "Hiragino Sans","Hiragino Kaku Gothic ProN",sans-serif;
    letter-spacing: 0rem;
    font-size: 1.3rem;
    line-height: 1.8;
    color: #313131;
  }
  
h1{
    font-size: 1.95rem;
    font-weight: 400;
}

.font-color {
    color: #ffdb00;
}

.notes {
	font-size: 1rem;
}

.notes.v_top {
    vertical-align: super;
}

.yellow {
	color: #ffdb00;
}
 
  @media screen and (max-width: 720px) {
      html {
          font-size: 62.5%;
      }
  }
  @media screen and (min-width:768px) and (max-width: 1024px) {
      html {
          font-size: 140%;
      }
  }
  @media screen and (min-width: 1040px) {
      html {
          font-size: 65%;
      }
  }
  @media screen and (min-width: 1200px) {
      html {
          font-size: 72%;
      }
  }  
  
body .clas {
	font-family: "classico-urw", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0rem;
}

.flex {
	display: flex;
}

.sp {
	display: block;
}
	
.pc {
	display: none;
}

.page_wrap {
    padding: 100px 5% 5%;
    background-color: #fffce9;
}

.page_title {
    text-align: center;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 8%;
	color: #8c8885;
}

.page_title .clas{
    font-size: 1.5rem;
}

.page_inner {
	padding: 5%;
}

@media screen and (min-width: 1040px){
	
.sp {
	display: none;
}
	
.pc {
	display: block;
}

.page_title {
    margin: 7% auto 0;
}

.page_inner {
    max-width: 1000px;
    width: 63%;
	margin: auto;
}

}

@media screen and (min-width:768px) and (max-width: 1024px) {
  .page_wrap {
	  padding-top: 170px;
  }
}



/*--------------------------------------
　     　　　アニメーション
---------------------------------------*/

/*--------------スクロールアニメーション---------------*/

.scroll_up {
  transition: 0.8s ease-in-out;
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

.scroll_up2 {
  transition: 0.6s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up2.on {
  transform: translateY(0);
  opacity: 1.0;
}

.scroll_up3 {
  transition: 1.5s ease-in-out;
  opacity: 0;
}
.scroll_up3.on {
  transform: translateY(0);
  opacity: 1.0;
}

.timing01 {transition-delay: .1s;}
.timing02 {transition-delay: .2s;}
.timing03 {transition-delay: .4s;}
.timing04 {transition-delay: .6s;}
.timing05 {transition-delay: .8s;}
.timing06 {transition-delay: 1s;}

/*--------------スクロールアニメーション---------------*/

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

.header,.header_sub{
    position: fixed;
    top: 0;
    z-index: 999;
    height: 100px;
    width: 100%;
    box-sizing: border-box;
	transition: background-img .5s;
/*    transition: background-color .5s, color .5s;*/
}

.header.change-color {
	background-image: url("../img/header.png");
    background-repeat: no-repeat;
    background-size: cover;
	/*background-color: #fff8c5;
	opacity: .93;*/
}

.header_sub {
	background-image: url("../img/header.png");
    background-repeat: no-repeat;
    background-size: cover;
}

.header-logo{
    position: fixed;
    z-index: 980;
    width: 23%;
    top: 2%;
    left: 4%;
}

/*　ハンバーガーメニューボタン　*/
.header-btn {
    display: block;
    position: fixed;
    z-index: 999;
    right: 5%;
    top: 2.5%;
    cursor: pointer;
    text-align: center;
    width: 35px;
    height: 40px;
}

.header-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #8c8885;
  border-radius: 4px;
}
.header-btn, .header-btn span {
  transition: all .5s;
}
.header-btn span:nth-of-type(1) {
  top: 0;
}
.header-btn span:nth-of-type(2) {
  top: 12px;
}
.header-btn span:nth-of-type(3) {
  top: 24px;
}
.header-btn.active {
  -webkit-transform: rotate(360deg);
  transform: rotate(360deg);
}
.header-btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(12px) rotate(-45deg);
  transform: translateY(12px) rotate(-45deg);
}
.header-btn.active span:nth-of-type(2) {
  -webkit-transform: translateY(0) rotate(45deg);
  transform: translateY(0) rotate(45deg);
}
.header-btn.active span:nth-of-type(3) {
  opacity: 0;
}
  
  /* メニュー背景　*/
nav.globalMenuSp {
    position: fixed;
    z-index : 990;
    top  : 0;
    left : 0;
    background: #fff8c5;
    text-align: center;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: all 0.6s;
  }
  
nav.globalMenuSp ul {
    margin: 20% auto;
    padding: 0;
}
  
nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
    margin-bottom: 8%;
	font-size: 1.6rem;
  }
nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
  }
  
nav.globalMenuSp ul li a {
    display: block;
    text-decoration: none;
    color: #8c8885;
    }

  nav.globalMenuSp ul li a span {
    color: #8c8885;
	font-size: 2rem;
  }
  
nav.globalMenuSp .nav_product {
    margin: 8% auto;
}

nav.globalMenuSp .nav_product li {
	margin-bottom: 5%;
}

nav.globalMenuSp .nav_product span{
    font-size: 1.6rem;
}
  
nav.globalMenuSp.active {
    opacity: 100;
    display: block;
     transform: translateX(0%);
  }


@media screen and (min-width: 1040px){
	.header_sp {
		height: 0;
	}
	.header-logo {
		width: 8%;
	}
	
	nav.globalMenuSp ul {
		margin: 5% 0;
	}
	
	nav.globalMenuSp ul li {
		margin-bottom: 5%;
	}
	
	nav.globalMenuSp .nav_product {
		margin: 3% auto;
	}
	
	nav.globalMenuSp .nav_product li {
		margin-bottom: 2%;
	}
	
	.header_sub {
		background-image: none;
		background-color: #fff8c5;
	}
	
	.header-btn {
		width: 40px;
		top: 4%;
	}
	
}	

@media screen and (min-width:768px) and (max-width: 1024px) {
  .header, .header_sub {
  	 height: 220px;
  }
  
  .header-btn {
  	width: 80px;
	height: 80px;
  }
  
  .header-btn span:nth-of-type(2) {
  	top: 22px;
  }
  
   .header-btn span:nth-of-type(3) {
  	top: 44px;
  }

}

/*---------------------------------------------
footer
---------------------------------------------*/
footer {
  	padding: 10% 0 15%;
  	text-align: center;
	background-color: #fff8c5;
    position: relative;
	color:#8c8885;
}

footer .sns_area{
    width: 35%;
    margin: 5% auto;
    justify-content: space-between;
}

footer .sns_area >div {
  	width: 38%;
}

footer .f_list {
    margin: 8% 8%;
    font-size: 1.2rem;
}

footer .f_list li {
    margin-bottom: 3%;
}

@media screen and (min-width: 1040px){ 

	.page_sub footer {
    	padding: 1% 0 5%;
	}
	.page_sub footer .sns_area {
		margin: 3% auto 4%;
		width: 12%;
	}
	
	.page_sub footer .f_list {
		margin: 2% auto 5%;
		font-size: 15px;
		display: flex;
		justify-content: space-between;
		width: 60%;
        max-width: 1000px;
        flex-wrap: wrap;
	}	

	#lp_wrap footer {
    	padding: 5% 0 10%;
	}
	#lp_wrap footer .sns_area {
		width: 20%;
	}

	#lp_wrap footer .f_list {
		margin: 8% 0 ;
	}	
	
	
}

/*---------------------------------------------
company
---------------------------------------------*/

.company .page_inner li{
    margin-bottom: 5%;
}

.company .flex {
    align-items: baseline;
}

.company .heading {
    background-color: #ffdb00;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    padding: 4% 5%;
    line-height: 0;
}

.company .contents {
    padding: 5%;
    font-size: 1.5rem;
}

@media screen and (min-width: 1040px){ 

	.company .heading {
		padding: 2.5% 5% 3%;
	}
	
	.company .contents {
		padding: 4% 5%;
		font-size: 1.5rem;
		text-align: center;
	}
	
	.company .page_inner {
		width: 50%;
	}
	
	.company .page_wrap {
		padding-bottom: 0;
	}

}

/*---------------------------------------------
PrivacyPolicy/snspolicy
---------------------------------------------*/

.privacypolicy .page_inner, .snspolicy .page_inner{
	background-color: #fff;
	margin-bottom: 5%;
}
.privacypolicy .align_right {
	text-align: right;
}

@media screen and (min-width: 1040px){ 
	.privacypolicy .page_inner, .snspolicy .page_inner{
	margin-top: 5%;
}
}

/*---------------------------------------------
shoplist
---------------------------------------------*/

.shoplist .release{
    background-color: #fff;
	margin: 5% 5%;
}

.shoplist .release li{
	margin-bottom: 5%;
}

.shoplist .release li:last-of-type{
	margin-bottom: 0;
}

.shoplist .release .heading {
    margin-bottom: 2%;
}

.shoplist .release .contents {
    color: #8c8885;
}


.shoplist .shop_wrap p.clas{
    color: #ffdb00;
    text-align: center;
	font-size: 2rem;
}

.shoplist .shop_wrap .page_title{
	margin-bottom: 2%;
}

.shoplist .shop_wrap .online_shop {
    position: relative;
    padding: 5%;
    border: solid 1px #ffdb00;
    border-radius: 50px;
    margin-bottom: 5%;
    font-size: 2rem;
    line-height: 1.2;
    height: 33px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shoplist .shop_box {
	margin-bottom: 10%;
}

.shoplist .shop_box:last-of-type >ul{
    border: solid 1px #ffdb00;
    border-radius: 10px;
    padding: 10%;
}
.shoplist .shop_wrap .offline_shop{
    font-size: 1.6rem;
    margin: 0 0 5%;
}

.shoplist .shop_wrap .offline_shop:last-of-type {
	margin-bottom: 0;
}

.contents-btn {
    cursor: pointer;
}

.contents-btn:after {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 2px #313131;
    border-right: solid 2px #313131;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: calc(50% - 3.5px);
    right: 10%;
}


@media screen and (min-width: 1040px){ 
	.shoplist .release{
		margin: 2% auto;
		width: 50%;
	}
	
	.shoplist .shop_box {
		margin-top: 5%;
	}
	
	.shoplist .shop_box ul{
		display: flex;
		justify-content: space-between;
	}
	
	.shoplist .shop_wrap .online_shop {
		padding: 2% 5%;
		border-radius: 50px;
		margin-bottom: 0;
		width: 21%;
	}
	
	.shoplist .shop_box:last-of-type >ul {
		margin: 5% auto 2%;
        display: flex;
        flex-wrap: wrap;
        padding: 5% 6%;
        justify-content: flex-start;
	}
	
	.shoplist .shop_wrap .offline_shop {
		width: 50%;
		margin-bottom: 2%;
	}
	
	.shoplist .shop_wrap .page_title {
		margin-top: 3%!important;
	}
}


@media screen and (min-width: 1600px){ 
	.shoplist .shop_wrap .offline_shop {
		width: 33%;
		margin-bottom: 2%;
	}
}









