@charset "utf-8";
*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
li {
  list-style-type: none;
}
html {
  font-size: 62.5%;
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Sawarabi Mincho', serif;  
  font-size: 1.5rem;
  color: #333;
}
h1, h2, h3 {
    font-size: 1.6rem;
  }
  
  a {
    text-decoration: none;
  }
  /*--------------------------------
 レイアウト
---------------------------------*/
main {
    padding: 0 20px;
    padding-top:120px;
    background-color: #C3F5E4;
  }
  .section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 20px;
  }
  
  @media (width > 768px) {
    body {
      font-size: 1.6rem;
    }
  
    /* レイアウト */
    .section {
      padding: 70px 0;
    }
  
    .container {
      max-width: 1170px;
      margin: 0 auto;
      padding: 0 30px;
    }
  }
  
  .mainVisual-title{
    font-size: 4.5rem;
    text-align: center;
    color: #E28F13;
    margin-bottom: 20px;
  }
 /*--------------------------------
ヘッダー
---------------------------------*/
.header-container {
    /*メニューとロゴを含めたエリアを一番上に固定*/
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
  }
  .header-logo {
    width: 150px;
    position: absolute;
    top: 10px;
    left: 10px;
  }
  .sub-title{
    font-size: 3rem;
    text-align: center;
    color: #0FD515;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .oze-flower h3{
    font-size: 5rem
  }
  .baner-button{
    width: 200px;
  }

  header{position: relative;
  }
  header{z-index: 100;
  }

  /*スマホ用ナビゲーションメニュー
------------------------------------------------*/
.gnav {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #0d6bf7;
  display: none;/*------------------------スマホ用メニュー、初めは隠しておく*/
}
.gnav-list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.gnav-item {
  font-size: 1.rem;
}

.gnav-item a {
  color: #fff;
}
.menu-list{
  display:flex;
  justify-content: center;
  align-items: center;
}
.menu-list .gnav-item{
  margin-right: 20px;
}
.menu {
  background-color: #fff;
  width: 100%;
  padding: 20px;
  display: none;/*------------------------PC用メニュー、スマホ時非表示*/
}
.menu a {
  color: #333;
}

@media (width > 768px) {
  .menu {
    display: block;/*------------------------PC用メニュー表示*/
    margin: 0 auto;
    justify-content: end;
  }

}

/*ハンバーガーメニュー
-------------------------------------------------*/
.btnMenu {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  padding: 10px;
  text-align: center;
  border: none;
  border-radius: 8px;
  outline: none;
  background-color: #69c32d;
  appearance: none;
  cursor: pointer;
  z-index: 200;
}

/*----------三本線-----------*/
.btnMenu-line {
  position: relative;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  transition: all .4s;
  border-radius: 4px;
  background-color: #fff;
}
.btnMenu-line::before,
.btnMenu-line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  transition: inherit;
  border-radius: 4px;
  background-color: inherit;
}
.btnMenu-line::before {
  top: -10px;
}
.btnMenu-line::after {
  top: 10px;
}

/* oze-taki */
.oze-taki {
  font-size: 2rem;
  text-align: center;
  line-height: 2;
}

/*--------------------------------
 フッター
---------------------------------*/
.footer-container {
  padding: 40px 20px;
  background-color: #BFAEAE;
  text-align: center;
}
.footerNav {
  margin-bottom: 20px;
}
.footerNav-list {   
  text-align: center;
}
.footer-copyright {
  font-size: 1.5rem;
  text-align: center;
}
.footerNav-list {
  font-size: 2rem;
}
@media screen and (min-width:768px) {
  .footerNav-list {
    display: flex;
    justify-content: center;
  }
  .footerNav-list .gnav-item {
    margin-right: 16px;
    font-size: 1.8rem;
  }

}
   