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

*{
	box-sizing: border-box;
}

html{
	overflow-x: hidden;
	background-color: #FFF;
}

body{
	overflow-x: hidden;
	font-family: 'Arapey',游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,sans-serif;
	-webkit-text-size-adjust: 100%;
	color: #7d7d7d;
	overflow: hidden;	
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

img{
	width: 100%;
}

/* ローディング画面の背景 */
.loading {
	position: fixed;
	width: 100vw;
	height: 100vh;
	top: 0px;
	left: 0px;
	background: #FFF;
	z-index: 9999;
}

.loading:before{
	content: "";
	display: block;
	position: absolute;
	left:0;
	top:0;
	background-color: #FFF;
	width: 100%;
	height: 100%;
	z-index: 10000;
	transition-duration:0.3s;
	opacity: 1;
}

.loading.active:before{
	opacity: 0;
}

.loading .imgWrap{
	position: absolute;
	width: 300px;
	height: 100px;
	left:0;
	right:0;
	top:0;
	bottom: 0;
	margin: auto;
}

.loading .imgWrap img{
	width: 100%;
}

.loading.active .imgWrap{
	width: 330px;
	height: 110px;
	transition-duration:5s;
}

/* アニメーション */
.animation {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #fff;
	-webkit-animation: loadinganimation 1500ms ease-out forwards infinite;
	animation: loadinganimation 1500ms ease-out forwards infinite;
}

@keyframes loadinganimation {
  from,to {
		opacity: 0;
  }
  50% {
		opacity: .5;
  }
}


/*フェードイン*/
.fadeInWrapTop{
	display: block;
	position: relative;
	transition-duration:1.0s;
	opacity: 0;
	bottom: -50px;
}

.fadeInWrapTop.active{
	opacity: 1;
	bottom: 0;
}

.fadeInWrapBegin{
	position: relative;
	transition-duration:1.0s;
	opacity: 0;
	bottom: -50px;
}

.fadeInWrapBegin.active{
	opacity: 1;
	bottom: 0;
}

.fadeInWrapRight{
	position: relative;
	transition-duration:1.0s;
	opacity: 0;
	right: -50px;
}

.fadeInWrapRight.active{
	opacity: 1;
	right: 0;
}

.fadeInWrapLeft{
	position: relative;
	transition-duration:1.0s;
	opacity: 0;
	left: -50px;
}

.fadeInWrapLeft.active{
	opacity: 1;
	left: 0;
}

.inner{
	margin: auto;
}

header{
	background-color: #FFF;
	position: fixed;
	width: 100%;
	z-index: 50;
}

header .inner{
	position: relative;
	width: 100%;
	margin: auto;
}

body.isOpened header{
	position: relative;
}

body.isOpened header .inner .shopBtn{
	display: none;
}

header .inner .menuBtn{
	position: absolute;
	left:0;
	top:200px;
	writing-mode: vertical-lr;
}

header .inner .menuBtn.active{
	top: 0;
}

header .inner .menuBtn .text{
	position: relative;
	bottom: -40px;
	left: 12px;
}

header .inner .shopBtn{
	display: block;
	position: absolute;
	right: 10px;
	top: 20px;
	white-space: nowrap;
	writing-mode: vertical-rl;
}

header .logoWrap{
	width: 60px;
}

header .btnWrap{
	display: block;
	color: #eb5a32;
	font-size: 14px;
	font-family: 'Oswald', sans-serif;
}

/*　ハンバーガーボタン　*/
.hamburger {
	display: block;
	position: absolute;
	z-index: 15;
	left: 40px;
	top: 10px;
	width: 30px;
	height: 30px;
	cursor: pointer;
	text-align: center;
}

.hamburger span {
	display : block;
	position: absolute;
	width   : 24px;
	height  : 2px ;
	left    : 6px;
	background : #555;
	-webkit-transition: 0.3s ease-in-out;
	-moz-transition   : 0.3s ease-in-out;
	transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 17px;
}
.hamburger span:nth-child(3) {
  top: 24px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenu {
	position: fixed;
	z-index : 50;
	top  : 0;
	left : 0;
	color: #000;
	background: #fff;
	text-align: center;
	transform: translateX(-100%);
	transition: all 0.6s;
	width: 50%;
	height:100%;
	padding-top:100px;
	opacity: 0;
	transition-duration:0.3s;
	box-shadow: 0px 1px 5px #000;
	overflow: scroll;
}

nav.globalMenu .titleWrap{
	width: 50%;
	margin: 0 auto 50px;
}

nav.globalMenu .titleWrap img{
	width: 100%;
}

/*body{
	overflow: auto;
}*/

body.isOpened{
	overflow: hidden;
}

body.isOpened:after{
	content: "";
	position: fixed;
	left:0;
	top:0;
	background-color: #000;
	transition: 0.3s;
	opacity: 0.5;
	width: 100%;
	height: 100%;
	z-index: 45;
}

nav.globalMenu .closeBtn{
	position: absolute;
	width: 30px;
	height: 30px;
	top: 0;
	bottom: 0;
	left: 10px;
	display: block;
	margin: auto;
}

nav.globalMenu .closeBtn img{
	width: 100%;
}

nav.globalMenu>ul {
	background: #FFF;
	margin: 0 auto 20px;
	padding: 0;
	width: 30%;
}

nav.globalMenu ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	font-family: 'Playfair Display', serif;
}
nav.globalMenu ul li:last-child {
	padding-bottom: 0;
}

nav.globalMenu ul li a {
	display: block;
	font-size: 18px;
	color: #000;
	padding: 1.2em 10px;
	text-decoration :none;
	text-align: left;
}

nav.globalMenu ul.snsGroup{
	width: 25%;
	border-bottom: 1px solid #7d7d7d;
	padding-bottom: 50px;
}

nav.globalMenu ul.snsGroup li {
	width: 40px;
	margin:0 auto;
}

nav.globalMenu ul.snsGroup li a {
	display: block;
	padding: 10px 0;
}

nav.globalMenu ul.logoGroup li {
	width: 50%;
	margin: auto;
}

header .globalMenu ul.logoGroup .logoWrap{
	width: auto;
	text-align: center;
}

nav.globalMenu ul.snsGroup li img,
nav.globalMenu ul.logoGroup li img{
	width: 100%;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenu.active {
	transform: translateX(0%);
	opacity: 1;
}

nav.globalMenu .accordionBtn ul {
	display: none;
}

nav.globalMenu .childList li:last-child{
	border-bottom: none;
}

nav.globalMenu .childList li a{
	font-size: 20px;
	padding-left: 2em;
}

main{
	background-image: url("../img/bg.jpg");
	background-size: auto;
	background-repeat: repeat;
	padding-bottom: 100px;
}

main .inner{
	margin: auto;
	width: 950px;
	padding-bottom: 170px;
}

#mv{
	position: relative;
	background-image: url("../img/bg_mv.jpg");
	background-repeat: no-repeat;
	background-size: cover;
    background-position: center bottom;
	height: 100vh;
	width: 95%;
	margin: auto;
}

#mv .logoWrap{
	width: 200px;
	position: absolute;
	left: 0;
	top: 30px;
}

#mv h1{
	position: absolute;
	left: 100px;
	right: 0;
	margin: auto;
	top: 20%;
	font-size: 120px;
	text-align: center;
	color: #FFF;
	font-family: 'Playfair Display', serif;	
	transition-duration:0.8s;
	transition-timing-function:ease-in-out;
	transition-delay:1.2s;
	opacity: 0;	
}

#mv h1 .text01{
	display: block;
	font-size: 18px;
	margin-top: 30px;
	font-family: 'Noto Serif JP', serif;
}

#mv.active h1{
	top: 10%;
	opacity: 1;
}

@keyframes anime01 {
  0% {
	  bottom: -100px;
  }
  50% {
	  bottom: -120px;
  }
  100% {
	  bottom: -100px;
  }
}

#mv .btnScroll {
	position: absolute;
	width: 1em;
	height: 3em;
	bottom: 45px;
	cursor: pointer;
	color: #F5F5F5;
	text-decoration: none;
	border-radius: 1em;
	left: 0;
	right: 0;
	margin: auto;
	transition-duration:1.2s;
	transition-timing-function:ease-in-out;
	transition-delay:2s;
	opacity: 0;	
}

#mv.active .btnScroll{
	opacity: 1;
	bottom: 32px;
}

#mv .btnScroll:before{
	content: 'Scroll';
	position: absolute;
	top: -1.5em;
	left: -.7em;
}

#mv .btnScroll span{
    position: absolute;
    top: 15%;
    left: 0;
	right: 0;
	margin: auto;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #F5F5F5;
    animation: 2s small-dot-move infinite running ease-out;	
}

@keyframes small-dot-move {
  from {
    top: 15%;
    opacity: .8;
  }
  50% {
    opacity: 1;
  }
  to {
    top: 100%;
    opacity: .5;
  }
}

#mv .arrow {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 5em;
	border: 0.5px solid #F5F5F5;
}

#catch{
	text-align: center;
	background-color: #FFF;
	padding: 100px 0;
	width: 95%;
	margin: auto;
}

#catch .inner{
	padding-bottom: 0;
}

#catch .textWrap{
	position: relative;
	bottom: -20px;
	font-size: 16px;
	line-height: 1.5em;
	margin-bottom: 50px;
	transition-duration:1s;
	transition-timing-function:ease-in-out;
	transition-delay:0.6s;
	opacity: 0;
}

#catch.active .textWrap{
	opacity: 1;
	bottom: 0;
}

#catch .imgWrap{
	width: 180px;
	margin: auto;
	transition-duration:1.2s;
	transition-timing-function:ease-in-out;
	transition-delay:1.5s;
	opacity: 0;
}

#catch.active .imgWrap{
	opacity: 1;
}

#about {
	background-color: #FFF;
	padding: 0 70px 150px;
	margin-bottom: 170px;
	width: 95%;
	margin: 0 auto 170px;
}

#about .inner{
	padding-bottom: 0;
}

#about .contentsWrap{
	position: relative;
}

#about .contentsWrap .infoWrap{
	position: relative;
	float: left;
	width: 40%;
	padding-top: 140px;
	transition-duration:1.2s;
	transition-timing-function:ease-in-out;
	transition-delay:1s;
	opacity: 0;	
}

#about .contentsWrap .imgWrap{
	transition-duration:1.2s;
	transition-timing-function:ease-in-out;
	transition-delay:1.2s;
	opacity: 0;
}

#about .contentsWrap.num01 .infoWrap{
	position: absolute;
	width: 300px;
	left: -50px;
	z-index: 5;	
}

#about .contentsWrap.num01 .imgWrap{
	position: relative;
	width: 65%;
	right: -50px;
}

#about .contentsWrap.num01.active .infoWrap{
	left: 0;
	opacity: 1;	
}

#about .contentsWrap.num01.active .imgWrap{
	right: 0;
	opacity: 1;	
}

#about .contentsWrap .infoWrap h3{
	font-size: 25px;
	line-height: 1.8em;
	margin-bottom: 50px;
}

#about .contentsWrap .infoWrap .textWrap{
	font-size: 14px;
	line-height: 2.5em;
}

#about .contentsWrap .imgWrap{
	position: relative;
	float: right;
	width:55%;
}

#about .contentsWrap.num02 .infoWrap{
	float: right;
	right: -30px;
}

#about .contentsWrap.num02 .imgWrap{
	float: left;
	top: -50px;
	left: -30px;
}

#about .contentsWrap.num02.active .infoWrap{
	right: 0;
	opacity: 1;	
}

#about .contentsWrap.num02.active .imgWrap{
	left: 0;
	opacity: 1;	
}

#about .contentsWrap.num03{
	margin-bottom: 80px;
}

#about .contentsWrap.num03 .infoWrap{
	padding-top: 70px;
	left: -30px;
}

#about .contentsWrap.num03 .imgWrap{
	float: right;
	width: 40%;
	right: -30px;
}

#about .contentsWrap.num03.active .infoWrap{
	left: 0;
	opacity: 1;	
}

#about .contentsWrap.num03.active .imgWrap{
	right: 0;
	opacity: 1;	
}

#about .textWrap02{
	position: relative;
	font-size: 14px;
	line-height: 2em;
	text-align: center;
	top: 20px;
	transition-duration:1s;
	transition-timing-function:ease-in-out;
	transition-delay:2.5s;
	opacity: 0;
}

#about .textWrap02.active{
	opacity: 1;
	top: 0;
}

#order{
	position: relative;
	background-color: #FFF;
	padding: 50px;
	top: 20px;
}

/* 全体のスタイル */
.swiper-wrapper {
	width: 100%;
}

.swiper-slide {
	width: 100%;
	height: 100%;
}

#order .swiper-container{
	padding: 0 0 50px;
}

#order .inner .sliderWrap{
	width: 50%;
}

#order .inner .sliderWrap h3{
	line-height: 1.2em;
	color: #9fa0a0;
	font-size: 25px;
	margin-bottom: 20px;
}

#order .inner .sliderWrap .textWrap{
	line-height: 1.5em;
	font-size: 18px;
}

#order .slick-dots li button:before {
	width: 10px;
	height: 10px;
	content: '';
	background-color: #FFF;
	border: 1px solid #7d7d7d;
	border-radius: 20px;
	opacity: 1;
}

#order .slick-dots li.slick-active button:before {
	opacity: 1;
	background-color: #7d7d7d;
	border: 1px solid #7d7d7d;
}


#order .slick-dots li {
	position: relative;
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 45px;
	padding: 0;
	cursor: pointer;
}

#order .contentsWrap{
	position: relative;
}

#order .contentsWrap .infoWrap{
	width: 55%;
	float: right;
}

#order .contentsWrap .infoWrap h3{
	position: relative;
	font-size: 14px;
	line-height: 2.5em;
	padding-bottom: 50px;
	margin-bottom: 80px;
}

#order .contentsWrap .infoWrap h3:before{
	content: "";
	position: absolute;
	bottom:0;
	left:0;
	width: 50px;
	height: 1px;
	background-color: #7d7d7d;
}

#order .contentsWrap .infoWrap h3 .num{
	font-size: 18px;
	display: block;
}

#order .contentsWrap .infoWrap .textWrap{
	font-size: 14px;
	line-height: 2.5em;
}

#order .contentsWrap .imgWrap{
	width:40%;
	float: left;
}

#order .slick-dots {
	left: 0;
	right: 0;
	width: auto;
	position: relative;
}

#order .slick-dots:before{
	content: "";
	position: absolute;
	width: 60%;
	height: 1px;
	background-color: #7d7d7d;
	left:0;
	right:0;
	top:0;
	bottom: 0;
	margin: auto;	
}

#order .btnScroll {
	position: absolute;
	width: 1em;
	height: 3em;
	bottom: 0;
	cursor: pointer;
	color: #7d7d7d;
	text-decoration: none;
	border-radius: 1em;
	left: 0;
	right: 0;
	margin: auto;
	transition-duration:1s;
	transition-timing-function:ease-in-out;
	transition-delay:0.5s;
	opacity: 1;
}

#order .btnScroll.hide{
	bottom: -60px;
	opacity: 0;
}

#order .btnScroll:before{
	content: 'Scroll';
	position: absolute;
	top: -1.5em;
	left: -.7em;
}

#order .btnScroll span{
    position: absolute;
    top: 15%;
    left: 0;
	right: 0;
	margin: auto;
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 10px;
    background: #7d7d7d;
    animation: 2s small-dot-move infinite running ease-out;	
}

#order .arrow {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	width: 0;
	height: 5em;
	border: 0.5px solid #7d7d7d;
}

#order .swiper-pagination-bullet{
	background: #FFF;
	border: 1px solid #7d7d7d;
	width: 10px;
	height: 10px;
	margin: 0 35px;
	position: relative;
	z-index: 5;
	opacity: 1;
}

#order .swiper-pagination-bullet-active{
	background: #7d7d7d;
	border: 1px solid #7d7d7d;
}

#order .swiper-container-horizontal>.swiper-pagination-bullets,
#order .swiper-pagination-custom,
#order .swiper-pagination-fraction {
	bottom: -20px;
	left: 0;
	right: 0;
	width: 45%;
	margin: auto;
}

#order .swiper-pagination{
	position: relative;
}

#order .swiper-pagination:before{
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	background-color: #7d7d7d;
	height: 1px;
	margin: auto;
	z-index: -1;
	display: block;
}

h2.titleWrap{
	position: relative;
	display: block;
	text-align: left;
	font-size: 25px;
	bottom: 10px;
	transition-duration:1s;
	transition-timing-function:ease-in-out;
	opacity: 0;
}

h2.titleWrap.active{
	bottom: 0;
	opacity: 1;
}

h2.titleWrap .text01{
	position: relative;
}

h2.titleWrap .text01:before{
	content: "";
	position: absolute;
	width: 100px;
	height: 1px;
	background-color: #7d7d7d;
	top: 13px;
	right: -105px;
}

h2.titleWrap .text02{
	font-size: 14px;
	display: block;
	margin-top: 10px;
}

#order{
	width: 95%;
	background-color: #FFF;
	margin: 0 auto 170px;
	padding: 80px;
	box-shadow: 7px 7px 10px rgba(0,0,0,0.1);
}

#order .inner{
	padding-bottom: 100px;
}

#order h2{
	margin-bottom: 40px;
}

#profile{
	width: 720px;
	margin: 0 auto 200px;
}

#profile .inner{
	padding-bottom: 0;
}

#profile h2{
	margin-bottom: 50px;
}

#profile .contentsWrap{
	position: relative;
	padding-top: 50px;
}

#profile .contentsWrap .infoWrap {
	width: 50%;
	float: left;
	position: relative;
	z-index: 10;
	padding-top: 100px;
	transition-duration:1s;
	transition-timing-function:ease-in-out;
	transition-delay:1s;
	opacity: 0;
	left: -20px;
}

#profile.active .contentsWrap .infoWrap {
	opacity: 1;
	left: 0;
}

#profile .contentsWrap .infoWrap h3{
	position: relative;
	font-size: 16px;
	line-height: 1.5em;
	margin-bottom: 40px;
}

#profile .contentsWrap .infoWrap h3 .name{
	font-size: 25px;
	margin-top: 20px;
	display: block;
}

#profile .contentsWrap .infoWrap .textWrap{
	font-size: 14px;
	line-height: 2.5em;
	margin-bottom: 20px;
}

#profile .contentsWrap .infoWrap .btnWrap{
	width: 100px;
	position: relative;
	left: 60px;
	display: block;
}

#profile .contentsWrap .infoWrap .btnWrap:before{
	content: "";
	position: absolute;
	top: 13px;
	left: -60px;
	width: 50px;
	height: 1px;
	background-color: #7d7d7d;
}

#profile .contentsWrap .imgWrap{
	position: relative;
	width: 45%;
	float: right;
	z-index: 5;
	right: -20px;
	transition-duration:1s;
	transition-timing-function:ease-in-out;
	transition-delay:1.2s;
	opacity: 0;
}

#profile.active .contentsWrap .imgWrap {
	opacity: 1;
	right: 0;
}

#profile .contentsWrap .imgWrap:before{
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	left: -70px;
	top: -110px;
	background-color: #FFF;
	z-index: -1;
}

#pickup{
	margin-bottom: 170px;
	top: -20px;
	background-color: #FFF;
	width: 95%;
	margin: 0 auto 170px;
}

#pickup .inner{
	padding-top: 170px;
}

#pickup h2{
	margin-bottom: 50px;
}

#pickup .sliderBlock{
	position: relative;
	padding: 80px 20px;
	background-color: #FFF;
	overflow-x: hidden;
}

#pickup .sliderWrap02{
	width: 120%;
	margin: auto;
	left: -10%;
}

#pickup .sliderWrap02 .slick-slide{
	margin: 0 30px 0;
}

#pickup .sliderWrap02 .slick-next {
	right: 75px;
}

#pickup .sliderWrap02 .slick-prev {
	left: 75px;
	z-index: 5;
}

/*ライトボックス内デザイン*/
.lightboxOverlay{
	background-color: #FFF;
}

/*.lb-outerContainer{
	width: 50% !important;
	height: auto !important;
	margin: auto;
}

.lb-outerContainer img{
	width: 100%;
}*/

.lb-dataContainer{
	padding-top: 50px;
}

.lb-nav a.lb-next,
.lb-nav a.lb-prev{
	display: none;
}

.lb-number{
	display: none !important;
}

.lb-details{
	width: auto !important;
}

.lb-caption{
	color: #7d7d7d;
	text-align: center;
}

.lb-caption .titleWrap{
	font-size: 18px;
	margin-bottom: 20px;
}

.lb-caption .textWrap{
	font-size: 16px;
	text-align: left;
	line-height: 1.5em;
}

.lb-nav a.lb-next,
.lb-nav a.lb-prev{
	display: none !important;
}

#contact{
	width: 95%;
	text-align: center;
	padding: 75px 80px 160px;
	margin: 0 auto 170px;
	background-color: #FFF;
	box-shadow: 7px 7px 10px rgba(0,0,0,0.1);
}

#contact .inner{
	padding-bottom: 0;
}

#contact .textWrap{
	font-size: 16px;
	line-height: 2.5em;
	width: 440px;
	margin: auto;
}

#contact .textWrap01{
	padding-top: 130px;
	padding-bottom: 50px;
	border-bottom: 1px solid #7d7d7d;
}

#contact .textWrap02{
	padding-top: 50px;
	margin-bottom: 120px;
}

#contact .logoWrap{
	width: 110px;
	margin: 0 auto 30px;
}

#contact .btnWrap{
	padding: 10px;
	text-align: center;
	box-sizing: border-box;
	border-radius: 20px;
	border: 1px solid #7d7d7d;
	font-size: 18px;
	display: block;
	width: 250px;
	margin: auto;
	color: #7d7d7d;

}

footer {
	position: relative;
	background-color: #FFF;
	padding: 50px 0;
	z-index: 30;
}

footer .inner {
	width: 460px;
	margin: auto;
	text-align: center;
}

footer .logoGroup {
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
	margin-bottom: 100px;
}

footer .logoGroup>li{
	width: 40%;
}

footer .logoGroup>li .logoWrap{
	width: 210px;
	margin-bottom: 50px;
	display: block;
}

footer .logoGroup>li .logoWrap.noLink{
	pointer-events: none;
	cursor: default;
}

footer .snsWrap{
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}

footer .snsWrap .titleWrap{
	font-size: 14px;
	display: block;
	line-height: 2em;
}

footer .snsWrap .btnGroup{
	display: flex;
	flex-flow: wrap;
	justify-content: space-between;
}

footer .snsWrap .btnGroup li{
	width: 48%;
}

footer .snsWrap .btnGroup li a{
	width: 24px;
	display: block;
}

footer .copyWrap{
	display: block;
	margin-top: 70px;
	font-size: 14px;
}

/*改行切り替えクラス*/
/*改行クラス（PC）*/
.breakLinePC{
	display:block;
}

/*改行クラス（SP）*/
.breakLineSP{
	display:inline;
}

/*PCのみ表示コンテンツ*/
.onlyPC{
	display:block;
}

/*スマホのみ表示コンテンツ*/
.onlySP{
	display:none;
}

/*リンク要素にカーソル乗せた時の変化*/
a:hover{
	opacity:0.9;
}

.noLink{
	pointer-events: none;
	cursor: default;
}

/*画面サイズが1500px以下の場合*/
@media screen and (max-width: 1500px) {

}

/*画面サイズが1250px以下の場合*/
@media screen and (max-width: 1300px) {
	
	main {
		padding: 0 20px 100px;
	}	
	
/*	.inner{
		width:auto;
	}

	#mv h1 {
		left: 25%;
		right: auto;
	}	
	
	#mv .imgWrap {
		width: 40%;
	}	*/
	
}

/*画面サイズが1100px以下の場合*/
@media screen and (max-width: 1100px) {
	header .inner{
		width: auto;
	}
	
	header .inner .shopBtn {
		right: 10px;
		top: 20px;
	}	
	
	main .inner {
		margin: auto;
		width: auto;
		padding: 0 40px 170px;
	}
	
	#profile {
		width: auto;
		margin: 0 auto 200px;
		padding: 0 40px;
	}
	
	
	#pickup {
		margin-bottom: 170px;
		padding: 0 40px;
	}	
	
}

@media screen and (max-width: 980px) {
/*	.inner {
		width: auto;
		padding: 0 20px;
	}*/
	
	#mv h1 {
		left: 0;
		right: 0;
		top: 20%;
		font-size: 100px;
	}
	
	#mv.active h1 {
	}
	
	#mv h1 .text01{
		top: 25%;
	}
}

/*画面サイズが850px以下の場合*/
@media screen and (max-width: 850px) {
	nav.globalMenu>ul {
		width: 50%;
	}
	
	#order .swiper-pagination-bullet {
		width: 6px;
		height: 6px;
		margin: 0 10px;
	}
}

/*画面サイズが800px以下の場合*/
@media screen and (max-width: 800px) {
	
	#mv h1 {
		font-size: 60px;
	}
	
	#about .contentsWrap.num02 .imgWrap {
		top: 50px;
	}
	
	#order {
		width: auto;
		padding: 30px 20px;
	}

	#profile {
		margin: 0 auto 100px;
	}	
	
	#pickup {
		width: auto;
		padding: 0px 20px;
	}
	
	#pickup .sliderWrap02 .slick-next {
		right: 50px;
	}
	
	#pickup .sliderWrap02 .slick-prev {
		left: 50px;
	}
	
	#contact {
		width: auto;
		text-align: center;
		padding: 75px 20px 160px;
	}	
	
	#contact .textWrap {
		font-size: 16px;
		line-height: 2em;
		width: auto;
		margin: auto;
	}
}

/*画面サイズが680px以下の場合*/
@media screen and (max-width: 680px) {
	
	.hamburger {
		width: 20px;
		height: 20px;
	}
	
	.hamburger span {
		width: 20px;
		height: 2px;
		left: 8px;
	}

	nav.globalMenu ul.logoGroup{
		width: 80%;
	}	
	
	nav.globalMenu ul.logoGroup li{
		width: auto;
	}	
	
	main {
		padding: 0 40px 100px;
	}	
	
	main .inner {
		margin: auto;
		width: auto;
		padding: 0 0 50px;
	}	
	
	#mv{
		width: auto;
	}	
	
	.lb-dataContainer{
		padding-top: 20px;
	}
	
	header .inner .shopBtn{
		font-size: 14px;
	}
	
	h2.titleWrap{
		margin-bottom: 30px;
	}
	
	#catch {
		width: auto;
	}	
	
	#about {
		width: auto;
	}
	
	#pickup .sliderBlock {
		padding: 0 20px;
	}	
	
	#pickup .inner {
		padding: 50px 20px;
	}	
	
	.tel{
		pointer-events:auto;
		cursor: auto;
	}
	
	/*改行クラス（SP）*/
	.breakLineSP{
		display:block;
	}
	
	/*改行クラス（PC）*/
	.breakLinePC{
		display:inline;
	}
	
	/*PCのみ表示コンテンツ*/
	.onlyPC{
		display:none;
	}
	
	.onlySP{
		display:block;
	}
}

/*画面サイズが600px以下の場合*/
@media screen and (max-width: 600px) {	
	
	nav.globalMenu{
		width: 100%;
	}

	#mv .logoWrap {
		width: 150px;
		top: 10px;
	}	
	
	#mv h1 {
		font-size: 40px;
	}
	
	#about {
		padding: 0 20px 100px;
		margin-bottom: 170px;
	}
	
	#about .contentsWrap {
		margin-bottom: 50px;
	}	
	
	#about .contentsWrap .imgWrap {
		position: relative;
		float: none;
		width: auto;
	}	
	
	#about .contentsWrap .imgWrap {
		width: auto;
		padding-top: 4.5em;
	}
	
	#about .contentsWrap .infoWrap .textWrap {
		line-height: 2em;
	}
	
	#about .contentsWrap.num02 .imgWrap{
		padding-top: 3em;
	}
	
	#about .contentsWrap.num01 .imgWrap,
	#about .contentsWrap.num02 .imgWrap,
	#about .contentsWrap.num03 .imgWrap{
		width: auto;
		float: none;
		margin-bottom: 10px;
	}	
	
	
	#about .contentsWrap.num01 .infoWrap{
		float: none;
		position: initial;
		width: auto;
		left: auto;
	}

	#about .contentsWrap.num02 .imgWrap {
		top: auto;
	}	
	
	#about .contentsWrap .infoWrap h3{
		font-size: 18px;
		line-height: 1.5em;
		margin-bottom: 0;
		position: absolute;
		top: 0;
	}
	
	#about .contentsWrap .infoWrap {
		float: none !important;
		position: initial;
		width: auto;
		left: auto;
		padding-top: 0;
	}
	
	#about .contentsWrap.num03 {
		margin-bottom: 50px;
	}
	
	#about .contentsWrap.num03 .infoWrap{
		padding-top: 0;
	}	
	
	#order .contentsWrap .infoWrap h3 {
		font-size: 10px;
		line-height: 2em;
		padding-bottom: 20px;
		margin-bottom: 50px;
	}	
	
	#order .contentsWrap .infoWrap .textWrap {
		font-size: 10px;
		line-height: 2em;
	}	
	
	
	#profile {
		margin: 0 auto 200px;
		padding: 0;
	}	
	
	#profile .contentsWrap {
		padding-top: 120px;
	}	
	
	#profile .contentsWrap .imgWrap {
		position: relative;
		width: 80%;
		float: none;
		margin: auto;
	}
	
	#profile .contentsWrap .imgWrap:before {
		left: -30px;
		top: -30px;
	}
	
	#profile .contentsWrap .infoWrap {
		width: auto;
		float: none;
		position: initial;
		padding-top: 50px;
	}	

	#profile .contentsWrap .infoWrap h3{
		position: absolute;
		top:0;
	}
	
	#profile .contentsWrap .infoWrap h3 .name {
		font-size: 20px;
	}
	
	#profile .contentsWrap .infoWrap .textWrap {
		line-height: 2em;
	}	

	#pickup {
		margin-bottom: 100px;
		padding: 0 0;
	}	
	
	#pickup .sliderWrap02 .slick-prev {
		left: 30px;
	}
	
	#pickup .sliderWrap02 .slick-next {
		right: 30px;
	}
	
	#contact {
		padding: 50px 20px 60px;
		margin: 0 auto;
	}

	#contact .textWrap01 {
		font-size: 12px;
		padding-top: 30px;
		padding-bottom: 30px;
	}	
	
	#contact .textWrap {
		font-size: 12px;
	}	
	
	footer {
		padding: 50px 20px;
	}	
	
	footer .inner {
		width: auto;
		padding: 0 20px;
	}
	
	footer .logoGroup>li {
		width: 40%;
	}
	
	footer .snsWrap {
		display: block;
	}
	
	footer .snsWrap .btnGroup li {
		width: 40%;
	}
	
	footer .snsWrap .btnGroup {
		width: 50%;
		margin: auto;
	}
	
	footer .logoGroup>li .logoWrap {
		width: auto;
		margin-bottom: 50px;
	}
}

/*画面サイズが560px以下の場合*/
@media screen and (max-width: 560px) {

}

/*画面サイズが480px以下の場合*/
@media screen and (max-width: 480px) {

}


/*画面サイズが400px以下の場合*/
@media screen and (max-width: 400px) {

}

/*回り込み解除クラス*/
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}