@charset "UTF-8";
/* CSS Document */
/*
====参考ブレイクポイント========================
* X-Small  |	--               |	575px以下
* Small    |	sm               |	576px以上ｖ/　767px以下
* Medium   |	md               |	768px以上　/　991px以下
* Large    |	lg               |	992px以上　/　1199px以下
* Extra    |	large	xl         |	1200px以上　/　1399ｐｘ以下
* Extra    |	extra large	xxl  |	1400px以上
=========================================
*
*/

header.PC {
  margin: 0 auto;
  background: linear-gradient(to bottom, #364857, #000);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1200px;
}
header.PC .headerWrap {
  max-width: 1200px;
  height: 80px;
  display: flex;
  justify-content: space-around;
  text-align: center;
  align-items: center;
  position: relative;
}
header.SP {
  display: none;
}

@media (max-width: 1200px) {
  header.PC .headerWrap {
    justify-content: center;
  }
}
header.PC .andline-logo {
  padding-right: 20px;
}

header.PC a {
  text-decoration: none;
  font-weight: bold;
}

header.PC ul {
  display: flex;
}
header.PC li {
  text-align: center;
  padding-right: 40px;
  font-size: 0.9rem;
}
header.PC li a:hover {
  background: linear-gradient(90deg, #00f5a0, #00d9f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

header .btn {
  background: linear-gradient(to bottom, #f5f5f5, #d3d3d3);
  border: 3px solid #000;
  box-shadow: 0px 5px 0px 0px rgba(61, 199, 190, 1);
  color: #000;
  width: 90px;
  margin: 0.6em 0 1em;
  padding: 1em;
  transition: 0.2s;
  font-size: 0.9rem;
}
header.PC .btn:hover {
  box-shadow: none;
  background-image: linear-gradient(90deg, #00f5a0, #00d9f5);
}

/*========*/
@media (max-width: 575px) {
  header {
    justify-content: left;
  }

  header li {
    display: none;
  }
}
/*====SP====*/
@media (max-width: 995px) {
  header.PC {
    display: none;
  }
  header.SP {
    display: block;
    margin: 0 auto;
    background: linear-gradient(to bottom, #364857, #000);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
  }
  header.SP .headerWrap {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 60px;
  }
  header.SP .andline-logo {
    margin-left: 1em;
    z-index: 3;
  }
  header.SP .btn {
    background: linear-gradient(to bottom, #f5f5f5, #d3d3d3);
    border: solid 2px #000;
    width: 80px;
    margin: 0.5em 0 0.5em 2em;
    transition: 0.2s;
    padding: 0;
    text-align: center;
    z-index: 3;
  }
  header.SP .btn a {
    display: inline-block;
    color: #000;
    font-weight: bold;
    font-size: 0.7rem;
    text-decoration: none;
    padding: 1em;
  }

  /*メニューボタン　展開前*/
  .menu-btn {
    display: block;
    position: absolute;
    z-index: 3;
    right: 1em;
    top: 0.5em;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
  .menu-btn span {
    display: block;
    position: absolute;
    width: 5px;
    height: 5px;
    right: 1em;
    background: #3dc7be;
    /* transition: 0.3s ease-in-out; */
  }
  .menu-btn span:nth-of-type(1) {
    top: 10px;
  }
  .menu-btn span:nth-of-type(2) {
    top: 20px;
  }
  .menu-btn span:nth-of-type(3) {
    top: 30px;
  }
  /*メニューボタン　展開後*/
  /* .menu-btn span {
      width: 35px;
    } */
  .menu-btn.active span:nth-child(1) {
    top: 16px;
    right: 0;
    width: 42px;
    background: #3dc7be;
    transform: rotate(-45deg);
  }
  .menu-btn.active span:nth-child(2),
  .menu-btn.active span:nth-child(3) {
    top: 16px;
    right: 0;
    width: 42px;
    background: #3dc7be;
    transform: rotate(45deg);
  }
  .gnavi__sp-style {
    opacity: 0;
  }

  .gnavi__sp-style.active {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    color: #000000;
    text-align: center;
    width: 100%;
    height: 100vh;
    align-items: center;
    opacity: 1;
    background: linear-gradient(to bottom, #364857, #000);
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
  .gnavi__sp-style.active ul {
    margin: 3.5em auto 5em;
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
  }

  .gnavi__sp-style.active li {
    display: block;
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: 0.4s all;
    font-weight: bold;
  }
  .gnavi__sp-style.active li:last-of-type {
    padding-bottom: 0;
  }

  .gnavi__sp-style.active ul li a {
    display: block;
    color: #fff;
    padding: 1em 0;
    text-decoration: none;
  }

  .gnavi__sp-style.active li.gnavi-btn a {
    color: var(--accent-color);
    display: block;
    border: solid 2px var(--accent-color);
    box-shadow: 0 4px 0 0 var(--accent-color);
    background: #fff;
    width: 60%;
    max-width: 240px;
    padding: 24px 32px;
    letter-spacing: 0.5;
    border-radius: 60px;
    position: relative;
    margin: auto;
  }
}
