/* 全体 */
body{
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
	padding-top: 50px;
	margin-top: -50px;
}

body:before {
    content: "";
    display: block;
    background-image: url("../_images/back.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center 50%;
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: -1;
}

/* article */

article {
    width: 100%;
    max-width: 1000px;
	padding: 50px;
    margin: 0 auto;
	box-sizing: border-box;
}

@media all and (max-width: 768px) {

article {
	padding: 20px;
}

}

@media all and (max-width: 425px) {

article {
	padding: 0;
}

}


/* top */

#top {
    width: 100%;
	padding: 60px 20px 0;
    margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.8);
	box-sizing: border-box;
}

#top .wrapper {
    width: 100%;
}

#top .wrapper h1 {
    width: 100%;
	max-width: 562px;
	margin: 0 auto;
}

#top .wrapper h1 img {
    width: 100%;
}

#top .wrapper .top_text {
    width: 100%;
	margin-top: 30px;
}

#top .wrapper .top_text h2 {
    color: #3C3819;
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	letter-spacing: 1px;
	line-height: 1.5em;
	margin-bottom: 10px;
}

#top .wrapper .top_text p {
    color: #3C3819;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 1px;
	line-height: 2em;
}


@media all and (max-width: 768px) {

#top .wrapper h1 {
	max-width: 80%;
}

#top .wrapper .top_text h2 {
	font-size: 4vw;
}

#top .wrapper .top_text p {
	font-size: 3vw;
}

}

@media all and (max-width: 425px) {

#top {
	background-color: rgba(255, 255, 255, 0.6);
}

#top .wrapper .top_text h2 {
	font-size: 16px;
	font-weight: bold;
}

#top .wrapper .top_text p {
	font-size: 14px;
	font-weight: bold;
}

}


@media all and (max-width: 320px) {

#top .wrapper .top_text h2 {
	font-size: 13px;
}

#top .wrapper .top_text p {
	font-size: 13px;
}

}


/* product */

#product {
    width: 100%;
	padding: 60px 20px 0;
    margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.8);
	box-sizing: border-box;
}

#product .wrapper {
    width: 100%;
}

#product .wrapper .item {
    width: 96%;
	padding: 20px;
	margin: 0 auto 60px;
	background-color: #FFF;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
}

#product .wrapper .item:nth-child(2) {
	margin: 0 auto;
}

#product .wrapper .item .photo {
    width: calc(100% / 2);
}

#product .wrapper .item .photo img {
    width: 100%;
}

#product .wrapper .item .info {
    width: calc(100% / 2);
	padding-left: 40px;
	box-sizing: border-box;
}

#product .wrapper .item .info h3 {
    color: #3C3819;
	font-size: 45px;
	font-weight: bold;
	letter-spacing: 1px;
	line-height: 1.5em;
	margin-bottom: 10px;
}

#product .wrapper .item .info .text {
    color: #3C3819;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 2em;
	padding-bottom: 10px;
	border-bottom: #3C3819 1px solid;
}

#product .wrapper .item .info .d_price {
    color: #3C3819;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 2em;
	margin: 10px 0;
}

#product .wrapper .item .info .smoll {
	color: #F00;
	font-size: 16px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1em;
	margin-bottom: 10px;
}

#product .wrapper .item .info .price {
    width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: baseline;
}

#product .wrapper .item .info .price .sale_price {
    color: #F00;
	font-size: 54px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1em;
}

#product .wrapper .item .info .price .etc {
	color: #F00;
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 1em;
}


#product .wrapper .item .info .link {
    width: 100%;
	margin-top: 20px;
}

#product .wrapper .item .info .link a {
	display: block;
	width: 100%;
    color: #FFF;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 2em;
	text-align: center;
	text-decoration: none;
	padding: 15px;
	background-color: #FFA200;
	box-sizing: border-box;
	transition: .5s;
	outline: #FFF 1px solid;
	outline-offset: -5px;
}

#product .wrapper .item .info .link a:hover {
	background-color: #E57D07;
}

#product .wrapper .etc_text {
    color: #3C3819;
	font-size: 16px;
	font-weight: 500;
	text-align: right;
	letter-spacing: 1px;
	line-height: 2em;
	padding: 20px;
	box-sizing: border-box;
}


@media all and (max-width: 978px) {

#product .wrapper .item {
   width: 100%;
}

#product .wrapper .item .info .price {
	display: block;
}

#product .wrapper .item .info .price .sale_price {
    text-align: right;
}

#product .wrapper .item .info .price .etc {
	text-align: right;
	margin-top: 10px;
}

}

@media all and (max-width: 768px) {

#product .wrapper .item {
   display: block;
}

#product .wrapper .item .photo {
    width: 100%;
}

#product .wrapper .item .info {
    width: 100%;
	padding-left: 0;
}

#product .wrapper .item .info .smoll {
    text-align: right;
	margin-right: 8em;
}

}

@media all and (max-width: 425px) {

#product {
	padding: 60px 10px 0;
	background-color: rgba(255, 255, 255, 0.6);
}

#product .wrapper .item {
	padding: 10px;
}

#product .wrapper .item .info .price {
	display: flex;
	justify-content: flex-start;
}

#product .wrapper .item .info .smoll {
    text-align: left;
	margin-right: 0;
}

#product .wrapper .item .info .price .sale_price {
    text-align: left;
	font-size: 50px;
}

#product .wrapper .etc_text {
	text-align: left;
	padding: 20px 0;
}

}

@media all and (max-width: 320px) {

#product .wrapper .item .info h3 {
	font-size: 40px;
}

#product .wrapper .item .info .text {
	font-size: 14px;
}

#product .wrapper .item .info .smoll {
    font-size: 14px;
}

#product .wrapper .item .info .price .sale_price {
	font-size: 35px;
}

}


/* contact */

#contact {
    width: 100%;
	padding: 60px 20px;
    margin: 0 auto;
	background-color: rgba(255, 255, 255, 0.8);
	box-sizing: border-box;
}

#contact .wrapper {
    width: 100%;
}

#contact .wrapper .h_logo {
    width: 100%;
	max-width: 700px;
	margin: 0 auto;
}

#contact .wrapper .h_logo img {
    width: 100%;
}

#contact .wrapper .text {
    color: #3C3819;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 1px;
	line-height: 2em;
	padding: 20px;
	box-sizing: border-box;
}

#contact .wrapper .mail {
    width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

#contact .wrapper .mail a {
	display: inline-block;
	width: 100%;
    color: #FFF;
	font-size: 20px;
	font-weight: 500;
	letter-spacing: 1px;
	line-height: 2em;
	text-align: center;
	text-decoration: none;
	padding: 15px;
	background-color: #4FAA4F;
	box-sizing: border-box;
	transition: .5s;
}

#contact .wrapper .mail a:hover {
	background-color: #338733;
}

@media all and (max-width: 768px) {

#contact .wrapper .h_logo {
	max-width: 90%;
}

#contact .wrapper .mail {
	max-width: 100%;
}

}

@media all and (max-width: 425px) {

#contact {
	padding: 60px 10px;
	background-color: rgba(255, 255, 255, 0.6);
}

#contact .wrapper .h_logo {
	max-width: 100%;
}

}


/* footer */

#footer {
    width: 100%;
}

#footer .copy {
    color: #FFF;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
	letter-spacing: 1px;
	line-height: 2em;
	padding-bottom: 20px;
	box-sizing: border-box;
}

@media all and (max-width: 425px) {

#footer .copy {
	padding-top: 20px;
}

}



