/* ***********************************
 *    Ire's CSS Reset & Base
 * *********************************** */

/* Reset margin, padding, border */
html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
    margin: 0;
    padding: 0;
    border: 0;
}

/* Typography */
html { font-size: 62.5%;}
body { font-size: 1.6rem; line-height: 1.4;}
* {
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    word-wrap: break-word;
}
*:before,
*:after { box-sizing: inherit;}
a {
    &:visited { color: inherit;}
}
/* Layout */
article,
aside,
footer,
header,
nav,
section,
picture,
main { display: block;}

/* Elements */
table { border-collapse: collapse; border-spacing: 0;}
ol, ul { list-style: none;}
img, video { max-width: 100%;}
img { border-style: none;}
blockquote {
    quotes: none;
}
blockquote:after,
blockquote:before { content: ""; content: none;}
q { quotes: none;}
q:after,
q:before { content: ""; content: none;}
/* Attributes & states */
[hidden] { display: none !important;}
[disabled] { cursor: not-allowed;}
:focus:not(:focus-visible) { outline: none;}

/* Utility classes */
.sr-only {
    position: absolute;
    clip: rect(1px, 1px, 1px, 1px);
    left: -9999px;
    top: -9999px;
}
button {
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/*|||||||||| COMMON ||||||||||*/
@import url('https://fonts.googleapis.com/css2?family=Red+Hat+Text:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
body {
	color: #506069;
  font-size: 14px;
  font-family: 'Red Hat Text', '游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'Osaka', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  margin: 0 auto;
  width: 100%;
}
a:link {  color: #506069; text-decoration:none;}
a:visited {  color: #506069;}
a:hover {  text-decoration: underline;}
a img.hover {filter:alpha(opacity=100);opacity:1;-webkit-transition:opacity 0.1s linear;-moz-transition:opacity 0.1s linear;-o-transition:opacity 0.1s linear;transition:opacity 0.1s linear;}
a:hover img.hover, a:focus img.hover {filter:alpha(opacity=70);opacity:0.7;-webkit-transition:opacity 0.1s linear;-moz-transition:opacity 0.1s linear;-o-transition:opacity 0.1s linear;transition:opacity 0.1s linear;}
footer { font-family: 'Red Hat Text','游ゴシック体', 'Yu Gothic', 'YuGothic', 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', 'Osaka', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; letter-spacing: 0.2em;}

/* sp/pc */
.pc {
	display: none;
}
@media screen and (min-width: 769px) {
	.pc { display: block;}
	.sp { display: none;}
}
/*.ly */
.ly_cont_inner {
	max-width: 1100px;
	margin: 0 auto 60px;
	padding-bottom: 20px;
}
.ly_flx {
	display: flex;
	position: relative;
}
.ly_flx.__wrap {
	flex-wrap: wrap;
}
.ly_flx.__center {
	justify-content: center;
}

/*.el */
.el_gray {
	background: #F0F1F1;
}
.el_dgray {
	background: #C0C6C9;
}

/*text*/
.el_Headline3 {
	font-size: 2.8rem;
	font-weight: normal;
	padding: 100px 0 60px;
	text-align: center;
}
.txt-c { text-align: center;}
.txt-l { text-align: left;}
.txt-r { text-align: right;}

.bl_btn { margin: 20px auto; max-width: 320px; text-align: center;}
.bl_btn a {
	background: #506069;
	border-radius: 4px;
	color: #fff;
	padding: 14px 24px;
	text-decoration: none;
	transition: all 0.6s;
}
.bl_btn a:hover {
	background: #99A1A5;
	transition: all 0.6s;
}
/*////////////////////
     header
 ////////////////////*/
header {
    padding: 20px;
}
h1 {
    max-width: 120px;
    margin: 0 auto;
    text-align: center;
}
/* header pc */
@media screen and (min-width: 769px) {
	header {
		display: flex;
		justify-content: space-between;
		max-width: 1100px;
		margin: 0 auto;
		padding: 50px 20px 30px;
		width: 100%;
	}
	header h1 { width: 20%; max-width: 152px; margin-left: 0; text-align: left;}
	header .bl_gnav { width: 80%; text-align: right;}
	header nav ul { display: inline; text-align: right;}
	header nav ul li {
		display: inline-block;
		font-size: 15px;
		font-family: 'Red Hat Text', sans-serif;
		margin-left: 18px;
		margin-top: 14px;
	}
}
/*////////////////////
     footer
 ////////////////////*/
footer {
	  background: #506069;
	  color: #fff;
	  font-size: 1.3rem;
	  margin: 0 auto;
	  padding: 10px 0 40px;
	  text-align: center;
	}
	footer li { display: none;}
	footer small { font-size: 1.2rem; display: block; padding-top: 20px;}
/*////////////////////
     sp gnav 
 ////////////////////*/
#js_gnav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:0;
    right: -120%;
	width:96%;
    height: 100vh;/*ナビの高さ*/
	background: rgba(80,96,105,0.8);
    /*動き*/
	transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#js_gnav.panelactive{
    right: 0;
}
/*ナビゲーションの縦スクロール*/
#js_gnav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}
/*ナビゲーション*/
#js_gnav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
/*リストのレイアウト設定*/
#js_gnav li{
	list-style: none;
    text-align: center;
}
#js_gnav li a {
	color: #fff;
	text-decoration: none;
	padding:16px 10px;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}
/*========= ボタンのためのCSS ===============*/
.js_gnav_open{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 60px;
    height:50px;
}	
/*×に変化*/	
.js_gnav_open span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 1px;
	background-color: #666;
  	width: 45%;
  }
.js_gnav_open span:nth-of-type(1) {
	top:15px;	
}
.js_gnav_open span:nth-of-type(2) {
	top:23px;
}
.js_gnav_open span:nth-of-type(3) {
	top:31px;
}
.js_gnav_open.active span {
	background-color: #fff;
}
.js_gnav_open.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.js_gnav_open.active span:nth-of-type(2) {
	opacity: 0;
}
.js_gnav_open.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
/* gnav pc */
@media screen and (min-width: 769px) {
	#js_gnav{
		position: relative;
		top:auto;
		right: auto;
		width:100%;
		height: auto;
		background:none;
	}
	#js_gnav ul {
		position: static;
	}
	/*リストのレイアウト設定*/
	#js_gnav li{
		list-style: none;
		text-align: center;
	}
	#js_gnav li a {
		color: #333;
		text-decoration: none;
		padding:0;
		display: inline-block;
		text-transform: uppercase;
		letter-spacing: 0.1em;
		font-weight: normal;
	}
	.js_gnav_open { display: none;}
}
/*////////////////////
     slider 
 ////////////////////*/
.slider {
	width: 100%;
	margin: 0 auto;
}
.slick-slide {
	margin: 0px auto;
}
.slick-slide img {
	width: 100%;
}
.slick-next {
	right: 20px;
	z-index: 900;
}
.slick-prev {
	left: 20px;
	z-index: 900;
}
.slick-prev:before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(-136deg);
	left: 0;
	top: 50%;
	z-index: 900;
}
.slick-next:before {
	content: '';
	position: absolute;
	width: 10px;
	height: 10px;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	right: 0;
	top: 50%;
	z-index: 900;
}
.slick-slide {
	transition: all ease-in-out .3s;
	opacity: .2;
}
.slick-active {
	opacity: .5;
}
.slick-current {
	opacity: 1;
}

/*////////////////////
     Top 
 ////////////////////*/
@media screen and (min-width: 769px) {
	.bl_link_store {
		top: 75vh;
		right: -50px;
		background: #506069 0% 0% no-repeat padding-box;
		border-radius: 0px 0px 4px 4px;
		opacity: 1;
		position: fixed;
		z-index: 999;
		transform: rotate(-90deg);
		border-radius: 4px 4px 0 0px;
		font-size: 1.3rem;
	}
	.bl_link_store a {
		display: inline-block;
		color: #fff;
		padding: 10px 20px;
	}
	.bl_link_store a:hover { text-decoration: normal;}
	}
/* message */
.bl_read_wrap {
	z-index: 998;
	position: relative;
	max-width: 713px;
	margin-left: auto;
	text-align: right;
}
.bl_read_ttl {
	background-color: #fff;
	font-size: 2rem;
	margin-bottom: 0;
	padding: 20px 30px 10px;
	display: inline-block;
	margin-left: auto;
}
.bl_read_message {
	background-color: #fff;
	font-size: 1.5rem;
	padding: 40px 20px 0;
	text-align: left;
	line-height: 2em;
}
/* item list */
.bl_products_wrap {
	padding: 60px 20px;
	text-align: center;
}
.bl_products_items {
	padding: 0 10px 40px;
	width: 50%;
}
.bl_products_items figure {
	line-height: 0;
}
.bl_products_ttl {
    padding: 20px 0 15px;
    font-weight: normal;
    font-size: 1.4rem;
}
.bl_products_price {
    font-size: 1.3rem;
}

/* how to use */
.bl_howto_message {
	padding: 20px;
    position: relative;
}
.bl_howto_txt {
	padding-bottom: 20px;
}
.bl_howto_mov {
    width: 90%;
    margin: 0 auto;
}

.bl_howto_ttl {
	margin: 0 auto;
    text-align: center;
    padding: 0 0 20px;
}
@media screen and (min-width: 769px) {
	/* message */
	.bl_read_wrap {
		margin-top: -80px;
	}
	.bl_read_ttl {
		font-size: 2.4rem;
		margin-bottom: 30px;
		padding: 12px 30px;
	}
	.bl_read_message {
		font-size: 1.5rem;
		padding: 30px 40px;
	}
	/* item list */
	.bl_products_wrap {
		padding: 80px 0;
	}
	.bl_products_items {
		padding: 0 13.5px 40px;
		width: 30%;
	}
	/* how to use */
	.bl_howto_mov {
		width: 50%;
	}
	.bl_howto_message {
		width: 50%;
		padding: 140px 20px 0 50px;
		line-height: 1.8em;
	}
	.bl_howto_ttl {
		position: absolute;
		background: #fff;
		padding: 10px;
		left: -50px;
		top: 50px;
		text-align: left;
	}
	.bl_howto_ttl img {
		min-width: 225px;
	}
}
/*#sb_instagram .sbi_photo img {
	opacity: 0!important;
}

#sb_instagram a.sbi_photo {
    background-image: none!important;
    background-color: #e4e4e4;
    vertical-align: middle;
}*/
#sb_instagram img {
	opacity:0!important;
}
#sb_instagram .sbi_photo {
    display: block;
    text-decoration: none;
    background-size: cover;
}

/*////////////////////
     About 
 ////////////////////*/
.bl_about_inner {
	padding: 40px 0;
}
.bl_about_item {
	margin: 20px auto;
	padding: 20px;
}
.bl_about_txt {
	padding: 20px 0x;
}
.bl_about_txt h4 {
	padding: 10px 0;
}
.bl_about_txt p {
	font-size: 1.5rem;
	line-height: 1.8em;
}
.bl_about_message {
	padding: 20px;
}
.bl_about_message h4 {
	padding: 0 0 20px;
}
.bl_about_message p {
	font-size: 1.5rem;
	line-height: 1.8em;
}
.bl_about_more {
	padding: 40px;
}
.bl_about_more_ttl {
	font-size: 1.8rem;
	padding: 40px 0 20px;
	text-align: center;
}
.bl_about_more_txt {
	line-height: 1.8em;
	text-align: center;
}
.bl_about_mov {
	max-width: 640px;
	margin: 0 auto;
	padding: 40px 20px 0;
}
@media screen and (min-width: 769px) {
	.bl_about_item {
		justify-content: space-between;
		padding: 30px;
	}
	.bl_about_item figure {
		width: 40%;
	}
	.bl_about_txt {
		padding: 0 0 0 40px;
		text-align: right;
		width: 60%;
	}
	.bl_about_txt p {
		font-size: 1.6rem;
	}
	.bl_about_message {
		padding: 0;
		text-align: right;
	}
	.bl_about_message p {
		font-size: 1.6rem;
	}
	.bl_about_mov {
		padding: 80px 20px 0;
	}
}
/*////////////////////
     News 
 ////////////////////*/
.bl_news_wrap {
	max-width: 640px;
	margin: 0 auto 20px;
	padding: 20px;
}
.bl_news_wrap ul li {
	margin: 0 auto 20px;
}
.bl_news_article {
    max-width: 640px;
    margin: 0 auto;
    padding: 0px 20px 80px;
    position: relative;
}
time.txt-date {
    position: absolute;
    right: 20px;
    top: 0;
}
.bl_news_article dl {
    padding: 20px 0 40px;
}

.bl_news_article dl dt {
    font-size: 1.8rem;
    padding: 0 0 20px;
}

.bl_news_article dl dd {
    line-height: 1.8em;
}
@media screen and (min-width: 769px) {
	.bl_news_article {
		padding: 0px 0 80px;
	}
	time.txt-date {
		right: 0;
	}
}

/*////////////////////
     QandA 
 ////////////////////*/
.bl_qa_list {
	max-width: 760px;
	margin: 0 auto 80px;
	padding: 20px;
}
.bl_qa_item {
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 5px 6px 10px -6px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 6px 10px -6px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  margin-bottom: 30px;
  padding: 0 0 20px;
  position: relative;
}
.js-accordion-title {
	padding: 20px 20px 0;
}
.js_tgl_q:before {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #2d2d2e;
  border-right: solid 2px #2d2d2e;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -4px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .js_tgl_q:before {
    right: 20px;
  }
}
.js_tgl_a {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  font-size: 1.5rem;
  height: 0;
  padding: 0 1.5em;
  overflow: hidden;
  opacity: 0;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
.js_tgl_a.is-open {
  background: #f1f6f9;
  margin: 20px 20px 0;
  padding: 10px;
  line-height: 1.6em;
  height: auto;
  opacity: 1;
}
.js-accordion-title.is-active::before {
    position: absolute;
    margin-top: -4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: rotate(136deg);
    transform: rotate(136deg);
	top: 20%;
}
/*////////////////////
     Contact 
 ////////////////////*/
.bl_contact_inner {
	max-width: 500px;
	margin: 0 auto;
	padding: 0 20px 40px;
}
.bl_contact_item {
	margin-bottom: 20px;
}
.bl_contact_item dt {
	font-size: 1.4rem;
	padding-bottom: 10px;
}
.bl_contact_item input,
.bl_contact_item text,
.bl_contact_item textarea {
	min-height: 3.75em;
	width: 100%;
}
input[type="submit" i] {
    display: block;
    margin: 10px auto 40px;
    border: none;
    background: #506069;
    padding: 16px 40px;
    color: #fff;
    border-radius: 4px;
}
input.back {
    display: block;
    margin: 10px auto 40px;
    padding: 16px 40px;
    width: 30%;
}
input.confirm {
    display: block;
    margin: 10px auto 40px;
    padding: 16px 40px;
    width: 65%;
}
@media screen and (min-width: 769px) {
	.bl_contact_inner {
		padding: 100px 20px 80px;
	}
}
/*////////////////////
     PC 
 ////////////////////*/
@media screen and (min-width: 769px) {
	footer {
	  font-size: 93%;
		padding: 50px 0;
	}
	footer li { display: inline;}
	footer small {padding-top: 60px;}
	footer a { padding: 0 10px; letter-spacing: 0.1em;}
	footer a:link { color: #fff;}
	footer a:visited { color: #fff;}
	
	/* img hover zoom */
	.bl_products_img {
	  border: 1px solid #ddd;
	  margin: 0 auto;
	  overflow: hidden;
	  cursor: pointer;
	}
	.bl_products_img img{
	  width: 100%;
	  transition-duration: 0.5s;
	}
	.bl_products_img:hover img{
	  transform: scale(1.2);
	  transition-duration: 0.5s;
	}
}
@media screen and (min-width: 769px) {
	.pagePrev {
		left: 0;
		position:absolute;
		top: 0;
	}
	.pageNext {
		right: 0;
		position:absolute;
		top: 0;
	}
}