@charset "UTF-8";
/*HEADER*/
/*******************************************************************/
#header {
  left: 0;
  position: fixed;
  top: 50px;
  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;
  width: 100%;
  height: 86px;
  z-index: 9000;
}

@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    top: 0;
    margin: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: 72px;
    background: #fff;
    z-index: 9999;
    padding-bottom: 0;
    border-bottom: none;
  }
}

#header .logo-wrapper {
  width: auto;
  padding: 0 0 0 40px;
  z-index: 1000;
  max-width: 240px;
}

@media screen and (max-width: 768px) {
  #header .logo-wrapper {
    width: auto;
    padding: 0 0 0 20px;
  }
}

#header .logo-wrapper a {
  color: #333;
}

#header #nav {
  width: auto;
}

@media screen and (max-width: 768px) {
  #header #nav {
    background: #10a3db;
    pointer-events: none;
    position: fixed;
    top: 0vh;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    height: 100vh;
    margin: 0;
    opacity: 0;
    overflow: auto;
    z-index: 999;
    -webkit-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
  }
}

@media screen and (max-width: 768px) {
  #header #nav ul {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
    padding: 20px 20px 30px;
    background: #fff;
    border-radius: 10px;
  }
}

#header #nav ul li {
  display: inline-block;
  padding: 15px 10px 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #header #nav ul li {
    padding: 0px;
    width: 100%;
    text-align: left;
    margin-bottom: 20px;
  }
}

#header #nav ul li:last-child {
  width: 160px;
  background: #10a3db;
  border-radius: 50px 0 0 50px;
}

#header #nav ul li:last-child a {
  color: #fff !important;
}

#header #nav ul li a {
  font-size: 1.2rem;
  color: #222222;
  letter-spacing: 2.5px;
}

@media screen and (max-width: 768px) {
  #header #nav ul li a {
    color: #000;
    height: auto;
    font-size: 1.4rem;
    line-height: 1.2;
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

#header #nav ul li a:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
}

@media screen and (max-width: 768px) {
  #header #nav ul li a:after {
    display: none;
  }
}

#header #nav ul li a span {
  font-size: 1.2rem;
  display: block;
  text-align: center;
  padding-top: 8px;
}

#header ul.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  position: absolute;
  right: 40px;
  top: -40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #header ul.sns {
    left: 40px;
    top: 80px;
  }
}

#header ul.sns li {
  width: 30px;
}

#header.fixed {
  background: #fff;
  top: 0;
}

#header.fixed ul.sns {
  right: auto;
  left: 300px;
  top: 24px;
}

@media screen and (max-width: 768px) {
  #header.fixed ul.sns {
    right: 80px;
    top: 20px;
  }
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 50%;
  height: 100vh;
  /*ナビの高さ*/
  background: #eee;
  /*動き*/
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  /*アクティブクラスがついたら位置を0に*/
}

@media screen and (max-width: 768px) {
  #g-nav {
    width: 100%;
  }
}

#g-nav.panelactive {
  right: 0;
  /*ナビゲーションの縦スクロール*/
}

#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 50%;
  height: 100vh;
  /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

@media screen and (max-width: 768px) {
  #g-nav.panelactive #g-nav-list {
    width: 100%;
  }
}

#g-nav ul.menu {
  margin: 120px 20px;
}

#g-nav ul.menu li {
  padding: 20px;
  font-size: 2.4rem;
}

#g-nav ul.menu li a {
  color: #333;
}

@media screen and (max-width: 768px) {
  #g-nav ul.menu li a i {
    font-size: 1.4rem;
    opacity: 0.4;
  }
}

#g-nav ul.menu li:last-child {
  padding: 20px;
  font-size: 2rem;
  background: #3E3E3E;
  border-radius: 5px;
  margin-top: 20px;
  margin-left: 20px;
}

#g-nav ul.menu li:last-child a {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: center;
      align-content: center;
}

#g-nav ul.menu li:last-child a i {
  padding-left: 10px;
  opacity: 1;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 18px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

@media screen and (max-width: 768px) {
  .openbtn1 {
    top: 12px;
    display: block;
  }
}

.openbtn1 span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 1px;
  border-radius: 2px;
  background-color: #666;
  width: 65%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/*FOOTER*/
/*******************************************************************/
#footer {
  background: #645b4b;
  color: #eee;
  font-size: 1.2rem;
  position: relative;
  width: auto;
}

@media screen and (max-width: 768px) {
  #footer {
    width: auto;
  }
}

#footer section {
  width: auto;
  padding: 40px 40px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  #footer section {
    width: auto;
  }
}

#footer section .left__content {
  width: auto;
}

@media screen and (max-width: 768px) {
  #footer section .left__content {
    width: auto;
  }
}

#footer section .left__content .logo-wrapper {
  width: auto;
}

@media screen and (max-width: 768px) {
  #footer section .left__content .logo-wrapper {
    width: auto;
  }
}

#footer section .left__content .logo-wrapper a {
  width: auto;
}

@media screen and (max-width: 768px) {
  #footer section .left__content .logo-wrapper a {
    width: auto;
  }
}

#footer section .left__content .logo-wrapper a img {
  width: 160px;
}

@media screen and (max-width: 768px) {
  #footer section .left__content .logo-wrapper a img {
    width: auto;
  }
}

#footer section .left__content .logo-wrapper p {
  width: auto;
  line-height: 1.6;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  #footer section .left__content .logo-wrapper p {
    width: auto;
  }
}

#footer section .left__content ul.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  #footer section .left__content ul.sns {
    width: auto;
  }
}

#footer section .left__content ul.sns li {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  #footer section .left__content ul.sns li {
    width: 36px;
    height: 36px;
  }
}

#footer section .left__content ul.sns li a {
  width: auto;
}

@media screen and (max-width: 768px) {
  #footer section .left__content ul.sns li a {
    width: auto;
  }
}

#footer section .right__content {
  width: auto;
}

@media screen and (max-width: 768px) {
  #footer section .right__content {
    width: auto;
  }
}

#footer section .right__content ul.info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  #footer section .right__content ul.info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

#footer section .right__content ul.info li {
  width: auto;
  font-size: 1.4rem;
  padding-right: 40px;
  text-align: right;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  #footer section .right__content ul.info li {
    width: 100%;
    padding-top: 10px;
    font-size: 1.6rem;
  }
}

#footer section .right__content ul.info li small {
  font-size: 1.4rem;
  padding-right: 10px;
}

@media screen and (max-width: 768px) {
  #footer section .right__content ul.info li small {
    width: auto;
  }
}

#footer section .right__content ul.info li span {
  font-size: 1.2rem;
}

#footer section .right__content nav#nav {
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  #footer section .right__content nav#nav {
    display: none;
  }
}

#footer section .right__content nav#nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #footer section .right__content nav#nav ul {
    width: auto;
  }
}

#footer section .right__content nav#nav ul li {
  width: auto;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #footer section .right__content nav#nav ul li {
    width: auto;
  }
}

#footer section .right__content nav#nav ul li a {
  width: auto;
}

@media screen and (max-width: 768px) {
  #footer section .right__content nav#nav ul li a {
    width: auto;
  }
}

#footer section .right__content nav#nav ul li a i {
  font-size: 10px;
  display: block;
  padding-top: 4px;
  text-align: center;
  opacity: 0.8;
}

@media screen and (max-width: 768px) {
  #footer section .right__content nav#nav ul li a i {
    width: auto;
  }
}

#footer section .copyright {
  width: 100%;
  text-align: right;
  padding: 40px 0 10px;
}
/*# sourceMappingURL=main.css.map */