@charset "UTF-8";

body {
	font-family: "Lora", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", Verdana, serif;
  /*font-family: 游ゴシック, YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, sans-serif;*/
}
a:link, a:visited {
    text-decoration: none;
    -webkit-transition: ease-out .2s;
    transition: ease-out .2s;
}
a:hover {
    text-decoration: none;
    opacity: .7;
}
h2 {
  font-family: 'Hind Madurai', sans-serif;
  font-size: 3.6rem;
  margin-bottom: 34px;
  text-align: center;
  letter-spacing: 5px;
}
h3 {
  font-size: 3.2rem;
  letter-spacing: -0.01em;
  margin-top: 26px;
}
section {
  margin-bottom: 100px;
}
.wrap {
  max-width: 1050px;
  margin: 0 auto;
 /* background-color: : #dcdcdc;*/
}
.container {
  position: relative;
  padding-top: 58px;
}
/*
header[
----------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2
}
.header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 58px;
  background: #fff;
}
.header-menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 150px;
  margin-right: 60px;
}
.header-logo {
  margin-left: 20px;
}
.header-logo img {
  width: 55%;
  height: auto;
}
.header-menu li a {
  font-family: 游明朝, YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", HG明朝E, "ＭＳ Ｐ明朝", "ＭＳ 明朝", Verdana, serif;
  font-size: 1.4rem;
}

/*
nav[
----------------------------------------------------------- */
.nav-items {
  text-align: center;
  font-size: 1.4rem;
  color: #000;
}
.nav-sns {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  font-size: 2rem;
  /* width:140px; */
}
#nav-toggle {
  position: fixed;
  top: 15px;
  right: 5px;
  height: 32px;
  cursor: pointer;
}
#nav-toggle > div {
  position: relative;
  width: 36px;
}
#nav-toggle span {
  width: 20px;
  height: 1px;
  left: 0;
  display: block;
  background: #000;
  position: absolute;
  transition: top .5s ease, -webkit-transform .6s ease-in-out;
  transition: transform .6s ease-in-out, top .5s ease;
  transition: transform .6s ease-in-out, top .5s ease, -webkit-transform .6s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: 7px;
  /* top: 0; */
}
#nav-toggle span:nth-child(2) {
  top: 14px;
}
#nav-toggle span:nth-child(3) {
  top: 21px;
  /* top: 28px; */
}
/* #nav-toggle:hover span:nth-child(1) {
  top: 4px;
}
#nav-toggle:hover span:nth-child(3) {
  top: 23px;
} */

.open #nav-toggle span {
  background: #000;
}
.open #nav-toggle span:nth-child(1) {
  top: 15px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.open #nav-toggle span:nth-child(2) {
  top: 15px;
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 15px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

/* z-index */
#nav-toggle {
  z-index: 1000;
}

#container {
  z-index: 900;
}
#gloval-nav {
  background: #fff;
  color: #000;
  position: fixed;
  top: 55px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  text-align: center;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 29px;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}

#gloval-nav a {
  font-family: 'Hind Madurai', sans-serif;
  letter-spacing: 5px;
  display: block;
  color: #000;
  text-decoration: none;
  padding: 10px 0;
  transition: color .6s ease;
  font-size: 1.6rem;
  font-weight: 600;
}
#gloval-nav a:hover {
  color: #666;
}
#gloval-nav ul {
  list-style: none;
}
#gloval-nav ul li {
  opacity: 0;
  -webkit-transform: translateX(200px);
          transform: translateX(200px);
  transition: opacity .2s ease, -webkit-transform .6s ease;
  transition: transform .6s ease, opacity .2s ease;
  transition: transform .6s ease, opacity .2s ease, -webkit-transform .6s ease;
}
#gloval-nav ul li:nth-child(2) {
  transition-delay: .15s;
}
#gloval-nav ul li:nth-child(3) {
  transition-delay: .3s;
}
#gloval-nav ul li:nth-child(4) {
  transition-delay: .45s;
}
#gloval-nav ul li:nth-child(5) {
  transition-delay: .6s;
}
#gloval-nav ul li:nth-child(6) {
  transition-delay: .75s;
}
#gloval-nav ul li:nth-child(7) {
  transition-delay: .9s;
}

/* open */
.open {
  overflow: hidden;
}
.open #gloval-nav {
  visibility: visible;
  opacity: 1;
}
.open #gloval-nav li {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  transition: opacity .9s ease, -webkit-transform 1s ease;
  transition: transform 1s ease, opacity .9s ease;
  transition: transform 1s ease, opacity .9s ease, -webkit-transform 1s ease;
}
.sp-other {
  display: none;
}
/*
top-slider[
----------------------------------------------------------- */
.slick_container {
    position:relative;
}
.next {
    position: absolute;
    top: 50%;
    right: 2%;
    z-index: 1;
    cursor: pointer;
    width: 35px;
    height: auto;
}
.next_p {
    position: absolute;
    top: 40%;
    right: 0;
    z-index: 1;
    cursor: pointer;
    width: 35px;
    height: auto;
}
.prev {
    position: absolute;
    top: 50%;
    left: 2%;
    z-index: 1;
    cursor: pointer;
    width: 35px;
    height: auto;
}
.prev_p {
    position: absolute;
    top: 40%;
    left: 0;
    z-index: 1;
    cursor: pointer;
    width: 35px;
    height: auto;
}
.prev:before, .next:before {
   content:"";
}
.top-slider{
  opacity: 0;
  transition: opacity .3s linear;
}
.top-slider.slick-initialized{
  opacity: 1;
}
.thumb-slider{
  opacity: 1;
  transition: opacity .9s linear;
}
.thumb-slider.slick-initialized{
  opacity: 1;
}
#top-slider{
  width: 100%;
  height: auto;
}
#top-slider img {
  max-width: 100%;
  height: auto;
}
.slide-item img{
    width: 100%;
}
#thumbnail-list{
  width: 100%;
  display: flex;
  justify-content: space-around;
}
.thumbnail-item{
  flex: 0 1 20%;
  margin: 5px 2.5px;
  box-sizing: border-box;
  position:relative;
}
.thumbnail-item:first-child{
  flex: 0 1 20%;
  margin: 5px 2.5px 5px 20px;
  box-sizing: border-box;
  position:relative;
}
.thumbnail-item:last-child{
  flex: 0 1 20%;
  margin: 5px 20px 5px 2.5px;
  box-sizing: border-box;
  position:relative;
}
.thumbnail-item:after{
    content:'';
    background-color: rgba(0,0,0,0.5);
    position:absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: .3s opacity linear;
  }
  .thumbnail-current:after{
    opacity: 0;
  }
  .thumbnail-current img{
    width: 100%;
    margin: 0 auto;
  }
  .thumbnail-item img {
    vertical-align: bottom;
  }
  #top-slider2 {
    display: none;
  }
/*
about[
----------------------------------------------------------- */
.inner {
  display: flex;
}
.item {
  width: 50%;
  padding: 20px 10px;
  background-color: #fff;
	display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.item_txt {
  margin-top: 31px;
  font-size: 1.5rem;
  line-height: 2;
}
.sm-txt {
  font-size: 1.2rem;
  margin-top: 20px;
}
.sm-txt {
  font-size: 1.2rem;
  margin-top: 20px;
}
/* #about .more_btn {
    font-family: 'Hind Madurai', sans-serif;
    letter-spacing: 5px;
    position: relative;
    border: 2px solid #000;
    margin: 20px 0 0 0;
    width: 270px;
    height: 52px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 50px;
    cursor: pointer;
}
#about .more_btn:hover {
    background-color: #000;
    color:#fff;
    transition: ease-out .5s;
} */
#about a:hover {
    text-decoration: none;
    opacity: 1;
}
.btn-icon {
  margin-top: 20px;
}
.img-box {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 234px;
}
/*
products[
----------------------------------------------------------- */
#products .btn-icon {
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slider{
  opacity: 0;
  transition: opacity .3s linear;
}
.slider.slick-initialized{
  opacity: 1;
}
/*
voice[
----------------------------------------------------------- */
#insta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
}
#btn-more {
    text-align: center;
}
.items {
    width: 33.3%;
    padding: 10px;
}
.alpha a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha(opacity=70)";
}
#voice .more_btn {
    font-family: 'Hind Madurai', sans-serif;
    letter-spacing: 5px;
    position: relative;
    border: 2px solid #000;
    margin: 40px auto 0;
    width: 270px;
    height: 52px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 50px;
    cursor: pointer;
}
#voice .more_btn:hover {
    background-color: #000;
    color:#fff;
    transition: ease-out .5s;
}
#voice .more_btn span {
	display: inline-block;
	text-decoration: none;
  position: absolute;
  right: 10%;
	transition: transform ease .3s;
}
#voice .more_btn:hover span{
	cursor: pointer;
	text-decoration: none;
	transform: translateY(3px);
}
#voice .btn-icon {
  margin-top: 30px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.voice-inner {
  display: flex;
  padding: 15px 30px;
}
.voice-inner img {
  width: 350px;
  height: 350px;
}
.voice-inner p {
    font-size: 1.3rem;
    line-height: 1.6;
    margin: 20px 0;
}
.voice-inner span {
    font-weight: 900;
    line-height: 1.6;
    margin-left: 10px;
}
.inner-text {
  padding: 0 15px;
}
#cboxLoadedContent {
    background: #fff;
    padding: 10px;
}
/* 前へボタン　*/
#cboxPrevious{
  position:absolute;
  bottom:0;
  top: 50%;
  left:5px;
  background:url(../img/top_arrow_l.svg) no-repeat 0 0;
  width:19px;
	background-size: 15px;
  height:30px;
  text-indent:-9999px;
}
#cboxPrevious:hover{
  background-position: 0 0;
}
/* 次へボタン */
#cboxNext {
  position:absolute;
  bottom:0;
  top: 50%;
  right: 5px;
  background:url(../img/top_arrow_r.svg) no-repeat 0 0;
	width: 19px;
	background-size: 15px;
	height: 30px;
  text-indent:-9999px;
}
#cboxNext:hover {
  background-position:0 0;
}

/*閉じるボタン */
#cboxClose {
  position:absolute;
  bottom:0;
  right:0;
	top: -25px;
  background:url(../img/close.svg) no-repeat 2px 0;
  width:31px;
  height:25px;
  text-indent:-9999px;
}
#cboxClose:hover{
  background-position:2px 0;
}
#cboxOverlay {
    background: #ffffff8f;
}
/*
footer [
----------------------------------------------------------- */
footer {
  background-color: #000;
  color: #999;
  text-align: center;
  padding-bottom: 26px;
}
footer .footer-sns {
  display: flex;
  justify-content: space-around;
  width: 220px;
  padding: 26px 0 20px;
  margin: 0 auto;
}
footer .text {
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
}
footer .text li {
  border-right: 1px solid #999;
  padding: 0 10px;
}
footer .text li:last-child {
  border-right: none;
}
footer p {
  font-size: 1.2rem;
}
.footer-logo {
  margin: 10px auto 0;
  width: 100px;
  font-size: .8rem;
  line-height: 1;
}
.copyright {
  margin-top: 12px;
  font-size: 1rem;
}
footer a {
    color: #999;
}
/*
btn&other [
----------------------------------------------------------- */
.more_btn {
    letter-spacing: 5px;
    position: relative;
    border: 1px solid #000;
    margin: 40px auto 0;
    width: 270px;
    height: 52px;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 50px;
    cursor: pointer;
}
.more_btn:after {
    content: '';
    display: inline-block;
    width: 15px;
    height: 15px;
    background-image: url(../img/products-arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
    right: -30px;
    top: 2px;
    vertical-align: middle;
}
.more_btn:hover:after {
    background-image: url(../img/products-arrow-h.svg);
}
.more_btn:hover {
    background-color: #000;
    color:#fff;
    transition: ease-out .5s;
}
.more_btn span {
	display: inline-block;
	text-decoration: none;
  position: absolute;
  right: 10%;
	transition: transform ease .3s;
}
.more_btn:hover span{
	cursor: pointer;
	text-decoration: none;
	transform: translateX(6px);
}
.anchor{
    display: block;
    padding-top: 150px;
    margin-top: -150px;
}
.slick-slide:focus {
  outline: none;
}
/*
insta popup [
----------------------------------------------------------- */
.mfp-image-holder .mfp-content {
  width: 70%;
}
img.mfp-img {
    padding: 0;
}
.mfp-title p {
    margin-top: 15px;
}
.username {
    display: inline-block;
    font-size: 1.9rem;
    vertical-align: top;
}
.insta-container {
  width: 100%;
  background: white;
  display: flex;
  padding: 20px;
}
.mfp-title img {
    width: 25px;
    border-radius: 50%
}
.insta-left {
  width: 49%;
  display: inline-block;
}
.insta-right {
  width: 49%;
  display: inline-block;
  color: black;
  vertical-align: top;
  padding: 0 1em;
}
.insta-right .mfp-title {
  color: black;
  padding-right: 0;
}
.mfp-bg {
    background: #dcdcdc;
}
.mfp-arrow-right {
    right: 20px;
}
.mfp-arrow-left {
    left: 20px;
}
.sp-on {
  display: none;
}
.img-box {
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-top: 20px;
}
.img-box img {
    width: 234px;
    height: 55px;
		vertical-align: bottom;
}
.img-box .active {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s; /*ゆっくり*/
}
.img-box:hover .active {
  opacity: 1;
}
#products .slick-slide img {
    width: 260px;
    height: auto;
}
#products .slick-slide span {
    text-align: center;
    font-size: 1.5rem;
    /* display: none; */
    visibility:hidden;
    cursor: pointer;
}
.slick-slide {
    text-align: center;
}
.slick-slide a {
   border: none;
   outline:none;
}

sup {
    font-size: 2rem;
}
#controller_box {
    position: absolute;
    bottom: 5px;
    text-align: center;
    width: 100%;
}
#controller_box span {
    display: inline-block;
    margin: 0 3px;
    cursor: pointer;
}
/*title-fadein*/
.fadein {
 opacity: 0;
 transform : translate(0, 25px);
 transition : all 1500ms;
}

.fadein.scrollin{
 opacity: 1;
 transform: translate(0, 0);
}
/*hero_slider*/
.hero01{
  display: block;
}
.hero02{
  display: none;
}
/*
about-page [
----------------------------------------------------------- */
.about-top {
	/*background-image: url(../img/about-top.jpg);
	background-size: cover;
	background-position: center;*/
	/* background-attachment: fixed; */
	/* display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;*/
	/*height: 100vh;*/
  }
.about-top img{
  width:100%;
}
.page-title {
	margin-bottom: 20px;
}

.about-wrap {
  max-width: 1050px;
  margin: 0 auto;
}
.about-concept {
	text-align: center;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: 10px 0;
  width: 290px;
  margin: 0 auto;
}
.about-wrap h3 {
	font-size: 3.2rem;
	text-align: center;
	background-color: #ffffffb5;
	padding: 15px 0;
	margin-top: 0;
	width: 100%;
	font-weight: 200;
}
.about-wrap p {
	text-align: center;
	line-height: 2;
	/* margin-bottom: 100px; */
}
.sub-title {
  text-align: center;
	font-size: 2.7rem;
  letter-spacing: 5px;
	font-weight: 200;
}
.sub-title2 {
    text-align: center;
    font-size: 2.7rem;
    letter-spacing: 5px;
    margin-bottom: 50px;
		font-weight: 200;
}
.about-banner-01 {
	/*background-image: url('../img/about-banner_01.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
  width: 100%;
  height: 150px;
	display: flex;
	align-items: center;
	margin: 100px 0;*/
  width:100%;

}
.about-banner-02 {
	/*background-image: url('../img/about-banner_02.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
  width: 100%;
  height: 150px;
	display: flex;
	align-items: center;
	margin: 100px 0;*/
  width:100%;
}
.about-banner-03 {
	/*background-image: url('../img/about-banner_03.jpg');
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
  width: 100%;
  height: 150px;
	display: flex;
	align-items: center;
	margin: 100px 0;*/
  width:100%;
}
.about-wrap span{
	font-size: 1.4rem;
	margin-left: 10px;
	letter-spacing: 5px;
	vertical-align: middle;
}
.under-hr {
	width: 180px;
  margin: 100px auto;
  height: 2px;
  background-color: #000;
}
.life {
	display: flex;
	position: relative;
}
.life img {
	padding: 10px;
	cursor: pointer;
}
.life2 {
	display: flex;
	justify-content: space-between;
	position: relative;
}
.life2 img {
	width: 100%;
	height: auto;
	padding: 10px;
	cursor: pointer;
}
/* .life2 img:nth-child(2n) {
	width: 40%;
	height: auto;
	padding: 10px;
} */
.life-content1 {
	background-color: #d7cfca;
	position: absolute;
	padding: 20px;
	bottom: 0;
  left: -45px;
}
.life-content2 {
	background-color: #d7cfca;
	position: absolute;
	padding: 20px;
	bottom: 0;
	right: -45px;
}
.life-content3 {
	background-color: #d7cfca;
	position: absolute;
	padding: 20px;
	bottom: -70px;
  left: -45px;
}
.life-content4 {
	background-color: #d7cfca;
	position: absolute;
	padding: 20px;
	bottom: -50px;
	right: 54.5%;
}
.life-content5 {
	background-color: #d7cfca;
	position: absolute;
	padding: 20px;
	bottom: -60px;
	right: 66px;;
}
.life p {
	line-height: 1.4;
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 0;
}
.life2 p {
	line-height: 1.4;
  text-align: left;
  font-size: 1.4rem;
  margin-bottom: 0;
}
.test1 {
	width: 30%;
	position: relative;
}
.test2 {
	width: 44%;
	position: relative;
}
.test3 {
	width: 30%;
	position: relative;
}
.under {
    width: 200px;
    height: 5px;
    margin: 100px auto;
    background-color: #000;
		border:none
}
.line-contents hr {
	border: none;
	transform: rotate(-6deg);
	width: 0%;
	height: 1px;
	background-color: #000;
	margin-bottom: 0;
  margin-top: 20px;
	transition: .3s;
}
.line-contents {
    position: relative;
    width: 300px;
    height: 5vh;
		margin: 0 auto;
}
.pc-off {
	display: none;
}
/*
products-page [
----------------------------------------------------------- */
.products-top {
	/*background-image: url(../img/products-top-pc.jpg);*/
	background-size: 100%;
	background-position: center;
	/* background-attachment: fixed; */
	/* display: flex;
	align-items: center;
	justify-content: center;
	width: 100vw;*/
	/*height: 100vh;*/
  }
.products-top img{
  width:100%;
}
.products-contents h3 {
	font-size: 2.7rem;
	text-align: left;
	font-weight: 200;
  letter-spacing: 5px;
}
.products-wrap {
	max-width: 1050px;
	margin: 110px auto;
 width:90%;
}
.products-inner {
	display: flex;
	position: relative;
  margin-bottom: 80px;
}
.products-inner-l {
 width: 46%;
 margin-right:4%;
}
.products-inner-r {
	width: 50%;
	display: flex;
}
.products-inner-r img {
    width: 170px;
		height: auto;
		margin-bottom: 20px;
}
.inner-rr {
    /*display: flex;
    align-items: center;*/
    width:100%;
}
/*.inner-rr img {
    width: 130px;
    margin: 50px 0 30px 0;
}*/
.inner-rr p{
	font-size: 1.55rem;
	letter-spacing: 2px;
	line-height: 2;
}
#products-page hr {
	border: none;
	width: 0%;
	height: 2px;
	background-color: #d7cfca;
	margin-bottom: 40px;
	transition: 1s;
}
.products-slider{
  opacity: 0;
  transition: opacity .3s linear;
}
.products-slider.slick-initialized{
  opacity: 1;
}
.products-slider img {
	width: 50%;
	height: auto;
}
.slick-dots {
    width: 100%;
}
/*
item-page [
----------------------------------------------------------- */
#item-page {
	/* text-align: center; */
}
.item-wrap {
	max-width: 1050px;
	margin: 110px auto;
}
/* .item-wrap img {
	width: 350px;
} */
#item-page ul {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 15px 0 20px 15px;
    width: 375px;
    margin: 90px auto;
}
#item-page ul li {
	padding: 5px 0;
}
#item-page ul li:first-child {
	padding: 15px 0;
}
#item-page ul li:first-child:before {
	content: '';
	display: inline-block;
	width: 27px;
	height: 27px;
	background-image: url(../img/glass.svg);
	background-size: contain;
	margin-right: 8px;
	margin-bottom: 3px;
	vertical-align: middle;
}
#item-page ul li:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../img/check.svg);
  background-size: contain;
	margin-right: 8px;
  /* vertical-align: middle; */
}
#item-page .fas {
	padding-right: 5px;
}
/* #item-page h2,h3 {
	text-align: center;
} */
#item-page p {
	font-size: 3rem;
}
#item-page h3 {
	font-size: 2rem;
	font-weight: 200;
}
.item-img {
	width: 350px;
	margin: 0 auto;
}
.item-img-box {
    position: relative;
    display: block;
    cursor: pointer;
    width: 290px;
    margin: 40px auto;
}
.item-img-box .active {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s;
}
.item-img-box:hover .active {
  opacity: 1;
}
#item-slider .slick-dots {
    position: absolute;
    bottom: 20px;
    right: 0;
    display: block;
    width: 10%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
#item-slider{
  max-width: 1050px;
  height: auto;
	margin: 0 auto;
}
#item-slider img {
  max-width: 100%;
  height: auto;
}
.item-slide{
  opacity: 0;
  transition: opacity .3s linear;
}
.item-slide.slick-initialized{
  opacity: 1;
}

/*190828products追記*/
.inner-rr ul {
    border-top: 1px solid #000;
    border-bottom: 1px solid #000;
    padding: 15px 0 20px 15px;
    width: 100%;
    margin: 40px auto;
}
.inner-rr ul li {
	padding: 5px 0;
}
.inner-rr ul li:first-child {
	padding: 15px 0;
}
.inner-rr ul li:first-child:before {
	content: '';
	display: inline-block;
	width: 27px;
	height: 27px;
	background-image: url(../img/glass.svg);
	background-size: contain;
	margin-right: 8px;
	margin-bottom: 3px;
	vertical-align: middle;
}
.inner-rr ul li:before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  background-image: url(../img/check.svg);
  background-size: contain;
	margin-right: 8px;
  /* vertical-align: middle; */
}
.inner-rr .fas {
	padding-right: 5px;
}
/* #item-page h2,h3 {
	text-align: center;
} */
.inner-rr h3 {
	font-size: 2rem;
	font-weight: 200;
}
.item-img {
	width: 350px;
	margin: 0 auto;
}
.item-img-box img{
	width: 350px;
	margin: 0 auto;
}
.item-img-box {
    position: relative;
    display: block;
    cursor: pointer;
    width: 290px;
    margin: 40px 0;
}
.item-img-box:hover{
  opacity: 1;
}
.item-img-box .active {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s;
}
.item-img-box:hover .active {
  opacity: 1;
}

.inner-rr h4{
  font-size:2rem;
  width:100%;
  /*text-align: center;*/
}
.inner-rr .product_price{
  font-size:2.5rem;
  width:100%;
  /*text-align: center;*/
  line-height: 100%;
  padding-left: 15px;
}
.inner-rr .product_price span{
  font-size:1.4rem;
}
.inner-rr .product_cat{
  font-size:1.2rem;
  width:100%;
  /*text-align: center;*/
  padding-left: 15px;
}

#products-page .more_btn{
  display:block;
  font-weight: 400;

}

/*190911about*/
.about_contents{
  width:95%;
  max-width: 1050px;
  margin: 60px auto;
  display: flex;

}
.about_contents h3{
  font-family: 'Courgette', cursive;
  width:100%;
  text-align: center;
  font-size: 300%;
  font-weight: 400;
}
.about_contents h4{
  margin: 40px auto;
  text-align: center;
  font-size: 150%;
  font-weight: 400;
}

.about_contents01 .about-inner_l{
  display:block;
  width:42%;
  margin-right: 5%;
}
.about_contents01 .about-inner_r{
  width:53%;
  /*background: #D2C5B6;*/
  padding: 60px 0px 0;
}
.about_contents01 .about-inner_r img{
  display:block;
  width:100px;
  margin: 40px auto;
}
.about_contents02 .about-inner_l{
  padding: 60px 0px 0;
  margin-right: 5%;
}

.about_contents03 .about-inner_l{
  display:block;
  width:42%;
  margin-right: 5%;
}
.about_contents03 .about-inner_r{
  width:53%;
  /*background: #D2C5B6;*/
  padding: 60px 0px 0;
}
.bii-inner-b:before {
	content: '';
	display: inline-block;
	position: relative;
	top: 8px;
	width: 58px;
	height: 31px;
	background-image: url(../img/bii-inner-b.svg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
.bii-inner-i:before {
	content: '';
	display: inline-block;
	position: relative;
	top: 8px;
	width: 58px;
	height: 31px;
	background-image: url(../img/bii-inner-i.svg);
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 8px;
}
.about-inner_r_txt01{
  margin-bottom:40px;
}
.about-inner_r_list{
  max-width:280px;
  margin:20px auto;
}
.about-card{
  max-width:1050px;
  margin: auto;
  width:95%;
}
.pickup {
	margin: 8rem auto;
	padding-left: 1rem;
	padding-right: 1rem;
	width: 100%;
	max-width: 640px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.pickup-header {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: initial;
	margin-bottom: 2rem;
}
.pickup-header-text {
	display: inline-block;
	font-size: 1.5rem;
	transform: rotate(2.5deg);
	letter-spacing: initial;
}
.pickup-header-number {
	font-size: 5.5rem;
	line-height: 1;
	margin-top: -.25em;
}
.pickup-title {
	/* font-size: 2.75rem; */
	margin-bottom: 2rem;
}
.pickup-img {
	width: 100%;
	max-width: 100%;
}
p.pickup-body {
	text-align: left;
	text-align: justify;
	margin: .75rem 0;
}
.circletype span {
	font-size: inherit;
  margin-left: initial;
	letter-spacing: inherit;
  vertical-align: initial;
}
.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.slick-dots li {
	margin: initial;
}
.slick-dots li button::before {
	content: '';
	opacity: 0.95;
	border-radius: 50%;
	background-color: black;
	width: 9px;
	height: 9px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: .5px solid #aaa;
}
.slick-dots li.slick-active button:before {
	opacity: 0.95;
}
.slick-dots li:not(.slick-active) button::before {
	background: transparent;
}

.object-fit-cover {
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.border {
	border: 1px solid;
}
.border-white {
	border-color: white !important;
}
.border-trasparent {
	border-color: trasparent !important;
}

@media screen and (max-width: 480px) {
.slick-dots li button::before {
	width: 5px;
	height: 5px;
}
.pickup {
	margin: 4.5rem auto;
}
.hero02{
  display: block;
}
.hero01{
  display: none;
}
}
@media (max-width: 1200px) {
  legend {
    font-size: calc(1.275rem + 0.3vw) ;
  }
  h1, .h1 {
    font-size: calc(1.375rem + 1.5vw) ;
  }
  h2, .h2 {
    font-size: calc(1.325rem + 0.9vw) ;
  }
  h3, .h3 {
    font-size: calc(1.3rem + 0.6vw) ;
  }
  h4, .h4,
	.pickup-header-text {
    font-size: calc(1.275rem + 0.3vw) ;
  }
  .display-1 {
    font-size: calc(1.725rem + 5.7vw) ;
  }
  .display-2 {
    font-size: calc(1.675rem + 5.1vw) ;
  }
  .display-3,
	.pickup-header-number
	 {
    font-size: calc(1.575rem + 3.9vw) ;
  }
  .display-4 {
    font-size: calc(1.475rem + 2.7vw) ;
  }
  .close {
    font-size: calc(1.275rem + 0.3vw) ;
  }
}
