@charset "UTF-8";

/* 全体 */
body{
	background-color:#65aa72;
}

img{
	height:auto;
	max-width:100%;
}

#wrapper{
	width:100%;
}

.top-img img{
	width:100%;
}

.pc{
	display:block;
}

.sp{
	display:none;
}

.flex{
	display: flex;
	height:auto;
}

/* 全体の文字とリンク */
h2, h3, h4, p, ul li, a, dt, dd{
	line-height:2.5;
	letter-spacing:3px;	
	overflow-wrap: break-word;
	text-align: justify;
	text-decoration: none;
	color:#fff;
}

h1{
	font-family: 'Montserrat', sans-serif;
	font-weight:700;
	line-height:1.8;
	letter-spacing:2px;
	color:#fff;
}

ul li{
	list-style-type: none;	
}

p, li, a, h2{
	font-family: 'Noto Sans JP', sans-serif;
}

p{
	font-size:1.4rem;
}

/*中身*/
.first-wrapper, .fourth-wrapper{
	box-sizing: border-box;
	padding:40px 30px 50px;
}

.first-wrapper .caption, .fourth-wrapper .caption{
	width:700px;
	margin:30px auto;
}

.second-wrapper, .third-wrapper{
	box-sizing: border-box;
	padding:60px 0;
}

.second-wrapper{
	background-color:#84bb8e;
	margin-top:-20px;
}

.mid-container{
	width:900px;
	margin:auto;
}

.img-big-box{
	margin-top:-40px;
}

.img-big-box h1{
	font-size:6rem;
	display: block;
	position:relative;
	top:45px;
	left:-20px;
	z-index:10;
}

.img-big-box h2{
	color:#000;
	font-size:3rem;
	line-height:1.3;
	text-align: center;
	z-index:11;
}

.white{
	background-color:#fff;
	box-sizing: border-box;
	padding:5px 20px;
	position:relative;
	bottom:90px;
	left:100%;
	transform: translateX(-100%);
	margin-bottom:-60px;
}

.second-wrapper .white{
	width:350px;
}

.third-wrapper .white{
	width:500px;
}

.mid-container .caption{
	width:90%;
	margin:40px auto;
	box-sizing: border-box;
	padding:30px 0;
}

.mid-container .caption p{
	text-align:center!important;
}

.flex-container{
	justify-content: space-between;
}

.flex-img, .style-flex{
	width:49%;
}

.style-container{
	margin:30px 0 20px;
	padding:30px 0 15px;
}

.style-container h1{
	font-size:5rem;
	text-align: center;
	margin-bottom:10px;
}

.style-img-box{
	width:70%;
	margin:0 auto 40px;
}

.com-box{
	box-sizing: border-box;
	padding:15px;
}

.slick{
	margin:40px 0;
}

.third-wrapper .caption p{
	margin-bottom:20px!important;
}

.third-wrapper{
	margin-bottom:40px!important;
}

.recommend-wrapper{
	width:800px;
	margin:50px auto 30px;
	padding-top:70px;
}

.recommend-wrapper h1{
	font-size:2.5rem;
	margin:20px 0;
}

.recommend-flex{
	flex-wrap: wrap;
	gap:30px;
}

.item-box{
	width:calc((100% - 30px * 2) / 3);
}

/*inview*/
.fadeIn {
  opacity: 0;
  transition: 2s;
}
.fadeIn.is-show {
  opacity: 1;
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 20%);
  transition: 1.5s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(50%, 0);
  transition: 2s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/*アイテムリスト*/
.new-item-list{
	width:100%;
	box-sizing: border-box;
	margin:10px 0;
	padding:10px 0;
}

.new-item-list li{
	font-size:1.1rem;
	margin:7px 0;
	text-align:initial;
	list-style-type: none;
}

.notbuy{
	color:#808080;
}

.text-buy{
	/*text-decoration: underline;*/
	text-decoration: none;
}

.text-buy:link, .text-buy:visited{
	color:#fff;
}

.text-buy:hover{
	color:#cccccc;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.buy_button {
  display: inline-block;
  width: 50px;
  font-size:0.9rem;
  line-height:1.3;
  padding:4px;
  font-weight:bold;
  text-align: center;
  text-decoration: none;
  outline: none;
  background-color: #333;
  color: #fff;
}

.buy_button::before,
.buy_button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: '';
}

.buy_button,
.buy_button::before,
.buy_button::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.buy_button:hover {
  background-color: #364f72;
}

/*戻るボタンの設定*/
.big_button a{
	height:100%;
	display: block;
	width:500px;
	margin:70px auto 30px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

.back{
	color:#fff;
	font-weight:bold;
	font-size:1.4rem;
	text-align: center!important;
}

.back_button{
	width:240px;
	padding:10px 5px;
	text-align: center;
}

.back_button{
	background-color:#364f72;
}

.back_button:hover{
	background-color:#4E709F;
	-webkit-transition:0.3s ease-out;
	-moz-transition:0.3s ease-out;
	-ms-transition:0.3s ease-out;
	transition:0.3s ease-out;
}

/*フッター*/
footer{
	width:100%;
}

#footer{
	box-sizing: border-box;
	padding:40px 30px 30px;
	margin-top:50px;
	text-align: center;
}

#footer a img{
	width:60px;
	margin-bottom:20px;
}

#footer a{
	font-size:1.2rem;
}

.credit{
	font-size:1rem;
	text-align: center;
}

.footer a:link, .footer a:visited{
	text-decoration:none;
}

/*戻るボタン*/
#p-top{
	display:block;
    position: fixed;
	background-color:#604c3f;
    bottom: 5%;
    right: 3%;
	z-index:1000;
	padding:0.7% 1%;
	filter:alpha(opacity=70);
    -moz-opacity: 0.7;
    opacity: 0.7;
}
#p-top::after{
	content:'\f077';
	font-family:'FontAwesome';
	color:#fff;
	font-size:2.5rem;
}
#p-top:hover {
	filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
	-webkit-transition: opacity 0.3s ease-out;
	-moz-transition: opacity 0.3s ease-out;
	-ms-transition: opacity 0.3s ease-out;
	transition: opacity 0.3s ease-out;
}


/*タブレット用*/
@media screen and (max-width: 820px){

	.first-wrapper .caption, .fourth-wrapper .caption{
		width:75%;
	}
	
	.mid-container, .recommend-wrapper{
		width:85%;
		margin:auto;
	}	

}

/*スマホ用*/
@media screen and (max-width:640px){

	.pc{
		display:none;
	}
	
	.sp{
		display:block;
	}
	
	.first-wrapper{
		padding:40px 20px 50px;
	}

	.fourth-wrapper{
		padding:10px 20px 20px;
	}

	
	.first-wrapper .caption, .fourth-wrapper .caption{
		width:85%;
	}
	
	.mid-container{
		width:95%;
		margin:auto;
	}
	
	.recommend-wrapper{
		width:90%;
		margin:20px auto 0;
	}
	
	.recommend-flex{
		flex-wrap: wrap;
		gap:30px;
	}

	.img-big-box h1{
		font-size:3.5rem;
		display: block;
		position:relative;
		top:25px;
		left:-5px;
		z-index:10;
	}

	.img-big-box h2{
		color:#000;
		font-size:1.6rem;
		line-height:1.3;
		text-align: center;
		z-index:11;
	}

	.white{
		background-color:#fff;
		box-sizing: border-box;
		padding:5px 10px;
		position:relative;
		bottom:50px;
		left:100%;
		transform: translateX(-100%);
		margin-bottom:-40px;
	}

	.second-wrapper .white{
		width:50%;
	}

	.third-wrapper .white{
		width:80%;
	}
	
	.mid-container .caption{
		margin:20px auto;
		padding:20px 0;
	}
	
	.mid-container .caption p{
		text-align:justify!important;
	}
	
	.style-container{
		margin:30px 0 10px;
		padding:30px 0 0;
	}

	.style-container h1{
		font-size:3.5rem;
		margin-bottom:10px;
	}
	
	.style-container .flex{
		display:block;
	}
	
	.style-flex{
		margin:10px auto 50px;
	}

	.style-img-box, .style-flex{
		width:85%;
	}
	
	.slick{
		margin:20px;
	}
	
	.recommend-wrapper h1{
		font-size:1.9rem;
		text-align: center!important;
		margin-bottom:20px;
	}
	
	.sp-white{
		background-color:#fff;
		box-sizing: border-box;
		padding:5px 20px;
		color:#000!important;
	}
	
	.item-box{
		width:calc((100% - 15px * 2) / 2);
	}
	
	.item-box p{
		font-size:1.2rem!important;
	}

	.big_button a{
		width:90%;
		text-align: center;
		margin:40px auto 30px;
	}

	#p-top{
		padding:2% 3%;
	}

	#footer{
		width:100%;
		padding:20px 0;
	}

	.credit{
		font-size:0.8rem;
	}

}

/* CSS Document */

