@charset "UTF-8";
/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #333;
  font-size: 14px;
  line-height: 2.285;
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "Yu Gothic", "メイリオ", Meiryo,
 sans-serif;
}

a {
  color: #eb4f66;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

.t-center {
  text-align: center;
}

.t-right {
  text-align: right;
}

.t-left {
  text-align: left;
}

.bold {
  font-weight: bold;
}

strong {
  font-weight: bold;
}

.red {
  color: #f00;
}

.opacity a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.opacity a:hover {
  opacity: 0.6;
}

.big {
  font-size: 18px;
  line-height: 1.8;
}

/* ----------------------------------------------
side
------------------------------------------------- */
#side {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 4;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

#side p:nth-child(1) a {
  background-color: #eb4f66;
  height: 193px;
}

#side p:nth-child(2) {
  margin-top: 15px;
}

#side p:nth-child(2) a {
  background-color: #f29700;
  height: 164px;
}

#side p a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  padding: 20px 10px 25px 10px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  width: 70px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
}

#side p a:hover {
  opacity: 0.6;
}

#side p a img {
  display: block;
  margin-bottom: 15px;
}

@media (max-width: 767px) {
  #side {
    display: none;
  }
}

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: relative;
}

#header h1 {
  position: absolute;
  top: 5px;
  left: 10px;
  z-index: 1;
  color: #333;
  font-size: 10px;
  line-height: 1.2;
}

#header .top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 110px;
  padding-left: 10px;
  padding-right: 10px;
  text-align: center;
}

@media (max-width: 999px) {
  #header .logo img {
    min-width: 160px;
  }
}

@media (max-width: 767px) {
  #header .top {
    height: 60px;
  }
  #header .logo {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  #header .logo img {
    height: 50px;
    min-width: 0px;
    width: auto;
  }
  #header h1 {
    display: none;
  }
}

#gnav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

#gnav ul li {
  padding: 0 25px;
  border-left: solid 1px #525252;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#gnav ul li:hover::after {
  width: 50px;
}

#gnav ul li:hover > ul {
  visibility: visible;
  opacity: 1;
}

#gnav ul li:nth-child(1) a:before {
  background-image: url(../images/gnav-icon1.png);
}

#gnav ul li:nth-child(2) a:before {
  background-image: url(../images/gnav-icon2.png);
}

#gnav ul li:nth-child(3) a:before {
  background-image: url(../images/gnav-icon3.png);
}

#gnav ul li:nth-child(4) a:before {
  background-image: url(../images/gnav-icon4.png);
}

#gnav ul li:nth-child(5) a:before {
  background-image: url(../images/gnav-icon5.png);
}

#gnav ul li:nth-child(6) a:before {
  background-image: url(../images/gnav-icon6.png);
}

#gnav ul li a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  text-align: center;
  display: block;
  width: 100%;
  height: 58px;
  text-decoration: none;
  color: #534741;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.6;
}

#gnav ul li a:hover {
  opacity: 0.6;
}

#gnav ul li a:before {
  display: block;
  content: "";
  width: 100%;
  height: 35px;
  background-repeat: no-repeat;
  background-position: center;
}

@media (max-width: 999px) {
  #gnav ul li {
    padding: 0 15px;
  }
  #gnav ul li a {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  #gnav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #gnav ul li {
    padding: 5px 10px;
    border: none;
  }
  #gnav ul li a {
    line-height: 1.6 !important;
  }
}

/* ----------------------------------------------
pagetop
------------------------------------------------- */
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 4;
  width: 50px;
  height: 50px;
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#pagetop:hover {
  opacity: 0.6;
}

@media (max-width: 767px) {
  #pagetop {
    bottom: 55px;
    right: 10px;
  }
  #pagetop a {
    width: 40px;
    height: 40px;
  }
}

/*マウスオーバー時画像切り替え

#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 4;
  a {
    position: relative;
    display: block;
    width: 40px;
    height: 17px;
    img {
      @include transition();
      position: absolute;
      top: 0;
      &:last-child {
        opacity: 0;
      }
    }
    &:hover img:first-child {
      opacity: 0;
    }
    &:hover img:last-child {
      opacity: 1;
    }
  }
  @include sp {
   //display: none !important;
   bottom: 55px;
    right: 10px;
    a {
      width: 40px;
      height: 40px;
    }
  }
}

*/
/*フッター部分に固定
#pagetop {
  position: absolute;
  top: -73px;
  right: -50px;
  z-index: 4;
  width: 46px;
  height: 46px;
  @include opacity();
  @media (max-width: 1200px){
    right: 20px;
  }
  @include sp {
    //display: none !important;
    top: -70px;
    right: 10px;
    width: 40px;
    height: 40px;
    a {
    }
  }
}
*/
/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  overflow: hidden;
}

#footer .logo {
  margin-bottom: 40px;
  text-align: center;
}

#footer .logo a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#footer .logo a:hover {
  opacity: 0.6;
}

#footer .text {
  position: relative;
  z-index: 4;
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
  font-weight: bold;
  color: #333333;
}

#footer #copyright {
  text-align: center;
  font-size: 12px;
  color: #fff;
  line-height: 1.6;
}

#footer .btm {
  margin-top: -60px;
  background-color: #f29700;
  position: relative;
  padding-top: 160px;
  padding-bottom: 60px;
  margin-left: -60px;
  padding-left: 60px;
  margin-right: -60px;
  padding-right: 60px;
}

#footer .btm:before {
  position: absolute;
  z-index: 3;
  top: -10px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100px;
  border-bottom-right-radius: 50% 100px;
  border-bottom-left-radius: 50% 100px;
  background-color: #fff;
}

#footer .btm:after {
  position: absolute;
  z-index: 2;
  top: 0px;
  left: 0;
  display: block;
  content: "";
  width: 100%;
  height: 100px;
  border-bottom-right-radius: 50% 100px;
  border-bottom-left-radius: 50% 100px;
  background-color: #eb4f66;
}

#footer #fnav {
  margin-bottom: 25px;
  height: 85px;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

#footer #fnav ul {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#footer #fnav ul li:not(:first-child)::before {
  content: "|";
  padding: 0 5px;
  color: #333333;
}

#footer #fnav ul li a {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  color: #333333;
}

#footer #fnav ul li a:hover {
  opacity: 0.6;
}

@media (max-width: 767px) {
  #footer .text {
    font-size: 14px;
  }
  #footer .btm {
    margin-top: -20px;
    padding-top: 100px;
    padding-bottom: 30px;
  }
  #footer .btm:before {
    top: -5px;
    height: 70px;
    border-bottom-right-radius: 50% 70px;
    border-bottom-left-radius: 50% 70px;
  }
  #footer .btm:after {
    height: 70px;
    border-bottom-right-radius: 50% 70px;
    border-bottom-left-radius: 50% 70px;
  }
  #footer #fnav {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */