@charset "utf-8";

/* =Reset default browser CSS.
Based on work by Eric Meyer: http://meyerweb.com/eric/tools/css/reset/index.html
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, img {border: 0;font-family: inherit;font-size: 100%;font-style: inherit;font-weight: inherit;margin: 0;outline: 0;padding: 0;vertical-align: baseline;}
:focus {outline: 0;}

ol, ul {list-style: none;}

body{
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

}


/* 画面全体の設定
------------------------------------------------------------*/

html,body {
  height: 100%;
  /*ページ全体の高さが出ないのでhtmlを指定*/
  margin: 0 auto;
}

p{
    font-family: 'Kiwi Maru', serif;
    text-align: center;
}

h1{
    font-family: 'Kiwi Maru', serif;
    text-align: center;
}
/* 固定する背景
------------------------------------------------------------*/

section {
  color: #FFF;
  clear: both;
  font-size: 4rem;
  /*基本16pxの4倍で64px*/
  display: flex;
  /*要素をflexboxで揃える*/
  align-items: center;
  /*要素をflexboxで上下間中央に配置*/
  justify-content: center;
  /*要素をflexboxで左右間中央に配置*/
  height: 100%;
  padding: 5%;
  
}
.parallax-bg {
  background-attachment: fixed;
  /*背景画像の位置を固定(スクロールしても動かなくなる)*/
  background-position: center;
  background-size: cover;
  /*縦横比率は固定し全画面表示にする*/
  background-repeat: no-repeat;
  /* height: 50%; */
  /*背景画像が見える高さ*/
}

/* 各背景の画像
------------------------------------------------------------*/

.img-bg-01 {
    background-image: url(../images/背景下.svg);
    height: 30%;
}
.img-bg-01 p{
    font-size: 30px;
}

/* .img-bg-02 {
  background-image: url(../images/drink-002.jpg);
}
.img-bg-03 {
  background-image: url(../images/drink-003.jpg);
}
.img-bg-04 {
  background-image: url(../images/drink-004.jpg);
}
.img-bg-05 {
  background-image: url(../images/drink-005.jpg);
} */



/* スクロールするコンテンツ
------------------------------------------------------------*/
.scrollbox {
    height: auto;
}
.scrollbox img{
    width: 50%;
    height: 50%;
}

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



/* スクロールするコンテンツの斜傾BOX

.scrollbox1 {
  background-color: #afd456;
  transform:skewY(5deg);
}
.scrollbox2 {
  background-color: #0995b5;
  transform:skewY(-5deg);  
}
.scrollbox3 {
  background-color: #e8888c;
  transform:skewY(5deg);
}
.scrollbox4 {
  background-color: #d6d950;
  transform:skewY(-5deg);  
}
.scrollbox5 {
  background-color: #eab457;
  transform:skewY(5deg);
}
.scrollbox6 {
  background-color: #fb4913;
  transform:skewY(-5deg);  
}

.scrollbox1 p,.scrollbox3 p,.scrollbox5 p{
transform:skewY(-5deg);
}

.scrollbox2 p,.scrollbox4 p,.scrollbox6 p{
transform:skewY(5deg);
}
------------------------------------------------------------*/