@charset "UTF-8";
@media (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

@media (min-width: 768px) {
  .pc_none {
    display: none;
  }
}

/* ----------------------------------------------
common
------------------------------------------------- */
body {
  color: #000000;
  font-size: 16px;
  line-height: 2;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", system-ui, sans-serif;
}
@media (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #0053aa;
  font-weight: bold;
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

strong {
  color: #0053aa;
  font-weight: bold;
}

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;
}

.red {
  color: #f00;
}

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

.opacity a:hover {
  opacity: 0.6;
}

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

/* ----------------------------------------------
header
------------------------------------------------- */
#header {
  position: relative;
  z-index: 4;
}
#header .top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 32px;
  padding-left: 30px;
  padding-right: 30px;
}
#header .logo img {
  width: 299px;
  height: auto;
}
@media (max-width: 767px) {
  #header .top {
    padding-top: 15px;
    padding-left: 20px;
    padding-right: 60px;
  }
  #header .logo img {
    width: 230px;
  }
}

/* 
#gnav {
  & > ul {
    display: flex;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    & > li {
      position: relative;
      flex: 1 0 auto;
      @include transition();
      &::after {
        content: "";
        display: block;
        position: absolute;
        height: 2px;
        background-color: #000;
        bottom: 0px;
        left: calc((100% - 50px) / 2);
        z-index: 0;
        width: 0;
        @include transition();
      }
      &:hover::after {
        width: 50px;
      }

      //お問い合わせ
      &.contact {
        & > a {

        }
      }

      &:hover > ul {
        visibility: visible;
        opacity: 1;
      }
      //グローバルナビカレント表示
      &.current {
        border-top: solid 5px #e99100;
      }
      & > a {
        // @include transition();

        @include opacity();
        @include flex-center();
        width: 100%;
        text-decoration: none;
        color: #333;
        font-size: 14px;
        letter-spacing: 0.1em;
        line-height: 1.6;
      }

      ul {
        position: absolute;
        top: 100%;
        visibility: hidden;
        width: 100%;
        opacity: 0;
        @include transition();
        z-index: 1;
        li {
          a {
            @include transition();
            @include flex-center();
            text-decoration: none;
            color: #333;
            font-size: 14px;
            letter-spacing: 0.1em;
            line-height: 1.6;
          }
        }
      }
    }
  }
  @include tab {
    & > ul {
      & > li {
        & > a {
        }
        ul {
          li {
            a {
            }
          }
        }
      }
    }
  }
  @include sp {
    & > ul {
      flex-direction: column;
      & > li {
        flex-grow: 0;
        &::after {
          display: none;
        }
        & > a {
          color: #fff;
        }
        ul {
          visibility: visible;
          opacity: 1;
          position: relative;
          padding: 0;

          li {
            border-bottom: 0px;
            border-top: 1px solid #000;
          }
        }
      }
    }
  }
}
 */
/* ----------------------------------------------
pagetop
------------------------------------------------- */
/*
#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  width: 50px;
  height: 50px;
  @include opacity();
  @include sp {
    //display: none !important;
    bottom: 55px;
    right: 10px;
    width: 40px;
    height: 40px;
    a {
    }
  }
}
*/
/*マウスオーバー時画像切り替え

#pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 3;
  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;
    width: 40px;
      height: 40px;
    a {

    }
  }
}

*/
/*フッター部分に固定
#pagetop {
  position: absolute;
  top: -30px;
  right: -90px;
  z-index: 3;
  width: 60px;
  height: 60px;
  @include opacity();
  @media (max-width: 1250px){
    right: 20px;
  }
  @include sp {
    //display: none !important;
    top: -20px;
    right: 10px;
    width: 40px;
    height: 40px;
    a {
    }
  }
}
*/
/* ----------------------------------------------
footer
------------------------------------------------- */
#footer {
  background-color: #b6b6b6;
  padding: 50px 0;
}
#footer .contents {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: #222222;
}
#footer .contents a {
  transition: all 0.5s ease-out;
  color: #222222;
  font-weight: 400;
}
#footer .contents a:hover {
  opacity: 0.6;
}
#footer .contents .copyright {
  margin-left: auto;
}
@media (max-width: 999px) {
  #footer {
    padding: 40px 0;
  }
}
@media (max-width: 767px) {
  #footer {
    padding: 30px 0;
  }
  #footer .contents {
    display: block;
    text-align: center;
    font-size: 12px;
  }
  #footer .contents .privacy {
    margin-bottom: 10px;
  }
}/*# sourceMappingURL=style.css.map */