@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-color: #ffffff;
    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: 20px;
    font-size: .9rem;
  }

  header.PC .btn {
    background: #fff;
    border: solid 2px var(--accent-color);
    box-shadow: 0px 2px 0px 0px var(--accent-color);
    border-radius:60px;
    color: var(--accent-color);
    width: 90px;
    margin: .6em 0 1em;
    padding: 1em;
    transition: .2s;
    font-size: .9rem;
    /* 
    padding-top: 13px;
    width: 90px;
    height: 35px;
    
    background: #FFF;
    
    font-weight: 700;
    line-height: 170%;
    font-size: 14px;
    transition: all 0.3s;
    border-radius: 60px; */
  }
  header.PC .btn:hover {
    transform: translate3d(0, 8px, 0);
    box-shadow: none;
    /* color: var(--accent-color);
    background: #FFf5f3;
    box-shadow: 0 0 rgba(0, 0, 0, 0.3);
    animation-play-state: paused;
    top: 3px; */
  }
 

/*========*/
  @media (max-width: 575px) {
	  
	  header {
		  justify-content: left;
	  }
	  
	  header li {
      display: none;
    }
	  
	  header .btn {
		  display: none;
	  }
	  
  }
/*====SP====*/
  @media (max-width: 995px) {
    header.PC{
      display: none;
    }
    header.SP{
      display: block;
      margin: 0 auto;
      background-color: #ffffff;
      position: fixed;
      width: 100%;
      top: 0;
      z-index: 2;
    }
    header.SP .headerWrap{
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 60px;
    }
    header.SP .andline-logo{
      margin-left: 1em;
      z-index: 3;
    }
    
    /*メニューボタン　展開前*/
    .menu-btn {
      display: block;
      position: absolute;
      z-index: 3;
      right: 1em;
      top: .5em;
      width: 42px;
      height: 42px;
      cursor: pointer;
      text-align: center;
    }
    .menu-btn span {
      display: block;
      position: absolute;
      width: 35px;
      height: 5px;
      /* left: 6px; */
      background: #364853;
      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.active span:nth-child(1) {
      top: 16px;
      background: var(--font-color);
      transform: rotate(-45deg);
    }
    .menu-btn.active span:nth-child(2),
    .menu-btn.active span:nth-child(3) {
      top: 16px;
      background: var(--font-color);
      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(#FFFAF9, #FFDED8);
      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: var(--font-color);
      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;
    } 

  }

  