@charset "UTF-8";

/*@import url('https://fonts.googleapis.com/css?family=Zen+Maru+Gothic');*/

body {
	font-size: 1.3rem;
	text-align:justify;
}
.wrapper{
	max-width: 1280px;
	background-color: #FFFFFF;
	margin: 0 auto;
	padding: 0;
}

.dela {
	font-family: "Dela Gothic One", sans-serif;
    font-style: italic;	
	font-size: 3.8rem;
	line-height: 3.5rem;
}

.setumei {
	max-width: 500px;
}
.setumei800 {
	max-width: 800px;
}

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


.pattern {
	border: solid 10px;
	margin: 100px 50px;
	padding: 100px 0;
}


.button a {
    background: #000;
	text-decoration: none;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    max-width: 700px;
    padding: 10px 25px;
    color: #FFF;
    transition: 0.3s ease-in-out;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
}
.button a:hover {
    background: #313131;
    color: #FFF;
}





img {
	max-width:100%;
}	
h1 {
	font-size:4rem;
}
h2 {
	font-size:4rem;
}
h3 {
	font-size: 3rem;
}
a:hover {
	opacity: 0.5;
}
.top_txt {
	font-size:2.5rem;
}
.bg-roll {
	background-image:url("../bg_roll.png");
	background-repeat: repeat-x;
}
.hougan {
  /* 方眼紙模様に必須のスタイル */
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px)),
                    linear-gradient(90deg, transparent calc(100% - 1px), #f0f0f0 calc(100% - 1px));
  background-size: 16px 16px;
  background-repeat: repeat;
  background-position: center center;

  /* 以下任意のスタイル 
  padding: 20px;*/
}


/*レスポンシブ時の改行*/
.sp_br {
  display: none; //768px以上では改行タグを無効に。
}
@media screen and (max-width: 768px) {
  .sp_br {
    display: block; //768px未満で改行タグを有効に。
  }
}




/*揺れる購入ボタン*/

.btn_box{
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}

#btn_animation .btn{
  display: block;
  width: 350px;
  height: 78px;
  line-height: 58px;
  font-size: 30px;
  font-weight: bold;
  margin: 50px 0;	
  text-decoration: none;
  background-color:#FFA500;
  color: #FFF;
  text-align: center;
  cursor: pointer;
  border-radius: 78px;
  animation: btn_animation 1s infinite;
}


@keyframes btn_animation {
    0% {
        transform: scale(1, 0.8);
    }
    20% {
        transform: scale(0.8, 1.1);
    }
    95% {
        transform: scale(1, 1);
    }
    100% {
        transform: scale(1, 0.8);
    }
}



/*スクロールでふわっとアニメーション*/
.fade-in {
  opacity: 0;
  transition-duration: 500ms;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 150px);
}
.fade-in-down {
  transform: translate(0, -50px);
}
.fade-in-left {
  transform: translate(-50px, 0);
}
.fade-in-right {
  transform: translate(50px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}


/*========= ページトップのためのCSS ===============*/
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:30px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(150px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(150px);
  }
}

/*画像の切り替えと動き*/
#page-top a {
    /*aタグの形状*/
	display: block;
	width: 100px;
	height: 100px;
	color: #333;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.0rem;
	font-weight: bold;
    /*背景画像の指定*/
	background: url("../chu_1.png") no-repeat center;
	background-size: contain;
}

#page-top.floatAnime a{
	width: 100px;
	height: 130px;
    /*背景画像の指定*/
	background: url("../chu_2.png") no-repeat center;
	background-size: contain;
    /*アニメーションの指定*/
	animation: floatAnime 2s linear infinite;
	opacity: 0;
}

@keyframes floatAnime {
  0% { transform: translateX(0); opacity: 0; }
  25% { transform: translateX(-6px);opacity: 1; }
  50% { transform: translateX(0) }
  100% { transform: translateX(6px);opacity: 1; }
}

/*Page Topと書かれたテキストの位置*/
#page-top span{
    position: absolute;
    bottom: -20px;
    right: 20px;
	color: #666;
}










@media screen and (max-width: 767.98px) {

	
	
	
	
	
}

@media screen and (max-width: 478.98px) {

body {
	font-size: 1.0rem;
	margin: 0;
	padding:0 auto;
}	
h1 {
    font-size: 2.0rem!important;
}
h2 {
    font-size: 3.0rem!important;
}	
h3 {
    font-size: 2.0rem!important;
	text-align: center;
	padding:20px 0;
}	

.dela {
	font-family: "Dela Gothic One", sans-serif;
    font-style: italic;	
	font-size: 2.8rem;
	line-height: 2.8rem;
}
	
.pattern {
	border:none;
	margin: 0;
	padding: 0;	
}	

	

	

	
	
	
	
	
}

