@charset "UTF-8";
body{
	background-color: rgba(255,250,240);
}
	
#wrapper{
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

header{
	background-image: url(../img/logo.svg);
	background-repeat: no-repeat;
	background-size: 300px;
	border: solid 1px rgba(0,0,0,0); 
	box-sizing: border-box;
	background-color: rgba(255,250,240,0.6);
	position: relative;
	height: 90px;
	width: 100%;
	position: fixed;
	z-index: 9999;
}
#text{
	width: 200px;
	padding: 20px;
}

.clearText{
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}


section{
	font-family: 'Lexend Zetta', sans-serif;
	text-align: center;
}


nav li{
	color: #333631;
	height: 35px;
	float: right;
	margin: 15px 15px 0 0;
	padding: 9px 9px 0 9px;
	position: relative;
 	display: inline;
 	text-decoration: none;
 	font-size: 13px;
	font-family: 'Lexend Zetta', sans-serif;
}
nav li::after{
    position: absolute;
    bottom: 5px;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #8B4513;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform .3s;
}
nav li:hover::after{
    transform: scale(1, 1);
}
.menu:first-child{
	margin-right: 36px;
}

li span{
	display: block;
}

.slider img{
	width: 100%;
	margin: 0 auto;
}
nav li:hover{
	color: #8B4513;
}
nav i{  
	margin-right: 10px;
	
}

h2{
	font-family: 'Lexend Zetta', sans-serif;
	font-size: 30px;
	border-top: 1.5px solid gray;
	border-bottom: 1.5px solid gray;
	width: 800px;
	margin: 180px auto 90px auto; /* 中央寄せにするため */
	padding: 70px 0;
	text-align: center;
}



/*ここから   ABOUT*/
#aboutwrapper{
	width: 900px;
	margin: 0 auto;
	padding-bottom: 150px;
}

#pfont p{
	font-size: 18px;
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
	font-weight: 500;
	line-height: 2.6rem;
	padding: 50px 50px 50px 180px;
    background-image: url(../img/smooth1botanicalcandle.png);
	background-repeat: no-repeat;
	background-color: rgba(255,250,240);
	padding-bottom: 40px;
}
ｘ

/*ここからABOUTのMATERIALS*/

/*ここからコピーして貼り付け*/

.line{
	color: darkgray;
	size: 1px;
	width: 800px;
	margin: 0 auto;
}
.materialText h3{
	display: inline-block;
	text-decoration: underline;

	width: 800px;
	margin: 0 auto 15px auto;
}
.materialText p{
	display: inline-block;
	width: 800px;
	height: 200px;
	margin: 0 auto;
	font-size: 18px;
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
	font-weight: 500;
	line-height: 2.6rem;
}
#wax{
	background-image: url(../img/aboutbeeswax.jpg);
	background-repeat: repeat;
	background-color:rgba(255,255,255,0.7);
	background-blend-mode:lighten;
	height: 280px;
	margin: 0 auto;
}
#fruits{
	background-image: url(../img/materialorange.png);
	background-repeat: repeat;
	background-color: rgba(255,250,240,0.6);
	background-blend-mode:lighten;
	height: 220px;
	margin: 0 auto;
}
#pigments{
	background-image: url(../img/spherecandleblue.png);
	background-repeat: repeat-x;
	background-color: rgba(255,250,240,0.6);
	background-blend-mode:lighten;
	height: 220px;
	margin: 0 auto;
}

/*ABOUT おしまい*/
/*ここから  LESSON*/
#lesson{
	margin: 0 auto;
	width: 965px;
}

.eachLesson{
	margin: 10px;
	float: left;
}
#lesson::after{
	content: "";
	display: block;
	clear: both;
	/*float解除*/
}
#lesson h3{
	width: 297px;
	font-size: 18px;
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
	font-weight: 500;
	line-height: 1.6rem;
}
#lesson p{
	margin: 0;
	text-align: center;
	font-size: 18px;
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
	font-weight: 500;
	line-height: 2.6rem;
	padding-bottom: 40px;
}
/*LESSONのホバー*/
.eachLesson{
	position: relative;
	width: 300px;
	height: 300px;
}
.eachLesson .lessonimg {
  margin: 0;
  padding: 0;
}
.lessonimg{
	width: 100%;
	height: 100%;
	border-radius: 20px;
}
.eachLesson .hovertext{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: #fff;
	background-color: rgba(0,0,0,0.75);
	border-radius: 20px;
	opacity: 0;
	transition: .3s ease-in-out;
}
.eachLesson .hovertext .text1{
	font-size: 21px;
}
.eachLesson .hovertext .text2{
	font-size: 14px;
	padding: 5px;
	
	
	
}
/*ホバーエフェクト*/
.eachLesson:hover .hovertext {
	/*不透明にして表示*/
	opacity: 1;
}
/*LESSON　おしまい*/

/*ここから  ORDER*/
#orderwrapper{
	width: 100%;
	margin: 0 auto;
}

#order p{
	font-size: 18px;
	text-align: left;
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
    font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	padding-bottom: 40px;
}
.link h3{
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
    font-style: normal;
	font-weight: 600;
	font-size: 25px;
	line-height: 2.6rem;
	height: 30px;
	width: 300px;
	display: inline;

	padding-bottom: 5px;
	margin: 5px 0;	
}
.link p{
	padding-top: 10px;
	height: 130px;
	width: 300px;
	text-align: left;
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
    font-style: normal;
    line-height: 2.6rem;
}

.link img{
	border-radius: 150px;
	width: 298px;
	
}

.link{
	float: left;
	margin: 60px 0 60px 20px;
}

#order::after{
	content: "";
	display: block;
	clear: both;
}/*float解除*/



/*ORDER　ここまで*/
/*ここから　GALLERY*/
#gallery{
	margin-top: 50px;
}
.galleryP{
	font-size: 18px;
	text-align: center;
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
    font-style: normal;
	font-weight: 500;
	line-height: 2.6rem;
	padding-bottom: 40px;
}

.eachCandle{
	margin: 10px;
	float: left;
}
#hoverWrapper{
	margin: 0 auto;
	width: 965px;
	overflow: hidden;
	/*float解除*/
}
/*GALLERYのホバー*/
.eachCandle{
	position: relative;
	width: 300px;
	height: 300px;
}
.eachCandle .candleimg {
  margin: 0;
  padding: 0;
}
.candleimg{
	width: 100%;
	height: 100%;
	border-radius: 20px;
}
.eachCandle .hovercandle{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	color: #fff;
	background-color: rgba(0,0,0,0.75);
	border-radius: 20px;
	opacity: 0;
	transition: .3s ease-in-out;
}
.eachCandle .hovercandle .text1{
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
	font-size: 21px;
	padding: 20px;
	
}
.eachCandle .hovercandle .text2{
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
	font-size: 16px;
	padding: 20px;
	text-align: left;
	line-height: 1.5rem;
}
/*ホバーエフェクト*/
.eachCandle:hover .hovercandle {
	/*不透明にして表示*/
	opacity: 1;
}
/*GALLERY　おしまい*/






/*ここからTOPへボタン*/

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: -50px;
  bottom: 50px;
  background: #8B4513;
  opacity: 0.6;
  border-radius: 20%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 25px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
/*ここまでTOPへボタン*/


/*ここから　RESERVATION*/
#reservation p{
	padding-bottom: 15px;
	font-size: 18px;
	text-align: center;
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
    font-style: normal;
	font-weight: 500;
}
/*RESERVATION　おしまい*/
/*ここから　FOOTER*/

#address{
	width: 800px;
}

#accesswrapper{
	width: 800px;
	margin: 0 auto;
	overflow: hidden;
}

#map{
	float: left;
}
#address dl{
width: 300px !important;
display: inline;
float: left;
}

#address dt{
	width: 300px !important;
	padding-top: 35px;
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
    font-size: 16px;
    text-decoration: underline;
    text-align: left;
}

#address dd{
	width: 300px;
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
    font-size: 16px;
    text-align: left;
}


/*ここから　CONTACT*/

#contact p{
	font-size: 18px;
	text-align: center;
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
    font-style: normal;
	font-weight: 400;
	line-height: 2.6rem;
}
table{
	margin: 0 auto;
}

th{
	font-family: "游明朝",YuMincho,"ヒラギノ明朝 ProN W3",
                 "Hiragino Mincho ProN","HG明朝E","MS 明朝","MS 明朝",serif;
	font-size: 12px;
	margin-bottom: 0;
	text-align: left;
}

textarea{
	height: 100px;
	font-size: 12px;
	width: 350px;
}
td{
	border: solid darkgray 1px;
}
input[type="submit" i]{
    background-color: white;
    padding: 3px 20px;
    margin: 15px;
    border: solid darkgray 2px;
    border-radius: 5px;
}/*送信ボタン*/
/*CONTACT　おしまい*/
#footersmall{
	background-color: #343434;
}
small{
	font-family: serif;
	color: #fff;
	padding: 5px;
	display: block;
	margin-top: 20px;
}
/*ここから上はPC向け*/
@media screen and (min-width: 960px){


}


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

}