@charset "UTF-8"; 
/*== 目次 =======================

　1.リセット
　2.基本
 
　3.共通
　　3-1.ページTOPに戻る
　　3-2.ボタン
　　3-4.SP表示

　4.header
　　4-1.ナビリスト
　　4-2.メインビジュアル
　　4-3.サブビジュアル

　5.footer
 
================================*/



/*===============================
	リセット
================================*/
body, h1, h2, h3, h4, p, ul, figure, dl, dt, dd, nav {
	margin: 0;
	padding: 0;
}


/*===============================
	基本
================================*/
* {
	box-sizing: border-box;
}
html {
	height: 100%;
	font-size: 62.5%;
	scroll-behavior:smooth;
	overflow-y: scroll;
  	-webkit-overflow-scrolling: touch
}
body {
	display: block;
	margin: 0 auto;
	background-color: #FBFBFB;
	color: #000;
	font-family: dnp-shuei-mgothic-std,sans-serif;
	font-weight: 400,600;
	font-style: normal;
	font-size: 1.6rem;
	letter-spacing: 0.05em;
	line-height: 1.5;
	overflow: hidden;
}
h2 {
	font-size: 3rem;
	display: inline;
	font-weight: bold;
}
p {
	font-size: 1.4rem;
}
address {
  	font-style: normal;
}
ul {
	list-style: none;
}
img {
	display: block;
	width:100%;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
	object-fit: cover;
}
a {
	color: #000;
	text-decoration: none;
}
a:hover {
	color: #FFF500;
	text-decoration: none;
}


/*===============================
	共通
================================*/
.pc-only {
	display: none;
}
.my-small {
	font-size: 20px;
}

/* ページTOPに戻る ---------------*/
#page-top {
	position: fixed;
	bottom: 10%;
	right: 5%;
	z-index: 10;
	background-color: transparent;
}
.page-topB {
	position: relative;
	display: block; 
	background-color: #000;
	color: #FFF;
	text-decoration: none;
	font-weight: bold;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 24px;
	border-radius: 30px;
	padding-top: 30px;
	box-sizing: border-box;
}
.page-topB:hover {
	color: #FFF;
}
.page-topB:before {
	content: '\25B2';
	position: absolute;
	top: 10px;
	left: 0;
	width: 100%;
	text-align: center;
	font-size: 20px;
}

/* ボタン -----------------------*/
a.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #000;
    padding-right: 5px;
    width: 120px;
    height: 30px;
    color: #FFF;
    text-align: center;
    position: relative;
    transition-duration: 0.2s;
}
a.btn:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 7px 0 7px 8px;
    border-color: transparent transparent transparent #FFF;
    position: absolute;
    top: 50%;
    right: 6%;
    margin-top: -7px;
}
a.btn:hover {
    color: rgb(255, 182, 193);
}

/* 各種ボタン設定 */
a.btn-R {
    margin: 20px 0 20px auto;
}
a.btn-R:before {
    right: 3%;
}
a.btn-C {
    margin: 0 auto;
}
a.btn:hover::before {
    border-color: transparent transparent transparent rgb(255, 182, 193);
}

@media screen and (min-width: 960px) {
	
	.sp-only {
		display: none;
	}
	.pc-only {
		display: inherit;
	}
}



/*===============================
	header
================================*/
.header_area {
	display: flex;
	background-color: #FFB6C1;
}
.logo img {
    width: 50px;
    max-width: 50px;
    height: 50px;
}

/* ナビリスト ------------------*/
.gNav ul {
	display: flex;
	justify-content: space-around;
	align-content: center;
	flex-wrap: wrap;
	padding: 7px 5px;
	width: 100%;
	height: 50px;
}
.gNav ul li {
	padding: 0 5px;
}
.gNav ul .F a {
	color: #FFF;
}
.gNav ul li a:hover {
	color: #FFF500;
}
.Nav-link {
	display: none;
}

/* メインビジュアル -----------*/
.head {
	display: flex;
	align-items: center;
	width: 100%;
	height: auto;
}

/* .sidelogo */
.sidelogo {
	background-color: #FFB6C1;
}
.sidelogo img {
	width: 50px;
	max-width: 50px;
	height: 480px;
    object-fit: contain;
}

/* メインビジュアルPC */
.mainVisual_pc {
	display: none;
}

/* メインビジュアルSP */
.mainVisual_sp {
  	position: relative;
  	overflow: hidden;
  	width: 100%;
	height: 480px;
  	margin: auto;
  	background : #fff;
}
.mainVisual_sp img {
  	display: block;
  	position: absolute;
  	width: inherit;
  	height: inherit;
  	opacity: 0;
  	animation: slideAnime 15s ease infinite;
}


.mainVisual_sp img:nth-of-type(1) {
	animation-delay: 0s
}
.mainVisual_sp img:nth-of-type(2) {
	animation-delay: 5s
}
.mainVisual_sp img:nth-of-type(3) {
	animation-delay: 10s
}
 
@keyframes slideAnime{
   0% { opacity: 0 }
   8% { opacity: 1 }
  25% { opacity: 1 }
  33% { opacity: 0 }
 100% { opacity: 0 }
}


/* サブビジュアル -------------------*/
.subVisual .slideshow {
  	display: flex;
  	animation: loop-slide 30s infinite linear 1s both;
  	margin-top: 20px;
}
.subVisual .content {
	display: flex;
	overflow: hidden;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.subVisual .img-box {
  	width: 180px;
  	height: auto;
  	margin-left: 10px;
}
.subVisual img {
  	width: 100%;
  	height: 100%; 
}


/*===============================
	footer
================================*/
footer {
	background-color: #FFB6C1;
	padding: 15px 0;
	text-align: center;
}
footer .sns {
	display: flex;
	justify-content: center;
	padding: 30px 0;
}
footer .sns img {
	width: 40px;
	padding: 0 10px;
}

@media screen and (min-width:380px) {

	.sidelogo img {
		height: 130vw;
	}
	.mainVisual_sp {
		height: 130vw;
	}
}


@media screen and (min-width:500px) {
	.header_area {
		justify-content: space-between;
	}
	.logo img {
		width: 70px;
		max-width: 70px;
		height: 70px;
	}
	.gNav ul {
		height: 70px;
	}
	.gNav ul li {
		padding: 0 10px;
	}
	.mainVisual_sp {
		display: none;
	}
	.sidelogo {
		display: none;
	}
	.mainVisual_pc {
		display: inherit;
		width: 100%;
		height: auto;
	}
	.subVisual .slideshow {
		margin-top: 40px;
	}
	.subVisual .content {
		padding-bottom: 40px;
	}
	.subVisual .img-box {
	  	width: 250px;
	}
}

@media screen and (min-width:700px) {

	.navsp {
		display: none;
	}
	.Nav-link {
		display: inherit;
		width: 70px;
		background-color: #000;
		position: relative;
	}
	.Nav-link a {
		color: #FFF;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translateY(-50%) translateX(-50%);
	}
	.Nav-link a:hover {
		color: #FFF500;
	}
	.gNav ul li {
		padding: 0 10px;
		font-size: 1.8rem;
	}

	.subVisual .img-box {
	  	width: 280px;
	}
}

@media screen and (min-width:960px) {
	.logo img {
		width: 100px;
		max-width: 100px;
		height: 100px;
	}
	.gNav ul {
		height: 100px;
	}
	.Nav-link {
		width: 100px;
	}
}

@media screen and (min-width:1200px) {

	.gNav ul li {
		padding: 0 20px;
	}
	.subVisual .img-box {
	  	width: 480px;
	  	height: auto;
	}
}

