@charset "utf-8";


/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Questrial&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tangerine&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Zen+Maru+Gothic&display=swap');



/*keyframes.cssの読み込み
---------------------------------------------------------------------------*/
@import url("keyframes.css");

/*レスポンシブ
---------------------------------------------------------------------------*/

*
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/*
@media only screen and (max-width: 750px) {
    img { max-width: 100%; }
}
これでどんなに大きい画像でも、画面の枠からは飛び出ないようになります？*/





body{
	color: #26211E;
	font-family: Verdana, Geneva, "sans-serif";
	margin:0;
	background-image: url("../img/bg-07.png");
	background-repeat: repeat;
}



/*文字など
---------------------------------------------------------------------------*/
h1{
	margin-bottom: 15px;
	font-family: "Quicksand", sans-serif;
	font-weight: 700;
  
}


p{
	font-family: "Zen Maru Gothic", serif;
	line-height: 1.75;
	font-weight: bold;
}




/*戻るボタン*/
/* ここから下がボタンのCSS　*/
.btn-animation-02 {
  display: inline-block;
  width: 200px;
  text-align: center;
  background-color: #F4B1B2;
  border: 2px solid #26211E;
  font-size: 16px;
  color: #26211E;
  text-decoration: none;
  padding: 10px 24px;
  border-radius:4px;
  position: relative;
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

.btn-animation-02 span {
  position: relative;
  z-index: 1;
}

.btn-animation-02::before,
.btn-animation-02::after {
  content: "";
  display: block;
  background-color: #FFF;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.btn-animation-02::before {
  left: 0;
}
.btn-animation-02::after {
  right: 0;
}

.btn-animation-02:hover:before,
.btn-animation-02:hover:after {
  width: 0;
  background-color: #FFF;
}

.btn-animation-02:hover {
  color: #FFF;
}






/*TOPへ戻るボタン
---------------------------------------------------------------------------*/
#pageTop {
  position: fixed;
  bottom: 70px;
  right: 70px;
	z-index: 1;
}

 

#pageTop i {
  padding-top: 6px
}

 
#pageTop a {
  display: block;
  z-index: 999;
  padding: 8px 0 0 8px;
  border-radius: 30px;
  width: 35px;
  height: 35px;
  text-align: center;
}

 
#pageTop a:hover {
  text-decoration: none;
  opacity: 0.7;
}



/*フェードイン
---------------------------------------------------------------------------*/

.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1.5s;
}


/*ふわふわ
---------------------------------------------------------------------------*/
.fuwafuwa {
  animation: fuwafuwa 3s infinite ease-in-out .8s alternate;
/*  background: url(../img/ico-apple.svg) no-repeat center center / 20px auto;*/
  display: inline-block;
  transition: 1.5s ease-in-out;
  margin-top: 15px;
}
 
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-2deg);
  }
  50% {
    transform:translate(0, -2px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(2deg);
  }
}


/*スクロール
---------------------------------------------------------------------------*/

.scroll {
  display: inline-block;
  padding-top: 70px;
  position: relative;
}
.scroll::before {
  animation: scroll 3.5s infinite;
  border: solid #000;
  border-width: 0 0 1px 1px;
  content: "";
  display: inline-block;
  margin: auto;

  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  transform: rotate(-45deg);
  width: 20px;
  height: 20px;
	
	
}
@keyframes scroll {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  80% {
    transform: rotate(-45deg) translate(-30px, 30px);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}



.wrapper{
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 60px;
}

.wrapper h1{
	font-size: 3.2rem;
}


/*パララックス画面全体の設定---------------------------------------------------------------------------*/
body,
html {
  height: 100%;
  margin: 0 auto;
  letter-spacing: 2px;
}
 
/*固定する背景*/



div {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80%;
	margin-left: 0;
	margin-right: 0;
	
}
.parallax-bg {
  background-image: url("../img/morimori.png");
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
 
/*スクロールするコンテンツ*/
.scrollbox1 {
  background-image: url("../img/bg-07.png");
	background-repeat: repeat;
	height: auto;
}
	

.scrollbox1 img{
	margin-bottom: 30px;
}

.scrollbox1 p{
	text-align: center;
	font-size: 120%;
	line-height: 200%;
	margin-bottom: 60px;
}



.scrollbox2 {
  background-image: url("../img/bg-07.png");
	background-repeat: repeat;
	height: auto;
	margin: 60px;
	margin-left: 0;
	margin-right: 0;
	
}
	

.scrollbox2 ul{
	border-radius: 10px;
	color: #fff;
	margin-right: 0;
  	margin-left: 0;
	width: 760px;
	
}


.scrollbox2 li{
	list-style: none;
	float: left;
	
}


.scrollbox2 h1{
	font-size:2rem;
	line-height: 1em;
}


@media(max-width:800px) {
.scrollbox2 li{
	float:none;
	
}

.scrollbox2 ul{
	
	width: 380px;
	
}	
	
}


/*メニューボタン*/

.relative {
    position: relative;
	width: 360px;
	margin: 10px;
	
}
/*メニュー文字を中央寄せ*/
.absolute {
    position: absolute;
	width: 100%;
    left: 0; 
	top: calc(50% - 40px); /*  フォントサイズの半分を引くと中心に*/
    text-align: center;  
    font-weight: bold; 
    font-size: 30px;
    line-height: 50px;

}


.subtitle{
	font-size: 18px;
	font-family: "Zen Maru Gothic", serif;
}


.hover4 {
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.hover4:hover {
  filter: drop-shadow(2px 2px 2px rgba(160, 160, 160, 0.8));
  transform: translateY(-0.1875em);
}



.hover1 {
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.hover1:hover {
  opacity: 0.6;
}



.menulist img{
	border-radius: 8px;
	
}



/*ヘッター
---------------------------------------------------------------------------*/
header{
	padding-top: 60px;
}

.topimage{
	width: 100%;
max-width: 1000px;
}


.pagetitle h1 {
font-size: 2rem;
}


.pagetitle{
	margin-left: 0;
	margin-right: 0;
	text-align: center;
	
}


/*キャラクター
---------------------------------------------------------------------------*/


.box {
  display:flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 40px;
max-width: 800px;	
}

.text {
}

h3 {
	font-size: 32px;
	color: olive;
	font-family: "Zen Maru Gothic", serif;
	
}

.pict {
  width: 30%;
  margin-left: 3%;
}

.pict img {
  width: 100%;
  height:auto;
}

.box:nth-child(even) {
  flex-direction: row-reverse;
}
.box:nth-child(even) .text {
  text-align: right;
}
.box:nth-child(even) .pict {
  margin-left: 0;
  margin-right: 3%;
}



/*フッター
---------------------------------------------------------------------------*/


footer{
	height: 380px;
	background-image: url("../img/foot.png");
	background-repeat: repeat;
	margin-top: 60px;
	bottom:0 ;
}


.foot{
    text-align: center;
    font-size: 14px;
    color: #fff;
	background-color: #a2cb6b;

}


* {
  margin: 0;
}

footer .container {
		
  max-width: 1200px;
  padding-top:80px;
  margin: auto;
	display:block;
}



/* ----------------------------- */

.footB {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footB ul {
  text-align: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.footB a {
  display: block;
  padding: 0;
  padding-bottom: 2px;
  margin-bottom: 10px;
  color: #fff;
  font-size: 12px;
  text-decoration: none;
  margin-right: 0px;
  line-height: 20px;
  transition: 0.5s;
  letter-spacing: 3px;
}

.footB a:hover {
  border-bottom: 3px solid #fff;
}

@media(min-width:800px) {
  .footB ul {
    display: flex;
  }

  .footB a {
    margin-left: 20px;
    margin-right: 20px;
    margin-bottom: 0;
  }
	


}

/* ----------------------------- */

.footC {
  padding: 10px 0;
  display: flex;
  align-items: center;
  justify-content: center;
margin-bottom: 20px;	
}

.footC ul {
  display: flex;
  text-align: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.footC a {
  display: block;
  border-radius: 20px;
  padding: 5px;
  font-size: 25px;
  color: #fff;
  width: 30px;
  height: 30px;
}

.footC a {
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 0;
}


/* ハンバーガー----------------------------- */

a{
text-decoration: none;
color: #333333;
font-family:'M PLUS Rounded 1c', sans-serif;
}

/*ナビのスタイル*/
nav.NavMenu{
position: fixed;
z-index: 12;
top: 0;
left: 0;
background: #FFCE12;
text-align: center;
width: 100%;
height: 100%;
display: none;
}

nav.NavMenu ul{
width: 100%;
margin: 0 auto;
padding: 0;
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
}

nav.NavMenu ul li{
font-size: 24px;
list-style-type: none;
width: 100%;
padding-bottom: 0px;
}

nav.NavMenu ul li:last-child{
padding-bottom: 0;
}

nav.NavMenu ul li a{
display: block;
color: #fff;
padding: 15px 0;
font-weight: bold;
font-size: 18px;
}

/*ボタンのスタイル*/
.Toggle {
position: fixed;
right:18px;
top: 3px;
width: 45px;
height: 45px;
cursor: pointer;
z-index: 13;
display: block;
}

.Toggle span {
display: block;
position: absolute;
width: 35px;
border-bottom: solid 2px #26211E;
-webkit-transition: .35s ease-in-out;
-moz-transition: .35s ease-in-out;
transition: .35s ease-in-out;
left: 6px;
}

.Toggle span:nth-child(1) {
top: 9px;
}

.Toggle span:nth-child(2) {
top: 20px;
}

.Toggle span:nth-child(3) {
top: 31px;
}

.Toggle.active span:nth-child(1) {
top: 18px;
left: 6px;
-webkit-transform: rotate(-45deg);
-moz-transform: rotate(-45deg);
transform: rotate(-45deg);
border-bottom: solid 3px #C1C1C1;
}
.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
top: 18px;
-webkit-transform: rotate(45deg);
-moz-transform: rotate(45deg);
transform: rotate(45deg);
border-bottom: solid 3px #C1C1C1;
}




