.l-header {
    height: 60px;
    background-color: #fff;
    color: #004F3B;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
  }
  .l-header__inner {
      padding: 15px 10px;
      display: flex;
      align-items: center;
  }
  .l-header__list {
      display: flex;
      align-items: center;
      margin-left: auto;
      gap: 0 20px;
  }
  .l-header__list {
      display: none;
  }
  .l-header__hamburger {
      margin-left: auto;
  }
  .l-header__link {
      display: block;
      padding: 10px 0;
      font-size: 14px;
  }
  .l-header__text {
      color: #004F3B;
      letter-spacing: 0.03em;
      font-weight: bold;
  }
  .l-header__text p {
      margin: 0;
  }
  .l-header__logo-link {
      width: 40%;
  }
  .l-header__logo {
      max-width: 180px;
      width: 100%;
  }
  
  .l-header__menu-address p {
      font-size: 12px;
  }
  .l-header__menu-item p {
      font-size: 13px;
  }
  .l-header__hamburger {
      width: 28px;
      height: 16px;
      position: relative;
      cursor: pointer;
      -webkit-transition: all .3s;
      transition: all .3s;
      z-index: 100;
      margin-left: 35px;
  }
  .l-header__hamburger-bar {
      display: block;
      width: 100%;
      height: 1px;
      position: absolute;
      border-radius: 2px;
  
      left: 0;
      background-color: #004F3B;
      -webkit-transition: all .3s;
      transition: all .3s;
  }
  
  .l-header__hamburger-bar:nth-child(1) {
      top: 0;
  }
  
  .l-header__hamburger-bar:nth-child(2) {
      top: 50%;
      -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  }
  
  .l-header__hamburger-bar:nth-child(3) {
      top: 100%;
      -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  }
  
  .l-header__hamburger.is-active {
      margin-top: 8px;
      margin-top: 0.5rem;
  }
  
  .l-header__hamburger.is-active .l-header__hamburger-bar:nth-child(1) {
      -webkit-transform: translateY(34px) rotate(-30deg);
              transform: translateY(34px) rotate(-30deg);
      top: -200%;
  }
  
  .l-header__hamburger.is-active .l-header__hamburger-bar:nth-child(2) {
      opacity: 0;
  }
  
  .l-header__hamburger.is-active .l-header__hamburger-bar:nth-child(3) {
      -webkit-transform: translateY(-30px) rotate(30deg);
              transform: translateY(-30px) rotate(30deg);
      top: 200%;
  }
  
  .l-header__menu {
      background-color: #fff;
      position: fixed;
      width: 100%;
      height: 100%;
      top: 0px;
      left: 0;
      z-index: 5;
      transition: all 0.5s ease;
      opacity: 0;
      visibility: hidden; 
      transition: opacity 0.5s ease, visibility 0.5s ease;
      padding: 60px 3vw;
  }
  .l-header__menu.show {
      opacity: 1; 
      visibility: visible;
      overflow: scroll;
  }
  
  .l-header__menu-logo {
      width: 50%;
      max-width: 493px;
      margin-bottom: 40px;
  }
  .l-header__menu-box {
      display: flex;
      justify-content: space-between;
      color: #00513A;
      flex-direction: column-reverse;
      margin-bottom: 40px;
      gap: 30px 0;
  }
  .l-header__menu-info {
  
  }
  .l-header__menu-address {
      margin-bottom: 85px;
  }
  .l-header__menu-address-item {
      margin-bottom: 6px;
  }
  .l-header__menu-address p {
      font-size: 16px;
      font-family: "Zen Old Mincho",sans-serif;
      color: #004F3B;
  }
  .l-header__menu-icons {
      display: flex;
      gap: 0 20px;
  }
  .l-header__menu-sns {
      font-size: 24px;
      color: #004F3B;
  }
  .l-header__menu-list {
      display: flex;
  }
  .l-header__menu-items {
      display: flex;
      gap: 0 70px;
  }
  .l-header__menu-item {
      display: flex;
      flex-direction: column;
      gap: 15px 0;
      
  }
  .l-header__menu-item p {
      font-weight: 500;
      font-size: 16px;
      color: #004F3B;
  }
  
  .l-header__menu-btn {
      text-align: right;
  }
  .l-header__menu-btn .c-button p{
      font-weight: 500;
  }
  .l-header__menu,
  .l-header__list,
  .l-header__logo {
      opacity: 1;
      visibility: visible;
      transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  
  .l-header__menu.show,
  .l-header__list.show,
  .l-header__logo.show {
      opacity: 1;
      visibility: visible;
  }
  
  .l-header__menu:not(.show),
  .l-header__list:not(.show),
  .l-header__logo:not(.show) {
      opacity: 0;
      visibility: hidden;
  }
  .l-header__menu-btn {
      text-align: center;
  }
  .l-header__text p{
      font-size: 11px;
  }
  .l-header__hamburger {
      margin-left: auto;
  }
  .l-header__list {
      display: none;
  }
  
  @media screen and (min-width:768px) {
      .l-header {
          height: 80px;
      }
      .l-header__inner {
          padding: 18px 1.5vw 18px 1vw;
      }
      .l-header__logo {
          max-width: 240px;
      }
      .l-header__logo-link {
          width: 20%;
      }
      .l-header__menu {
          padding: 150px 5vw;
      }
      .l-header__menu-box {
          flex-direction: row;
          display: flex;
          justify-content: space-between;
          color: #00513A;
          margin-bottom: 72px;
      }
      .l-header__menu-logo {
          width: 40%;
          max-width: 493px;
          margin-bottom: 80px;    
      }
      .l-header__menu-address p {
          font-size: 16px;
      }
      .l-header__menu-item {
          gap: 23px 0;
      }
      .l-header__menu-item p {
          font-size: 16px;
      }
      .l-header__menu-btn {
          text-align: right;
      }
  }
  @media screen and (min-width: 1051px) {
      .l-header__list {
          display: flex;
      }
      .l-header__hamburger {
          margin-left: auto;
      }
  }
  @media screen and (min-width: 1301px) {
      .l-header__text p{
          font-size: 14px;
      }
      .l-header__hamburger {
          margin-left: auto;
      }
  
  }
  
  /* 20250520 ドロップダウンメニュー追加 */
  .dropdown__lists {
      visibility: hidden;
      opacity: 0;
      transition: all .3s;
      width: 20%;
      position: absolute;
      top: 70px;
  }
  .gnavi__list:hover .dropdown__lists {
      visibility: visible;
      opacity: 1;
  }
  .dropdown__list {
      background-color: #00513A;
      transition: all .3s;
      position: relative;
  }
  .dropdown__list:not(:first-child)::before{
      content: "";
      width: 100%;
      height: 1px;
      background-color: #ffffff;
      position: absolute;
      top: 0;
      left: 0;
  }
  .dropdown__list:hover {
      background-color: #007956;
  }
  .dropdown__list a {
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      text-decoration: none;
      position: relative;
  }
  .dropdown__list a::before {
      content: '';
      display: block;
      width: 6px;
      height: 6px;
      border-top: 2px solid #fff;
      border-left: 2px solid #fff;
      transform: rotate(135deg);
      position: absolute;
      right: 15px;
      top: calc(50% - 5px);
  }
  .dropdown__text {
      color: #ffffff;
  }
  div.c-banner-list03{
    flex-wrap: nowrap;
  }
  a.c-banner02 {
    /* width: 100%; */
    width: auto;
  }
  
  @media screen and (min-width: 768px) {
      div.c-banner-list02 {
          display: none;
      }
      .l-header__menu.show {
          opacity: 1; 
          visibility: visible;
          overflow-y:hidden;
      }
  }
  @media screen and (min-width: 501px)and (max-width: 768px) {
      a.c-banner0310 p {
          font-size: 2.2vw;
      }
  }
  @media screen and (min-width: 446px)and (max-width: 500px) {
      a.c-banner0310 p {
          font-size: 12px;
      }
  }
  @media screen and (min-width: 350px)and (max-width: 445px) {
      a.c-banner0310 p {
          font-size: 10px;
      }
    div.test_03 p{
      font-size: 12px;
    }
    a.c-banner0310{
      padding: 12px 0;
    }
  }
  @media screen and (max-width: 349px) {
      div.test_02 p {
          font-size: 9px;
      }
      div.test_03 p{
      font-size: 10px;
    }
      a.c-banner0310{
      padding: 12px 0;
    }
  }
  
  