@charset "UTF-8";
/* ====================== */
/*       hunberger        */
/* ====================== */
.sp-nav-wrapper {
  visibility: hidden;
}

/* ================================== */
/*                 sp                 */
/* ================================== */
@media screen and (max-width: 1000px) {
  /* .btn-trigger */
  .btn-trigger {
    position: relative;
    width: 24px;
    height: 12px;
    cursor: pointer;
    margin-top: 24px;
  }
  .btn-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #222;
  }
  .btn-trigger, .btn-trigger span {
    display: inline-block;
    transition: all 0.5s;
    box-sizing: border-box;
  }
  .btn-trigger span:nth-of-type(1) {
    top: 0;
  }
  .btn-trigger span:nth-of-type(2) {
    top: 5.4px;
  }
  .btn-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  /* #btn01 */
  #btn01.active span:nth-of-type(1) {
    transform: translateY(3px) rotate(-40deg);
    background-color: #222;
  }
  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  #btn01.active span:nth-of-type(3) {
    transform: translateY(-8px) rotate(40deg);
    background-color: #222;
  }
  /* add-css */
  .of-hidden {
    overflow: hidden;
  }
  .sp-nav-wrapper {
    position: absolute;
    height: 100vh;
    width: 100%;
    z-index: -1;
    top: 0;
    left: 0%;
    background-color: #fff;
    color: #fff;
    opacity: 0;
    transition: 0.5s ease-in-out;
    overflow-y: scroll;
  }
  .sp-nav-bg {
    display: flex;
    align-items: center;
    width: 89.7%;
    margin: 0 auto;
    margin-top: 120px;
  }
  .sp-navi-right {
    width: 100%;
    margin: 0 auto;
  }
  .content {
    position: absolute;
    z-index: 100;
    right: 5.1%;
    top: 0;
  }
  /* nav-inner */
  /*.button-t{
      color:#fff;
      /*background-color: $color-pk;
      max-width:367px;
      height:68px;*/ /*
    text-align: center;
    line-height: 48px;
    border-radius: 48px;
    font-size: $f_24;
    font-family: "游明朝体", serif;
    box-shadow: 2px 2px 7px rgba(0, 0, 0, 0.49);
    margin:0 auto;
    padding:0;
    width:100%;
}*/
  .btn-big-t {
    max-width: 252.5px;
    margin: 0 auto;
  }
  .sp-nav-t {
    color: #000;
    line-height: 1.6;
  }
  .sp-nav-bg .sp-nav-t {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #222;
    line-height: 1.6;
    padding-bottom: 16px;
  }
  .sp-nav-t-ls {
    padding-bottom: 0;
  }
  .active {
    opacity: 1;
    visibility: visible;
  }
  .header {
    padding-top: 16px;
    padding-bottom: 16px;
    background-color: #fff;
    border-bottom: 1px solid #F5F5F5;
  }
  /**/
  .h-yaji_img {
    max-width: 14px;
    width: 100%;
    height: 8px;
  }
  .sp-nav-w-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .sp-nav-w-top {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .h-yaji2_img {
    max-width: 12px;
    width: 100%;
    height: 11px;
    position: absolute;
    inset: 0;
    margin: auto;
    margin-right: 24px;
  }
  .sp-nav-btn {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-right: 24px;
    padding-left: 24px;
    border: 1px solid #DDDDDD;
    border-radius: 16px;
    display: block;
    position: relative;
    margin-top: 20px;
  }
  .sp-nav-btn1 {
    margin-top: 60px;
  }
  .sp-nav-btn-t1 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    text-align: left;
    padding-bottom: 8px;
  }
  .sp-nav-btn-t2 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: 11px;
    color: #222;
    line-height: 1.6;
    background: var(--grade, linear-gradient(90deg, #E50012 0%, #EE835C 70%));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
  }
  .sp-nav-btn-bt {
    margin-bottom: 100px;
  }
  /**/
  .h-loog_img {
    max-width: 188px;
    width: 100%;
    position: relative;
    z-index: 100;
  }
  .sp-nav-ww-top {
    border-bottom: 1px solid #DDDDDD;
  }
  /**/
}
#header {
  /*fixedで上部固定*/
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999; /*最前面へ*/
  /*以下はレイアウトのためのCSS*/
}

/*　上に上がる動き　*/
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 以下は検証用のレイアウトのための CSS*/ /*
nav ul{
list-style: none;
display: flex;
justify-content: center;
}
nav ul li a{
text-decoration: none;
color: #666;
padding:10px;
}
section{
padding:300px 0;
}*/