@charset "UTF-8";

/*================================================
 *  CSSリセット
 ================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,main,menu,nav.gnav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;font-weight:normal;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav.gnav,section{display:block}ul{list-style:none}blockquote,q{quotes:none}blockquote:before,blockquote:after,q:before,q:after{content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}

/*================================================
 *  一般・共通設定
 ================================================*/
body {
	font-size: 15px;
  font-family: ten-mincho, serif;
  font-weight: 400;
  font-style: normal;
	line-height: 1.8;
	-webkit-text-size-adjust: 100%;
  color: #40220e;
  letter-spacing: .05em;
  background-color: #e2cdb0;
}
html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}
#contents {
	width: 980px;
	margin: 0 auto;
}

header + #contents {
	padding-top: 50px;
}

.inner {
	position: relative;
	width: 980px;
	margin: 0 auto;
}

.wrap {
  max-width: 1300px;
  margin: 0 auto;
}

a {
	color: #656c1d;
	text-decoration: none;
}
a:hover {
	color: #40220e;
	transition: .3s;
}

h1 {
	font-size: 28px;
}

h2 {
	font-size: 30px;
	line-height: 1.3;
  letter-spacing: .1em;
  margin-bottom: 30px;
  position: relative;
}
h2::after {
  position: absolute;
  content: "";
  bottom: -10px;
  left: 5px;
  background: #40220e;
  width: 60px;
  height: 2px;

}
h3 {
	font-size: 23px;
  padding: 20px 0px 10px;
  text-align: center;
  line-height: 1;
}
h4 {
	margin-top: 0.25em;
	margin-bottom: 1em;
	font-size: 20px;
  padding: 10px;
  border-radius: 5px;
}
h4 span {
  font-size: 14px;
  color:#ccc;
}

h5 {
	margin-bottom: 0.25em;
	padding-left: 25px;
	font-size: 16px;
}

h6 {
	margin-bottom: 0.25em;
	padding-left: 5px;
	font-size: 16px;
	font-weight: bold;
}

p {
	margin:0 0 1em 0;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

em {
	font-weight: bold;
}

strong {
	font-weight: bold;
}

small {
  font-size: smaller;
}

pre {
	margin:1em 0;
	padding:1em;
}

blockquote {
	margin-bottom: 1em;
	padding: 1em;
	border: 1px dotted #ddd;
	border-left: 5px solid #ddd;
}

ul,ol,dl {
	margin: 0;
}
ul li {
	list-style: none;
}
ol li {
	list-style: none;
}
li {
	margin-left: 0;
}

@media screen and (max-width:768px) {
  body {
    background-size: cover;
  }
	*, *:before, *:after {
	  -webkit-box-sizing: border-box;
	  box-sizing: border-box
	}
	#contents {
		width: 100%;
		padding-left: 15px;
    	padding-right: 15px;
	}
	.inner {
		width: 100%;
  }
  h2 {
    font-size: 25px;
  }
  h3 {
    font-size: 21px;
  }
}

/*================================================
 *  汎用クラス
 ================================================*/
/* ボタン */
.btnArea {
    text-align: center;
    margin: 60px auto 30px;
}
.btnArea a {
  color: #fff;
}
.btnArea span {
  padding: 10px 40px;
  font-size: 15px;
  letter-spacing: .15em;
  border-radius: 3px;
  background-color: #656c1d;
  border:1px solid #656c1d;
}
.btnArea a:hover span {
  background-color:#f0e6d8;
  color: #656c1d;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}


/*================================================
 *  ヘッダー
 ================================================*/
header {
	position: fixed;
	width: 100%;
  z-index: 100;
}
header .flex {
  max-width: 1200px;
  margin: 0 auto;
}
header.changeNav {
  border-bottom: 2px solid #40220e;
  background-color: #e2cdb0;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
header .nav-left,
header .nav-right  {
  width: 50%;
}
header h1 {
  padding-top: 10px;
	padding-left: 20px;
}
header h1 img {
  width: 80%;
}
header.changeNav h1 img {
  width: 50%;
}
@media screen and (max-width:768px) {
  header .nav-left,
  header .nav-right  {
    width: 100%;
  }
	header h1 {
    padding-left: 15px;
	}
	header h1 img {
		width: 65%;
  }
  header.changeNav h1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  header.changeNav h1 img {
    width: 40%;
    vertical-align: text-top;
  }
}

/*================================================
 *  グローバルナビゲーション
 ================================================*/
	nav.gnav ul li {
		position:  relative;
    margin: 0;
    display: inline-block;
		padding: 0px 15px;
    text-align: center;
    letter-spacing: .1em;
    font-size: 16px;
  }
	nav.gnav ul li a {
		display: block;
    letter-spacing: 0.1em;
    color: #222;
    font-weight: bold;
  }
	nav.gnav ul li:hover > a {
		opacity: .7;
		-webkit-transition: all 0.3s ease-in-out;
		transition: all 0.3s ease-in-out;
  }
  header.changeNav nav.gnav ul li a {
    color: #40220e;
    /* color: #fff; */
  }
  nav.gnav ul li.sp {
    display: none;
  }

/* タブレット・スマートフォン用 */
@media screen and (max-width:768px) {
	nav.gnav {
		display:  none;
	}
	nav.gnav > ul {
		z-index: 2;
		overflow: auto;
		position: fixed;
		top: 0px;
		right: 0;
    width: 100%;
    box-shadow: 1px 1px 10px rgba(64, 34, 14, 0.2);
	}
	nav.gnav ul li {
		position: relative;
    width: 100%;
    background-color: #e2cdb0;
	}
  nav.gnav li:first-child {
		padding-top: 70px;
  }
  nav.gnav li:last-child {
    padding-bottom: 70px;
  }
	nav.gnav ul li a {
		display: block;
		padding: 15px 0;
    color: #40220e;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.4);
  }
  /* スマホのみオンラインショップボタン */
  nav.gnav ul li.sp {
    display: inline-block;
  }
  nav.gnav ul li.spOnline a,
  header.changeNav nav.gnav ul li.spOnline a {
    background-color: #40220e;
    color: #fff;
    padding: 10px;
    margin-top: 25px;
    border: 1px solid #fff;
  }

	.spMenuWrap {
		display: block;
		position: fixed;
		top: -6px;
		right: 0;
		-webkit-transition:  all 1s;
		-moz-transition:  all 1s;
		-ms-transition:  all 1s;
		-o-transition:  all 1s;
		transition:  all 1s;
    background: transparent;
    z-index: 9;
	}
	#spMenu {
		position: absolute;
		top: 10px;
		right: 10px;
	}
	#spMenu:hover {
		cursor: pointer;
	}
	#navBtn {
		display: inline-block;
		position: relative;
		width: 30px;
		height: 50px;
		border-radius: 5%;
	}
	#navBtnIcon {
		display: block;
		position: absolute;
		top: 50%;
		left: 0%;
		width: 25px;
		height: 2px;
		margin: -1px 0 0 -7px;
		background: #222;
		transition: .2s;
	}
	#navBtnIcon:before,
	#navBtnIcon:after {
		display: block;
		content: '';
		position: absolute;
		top: 50%;
		left: 0;
		width: 25px;
		height: 2px;
		background: #222;
		transition: 0.3s;
	}
	#navBtnIcon:before {
		margin-top: -8px;
	}
	#navBtnIcon:after {
		margin-top: 6px;
	}
	#navBtn .close {
		background: transparent;
	}
	#navBtn .close:before,
	#navBtn .close:after {
		margin-top: 0;
	}
	#navBtn .close:before {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	#navBtn .close:after {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
  }
  .sp-tel {
    position: fixed;
    top: 20px;
    right: 65px;
  }
  .sp-tel a {
    color: #222;
  }
  .sp-tel svg {
    width: 30px;
    height: 30px;
    stroke:#222;
    stroke-width:2;
  }
}


/*================================================
 *  section
 ================================================*/
section  {
	padding-bottom: 5rem;
}
section.section {
	padding-top: 5rem;
}
@media screen and (max-width:767px) {
	section  {
		padding-bottom: 2rem;
	}
	section.section {
		padding-top: 3rem;
	}
}

/*================================================
 *  lead
 ================================================*/
 #lead .w70 p {
  font-weight: bold;
  line-height: 2;
  font-size: 16px;
}
@media screen and (max-width:767px) {
  #lead img {
     width: 50%;
     margin-bottom: 30px;
  }
  #lead .w70 p {
    font-weight: normal;
    line-height: 1.6;
    font-size: 15px;
  }
}


/*================================================
 *  list
 ================================================*/
#list a {
  width: 33.33333%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 30px;
  box-sizing: border-box;
  color: #40220e;
}
#list a:hover {
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

/* テキスト */
#list .list_ttl {
  font-size: 45px;
  margin-bottom: 0;
  position: relative;
}
#list .list_ttl::after {
  position: absolute;
  content: "";
  bottom: 10px;
  left: 20px;
  width: 100px;
  height: 1px;
  transform: rotate(130deg);
  background: rgba(64, 34, 14, 0.5);
 }
#list .list_block h3 i {
  font-size: 19px;
  padding-right: 3px;
}
/* 画像 */
#list .list_image {
  height: 320px;
  width: 33.33333%;
}
#list .list01 {
  background: url(../images/list03.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#list .list02 {
  background: url(../images/list01.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#list .list03 {
  background: url(../images/list02.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}


@media screen and (max-width:767px) {
   #list a {
     width: 100%;
   }
   #list .list_image {
     width: 100%;
     height: 200px;
   }
   #list .list_ttl {
     font-size: 35px;
   }
}

/*================================================
 *  online
 ================================================*/
#online a {
  text-align: center;
  border: 3px double #fff;
  padding: 30px 0px;
  width: 100%;
  color: #fff;
  font-size: 20px;
  background-color: rgba(64, 34, 14, 0.8);
  display: inline-block;
  letter-spacing: .15em;
}
#online a i {
  font-size: 17px;
}
#online a span {
  font-size: 35px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: .2em
}
#online a:hover {
  background-color: rgba(64, 34, 14, 0.4);
}

@media screen and (max-width:767px) {
   #online a {
     padding: 50px 0px;
     font-size: 15px;
   }
   #online a span {
     font-size: 30px;
   }
}



/*================================================
 *  下層ページタイトル
 ================================================*/
#mainVis {
  position: relative;
  height: 450px;
  overflow: hidden;
}
.mainVis_ttl {
  font-size: 45px;
  letter-spacing: 0.1em;
  text-align: center;
  width: 100%;
  background-color: #c6aa7b;
  color: #40220e;
}
@media screen and (max-width:767px) {
  #mainVis {
    height: 300px;
  }
  .mainVis_ttl {
    font-size: 26px;
    padding: 5px 0;
    /* text-shadow: 1px 1px 1px #40220e; */
  }
}


/*================================================
 *  フッター
 ================================================*/
footer {
  padding: 40px 10px 10px;
  text-align: center;
  background-color: #f0e6d8;
  font-family: 'Noto Sans Japanese',"メイリオ",Meiryo,sans-serif;
}
footer a {
  color: #40220e;
}
footer .footer_logo img {
  width: 20%;
}
/* アドレス */
footer .address p {
  margin-bottom: 0;
  font-size: 13px;
}
/* オンラインショップ */
.online {
  margin-top: 20px;
}
.online a {
    padding: 7px 30px;
    background-color: #40220e;
    border: 1px solid #40220e;
    border-radius: 3px;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: .1em;
}
.online a:hover {
  background-color: #f0e6d8;
  border:1px solid #40220e;
  color: #40220e;
}

/* SNS */
footer .footer_sns {
  margin-top: 25px;
}
footer .footer_sns a {
  display: inline-block;
  margin: 0 5px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 12px;
  box-sizing: border-box;
  background-color: rgba(255,255,255,0.8);
  border:1px solid #fff;
}
footer .footer_sns i {
  font-size: 21px;
}
footer .footer_sns a.facebook i {
  color: #0f75f6;
}
footer .footer_sns a.instagram i{
  color: #cf3877;
}
footer .footer_sns a.twitter i{
  color: #39a2f3;
}
footer .footer_sns a.line i{
  color: #56ba2e;
}
footer .footer_sns a:hover {
  background-color: #f0e6d8;
  border:1px solid #fff;
}
/* コピーライト */
.copyright {
	padding: 15px 0 0;
	font-size: 11px;
}

@media screen and (max-width:767px) {
  footer .footer_logo img {
    width: 50%;
  }
  footer .footer_sns a {
    width: 33px;
    height: 33px;
    padding: 1px;
  }
  footer .footer_sns i  {
    font-size: 14px;
  }
}

/* ==================================================
  preloader
====================================================*/
.preloader-area {
  background-color: #f0e6d8;
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
}
.preloader-area .loader-box {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
.preloader-area .loader {
    background-image: url(../images/loader.png);
    width: 60px;
    height: 59px;
    -webkit-animation: loader 1s linear infinite;
    -moz-animation: loader 1s linear infinite;
    -o-animation: loader 1s linear infinite;
    animation: loader 1s linear infinite; }

@-webkit-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-moz-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@-o-keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } 
}

/*================================================
 *  ページトップへの戻り
 ================================================*/
#pagetop {
    position: fixed;
    right: 20px;
    bottom: 10px;
    cursor: pointer;
    z-index: 9999;
}
#pagetop .arrow-up{
	 width: 20px;
	 height: 20px;
	 border: 1px solid;
	 border-color: #40220e #40220e transparent transparent;
	 transform: rotate(-45deg);
}
#pagetop.under {
  bottom: 10px;
}





