@charset "UTF-8";

/* CSS Document */




header {
	height: 110px;
	position:fixed;
	top:0px;
	display:  inline-block; 
	z-index: 10;
	}



body{
    font-family: 'ヒラギノ丸ゴ ProN';
	margin: 0;
	padding: 0;

	background-color:#FDEAD0;
	

	
  /* 画像をタイル状に繰り返し表示しない */
  background-repeat:  no-repeat;
	max-width: 100%;
  	

}





/*.↓.*/
.cp_arrows *, .cp_arrows *:before, .cp_arrows *:after {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_arrows {
	position: relative;
	display: flex;
	height: -8px;
	margin: 2em auto;
	justify-content: center;
	align-items: center;
}
.cp_arrows .cp_arrow {
	position: absolute;
	top: calc(50% - 25px);
	left: 50%;
	width: 40px;
	height: 40px;
}
.cp_arrows .cp_arrow::before,
.cp_arrows .cp_arrow::after {
	position: absolute;
	display: block;
	width: 3px;
	height: 30px;
	content: '';
	-webkit-transition: all 0.3s ease-in-out;
	        transition: all 0.3s ease-in-out;
	-webkit-transform: translate(-50%, -50%) rotateZ(-60deg);
	        transform: translate(-50%, -50%) rotateZ(-60deg);
	transform-origin: bottom right;
	border-radius: 10px;
	background: #f4511e;
}
.cp_arrows .cp_arrow::after {
	-webkit-transform: translate(-50%, -50%) rotateZ(60deg);
	        transform: translate(-50%, -50%) rotateZ(60deg);
	-webkit-transform-origin: bottom left;
	        transform-origin: bottom left;
}
.cp_arrows .cp_bounce {
	-webkit-animation: arrow-move09 2s infinite ease-in-out;
	        animation: arrow-move09 2s infinite ease-in-out;
}
@-webkit-keyframes arrow-move09 {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	48% {
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	60% {
		-webkit-transform: translateY(-15px);
		        transform: translateY(-15px);
	}
}
@keyframes arrow-move09 {
	0%, 20%, 50%, 80%, 100% {
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
	48% {
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	60% {
		-webkit-transform: translateY(-15px);
		        transform: translateY(-15px);
	}
}
	
   	/*.終わり,*/



p#iii{margin-top: 10px;}



a {font-size: 16px;
	font-family: 'ヒラギノ丸ゴ ProN';
	text-decoration: none;

}



.cp_link {
	display: inline-block;
	padding: 0.3em;
	transition: .3s;
	transform: scale(1);
	color: #F4511E;
}
.cp_link:hover {
	transform: scale(1.05);
}
.cp_link2 {
	display: inline-block;
	padding: 0.3em;
	transition: .3s;
	transform: scale(1);
	color: #F4511E;
}
.cp_link2:hover {
	transform: scale(1.05);
}
.cp_link3 {
	display: inline-block;
	padding: 0.3em;
	transition: .3s;
	transform: scale(1);
	color: #F4511E;
}
.cp_link3:hover {
	transform: scale(1.05);
}	





	
/*.バーガー.*/
.cp_cont {
	height: 65vh;
}
.cp_offcm01 {          /*.ポジションバツ.*/
	position: absolute;
	top: 20px;
	right: 20px;
	display: inline-block;
}
/* menu */
.cp_offcm01 .cp_menu {            /*.出てくる四角.*/
	position: fixed;
	top: 0;
	right: -100vw;
	width: 190px;
	height: 80%;
	cursor: pointer;
	-webkit-transition: 0.53s transform;
	        transition: 0.53s transform;
	-webkit-transition-timing-function: cubic-bezier(.38,.52,.23,.99);
	        transition-timing-function: cubic-bezier(.38,.52,.23,.99);
	background-color:#C69FA0;
	
}
.cp_offcm01 .cp_menu ul {
	margin: 0;
	padding: 0;
}
.cp_offcm01 .cp_menu li {
	list-style: none;
	
}
.cp_offcm01 .cp_menu li a {          /*.文字.*/
	
	display: block;
	padding: 25px;
	text-decoration: none;
	color:#451819;
	border-bottom: medium;
}

.cp_offcm01 #cp_toggle01 {
	position: absolute;
	display: none;
	opacity: 0;
	
}
.cp_offcm01 #cp_toggle01:checked ~ .cp_menu {
	-webkit-transform: translateX(-100vw);
	        transform: translateX(-100vw);
}
/* menu toggle */
.cp_offcm01 #cp_toggle01 ~ label {                  /*バツ　色変化*/
	display: block;
	padding: 0.5em;
	cursor: pointer;
	-webkit-transition: 0.5s transform;
	        transition: 0.5s transform;
	-webkit-transition-timing-function: cubic-bezier(.61,-0.38,.37,1.27);
	        transition-timing-function: cubic-bezier(.61,-0.38,.37,1.27);
	text-align: center;
	color:#955253;
}

.cp_offcm01 #cp_toggle01:checked ~ label {         /*.ばつ.*/
	-webkit-transform: translateX(-250px);
	        transform: translateX(-250px);
}
.cp_offcm01 #cp_toggle01 ~ label::before {
	font-family: 'FontAwesome';
	content: '\f0c9';
	font-size: 2em
}
.cp_offcm01 #cp_toggle01:checked ~ label::before {         /*色*/
	content: '\f00d';
}
/* contents */
.cp_contents {
	color:#451819;
	text-align: center;}

/*.バーガー終わり.*/



h1 {
  color:#FFFFFF;/*文字色*/
	font-size: 20px;
  padding: 0.6em;/*文字周りの余白*/
  display: inline-block;/*おまじない*/
  line-height: 0.5;/*行高*/
  background:#FF0004;/*背景色*/
  vertical-align: middle;
  border-radius: 0px 25px 25px 0px;/*左側の角を丸く*/
  margin-top: 50px;	
}

p#ga{color: #FAEBD7 }



h4{ margin-top: 25px;
	text-align: center;
	font-size: 16px;
	color:#451819;
	background-repeat: no-repeat;		
}
.under {
  background: linear-gradient(transparent 50%, #FFABAB 50%);	
}


p#kaitai{margin-top: 50px;
}



p#setumei{margin-left: 90px;
margin-top: -230px;
color: #794E0E;}


h5{margin-top: 200px;
text-align: center;
font-size: 16px;
	color:#451819;
	
	
	
background-repeat: no-repeat;}

p#aze{margin-top:13px;}
p#azee{margin-top:-7px;}
p#paichann{margin-top: -14px;
}


.top-senn{border-width: 1px 0 0 0;
	border-style: dashed;
	border-color: #451819;}


.line{
	border-width: 1px 0 0 0;
	border-style: dashed;
	border-color: #ffb300;}





p#maho{margin-top: -3px;
text-align: center;
font-size: 16px;}
p#maho-{font-size: 15px;
	margin-top:30px;
}
p#picu{margin-top: -45px;}


body p {font-size: 13px;
	text-align: center;
	letter-spacing: 0.2em;	
     color: #451819;
}

p#reapino{text-align: center;
margin-right: -25px;
margin-top: -30px;}


h6{margin-top:-450px;
   text-align: center;
	font-size: 16px;
	color:#451819;
	background-repeat: no-repeat;}

h2{  color:#FFFFFF;
	margin-top: 50px;
	font-size: 20px;
  padding: 0.6em;
  display: inline-block;/*おまじない*/
  line-height: 0.5;
  background:#FF0004;
  vertical-align: middle;
  border-radius: 0px 25px 25px 0px;/*左側の角を丸く*/
}

p#no-malpino {background-repeat: no-repeat;
text-align: center;
}
p#messhu{margin-top:390px;
color: #FAEBD7;}

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

p#pai {margin-top: -30px;
text-align: center;
font-size: 17px;

}

p#himitu1{
	line-height:1.5em;
	font-size: 16px;
color: #A78686;}

p#giru{color:#FDEAD0}

p#jiki{color: #451819;}

p#himitu2{
	line-height:1.5em;
	font-size: 16px;
color: #A78686;}

.under2 {
  background: linear-gradient(transparent 50%, #FFABAB 50%);
}

p#picu{margin-top:-20px;}

.font-kara-{color: #FF0004;}
.ha-to{color: #FF0004;
	font-size: 14px;
}

.jiki{border-bottom: 1px dashed #EF6C6C;
	}
.fhoshi{color: #FF0004;
		font-size: 14px;
}
.mame{
	font-size: 17px;
	color: #451819;
	border-bottom: dashed 1px #FF0000;
	}

.mame2{
	font-size: 14px;
	
	}

.senn{color: #451819;/*文字色*/
  /*線の種類（点線） 線色*/
  border-bottom: dashed 1px #FF0000;}

               /*フッターの内容*/





/*ポップアップ4つ*/
.popup_wrap input {
  display: none;
}

.popup_overlay {
  display: flex;
  justify-content: center;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.5s, transform 0s 0.5s;
  transform: scale(0);
}

.popup_trigger {
  position: absolute;
  width: 100%;
  height: 100%;
}

.popup_content {
  position: relative;
  align-self: center;
  width: 90%;
  max-width: 800px;
  padding: 30px 30px 15px;
  box-sizing: border-box;
  background: #FFFFFF;
  line-height: 1.4em;
  transition: 0.5s;
}


.close_btn {                /*.閉じる作業.*/
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
}


.close_btn2 {                /*.閉じる作業 栗.*/
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
}

.close_btn3 {                /*.閉じる作業1*/
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
}

.close_btn4 {                /*.閉じる作業2.*/
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 30px;
  cursor: pointer;
}
.popup_wrap input:checked ~ .popup_overlay {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s;
}

.open_btn {                    /*.開ける作業.*/
  position: relative;          
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 30px;
  margin:10px auto;
  padding: 8px 16px;
  color: #fff;
  background:#C69FA0;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  border-radius: 3px;
  cursor: pointer;
  transition: .3s ease;}

.open_btn2 {                    /*.開ける作業.*/
  position: relative;          
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 30px;
  margin:10px auto;
  padding: 8px 16px;
  color: #fff;
  background:#C69FA0;
  font-weight: bold;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  border-radius: 3px;
  cursor: pointer;
  transition: .3s ease;}

.open_btn3 {
  position: relative;
  top: 0;
  right: 0px;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 130px;
  margin:10px auto;
  padding: 8px 16px;
  color: #FFFFFF;
  background-image:url("gazou/asahi1.png");
	background-repeat: no-repeat;
	
	  max-width: 100%;
	  cursor: pointer;
  transition: .3s ease;}

.open_btn4 {
  position: relative;
  top: 0;
  right: 0px;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 130px;
  margin:10px auto;
  padding: 8px 16px;
  color: #fff;
  background-image:url("gazou/asahi2.png");
	background-repeat: no-repeat;
	
	  max-width: 100%;
	  cursor: pointer;
  transition: .3s ease;}

.open_btn:hover{
background-color:#451819;
    color:#fff;
    transition: .3s ease;
}
.open_btn2:hover{
background-color:#451819;
    color:#fff;
    transition: .3s ease;
}
.open_btn3:hover{
background-image: url("gazou/asahi4.png");
    color:#fff;
    transition: .3s ease;
}
.open_btn4:hover{
background-image: url("gazou/asahi3.png");
    color:#fff;
    transition: .3s ease;
}
/*ポップアップココまで*/

footer{
    font-size: 15px; /*フォントサイズの指定*/
    width: 100%;    /*横幅の指定*/
    text-align: center; /*文字の中央寄せ*/
    padding-top: 10px;  /*文字上部の余白指定*/
    padding-bottom: 10px;   /*文字下部の余白指定*/
    background-color: #C69FA0;  /*背景色の指定*/
	top: 50px;
	border-top: 5px;
}
footer address{
    color: #fff;    /*文字色の指定*/
    letter-spacing: 5px;    /*文字と文字の間隔をあける*/
    font-style: normal; /*文字の斜体を取り消す*/
}

p#morinaga{font-size:18px;
	margin-top: -70px;}
p#morinaga:hover{
	color:#FFFFFF;
  font-weight: bold;}

[class^="img-girugiru-"] {
	margin-bottom: 100px;
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}

p#tw{margin-left: 100px;
}
p#tw:hover{color: #FFFFFF;
font-weight: bold;}


p#ins:hover{color: #FFFFFF;
	
font-weight: bold;}
p#fes{margin-right:100px;
}
p#fes:hover{color: #FFFFFF;
font-weight: bold;}
p#kawaii{color: #FDEAD0}

p#tappu{font-size: 12px;
	margin-bottom:-144px;
	margin-top: 140px;
z-index: 5;
color: #856A41;}

p#tappu2{font-size: 12px;
	margin-bottom:-144px;
	margin-top: 135px;
z-index: 5;
color: #856A41;}

              /*あにめ*/

.fluffy {
  animation: fluffy1 3s ease infinite;
}

.fluffy2 {
  animation: fluffy1 2s ease infinite;
}



@keyframes fluffy1 {
  0% { transform:translateY(0) }
  5% { transform:translateY(0) }
  10% { transform:translateY(0) }
  20% { transform:translateY(-15px) }
  25% { transform:translateY(0) }
  30% { transform:translateY(-15px) }
  50% { transform:translateY(0) }
  100% { transform:translateY(0) }
}

p#ff1{margin-top: -90px;
margin-left: -250px;}

p#ff2{margin-top: -535px;
margin-left: -250px;}

p#ff3{margin-top: -80px;
margin-left: 200px;}

p#ff4{margin-top: 120px;
	margin-left: -15px}

p#ff5{margin-top: -305px;
	margin-left: 250px}
