/* reset css */
* {
    outline: none !important;
}
html {
    overflow-y: scroll;
    scroll-behavior: smooth;
}
ul,ol {
    margin: 0;
    padding: 0;
}
a {
    text-decoration: none;
    outline: none;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
/* font */
* {
    font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
.veda {
    font-family: 'Sofia', cursive;
}
.restful {
    font-family: 'Poiret One', cursive;
}
.title {
    font-family: 'Quicksand', sans-serif;
    font-size: 2em;
    font-weight: bold;
    text-align: center;
    line-height: 1;
    padding: 20px;
}
.text-green {
    color: #7c8c03;
}
.text-brown {
    color: #5e4425;
}
.text-red {
    color: #a63f03;
}

/* parallax */
#parallax-image {
    content:"";
    display:block;
    position:fixed;
    top:0;
    left:0;
    z-index:-1;
    width:100%;
    height:100vh;
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../images/bg-01.jpg);
    background-size:cover;
}

section.parallax {
    min-height: 100vh;
    width: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}
.bg-01 {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../images/bg-01.jpg);
}
/* catch copy */
.top-info::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: #a63f03;
    opacity: 0.6;
    -moz-border-radius: 25px;
    -webkit-border-radius: 25px;
    border-radius: 50%;
    top: 30%;
    left: -80px;
}
.bg-02 {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../images/bg-02.jpg);
}
.bg-03 {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)),url(../images/bg-03.jpg);
}
.bg-04 {
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),url(../images/bg-04.jpg);
}

/* navigation scroll position fix */
#content1,
#content2,
#content3,
#content4,
#content5,
#content6 {
    margin-top: -87px;
    padding-top: 87px;
    padding-bottom: 87px;
}
.content {
    padding: 87px 0;
}

/* hamburger menu */
.hamburger {
  position: relative;
  height: 20px;
  width: 20px;
  display: inline-block;
  box-sizing: border-box;
}
.hamburger span {
  position: absolute;
  left: 0;
  height: 2px;
  width: 24px;
  background-color: #5e4425;
  display: inline-block;
  box-sizing: border-box;
}
.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 9px;
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}