@charset "UF-8" ;

/* 1ページ目スマホ用ハンバーガー start------------- */
/* morph-styles.css */
.hamburger-morph {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
  }
  
  .hamburger-morph__icon {
    width: 100%;
    height: 100%;
  }
    /* 三本線の色（黒→黄色→白にアレンジ） */
  .hamburger-morph__line {
    fill: none;
    stroke: white;
    stroke-width: 6;
    transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1),
                stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .menu-b-lin{
    stroke: rgb(0,80,122);
  }

  .hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 60 207;
  }
  
  .hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 60 60;
  }
  
  .hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 60 207;
  }
  
  .hamburger-morph.active .hamburger-morph__line:nth-child(1) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }
  
  .hamburger-morph.active .hamburger-morph__line:nth-child(2) {
    stroke-dasharray: 1 60;
    stroke-dashoffset: -30;
  }
  
  .hamburger-morph.active .hamburger-morph__line:nth-child(3) {
    stroke-dasharray: 90 207;
    stroke-dashoffset: -134;
  }
    /* 広がった時のプロパティ（薄くした） */
  .nav-morph {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(29, 29, 31, 0.5);
    clip-path: circle(0% at calc(100% - 44px) 44px);
    transition: clip-path 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 900;
  }
  
  .nav-morph.active {
    clip-path: circle(150% at calc(100% - 44px) 44px);
  }
  
  .nav-morph__wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  
  .nav-morph__list {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
  }
  
  .nav-morph__item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }
  
  .nav-morph.active .nav-morph__item {
    opacity: 1;
    transform: translateY(0);
  }
  
  .nav-morph.active .nav-morph__item:nth-child(1) { transition-delay: 0.3s; }
  .nav-morph.active .nav-morph__item:nth-child(2) { transition-delay: 0.4s; }
  .nav-morph.active .nav-morph__item:nth-child(3) { transition-delay: 0.5s; }
  .nav-morph.active .nav-morph__item:nth-child(4) { transition-delay: 0.6s; }
  
  .nav-morph__link {
    position: relative;
    display: inline-block;
    padding: 10px;   /*縦間狭めにアレンジ*/
    font-size: 40px;
    color: #fff;
    text-decoration: none;
    overflow: hidden;
  }
    /* 日本語文字サイズ */
  .nav-morph__hover{
    font-size: 18px;
    font-family: "klee";
    color: rgb(230, 224, 169);
  }
  .nav-morph__hover-long {
    font-size: 15px;
  }

  .nav-morph__text,
  .nav-morph__hover {
    display: block;
    transition: transform 0.3s ease;
  }
  
  .nav-morph__hover {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    transform: translateY(0%);
  }
  
  .nav-morph__link:hover .nav-morph__text {
    transform: translateY(-100%);
  }
  
  .nav-morph__link:hover .nav-morph__hover {
    transform: translateY(-100%);
  }
/* 1ページ目スマホ用ハンバーガー end----- */
/* ---------------------------------- */