@charset "utf-8";

html {
	font-size: 62.5%;
}

body {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo , sans-serif;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.header-box {
	height: 50px;
}

header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background-image: url(../images/nav_back.png);
	background-size: cover;
	background-repeat: no-repeat;
	display: flex;
	z-index: 999;
}

header p img {
	width: 150px;
	margin: 10px 0 0 10px;
}

nav {
	display: none;
}

/** ハンバーガーメニュー **/

/* hamburgerここから */
	/* inputを非表示 */
.input-hidden{
	display: none;
}
	/* label */
.hamburger-demo-switch{
	cursor: pointer;
	position: absolute;
	right: 1%;
	top: 0; /* ハンバーガーアイコンの位置（上から） */
	z-index: 9999;
	width: 4em; /* アイコン（クリック可能領域）の幅 */
	height: 4em; /* アイコン（クリック可能領域の）高さ */
}
/* メニュー展開時にハンバーガーアイコンを固定 */
#hamburger-demo1:checked ~ .hamburger-demo-switch{
	position: fixed;
}
/* ハンバーガーアイコン */
.hamburger-switch-line1, .hamburger-switch-line1:before, .hamburger-switch-line1:after{
	width: 25px;
	height: 3px;
	background: #a6dbed; /* ハンバーガーアイコンの色 */
	position: absolute;
	top: 50%;
	left: 50%;
	transition: .3s;
	content: "";
}
.hamburger-switch-line1{
		transform: translate(-50%, -50%);
}
.hamburger-switch-line1:before{
	transform: translate(-50%, -300%);
}
.hamburger-switch-line1:after{
	transform: translate(-50%, 200%);
}
/* ハンバーガーアイコン･アニメーション */
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1{
	width: 0;
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:before{
	transform: rotate(45deg) translate(-40%, 325%);
}
#hamburger-demo1:checked ~ .hamburger-demo-switch .hamburger-switch-line1:after{
	transform: rotate(-45deg) translate(-40%, -325%);
}
/* メニューエリア */
.hamburger-demo-menuwrap{
	position: fixed;
	height: 100%;
	background: #fafafa; /* メニューエリアの背景色 */
	padding: 5em 3% 2em;
	z-index: 9998;
	transition: .3s;
	overflow-y: scroll; /* メニュー内容が多い場合に縦スクロールする */
	top: 0;
	left: 100%;
	width: 30%;
}
/* メニューリスト */
.hamburger-demo-menulist{
	margin-right: 3%;
	padding-left: 5% !important; /* !important不要な場合もあり */
	list-style: none;
}
.hamburger-demo-menulist li a{
	font-size: 1.4rem;
	text-decoration: none;
	color: #a6dbed; /* メニューリストの文字色 */
	display: block;
	padding: .5em 0;
}

.hamburger-demo-menulist li a:hover {
	color: #ff96c4;
}

/* メニューエリア･アニメーション */
	/* 右から */
#hamburger-demo1:checked ~ .hamburger-demo-menuwrap{
	left: 70%;
}
	/* コンテンツカバー */
#hamburger-demo1:checked ~ .hamburger-demo-cover{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 9997;
	background: rgba(3,3,3,.5);
	display: block;
}

.hamburger-demo-menulist img {
	width: 20px;
	padding: 5px 0 0 5px;
}

/** top **/

#top {
	width: 100%;
	height: 450px;
	background-image: linear-gradient(0deg, rgba(250, 216, 229, 1), rgba(177, 221, 245, 1));
	text-align: center;
}

#top h1 img {
	width: 300px;
	margin-top: 80px;
}

.a {
	font-size: 1.2rem;
	font-weight: bold;
	color: #fff;
	line-height: 1.5;
	padding-top: 40px;
	animation-name: textanime;/*keyname*/
	animation-duration: 8s;/*最大再生時間*/
	animation-iteration-count: 1;/*繰り返し*/
}

@keyframes textanime
{
 0%{
  opacity: 0;
 }

 100%{
  opacity: 1;
 }
}

.b {
	font-size: 1.2rem;
	font-weight: bold;
	color: #fff;
	padding-top: 20px;
	animation-name: textanime;/*keyname*/
	animation-duration: 13s;/*最大再生時間*/
	animation-iteration-count: 1;/*繰り返し*/
}

@keyframes textanime
{
 0%{
  opacity: 0;
 }

 100%{
  opacity: 1;
 }
}

#topImg p {
	display: inline;
}

.main img {
	width:200px;
	padding-top: 40px;
	animation-name: main;
	animation-duration: 6000ms;
	animation-iteration-count: infinite;
	animation-timing-function: step-start;
}

@keyframes main {
  0% {
    transform: translateY(-2px) rotate(6deg);
  }

  10% {
      transform: translate(0) rotate(0deg);
  }
  20% {
      transform: translate(0) rotate(-6deg);
  }
  30% {
      transform: translateY(-2px) rotate(0deg);
  }
  40% {
      transform: translateY(-2px) rotate(6deg);
  }
  50% {
      transform: translate(2px) rotate(-2deg);
  }
  60% {
      transform: translateY(2px) rotate(0deg);
  }
  70% {
      transform: translate(0) rotate(6deg);
  }
  80% {
      transform: translate(2px) rotate(-2deg);
  }
  90% {
      transform: translate(0) rotate(0deg);
  }
  100% {
      transform: translateY(-2px) rotate(6deg);
  }
}

.kumo img {
	display: none;
}

/** article **/

article {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}

/** sample **/

#sample {
	margin-top: 20px;
	padding-bottom:70px;
}

#sample h2 {
	font-size: 1.4rem;
	font-weight: bold;
	color: #ffabc1;
	padding-bottom: 10px;
}

.container {
  margin-inline: auto;
  width: 95%;
  position: relative;
}
.swiper {
	width: 95%;
	height: auto;
}

.swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-navigation-icon {
	display: none;
}

/* 幅・高さを指定 */
.swiper-button-prev,
.swiper-button-next {
  height: 25px;
  width: 25px;
}
 
/* 矢印を消す、画像に変更 */
.swiper-button-prev:after,
.swiper-button-next:after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  height: 25px;
  width: 25px;
  margin: auto;
}
 
/* 前に戻る画像パス */
.swiper-button-prev:after {
  background-image: url(../images/prev.png);
}
/* 次に進む画像パス */
.swiper-button-next:after {
  background-image: url(../images/next.png);
}

/* ページネーション */
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: -30px;
}

.swiper-pagination-bullet {
  background-color: #79f0fb;
}

/** map **/

#map {
	text-align: center;
	padding-bottom: 20px;
}

.box img {
	width: 100%;
}

.box {
  animation: fadeIn 8s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/** news **/

#news {
	width: 85%;
	height: auto;
	display: flex;
	margin-bottom: 30px;
}

#news h3 img {
	width: 150px;
	padding: 0 10px;
}

.newsImg img {
	width: 230px;
}

.tate {
	display: none;
}

#banner {
	width: 95%;
	display: flex;
	justify-content: space-between;
	height: auto;
	margin: 0 auto;
	padding-bottom: 30px;
}

#banner img {
	width: 125px;
	height: auto;
}

#topBtn {
	width: 100%;
	height: 100px;
	margin: 0 auto;
}

#topBtn img {
	width: 65px;
}

/** footer **/

footer {
	width: 100%;
	height: 50px;
	background-color: #fad8e5;
}

.text { 
	line-height: 1.2;
	font-weight: bold;
	color: #999;
	text-align: center;
	padding-top: 12px;
}

.sns {
	display: none;
}

