@charset "UTF-8";

@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);

/* ==========================================================================
  Foundation
========================================================================== */
*, *:before, *:after {
  box-sizing: border-box; }

html, body, h1, h2, h3, h4, h5, h6, p,
ul, ol, li, dl, dt, dd, a,
figure, figcaption, form {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1; }

a {
  color: inherit;
  text-decoration: none; }

li {
  list-style: none; }

html {
  font-size: 10px;
  font-weight: 400;
  font-family: 'Noto Sans JP', sans-serif; }

body {
  background-color: #f6f9fb;
  font-family: "Noto Sans JP",sans-serif;
}

em {
  font-weight: bold;
  font-style: normal;
}


/* ==========================================================================
  Layout
========================================================================== */
.is-sp {
  display: block;
}
@media screen and (min-width: 1023px) {
  .is-sp {
    display: none;
  }
}

.is-pc {
  display: none;
}
@media screen and (min-width: 1023px) {
  .is-pc {
    display: block;
  }
}


.l-wrap {
  padding: 80px 0 0 0;
  overflow: hidden;
  position: relative;
}

@media screen and (min-width: 1023px) {
  .l-wrap {
    padding: 0;
  }
}

/* header
------------------------------------------- */
.l-header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}

@media screen and (min-width: 1023px) {
  .l-header {
    height: 130px;
  }
}

.l-header.is-sc {
  background-color: rgba(255,255,255,.7);
}


.l-header-logo {
  position: absolute;
  top: 0;
  left: 0;
}

.l-header-logo img {
  width: 120px;
  padding: 28px 10px;
  transform-origin: 0 0;
  transition: all .5s;
}

@media screen and (min-width: 1023px) {
  .l-header-logo img {
    width: auto;
    padding: 38px 20px;
  }
}

/* gnav */
.l-nav {
}

.l-nav-main {
  display: none;
  width: 100%;
  height: calc(100vh - 80px);
  padding: 0 0 100px 0;
  background-color: #fff;
  position: absolute;
  top: 80px;
  left: 0;
}

@media screen and (min-width: 1023px) {
  .l-nav-main {
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    background-color: transparent;
    top: 0;
    left: inherit;
    right: 0;
  }
}

.l-nav-main__list {
  margin: 34px 0 0 0;
  padding: 0 34px;
  border-top: 1px solid #91836d;
}

@media screen and (min-width: 1023px) {
  .l-nav-main__list {
    display: flex;
    height: 130px;
    margin: 0;
    padding: 0;
    border-top: none;
  }
}

.l-nav-main__list li {
  margin: 1.6rem 0 0 0;
  font-size: 1.5rem;
  font-weight: bold;
}

@media screen and (min-width: 1023px) {
  .l-nav-main__list li {
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
  }
}

.l-nav-main__list li:last-child {
  color: #fff;
  background-color: #72727b;
  transition: background .3s;
}

.l-nav-main__list li:last-child:hover {
  background-color: #c2d9ef;
}

.l-nav-main__list li a {
  padding: 0 0 0 28px;
  line-height: 2;
  position: relative;
  transition: color .3s;
}

@media screen and (min-width: 1023px) {
  .l-nav-main__list li a {
    display: block;
    padding: 0 25px;
    line-height: 130px;
  }
}

.l-nav-main__list li a::before {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  background-color: #c2d9ef;
  position: absolute;
  top: 50%;
  left: 0;
}

@media screen and (min-width: 1023px) {
  .l-nav-main__list li a::before {
    display: none;
  }
}

.l-nav-main__list li:last-child a::before {
  display: none;
}

.l-nav-main__list li:last-child a {
  display: block;
  padding: 1rem;
  text-align: center;
}

@media screen and (min-width: 1023px) {
  .l-nav-main__list li:last-child a {
    padding: 0 25px;
  }
}

.l-nav-main__list li a:hover {
  color: #c2d9ef;
}

.l-nav-main__list li:last-child:hover a {
  color: #fff;
}

.l-nav-menu {
  position: fixed;
  top: 16px;
  right: 10px;
}

.l-nav__check {
  display: none;
}

.l-nav__btn {
  display: flex;
  height: 40px;
  width: 40px;
  background-color: #c2d9ef;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 50;
  cursor: pointer;
}

@media screen and (min-width: 1023px) {
  .l-nav__btn {
    display: none;
  }
}

.l-nav__btn span,
.l-nav__btn span::before,
.l-nav__btn span::after {
  content: '';
  display: block;
  height: 3px;
  width: 20px;
  border-radius: 3px;
  background-color: #fff;
  transition: 0.5s;
  position: absolute;
}

.l-nav__btn span::before {
    bottom: 8px;
}

.l-nav__btn span::after {
    top: 8px;
}

.l-nav__check:checked ~ .l-nav__btn span {
  background-color: transparent;
}
.l-nav__check:checked ~ .l-nav__btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}

.l-nav__check:checked ~ .l-nav__btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

/* footer
------------------------------------------- */
.p-bottom-link ul {

}

@media screen and (min-width: 1023px) {
  .p-bottom-link ul {
    display: flex;
  }
}

.p-bottom-link ul li {
  background-size: 100%;
  transition: all .5s;
}

@media screen and (min-width: 1023px) {
  .p-bottom-link ul li {
    display: flex;
    width: 50%;
    height: 320px;
  }
}

.p-bottom-link ul li:hover {
  background-size: 110%;
  background-position: 10%;
}

.p-bottom-link ul li.hitte {
  background-image: url(/assets/img/common/bnr_hitte_bk.png);
}

.p-bottom-link ul li.hackadoall {
  background-image: url(/assets/img/common/bnr_hackadoall_bk.png);
}

.p-bottom-link ul li a {
  display: block;
  width: 100%;
  padding: 20px 0;
  text-align: center;
}

@media screen and (min-width: 1023px) {
  .p-bottom-link ul li a {
    padding: 66px 0 0 0;
    text-align: center;
  }
}


.l-footer {
  margin: 0 10px;
  border-top: 1px solid #1a1b1b;
  padding: 30px 0;
}
@media screen and (min-width: 1023px) {
  .l-footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 0 30px;
  }
}

.l-footer-menu {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 30px 0;
  padding: 0;
}

@media screen and (min-width: 1023px) {
  .l-footer-menu {
    margin: 0 0 60px 0;
    padding: 0;
    justify-content: center;
  }
}

.l-footer-menu li {
  margin: 0 0 3rem 0;
  padding: 0 10px;
  border-right: 1px solid #1a1b1b;
  font-size: 1.3rem;
}

@media screen and (min-width: 1023px) {
  .l-footer-menu li {
    width: auto;
    margin: 0;
    padding: 0 25px;
  }
}

.l-footer-menu li:last-child {
  border: none;
}

.l-footer-menu li a {
  font-size: 1.4rem;
  color: #1a1b1b;
}

@media screen and (min-width: 1023px) {
  .l-footer-menu li a {
    letter-spacing: 2px;
  }
}


.l-footer-copy {
  color: #72727b;
  font-size: 1.4rem;
  text-align: center;
}


/* ==========================================================================
  Object
========================================================================== */


/* heading
------------------------------------------- */

.p-page-heading--lv1 {
  margin: 0 0 2rem 0;
  font-size: 2.4rem;
  line-height: 1.6;
  letter-spacing: 2px;
}

@media screen and (min-width: 1023px) {
  .p-page-heading--lv1 {
    margin: 0 0 5rem 0;
    font-size: 3.6rem;
  }
}

/* top
------------------------------------------- */
.l-main {
  margin: 30px 0 0 0;
}

@media screen and (min-width: 1023px) {
  .l-main {
    margin: 130px 0 0 0;
  }
}

.p-top-mv {
  margin: 0 10px 30px;
  position: relative;
}

@media screen and (min-width: 1023px) {
  .p-top-mv {
    max-width: 1400px;
    margin: 0 auto 96px;
  }
}

.p-top-mv .p-top-mv__img img {
  width: 100%;
}

.p-top-mv .p-top-mv__txt {
}

@media screen and (min-width: 1023px) {
  .p-top-mv .p-top-mv__txt {
    position: absolute;
    top: 96px;
  }
}

.p-top-mv .p-top-mv__txt p {
  margin: 0 0 1rem 0;
  font-size: 1.6rem;
}

@media screen and (min-width: 1023px) {
  .p-top-mv .p-top-mv__txt p {
    margin: 0 0 2rem 0;
    font-size: 2.4rem;
  }
}

.p-top-mv .p-top-mv__txt p span {
  display: inline-block;
  padding: 8px 6px;
  background-color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
}

@media screen and (min-width: 1023px) {
  .p-top-mv .p-top-mv__txt p span {
    padding: 10px 30px 10px 22px;
    letter-spacing: 3px;
  }
}

.site-list {
  margin: 0 auto 60px;
  padding: 0 20px;
}

@media screen and (min-width: 1023px) {
  .site-list {
    display: flex;
    max-width: 1200px;
    margin: 0 auto 100px;
    padding: 0;
  }
}

.site-list li {
  margin: 0 0 30px 0;
  border-left: 1px solid #35353c;
  border-right: 1px solid #35353c;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 1023px) {
  .site-list li {
    margin: 0;
    border-right: none;
  }
}

.site-list li:last-child {
  border-right: 1px solid #35353c;
}

.site-list li::before {
  content: "";
  width: 90px;
  height: 1px;
  background-color: #353439;
  position: absolute;
  bottom: 25px;
  right: calc(50% - 45px);
}

@media screen and (min-width: 1023px) {
  .site-list li::before {
    bottom: 48px;
    right: calc(50% - 45px);
  }
}

.site-list li::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 12px;
  border-color: transparent transparent transparent #353439;
  position: absolute;
  bottom: 20px;
  right: calc(50% - 50px);
}

@media screen and (min-width: 1023px) {
  .site-list li::after {
    bottom: 43px;
    right: calc(50% - 45px);
  }
}

.site-list li a {
  display: block;
  padding: 16px 20px 60px 16px;
}

@media screen and (min-width: 1023px) {
  .site-list li a {
    padding: 30px 30px 100px 30px;
  }
}

.site-logo {
  margin: 0 0 30px 0;
}

@media screen and (min-width: 1023px) {
  .site-logo {
    margin: 0 0 46px 0;
  }
}

.site-logo img {
  max-width: 284px;
  width: 100%;
}

.site-list li p {
  margin: 0 0 30px 0;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media screen and (min-width: 1023px) {
  .site-list li p {
    margin: 0 0 46px 0;
  }
}

.site-ss img {
  width: 100%;
  transition: all .3s;
}

.site-list li a:hover .site-ss img {
  transform: scale(1.1);
}


.company-wrap {
  margin: 0 0 60px 0;
  padding: 0 20px;
  text-align: center;
}

@media screen and (min-width: 1023px) {
  .company-wrap {
    margin: 0 0 100px 0;
    padding: 0;
  }
}

.company-wrap .banner img {
  width: 100%;
}

@media screen and (min-width: 1023px) {
  .company-wrap .banner img {
    width: auto;
  }
}


