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

@import url('https://fonts.googleapis.com/css?family=Oswald:400,700');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');
@import url('https://fonts.cdnfonts.com/css/charm');
@import url('https://fonts.cdnfonts.com/css/tt-livret-subhead-trl');
@import url('https://fonts.cdnfonts.com/css/sweet-romance');

html, body, header, nav, ul, li, p, a, div, img, dd, dt, dl, h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0;
	list-style: none;
	text-decoration: none;
	box-sizing: border-box;
}

body{
	overflow-x: unset;
}

.clearfix:before, .clearfix:after {
	content: ' ';
	display: table;
	clear: both;
}

#news_detail .detail .content p {
margin-top: 0rem;
}	

.blog_inner ul li{
list-style: none;
}

.blog_inner h3{
border-left: none;
}	

.blog_inner h2{
border-bottom: none;
}	


section {
        margin-bottom: 0px;
}

header.menubar_colour {
  /* 中の項目を横に並べるのでflex */
  display: flex;
  /* 背景色 */
  /* background: white;*/
	margin-left: -17px;
}

.container_colour {
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  margin: 0;
}

.pc-menu {
  width: 100%;
}
.pc-menu > ul {
  display: flex;
  list-style: none;
}
.pc-menu > ul > li {
  width: 50%;
  text-align: center;
  font-size: 18px;  
  list-style: none;
}
.pc-menu > ul > li > a {
  display: block;
  line-height: 60px;
  text-decoration: none;
  color: #000000;
  font-family: 'TT Livret Subhead Trl', sans-serif;
  
}

/* 色指定なしホバー */
.pc-menu > ul > li > a:hover {
  background: #bbbbbb;
}

/* PC用メニュー */

.main-menu {
  /* 中央寄せ */
  margin: 0 auto;
  /* 項目を横並びにするのでflex */
  display: flex;
  /* 背景色 */
   /*background: #fff;*/
  /* メニューの幅 */
 /* width: 1280px;*/
   width: 100%;	
}

/* ロゴ用（画像など自由に置き換えてください） */
.logoname {
  text-align: center;
  padding: 18px;
  font-size: 18px;
  width: 200px;
  background: #cccccc;
}

/* REDメニューバー指定 */
.pc-menu > ul > li > a.menured {
  display: block;
  line-height: 106px;
  text-decoration: none;
  color: #000000;
  background-color: #ff9595;
}

/*REDホバー */
.pc-menu > ul > li > a.menured:hover {
  background: #fa8072 ;
}

/* Greenメニューバー指定 */
.pc-menu > ul > li > a.menugreen {
  display: block;
  line-height: 106px;
  text-decoration: none;
  color: #000000;
  background-color: #c0d8b7;
}

/*Greenホバー */
.pc-menu > ul > li > a.menugreen:hover {
  background: #8fbc8f ;
}

/* Purpleメニューバー指定 */
.pc-menu > ul > li > a.menupurple {
  display: block;
  line-height: 106px;
  text-decoration: none;
  color: #000000;
  background-color: #7D3C98;
}

/*Purpleホバー */
.pc-menu > ul > li > a.menupurple:hover {
  background: #562869;
}


/* Orangeメニューバー指定 */
.pc-menu > ul > li > a.menuorange {
  display: block;
  line-height: 106px;
  text-decoration: none;
  color: #000000;
  background-color: #FF7F50;
}

/*Orangeホバー */
.pc-menu > ul > li > a.menuorange:hover {
  background: #fe5a1d;
}

/* blueメニューバー指定 */
.pc-menu > ul > li > a.menublue {
  display: block;
  line-height: 106px;
  text-decoration: none;
  color: #000000;
  background-color: #0167a7;
}

/*blueホバー */
.pc-menu > ul > li > a.menublue:hover {
  background: #04334f;
}

/* brownメニューバー指定 */
.pc-menu > ul > li > a.menubrown {
  display: block;
  line-height: 106px;
  text-decoration: none;
  color: #000000;
  background-color: #9a826a;
}

/*brownホバー */
.pc-menu > ul > li > a.menubrown:hover {
  background: #6b4423 ;
}

/* pinkメニューバー指定 */
.pc-menu > ul > li > a.menupink {
  display: block;
  line-height: 106px;
  text-decoration: none;
  color: #000000;
  background-color: #f5c9d6;
}

/*pinkホバー */
.pc-menu > ul > li > a.menupink:hover {
  background: #ffcff1  ;
}

/* whiteメニューバー指定 */
.pc-menu > ul > li > a.menuwhite {
  display: block;
  line-height: 106px;
  text-decoration: none;
  color: #000000;
  background-color: #f1f1f1;
}

/*whiteホバー */
.pc-menu > ul > li > a.menuwhite:hover {
  background: #f8f8ff ;
}

/* blackメニューバー指定 */
.pc-menu > ul > li > a.menublack {
  display: block;
  line-height: 106px;
  text-decoration: none;
  color: #fff;
  background-color: #000;
}

/*blackホバー */
.pc-menu > ul > li > a.menublack:hover {
  background: #353839;
}


/*PC用underline*/
.border{
	position: relative;
	text-align: center;
	font-size: 18px;
}

.border:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	border-bottom: solid 2px #000;
	transform: translateX(-50%);
	animation: border_anim 3s linear forwards;
}

@keyframes border_anim {
	0%{
		width: 0%;
	}
	100%{
		width: 100%;
	}
}



 #halloween_colour .intro_container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100vh;
      text-align: center;
     animation: fadeOut 1s ease-in-out 3s forwards;
    }
#halloween_colour .logo {
      width: 45%;
      height: auto;
    }
 #halloween_colour h4.intro {
    font-family: 'TT Livret Subhead Trl', sans-serif;
	text-align: center;
	font-weight: normal;
	font-size: 1.8em;
	line-height: 180%;
	letter-spacing: 0.5px;
    }

 #halloween_colour h4.intro span {
      font-size:0.8em;
    }



#halloween_colour {
	width: unset;
	margin:0 auto;
	padding:0;
	font-size:16px;
	font-weight:normal;
	font-family: 'Roboto' , 'Noto Sans JP', sans-serif;
	/*overflow: hidden;*/
	overflow:visible;
	text-align: center;
}

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


#halloween_colour h1,
#halloween_colour h2,
#halloween_colour h3,
#halloween_colour h4,
#halloween_colour h5{
	color: #000;
	text-align:center;
	font-weight:bold;
}


#halloween_colour h1{
	margin: 40px auto 30px;
	width: 100%;
	font-size: 4em;
	color:black;
	font-family: 'TT Livret Subhead Trl', sans-serif;
	font-weight: normal;
	letter-spacing: 0.02em;
	line-height: 100%;
	                                               
}

.top-ttl{
            width: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
		    padding: 5%;
        }
.textanimation{
            font-size: 0.95em;
            font-family:'TT Livret Subhead Trl', sans-serif;
			text-align: left;
			line-height: 180%;
			padding:2%;
			border-radius: 8px;
		   width:70%;
	font-weight: bold;
}
 @keyframes showTextFromBottom{
0%{
         transform: translateY( 100% );
      
}
100%{
          transform: translateY( 0px );
}
    }

/*

.textanimation span{
     animation: showText 2s backwards;
     display: inline-block;
    }
.textanimation > span{
      overflow: hidden;
    }
.textanimation > span > span{
      animation: showTextFromBottom 0.5s backwards;
    }
*/
 .textanimation.brown{
		    color:#602f04;
}

.textanimation.red{
		    color:#de133b;
}

.textanimation.pink{
		    color:#e0218a;
}

.textanimation.blue{
		    color:#000;
}

.textanimation.green{
		    color:#006a4e;
}

.textanimation.orange{
		    color:black;
}

.textanimation.purple{
		    color:#ffef01;
}

.textanimation.black{
		    color:#ff4500;
}

#halloween_colour h4.black,
#halloween_colour h4.pink,
#halloween_colour h4.green,
#halloween_colour h4.orange,
#halloween_colour h4.blue,
#halloween_colour h4.brown,
#halloween_colour h4.red,
#halloween_colour h4.purple{
	font-size: 0.85em;
	letter-spacing: 0.08rem;
	border:1px solid;
	padding:0.5%;
	width:70%;
	margin: 30px auto;
	font-weight: normal;
}

#halloween_colour h4.pink{
	color:#ff1896;
}
#halloween_colour h4.green{
	color:#006a4e;
}
#halloween_colour h4.orange{
	color:black;
}
#halloween_colour h4.blue{
	color:#000;
}
#halloween_colour h4.brown{
	color:#602f04;
}
#halloween_colour h4.red{
	color:#e51a4c ;
}

#halloween_colour h4.purple{
	color:#ffef01;
}

#halloween_colour h4.black{
	color:#ff4500;
}

#halloween_colour h1 span{
	width: 100%;
	font-size: 0.65em;
	color:black;
	font-family: 'Sweet Romance', sans-serif;
	font-weight: normal;
	letter-spacing: 0.01em;	                                               
}

#halloween_colour h2{
	margin: 40px auto 30px;
	width: 100%;
	font-size: 2.5em;
	color:white;
	font-family: 'TT Livret Subhead Trl', sans-serif;
	font-weight: normal;
	letter-spacing: 0.02em;
	                                               
}

#halloween_colour h2.stylesnap{
	width: 100%;
	font-size: 2em;
	color:black;
	margin: 0px auto 0px!important;
}

#halloween_colour p{
	font-size: 0.95em!important;
	line-height: 180%!important;
}

#halloween_colour .halloween_colour_wrap{
	width:100%;
	max-width:1000px;
	margin:0px auto;
	padding:0;
	text-align: center;
}

#halloween_colour p.main_text{
	width: 100%;
	margin: 20px auto 60px!important;
	text-align: center;
}

#halloween_colour section{
	width: 100%;
	padding: 50px 0;
}

#halloween_colour section.pickupfeature{
	background: #fffdd6;
}

#halloween_colour .flex{
 display: -webkit-flex; /* Safari */
 display: flex;
 -webkit-flex-wrap: wrap; /* Safari */
 flex-wrap: wrap;
 width: 100%;
 position: relative;
}

#halloween_colour ul.slider li img{
	padding: 1%;
}

/* pickupstyling */

#halloween_colour section.pickupstyling_pink{
	background: #f5c9d6;
}

#halloween_colour section.pickupstyling_black{
	background: black;
}

#halloween_colour section.pickupstyling_blue{
	background: #0167a7;
}

#halloween_colour section.pickupstyling_green{
	background: #c0d8b7;
}

#halloween_colour section.pickupstyling_yellow{
	background: #f7e8ab;
}

#halloween_colour section.pickupstyling_red{
	background: #ff9696;
}

#halloween_colour section.pickupstyling_white{
	background: #f1f1f1;
}

#halloween_colour section.pickupstyling_orange{
	background: #FF7F50;
}

#halloween_colour section.pickupstyling_brown{
	background: #9a826a;
}

#halloween_colour section.pickupstyling_purple{
	background: #7D3C98;
}

#halloween_colour .pickupstyle_box{
	position: relative;
	height: 120vw;
}

#halloween_colour .pickupstyle_box > div {
	position: absolute;
}

#halloween_colour .pickupstyle_box .image{
	z-index: 1;
}

#halloween_colour .pickupstyle_box .text{
	height: 60vw;
}

#halloween_colour .pickupstyle_box .text .text_inner{
	text-align: left;
}

#halloween_colour .pickupstyle_box .text .text_inner img{
	width: 40%;
	max-width: 200px;
}

#halloween_colour .flex div p{
	font-size: 0.85em!important;
	line-height: 180%;
	text-align: center;
	margin: 0px auto 15px;
	background: white;
}

#halloween_colour .staffstyling p.attention{
	margin: 0 auto 20px;
}



#halloween_colour .staffname{
	margin: 10px auto;
	line-height: 150%;
}


#halloween_colour .colourlist,
#halloween_colour .itemlist,
#halloween_colour .itemlist01,
#halloween_colour .itemlist02{
	margin: 0 auto;
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	align-items: flex-start;
	width: 100%;
	justify-content: center;
}


#halloween_colour .colour .colourlist {
	margin: 30px auto;
	width: 100%;
	max-width: 1000px;
}

#halloween_colour .colourlist div {
	flex-basis: calc(100% / 4);
	padding: 2%;
	margin: auto;
}

.img_wrap img{
  width: 100%;
  cursor: pointer;
  transition-duration: 0.3s;
	
}
.img_wrap:hover img{
  opacity: 0.6;
  transition-duration: 0.3s;
  box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
  transform: translateY(-10px);	
}

/* 購入ボタン */


#halloween_colour .itemlist div {
	flex-basis: calc(100% / 3);
	padding: 2%;
	margin-bottom: 10px;
}
#halloween_colour .itemlist01 div {
	flex-basis: calc(100% / 1);
	padding: 2%;
	margin-bottom: 10px;
}

#halloween_colour .itemlist02 div {
	flex-basis: calc(100% / 2);
	padding: 2%;
	margin-bottom: 10px;
}

#halloween_colour .itemlist p.itemname,
#halloween_colour .itemlist01 p.itemname,
#halloween_colour .itemlist02 p.itemname{
	text-align: center;
	margin: 5px auto 3px!important;
	line-height: 180%;
	overflow: visible;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	font-size: 0.85em!important;
	text-align: center;
}

#halloween_colour .itemlist p.price,
#halloween_colour .itemlist01 p.price,
#halloween_colour .itemlist02 p.price{
	margin: 0 auto!important;
	text-align: center;
}

#halloween_colour .itemlist p.price span,
#halloween_colour .itemlist01 p.price span,
#halloween_colour .itemlist02 p.price span{
	color: #C52F32;
	font-size: 1.2em!important;
	font-weight: bold;
}
#halloween_colour a.buy {
	display: block;
	max-width: 90px;
	margin: 10px auto;
	padding: 12px 0;
	text-align: center;
	border: 1px solid #263F5B;
	background: #fff;
	color: #263F5B;
	transition: 0.6s;
	font-size: 0.8em!important;
	border-radius: 8px;
}

#halloween_colour a.buy:hover {
	background: #263F5B;
	text-align: center;
	border: 1px solid #fff;
	color: #fff;
}


#halloween_colour a.buy.purple {
	display: block;
	max-width: 90px;
	margin: 10px auto;
	padding: 12px 0;
	text-align: center;
	border: 1px solid #7D3C98;
	background: #fff;
	color: #9400d3;
	transition: 0.6s;
	border-radius: 8px;
	font-weight: bold;
}

#halloween_colour a.buy.purple:hover {
	background: #7D3C98;
	text-align: center;
	border: 1px solid #fff;
	color: #fff;
}

#halloween_colour a.buy.red {
	display: block;
	max-width: 90px;
	margin: 10px auto;
	padding: 12px 0;
	text-align: center;
	border: 1px solid #ff9696;
	background: #fff;
	color: #dc143c;
	transition: 0.6s;
	border-radius: 8px;
	font-weight: bold;
}

#halloween_colour a.buy.red:hover {
	background: #ff9696;
	text-align: center;
	border: 1px solid #fff;
	color: #fff;
}

#halloween_colour a.buy.green {
	display: block;
	max-width: 90px;
	margin: 10px auto;
	padding: 12px 0;
	text-align: center;
	border: 1px solid #c0d8b7;
	background: #fff;
	color: #2e8b57;
	transition: 0.6s;
	border-radius: 8px;
	font-weight: bold;
}

#halloween_colour a.buy.green:hover {
	background: #c0d8b7;
	text-align: center;
	border: 1px solid #fff;
	color: #fff;
}

#halloween_colour a.buy.orange {
	display: block;
	max-width: 90px;
	margin: 10px auto;
	padding: 12px 0;
	text-align: center;
	border: 1px solid #FF7F50;
	background: #fff;
	color: #ff7f50;
	transition: 0.6s;
	border-radius: 8px;
	font-weight: bold;
}

#halloween_colour a.buy.orange:hover {
	background: #FF7F50;
	text-align: center;
	border: 1px solid #fff;
	color: #fff;
}

#halloween_colour a.buy.blue {
	display: block;
	max-width: 90px;
	margin: 10px auto;
	padding: 12px 0;
	text-align: center;
	border: 1px solid #0167a7;
	background: #fff;
	color: #4997d0;
	transition: 0.6s;
	border-radius: 8px;
	font-weight: bold;
}

#halloween_colour a.buy.blue:hover {
	background: #0167a7;
	text-align: center;
	border: 1px solid #fff;
	color: #fff;
}

#halloween_colour a.buy.brown {
	display: block;
	max-width: 90px;
	margin: 10px auto;
	padding: 12px 0;
	text-align: center;
	border: 1px solid #9a826a;
	background: #fff;
	color: #602f04 ;
	transition: 0.6s;
	border-radius: 8px;
	font-weight: bold;
}

#halloween_colour a.buy.brown:hover {
	background: #9a826a;
	text-align: center;
	border: 1px solid #fff;
	color: #fff;
}

#halloween_colour a.buy.pink {
	display: block;
	max-width: 90px;
	margin: 10px auto;
	padding: 12px 0;
	text-align: center;
	border: 1px solid #f5c9d6;
	background: #fff;
	color: #f77fbe ;
	transition: 0.6s;
	border-radius: 8px;
	font-weight: bold;
}

#halloween_colour a.buy.pink:hover {
	background: #f5c9d6;
	text-align: center;
	border: 1px solid #fff;
	color: #fff;
}

#halloween_colour a.buy.white {
	display: block;
	max-width: 90px;
	margin: 10px auto;
	padding: 12px 0;
	text-align: center;
	border: 1px solid #f1f1f1;
	background: #fff;
	color: #a9a9a9 ;
	transition: 0.6s;
	border-radius: 8px;
	font-weight: bold;
}

#halloween_colour a.buy.white:hover {
	background: #f1f1f1;
	text-align: center;
	border: 1px solid #a9a9a9;
	color: #a9a9a9;
}

#halloween_colour a.buy.black {
	display: block;
	max-width: 90px;
	margin: 10px auto;
	padding: 12px 0;
	text-align: center;
	border: 1px solid #000;
	background: #fff;
	color: #000 ;
	transition: 0.6s;
	border-radius: 8px;
	font-weight: bold;
}

#halloween_colour a.buy.black:hover {
	background: #000;
	text-align: center;
	border: 1px solid #fff;
	color: #fff;
}

#halloween_colour .buyotherred a{
	display: block;
	width: 100%;
	max-width: 35%;
	padding: 10px 0;
	text-align: center;
	border: 1px solid #de133b;
	background: #de133b;
	color: #FFF;
	transition: 0.6s;
	margin: 25px auto 25px;
	border-radius: 8px;
	font-weight: normal;
	text-decoration: none;
}

#halloween_colour .buyotherred a:hover{
	background: #ff9696;
	text-align: center;
	border: 1px solid #de133b;
	color: #de133b;
}


#halloween_colour .buyotherpink a{
	display: block;
	width: 100%;
	max-width: 35%;
	padding: 10px 0;
	text-align: center;
	border: 1px solid #e0218a;
	background: #e0218a;
	color: #FFF;
	transition: 0.6s;
	margin: 25px auto 25px;
	border-radius: 8px;
	font-weight: normal;
	text-decoration: none;
}

#halloween_colour .buyotherpink a:hover{
	background: #f5c9d6;
	text-align: center;
	border: 1px solid #e0218a;
	color: #e0218a;
}

#halloween_colour .buyothergreen a{
	display: block;
	width: 100%;
	max-width: 35%;
	padding: 10px 0;
	text-align: center;
	border: 1px solid #006a4e;
	background: #006a4e;
	color: #FFF;
	transition: 0.6s;
	margin: 25px auto 25px;
	border-radius: 8px;
	font-weight: normal;
	text-decoration: none;
}

#halloween_colour .buyothergreen a:hover{
	background: #c0d8b7;
	text-align: center;
	border: 1px solid #006a4e;
	color: #006a4e;
}

#halloween_colour .buyotherbrown a{
	display: block;
	width: 100%;
	max-width: 35%;
	padding: 10px 0;
	text-align: center;
	border: 1px solid #602f04;
	background: #602f04;
	color: #FFF;
	transition: 0.6s;
	margin: 25px auto 25px;
	border-radius: 8px;
	text-decoration: none;
	font-weight: normal;
}

#halloween_colour .buyotherbrown a:hover{
	background: #9a826a;
	text-align: center;
	border: 1px solid #602f04;
	color: #602f04;
}

#halloween_colour .buyotherpurple a{
	display: block;
	width: 100%;
	max-width: 35%;
	padding: 10px 0;
	text-align: center;
	border: 1px solid #ba55d3;
	background: #ba55d3;
	color: #FFF;
	transition: 0.6s;
	margin: 25px auto 25px;
	font-weight: normal;
	border-radius: 8px;
	text-decoration: none;
}

#halloween_colour .buyotherpurple a:hover{
	background: #7D3C98;
	text-align: center;
	border: 1px solid #ba55d3;
	color: #ba55d3;
}

#halloween_colour .buyotherblue a{
	display: block;
	width: 100%;
	max-width: 35%;
	padding: 10px 0;
	text-align: center;
	border: 1px solid #003366;
	background: #003366;
	color: #FFF;
	transition: 0.6s;
	margin: 25px auto 25px;
	font-weight: normal;
	border-radius: 8px;
	text-decoration: none;
}

#halloween_colour .buyotherblue a:hover{
	background: #0167a7;
	text-align: center;
	border: 1px solid #003366;
	color: #003366;
}

#halloween_colour .buyotherorange a{
	display: block;
	width: 100%;
	max-width: 35%;
	padding: 10px 0;
	text-align: center;
	border: 1px solid #ff4f00;
	background: #ff4f00;
	color: #FFF;
	transition: 0.6s;
	margin: 25px auto 25px;
	border-radius: 8px;
	font-weight: normal;
	text-decoration: none;
}

#halloween_colour .buyotherorange a:hover{
	background: #FF7F50;
	text-align: center;
	border: 1px solid #ff4f00;
	color: #ff4f00;
}

#halloween_colour .buyotherblack a{
	display: block;
	width: 100%;
	max-width: 35%;
	padding: 10px 0;
	text-align: center;
	border: 1px solid #fff;
	background: #fff;
	color: #000;
	transition: 0.6s;
	margin: 25px auto 25px;
	border-radius: 8px;
	font-weight: normal;
	text-decoration: none;
}

#halloween_colour .buyotherblack a:hover{
	background: #000;
	text-align: center;
	border: 1px solid #fff;
	color: #fff;
}


.balloon.red {
  color: #dc143c;
  background: white;
}

.balloon.green {
  color: #2e8b57;
  background: white;
}

.balloon.orange {
  color: #ff7f50;
  background: white;
}

.balloon.blue {
  color: #4997d0;
  background: white;
}

.balloon.brown {
  color: #602f04 ;
  background: white;
}

.balloon.pink {
  color: #f77fbe ;
  background: white;
}

.balloon.white {
  color: #a9a9a9 ;
  background: white;
}

.balloon.black {
  position: relative;
  display: inline-block;
  max-width: 100%;
  color: #36454f ;
  background: white;
}



.balloon {
  position: relative;
  display: inline-block;
  margin: 0.5em 0;
  padding: 7px 20px;
  max-width: 100%;
  color: #555;
  font-size: 15px;
  background: white;
  border-radius: 10px;
}

.balloon:before {
  content: "▼こちらも一緒にチェック▼";
  /*position: absolute;*/
  top: 100%;
  left: 50%;
  margin: auto;
  /*border: 10px solid transparent;
  border-top: 10px solid white;*/
}

.balloon p {
  margin: 0;
  padding: 0;
}



/* 回遊リンク */

#halloween_colour .Banner4 {
	text-align: center;
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

#halloween_colour .Banner4 h3 {
	font-size: 20px;
	margin: 35px auto;
	padding: 15px 0;
	border-top: double #000;
	border-bottom: 1px solid #000;
	color: #000;
}

#halloween_colour .Banner4 ul {
	display:inline;
}

#halloween_colour .Banner4 ul li {
	display:inline-block;
	width: 47% !important;
	margin: 1% 1% 2% 1%;
}




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

.pc_none{
	display: none!important;
}
	

	
	#halloween_colour .pc_header .wrap{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	position: relative;
}	
	
	
#halloween_colour .pc_wrap{
	width:100%;
	max-width:1000px;
	margin:0 auto;
	padding:0;
	text-align: center;
}

/* pickupstyling */

#halloween_colour .pickupstyle_box{
	height: 825px;
}

#halloween_colour .pickupstyle_box .text{
	height: 300px;
	width: 100%;
}

#halloween_colour .pickupstyle_box .text .text_inner{
	width: 30%;
}

#halloween_colour .pickupstyle_box .text .text_inner img{
	width: 40%;
	max-width: 150px;
}

#halloween_colour .flex div{
	width: calc(100% / 3);
	padding: 2%;
}

#halloween_colour .staffstyling p{
	margin-top: 10px!important;
}

/* ヘッダー・フッターの崩れを直す */

#news_detail .detail{
	width:100%!important;
}

#news_detail .detail .head{
	width: 1000px!important;
	margin: 0 auto 50px!important;
}

#news_detail .detail .content p:first-child{
	margin: 0 auto;
	max-width: 1000px!important;
}

#topicpath{
	width: 1168px;
	margin: 0 auto;
}

.paging{
	width: 1000px;
	margin: 0 auto;
}

.item_category_links{
	width: 1168px;
	margin: 100px auto 0;
}

/* Slider */

.slider {
	width: 100%;
	margin: 0 auto;
}

.slider .slick-prev,.slider .slick-next{
	width:20px;
	height:0;
	padding:15px;
	outline:none;
	overflow:hidden;
	position:absolute;
	top:40%;
	border:none;
	cursor:pointer;
	border-radius: 12%;
	color: rgba(0,0,0,0);
}

.slider .slick-prev{
	left:-35px;
	background-image:url(https://www.peetonline.com/images/all/2023/halloween_colour/left.png);
	background-repeat: no-repeat;
	background-position-x: 0;
	background-position-y: 0;
	background-size: contain;
	z-index: 99;
}
.slider .slick-next{
	right:-35px;
	background-image:url(https://www.peetonline.com/images/all/2023/halloween_colour/right.png);
	background-repeat: 0;
	background-position-x: 0;
	background-position-y: 0;
	background-size: contain;
	z-index: 99;
}

}

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

.sp_none {
	display:none;
}
	
/* ------------------ */
/* フッター */
/* ------------------ */
/* メニューをページ下部に固定 */
#fixed-footer-menu {
  position: fixed;
  width:100%;
  margin-left:-15px;
  bottom: 0px;
  opacity: 1;
  z-index: 100;
  font-family:'TT Livret Subhead Trl', sans-serif;
  letter-spacing: 0.08em;
}

/* メニューを横並びにする */
#fixed-footer-menu ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  background: #fff;
}

/* メニューの要素 */
#fixed-footer-menu li {
  justify-content: center;
  align-items: center;
  width: 50%; /* 要素が5つの場合（100/5） */
  padding: 0;
  margin: 0;
}

/* メニューのボタン */
#fixed-footer-menu li a {
  color: #333;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 0px 10px 0px;
  text-decoration: none;
}
	
/* メニューgreenのボタン */
#fixed-footer-menu li a.green_footer {
  color: #333;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 0px 10px 0px;
  text-decoration: none;
  background-color: #c0d8b7;
}	

	
/* メニューのbrownボタン */
#fixed-footer-menu li a.brown_footer {
  color: #333;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 0px 10px 0px;
  text-decoration: none;
  background-color: #9a826a;
}		
	
/* メニューpinkのボタン */
#fixed-footer-menu li a.pink_footer {
  color: #333;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 0px 10px 0px;
  text-decoration: none;
  background-color: #f5c9d6;
}	

/* メニューのredボタン */
#fixed-footer-menu li a.red_footer {
  color: #333;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 0px 10px 0px;
  text-decoration: none;
  background-color: #ff9696;
}		
	
/* メニューのpurpleボタン */
#fixed-footer-menu li a.purple_footer {
  color: #000;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 0px 10px 0px;
  text-decoration: none;
  background-color: #7D3C98;
}		
	
/* メニューのblackボタン */
#fixed-footer-menu li a.black_footer {
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 0px 10px 0px;
  text-decoration: none;
  background-color: #000;
}	

/* メニュータイトル */
#fixed-footer-menu li p {
  font-size: 4.0vw!important; /* メニュータイトルのフォントサイズ */
  /*font-weight: bold;*/
}

/* アイコンのサイズを調整 */
.footer-icon {
  font-size: 20px;
}	
	

/* ------------------ */
/* フッター */
/* ------------------ */
/* メニューをページ下部に固定 */
#fixed-footer-menu2 {
  position: fixed;
  width: 100%;	
  margin-left: -15px;
  bottom: 10.5vw!important;
  opacity: 1;
  z-index: 100;
  font-family: 'TT Livret Subhead Trl', sans-serif;
  letter-spacing: 0.08em;
}

/* メニューを横並びにする */
#fixed-footer-menu2 ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  background: #fff;
}

/* メニューの要素 */
#fixed-footer-menu2 li {
  justify-content: center;
  align-items: center;
  width: 50%; /* 要素が5つの場合（100/5） */
  padding: 0;
  margin: 0;
}

/* メニューのボタン */
#fixed-footer-menu2 li a {
  color: #333;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 0px 20px 0px;
  text-decoration: none;
}
			
	
/* メニューのorangeボタン */
#fixed-footer-menu2 li a.orange_footer {
  color: #000;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 0px 10px 0px;
  text-decoration: none;
  background-color: #FF7F50;
}
	
	
/* メニューblueのボタン */
#fixed-footer-menu2 li a.blue_footer {
  color: #000;
  text-align: center;
  display: block;
  width: 100%;
  padding: 10px 0px 10px 0px;
  text-decoration: none;
  background-color:#0167a7;
}	
	
		
/* メニュータイトル */
#fixed-footer-menu2 li p {
  font-size: 4.0vw!important; /* メニュータイトルのフォントサイズ */
  /*font-weight: bold;*/
}	
	
	
.balloon:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 45%;
  margin: auto;
  border: 10px solid transparent;
  border-top: 10px solid white;
}	
	


#halloween_colour h1{
	margin: 4vw auto 2vw;
	width: 100%;
	font-size: 7vw;
	color:black;
	font-family: 'TT Livret Subhead Trl', sans-serif;
	font-weight: normal;
	letter-spacing: 0.02em;
	line-height: 130%;
	                                               
}

#halloween_colour h1 span{
	font-size: 7vw;
	color:black;
	font-family: 'Sweet Romance', sans-serif;
	font-weight: normal;
	letter-spacing: 0.01em;	                                               
}	
	
#halloween_colour h4.black,	
#halloween_colour h4.pink,
#halloween_colour h4.green,
#halloween_colour h4.orange,
#halloween_colour h4.blue,
#halloween_colour h4.brown,
#halloween_colour h4.red{
	font-size: 0.8em;
}
	
	
/*SP用underline*/
.border{
	position: relative;
	text-align: center;
	font-size: 18px;
}

.border:before{
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 0;
	border-bottom: solid 1px #000;
	transform: translateX(-50%);
	animation: border_anim 3s linear forwards;
}
		
#halloween_colour h2{
	font-size: 5.5vw;
	color: white;
}

#halloween_colour h2{
	margin: 20px auto 0px;
	width: 100%;
}	
	
#halloween_colour h2.stylesnap{
	font-size: 6.0vw;
	color: black;
	width:100%;
}


#halloween_colour p,
#halloween_colour .itemlist{
	font-size: 3.125vw!important;
	line-height: 180%;
}
	
#halloween_colour p.main_text{
	width: 90%;
	margin: 0px auto 40px!important;
	text-align: left;
}

#halloween_colour section{
	padding: 10px 0;
}

#halloween_colour .itemlist{
	line-height: 150%;
}

#halloween_colour .flex{
	width: 90%;
	margin: 0 auto;
}

#halloween_colour .flex div{
	width: calc(100% / 2);
	padding: 1% 2%;
}

#halloween_colour .flex div p{
	font-size: 2.5vw!important;
	margin: 0px auto 15px;
}
	
	
	
	
.textanimation{
            font-size: 2.5vw;
			padding:2%;
		   width:85%;
        }	
#halloween_colour h4.black,	
#halloween_colour h4.pink,
#halloween_colour h4.green,
#halloween_colour h4.orange,
#halloween_colour h4.blue,
#halloween_colour h4.brown,
#halloween_colour h4.red,
#halloween_colour h4.purple{
	font-size: 2.5vw;
	letter-spacing: 0.05rem;
	margin:20px auto;
	width:95%;
}	
	

/* BUY SP */	
#halloween_colour .itemlist div {
	flex-basis: 50%;
	padding: 1% 2%;
	margin-bottom: 10px;
}
	
#halloween_colour .itemlist01 p.itemname,
#halloween_colour .itemlist02 p.itemname,
#halloween_colour .itemlist p.itemname{
	font-size: 2.7vw!important;
	text-align: center;
}
	
	
#halloween_colour .itemlist p.price,
#halloween_colour .itemlist01 p.price,
#halloween_colour .itemlist02 p.price{
	font-size: 3.5vw!important;
	line-height: 180% !important;
	margin:0px auto !important;
}	
	
	
#halloween_colour a.buy {
	font-size: 3vw!important;
}	
	
#halloween_colour a.buy.red,
#halloween_colour a.buy.blue,
#halloween_colour a.buy.green,
#halloween_colour a.buy.orange,
#halloween_colour a.buy.brown,
#halloween_colour a.buy.pink,
#halloween_colour a.buy.white,
#halloween_colour a.buy.black{
	max-width: 75px;
	padding: 10px 0;
}

#halloween_colour .buyotherred a,
#halloween_colour .buyotherpink a,
#halloween_colour .buyothergreen a,
#halloween_colour .buyotherbrown a,
#halloween_colour .buyotherblue a,
#halloween_colour .buyotherorange a,
#halloween_colour .buyotherblack a,
#halloween_colour .buyotherpurple a{
	max-width: 75%;
	font-size: 3vw;
}		
		
#halloween_colour .Banner4 h3 {
	font-size: 15px;
	margin: 35px auto;
	padding: 10px 0;
	border-top: double #000;
	border-bottom: 1px solid #000;
	color: #000;
}
	
#halloween_colour .colourlist div {
	flex-basis: calc(100% / 2);
	padding: 1%;
	margin: auto;
}	
	

/* 100%表示用 */

#news_detail .detail{
	margin: 0 auto;
}

/* 回遊リンク */

#halloween_colour .Banner4 {
	text-align: center;
	width: 100%;
}

#halloween_colour .Banner4 ul{
	margin: 0 auto;
	width: 95%;
}

#halloween_colour .Banner4 ul li {
	width: 95% !important;
	margin: 0 0 5% 0 !important;
}
	
/* ヘッダー */

#news_detail .detail .content p:first-child img{
	display: none;
}

#halloween_colour .header{
	position: relative;
	height: 315vw;
}

#halloween_colour .header .titlelogo{
	position: absolute;
	bottom: 50vw;
	left: 0;
	right: 0;
	width: 85%;
	/*width:100%;*/
	margin: auto;
}

	
}
