@charset 'utf-8';
/* ==========================================

  全体

========================================== */
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 500px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}
/*---------------- ▽clearfix▽ ----------------*/
/* clear */
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  min-height: 1px;
}
* html #contents,
* html .clearfix {
  height: 1px;
  /*\*//*/
  height: auto;
  overflow: hidden;
  /**/
}
/*---------------- ▽style▽ ----------------*/
a{
  color: #000;
  text-decoration: none;
}
a:hover{
  cursor: pointer;
}
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	font-family:"Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}

/* サイト全体 */
.wrap{

}
@media screen and (max-width: 750px){
.wrap{

}
}
/* メインボックス全体 */
.wrap{

}
@media screen and (max-width: 750px){
.wrap{

}
}
/* ==========================================

  animation

========================================== */
/*---------------- ▽フェイドイン▽ ----------------*/
.fadeIn_up {
  opacity: 0;
  transform: translate(0, 50%);
  transition: 2s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}
/*---------------- ▽ページトップ▽ ----------------*/
#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 5vw;
  bottom: 0;
  background: #00aa6e;
  z-index: 10;
}
#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: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 600px){
  #page_top{
    position: fixed;
    right: 0;
  }
}
/* ==========================================

  header

========================================== */
.logo_wrap{
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	padding:10px 20px;
	box-sizing: border-box;
}
.logo_wrap img{
	width: 250px;
}
/* ==========================================

  footer

========================================== */
.footer_wrap{
	width: 760px;
	margin: 0 auto;
	text-align: left;
	word-break: keep-all;
}
.footer_wrap th{
	text-align: center;
	font-weight: bold;
	padding: 0.5em;
	color: #6A3906;
	font-size: 18px;
}
.footer_wrap td{
	font-weight: bold;
	padding: 0.5em;
	line-height: 1.5em;
	color: #6A3906;
	font-size: 16px;
}

@media screen and (max-width: 900px){
	.footer_wrap{
		width: 90vw;
  }
}

/* ==========================================

PC

========================================== */
main{
	background:url(../images/bg.png), #CDEAF9;
	padding-bottom: 100px;
}

.main_wrap.pc{
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
	background-color: #CCDE6F;
	padding-bottom: 50px;
	border-radius: 0 0 10px 10px;
}

.main_wrap.pc .MV_wrap{
	margin-bottom: 50px;
}
.main_wrap.pc .MV_wrap img{
	width: 100%;
}

.main_wrap.pc .section_wrap{
	width: 760px;
	margin: 0 auto;
}
.main_wrap.pc .section1,
.main_wrap.pc .section2,
.main_wrap.pc .section3,
.main_wrap.pc .section4,
.main_wrap.pc .section5,
.main_wrap.pc .section6,
.main_wrap.pc .section7{
	margin-bottom: 20px;
}
.main_wrap.pc .section1 img,
.main_wrap.pc .section2 img,
.main_wrap.pc .section3 img,
.main_wrap.pc .section4 img,
.main_wrap.pc .section5 img,
.main_wrap.pc .section6 img,
.main_wrap.pc .section7 img{
	width: 100%;
}

/* .main_wrap.pc .section3{
	margin-top: -30px;
} */
.main_wrap.pc .section7{
	margin-bottom: 50px;
}
.main_wrap.pc .section1{
	position: relative;
}
.main_wrap.pc .section1 p:nth-child(2){
	position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    width: 94%;
    margin: 0 auto;
}
.main_wrap.pc .section1 p:nth-child(2):hover{
	opacity: .6;
}

@media screen and (max-width: 900px){
  .main_wrap.pc .section_wrap{
		width: 90vw;
  }
	main{
		padding: 0;
	}
}

/* ==========================================

SP

========================================== */
@media screen and (max-width: 500px){
	.main_wrap.sp{
		width: 100%;
		text-align: center;
		background-color: #CCDE6F;
		padding-bottom: 50px;
	}
	.main_wrap.sp .MV_wrap{
		margin-bottom: 30px;
	}
	.main_wrap.sp .MV_wrap img{
		width: 100%;
	}

	.main_wrap.sp .section_wrap{
		width: 90vw;
		margin: 0 auto;
	}
	.main_wrap.sp .section1,
	.main_wrap.sp .section2,
	.main_wrap.sp .section3,
	.main_wrap.sp .section4,
	.main_wrap.sp .section5,
	.main_wrap.sp .section6,
	.main_wrap.sp .section7,
	.main_wrap.sp .section8{
		margin-bottom: 20px;
	}
	.main_wrap.sp .section1 img,
	.main_wrap.sp .section2 img,
	.main_wrap.sp .section3 img,
	.main_wrap.sp .section4 img,
	.main_wrap.sp .section5 img,
	.main_wrap.sp .section6 img,
	.main_wrap.sp .section7 img,
	.main_wrap.sp .section8 img{
		width: 100%;
	}

	/* .main_wrap.sp .section3{
		margin-top: -30px;
	} */
	.main_wrap.sp .section8{
		margin-bottom: 50px;
	}

	.main_wrap.sp .section1{
		position: relative;
	}
	.main_wrap.sp .section1 p:nth-child(2){
		position: absolute;
		bottom: 10px;
		left: 0;
		right: 0;
		width: 94%;
		margin: 0 auto;
	}
	.main_wrap.sp .section1 p:nth-child(2):hover{
		opacity: .6;
	}

}
